Commit 6c8ff34a by 王昆

gsb

parent 1a6df2dd
......@@ -61,6 +61,31 @@ class ActionAPI extends APIBase {
opResult = await this.iinvoiceSve.accumulatedAmount(action_body);
break;
case "merchantinvoicePage" : //发票列表(商户)
opResult = await this.saasinvoiceSve.merchantinvoicePage(action_body);
break;
case "platforminvoicePage" : //发票列表(平台)
opResult = await this.saasinvoiceSve.platforminvoicePage(action_body);
break;
case "merchantinvoiceapplyPage" : //发票申请列表(商户)
opResult = await this.saasinvoiceapplySve.merchantinvoiceapplyPage(action_body);
break;
case "platforminvoiceapplyPage" : //发票申请列表(平台)
opResult = await this.saasinvoiceapplySve.platforminvoiceapplyPage(action_body);
break;
case "invoiceapplySave" : //发票申请列表(平台)
opResult = await this.saasinvoiceapplySve.save(action_body);
break;
case "invoiceapplyById" : //发票申请列表(平台)
opResult = await this.saasinvoiceapplySve.byId(action_body);
break;
case "invoiceapplyAudit" : //发票申请列表(平台)
opResult = await this.saasinvoiceapplySve.audit(action_body);
break;
case "invoiceapplyMakeOut" : //发票申请列表(平台)
opResult = await this.saasinvoiceapplySve.makeout(action_body);
break;
// case "verificationAndCalculation": // 发票试算接口
// opResult = await rule.dispatcher(action_body);
// break;
......
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