|
|
@@ -148,7 +148,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',rowSpan: params => params.data.rowspanRank === 1 ? params.data.rowspanCnt : 1,
|
|
|
+ {headerName: "처리상태", field: "recallStat", width: 100, cellClass: 'text-center',rowSpan: params => params.data.rowspanRank === 1 ? params.data.rowspanCnt : 1,
|
|
|
cellClassRules: {
|
|
|
'cell-span': "data.rowspanRank == 1"
|
|
|
},
|
|
|
@@ -184,7 +184,7 @@
|
|
|
{headerName: "WMS메시지", field: "adminMemo", width: 300, cellClass: 'text-left'},
|
|
|
{headerName: "회수요청구분", field: "chgGbNm", width: 90, cellClass: 'text-left'},
|
|
|
{headerName: "반품교환사유", field: "chgReasonNm", width: 150, cellClass: 'text-left'},
|
|
|
- {headerName: "반품/사유변경", field: "chgReason", width: 120, cellClass: 'text-center',rowSpan: params => params.data.rowspanRank === 1 ? params.data.rowspanCnt : 1,
|
|
|
+ {headerName: "반품/사유변경", field: "chgReason", width: 120, cellClass: 'text-center',rowSpan: params => params.data.rowspanRank === 1 ? params.data.rowspanCnt : 1,
|
|
|
cellClassRules: {
|
|
|
'cell-span': "data.rowspanRank == 1"
|
|
|
},
|
|
|
@@ -370,11 +370,28 @@
|
|
|
refreshFlag = "ban";
|
|
|
var ordChgSq = 0;
|
|
|
var param = "";
|
|
|
+ var ordDtlNoList ="";
|
|
|
+
|
|
|
+ var allData = gagaAgGrid.getAllRowData(gridOptions);
|
|
|
+
|
|
|
+ allData.forEach(function(item, index) {
|
|
|
+ if (event.data.orderNo == item.orderNo ){
|
|
|
+ ordDtlNoList = ordDtlNoList+","+item.orderDtlNo;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ ordDtlNoList = ordDtlNoList.substring(1,ordDtlNoList.length);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
param += "&ordNo=" + event.data.orderNo;
|
|
|
param += "&ordDtlNo=" + event.data.orderDtlNo;
|
|
|
param += "&delvFeeCd=" + event.data.delvFeeCd;
|
|
|
param += "&delvFeeCdGrp=" + "WMS";
|
|
|
param += "&ordChgSq=" + ordChgSq;
|
|
|
+ param += "&ordDtlNoArr=" + ordDtlNoList.split(",");
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
var actionUrl = "/orderChange/rtn/req/form?" + param;
|
|
|
cfnOpenModalPopup(actionUrl, 'popupReturnRequestForm');
|
|
|
}
|