|
@@ -251,9 +251,10 @@ function appCallFnBarcode(barcode) {
|
251
|
251
|
let mobPopObj = {
|
252
|
252
|
init: function(popId, parentId) {
|
253
|
253
|
switch (popId) {
|
254
|
|
- case 'ITP_POP_MPOMNG01010_REQ_AREA' : this.popReqConfirm.init(parentId); break;
|
255
|
|
- case 'ITP_POP_MPOMNG01010_WHS_AREA' : this.popWhsNm.init(); break;
|
256
|
|
- case 'ITP_POP_MPOMNG01010_ITEM_AREA' : this.popItem.init(); break;
|
|
254
|
+ case 'ITP_POP_MPOMNG01010_REQ_AREA' : this.popReqConfirm.init(parentId); break;
|
|
255
|
+ case 'ITP_POP_MPOMNG01010_WHS_AREA' : this.popWhsNm.init(); break;
|
|
256
|
+ case 'ITP_POP_MPOMNG01010_ITEM_AREA' : this.popItem.init(); break;
|
|
257
|
+ case 'ITP_POP_MPOMNG01010_WISH_LIST_AREA' : this.popWishList.init(); break;
|
257
|
258
|
}
|
258
|
259
|
},
|
259
|
260
|
popItem: {
|
|
@@ -374,6 +375,22 @@ let mobPopObj = {
|
374
|
375
|
mobPopObj.hide('ITP_POP_MPOMNG01010_ITEM_AREA');
|
375
|
376
|
}
|
376
|
377
|
},
|
|
378
|
+ popWishList: {
|
|
379
|
+ rows: [],
|
|
380
|
+ init: function () {
|
|
381
|
+ this.clear();
|
|
382
|
+ this.load();
|
|
383
|
+ },
|
|
384
|
+ load: function() {
|
|
385
|
+
|
|
386
|
+ },
|
|
387
|
+ search: function() {
|
|
388
|
+
|
|
389
|
+ },
|
|
390
|
+ clear: function() {
|
|
391
|
+ this.rows.length = 0;
|
|
392
|
+ }
|
|
393
|
+ },
|
377
|
394
|
popWhsNm: {
|
378
|
395
|
init: function () {
|
379
|
396
|
$('#ITP_LIST_MPOMNG01010_POP_WHS_AREA .mb_0').children().remove();
|