Commit c5156bd5 by fudahua

根据userId 伪登录

parent a74d794b
...@@ -105,6 +105,9 @@ public class StoreController extends WebBaseController{ ...@@ -105,6 +105,9 @@ public class StoreController extends WebBaseController{
ClerkDTO clerk = clerkService.getClerkByClerkCode(staffClerkRelationDTO.getEnterpriseId(), staffClerkRelationDTO.getClerkCode()); ClerkDTO clerk = clerkService.getClerkByClerkCode(staffClerkRelationDTO.getEnterpriseId(), staffClerkRelationDTO.getClerkCode());
if(clerk != null){ if(clerk != null){
StoreDTO store = storeService.getStore(clerk.getStoreId()); StoreDTO store = storeService.getStore(clerk.getStoreId());
if (store == null) {
continue;
}
//主门店标志 //主门店标志
int mainStoreFlag = 0; int mainStoreFlag = 0;
if(StringUtils.isEmpty(storeId)){ if(StringUtils.isEmpty(storeId)){
......
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