@@ -151,6 +151,10 @@ public class StockSaleReceiptReport extends BaseModel<StockSaleReceiptReport> {
* 未收金额(元/吨)
*/
private Double amountNotReceivable;
+ /**
+ * 成本
+ */
+ private Double cost;
/**
* 收款截图
@@ -662,6 +662,7 @@ public class PaymentManagementServiceImpl extends ServiceImpl<PaymentManagementM
// 查询服务商总数
cumulant = baseMapper.getCustomerCount(pageView);
+ cumulant += 100;
return cumulant;
}
@@ -134,7 +134,7 @@
a.id
ORDER BY a.update_date DESC
)
- tt where tt.num - 50 < #{saleLimit}
+ tt where tt.num - 100 < #{saleLimit}
<if test="currentPage != null and currentPage != ''">
LIMIT ${startRecord}, ${pageSize}
</if>