|
|
@@ -55,7 +55,7 @@
|
|
|
</td>
|
|
|
<th class="dashR">주문번호</th>
|
|
|
<td class="dashR">
|
|
|
- <input type="text" class="w40p" name="orderNo" placeholder="" maxlength="20" data-valid-type="numeric"/>
|
|
|
+ <input type="text" class="w40p" name="orderNo" oninput="this.value = this.value.replace(/[^0-9.]/g, '').replace(/(\..*)\./g, '$1');" placeholder="" maxlength="9" />
|
|
|
</td>
|
|
|
<th class="dashR">처리상태</th>
|
|
|
<td class="dashR">
|
|
|
@@ -152,7 +152,7 @@
|
|
|
var columnDefs = [
|
|
|
{headerName: "반품예외처리번호", field: "recallExceptionNo", width: 50, cellClass: 'text-center', hide: true},
|
|
|
//{headerName: "No.", field: "rnum", width: 50, cellClass: 'text-center'},
|
|
|
- {headerName: "", field: "recallStat", width: 100, cellClass: 'text-center',
|
|
|
+ {headerName: "", field: "recallStatNm", width: 100, cellClass: 'text-center',
|
|
|
/*
|
|
|
rowSpan: params => params.data.rowspanRank === 1 ? params.data.rowspanCnt : 1,
|
|
|
cellClassRules: {
|
|
|
@@ -170,12 +170,12 @@
|
|
|
return btnText;
|
|
|
}
|
|
|
},
|
|
|
- {headerName: "처리상태", field: "recallStat", width: 80, cellClass: 'text-center',
|
|
|
+ {headerName: "처리상태", field: "statNm", width: 80, cellClass: 'text-center'
|
|
|
/*
|
|
|
rowSpan: params => params.data.rowspanRank === 1 ? params.data.rowspanCnt : 1,
|
|
|
cellClassRules: {
|
|
|
'cell-span': "data.rowspanRank == 1"
|
|
|
- }, */
|
|
|
+ },
|
|
|
cellRenderer: function(params) {
|
|
|
var btnText = '';
|
|
|
if(params.data.recallStat == 'P') {
|
|
|
@@ -186,7 +186,8 @@
|
|
|
}
|
|
|
} else { btnText = '완료' }
|
|
|
return btnText;
|
|
|
- }
|
|
|
+ }
|
|
|
+ */
|
|
|
},
|
|
|
{headerName: "주문번호", field: "orderNo", width: 100, cellClass: 'text-center',
|
|
|
/*
|
|
|
@@ -238,9 +239,9 @@
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- {headerName: "주문자명", field: "customerName", width: 100, cellClass: 'text-center'},
|
|
|
- {headerName: "휴대번호", field: "ordPhnno", width: 100, cellClass: 'text-center'},
|
|
|
- {headerName: "LMS", field: "ordPhnno", width: 80, cellClass: "text-center",
|
|
|
+ {headerName: "주문자명", field: "maskingCustomerName", width: 100, cellClass: 'text-center'},
|
|
|
+ {headerName: "휴대번호", field: "maskingOrdPhnno", width: 100, cellClass: 'text-center'},
|
|
|
+ {headerName: "LMS", field: "maskingOrdPhnno", width: 80, cellClass: "text-center",
|
|
|
cellRenderer: function(params) {
|
|
|
return '<button type="button" class="btn btn-base btn-sm" onclick="fnLms(\'' + params.data.ordPhnno + '\',\'' + params.data.custNo + '\');"> LMS </button>';
|
|
|
}
|
|
|
@@ -340,7 +341,7 @@
|
|
|
{headerName: "주문수량", field: "qty", width: 80, cellClass: 'text-right'},
|
|
|
{headerName: "입고수량", field: "exceptionQty", width: 80, cellClass: 'text-right'},
|
|
|
{headerName: "택배사명", field: "logisticsName", width: 100, cellClass: 'text-center'},
|
|
|
- {headerName: "반송장번호", field: "invoiceNo", width: 120, cellClass: 'text-center'},
|
|
|
+ {headerName: "반송장번호", field: "invoiceNo", width: 120, cellClass: 'text-center'},
|
|
|
{headerName: "주문경로", field: "siteCd", width: 100, cellClass: 'text-left'},
|
|
|
{headerName: "등록일시", field: "dateCreated", width: 150, cellClass: 'text-center'}
|
|
|
|