This commit is contained in:
Taric Xin
2021-12-06 17:49:20 +08:00
parent 1c5643b7e9
commit 76951f250c
33 changed files with 1835 additions and 35 deletions

View File

@ -1,4 +1,9 @@
import { Component, OnInit } from '@angular/core';
import { Component, OnInit, ViewChild } from '@angular/core';
import { Router } from '@angular/router';
import { STComponent, STColumn, STChange } from '@delon/abc/st';
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
import { NzModalService } from 'ng-zorro-antd/modal';
import { TicketService } from '../../services/system.service';
@Component({
selector: 'app-etc-invoiced-logs',
@ -6,10 +11,168 @@ import { Component, OnInit } from '@angular/core';
styleUrls: ['./etc-invoiced-logs.component.less']
})
export class ETCInvoicedLogsComponent implements OnInit {
url = `/rule?_allow_anonymous=true`;
@ViewChild('st', { static: true })
st!: STComponent;
@ViewChild('sf', { static: false })
sf!: SFComponent;
columns: STColumn[] = [
{ title: '发票号码', index: 'no' },
{ title: '发票代码', index: 'callNo' },
{ title: '运单号', index: 'callNo' },
{ title: '车牌号', index: 'callNo' },
{ title: '入站口', index: 'callNo' },
{ title: '出站口', index: 'callNo' },
{ title: '里程km', index: 'callNo' },
{ title: '交易id', index: 'callNo' },
{ title: '交易金额(元)', index: 'callNo' },
{ title: '发票金额(元)', index: 'callNo' },
{ title: '税率', index: 'callNo' },
{ title: '税额(元)', index: 'callNo' },
{ title: '价税合计(元)', index: 'callNo' },
{ title: '交易时间', index: 'updatedAt', type: 'date' },
{ title: '开票日期', index: 'updatedAt', type: 'date' },
{ title: '购买方', index: 'callNo' },
{ title: '购方税号', index: 'callNo' },
{ title: '销售方', index: 'callNo' },
{ title: '销方税号', index: 'callNo' }
];
searchSchema: SFSchema = {
properties: {
expand: {
type: 'boolean',
ui: {
hidden: true
}
},
orderSn: {
type: 'string',
title: '发票号码',
ui: {
placeholder: '请输入',
autocomplete: 'off'
}
},
orderSn1: {
type: 'string',
title: '运单号',
ui: {
placeholder: '请输入',
autocomplete: 'off'
}
},
orderSn2: {
type: 'string',
title: '车牌号',
ui: {
placeholder: '请输入',
autocomplete: 'off'
}
},
createTime: {
title: '交易时间',
type: 'string',
ui: {
widget: 'date',
mode: 'range',
format: 'yyyy-MM-dd',
visibleIf: {
expand: (value: boolean) => value
}
} as SFDateWidgetSchema
},
createTime2: {
title: '开票日期',
type: 'string',
ui: {
widget: 'date',
mode: 'range',
format: 'yyyy-MM-dd',
visibleIf: {
expand: (value: boolean) => value
}
} as SFDateWidgetSchema
},
receiveName: {
type: 'string',
title: '购买方',
enum: [
{ label: '全部', value: '全部' },
{ label: '企业认证审核', value: '企业认证审核' },
{ label: '企业管理员审核', value: '企业管理员审核' }
],
ui: {
widget: 'select',
placeholder: '请选择',
change: (i: any) => {
this.sf.value.receiveName = i;
this.sf?.setValue('/receiveName', i);
},
visibleIf: {
expand: (value: boolean) => value
}
}
},
receiveName2: {
type: 'string',
title: '销售方',
enum: [
{ label: '全部', value: '全部' },
{ label: '企业认证审核', value: '企业认证审核' },
{ label: '企业管理员审核', value: '企业管理员审核' }
],
ui: {
widget: 'select',
placeholder: '请选择',
change: (i: any) => {
this.sf.value.receiveName2 = i;
this.sf?.setValue('/receiveName2', i);
},
visibleIf: {
expand: (value: boolean) => value
}
}
}
}
};
constructor() { }
reqParams = {};
ngOnInit(): void {
_$expand = false;
constructor(public service: TicketService, private nzModalService: NzModalService, private router: Router) {}
ngOnInit(): void {}
stChange(e: STChange): void {
switch (e.type) {
case 'filter':
this.st.load();
break;
}
}
approval(): void {}
add(): void {}
routeTo(item: any) {
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);
}
}