개정판 bae83c92
- convert에서 한글 파일명 오류 수정
- merged pdf 실행하도록 메시지창 출력
Change-Id: I882454f7cf0f521c621f33db8876b568db5a8342
KCOM_API/ServiceDeepView.svc.cs | ||
---|---|---|
3075 | 3075 |
} |
3076 | 3076 |
return result; |
3077 | 3077 |
} |
3078 |
|
|
3079 |
[OperationContract] |
|
3080 |
public bool SaveLog(string project_no, string document_id, string Log) |
|
3081 |
{ |
|
3082 |
bool result = false; |
|
3083 |
|
|
3084 |
try |
|
3085 |
{ |
|
3086 |
string sConnString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString; |
|
3087 |
using (KCOMEntities _entity = new KCOMEntities(sConnString)) |
|
3088 |
{ |
|
3089 |
_entity.AddToERROR_LOG(new ERROR_LOG |
|
3090 |
{ |
|
3091 |
PROJECT_NO = project_no, |
|
3092 |
DOCUMENT_ID = document_id, |
|
3093 |
CONTENTS = Log, |
|
3094 |
CREATE_DATETIME = DateTime.Now.ToString("yyMMddssmm"), |
|
3095 |
CODE = "", |
|
3096 |
TYPE = "Markus Log", |
|
3097 |
LEVEL = "", |
|
3098 |
SERVICE_NAME = "Markus", |
|
3099 |
}); |
|
3100 |
|
|
3101 |
_entity.SaveChanges(); |
|
3102 |
} |
|
3103 |
} |
|
3104 |
catch (Exception ex) |
|
3105 |
{ |
|
3106 |
} |
|
3107 |
|
|
3108 |
return result; |
|
3109 |
} |
|
3110 |
|
|
3078 | 3111 |
[OperationContract] |
3079 | 3112 |
[ServiceKnownType(typeof(MEMBER))] |
3080 | 3113 |
public MEMBER FinalPDF_GetCommentMember(string project_no, string markupdata_id) |
내보내기 Unified diff