edit
This commit is contained in:
@ -123,7 +123,7 @@ export class InputInvoiceComponent implements OnInit {
|
||||
title: '发票类型',
|
||||
enum: [
|
||||
{ value: '', label: '全部' },
|
||||
{ value: '1', label: '运输专票' },
|
||||
{ value: '1', label: '运输专票' }
|
||||
],
|
||||
ui: {
|
||||
widget: 'select',
|
||||
@ -138,7 +138,10 @@ export class InputInvoiceComponent implements OnInit {
|
||||
type: 'string',
|
||||
title: '销售方',
|
||||
ui: {
|
||||
placeholder: '请输入',
|
||||
widget: 'select',
|
||||
placeholder: '请选择',
|
||||
allowClear: true,
|
||||
asyncData: () => this.service.getCRMCustomerId(),
|
||||
visibleIf: {
|
||||
expand: (value: boolean) => value
|
||||
}
|
||||
@ -220,8 +223,8 @@ export class InputInvoiceComponent implements OnInit {
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '', index: 'key', type: 'checkbox', width: 60, className: 'text-center', fixed: 'left' },
|
||||
{ title: '收票单号', index: 'inpinvcode', type: 'link', width: 170 },
|
||||
{ title: '网络货运人', index: 'ltdName', width: 150 },
|
||||
{ title: '收票单号', index: 'inpinvcode', type: 'link', width: 190 },
|
||||
{ title: '网络货运人', index: 'ltdName', width: 220 },
|
||||
{ title: '发票日期', index: 'invdate', type: 'date', width: 150, className: 'text-center' },
|
||||
{ title: '发票号', index: 'invoiceno', width: 130 },
|
||||
{
|
||||
@ -241,7 +244,7 @@ export class InputInvoiceComponent implements OnInit {
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.invtax }) }
|
||||
},
|
||||
{ title: '发票类型', index: 'invtype', width: 150, className: 'text-center' },
|
||||
{ title: '销售方', index: 'hrtoName', width: 150 },
|
||||
{ title: '销售方', index: 'hrtoName', width: 200 },
|
||||
{ title: '创建时间', index: 'createtime', type: 'date', width: 150, className: 'text-center' },
|
||||
{ title: '创建人', index: 'createbyname', width: 120 },
|
||||
{ title: '收票状态', index: 'stsLabel', width: 120, className: 'text-center' },
|
||||
|
||||
Reference in New Issue
Block a user