车辆接口更新

This commit is contained in:
wangshiming
2022-01-20 10:00:35 +08:00
parent ed8547e827
commit c6f38f6391
5 changed files with 18 additions and 12 deletions

View File

@ -12,7 +12,7 @@
<se-container col="3" labelWidth="100" *ngIf="!textStatus">
<se-title class="mb-md" style="font-size: 18px">基本信息(应收费用)</se-title>
<se label="网络货运人" required>
{{ costInfo?.ltdid }}
{{ costInfo?.ltdName }}
</se>
<se label="费用类型" required col="2">
{{ costInfo?.feetype }}
@ -39,7 +39,7 @@
<se-container col="3" labelWidth="100" *ngIf="textStatus" class="mt-md">
<se-title class="mb-md" style="font-size: 18px">基本信息(应付费用)</se-title>
<se label="网络货运人" required>
{{ costInfo?.ltdid }}
{{ costInfo?.ltdName }}
</se>
<se label="费用类型" required>
{{ costInfo?.feetype }}
@ -80,6 +80,9 @@
[loading]="service.http.loading"
[scroll]="{ x: '1200px', y: '370px' }"
>
<ng-template st-row="artocode" let-item let-index="index">
{{ costInfo?.artocode}}/{{ costInfo?.artonames}}
</ng-template>
<ng-template st-row="hrvatmoney" let-item let-index="index">
{{ item.hrvatmoney | currency}}
</ng-template>

View File

@ -53,11 +53,11 @@ export class CostManagementDetailComponent implements OnInit {
cost: [
{ title: '序号', render: 'no', width: 70, className: 'text-left' },
{ title: '费用明细号', index: 'feeHId', className: 'text-left', width: 200 },
{ title: '订单号', index: 'billHId', className: 'text-left', width: 200 },
{ title: '订单号', index: 'billHCode', className: 'text-left', width: 200 },
{ title: '订单日期', index: 'callNo', className: 'text-left', width: 200 },
{ title: '运单号', index: 'waybillHId', className: 'text-left', width: 200 },
{ title: '运单号', index: 'waybillHCode', className: 'text-left', width: 200 },
{ title: '运单日期', index: 'waybillDate', className: 'text-left', width: 200 },
{ title: '结算客户', index: 'callNo', className: 'text-left', width: 200 },
{ title: '结算客户', render: 'artocode', className: 'text-left', width: 200 },
{ title: '订单费用类型', index: 'billLType', className: 'text-left', width: 200 },
{ title: '费用科目', index: 'feeSubId', className: 'text-left', width: 200 },
{ title: '税率', index: 'hrvatrate', className: 'text-right', width: 200 },