+
+
+
+
+
+
-
- {{ item.freightPrice | currency}}
-
-
-
-
![]()
-
![]()
-
-
-
-
-
-
-
- 装 | {{item?.loadingTime}}
- 卸 | {{item?.unloadingTime}}
-
-
-
- {{item?.driverName}}/{{item?.driverPhone}}/{{item?.carNo}}
-
+
+ {{ item.freightPrice | currency }}
+
+
+
+
![]()
+
![]()
+
+
+
+
+
+
+
+ 装 | {{ item?.loadingTime }}
+ 卸 | {{ item?.unloadingTime }}
+
+
+ {{ item?.driverName }}/{{ item?.driverPhone }}/{{ item?.carNo }}
-
- {{item?.payeeName}}/{{item?.payeePhone}}
-
+ {{ item?.payeeName }}/{{ item?.payeePhone }}
+
+
+ {{ item.billCode }}
+
+ {{ item?.serviceTypeName }}
+
+
+ {{ item?.auditStatusLabel }}
+
+
+
+ {{ item?.goodsName }}
+
+ {{ item?.weight ? item?.weight + '吨/' : '' }}
+ {{ item?.volume ? item?.volume + '方/' : '' }}
+ {{ item?.goodsNumber ? item?.goodsNumber + '吨' : '' }}
+
+
+
+ 0">
+
+ {{ data.expenseName }}:{{ data.price | currency }}
+ {{ data.paymentStatusLabel }}
+
+
-
- {{item.billCode}}
-
- {{item?.serviceTypeName}}
-
-
- {{item?.auditStatusLabel}}
-
-
-
- {{item?.goodsName}}
-
- {{item?.weight ? item?.weight + '吨/' : '' }}
- {{item?.volume ? item?.volume + '方/' : '' }}
- {{item?.goodsNumber ? item?.goodsNumber + '吨' : '' }}
-
-
-
- 0">
-
- {{ data.expenseName }}:{{ data.price | currency }}
- {{ data.paymentStatusLabel }}
-
-
-
-
-
+
+
-
\ No newline at end of file
+
diff --git a/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.ts b/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.ts
index cf8a24d4..b2caf424 100644
--- a/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.ts
+++ b/src/app/routes/order-management/components/receipts-audit/receipts-audit.component.ts
@@ -329,33 +329,33 @@ export class OrderManagementReceiptsAuditComponent implements OnInit {
{
title: '操作',
fixed: 'right',
- width: '120px',
+ width: '136px',
className: 'text-left',
buttons: [
{
- text: '通过',
+ text: '生成电子单据',
+ click: _record => this.generate(_record, 2),
+ iif: item => item.auditStatus == '1',
+ acl: { ability: ['ORDER-RECEIPTS-electronicBillingOne'] },
+ },
+ {
+ text: '通过 ',
click: _record => this.sign(_record),
iif: item => item.auditStatus == '1',
acl: { ability: ['ORDER-RECEIPTS-billAuditPassBatch'] },
},
{
- text: '生成电子单据',
- click: _record => this.generate(_record, 2),
- iif: item => item.auditStatus == '1',
- acl: { ability: ['ORDER-RECEIPTS-generate'] },
- },
- {
- text: '查看凭证',
- click: _record => this.generate(_record, 3),
- iif: item => item.auditStatus == '2',
- acl: { ability: ['ORDER-RECEIPTS-view'] },
- },
- {
- text: '修改',
+ text: '修改 ',
click: _record => this.modification(_record),
iif: item => item.auditStatus == '1' ,
acl: { ability: ['ORDER-RECEIPTS-updateBillExamine'] },
},
+ {
+ text: '查看凭证 ',
+ click: _record => this.generate(_record, 3),
+ iif: item => item.auditStatus == '2',
+ acl: { ability: ['ORDER-RECEIPTS-view'] },
+ },
]
}
];