修改ms查询单据类型

dev
anthonywj 2 years ago
parent 8c885991b3
commit 5e9d092264

@ -318,7 +318,6 @@ public class LoginController extends BaseController {
} }
@Autowired @Autowired
private InvWarehouseDao invWarehouseDao; private InvWarehouseDao invWarehouseDao;
@ -369,7 +368,7 @@ public class LoginController extends BaseController {
@GetMapping("/spms/inv/warehouse/filterInv/forUdims") @GetMapping("/spms/inv/warehouse/filterInv/forUdims")
public BaseResponse forUdims() { public BaseResponse forUdims() {
FilterInvWarehouseRequest filterInvWarehouseRequest=new FilterInvWarehouseRequest(); FilterInvWarehouseRequest filterInvWarehouseRequest = new FilterInvWarehouseRequest();
filterInvWarehouseRequest.setSpUse(true); filterInvWarehouseRequest.setSpUse(true);
List<DeptEntity> data = deptService.filterInvDept(filterInvWarehouseRequest); List<DeptEntity> data = deptService.filterInvDept(filterInvWarehouseRequest);
return ResultVOUtils.success(data); return ResultVOUtils.success(data);
@ -407,8 +406,8 @@ public class LoginController extends BaseController {
} }
//------------------------------------------UDIMS接口----------------------------------------------------------- //------------------------------------------UDIMS接口-----------------------------------------------------------
/** /**
* *
* *

@ -304,7 +304,7 @@ public class BasicBussinessTypeEntity {
private boolean changeEnable; private boolean changeEnable;
/** /**
* 使 * 使 0:12
*/ */
@TableField(value = "spUse") @TableField(value = "spUse")
private int spUse; private int spUse;

@ -165,7 +165,11 @@
basic_bussiness_type.name basic_bussiness_type.name
from auth_warehouse_bustype from auth_warehouse_bustype
inner join basic_bussiness_type on auth_warehouse_bustype.action = basic_bussiness_type.action inner join basic_bussiness_type on auth_warehouse_bustype.action = basic_bussiness_type.action
where code = #{code} where spUse = 2
and mainAction = 'WareHouseIn'
and enable = true
and corpType = 2
and code = #{code}
</select> </select>
@ -189,7 +193,8 @@
b1.`name` b1.`name`
FROM auth_warehouse_bustype a1 FROM auth_warehouse_bustype a1
INNER JOIN basic_bussiness_type b1 ON a1.action = b1.action INNER JOIN basic_bussiness_type b1 ON a1.action = b1.action
where b1.spUse=1 and a1.code = #{code} where b1.spUse = 1
and a1.code = #{code}
group by b1.id group by b1.id
</select> </select>
</mapper> </mapper>

Loading…
Cancel
Save