Compare commits

...

2 Commits

Author SHA1 Message Date
JNG
4587bcb73c Merge branch 'jng-contract-1225' into dev 2025-12-25 20:17:53 +08:00
JNG
21322d0345 Update bundleOrder.go 2025-12-25 20:17:46 +08:00

View File

@ -344,6 +344,10 @@ func RestartSignature(c *gin.Context) {
service.Error(c, errors.New("订单已过期"))
return
}
if order.ReSignature == 2 {
service.Error(c, errors.New("订单无需重新签署"))
return
}
// 获取最后一次合同编号
lastContractNo, err := logic.GetLastContractNo()
if err != nil {