|
@@ -175,8 +175,12 @@
|
|
|
</td>
|
|
</td>
|
|
|
</tr>
|
|
</tr>
|
|
|
<tr>
|
|
<tr>
|
|
|
|
|
+ <th>반품처명</th>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <input type="text" class="w200" name="rtnLocNm" maxlength="100" placeholder="반품처명"/>
|
|
|
|
|
+ </td>
|
|
|
<th>반품처주소<i class="required" title="필수"></i></th>
|
|
<th>반품처주소<i class="required" title="필수"></i></th>
|
|
|
- <td colspan="7">
|
|
|
|
|
|
|
+ <td colspan="5">
|
|
|
<input type="text" class="w100" name="rtnLocZipcode" data-valid-name="반품처 우편번호" readonly="readonly"/>
|
|
<input type="text" class="w100" name="rtnLocZipcode" data-valid-name="반품처 우편번호" readonly="readonly"/>
|
|
|
<button type="button" class="btn btn-info btn-sm" onclick="fnOpenDaumAddr('rtnLoc');">우편번호찾기</button>
|
|
<button type="button" class="btn btn-info btn-sm" onclick="fnOpenDaumAddr('rtnLoc');">우편번호찾기</button>
|
|
|
<input type="text" class="w300" name="rtnLocBaseAddr" required="required" data-valid-name="반품처 기본주소" readonly="readonly"/>
|
|
<input type="text" class="w300" name="rtnLocBaseAddr" required="required" data-valid-name="반품처 기본주소" readonly="readonly"/>
|
|
@@ -236,6 +240,8 @@
|
|
|
return gagaAgGrid.lookupValue(supplyCompList, params.data.supplyCompCd);
|
|
return gagaAgGrid.lookupValue(supplyCompList, params.data.supplyCompCd);
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ { headerName: "재고적용율(%)", field: "stockApplRate", width: 120, cellClass: 'text-center' },
|
|
|
|
|
+ { headerName: "출고수수료율(%)", field: "delvFeeRate", width:120, cellClass: 'text-center' },
|
|
|
{ headerName: "출고지정순서", field: "delvAssignOrd", width: 120, cellClass: 'text-center' },
|
|
{ headerName: "출고지정순서", field: "delvAssignOrd", width: 120, cellClass: 'text-center' },
|
|
|
// {
|
|
// {
|
|
|
// headerName: "출고지정등급", field: "delvAssignGrade", width: 150, cellClass: 'text-center',
|
|
// headerName: "출고지정등급", field: "delvAssignGrade", width: 150, cellClass: 'text-center',
|
|
@@ -243,14 +249,19 @@
|
|
|
// return gagaAgGrid.lookupValue(delvGradeList, params.value);
|
|
// return gagaAgGrid.lookupValue(delvGradeList, params.value);
|
|
|
// }
|
|
// }
|
|
|
// },
|
|
// },
|
|
|
- { headerName: "재고적용율(%)", field: "stockApplRate", width: 120, cellClass: 'text-center' },
|
|
|
|
|
- {headerName: "출고수수료율(%)", field: "delvFeeRate", width:120, cellClass: 'text-center' },
|
|
|
|
|
{
|
|
{
|
|
|
headerName: "송장출력형태", field: "invoicePrintType", width:150 , cellClass: 'text-center',
|
|
headerName: "송장출력형태", field: "invoicePrintType", width:150 , cellClass: 'text-center',
|
|
|
valueGetter: function (params) {
|
|
valueGetter: function (params) {
|
|
|
return gagaAgGrid.lookupValue(invoicePrintTypeList, params.data.invoicePrintType);
|
|
return gagaAgGrid.lookupValue(invoicePrintTypeList, params.data.invoicePrintType);
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ { headerName: "출고처우편번호", field: "delvLocZipcode", width: 150, cellClass: 'text-center', hide: true },
|
|
|
|
|
+ { headerName: "출고처기본주소", field: "delvLocBaseAddr", width: 300, hide: true },
|
|
|
|
|
+ { headerName: "출고처상세주소", field: "delvLocDtlAddr", width: 300, hide: true },
|
|
|
|
|
+ { headerName: "반품처명", field: "rtnLocNm", width: 100, cellClass: 'text-center', hide: true },
|
|
|
|
|
+ { headerName: "반품처우편번호", field: "rtnLocZipcode", width: 150, cellClass: 'text-center', hide: true },
|
|
|
|
|
+ { headerName: "반품처기본주소", field: "rtnLocBaseAddr", width: 300, hide: true },
|
|
|
|
|
+ { headerName: "반품처상세주소", field: "rtnLocDtlAddr", width: 300, hide: true },
|
|
|
{
|
|
{
|
|
|
headerName: "사용여부", field: "useYn", width: 100, cellClass: 'text-center',
|
|
headerName: "사용여부", field: "useYn", width: 100, cellClass: 'text-center',
|
|
|
valueGetter: function (params) { return params.data.useYn == 'Y' ? 'Yes' : 'No'; }
|
|
valueGetter: function (params) { return params.data.useYn == 'Y' ? 'Yes' : 'No'; }
|
|
@@ -303,6 +314,8 @@
|
|
|
// 신규버튼
|
|
// 신규버튼
|
|
|
$('#btnNew').on('click', function() {
|
|
$('#btnNew').on('click', function() {
|
|
|
$("#detailForm")[0].reset();
|
|
$("#detailForm")[0].reset();
|
|
|
|
|
+ $('#detailForm input[name=delvLocCd]').attr('readonly', false);
|
|
|
|
|
+ $('#detailForm input[name=delvLocCd]').focus();
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
// 저장
|
|
// 저장
|