From 6c41d9834ae5b359937a6eb7cc5b5c2f7fc39069 Mon Sep 17 00:00:00 2001 From: liujiang <569804566@qq.com> Date: Mon, 8 Dec 2025 22:13:06 +0800 Subject: [PATCH] =?UTF-8?q?master=EF=BC=9A=E7=B3=BB=E7=BB=9F=E8=B0=83?= =?UTF-8?q?=E4=BC=98=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/xkt/migartion/FhbOtherBizAfterController.java | 2 +- .../web/controller/xkt/migartion/TYOtherBizAfterController.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/migartion/FhbOtherBizAfterController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/migartion/FhbOtherBizAfterController.java index 5d8a200e6..62018f2c3 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/migartion/FhbOtherBizAfterController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/migartion/FhbOtherBizAfterController.java @@ -138,7 +138,7 @@ public class FhbOtherBizAfterController extends BaseController { fhbAfterArtNumGroupMap.forEach((fhbArtNo, matchList) -> { // 初始化档口商品 默认为私款,只能打印条码出库等,不可在平台展示 StoreProduct storeProd = new StoreProduct().setStoreId(storeId).setProdCateId(prodCateId).setProdCateName(prodCateName).setPrivateItem(1) - .setProdArtNum(fhbArtNo).setProdTitle("上架大卖").setListingWay(ListingType.RIGHT_NOW.getValue()) + .setProdArtNum(fhbArtNo).setProdTitle(fhbArtNo).setListingWay(ListingType.RIGHT_NOW.getValue()) .setVoucherDate(voucherDate).setProdStatus(EProductStatus.ON_SALE.getValue()).setRecommendWeight(0L).setSaleWeight(0L).setPopularityWeight(0L); storeProdList.add(storeProd); }); diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/migartion/TYOtherBizAfterController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/migartion/TYOtherBizAfterController.java index 894070ff6..a1db450e6 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/migartion/TYOtherBizAfterController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/xkt/migartion/TYOtherBizAfterController.java @@ -122,7 +122,7 @@ public class TYOtherBizAfterController extends BaseController { tyAfterArtNumGroupMap.forEach((tyArtNum, matchList) -> { // 初始化档口商品 默认为私款,只能打印条码出库等,不可在平台展示 StoreProduct storeProd = new StoreProduct().setStoreId(storeId).setProdCateId(prodCateId).setProdCateName(prodCateName).setPrivateItem(1) - .setProdArtNum(tyArtNum).setProdTitle("上架大卖").setListingWay(ListingType.RIGHT_NOW.getValue()) + .setProdArtNum(tyArtNum).setProdTitle(tyArtNum).setListingWay(ListingType.RIGHT_NOW.getValue()) .setVoucherDate(voucherDate).setProdStatus(EProductStatus.ON_SALE.getValue()).setRecommendWeight(0L).setSaleWeight(0L).setPopularityWeight(0L); storeProdList.add(storeProd); });