#
mrzhssss
2022-04-26 d17c089f1d7ff3be848b05161917346e7f664a1d
src/main/java/zy/cloud/wms/manager/controller/WorkController.java
@@ -248,8 +248,11 @@
    @RequestMapping("docType/out/get")
    @ManagerAuth
    public R getDocOutTypeData(Integer docClass){
        List<DocType> docTypes = docTypeService.selectList(new EntityWrapper<DocType>().eq("status", 1).
                eq("host_id", getHostId()).orderBy("create_time", false).eq("doc_class",docClass));
        List<DocType> docTypes = docTypeService.selectList(new EntityWrapper<DocType>()
                .eq("host_id", "2")
                .orderBy("create_time", false)
                .eq("doc_class",docClass));
        return R.ok().add(docTypes);
    }