|
@@ -176,12 +176,12 @@ func ApplyServiceUpdate(companyId, productId, sellerId, companyContractId int, s
|
|
|
|
|
|
//产品服务的开始、结束日期(非产品权限)
|
|
|
updateStartDate := startDate
|
|
|
- updateStartDateTime, err := time.Parse(utils.FormatDate, updateStartDate)
|
|
|
+ updateStartDateTime, err := time.ParseInLocation(utils.FormatDate, updateStartDate, time.Local)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
updateEndDate := endDate
|
|
|
- updateEndDateTime, err := time.Parse(utils.FormatDate, updateEndDate)
|
|
|
+ updateEndDateTime, err := time.ParseInLocation(utils.FormatDate, updateEndDate, time.Local)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -203,7 +203,7 @@ func ApplyServiceUpdate(companyId, productId, sellerId, companyContractId int, s
|
|
|
nowCompanyReportPermissionMap[pv.ChartPermissionId] = pv
|
|
|
|
|
|
//校验原始数据中的开始日期是否小于合同内的开始日期,如果小于,那么变更为原先的合同开始日期
|
|
|
- tmpStartDate, tmpErr := time.Parse(utils.FormatDate, pv.StartDate)
|
|
|
+ tmpStartDate, tmpErr := time.ParseInLocation(utils.FormatDate, pv.StartDate, time.Local)
|
|
|
if tmpErr != nil {
|
|
|
err = tmpErr
|
|
|
return
|
|
@@ -213,7 +213,7 @@ func ApplyServiceUpdate(companyId, productId, sellerId, companyContractId int, s
|
|
|
}
|
|
|
|
|
|
//校验原始数据中的结束日期是否大于合同内的结束日期,如果大于,那么变更为原先的合同结束日期
|
|
|
- tmpEndDate, tmpErr := time.Parse(utils.FormatDate, pv.EndDate)
|
|
|
+ tmpEndDate, tmpErr := time.ParseInLocation(utils.FormatDate, pv.EndDate, time.Local)
|
|
|
if tmpErr != nil {
|
|
|
err = tmpErr
|
|
|
return
|
|
@@ -264,12 +264,12 @@ func ApplyServiceUpdate(companyId, productId, sellerId, companyContractId int, s
|
|
|
//如果 需要更新 字段 为false,那么再去校验时间
|
|
|
if needUpdate == false {
|
|
|
//如果当前存该权限,那么去校验是否需要修改
|
|
|
- nowPermissionEndDateTime, tmpErr := time.Parse(utils.FormatDate, nowPermission.EndDate)
|
|
|
+ nowPermissionEndDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, nowPermission.EndDate, time.Local)
|
|
|
if tmpErr != nil {
|
|
|
err = tmpErr
|
|
|
return
|
|
|
}
|
|
|
- contractPermissionEndDateTime, tmpErr := time.Parse(utils.FormatDate, pv.EndDate)
|
|
|
+ contractPermissionEndDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, pv.EndDate, time.Local)
|
|
|
if tmpErr != nil {
|
|
|
err = tmpErr
|
|
|
return
|