|
@@ -224,8 +224,8 @@ func (this *EtaBusinessController) PageList() {
|
|
|
b.SigningStatus = v.SigningStatus
|
|
|
b.Enable = v.Enable
|
|
|
b.ContractId = v.ContractId
|
|
|
- b.SigningTime = v.SigningTime.Format(utils.FormatDate)
|
|
|
- b.ExpiredTime = v.ExpiredTime.Format(utils.FormatDate)
|
|
|
+ b.SigningTime = utils.TimeTransferString(utils.FormatDate, v.SigningTime)
|
|
|
+ b.ExpiredTime = utils.TimeTransferString(utils.FormatDate, v.ExpiredTime)
|
|
|
b.CreateTime = v.CreateTime.Format(utils.FormatDateTime)
|
|
|
b.ModifyTime = v.ModifyTime.Format(utils.FormatDateTime)
|
|
|
items = append(items, b)
|
|
@@ -319,32 +319,26 @@ func (this *EtaBusinessController) Add() {
|
|
|
}
|
|
|
req.CapitalScale = strings.TrimSpace(req.CapitalScale)
|
|
|
|
|
|
- // 如果仅校验不新增, 那么不做第二页签约时间的校验
|
|
|
+ // 如果仅校验不新增, 那么不做第二页签约时间的校验(已废弃, 20230919签约时间非必填)
|
|
|
var signTime, expiredTime time.Time
|
|
|
if !req.IsCheck {
|
|
|
- if req.SigningTime == "" {
|
|
|
- br.Msg = "签约时间不可为空"
|
|
|
- return
|
|
|
- }
|
|
|
- if req.ExpiredTime == "" {
|
|
|
- br.Msg = "到期时间不可为空"
|
|
|
- return
|
|
|
- }
|
|
|
- signTime, e = time.ParseInLocation(utils.FormatDate, req.SigningTime, time.Local)
|
|
|
- if e != nil {
|
|
|
- br.Msg = "签约时间格式有误"
|
|
|
- br.ErrMsg = "签约时间格式有误, Err: " + e.Error()
|
|
|
- return
|
|
|
- }
|
|
|
- expiredTime, e = time.ParseInLocation(utils.FormatDate, req.ExpiredTime, time.Local)
|
|
|
- if e != nil {
|
|
|
- br.Msg = "到期时间格式有误"
|
|
|
- br.ErrMsg = "到期时间格式有误, Err: " + e.Error()
|
|
|
- return
|
|
|
- }
|
|
|
- if !expiredTime.After(signTime) {
|
|
|
- br.Msg = "到期时间不得早于签约时间"
|
|
|
- return
|
|
|
+ if req.SigningTime != "" && req.ExpiredTime != "" {
|
|
|
+ signTime, e = time.ParseInLocation(utils.FormatDate, req.SigningTime, time.Local)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "签约时间格式有误"
|
|
|
+ br.ErrMsg = "签约时间格式有误, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ expiredTime, e = time.ParseInLocation(utils.FormatDate, req.ExpiredTime, time.Local)
|
|
|
+ if e != nil {
|
|
|
+ br.Msg = "到期时间格式有误"
|
|
|
+ br.ErrMsg = "到期时间格式有误, Err: " + e.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !expiredTime.After(signTime) {
|
|
|
+ br.Msg = "到期时间不得早于签约时间"
|
|
|
+ return
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -403,17 +397,14 @@ func (this *EtaBusinessController) Add() {
|
|
|
codeEncrypt := utils.MD5(fmt.Sprintf("%s%s", businessCode, utils.BusinessCodeSalt))
|
|
|
|
|
|
now := time.Now().Local()
|
|
|
+ status := eta_business.EtaBusinessSigningStatusWait // 默认待签约
|
|
|
// 若当前时间不在首次签约时间内, 也算作已终止, 进入合约期时会由定时任务改为首次签约
|
|
|
- status := eta_business.EtaBusinessSigningStatusFirst
|
|
|
- isTerminate := true
|
|
|
- if now.Equal(signTime) || now.Equal(expiredTime) {
|
|
|
- isTerminate = false
|
|
|
- }
|
|
|
- if now.After(signTime) && now.Before(expiredTime) {
|
|
|
- isTerminate = false
|
|
|
- }
|
|
|
- if isTerminate {
|
|
|
- status = eta_business.EtaBusinessSigningStatusTerminate
|
|
|
+ if !signTime.IsZero() && !expiredTime.IsZero() {
|
|
|
+ if !now.Before(signTime) && !now.After(expiredTime) {
|
|
|
+ status = eta_business.EtaBusinessSigningStatusFirst // 首次签约
|
|
|
+ } else {
|
|
|
+ status = eta_business.EtaBusinessSigningStatusTerminate // 已终止
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// 新增商家和签约
|