diff --git a/erp/accounting.go b/erp/accounting.go index 7e47f8d..68ad03d 100644 --- a/erp/accounting.go +++ b/erp/accounting.go @@ -202,3 +202,14 @@ func (a *accounting) Cancel(ctx context.Context, accountingId int64) (err error) err = xClient.Call(ctx, "Cancel", accountingId, &reply) return } + +// CancelAudit @TITLE 取消审核 +func (a *accounting) CancelAudit(ctx context.Context, accountingId int64) (err error) { + xClient, err := client.GetClient(a) + if err != nil { + return + } + reply := 0 + err = xClient.Call(ctx, "CancelAudit", accountingId, &reply) + return +}