Commit e6bc18b7 by 胡懿

品名代码类型后面拼接代码

parent d2aa3017
......@@ -159,7 +159,7 @@ public class MaterialTypeController extends BaseController {
if (StringUtils.isBlank(extId) || (extId!=null && !extId.equals(e.getId()) && e.getParentIds().indexOf(","+extId+",")==-1)){
Map<String, Object> map = Maps.newHashMap();
map.put("id", e.getId());
map.put("text", e.getName());
map.put("text", e.getName() + "(" + e.getCode() + ")");
map.put("code", e.getCode());
map.put("amount", e.getAmount());
map.put("unit", e.getUnit());
......
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