Commit 94e633ac by 孙亚楠

dd

parent 3b0ff55c
...@@ -3,6 +3,7 @@ const CtlBase = require("../../ctlms.base"); ...@@ -3,6 +3,7 @@ const CtlBase = require("../../ctlms.base");
class InvoiceCtl extends CtlBase { class InvoiceCtl extends CtlBase {
constructor() { constructor() {
super(); super();
this.deliverSve = system.getObject("service.common.deliverSve");
this.invoiceSve = system.getObject("service.invoice.invoiceSve"); this.invoiceSve = system.getObject("service.invoice.invoiceSve");
this.pageType = { this.pageType = {
"0": ["2020", "2030"], // 我的业务发票 "0": ["2020", "2030"], // 我的业务发票
...@@ -180,7 +181,7 @@ class InvoiceCtl extends CtlBase { ...@@ -180,7 +181,7 @@ class InvoiceCtl extends CtlBase {
} }
pobj.operator_path = user.data.org_path; pobj.operator_path = user.data.org_path;
try { try {
return await this.orderSve.handleStatus(pobj); return await this.invoiceSve.handleStatus(pobj);
} catch (error) { } catch (error) {
console.log(error); console.log(error);
return system.getResult(null, `系统错误 错误信息 ${error}`); return system.getResult(null, `系统错误 错误信息 ${error}`);
......
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
1. [审核失败](#deliverReject) 1. [审核失败](#deliverReject)
1. [交付商交付](#delivered) 1. [交付商交付](#delivered)
1. [查询详细信息](#invoice) 1. [查询详细信息](#invoice)
1. [发票开具](#deliveryAcceptance) 1. [发票开具](#deliveryAcceptance) -新加
1. [客户交付](#deliveryCustomer) 1. [客户交付](#deliveryCustomer) -新加
## **<a name="processList"> 业务进度字典 </a>** ## **<a name="processList"> 业务进度字典 </a>**
[返回到目录](#menu) [返回到目录](#menu)
##### URL ##### URL
......
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