Commit d2aecd87 by fudahua

门店信息

parent 400840c4
......@@ -242,6 +242,9 @@ public class StoreController extends WebBaseController{
return resultResponse(HaoBanErrCode.ERR_2);
}
StoreDTO store = storeService.getStore(storeId);
if(store == null){
return resultResponse(HaoBanErrCode.ERR_111146);
}
String enterpriseId = store.getEnterpriseId();
String date = DateUtil.format(new Date(), "yyyy-MM-dd");
if("0".equals(clerkType)){
......
......@@ -179,6 +179,7 @@ public enum HaoBanErrCode {
ERR_111144(111144,"该企业或品牌已关联"),
ERR_111145(111145, "已经解绑过了"),
ERR_111146(111146, "门店不存在"),
// 企业设置
ERR_200001(200001, "员工不存在"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment