Commit 47fad734 by chenjinjing

no message

parent 0a77e0ce
......@@ -262,8 +262,18 @@ export async function downInvoice({id}) {
}
/**
* 上传转账截图
* @param param0
*/
export async function upTransferImg({id, weChartPR, offlinePaymentUrl}) {
let oldInfo = await findOnce(TABLEENUM.订单表, {id});
if (!oldInfo || !oldInfo.id) throw new BizError(ERRORENUM.目标数据不存在);
await updateOneData(TABLEENUM.订单表, {id}, {weChartPR, offlinePaymentUrl});
return successResult();
}
......
......@@ -421,6 +421,15 @@ export enum INVOICESTATUSCLIENT{
}
/**
* 审核状态 前端用
*/
export enum AUDITINGCLIENT {
审核通过 = 2,
后台审批中 = 3,
审核失败 = 4
}
/*
* 短信类型
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment