From 69ca3dc78191794f27a06411c479e3f16dcf39a3 Mon Sep 17 00:00:00 2001
From: liujie <liujie>
Date: 星期三, 25 十月 2023 16:53:35 +0800
Subject: [PATCH] bug修改

---
 cloud-server-activity/src/main/java/com/dsh/activity/controller/PointMercharsController.java |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/cloud-server-activity/src/main/java/com/dsh/activity/controller/PointMercharsController.java b/cloud-server-activity/src/main/java/com/dsh/activity/controller/PointMercharsController.java
index 16ba99f..5f1d859 100644
--- a/cloud-server-activity/src/main/java/com/dsh/activity/controller/PointMercharsController.java
+++ b/cloud-server-activity/src/main/java/com/dsh/activity/controller/PointMercharsController.java
@@ -126,6 +126,8 @@
                     result.add(map);
                 }
             }
+        }else {
+            result=result1;
         }
         if (result.size() > 0){
             for (Map<String, Object> stringObjectMap : result) {
@@ -1148,7 +1150,9 @@
         try {
             Integer pointMerchandiseId = (Integer) map.get("pointMerchandiseId");
             PointsMerchandise byId1 = pmdsService.getById(pointMerchandiseId);
-
+            if(Integer.valueOf(map.get("type").toString())!=1){
+                byId1.setStatus(2);
+            }
             Integer quantityIssued = (Integer) map.get("quantityIssued");
             Integer pickUpQuantity = (Integer) map.get("pickUpQuantity");
             String redemptionInstructions = (String) map.get("redemptionInstructions");
@@ -1174,7 +1178,6 @@
     }
 
 
-
     @PostMapping("/base/pointMerchars/add")
     public Integer add(@RequestBody PointsMerchandise pointsMerchandise){
         Integer storeId = pointsMerchandise.getShelves();
@@ -1197,6 +1200,7 @@
 
 
 
+
     @PostMapping("/base/pointMerchars/addOther")
     public Boolean addOther(@RequestBody String pam){
         Boolean save =false;

--
Gitblit v1.7.1