|
|
@@ -169,7 +169,57 @@ var columnDefs = [
|
|
|
{headerName: "요청수량", field:"chgQty", width:100, cellClass: 'text-center'},
|
|
|
{headerName: "교환상세번호", field:"exchangeOrdDtlNo", width:100, cellClass: 'text-center'},
|
|
|
{headerName: "교환옵션1", field:"optCd11", width:100, cellClass: 'text-center'},
|
|
|
- {headerName: "교환옵션2", field:"optCd12", width:100, cellClass: 'text-center'}
|
|
|
+ {headerName: "교환옵션2", field:"optCd12", width:100, cellClass: 'text-center'},
|
|
|
+ {headerName: "클레임시유", field:"chgReason", width:100, cellClass: 'text-center'},
|
|
|
+ {
|
|
|
+ headerName : "주문금액"
|
|
|
+ , field : "ordAmt"
|
|
|
+ , width : 80
|
|
|
+ , cellClass : 'text-right'
|
|
|
+ , cellRenderer : function (params) {
|
|
|
+ return params.value.addComma();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {headerName: "주문수량", field:"ordQty", width:100, cellClass: 'text-center'},
|
|
|
+ {
|
|
|
+ headerName : "취소상품금액"
|
|
|
+ , field : "cnclRtnAmt"
|
|
|
+ , width : 80
|
|
|
+ , cellClass : 'text-right'
|
|
|
+ , cellRenderer : function (params) {
|
|
|
+ return params.value.addComma();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ headerName : "할인금액"
|
|
|
+ , field : "dcSumAmt"
|
|
|
+ , width : 80
|
|
|
+ , cellClass : 'text-right'
|
|
|
+ , cellRenderer : function (params) {
|
|
|
+ return params.value.addComma();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ headerName : "환불배송비"
|
|
|
+ , field : "rfDeliveryFee"
|
|
|
+ , width : 80
|
|
|
+ , cellClass : 'text-right'
|
|
|
+ , cellRenderer : function (params) {
|
|
|
+ return params.value.addComma();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ headerName : "환불예정금액"
|
|
|
+ , field : "rfRealCnclAmt"
|
|
|
+ , width : 80
|
|
|
+ , cellClass : 'text-right'
|
|
|
+ , cellRenderer : function (params) {
|
|
|
+ return params.value.addComma();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {headerName: "배송비결제여부", field:"addPayCostPayYn", width:100, cellClass: 'text-center'},
|
|
|
+ {headerName: "배송비결제수단", field:"addPayCostPgGb", width:100, cellClass: 'text-center'},
|
|
|
+ {headerName: "클레임메모", field:"chgMemo", width:100, cellClass: 'text-center'}
|
|
|
];
|
|
|
|
|
|
var gridOptions = gagaAgGrid.getGridOptions(columnDefs);
|