Commit ea3daeae by 王昆

Merge branch 'xgg-saas-merchant' of gitlab.gongsibao.com:jiangyong/zhichan into xgg-saas-merchant

parents 46595767 0914c48a
...@@ -56,9 +56,9 @@ class InvoiceCtl extends CtlBase { ...@@ -56,9 +56,9 @@ class InvoiceCtl extends CtlBase {
} }
//发票列表 //发票列表
async invoicePage(params, pobj2, req) { async merchantinvoicePage(params, pobj2, req) {
try { try {
let rs = await this.invoiceSve.saasinvoicePage(params); let rs = await this.invoiceSve.merchantinvoicePage(params);
return rs; return rs;
} catch (error) { } catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`); return system.getResult(null, `系统错误 错误信息 ${error}`);
......
...@@ -6,8 +6,8 @@ class InvoiceService extends ServiceBase { ...@@ -6,8 +6,8 @@ class InvoiceService extends ServiceBase {
super(); super();
} }
async saasinvoicePage(params){ async merchantinvoicePage(params){
var rs = await this.callms("invoice", "saasinvoicePage", params); var rs = await this.callms("invoice", "merchantinvoicePage", params);
if (rs && rs.data && rs.data.rows) { if (rs && rs.data && rs.data.rows) {
this.transOrderField(rs.data.rows); this.transOrderField(rs.data.rows);
} }
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
1. [审核失败](#deliverReject) 1. [审核失败](#deliverReject)
1. [交付商交付](#delivered) 1. [交付商交付](#delivered)
1. [查询详细信息](#invoice) 1. [查询详细信息](#invoice)
1. [发票列表](#invoicePage) 1. [发票列表](#merchantinvoicePage)
## **<a name="processList"> 业务进度字典 </a>** ## **<a name="processList"> 业务进度字典 </a>**
[返回到目录](#menu) [返回到目录](#menu)
...@@ -517,11 +517,11 @@ ...@@ -517,11 +517,11 @@
``` ```
## **<a name="invoicePage"> 发票列表 </a>**      ## **<a name="merchantinvoicePage"> 发票列表 </a>**     
[返回到目录](#menu)      [返回到目录](#menu)     
##### URL ##### URL
[/web/saas/invoiceCtl/saasinvoicePage] [/web/saas/invoiceCtl/merchantinvoicePage]
#### 参数格式 `JSON` #### 参数格式 `JSON`
#### HTTP请求方式 `POST` #### HTTP请求方式 `POST`
#### 请求参数 `POST` #### 请求参数 `POST`
......
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