|
|
@@ -68,7 +68,7 @@
|
|
|
<tr>
|
|
|
<th>공지제목</th>
|
|
|
<td>
|
|
|
- <input name="noteicTitle" type="text" maxlength="200"/>
|
|
|
+ <input name="noticeTitle" type="text" maxlength="200"/>
|
|
|
</td>
|
|
|
<th>사용여부</th>
|
|
|
<td>
|
|
|
@@ -405,22 +405,21 @@
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- var removedData = gagaAgGrid.removeRowData(gridNoticeGoodsOptions, false);
|
|
|
-
|
|
|
// 신규 상세 공지일경우 화면에서만 삭제
|
|
|
if (gagajf.isNull($('#goodsNoticeForm input[name=noticeSq]').val())){
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- var arrGoodsCd = [];
|
|
|
- $.each(selectedData, function(idx, item) {
|
|
|
- arrGoodsCd.push(item.goodsCd);
|
|
|
- });
|
|
|
-
|
|
|
mcxDialog.confirm('삭제하시겠습니까?', {
|
|
|
cancelBtnText: "취소",
|
|
|
sureBtnText: "확인",
|
|
|
sureBtnClick: function(){
|
|
|
+ var removedData = gagaAgGrid.removeRowData(gridNoticeGoodsOptions, false);
|
|
|
+ var arrGoodsCd = [];
|
|
|
+ $.each(selectedData, function(idx, item) {
|
|
|
+ arrGoodsCd.push(item.goodsCd);
|
|
|
+ });
|
|
|
+
|
|
|
var data = {arrGoodsCd : arrGoodsCd
|
|
|
,noticeSq : $('#goodsNoticeForm input[name=noticeSq]').val()
|
|
|
};
|