|
|
@@ -103,10 +103,15 @@
|
|
|
<th>상품상태</th>
|
|
|
<td>
|
|
|
<div class="multiCheckBox" style="width:200px">
|
|
|
- <button type="button" class="sltBtn" data-name="[전체]">[전체]</button>
|
|
|
+ <button type="button" class="sltBtn btGoodsStat" data-name="[전체]">[G008_90] 승인완료</button>
|
|
|
<ul style="overflow:auto; height:170px" id="grpGoodsStat">
|
|
|
<li><label class="chkBox" onclick="uifnAllCheck(this,'grpGoodsStat')"><input type="checkbox" name="전체선택" >전체선택</label></li>
|
|
|
- <li th:if="${goodsStatList}" th:each="oneData, status : ${goodsStatList}"><label class="chkBox" data-group="grpGoodsStat"><input type="checkbox" name="multiGoodsStat" th:id="${'goodsStat' + oneData.cd}" th:value="${oneData.cd}" ><th:block th:text="${'[' + oneData.cd + '] ' + oneData.cdNm}"></th:block></label></li>
|
|
|
+ <li th:if="${goodsStatList}" th:each="oneData, status : ${goodsStatList}">
|
|
|
+ <label class="chkBox" data-group="grpGoodsStat">
|
|
|
+ <input type="checkbox" name="multiGoodsStat" th:id="${'goodsStat' + oneData.cd}" th:value="${oneData.cd}" th:attr="checked=${oneData.cd == 'G008_90'}">
|
|
|
+ <th:block th:text="${'[' + oneData.cd + '] ' + oneData.cdNm}"></th:block>
|
|
|
+ </label>
|
|
|
+ </li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</td>
|
|
|
@@ -560,6 +565,8 @@
|
|
|
$(this).find(".sltBtn").text(btnNm);
|
|
|
});
|
|
|
|
|
|
+ // 상품상태
|
|
|
+ $(".btGoodsStat").text("[G008_90] 승인완료");
|
|
|
});
|
|
|
|
|
|
// 조회클릭시
|