|
|
@@ -521,7 +521,7 @@
|
|
|
});
|
|
|
|
|
|
// 공급업체 설정 / 업체 추가 콜백함수
|
|
|
- let fnSetPopupComapnyInfo = function(result) {
|
|
|
+ var fnSetPopupComapnyInfo = function(result) {
|
|
|
// 기존 리스트 데이터 for
|
|
|
for(let i = 0 ; i < result.length ; i++) {
|
|
|
let addChk = true, gridListValue = gagaAgGrid.getAllRowData(gridOptionsFGCompanyList); // 받아온 모든 데이터
|
|
|
@@ -538,7 +538,7 @@
|
|
|
};
|
|
|
|
|
|
// 브랜드 설정 / 브랜드 추가 콜백함수 (단수로 가져오므로 복수일 경우에 수정 확인 필요)
|
|
|
- let fnSetPopupBrandInfo = function(result) {
|
|
|
+ var fnSetPopupBrandInfo = function(result) {
|
|
|
for(let i = 0 ; i < result.length ; i++) {
|
|
|
let addChk = true, gridListValue = gagaAgGrid.getAllRowData(gridOptionsFGBrandList); // 받아온 모든 데이터
|
|
|
|
|
|
@@ -553,22 +553,22 @@
|
|
|
};
|
|
|
|
|
|
// 적용 상품 리스트 콜백함수
|
|
|
- let fnSetPopupApplyGoodsInfo = function(result) {
|
|
|
+ var fnSetPopupApplyGoodsInfo = function(result) {
|
|
|
gridAddGoodsList(gridOptionsFGApplyGoodsList, result);
|
|
|
};
|
|
|
|
|
|
// 제외 상품 리스트 콜백함수
|
|
|
- let fnSetPopupExceptGoodsInfo = function(result) {
|
|
|
+ var fnSetPopupExceptGoodsInfo = function(result) {
|
|
|
gridAddGoodsList(gridOptionsFGExceptGoodsList, result);
|
|
|
};
|
|
|
|
|
|
// 사은품 조건1 상품 리스트 콜백함수
|
|
|
- let fnSetPopupFreeGoods1Info = function(result) {
|
|
|
+ var fnSetPopupFreeGoods1Info = function(result) {
|
|
|
gridAddGoodsList(gridOptionsFreeGoods1List, result);
|
|
|
};
|
|
|
|
|
|
// 사은품 조건1 상품 리스트 콜백함수
|
|
|
- let fnSetPopupFreeGoods2Info = function(result) {
|
|
|
+ var fnSetPopupFreeGoods2Info = function(result) {
|
|
|
gridAddGoodsList(gridOptionsFreeGoods2List, result);
|
|
|
};
|
|
|
|
|
|
@@ -651,7 +651,7 @@
|
|
|
});
|
|
|
|
|
|
// 창 닫기
|
|
|
- let fnFreeGoodsPromotionFormClose = function(){
|
|
|
+ var fnFreeGoodsPromotionFormClose = function(){
|
|
|
uifnPopupClose('popupFreeGoodsPromotionRegi');
|
|
|
}
|
|
|
|