Commit d9ded7f0 by 胡懿

品名代码增加单位和单价的返回

parent 74942e39
......@@ -161,6 +161,8 @@ public class MaterialTypeController extends BaseController {
map.put("id", e.getId());
map.put("text", e.getName());
map.put("code", e.getCode());
map.put("amount", e.getAmount());
map.put("unit", e.getUnit());
if(StringUtils.isBlank(e.getParentId()) || "0".equals(e.getParentId())){
map.put("parent", "#");
Map<String, Object> state = Maps.newHashMap();
......
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