浏览代码

调整导出套餐名

hsun 2 年之前
父节点
当前提交
9217ec8d93
共有 1 个文件被更改,包括 6 次插入4 次删除
  1. 6 4
      controller/contract/register.go

+ 6 - 4
controller/contract/register.go

@@ -704,8 +704,10 @@ func (rg *RegisterController) Export(c *gin.Context) {
 		pars = append(pars, kw, kw, kw)
 	}
 	if req.StartDate != "" && req.EndDate != "" {
+		st := fmt.Sprint(req.StartDate, " 00:00:00")
+		ed := fmt.Sprint(req.EndDate, " 23:59:59")
 		cond += ` AND (create_time BETWEEN ? AND ?)`
-		pars = append(pars, req.StartDate, req.EndDate)
+		pars = append(pars, st, ed)
 	}
 	if req.ContractType != 0 {
 		cond += ` AND contract_type = ?`
@@ -878,14 +880,14 @@ func (rg *RegisterController) Export(c *gin.Context) {
 
 	// 1行2列
 	cell2 := titleRow.AddCell()
-	cell2.SetValue("商品大套餐")
+	cell2.SetValue("FICC大套餐")
 	cell2.SetStyle(style)
 
 	// 1行3列-右合并小套餐数
 	if permissionLen >= 1 {
 		cell3 := titleRow.AddCell()
 		cell3.HMerge = permissionLen - 1
-		cell3.SetValue("商品小套餐")
+		cell3.SetValue("FICC小套餐")
 		cell3.SetStyle(style)
 		// 同上右增单元格小套餐数-1的空白单元格用于合并
 		for i := 0; i < permissionLen-1; i++ {
@@ -903,7 +905,7 @@ func (rg *RegisterController) Export(c *gin.Context) {
 	titleRow2 := sheet.AddRow()
 	titleRow2.SetHeight(60)
 	row2Title := make([]string, 0)
-	row2Title = append(row2Title, "客户名称", "续约-0\n新增-1", "销售", "商品大套餐")
+	row2Title = append(row2Title, "客户名称", "续约-0\n新增-1", "销售", "FICC大套餐")
 	for i := range permissionList {
 		row2Title = append(row2Title, permissionList[i].PermissionName)
 	}