|
|
@@ -199,8 +199,14 @@
|
|
|
</select>
|
|
|
<input type="hidden" id="ageGrpCdOrg" name="ageGrpCdOrg"/>
|
|
|
</td>
|
|
|
+ <th>선물 주문가능여부<em class="required" title="필수"></em></th>
|
|
|
+ <td>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="giftPackYn" id="giftPackYnY" value="Y" />Y</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="giftPackYn" id="giftPackYnN" value="N"/>N</label>
|
|
|
+ <input type="hidden" id="giftPackYnOrg" name="giftPackYnOrg"/>
|
|
|
+ </td>
|
|
|
<th>가격변경일</th>
|
|
|
- <td colspan="3"><span id="priceUpdDtTxt"></span></td>
|
|
|
+ <td><span id="priceUpdDtTxt"></span></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<th>정상가</th>
|
|
|
@@ -223,8 +229,8 @@
|
|
|
</td>
|
|
|
<th>자사몰 노출여부<em class="required" title="필수"></em></th>
|
|
|
<td>
|
|
|
- <label class="rdoBtn"><input type="radio" name="selfMallYn" id="selfMallYnY" value="Y" checked/>Y</label>
|
|
|
- <label class="rdoBtn"><input type="radio" name="selfMallYn" id="selfMallYnn" value="N"/>N</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="selfMallYn" id="selfMallYnY" value="Y" />Y</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="selfMallYn" id="selfMallYnN" value="N"/>N</label>
|
|
|
<input type="hidden" id="selfMallYnOrg" name="selfMallYnOrg"/>
|
|
|
</td>
|
|
|
</tr>
|
|
|
@@ -504,6 +510,7 @@
|
|
|
},
|
|
|
{headerName: "재고연동여부", field: "erpStockLinkYn" , width: 100, cellClass: 'text-center'},
|
|
|
{headerName: "자사몰노출여부", field: "selfMallYn" , width: 120, cellClass: 'text-center'},
|
|
|
+ {headerName: "선물주문여부", field: "giftPackYn" , width: 120, cellClass: 'text-center'},
|
|
|
{headerName: "판매수수료율", field: "sellFeeRate" , width: 120, cellClass: 'text-right'},
|
|
|
{headerName: "사용자검색어", field: "goodsSnm1" , width: 150, cellClass: 'text-left'},
|
|
|
{headerName: "검색어", field: "goodsSnm" , width: 450, cellClass: 'text-left', tooltipField: "goodsSnm"}
|
|
|
@@ -695,6 +702,12 @@
|
|
|
}else{
|
|
|
$("#goodsDetailForm input:radio[name=selfMallYn]:input[value='N']").trigger('click');
|
|
|
}
|
|
|
+ if (result.giftPackYn == "Y"){
|
|
|
+ $("#goodsDetailForm input:radio[name=giftPackYn]:input[value='Y']").trigger('click');
|
|
|
+ }else{
|
|
|
+ $("#goodsDetailForm input:radio[name=giftPackYn]:input[value='N']").trigger('click');
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
$('#goodsDetailForm input[name=sellFeeRate]').val(result.sellFeeRate);
|
|
|
$("#goodsDetailForm input[name=sellFeeRateOrg]").val(result.sellFeeRate);
|
|
|
@@ -718,6 +731,7 @@
|
|
|
$("#goodsDetailForm input[name=formalGbOrg]").val(result.formalGb);
|
|
|
$("#goodsDetailForm input[name=erpPriceLinkYnOrg]").val(result.erpPriceLinkYn);
|
|
|
$("#goodsDetailForm input[name=selfMallYnOrg]").val(result.selfMallYn);
|
|
|
+ $("#goodsDetailForm input[name=giftPackYnOrg]").val(result.giftPackYn);
|
|
|
$("#goodsDetailForm input[name=prePpntUsableYnOrg]").val(result.prePpntUsableYn);
|
|
|
$("#goodsDetailForm input[name=preMpntUsableYnOrg]").val(result.preMpntUsableYn);
|
|
|
$("#goodsDetailForm input[name=changeableYnOrg]").val(result.changeableYn);
|
|
|
@@ -1728,6 +1742,10 @@
|
|
|
if ($("#goodsDetailForm input[name=selfMallYnOrg]").val() != $("input[name=selfMallYn]:checked").val()){
|
|
|
return true;
|
|
|
}
|
|
|
+ //선물주문여부
|
|
|
+ if ($("#goodsDetailForm input[name=giftPackYnOrg]").val() != $("input[name=giftPackYn]:checked").val()){
|
|
|
+ return true;
|
|
|
+ }
|
|
|
//PC포인트
|
|
|
if ($("#goodsDetailForm input[name=pntPrateOrg]").val() != $("#goodsDetailForm input[name=pntPrate]").val()){
|
|
|
return true;
|