Files
bbq/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.ts
Taric Xin 3be663b9af edit
2022-01-05 17:14:08 +08:00

174 lines
5.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Component, OnInit, ViewChild } from '@angular/core';
import { Router } from '@angular/router';
import { STComponent, STColumn, STChange, STRequestOptions } from '@delon/abc/st';
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
import { NzModalService } from 'ng-zorro-antd/modal';
import { TicketService } from '../../services/ticket.service';
@Component({
selector: 'app-etc-invoiced-logs',
templateUrl: './etc-invoiced-logs.component.html',
styleUrls: ['../../../commom/less/box.less', '../../../commom/less/expend-but.less']
})
export class ETCInvoicedLogsComponent implements OnInit {
@ViewChild('st', { static: true })
st!: STComponent;
@ViewChild('sf', { static: false })
sf!: SFComponent;
columns: STColumn[] = this.initST();
searchSchema: SFSchema = this.initSF();
_$expand = false;
constructor(public service: TicketService, private nzModalService: NzModalService, private router: Router) {}
ngOnInit(): void {}
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
});
}
return requestOptions;
};
routeTo(item: any) {
return;
this.router.navigate(['/ticket/invoice-requested-detail/1']);
}
/**
* 重置表单
*/
resetSF() {
this.sf.reset();
this._$expand = false;
}
/**
* 伸缩查询条件
*/
expandToggle() {
this._$expand = !this._$expand;
this.sf?.setValue('/expand', this._$expand);
}
private initSF(): SFSchema {
return {
properties: {
expand: {
type: 'boolean',
ui: {
hidden: true
}
},
orderSn: {
type: 'string',
title: '发票号码',
ui: {
placeholder: '请输入',
autocomplete: 'off'
}
},
orderS2n1: {
type: 'string',
title: '订单号',
ui: {
placeholder: '请输入'
}
},
orderSn1: {
type: 'string',
title: '运单号',
ui: {
placeholder: '请输入'
}
},
orderSn2: {
type: 'string',
title: '车牌号',
ui: {
placeholder: '请输入',
visibleIf: {
expand: (value: boolean) => value
}
}
},
createTime: {
title: '交易时间',
type: 'string',
ui: {
widget: 'sl-from-to-search',
format: 'yyyy-MM-dd',
visibleIf: {
expand: (value: boolean) => value
}
} as SFDateWidgetSchema
},
createTime2: {
title: '开票日期',
type: 'string',
ui: {
widget: 'sl-from-to-search',
format: 'yyyy-MM-dd',
visibleIf: {
expand: (value: boolean) => value
}
} as SFDateWidgetSchema
},
receiveName2: {
type: 'string',
title: '销售方',
enum: [{ label: '全部', value: '全部' }],
ui: {
widget: 'select',
placeholder: '请选择',
visibleIf: {
expand: (value: boolean) => value
}
}
},
ltdId: {
type: 'string',
title: '网络货运人',
ui: {
widget: 'select',
placeholder: '请选择',
allowClear: true,
visibleIf: {
expand: (value: boolean) => value
},
asyncData: () => this.service.getNetworkFreightForwarder()
},
default: ''
}
}
};
}
private initST(): STColumn[] {
return [
{ title: '发票号码', index: 'no', width: 100, type: 'link', click: item => this.routeTo(item) },
{ title: '发票代码', index: 'callNo', width: 100 },
{ title: '订单号', index: 'callNo', width: 100 },
{ title: '运单号', index: 'callNo', width: 100 },
{ title: '入站口', index: 'callNo', width: 100 },
{ title: '出站口', index: 'callNo', width: 100 },
{ title: '司机', render: 'call3No', width: 140 },
{ title: '车牌号', index: 'callNo', width: 100 },
{ title: '里程km', index: 'callNo', width: 120 },
{ title: '交易id', index: 'callNo', width: 100 },
{ title: '交易金额(元)', index: 'callNo', width: 130 },
{ title: '税率', index: 'callNo', width: 90 },
{ title: '金额(元)', index: 'callNo', width: 120 },
{ title: '税额(元)', index: 'callNo', width: 120 },
{ title: '价税合计(元)', index: 'callNo', width: 130 },
{ title: '交易时间', index: 'updatedAt', type: 'date', width: 150 },
{ title: '开票日期', index: 'updatedAt', type: 'date', width: 150 },
{ title: '销售方', index: 'callNo', width: 90 },
{ title: '网络货运人', index: 'callNo', width: 120 }
];
}
}