ezhizao_zx 1 月之前
父节点
当前提交
430d3acc6b

+ 0 - 2
src/main/java/cn/ezhizao/project/business/controller/Inc10100Controller.java

@@ -174,7 +174,6 @@ public class Inc10100Controller extends BaseController {
                         old.setTechnicianId(jsy != null ? jsy.getUserId() : null);
                     }
                     old.setRemark(l.getRemark());
-                    old.setBomsta(l.getBomsta().trim());
                     changeProducts.add(old);
                 }
             } else {
@@ -233,7 +232,6 @@ public class Inc10100Controller extends BaseController {
                     newProduct.setTechnicianId(jsy != null ? jsy.getUserId() : null);
                 }
                 newProduct.setRemark(l.getRemark());
-                newProduct.setBomsta(l.getBomsta().trim());
                 newProducts.add(newProduct);
             }
         });

+ 0 - 4
src/main/java/cn/ezhizao/project/business/domain/BizProduct.java

@@ -186,9 +186,6 @@ public class BizProduct extends BaseEntity
     @TableField(exist = false)
     @ApiModelProperty("产品单价")
     private BigDecimal unprc;
-    /** 有BOM否 */
-    @ApiModelProperty(value = "${comment}")
-    private String bomsta;
     /**
      * 备注
      */
@@ -205,6 +202,5 @@ public class BizProduct extends BaseEntity
         this.description = inc10100.getDescr().trim();
         this.stqty = inc10100.getStqty();
         this.unprc = inc10100.getUnprc();
-        this.bomsta = inc10100.getBomsta().trim();
     }
 }