edit
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* @Description :
|
||||
* @Description :
|
||||
* @Version : 1.0
|
||||
* @Author : Shiming
|
||||
* @Date : 2022-01-18 15:57:44
|
||||
@ -137,6 +137,22 @@ export class VoucherManagementComponent implements OnInit {
|
||||
sourceType: {
|
||||
type: 'string',
|
||||
title: '原始单类型',
|
||||
enum: [
|
||||
{ value: '', label: '全部' },
|
||||
{ value: 1, label: '收款' },
|
||||
{ value: 2, label: '收款(退款)' },
|
||||
{ value: 3, label: '应收费用' },
|
||||
{ value: 4, label: '应收费用(负数)' },
|
||||
{ value: 5, label: '应收核销' },
|
||||
{ value: 6, label: '应收核销(负数)' },
|
||||
{ value: 7, label: '应付费用' },
|
||||
{ value: 8, label: '应付费用(负数)' },
|
||||
{ value: 9, label: '应付核销' },
|
||||
{ value: 10, label: '应付核销(负数)' },
|
||||
{ value: 11, label: '分票开票' },
|
||||
{ value: 12, label: '删除分票' },
|
||||
{ value: 13, label: '付款' }
|
||||
],
|
||||
ui: {
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
@ -292,7 +308,7 @@ export class VoucherManagementComponent implements OnInit {
|
||||
return [
|
||||
{ title: '', index: 'key', type: 'checkbox', width: 60, className: 'text-center', fixed: 'left' },
|
||||
{ title: '凭证号', index: 'vccode', type: 'link', width: 200 },
|
||||
{ title: '帐套', index: 'ltdId', width: 200,format:item=>`${item.vcltdcode}-${item.vcltdname}` },
|
||||
{ title: '帐套', index: 'ltdId', width: 200, format: item => `${item.vcltdcode}-${item.vcltdname}` },
|
||||
{ title: '凭证时间', index: 'vctime', type: 'date', width: 200 },
|
||||
{ title: '凭证类型', index: 'vctype', width: 200 },
|
||||
{ title: '序号', index: 'invmoney', width: 200, format: _ => '1' },
|
||||
@ -328,8 +344,8 @@ export class VoucherManagementComponent implements OnInit {
|
||||
{
|
||||
text: '浏览',
|
||||
click: (item: any) => this.router.navigate(['/financial-management/voucher-management/detail/' + item.id]),
|
||||
acl: { ability: ['FINANCIAL-VOUCHER-view'] },
|
||||
},
|
||||
acl: { ability: ['FINANCIAL-VOUCHER-view'] }
|
||||
}
|
||||
// {
|
||||
// text: '修改'
|
||||
// },
|
||||
|
||||
Reference in New Issue
Block a user