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

Commit bc42bd81 authored by 周建平's avatar 周建平

Merge branch 'zjp_20241105_daili' into 'master'

Zjp 20241105 daili

See merge request !372
parents 865c980d ef927711
...@@ -45,4 +45,8 @@ public class ShowAgentVo { ...@@ -45,4 +45,8 @@ public class ShowAgentVo {
*/ */
@ApiModelProperty(value = "普代票提", example = "") @ApiModelProperty(value = "普代票提", example = "")
private BigDecimal ordCarry; private BigDecimal ordCarry;
@ApiModelProperty(value = "票种单价", example = "")
private BigDecimal price;
} }
...@@ -592,6 +592,7 @@ public class SmileShowServiceImpl extends ServiceImpl<SmileSchoolMapper, SmileSc ...@@ -592,6 +592,7 @@ public class SmileShowServiceImpl extends ServiceImpl<SmileSchoolMapper, SmileSc
showAgentVo.setPerformanceId(performancesId); showAgentVo.setPerformanceId(performancesId);
showAgentVo.setTicketId(ticketAndStatusDao.getTicketsId()); showAgentVo.setTicketId(ticketAndStatusDao.getTicketsId());
showAgentVo.setTitle(ticketAndStatusDao.getTitle()); showAgentVo.setTitle(ticketAndStatusDao.getTitle());
showAgentVo.setPrice(ticketAndStatusDao.getPrice());
//开始结束时间转换年月日 //开始结束时间转换年月日
String start = ticketAndStatusDao.getUseStart().format(DateTimeFormatter.ofPattern("yyyy-MM-dd")); String start = ticketAndStatusDao.getUseStart().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
String end = ticketAndStatusDao.getUseEnd().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 ...@@ -703,7 +704,7 @@ public class SmileShowServiceImpl extends ServiceImpl<SmileSchoolMapper, SmileSc
arrayListTile.add(""); arrayListTile.add("");
arrayListTile.add(""); arrayListTile.add("");
for (int i=0;i<agentVoList.size();i++){ for (int i=0;i<agentVoList.size();i++){
arrayListTile.add(""); arrayListTile.add(agentVoList.get(i).getPrice());
} }
arrayListTile.add("所有票种销售数量总和\n" + arrayListTile.add("所有票种销售数量总和\n" +
"(不包括全退、阶梯退票 ))"); "(不包括全退、阶梯退票 ))");
......
...@@ -132,6 +132,13 @@ ...@@ -132,6 +132,13 @@
GROUP BY GROUP BY
sukotr.uid, sukotr.uid,
sukotr.ticket_id sukotr.ticket_id
ORDER BY
CASE sukotr.type
WHEN 2 THEN 1
WHEN 1 THEN 2
WHEN 5 THEN 3
ELSE 4
END
</select> </select>
<update id="upTakeByPerId"> <update id="upTakeByPerId">
......
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