增加了商品库相关的方法
This commit is contained in:
parent
74316ceff6
commit
eaa03106d6
@ -2315,6 +2315,11 @@ public class ShopStoreBaseServiceImpl extends BaseServiceImpl<ShopStoreBaseMappe
|
||||
base.setSubsite_id(subsite_id);
|
||||
}
|
||||
|
||||
Integer storeBizState = Convert.toInt(getParameter("store_biz_state"));
|
||||
if (storeBizState != null && storeBizState <= 2 && storeBizState >= 1) {
|
||||
base.setStore_biz_state(storeBizState);
|
||||
}
|
||||
|
||||
|
||||
// 百度坐标系BD09经纬度 转出 火星坐标系GCJ02经纬度 (因为数据库保存的经纬度统一是GCJ02经纬度,所以需要转换 )
|
||||
base = bd09ToGcj02Gps(base);
|
||||
@ -2444,6 +2449,11 @@ public class ShopStoreBaseServiceImpl extends BaseServiceImpl<ShopStoreBaseMappe
|
||||
}
|
||||
}
|
||||
|
||||
Integer storeBizState = Convert.toInt(getParameter("store_biz_state"));
|
||||
if (storeBizState != null && storeBizState <= 2 && storeBizState >= 1) {
|
||||
base.setStore_biz_state(storeBizState);
|
||||
}
|
||||
|
||||
ShopStoreCompany company = null;
|
||||
String company_description = getParameter("company_description");
|
||||
if (StrUtil.isNotBlank(company_description)) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user