123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- require(['config'], function() {
- require([
- ], function($) {
- mobPageObj.init();
- });
- });
- /*API URL*/
- const API_MOBILE_GRID_LIST = '/api/rtnmng/rtn/spply-rtn-grid-list'; // 목록
- const API_MOBILE_INFO = '/api/rtnmng/rtn/info-rtnOdr'; // 상세
- const API_POP_SEARCH_LIST = '/api/whs/mng/pop-whs-search';
- const PAGE_MODE_LIST = "LIST";
- const PAGE_MODE_VIEW = "VIEW";
- let mobPageObj = {
- viewMode: PAGE_MODE_LIST,
- init: function () {
- this.ui.init();
- this.event.init();
- this.ready();
- },
- ui: {
- init: function () {
- this.view();
- this.info();
- },
- view: function() {
- // 공통코드 표시
- $('select').each(function() {
- if($(this).data('select-code')) {
- fn_make_select(CODE_LIST, $(this).data('select-code'), $(this).attr('id'));
- }
- });
- // 조회일자 지정
- $('#ITP_MOBILE_MCOLLMNG01010 .itp_input.date').datepicker(ITP_DATE_LANGUAGE);
- $('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH_FROM_DT').datepicker('setDate', itp_fn_date_add('D', -7));
- $('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH_TO_DT').datepicker('setDate', itp_fn_date_add('M', 0));
- },
- info: function() {
- $('input:hidden[id$="_BRAND_ID"]').val(fn_make_user_info.get('brandId'));
- $('input:hidden[id$="_STORE_ID"]').val(fn_make_user_info.get('storeId'));
- $('input:hidden[id$="_SPPLY_ID"]').val(fn_make_user_info.get('userId'));
- }
- },
- event: {
- init: function() {
- this.button();
- },
- button: function() {
- $('button[id^="ITP_BTN_MCOLLMNG01010_LIST"]').on('click', function() {
- var id = $(this).attr('id');
- switch (id) {
- case 'ITP_BTN_MCOLLMNG01010_LIST_SEARCH_WHS_NM' : mobPopObj.popWhsNm.init(); break;
- case 'ITP_BTN_MCOLLMNG01010_LIST_DELETE_WHS_NM' : mobPopObj.popWhsNm.delete(); break;
- case 'ITP_BTN_MCOLLMNG01010_LIST_SEARCH' : mobContObj.list.search(); break;
- }
- return false;
- });
- $('button[id^="ITP_BTN_MCOLLMNG01010_VIEW"]').on('click', function() {
- var id = $(this).attr('id');
- switch (id) {
- case 'ITP_BTN_MCOLLMNG01010_VIEW_CANCEL_LIST' : mobContObj.view.cancel(); break;
- }
- return false;
- });
- $(document).on('click', '#ITP_LIST_MCOLLMNG01010_LIST_ITEM_ROWS li', function() {
- var item = mobContObj.list.rows[$(this).index()];
- mobContObj.view.init(item);
- });
- $(document).on('click', '#ITP_LIST_MCOLLMNG01010_POP_WHS_ROWS li button', function() {
- mobPopObj.popWhsNm.choice($(this));
- });
- }
- },
- switchScreen: function(mode) {
- $('#ITP_MOBILE_MCOLLMNG01010').find('div[id$="_CONTAINER"]').each(function(i) {
- $(this).hide();
- });
- if(mode === PAGE_MODE_LIST) {
- $('#ITP_AJAX_MCOLLMNG01010_LIST_CONTAINER').show();
- } else if(mode === PAGE_MODE_VIEW) {
- $('#ITP_AJAX_MCOLLMNG01010_VIEW_CONTAINER').show();
- CommonObj.moreView('#ITP_LIST_MCOLLMNG01010_LIST_ITEM_AREA', false);
- }
- this.viewMode = mode;
- },
- ready: function() {
- mobContObj.list.init();
- }
- };
- let mobContObj = {
- list: {
- listPage: 1,
- rows: [],
- init: function() {
- mobPageObj.switchScreen(PAGE_MODE_LIST);
- this.search();
- },
- search: function() {
- this.listPage = 1;
- this.rows.length = 0;
- $('#ITP_LIST_MCOLLMNG01010_LIST_ITEM_ROWS').empty();
- setTimeout(function() {
- mobContObj.list.load();
- }, 100);
- },
- pager: function(totPage) {
- (this.listPage < totPage) ?
- CommonObj.moreView('#ITP_LIST_MCOLLMNG01010_LIST_ITEM_AREA', true, mobContObj.list.load) :
- CommonObj.moreView('#ITP_LIST_MCOLLMNG01010_LIST_ITEM_AREA', false);
- this.listPage += 1;
- },
- load: function() {
- var _this = this;
- var callbackFn = function(result) {
- console.log(result);
- mobContObj.list.pager(result.gridTotal);
- $.each(result.gridRows, function (i, item) {
- $('#ITP_LIST_MCOLLMNG01010_LIST_ITEM_AREA .panel-group').append($('#ITP_LIST_MCOLLMNG01010_LIST_ITEM_ROWCOPY').html());
- var $li = $('#ITP_LIST_MCOLLMNG01010_LIST_ITEM_AREA .panel-group > .item-row:last');
- $li.find('.fnBrandNm').text(item.brandNm);
- $li.find('.fnRtnPodrUnqNo').text(item.rtnPodrUnqNo);
- $li.find('.fnRtnOdrStNm').text(item.rtnOdrStNm);
- $li.find('.fnRtnOdrRegDt').text(item.rtnOdrRegDt);
- $li.find('.fnColReqDt').text(item.colReqDt);
- $li.find('.fnRtnWhsNm').text(item.rtnWhsNm);
- $li.find('.fnRtnDodrTotalAmt').text(CommonObj.currency.add(item.rtnDodrTotalAmt));
- $li.find('.fnRtnDodrItemQty').text(CommonObj.currency.add(item.rtnDodrItemQty, '개'));
- mobContObj.list.rows.push(item);
- });
- };
- const param = $('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH').serializeObject();
- param.gridPage = mobContObj.list.listPage;
- param.gridSize = mobile_list_size;
- console.log(JSON.stringify(param));
- fn_ajax_call(API_MOBILE_GRID_LIST, JSON.stringify(param), callbackFn, 'POST');
- }
- },
- view: {
- init: function(item) {
- mobPageObj.switchScreen(PAGE_MODE_VIEW);
- this.search(item);
- },
- search: function(item) {
- var _this = this;
- var callbackFn = function(result) {
- console.log(result);
- _this.view(result);
- };
- const param = {
- 'brandId': fn_make_user_info.get('brandId'),
- 'spplyId': fn_make_user_info.get('userId'),
- 'rtnPodrUnqNo': item.rtnPodrUnqNo
- };
- fn_ajax_call(API_MOBILE_INFO, param, callbackFn, 'GET');
- },
- view: function(result) {
- var _this = this;
- var id = '#ITP_AJAX_MCOLLMNG01010_VIEW_CONTAINER';
- $(id).find('.fnBrandNm').text(result.brandNm);
- $(id).find('.fnPchPodrUnqNo').text(result.pchPodrUnqNo);
- $(id).find('.fnPodrDt').text(result.podrDt);
- $(id).find('.fnPchOdrStNm').text(result.pchOdrStNm);
- $(id).find('.fnWhsNm').text(result.whsNm);
- $(id).find('.fnPodrTotalAmt').text(CommonObj.currency.add(result.podrItemQty));
- $(id).find('.fnPodrMgrNm').text(result.podrMgrNm);
- $.each(result.rtnOdrDtlList, function (i, item) {
- $('#ITP_LIST_MCOLLMNG01010_VIEW_ITEM_AREA .panel-group').append($('#ITP_LIST_MCOLLMNG01010_VIEW_ITEM_ROWCOPY').html());
- var $li = $('#ITP_LIST_MCOLLMNG01010_VIEW_ITEM_AREA .panel-group > .item-row:last');
- $li.find('.fnRtnPodrDtlNo').text(item.rtnPodrDtlNo);
- $li.find('.fnItemid').text(item.itemId);
- $li.find('.fnItemNm').text(item.itemNm);
- $li.find('.fnUnitQty').text(item.unitQty);
- $li.find('.fnUnitAmt').text(CommonObj.currency.add(item.unitAmt));
- $li.find('.fnUnit').text(item.unit);
- $li.find('.fnRtnReqQty').text(CommonObj.comma.set(item.rtnReqQty));
- $li.find('.fnRtnAmt').text(CommonObj.currency.add(item.rtnAmt));
- $li.find('.fnColReqDt').text(result.colReqDt);
- });
- },
- cancel: function () {
- var id = '#ITP_AJAX_MCOLLMNG01010_VIEW_CONTAINER';
- $(id).find('.fnBrandNm').text('');
- $(id).find('.fnPchPodrUnqNo').text('');
- $(id).find('.fnPodrDt').text('');
- $(id).find('.fnPchOdrStNm').text('');
- $(id).find('.fnWhsNm').text('');
- $(id).find('.fnPodrTotalAmt').text('');
- $(id).find('.fnPodrMgrNm').text('');
- $('#ITP_LIST_MCOLLMNG01010_VIEW_ITEM_AREA .panel-group').empty();
- mobPageObj.switchScreen(PAGE_MODE_LIST);
- }
- }
- };
- let mobPopObj = {
- popWhsNm: {
- popId: 'ITP_POP_MCOLLMNG01010_WHS_AREA',
- rows: [],
- init: function () {
- this.rows.length = 0;
- mobPopObj.show(this.popId);
- this.search();
- this.action();
- },
- search: function () {
- var _this = this;
- $('#ITP_LIST_MCOLLMNG01010_POP_WHS_AREA .panel-group').empty();
- var callbackFn = function(result) {
- console.log(result);
- _this.view(result.gridRows);
- };
- const param = $('#ITP_FORM_MCOLLMNG01010_POP_WHS').serializeObject();
- param.swhsDvsn = 'W01';
- fn_ajax_call(API_POP_SEARCH_LIST, JSON.stringify(param), callbackFn, 'POST');
- },
- view: function(gridRows) {
- this.rows = gridRows;
- $.each(gridRows, function (i, item) {
- $('#ITP_LIST_MCOLLMNG01010_POP_WHS_AREA .panel-group').append($('#ITP_LIST_MCOLLMNG01010_POP_WHS_ROWCOPY').html());
- var $li = $('#ITP_LIST_MCOLLMNG01010_POP_WHS_AREA .panel-group > .item-row:last');
- $li.find('.fnWhsNm').text(item.whsNm);
- $li.find('.fnLocationNm').text(item.locationNm);
- $li.find('.fnWhsId').data('whs-id', item.whsId);
- });
- },
- choice: function(elem) {
- var _this = this;
- var whsId = $(elem).data('whs-id');
- $.each(this.rows, function (i, item) {
- if(whsId === item.whsId) {
- $('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH #ITP_FORM_MCOLLMNG01010_LIST_SEARCH_WHS_ID').val(item.whsId);
- $('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH #ITP_FORM_MCOLLMNG01010_LIST_SEARCH_WHS_NM').val(item.whsNm);
- _this.close();
- return false;
- }
- });
- },
- action: function() {
- var _this = this;
- $('button[id^="ITP_BTN_MCOLLMNG01010_POP_WHS"]').off('click').on('click', function() {
- var id = $(this).attr('id');
- switch (id) {
- case 'ITP_BTN_MCOLLMNG01010_POP_WHS_SEARCH' : _this.search(); break;
- case 'ITP_BTN_MCOLLMNG01010_POP_WHS_CHOICE' : _this.choice($(this)); break;
- case 'ITP_BTN_MCOLLMNG01010_POP_WHS_CLOSE' : _this.close(); break;
- }
- return false;
- });
- },
- delete: function() {
- $('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH #ITP_FORM_MCOLLMNG01010_LIST_SEARCH_WHS_ID').val('');
- $('#ITP_FORM_MCOLLMNG01010_LIST_SEARCH #ITP_FORM_MCOLLMNG01010_LIST_SEARCH_WHS_NM').val('');
- },
- close: function() {
- this.rows.length = 0;
- $('#ITP_POP_MCOLLMNG01010_LIST_WHS_AREA .panel-group').empty();
- $('#ITP_FORM_MCOLLMNG01010_POP_WHS #ITP_FORM_MCOLLMNG01010_POP_WHS_KEYWORD').val('');
- mobPopObj.hide(this.popId);
- }
- },
- show: function(popId) {
- $('button[id$="_CLOSE"]').off('click').on('click', function() {
- console.log($(this).attr('id'));
- if($(this).hasClass('btn-pop-close')) {
- mobPopObj.hide(popId);
- }
- });
- $('#' + popId).show();
- },
- hide: function(popId) {
- $('#' + popId).closest('.mobile-pop-close').hide();
- }
- };
|