|
@@ -173,11 +173,13 @@ let mobContentObj = {
|
173
|
173
|
var $li = $('#ITP_LIST_MPOMNG02010_ITEM_AREA .panel-group > .item-row:last');
|
174
|
174
|
$li.find('.fnReqTypeNm').text(item.reqTypeNm);
|
175
|
175
|
$li.find('.fnPchReqDt').text(item.pchReqDt);
|
|
176
|
+ $li.find('.fnDlvReqDt').text(item.dlvReqDt);
|
176
|
177
|
$li.find('.fnPchReqMgrNm').text(item.pchReqMgrNm);
|
177
|
178
|
$li.find('.fnPchReqStNm').text(item.pchReqStNm);
|
178
|
179
|
$li.find('.fnWhsLocationNm').text(item.whsLocationNm);
|
179
|
180
|
$li.find('.fnPchReqItemQty').text(CommonObj.comma.set(item.pchReqItemQty));
|
180
|
181
|
$li.find('.fnPchReqTotalAmt').text(CommonObj.comma.set(item.pchReqTotalAmt));
|
|
182
|
+ $li.find('.fnPchReqRjctDt').text(item.pchReqRjctDt);
|
181
|
183
|
$li.find('.fnPchReqRjctNm').text(item.pchReqRjctNm);
|
182
|
184
|
_this.rows.push(item);
|
183
|
185
|
});
|
|
@@ -221,13 +223,14 @@ let mobContentObj = {
|
221
|
223
|
$(id).find('.fnDlvReqDt').text(result.dlvReqDt);
|
222
|
224
|
$(id).find('.fnPchReqTotalAmt').text(CommonObj.currency.add(result.pchReqTotalAmt));
|
223
|
225
|
$(id).find('.fnLocationNm').text(result.locationNm);
|
224
|
|
- $(id).find('.fnPchApprNm').text('(' + result.pchApprNm + ')' + CommonObj.currency.add(result.pchApprAmt));
|
|
226
|
+ $(id).find('.fnPchReqStnm').text(result.pchReqStNm);
|
|
227
|
+ $(id).find('.fnPcReqRjctDt').text(result.pchReqRjctDt);
|
|
228
|
+ $(id).find('.fnPchReqRjctNm').text(result.pchReqRjctNm);
|
225
|
229
|
$.each(result.pchReqDtlList, function (i, item) {
|
226
|
230
|
$('#ITP_LIST_MPOMNG02010_VIEW_AREA .panel-group').append($('#ITP_LIST_MPOMNG02010_VIEW_ROWCOPY').html());
|
227
|
231
|
var $li = $('#ITP_LIST_MPOMNG02010_VIEW_AREA .panel-group > .item-row:last');
|
228
|
232
|
$li.find('.fnItemNm').text(item.itemNm);
|
229
|
233
|
$li.find('.fnPchReqQty').text(item.pchReqQty + ' ' + item.unit);
|
230
|
|
- // $li.find('.fnPchReqQty').text(CommonObj.comma.set(item.pchReqQty));
|
231
|
234
|
$li.find('.fnPchReqAmt').text(CommonObj.currency.add(item.pchReqAmt));
|
232
|
235
|
_this.rows.push(item);
|
233
|
236
|
});
|