|
|
@@ -71,7 +71,7 @@
|
|
|
<th>원산지<em class="required" title="필수"></em></th>
|
|
|
<td ><select name="originCd" id="originCd">
|
|
|
<option value="">[전체]</option>
|
|
|
- <option th:if="${makOriginList}" th:each="oneData, status : ${makOriginList}" th:value="${oneData.cd}" th:text="${'[' + oneData.cd + '] ' + oneData.cdNm}"></option>
|
|
|
+ <option th:if="${makOriginList}" th:each="oneData, status : ${makOriginList}" th:value="${oneData.cd}" th:selected="${oneData.cd == 'G076_021'}" th:text="${'[' + oneData.cd + '] ' + oneData.cdNm}"></option>
|
|
|
</select>
|
|
|
</td>
|
|
|
<th>시즌<em class="required" title="필수"></em></th>
|
|
|
@@ -229,6 +229,8 @@
|
|
|
$(document).ready(function() {
|
|
|
gagaAgGrid.createGrid('gridGoodsDealList', gridGoodsDealOptions);
|
|
|
|
|
|
+ // 기본값 설정
|
|
|
+ $("#makeYmd").val(_today.replaceAll("-", ""));
|
|
|
});
|
|
|
|
|
|
var fnOpenGoodsDealPopup = function() {
|