|
|
@@ -132,7 +132,7 @@
|
|
|
</td>
|
|
|
<th>입점상태<i class="required" title="필수"></i></th>
|
|
|
<td>
|
|
|
- <select name="supplyStat" id="supplyStat">
|
|
|
+ <select name="supplyStat" id="supplyStat" required="required" data-valid-name="입점상태">
|
|
|
<option value="">[선택]</option>
|
|
|
<option th:if="${supplyStatList}" th:each="oneData, status : ${supplyStatList}" th:value="${oneData.cd}" th:text="${'[' + oneData.cd + '] ' + oneData.cdNm}"></option>
|
|
|
</select>
|
|
|
@@ -171,9 +171,9 @@
|
|
|
<tr>
|
|
|
<th>유통구분<i class="required" title="필수"></i></th>
|
|
|
<td>
|
|
|
- <select name="distributionGb" data-valid-name="유통구분">
|
|
|
+ <select name="distributionGb" required="required" data-valid-name="유통구분">
|
|
|
<option value="">[선택]</option>
|
|
|
- <option th:if="${distributionGbList}" th:each="oneData, status : ${distributionGbList}" th:value="${oneData.cd}" th:text="${oneData.cdNm}" th:selected="${bankNm}"></option>
|
|
|
+ <option th:if="${distributionGbList}" th:each="oneData, status : ${distributionGbList}" th:value="${oneData.cd}" th:text="${oneData.cdNm}"></option>
|
|
|
</select>
|
|
|
</td>
|
|
|
<th>무료배송비최소주문금액<i class="required" title="필수"></i></th>
|
|
|
@@ -221,9 +221,12 @@
|
|
|
<label class="rdoBtn"><input type="radio" name="econtractYn" value="Y" checked="checked"/>Yes<span></span></label>
|
|
|
<label class="rdoBtn"><input type="radio" name="econtractYn" value="N"/>No<span></span></label>
|
|
|
</td>
|
|
|
- <th>정산일<i class="required" title="필수"></i></th>
|
|
|
+ <th>정산주기<i class="required" title="필수"></i></th>
|
|
|
<td>
|
|
|
- 매일 <input type="text" name="settleDay" class="w100 aR" maxlength="2" data-valid-type="numeric"/>일
|
|
|
+ <select name="settleDay" required="required" data-valid-name="정산주기">
|
|
|
+ <option value="">[선택]</option>
|
|
|
+ <option th:if="${settleDayList}" th:each="oneData, status : ${settleDayList}" th:value="${oneData.cd}" th:text="${'[' + oneData.cd + '] ' + oneData.cdNm}"></option>
|
|
|
+ </select>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
@@ -231,7 +234,7 @@
|
|
|
<td>
|
|
|
<select name="bankCd">
|
|
|
<option value="">[선택]</option>
|
|
|
- <option th:if="${bankList}" th:each="oneData, status : ${bankList}" th:value="${oneData.cd}"th:text="${oneData.cdNm}"th:selected="${bankNm}" ></option>
|
|
|
+ <option th:if="${bankList}" th:each="oneData, status : ${bankList}" th:value="${oneData.cd}" th:text="${oneData.cdNm}"></option>
|
|
|
</select>
|
|
|
</td>
|
|
|
<th>계좌번호</th>
|
|
|
@@ -348,7 +351,7 @@
|
|
|
{ headerName: "정산담당자연락처", field: "settleChargeTelno", width: 100, cellClass: 'text-center', hide: true },
|
|
|
{ headerName: "정산담당자이메일", field: "settleChargeEmail", width: 100, cellClass: 'text-center', hide: true },
|
|
|
{ headerName: "계산서이메일", field: "billEmail", width: 100, cellClass: 'text-center', hide: true },
|
|
|
- { headerName: "정산일(매월)", field: "settleDay", width: 100, cellClass: 'text-center', hide: true },
|
|
|
+ { headerName: "정산주기", field: "settleDay", width: 100, cellClass: 'text-center', hide: true },
|
|
|
{
|
|
|
headerName: "은행명", field: "bankCd", width: 150, cellClass: 'text-center', hide: true,
|
|
|
valueGetter: function (params) {
|