给单据的商品选择增加类别选择

This commit is contained in:
季圣华
2020-12-15 23:24:01 +08:00
parent 5ee379241d
commit 518831dac5
17 changed files with 121 additions and 43 deletions

View File

@@ -209,6 +209,7 @@ public class MaterialController {
}
MaterialName = MaterialName + expand + ((material.getCommodityUnit() == null || material.getCommodityUnit().equals("")) ? "" : "(" + material.getCommodityUnit() + ")") + ratio;
item.put("MaterialName", MaterialName);
item.put("categoryName", material.getCategoryName());
item.put("name", material.getName());
item.put("expand", expand);
item.put("model", material.getModel());

View File

@@ -38,5 +38,5 @@ public interface MaterialCategoryMapperEx {
List<MaterialCategory> getMaterialCategoryListByCategoryIds(@Param("parentIds") String[] categoryIds);
List<MaterialCategory> getListByParentId(Long parentId);
List<MaterialCategory> getListByParentId(@Param("parentId") Long parentId);
}