|
@@ -59,6 +59,12 @@ class reportMemoryFinancial {
|
|
|
return await this.ctx.service.financialPayTender.getAllDataByCondition({ where: { spid: this.tender.spid } });
|
|
|
}
|
|
|
|
|
|
+ async projectPayStage(tid) {
|
|
|
+ await this.checkTender(tid);
|
|
|
+ if (!this.tender || !this.tender.spid) return [];
|
|
|
+ return await this.ctx.service.financialPayStage.getAllDataByCondition({ where: { spid: this.tender.spid } });
|
|
|
+ }
|
|
|
+
|
|
|
async projectTransfer(tid) {
|
|
|
await this.checkTender(tid);
|
|
|
if (!this.tender || !this.tender.spid) return [];
|