Commit 1f676801 by 孙亚楠

dd

parent c4ae8152
...@@ -61,7 +61,10 @@ class InvoiceService extends ServiceBase { ...@@ -61,7 +61,10 @@ class InvoiceService extends ServiceBase {
saasInvoiceApply = saasInvoiceApply.data; saasInvoiceApply = saasInvoiceApply.data;
let tradOrder = []; let tradOrder = [];
if (saasInvoiceApply.fee_type == "00") { //个体户注册订单 if (saasInvoiceApply.fee_type == "00") { //个体户注册订单
tradOrder = []; let invoiceOrderRes = await this.callms("order", "saasOrderPage", { saas_invoice_id: this.trim(params.id) ,currentPage:1,pageSize:99999});
if (invoiceOrderRes.status == 0) {
tradOrder = invoiceOrderRes.data.rows || [];
}
} else { //查询流水 } else { //查询流水
let tradOrderRes = await this.tradeSve.invoiceTrade({ let tradOrderRes = await this.tradeSve.invoiceTrade({
id: saasInvoiceApply.id, id: saasInvoiceApply.id,
......
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