|
|
@@ -1222,6 +1222,11 @@ func (this *OilSupplierCertAppendController) RecallApply() {
|
|
|
panic("权限错误,仅申请人可撤回当前申请!")
|
|
|
}
|
|
|
|
|
|
+ date := supplierCertAppendEntity.CreateOn.Format("2006-01-02 15:04:05")
|
|
|
+ if date < "2021-03-05 00:00:00" {
|
|
|
+ panic("当前申请不可撤回!")
|
|
|
+ }
|
|
|
+
|
|
|
svcPaymentInfo := paymentinfo.GetPaymentService(utils.DBE)
|
|
|
var paymentInfo paymentinfo.OilPaymentInfo
|
|
|
wherePay := " SrcId=" + appendId + " and SupplierId=" + strconv.Itoa(supplierCertAppendEntity.SupplierId) + " and SupplierCertId=" + strconv.Itoa(supplierCertAppendEntity.SupplierCertId)
|