|
@@ -291,6 +291,8 @@ public class CmVipCouponService extends CrudService<SvipCouponListDao, SvipCoupo
|
|
|
}
|
|
|
if (coupon1.getCouponType() == 3) {
|
|
|
form.setShopId1(coupon1.getShopId());
|
|
|
+ String shopName = vipDao.findShopName(coupon1.getShopId());
|
|
|
+ form.setShopName1(shopName);
|
|
|
}
|
|
|
|
|
|
if (coupon2.getCouponType() == 0) {
|
|
@@ -301,6 +303,8 @@ public class CmVipCouponService extends CrudService<SvipCouponListDao, SvipCoupo
|
|
|
}
|
|
|
if (coupon2.getCouponType() == 3) {
|
|
|
form.setShopId2(coupon2.getShopId());
|
|
|
+ String shopName = vipDao.findShopName(coupon2.getShopId());
|
|
|
+ form.setShopName2(shopName);
|
|
|
}
|
|
|
|
|
|
if (coupon3.getCouponType() == 0) {
|
|
@@ -311,6 +315,8 @@ public class CmVipCouponService extends CrudService<SvipCouponListDao, SvipCoupo
|
|
|
}
|
|
|
if (coupon3.getCouponType() == 3) {
|
|
|
form.setShopId3(coupon3.getShopId());
|
|
|
+ String shopName = vipDao.findShopName(coupon3.getShopId());
|
|
|
+ form.setShopName3(shopName);
|
|
|
}
|
|
|
|
|
|
if (coupon4.getCouponType() == 0) {
|
|
@@ -321,6 +327,8 @@ public class CmVipCouponService extends CrudService<SvipCouponListDao, SvipCoupo
|
|
|
}
|
|
|
if (coupon4.getCouponType() == 3) {
|
|
|
form.setShopId4(coupon4.getShopId());
|
|
|
+ String shopName = vipDao.findShopName(coupon4.getShopId());
|
|
|
+ form.setShopName4(shopName);
|
|
|
}
|
|
|
|
|
|
return form;
|