|
@@ -161,6 +161,10 @@ func (this *ContractApprovalCommon) List() {
|
|
|
list[i].EndDateStr = item.EndDate.Format(utils.FormatDate)
|
|
|
list[i].CreateTimeStr = item.CreateTime.Format(utils.FormatDateTime)
|
|
|
list[i].ModifyTimeStr = item.ModifyTime.Format(utils.FormatDateTime)
|
|
|
+ if item.Status == "已审批" || item.Status == "已驳回" {
|
|
|
+ list[i].ApproveTime = item.ModifyTime
|
|
|
+ list[i].ApproveTimeStr = item.ModifyTime.Format(utils.FormatDateTime)
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -242,6 +246,7 @@ func (this *ContractApprovalCommon) Detail() {
|
|
|
contractDetail.Status = contractInfo.Status
|
|
|
contractDetail.FileUrl = contractInfo.FileUrl
|
|
|
contractDetail.CheckBackFileUrl = contractInfo.CheckBackFileUrl
|
|
|
+
|
|
|
|
|
|
|
|
|
contractOpButton, flowNodeListResp, err := contractService.GetOpButton(contractInfo, contractApprovalInfo, this.AdminWx)
|