Commit 886d5cf1 by 陶光胜

观云台小程序

parent 761a3001
......@@ -70,9 +70,11 @@ public class BaseSalesController {
ServiceResponse<Page<BaseSalesDTO>> response1 = this.baseSalesApiService.pageBaseSales(dto);
if(response1.isSuccess() && response1.getResult() != null && CollectionUtils.isNotEmpty(response1.getResult().getResult())){
BaseSalesDTO total = response1.getResult().getResult().get(0);
total.setId("0");
total.setName("合计");
vo.setTotal(total);
if(total != null){
total.setId("0");
total.setName("合计");
vo.setTotal(total);
}
}
if(channel != null && channel == 1 && parentId == null){
dto.setCountType(3); //无归属
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment