优化供应商对账

This commit is contained in:
季圣华
2020-06-22 23:50:07 +08:00
parent e3837616d4
commit eb942485fc
7 changed files with 56 additions and 15 deletions

View File

@@ -100,6 +100,12 @@ public interface DepotHeadMapperEx {
@Param("modeName") String modeName,
@Param("endTime") String endTime);
BigDecimal findAllOtherMoney(
@Param("supplierId") Integer supplierId,
@Param("type") String type,
@Param("subType") String subType,
@Param("endTime") String endTime);
List<DepotHeadVo4List> getDetailByNumber(
@Param("number") String number);

View File

@@ -11,6 +11,10 @@ public class DepotHeadVo4StatementAccount {
private BigDecimal discountLastMoney;
private BigDecimal otherMoney;
private BigDecimal billMoney;
private BigDecimal changeAmount;
private BigDecimal allPrice;
@@ -45,6 +49,22 @@ public class DepotHeadVo4StatementAccount {
this.discountLastMoney = discountLastMoney;
}
public BigDecimal getOtherMoney() {
return otherMoney;
}
public void setOtherMoney(BigDecimal otherMoney) {
this.otherMoney = otherMoney;
}
public BigDecimal getBillMoney() {
return billMoney;
}
public void setBillMoney(BigDecimal billMoney) {
this.billMoney = billMoney;
}
public BigDecimal getChangeAmount() {
return changeAmount;
}