|
@@ -226,6 +226,7 @@ public class EFormSaveHandler implements IEventHandler<ResultEventArgs> {
|
|
|
// 동의서 이미지 업로드
|
|
|
HttpImageUpload imageUpload = new HttpImageUpload(ConsentConfig.CONSENT_IMAGE_UPLOAD_URL, imageFile, fileName);
|
|
|
boolean result = imageUpload.execute().get();
|
|
|
+ Log.e(TAG, "imageupload result -- > " + result);
|
|
|
// 업로드된 이미지 json 추가
|
|
|
imageFileJsonObj.put("imageFile" + (i + 1), fileName);
|
|
|
// 전자서명을 위하여 해쉬값 추가
|
|
@@ -271,7 +272,6 @@ public class EFormSaveHandler implements IEventHandler<ResultEventArgs> {
|
|
|
private HttpCallBack callBack = new HttpCallBack() {
|
|
|
@Override
|
|
|
public void result(String result) {
|
|
|
- Log.e(TAG, "save result -- > " + result);
|
|
|
if (buttonType.equals("TEMP_SAVE")) {
|
|
|
if (result == null || result.equals("")) {
|
|
|
stop();
|