|
@@ -1008,7 +1008,8 @@ public class WarehouseBaseInfoServiceImpl extends ServiceImpl<WarehouseBaseInfoM
|
|
|
personCharge = AuthSecurityUtils.getStaffById(AuthSecurityUtils.getCurrentUserId()).getStaffMobilePhone();
|
|
|
}
|
|
|
Wrapper<WarehouseBaseInfo> warehouseBaseInfoWrapper = new EntityWrapper<>();
|
|
|
- warehouseBaseInfoWrapper.eq("comp_id", compId).eq("delete_flag", "0");
|
|
|
+ warehouseBaseInfoWrapper.eq("comp_id", compId).eq("delete_flag", "0")
|
|
|
+ .eq("automatic_weight_acquisition","0");
|
|
|
warehouseBaseInfoWrapper.andNew().eq("person_phone", personCharge).or()
|
|
|
.like("other_person_charge", personCharge);
|
|
|
List<WarehouseBaseInfo> warehouseBaseInfoList=this.selectList(warehouseBaseInfoWrapper);
|