|
@@ -108,8 +108,6 @@ public class Inc10100Controller extends BaseController {
|
|
|
List<Inc10100> inc10100List = IInc10100Service.getList(queryWrapper);
|
|
|
// List<BizProduct> products = productService.query().list();
|
|
|
List<BizProduct> products = productService.getList(new BizProduct());
|
|
|
- System.out.println("____________________");
|
|
|
- System.out.println(products.get(0));
|
|
|
List<BizProduct> newProducts = new ArrayList<>();
|
|
|
List<BizProduct> changeProducts = new ArrayList<>();
|
|
|
List<SysUser> userList = sysUserService.getList();
|
|
@@ -449,6 +447,8 @@ public class Inc10100Controller extends BaseController {
|
|
|
newTech = new BizTechnologicalProcess(oldTech);
|
|
|
if (newTech.getProductCode() != null && !newTech.getProductCode().isEmpty()) {
|
|
|
BizProduct bizProduct = products.stream().filter(v -> v.getProductCode().trim().equals(l.getCpart().trim())).findFirst().orElse(null);
|
|
|
+ System.out.println("____________________");
|
|
|
+ System.out.println(products.get(0));
|
|
|
System.out.println("________________________________________");
|
|
|
System.out.println(bizProduct);
|
|
|
if (bizProduct != null) {
|