选择商品查询当前单位下商品完成

选择商品返回有效期和税率,保存采购单保存有效期到采购商品明细中
This commit is contained in:
God
2024-08-06 11:20:05 +08:00
parent c1c9c0a6e1
commit f594405911
3 changed files with 7 additions and 0 deletions

View File

@@ -97,4 +97,7 @@ public class PurchaseBillDetail extends BaseEntity {
private BigDecimal unTaxPrice; private BigDecimal unTaxPrice;
@ApiModelProperty("未含税总价(未含税价*采购数量)") @ApiModelProperty("未含税总价(未含税价*采购数量)")
private BigDecimal unTaxTotalAmount; private BigDecimal unTaxTotalAmount;
@ApiModelProperty("保质期")
private Integer shelfLife;
} }

View File

@@ -99,6 +99,8 @@ public class PurchaseBillDetailDetailsVo implements Vo {
private Date deliveryDate; private Date deliveryDate;
@ApiModelProperty("总税额") @ApiModelProperty("总税额")
private BigDecimal taxAmount; private BigDecimal taxAmount;
@ApiModelProperty("保质期")
private Integer shelfLife;
/* /*
* 商品扩展字段 * 商品扩展字段

View File

@@ -95,6 +95,8 @@ public class PurchaseBillDetailDto implements Dto {
private String deliveryDate; private String deliveryDate;
@ApiModelProperty("总税额") @ApiModelProperty("总税额")
private BigDecimal taxAmount; private BigDecimal taxAmount;
@ApiModelProperty("保质期")
private Integer shelfLife;
/* /*
* 商品扩展字段 * 商品扩展字段