|
|
@@ -149,14 +149,20 @@
|
|
|
{
|
|
|
headerName: "상품평번호", field: "reviewSq", width: 90, cellClass: 'text-center',
|
|
|
cellRenderer: function(params) {
|
|
|
- return '<a href="javascript:void(0);">' + (params.value == 'R' ? '일반' : '포토/영상') + '</a>';
|
|
|
+ return '<a href="javascript:void(0);" onclick="fnOpenReviewPopup(' + params.value + ');">' + (params.value == 'R' ? '일반' : '포토/영상') + '</a>';
|
|
|
}
|
|
|
},
|
|
|
{headerName: "상품평유형", field: "reviewGb", width: 90, cellClass: 'text-center'},
|
|
|
{
|
|
|
headerName: "주문상품", cellClass: 'text-center',
|
|
|
children: [
|
|
|
- {headerName: '주문번호', field: 'ordNo', width: 90, cellClass: 'text-center', cellRenderer: function(params) { return '<a href="javascript:void(0);">' + params.value + '</a>'; }},
|
|
|
+ {
|
|
|
+ headerName: '주문번호', field: 'ordNo', width: 90, cellClass: 'text-center',
|
|
|
+ cellRenderer: function(params) {
|
|
|
+ if (gagajf.isNull(params.value)) return '';
|
|
|
+ return '<a href="javascript:void(0);">' + params.value + '</a>';
|
|
|
+ }
|
|
|
+ },
|
|
|
{headerName: '주문상세번호', field: 'ordDtlNo', width: 120, cellClass: 'text-center', hide: true},
|
|
|
{headerName: "브랜드명", field: "brandKnm", width: 130, cellClass: 'text-center'},
|
|
|
{
|