记得上下班打卡 | git大法好,push需谨慎

Commit 86cfc45c authored by zhoujianping's avatar zhoujianping

1.导出增加票种单价

parent baa3e7f5
......@@ -45,4 +45,8 @@ public class ShowAgentVo {
*/
@ApiModelProperty(value = "普代票提", example = "")
private BigDecimal ordCarry;
@ApiModelProperty(value = "票种单价", example = "")
private BigDecimal price;
}
......@@ -592,6 +592,7 @@ public class SmileShowServiceImpl extends ServiceImpl<SmileSchoolMapper, SmileSc
showAgentVo.setPerformanceId(performancesId);
showAgentVo.setTicketId(ticketAndStatusDao.getTicketsId());
showAgentVo.setTitle(ticketAndStatusDao.getTitle());
showAgentVo.setPrice(ticketAndStatusDao.getPrice());
//开始结束时间转换年月日
String start = ticketAndStatusDao.getUseStart().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
String end = ticketAndStatusDao.getUseEnd().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
......@@ -703,7 +704,7 @@ public class SmileShowServiceImpl extends ServiceImpl<SmileSchoolMapper, SmileSc
arrayListTile.add("");
arrayListTile.add("");
for (int i=0;i<agentVoList.size();i++){
arrayListTile.add("");
arrayListTile.add(agentVoList.get(i).getPrice());
}
arrayListTile.add("所有票种销售数量总和\n" +
"(不包括全退、阶梯退票 ))");
......
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