165 lines
4.5 KiB
TypeScript
165 lines
4.5 KiB
TypeScript
import { Component, ViewChild } from '@angular/core';
|
|
import { Router } from '@angular/router';
|
|
import { STComponent, STColumn, STRequestOptions } from '@delon/abc/st';
|
|
import { SFComponent, SFSchema, SFDateWidgetSchema } from '@delon/form';
|
|
import { NzModalService } from 'ng-zorro-antd/modal';
|
|
|
|
import { FreightAccountService } from '../../services/freight-account.service';
|
|
|
|
@Component({
|
|
selector: 'app-advance-collection',
|
|
templateUrl: './advance-collection.component.html',
|
|
styleUrls: ['../../../commom/less/box.less', '../../../commom/less/expend-but.less']
|
|
})
|
|
export class AdvanceCollectionComponent {
|
|
@ViewChild('st', { static: true })
|
|
st!: STComponent;
|
|
@ViewChild('sf', { static: false })
|
|
sf!: SFComponent;
|
|
|
|
searchSchema: SFSchema = this.initSF();
|
|
columns: STColumn[] = this.initST();
|
|
_$expand = false;
|
|
|
|
constructor(public service: FreightAccountService, private router: Router, private modal: NzModalService) {}
|
|
|
|
beforeReq = (requestOptions: STRequestOptions) => {
|
|
if (this.sf) {
|
|
Object.assign(requestOptions.body, { ...this.sf.value });
|
|
}
|
|
return requestOptions;
|
|
};
|
|
|
|
/**
|
|
* 重置表单
|
|
*/
|
|
resetSF() {
|
|
this.sf.reset();
|
|
this._$expand = false;
|
|
}
|
|
|
|
/**
|
|
* 伸缩查询条件
|
|
*/
|
|
expandToggle() {
|
|
this._$expand = !this._$expand;
|
|
this.sf?.setValue('/expand', this._$expand);
|
|
}
|
|
|
|
exportList() {
|
|
this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportPlatformAccountBalanceByOperator,);
|
|
}
|
|
|
|
private initSF(): SFSchema {
|
|
return {
|
|
properties: {
|
|
expand: {
|
|
type: 'boolean',
|
|
ui: {
|
|
hidden: true
|
|
}
|
|
},
|
|
ltdId: {
|
|
type: 'string',
|
|
title: '网络货运人',
|
|
ui: {
|
|
widget: 'select',
|
|
placeholder: '请选择',
|
|
allowClear: true,
|
|
asyncData: () => this.service.getNetworkFreightForwarder()
|
|
}
|
|
},
|
|
cno: {
|
|
type: 'string',
|
|
title: '结算客户',
|
|
ui: {
|
|
widget: 'select',
|
|
placeholder: '请选择',
|
|
allowClear: true,
|
|
asyncData: () => this.service.getCloseAccount()
|
|
}
|
|
},
|
|
arto: {
|
|
type: 'string',
|
|
title: '付款人',
|
|
ui: {
|
|
widget: 'select',
|
|
serverSearch: true,
|
|
searchDebounceTime: 300,
|
|
searchLoadingText: '搜索中...',
|
|
allowClear: true,
|
|
onSearch: (q: any) => this.service.getEnterpriceList({ enterpriseName: q })
|
|
}
|
|
},
|
|
brmtype: {
|
|
type: 'string',
|
|
title: '收款类型',
|
|
enum: [{ label: '全部', value: null }],
|
|
ui: {
|
|
widget: 'select',
|
|
placeholder: '请选择',
|
|
visibleIf: {
|
|
expand: (value: boolean) => value
|
|
}
|
|
},
|
|
default: null
|
|
},
|
|
bankType: {
|
|
type: 'string',
|
|
title: '银行类型',
|
|
enum: [
|
|
{ label: '全部', value: null },
|
|
{ label: '平安银行', value: '1' },
|
|
{ label: '浦发银行', value: '2' }
|
|
],
|
|
ui: {
|
|
widget: 'select',
|
|
placeholder: '请选择',
|
|
visibleIf: {
|
|
expand: (value: boolean) => value
|
|
}
|
|
},
|
|
default: null
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
private initST(): STColumn[] {
|
|
return [
|
|
{ title: '网络货运人', width: 160, index: 'ltdName' },
|
|
{ title: '银行类型', width: 120, index: 'banktypeLabel' },
|
|
{ title: '收款账户', width: 150, index: 'ltdaccountId' },
|
|
{ title: '收款类型', width: 120, index: 'brmtypeLabel' },
|
|
{
|
|
title: '预收余额',
|
|
index: 'yskmoney',
|
|
width: 140,
|
|
type: 'widget',
|
|
className: 'text-right',
|
|
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.yskmoney }) }
|
|
},
|
|
{ title: '付款人', index: 'artoName', width: 180 },
|
|
{ title: '结算客户', index: 'cnoName', width: 150 },
|
|
{
|
|
title: '操作',
|
|
width: 120,
|
|
className: 'text-center',
|
|
fixed: 'right',
|
|
buttons: [
|
|
{
|
|
text: '浏览',
|
|
click: item => this.router.navigate([`/financial-management/advance-collection/detail/${item.id}`])
|
|
}
|
|
// {
|
|
// text: '核销'
|
|
// },
|
|
// {
|
|
// text: '退款'
|
|
// }
|
|
]
|
|
}
|
|
];
|
|
}
|
|
}
|