| | |
| | | public Map<String, List> parseCompare(Product baseProduct, Product product) { |
| | | List<ProductBom> bomList = product.getBomList(); |
| | | List<ProductBom> baseBomList = new LinkedList<>(); |
| | | ProductBom baseProductBom = null; |
| | | |
| | | Map<String,List> compareMap = new HashMap<>(); |
| | | List<ProductBomHistory> diffList = new LinkedList<>(); |
| | |
| | | |
| | | //根据baseProduct的code和custom_code,查找到基准产品 |
| | | if(baseProduct == null){ |
| | | //productService.getBomL |
| | | baseProductBom = bomService.getEnabledStandardBomListByParentCode(product.getParentCode()); |
| | | }else{ |
| | | |
| | | } |