개정판 84c48033
issue #000: daelim merged(settings =>ini) 내/외부 구분 하여 api url 을 리턴하도록 Commonlib 추가. daelim ini 추가
Change-Id: I2904309621897cda96f9537982fbd6e53874be29
KCOM/Services/BaseServices.cs | ||
---|---|---|
144 | 144 |
private void BaseClient_SetFinalPDFCompleted(object sender, SetFinalPDFCompletedEventArgs e) |
145 | 145 |
{ |
146 | 146 |
Logger.sendResLog("SetFinalPDFCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
147 |
|
|
147 |
string errormsg = CommonLib.Common.GetAlertMessageString("SetFinalPDFError", "MSG", "최종 파일을 만드는데 문제가 발생하였습니다"); |
|
148 |
string successmsg = CommonLib.Common.GetAlertMessageString("SetFinalPDFSuccess", "MSG", "최종 파일 생성 중입니다. 문서관리시스템을 확인해주세요"); |
|
148 | 149 |
if (e.Error != null || e.Result.Status == FinalStatus.Error) |
149 | 150 |
{ |
150 |
DialogMessage_Alert("최종 파일을 만드는데 문제가 발생하였습니다", "안내");
|
|
151 |
DialogMessage_Alert(errormsg, "안내");
|
|
151 | 152 |
} |
152 | 153 |
else |
153 | 154 |
{ |
154 |
DialogMessage_Alert("최종 파일 생성 중입니다. 문서관리시스템을 확인해주세요", "안내");
|
|
155 |
DialogMessage_Alert(successmsg, "안내");
|
|
155 | 156 |
} |
156 | 157 |
} |
157 | 158 |
|
... | ... | |
630 | 631 |
|
631 | 632 |
private void BaseClient_GetConversionStateCompleted(object sender, GetConversionStateCompletedEventArgs e) |
632 | 633 |
{ |
634 |
|
|
633 | 635 |
Logger.sendResLog("GetConversionStateCompleted", "UserState : " + e.UserState + "\r Result :" + e.Result + "\r Cancelled :" + e.Cancelled + "\r Error :" + e.Error, 1); |
634 |
|
|
636 |
string failedmsg = CommonLib.Common.GetAlertMessageString("GetConversionStateFailed", "MSG", "Too Many V/P Files are uploading instantaneously, This V/P file can not be open now. Please feel free to re-open wait a moment again!\n\n현재 일시적으로 많은 양의 V/P가 등록되고 있어 이 문서를 열람할 수 없습니다.\n잠시만 기다려 주신 후 다시 열람하여 주시기 바랍니다"); |
|
635 | 637 |
if (e.Error == null && e.Result == true) |
636 | 638 |
{ |
637 | 639 |
Logger.sendReqLog("GetDocumentItemInfoAsync", _ViewInfo.ProjectNO + "," + _ViewInfo.DocumentItemID + "," + _ViewInfo.UserID, 1); |
... | ... | |
658 | 660 |
} |
659 | 661 |
else |
660 | 662 |
{ |
661 |
DialogMessage_Alert("Too Many V/P Files are uploading instantaneously, This V/P file can not be open now. Please feel free to re-open wait a moment again!" |
|
662 |
+ "\n\n" + "현재 일시적으로 많은 양의 V/P가 등록되고 있어 이 문서를 열람할 수 없습니다." + "\n" + "잠시만 기다려 주신 후 다시 열람하여 주시기 바랍니다", "Warning"); |
|
663 |
//System.Windows.Forms.MessageBox.Show("Too Many V/P Files are uploading instantaneously, This V/P file can not be open now. Please feel free to re-open wait a moment again!" |
|
664 |
// + "\n\n" + "현재 일시적으로 많은 양의 V/P가 등록되고 있어 이 문서를 열람할 수 없습니다." + "\n" + "잠시만 기다려 주신 후 다시 열람하여 주시기 바랍니다", "Warning"); |
|
665 |
//this.ParentOfType<MainPage>().DialogMessage_Alert("Too Many V/P Files are uploading instantaneously, This V/P file can not be open now. Please feel free to re-open wait a moment again!" |
|
666 |
// + "\n\n" + "현재 일시적으로 많은 양의 V/P가 등록되고 있어 이 문서를 열람할 수 없습니다." + "\n" + "잠시만 기다려 주신 후 다시 열람하여 주시기 바랍니다", "Warning"); |
|
667 |
//System.Windows.Browser.HtmlPage.Window.Invoke("close"); |
|
663 |
|
|
664 |
DialogMessage_Alert(failedmsg, "Warning"); |
|
668 | 665 |
} |
669 | 666 |
} |
670 | 667 |
|
... | ... | |
692 | 689 |
{ |
693 | 690 |
|
694 | 691 |
// 허브 연결 구성 |
695 |
var hubConnection = new HubConnection(global::KCOM.Properties.Settings.Default.HubAddress);
|
|
692 |
var hubConnection = new HubConnection(CommonLib.Common.GetConfigString("HubAddress", "URL", "", App.isExternal));
|
|
696 | 693 |
IHubProxy MarkusLicenseProxy = hubConnection.CreateHubProxy("MarkusLicenseHub"); |
697 | 694 |
|
698 | 695 |
|
내보내기 Unified diff