|
@@ -158,7 +158,11 @@ let pageObj = {
|
158
|
158
|
$('#ITP_BIZPOP_DLV_STTMT_PRN .fnPoAddr').text(result.poAddr);
|
159
|
159
|
|
160
|
160
|
$('#ITP_BIZPOP_DLV_STTMT_PRN .fnDlvQty').text(result.dlvQty);
|
161
|
|
- $('#ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO').attr('src', result.fileLogNoList[0].filePath);
|
|
161
|
+ if (result.fileLogNoList[0].filePath == '' || result.fileLogNoList[0].filePath.length == 0) {
|
|
162
|
+ $('#ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO').hide();
|
|
163
|
+ } else {
|
|
164
|
+ $('#ITP_BIZPOP_DLV_STTMT_PRN_BRAND_LOGO').attr('src', result.fileLogNoList[0].filePath);
|
|
165
|
+ }
|
162
|
166
|
// 품목 리스트 조회
|
163
|
167
|
pageObj.grid.init(result.invDtlInfoList);
|
164
|
168
|
},
|