Commit a5168171 by 王昆

gsb

parent 58241766
......@@ -10,7 +10,7 @@ class InvoiceCtl extends CtlBase {
* 业务进度字典
* @param {*} pobj
*/
async processDics(pobj) {
async processDics(pobj, pobj2, req) {
try {
return await this.invoiceSve.processDics(pobj);
} catch (error) {
......@@ -20,10 +20,10 @@ class InvoiceCtl extends CtlBase {
}
/**
* 查询明细(平台)
* 发票申请列表-平台
* @param {*} pobj
*/
async invoicePage(pobj) {
async invoicePage(pobj, pobj2, req) {
try {
this.doTimeCondition(pobj, ["createTimeBegin", "createTimeEnd"]);
return await this.invoiceSve.invoicePage(pobj);
......@@ -34,6 +34,22 @@ class InvoiceCtl extends CtlBase {
}
/**
* 发票申请列表-业务员
* @param {*} pobj
*/
async myInvoicePage(pobj, pobj2, req) {
try {
this.doTimeCondition(pobj, ["createTimeBegin", "createTimeEnd"]);
return await this.invoiceSve.invoicePage(pobj);
} catch (error) {
console.log(error);
return system.getResultFail(500, `接口错误 错误信息 ${error}`);
}
}
/**
* 进度处理
* @param {*} pobj
*/
......
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