发票+数据权限
parent
961dee56bd
commit
67f2c02188
@ -0,0 +1,193 @@
|
||||
import { ref } from 'vue'
|
||||
import { BasicColumn, FormSchema } from '/@/components/Table'
|
||||
import { getOptions } from '/@/hooks/dict'
|
||||
export const billTypeData = [
|
||||
{ value: 0, label: '未提交' },
|
||||
{ value: 1, label: '提交审核' },
|
||||
{ value: 2, label: '审核通过' },
|
||||
{ value: 3, label: '审核驳回' },
|
||||
{ value: 4, label: '已开出' },
|
||||
{ value: 5, label: '部分开出' },
|
||||
]
|
||||
export const searchFormSchema: FormSchema[] = [
|
||||
{
|
||||
field: 'applicationNO',
|
||||
label: '申请单号',
|
||||
component: 'Input',
|
||||
colProps: { span: 4 },
|
||||
},
|
||||
{
|
||||
field: 'applicationNO',
|
||||
label: '开票金额',
|
||||
component: 'Input',
|
||||
colProps: { span: 4 },
|
||||
},
|
||||
{
|
||||
field: 'applyDate',
|
||||
label: '申请日期',
|
||||
component: 'RangePicker',
|
||||
required: false,
|
||||
dynamicDisabled: false,
|
||||
colProps: { span: 4 },
|
||||
componentProps: {
|
||||
allowClear: true,
|
||||
},
|
||||
},
|
||||
{
|
||||
field: 'createByName',
|
||||
label: '申请人',
|
||||
component: 'Input',
|
||||
colProps: { span: 4 },
|
||||
},
|
||||
{
|
||||
field: 'status',
|
||||
label: '审核状态',
|
||||
component: 'Select',
|
||||
colProps: { span: 4 },
|
||||
componentProps: {
|
||||
options: billTypeData,
|
||||
},
|
||||
},
|
||||
|
||||
]
|
||||
|
||||
//列表
|
||||
export const columns: BasicColumn[] = [
|
||||
{
|
||||
title: '申请单号',
|
||||
dataIndex: 'applicationNO',
|
||||
width: 120,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
dataIndex: 'statusText',
|
||||
width: 70,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '委托单位',
|
||||
dataIndex: 'customerName',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '发票抬头',
|
||||
dataIndex: 'invoiceHeader',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '发票币别',
|
||||
dataIndex: 'currency',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '申请方式',
|
||||
dataIndex: 'currency',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '原币金额',
|
||||
dataIndex: 'originalAmount',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '申请人',
|
||||
dataIndex: 'createByName',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '申请开票日期',
|
||||
dataIndex: 'applyDate',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '申请类型',
|
||||
dataIndex: 'orgName',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '申请时间',
|
||||
dataIndex: 'orgName',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '开票税率',
|
||||
dataIndex: 'taxRate',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '发票号',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
//列表
|
||||
export const detailColumns: BasicColumn[] = [
|
||||
{
|
||||
title: '货物或业务应税劳动名称',
|
||||
dataIndex: 'name',
|
||||
width: 120,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '规格型号',
|
||||
dataIndex: 'specification',
|
||||
width: 70,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '单位',
|
||||
dataIndex: 'unit',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '数量',
|
||||
dataIndex: 'quantity',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '含税单价',
|
||||
dataIndex: 'taxUnitPrice',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '单价',
|
||||
dataIndex: 'unitPrice',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '金额',
|
||||
dataIndex: 'amount',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '税率',
|
||||
dataIndex: 'taxRate',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '税额',
|
||||
dataIndex: 'taxAmount',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
}
|
||||
]
|
Loading…
Reference in New Issue