权限模板
parent
b9bf639846
commit
c787a93052
@ -0,0 +1,381 @@
|
||||
import { ref } from 'vue'
|
||||
import { BasicColumn, FormSchema } from '/@/components/Table'
|
||||
import { getOptions } from '/@/hooks/dict'
|
||||
export const billTypeData = [
|
||||
{ value: '', label: '全部' },
|
||||
{ value: 1, label: '待审核' },
|
||||
{ value: 2, 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: 'categoryText',
|
||||
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: 'categoryText',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '特殊放单',
|
||||
dataIndex: 'createTime',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '协议天数',
|
||||
dataIndex: 'taxRate',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '实际天数',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: 'USD未收',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: 'RMB未收',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '未收合计',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '业务类型',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '起运港',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '卸货港',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '客服',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '船证',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '是否改签',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '特殊放单审批意见',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '经理复核',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '后边是否有货',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '是否超期欠费',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '船证备注',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '签入日期',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '签出日期',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '总应收',
|
||||
dataIndex: 'invoiceNO',
|
||||
width: 100,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: '单证',
|
||||
dataIndex: 'invoiceNO',
|
||||
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',
|
||||
}
|
||||
]
|
||||
|
||||
export const feeColumns: BasicColumn[] = [
|
||||
{
|
||||
title: '委托编号',
|
||||
dataIndex: 'customerNo',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '主提单号',
|
||||
dataIndex: 'mblno',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '委托单位',
|
||||
dataIndex: 'customerName',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '开船日期',
|
||||
dataIndex: 'etd',
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: '业务来源',
|
||||
dataIndex: 'sourceName',
|
||||
width: 80,
|
||||
},
|
||||
{
|
||||
title: '费用名称',
|
||||
dataIndex: 'feeName',
|
||||
width: 80,
|
||||
},
|
||||
{
|
||||
title: '收付',
|
||||
dataIndex: 'feeType',
|
||||
width: 50,
|
||||
},
|
||||
{
|
||||
title: '申请金额',
|
||||
dataIndex: 'applyAmount',
|
||||
width: 80,
|
||||
},
|
||||
{
|
||||
title: '原始币别',
|
||||
dataIndex: 'originalCurrency',
|
||||
width: 80,
|
||||
},
|
||||
{
|
||||
title: '原始汇率',
|
||||
dataIndex: 'originalRate',
|
||||
width: 80,
|
||||
},
|
||||
{
|
||||
title: '折算汇率',
|
||||
dataIndex: 'exchangeRate',
|
||||
width: 80,
|
||||
},
|
||||
|
||||
]
|
||||
|
||||
export const feeColumnsSum: BasicColumn[] = [
|
||||
{
|
||||
title: '收付',
|
||||
dataIndex: 'feeType',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '币别',
|
||||
dataIndex: 'currency',
|
||||
width: 100,
|
||||
},
|
||||
{
|
||||
title: '金额',
|
||||
dataIndex: 'amount',
|
||||
width: 100,
|
||||
},
|
||||
]
|
Loading…
Reference in New Issue