isna пре 2 година
родитељ
комит
6ca568f5b3

+ 2 - 2
src/main/webapp/mobile/app/mcollmng/MCOLLMNG03010.html

@@ -93,14 +93,14 @@
93 93
 					  <div class="nomal">
94 94
 						<label class="">납품장소</label>
95 95
 						<span>:</span>
96
-					    <div class="fnWhsNm"></div>
96
+					    <div class="full fnWhsNm"></div>
97 97
 					  </div>
98 98
 					</div>
99 99
 					<div class="left">
100 100
 					  <div class="nomal">
101 101
 						<label class="">품목명</label>
102 102
 						<span>:</span>
103
-					    <div class="fnItemNm"></div>
103
+					    <div class="full fnItemNm"></div>
104 104
 					  </div>
105 105
 					</div>
106 106
 				    <div class="left">

+ 2 - 5
src/main/webapp/mobile/app/mordmng/MORDMNG02010.html

@@ -49,7 +49,7 @@
49 49
 		  </div>
50 50
 		   <div id="ITP_LIST_MORDMNG02010_LIST_ITEM_AREA" class="scroll_area row-2">
51 51
 			  <ul id="ITP_LIST_MORDMNG02010_LIST_ITEM_ROWS" class="mb_0 panel-group"></ul>
52
-			  <div id="ITP_LIST_MORDMNG02010_LIST_ITEM_ROWCOPY" style="display: block;">
52
+			  <div id="ITP_LIST_MORDMNG02010_LIST_ITEM_ROWCOPY" style="display: none;">
53 53
 				<li class="history_list12 item-row">
54 54
 					<div class="left">
55 55
 					  <div class="nomal">
@@ -62,10 +62,7 @@
62 62
 					  <div class="nomal">
63 63
 						<label class="col_4">발주번호</label>
64 64
 						<span>:</span>
65
-					    <div class="col_9 fnPchPodrUnqNo"></div>
66
-						<label class="col_4">발주항번</label>
67
-						<span>:</span>
68
-					    <div class="fnPchPodrDtlNo"></div>
65
+					    <div class="full fnPchPodrUnqNo"></div> 
69 66
 					  </div>
70 67
 					</div>
71 68
 					<div class="left">

+ 2 - 2
src/main/webapp/mobile/js/app/mcollmng/ITP_MCOLLMNG02010.js

@@ -138,9 +138,9 @@ let mobContObj = {
138 138
 					$li.find('.fnRtnWhsNm').text(item.rtnWhsNm);
139 139
 					$li.find('.fnItemId').text(item.itemId);
140 140
 					$li.find('.fnItemNm').text(item.itemNm);
141
-					$li.find('.fnRtnDodrItemQty').text(CommonObj.currency.add(item.rtnDodrItemQty, '개'));
141
+					$li.find('.fnRtnDodrItemQty').text(CommonObj.currency.add(item.rtnOdrQty, '개'));
142 142
 					$li.find('.fnUnitAmt').text(CommonObj.comma.set(item.unitAmt));
143
-					$li.find('.fnRtnDodrTotalAmt').text(CommonObj.comma.set(item.rtnDodrTotalAmt));
143
+					$li.find('.fnRtnDodrTotalAmt').text(CommonObj.comma.set(item.rtnOdrAmt));
144 144
 					mobContObj.list.rows.push(item);
145 145
 				});
146 146
 			};

+ 1 - 0
src/main/webapp/mobile/js/app/mcollmng/ITP_MCOLLMNG03010.js

@@ -130,6 +130,7 @@ let mobContObj = {
130 130
 					$('#ITP_LIST_MCOLLMNG03010_LIST_ITEM_AREA .panel-group').append($('#ITP_LIST_MCOLLMNG03010_LIST_ITEM_ROWCOPY').html());
131 131
 					var $li = $('#ITP_LIST_MCOLLMNG03010_LIST_ITEM_AREA .panel-group > .item-row:last');
132 132
 					$li.find('.fnBrandNm').text(item.brandNm);
133
+					$li.find('.fnItemNm').text(item.itemNm);
133 134
 					$li.find('.fnColPickUnqNo').text(item.colPickUnqNo);
134 135
 					$li.find('.fnPickStNm').text(item.pickStNm);
135 136
 					$li.find('.fnColRegDt').text(item.colRegDt);

+ 3 - 3
src/main/webapp/mobile/js/app/mordmng/ITP_MORDMNG02010.js

@@ -128,14 +128,14 @@ let mobContObj = {
128 128
 			var _this = this;
129 129
 			var callbackFn = function(result) {
130 130
 				console.log(result);
131
-				mobContObj.list.pager(result.gridTotal);
131
+				mobContObj.list.pager(result.gridTotal); 
132 132
 				if( result.gridRows && result.gridRows.length ) {
133 133
 					$.each(result.gridRows, function (i, item) {
134 134
 						$('#ITP_LIST_MORDMNG02010_LIST_ITEM_AREA .panel-group').append($('#ITP_LIST_MORDMNG02010_LIST_ITEM_ROWCOPY').html());
135 135
 						var $li = $('#ITP_LIST_MORDMNG02010_LIST_ITEM_AREA .panel-group > .item-row:last');
136 136
 						$li.find('.fnBrandNm').text(item.brandNm);
137
-						$li.find('.fnPchPodrUnqNo').text(item.pchPodrUnqNo);
138
-						$li.find('.fnPchPodrDtlNo').text(item.pchPodrDtlNo);
137
+						$li.find('.fnPchPodrUnqNo').text(item.pchPodrUnqNo+' - '+item.pchPodrDtlNo);
138
+						// $li.find('.fnPchPodrDtlNo').text();
139 139
 						$li.find('.fnDlvReqDt').text(item.dlvReqDt);
140 140
 						$li.find('.fnWhsNm').text(item.whsNm);
141 141
 						$li.find('.fnPodrDt').text(item.podrDt);