返佣
This commit is contained in:
@ -300,14 +300,6 @@ export class InvoiceRequestedComponent {
|
|||||||
otherremarks: {
|
otherremarks: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '其他需求',
|
title: '其他需求',
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
enum: [
|
|
||||||
{ label: '全部', value: '' },
|
|
||||||
{ label: '是', value: true },
|
|
||||||
{ label: '否', value: false }
|
|
||||||
],
|
|
||||||
>>>>>>> ace758617fd29baf5826fe50da26dfa1b86ae71e
|
|
||||||
ui: {
|
ui: {
|
||||||
visibleIf: {
|
visibleIf: {
|
||||||
expand: (value: boolean) => value
|
expand: (value: boolean) => value
|
||||||
|
|||||||
@ -164,6 +164,9 @@
|
|||||||
<ng-template st-row="price" let-item let-index="index">
|
<ng-template st-row="price" let-item let-index="index">
|
||||||
{{ item.price | currency }}
|
{{ item.price | currency }}
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
<ng-template st-row="prices" let-item let-index="index">
|
||||||
|
{{ item.price + item.surcharge | currency }}
|
||||||
|
</ng-template>
|
||||||
<ng-template st-row="surcharge" let-item let-index="index">
|
<ng-template st-row="surcharge" let-item let-index="index">
|
||||||
{{ item.surcharge | currency }}
|
{{ item.surcharge | currency }}
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: your name
|
* @Author: your name
|
||||||
* @Date: 2021-12-03 15:31:52
|
* @Date: 2021-12-03 15:31:52
|
||||||
* @LastEditTime : 2022-03-11 15:54:52
|
* @LastEditTime : 2022-03-21 14:56:00
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\bulk-detail\\bulk-detail.component.ts
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\bulk-detail\\bulk-detail.component.ts
|
||||||
@ -42,7 +42,7 @@ export class WaybillManagementBulkeDetailComponent implements OnInit {
|
|||||||
];
|
];
|
||||||
logColumns: STColumn[] = [
|
logColumns: STColumn[] = [
|
||||||
{ title: '款项', index: 'costCodeLabel' },
|
{ title: '款项', index: 'costCodeLabel' },
|
||||||
{ title: '小计(元)', render: 'price' },
|
{ title: '小计(元)', render: 'prices' },
|
||||||
{ title: '运输费(元)', render: 'price' },
|
{ title: '运输费(元)', render: 'price' },
|
||||||
{ title: '附加费(元)', render: 'surcharge' },
|
{ title: '附加费(元)', render: 'surcharge' },
|
||||||
{ title: '支付时间', index: 'paymentTime' },
|
{ title: '支付时间', index: 'paymentTime' },
|
||||||
|
|||||||
@ -148,6 +148,9 @@
|
|||||||
<ng-template st-row="price" let-item let-index="index">
|
<ng-template st-row="price" let-item let-index="index">
|
||||||
{{ item.price | currency }}
|
{{ item.price | currency }}
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
<ng-template st-row="prices" let-item let-index="index">
|
||||||
|
{{ item.price + item.surcharge | currency }}
|
||||||
|
</ng-template>
|
||||||
<ng-template st-row="surcharge" let-item let-index="index">
|
<ng-template st-row="surcharge" let-item let-index="index">
|
||||||
{{ item.surcharge | currency }}
|
{{ item.surcharge | currency }}
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: your name
|
* @Author: your name
|
||||||
* @Date: 2021-12-03 15:31:52
|
* @Date: 2021-12-03 15:31:52
|
||||||
* @LastEditTime : 2022-03-10 16:26:01
|
* @LastEditTime : 2022-03-21 14:55:34
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\vehicle-detail\\vehicle-detail.component.ts
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\vehicle-detail\\vehicle-detail.component.ts
|
||||||
@ -42,7 +42,7 @@ export class WaybillManagementVehicleDetailComponent implements OnInit, OnDestro
|
|||||||
billExpenses: any[] = []; //运费信息表格信息
|
billExpenses: any[] = []; //运费信息表格信息
|
||||||
logColumns: STColumn[] = [
|
logColumns: STColumn[] = [
|
||||||
{ title: '款项', index: 'costCodeLabel' },
|
{ title: '款项', index: 'costCodeLabel' },
|
||||||
{ title: '小计(元)', render: 'price' },
|
{ title: '小计(元)', render: 'prices' },
|
||||||
{ title: '运输费(元)', render: 'price' },
|
{ title: '运输费(元)', render: 'price' },
|
||||||
{ title: '附加费(元)', render: 'surcharge' },
|
{ title: '附加费(元)', render: 'surcharge' },
|
||||||
{ title: '支付时间', index: 'paymentTime' },
|
{ title: '支付时间', index: 'paymentTime' },
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: your name
|
* @Author: your name
|
||||||
* @Date: 2021-12-03 11:10:14
|
* @Date: 2021-12-03 11:10:14
|
||||||
* @LastEditTime : 2022-03-21 14:52:24
|
* @LastEditTime : 2022-03-21 14:53:06
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\vehicle\\vehicle.component.html
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\vehicle\\vehicle.component.html
|
||||||
|
|||||||
Reference in New Issue
Block a user