|
@@ -23,6 +23,8 @@
|
|
|
</div>
|
|
</div>
|
|
|
<!-- //TITLE -->
|
|
<!-- //TITLE -->
|
|
|
<form id="goodsPopupForm" name="goodsPopupForm" action="#" th:action="@{'/goods/popup/list'}">
|
|
<form id="goodsPopupForm" name="goodsPopupForm" action="#" th:action="@{'/goods/popup/list'}">
|
|
|
|
|
+ <input type="hidden" id="searchGb" name="searchGb" />
|
|
|
|
|
+ <input type="hidden" id="goodsPriceYn" name="goodsPriceYn" value="Y"/> <!-- 즉시할인판매가 조회 -->
|
|
|
<div class="panelContent">
|
|
<div class="panelContent">
|
|
|
<ul class="notice">
|
|
<ul class="notice">
|
|
|
<li>아래 검색조건 중 <font color="red">업체, 키워드, 발생일</font>중 하나를 꼭 입력해 주세요.</li>
|
|
<li>아래 검색조건 중 <font color="red">업체, 키워드, 발생일</font>중 하나를 꼭 입력해 주세요.</li>
|
|
@@ -295,7 +297,16 @@
|
|
|
cellEditor: 'textCellEditor',
|
|
cellEditor: 'textCellEditor',
|
|
|
cellEditorParams: { maxlength: 14, validType: 'numeric'}
|
|
cellEditorParams: { maxlength: 14, validType: 'numeric'}
|
|
|
},
|
|
},
|
|
|
- {headerName: "할인율", field: "dcRate" , width: 90, cellClass: 'text-right'},
|
|
|
|
|
|
|
+ /*{headerName: "할인율", field: "dcRate" , width: 90, cellClass: 'text-right'},*/
|
|
|
|
|
+ {headerName: "자사즉시할인가", field: "benefitCurrPrice" , width: 120, cellClass: 'text-right'
|
|
|
|
|
+ ,valueFormatter: function(params) {
|
|
|
|
|
+ if (params.value > 0) {
|
|
|
|
|
+ return params.value.addComma();
|
|
|
|
|
+ }else{
|
|
|
|
|
+ return '';
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
{headerName: "가격변경일", field: "priceUpdDt", width: 150, cellClass: 'text-center',
|
|
{headerName: "가격변경일", field: "priceUpdDt", width: 150, cellClass: 'text-center',
|
|
|
cellRenderer: function(params) {
|
|
cellRenderer: function(params) {
|
|
|
return !gagajf.isNull(params.value) ? params.value.toDate("YYYYMMDDHHmmss").format("YYYY-MM-DD HH:mm:ss") : '';
|
|
return !gagajf.isNull(params.value) ? params.value.toDate("YYYYMMDDHHmmss").format("YYYY-MM-DD HH:mm:ss") : '';
|