mirror of
https://gitee.com/victor123/jjjerp-java.git
synced 2025-12-07 00:42:33 +08:00
修复
This commit is contained in:
parent
2a2ae2fe95
commit
73de77e2f1
@ -1664,9 +1664,11 @@ public class BillHeadServiceImpl extends BaseServiceImpl<BillHeadMapper, BillHea
|
||||
item.setBillType(oldHead.getBillType());
|
||||
//检查商品属性
|
||||
this.checkItem(item);
|
||||
if(item.getIsDelete() != null && item.getIsDelete() == 0 && item.getAllPrice() != null){
|
||||
if(item.getAllPrice() != null){
|
||||
if(item.getIsDelete() == null || item.getIsDelete() == 0){
|
||||
totalPrice = totalPrice.add(item.getAllPrice());
|
||||
}
|
||||
}
|
||||
totalNum = totalNum + item.getBasicNumber();
|
||||
}
|
||||
head.setTotalPrice(totalPrice);
|
||||
|
||||
@ -31,6 +31,9 @@ public class ShopUserVo implements Serializable {
|
||||
@ApiModelProperty("是否为超级管理员0不是,1是")
|
||||
private Boolean isSuper;
|
||||
|
||||
@ApiModelProperty("是否为业务员0不是,1是")
|
||||
private Integer isSales;
|
||||
|
||||
@ApiModelProperty("创建时间")
|
||||
private Date createTime;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user