From da011b48602ef0ee6f07f8c6b0617ab99d5f0c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BD=90=E5=A4=A9=E5=A4=A7=E5=9C=A3?= <17615834396@163.com> Date: Mon, 4 Mar 2024 15:56:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E9=94=AE=E5=8F=91=E5=88=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/EventMarketing/SaveBlock/index.vue | 4 +-- .../views/EventMarketing/giftBlock/index.vue | 31 ++++++++++--------- .../controller/ActiveOneCouponController.java | 1 + .../impl/ActiveOneCouponServiceImpl.java | 4 +-- .../CardFavorableRecordController.java | 4 +-- .../impl/CardFuelRecordServiceImpl.java | 5 +-- .../service/impl/CardGiftServiceImpl.java | 4 +-- .../service/impl/CardValueServiceImpl.java | 3 +- 8 files changed, 31 insertions(+), 25 deletions(-) diff --git a/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue b/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue index e2863c4ed..ae260108d 100644 --- a/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue +++ b/fuintAdmin/src/views/EventMarketing/SaveBlock/index.vue @@ -101,7 +101,7 @@ - - + -->
-
已使用卡量
+
未使用卡量
暂无数据...
@@ -125,7 +125,7 @@
-
未使用卡量
+
已使用卡量
暂无数据...
@@ -165,17 +165,15 @@
-
+ +
+ 电子礼品卡列表
- - - - + --> diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/controller/ActiveOneCouponController.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/controller/ActiveOneCouponController.java index c2129aac3..778c985f8 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/controller/ActiveOneCouponController.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/controller/ActiveOneCouponController.java @@ -88,5 +88,6 @@ public class ActiveOneCouponController extends BaseController { public ResponseObject delete(@RequestParam("idList") List idList) { return getSuccessResult(this.activeOneCouponService.removeByIds(idList)); } + } diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/service/impl/ActiveOneCouponServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/service/impl/ActiveOneCouponServiceImpl.java index c559eaf4c..be3b54008 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/service/impl/ActiveOneCouponServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/activeOneCoupon/service/impl/ActiveOneCouponServiceImpl.java @@ -73,11 +73,11 @@ public class ActiveOneCouponServiceImpl extends ServiceImpl i if(ObjectUtils.isNotEmpty(cardGift.getStatus())) { queryWrapper.eq(CardGift::getStatus,cardGift.getStatus()); } - if(ObjectUtils.isNotEmpty(cardGift.getStatus())) { + if(ObjectUtils.isNotEmpty(cardGift.getSailStatus())) { queryWrapper.eq(CardGift::getSailStatus,cardGift.getSailStatus()); } - if(ObjectUtils.isNotEmpty(cardGift.getStatus())) { + if(ObjectUtils.isNotEmpty(cardGift.getCardAmount())) { queryWrapper.eq(CardGift::getCardAmount,cardGift.getCardAmount()); } queryWrapper.eq(CardGift::getStoreId, TokenUtil.getNowAccountInfo().getStoreId()); diff --git a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/cardValue/service/impl/CardValueServiceImpl.java b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/cardValue/service/impl/CardValueServiceImpl.java index 320a9faed..76bf71055 100644 --- a/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/cardValue/service/impl/CardValueServiceImpl.java +++ b/fuintBackend/fuint-application/src/main/java/com/fuint/business/marketingActivity/cardValue/service/impl/CardValueServiceImpl.java @@ -262,13 +262,14 @@ public class CardValueServiceImpl extends ServiceImpl queryWrapper = new LambdaQueryWrapper<>();