You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1020 lines
19 KiB

1 year ago
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime'
import * as SupplierApi from '@/api/wms/supplier'
import { Supplier } from '@/views/wms/basicDataManage/supplierManage/supplier/supplier.data'
const { t } = useI18n() // 国际化
import * as getRequestsettingApi from '@/api/wms/requestsetting/index'
import * as supplierinvoiceRequestDetailApi from '@/api/wms/supplierinvoiceRequestDetail'
// 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值
const queryParams = {
pageSize: 10,
pageNo: 1,
code: 'PurchaseInvoiceRequest'
}
const data = await getRequestsettingApi.getRequestsettingPage(queryParams)
const requestsettingData = data?.list[0] || {}
// 获取当前操作人的部门
import { useUserStore } from '@/store/modules/user'
import { TableColumn } from '@/types/table'
const userStore = useUserStore()
const userDept = userStore.userSelfInfo.dept
// id 转str 否则form回显匹配不到
userDept.id = userDept.id.toString()
const userDeptArray:any = [userDept]
/**
* @returns {Array} 退
*/
export const PurchaseReceiptOrReturnRecordDetail = useCrudSchemas(reactive<CrudSchema[]>([
1 year ago
{
label: '单据类型',
field: 'billType'
1 year ago
},
{
12 months ago
label: '物流单据号',
field: 'recvBillNum',
table: {
width: 180,
},
1 year ago
},
{
label: '发货单号',
12 months ago
field: 'asnBillNum',
table: {
width: 180,
},
1 year ago
},
{
label: '供应商代码',
field: 'supplierCode'
1 year ago
},
{
label: '订单号',
field: 'poNumber'
},
1 year ago
{
label: '订单行',
field: 'poLine'
},
1 year ago
{
label: '采购价格',
field: 'purchasePrice'
1 year ago
},
1 year ago
{
label: '可开票数量',
field: 'invoicableQuantity'
1 year ago
},
1 year ago
{
label: '物料代码',
field: 'itemCode'
1 year ago
},
{
label: '创建时间',
field: 'createTime',
isTable: true,
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
isTableForm: false,
isForm: false
}
]))
/**
* @returns {Array}
*/
export const SupplierinvoiceRequestMain = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '单据号',
field: 'number',
sort: 'custom',
table: {
width: 180,
fixed: 'left'
},
isSearch: true,
isForm: false
},
{
label: '供应商代码',
field: 'supplierCode',
sort: 'custom',
table: {
width: 150
},
isSearch: true,
form: {
// labelMessage: '信息提示说明!!!',
componentProps: {
isSearchList: true, // 开启查询弹窗
searchListPlaceholder: '请选择供应商代码', // 输入框占位文本
searchField: 'code', // 查询弹窗赋值字段
searchTitle: '供应商信息', // 查询弹窗标题
searchAllSchemas: Supplier.allSchemas, // 查询弹窗所需类
searchPage: SupplierApi.getSupplierPage // 查询弹窗所需分页方法
}
}
},
12 months ago
{
label: '供应商名称',
field: 'supplierName',
sort: 'custom',
table: {
width: 180,
},
isForm: false
},
1 year ago
{
label: '状态',
field: 'status',
dictType: DICT_TYPE.SUPPLIERINVOICE_REQUEST_STATUS,
1 year ago
dictClass: 'string',
isTable: true,
isForm:false,
1 year ago
sort: 'custom',
table: {
width: 150
},
isSearch: true,
form: {
value: '1',
componentProps: {
disabled: true
}
}
1 year ago
},
{
label: '金额',
field: 'amount',
1 year ago
table: {
width: 150
},
form: {
component: 'InputNumber',
1 year ago
componentProps: {
min: 0,
precision: 6,
disabled: true,
1 year ago
}
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
1 year ago
}
},
{
12 months ago
label: '税率(%)',
field: 'taxRate',
12 months ago
dictType: DICT_TYPE.TAX_RATE_DICT,
dictClass: 'string',
isTable: true,
isSearch: true,
sort: 'custom',
table: {
width: 150
},
1 year ago
},
{
label: '税额',
field: 'taxAmount',
1 year ago
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 0,
precision: 6,
disabled: true,
1 year ago
}
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
1 year ago
}
},
{
label: '税后金额',
field: 'afterTaxAmount',
1 year ago
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 0,
precision: 6,
disabled: true,
}
1 year ago
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
1 year ago
disabled: true,
}
1 year ago
},
{
label: '索赔金额',
field: 'claimAmount',
1 year ago
table: {
width: 150
},
isTable:false,
isTableForm:false,
isForm:false,
isDetail:false,
1 year ago
form: {
component: 'InputNumber',
1 year ago
componentProps: {
min: 0,
precision: 6,
1 year ago
}
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
1 year ago
}
},
{
label: '折扣金额',
field: 'discountAmount',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 0,
precision: 6,
}
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
}
},
{
label: '调整税额',
field: 'adjustingTaxAmount',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 0,
precision: 6,
}
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
}
},
12 months ago
{
label: '总差额',
field: 'totalDifference',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 0,
precision: 6,
}
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
}
},
{
label: '金税票号',
field: 'goldenTaxInvoiceNumber',
table: {
width: 150
},
},
{
label: '快递单号',
field: 'expressTrackingNumber',
isTable:false,
isForm:false,
table: {
width: 150
},
},
{
1 year ago
label: '发票日期',
field: 'invoiceTime',
1 year ago
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
form: {
component: 'DatePicker',
componentProps: {
style: {width:'100%'},
1 year ago
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
},
1 year ago
{
label: '过账日期',
field: 'postingDate',
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
form: {
component: 'DatePicker',
componentProps: {
style: {width:'100%'},
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
},
1 year ago
{
label: '申请时间',
field: 'requestTime',
1 year ago
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
12 months ago
isTable:false,
1 year ago
isForm:false,
form: {
component: 'DatePicker',
componentProps: {
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
},
{
label: '部门',
field: 'departmentCode',
sort: 'custom',
table: {
width: 150
},
1 year ago
isTable:false,
isTableForm:false,
isForm:false,
1 year ago
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
return userDeptArray.find((account) => account.id == cellValue)?.name
},
form: {
value: userDept.id,
component: 'Select',
api: () => userDeptArray,
componentProps: {
disabled: true,
optionsAlias: {
labelField: 'name',
valueField: 'id'
}
}
}
},
{
label: '创建者',
field: 'creator',
sort: 'custom',
table: {
width: 150
},
12 months ago
sortDefault:1001,
1 year ago
isForm: false,
},
{
label: '创建时间',
field: 'createTime',
isTable: true,
formatter: dateFormatter,
12 months ago
sortDefault:1000,
1 year ago
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
isForm: false,
},
{
label: '最后更新者',
field: 'updater',
sort: 'custom',
table: {
width: 150
},
12 months ago
isTable:false,
1 year ago
isForm: false,
},
{
label: '最后更新时间',
field: 'updateTime',
12 months ago
isTable: false,
1 year ago
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
isForm: false,
form: {
component: 'DatePicker',
componentProps: {
type: 'datetime',
dateFormat: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'x',
}
},
},
12 months ago
{
12 months ago
label: '采购审批人',
12 months ago
field: 'procurementCreator',
sort: 'custom',
12 months ago
sortDefault:1003,
12 months ago
table: {
width: 150
},
isForm: false,
},
{
label: '采购审批时间',
field: 'procurementCreateTime',
isTable: true,
12 months ago
sortDefault:1004,
12 months ago
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
isForm: false,
},
{
12 months ago
label: '财务审批人',
12 months ago
field: 'financialCreator',
sort: 'custom',
table: {
width: 150
},
isForm: false,
},
{
label: '财务审批时间',
field: 'financialCreateTime',
isTable: true,
12 months ago
sortDefault:1005,
12 months ago
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
isForm: false,
},
{
12 months ago
label: '供应商审批人',
12 months ago
field: 'supplierCreator',
sort: 'custom',
12 months ago
isTable:false,
sortDefault:1006,
12 months ago
table: {
12 months ago
width: 180
12 months ago
},
isForm: false,
},
{
label: '供应商审批时间',
field: 'supplierCreateTime',
12 months ago
isTable:false,
12 months ago
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
sort: 'custom',
table: {
width: 180
},
isForm: false,
},
{
label: '备注',
field: 'remark',
sort: 'custom',
table: {
width: 150
},
isTable: false,
},
1 year ago
{
label: '自动提交',
field: 'autoCommit',
dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string',
isTable: false,
isForm:false,
isTableForm:false,
isDetail:false,
1 year ago
sort: 'custom',
table: {
width: 150
},
form: {
component: 'Switch',
value: requestsettingData.autoCommit,
componentProps: {
inactiveValue: 'FALSE',
activeValue: 'TRUE',
disabled: true,
}
}
},
{
label: '自动通过',
field: 'autoAgree',
dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string',
isTable: false,
isForm:false,
isTableForm:false,
isDetail:false,
1 year ago
sort: 'custom',
table: {
width: 150
},
form: {
component: 'Switch',
value: requestsettingData.autoAgree,
componentProps: {
inactiveValue: 'FALSE',
activeValue: 'TRUE',
disabled: true,
}
}
},
{
label: '自动执行',
field: 'autoExecute',
dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string',
isTable: false,
isForm:false,
isTableForm:false,
isDetail:false,
1 year ago
sort: 'custom',
table: {
width: 150
},
form: {
component: 'Switch',
value: requestsettingData.autoExecute,
componentProps: {
inactiveValue: 'FALSE',
activeValue: 'TRUE',
disabled: true,
}
}
},
{
label: '跳过任务生成记录',
field: 'directCreateRecord',
dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string',
isTable: false,
isForm:false,
isTableForm:false,
isDetail:false,
1 year ago
sort: 'custom',
table: {
width: 150
},
form: {
component: 'Switch',
value: requestsettingData.directCreateRecord,
componentProps: {
inactiveValue: 'FALSE',
activeValue: 'TRUE',
disabled: true,
}
}
},
{
label: '操作',
field: 'action',
isDetail: false,
isForm: false,
table: {
12 months ago
width: 300,
1 year ago
fixed: 'right'
},
}
]))
12 months ago
function validateTaxRate(rule, value, callback) {
if (value>0) {
callback()
}else{
callback(new Error('税率必须大于0'))
}
}
1 year ago
//表单校验
export const SupplierinvoiceRequestMainRules = reactive({
12 months ago
taxRate: [
required,
{ validator:validateTaxRate, message: '税率必须大于0', trigger: 'blur'}
],
invoiceTime: [
{ required: true, message: '请选择发票日期', trigger: 'change' }
],
1 year ago
supplierCode: [
{ required: true, message: '请选择供应商代码', trigger: 'change' }
],
departmentCode: [
{ required: true, message: '请输入部门', trigger: 'blur' }
],
autoCommit: [
{ required: true, message: '请选择是否自动提交', trigger: 'change' }
],
autoAgree: [
{ required: true, message: '请选择是否自动通过', trigger: 'change' }
],
autoExecute: [
{ required: true, message: '请选择是否自动执行', trigger: 'change' }
],
directCreateRecord: [
{ required: true, message: '请选择是否跳过任务直接生成记录', trigger: 'change' }
],
businessType: [
{ required: true, message: '请输入业务类型', trigger: 'blur' }
],
remark: [
{ max: 50, message: '不得超过50个字符', trigger: 'blur' }
],
})
/**
* @returns {Array}
*/
export const SupplierinvoiceRequestDetail = useCrudSchemas(reactive<CrudSchema[]>([
{
label: '订单号',
field: 'poNumber',
form: {
componentProps: {
disabled: true
}
},
table: {
width: 150
},
tableForm:{
disabled: true
}
},
1 year ago
{
label: '订单行',
field: 'poLine',
table: {
width: 150
},
1 year ago
form: {
// labelMessage: '信息提示说明!!!',
componentProps: {
isSearchList: true,
searchListPlaceholder: '请选择订单行',
searchField: 'poLine',
searchTitle: '待开票列表',
1 year ago
searchAllSchemas: PurchaseReceiptOrReturnRecordDetail.allSchemas,
searchPage: supplierinvoiceRequestDetailApi.getPoNumberPoLineInfo,
searchCondition: [
{
key: 'supplierCode',
value: 'supplierCode',
message: '请填供应商信息!',
isMainValue: true
}
]
1 year ago
}
},
tableForm: {
multiple:true,//多选
1 year ago
isInpuFocusShow: true,
searchListPlaceholder: '请选择订单行',
searchField: 'poLine',
searchTitle: '待开票列表',
1 year ago
searchAllSchemas: PurchaseReceiptOrReturnRecordDetail.allSchemas,
searchPage: supplierinvoiceRequestDetailApi.getPoNumberPoLineInfo,
1 year ago
searchCondition: [
{
key: 'supplierCode',
value: 'supplierCode',
message: '请填供应商信息!',
isMainValue: true
}
]
1 year ago
}
},
{
12 months ago
label: '物流单据号',
field: 'recvBillNum',
12 months ago
hiddenInMain:true,
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
},
tableForm:{
disabled: true
}
1 year ago
},
{
label: '单据类型',
field: 'billType',
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
},
tableForm:{
disabled: true
}
1 year ago
},
{
label: '发货单号',
field: 'asnBillNum',
1 year ago
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
1 year ago
},
tableForm:{
disabled: true
}
},
{
label: '供应商代码',
field: 'supplierCode',
12 months ago
hiddenInMain:true,
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
},
tableForm:{
disabled: true
1 year ago
}
1 year ago
},
{
label: '合同价格',
1 year ago
field: 'singlePrice',
table: {
width: 150
},
1 year ago
form: {
component: 'InputNumber',
1 year ago
componentProps: {
min: 0,
precision: 6,
}
1 year ago
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
1 year ago
}
},
{
label: '采购价格',
field: 'purchasePrice',
table: {
width: 150
},
1 year ago
form: {
1 year ago
componentProps: {
disabled: true
}
1 year ago
},
tableForm:{
disabled: true
1 year ago
}
},
{
label: '差额',
field: 'differencePrice',
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
},
tableForm:{
type: 'slot',
disabled: true
}
},
12 months ago
{
label: '未税差额',
field: 'untaxedDifference',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 0,
precision: 6,
}
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
}
},
{
label: '含税差额',
field: 'taxInclusiveDifference',
table: {
width: 150
},
form: {
component: 'InputNumber',
componentProps: {
min: 0,
precision: 6,
}
},
tableForm: {
type: 'InputNumber',
min: 0,
precision: 6,
}
},
1 year ago
{
label: '可开票数量',
field: 'invoicableQuantity',
1 year ago
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
1 year ago
},
tableForm:{
disabled: true
1 year ago
}
},
{
label: '物料代码',
field: 'itemCode',
1 year ago
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
1 year ago
},
tableForm:{
disabled: true
}
},
{
label: '物料名称',
field: 'itemName',
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
},
tableForm:{
disabled: true
}
},
{
label: '货币',
field: 'currency',
table: {
width: 150
},
form: {
componentProps: {
disabled: true
}
},
tableForm:{
disabled: true
1 year ago
}
},
{
label: '备注',
field: 'remark',
12 months ago
hiddenInMain:true,
1 year ago
},
{
label: '创建时间',
field: 'createTime',
12 months ago
hiddenInMain:true,
isTable: false,
table: {
width: 150
},
1 year ago
formatter: dateFormatter,
detail: {
dateFormat: 'YYYY-MM-DD HH:mm:ss'
},
isTableForm: false,
isForm: false
},
{
label: '创建者',
field: 'creator',
12 months ago
hiddenInMain:true,
1 year ago
isTableForm: false,
12 months ago
isTable:false,
isForm: false,
table: {
width: 150
},
1 year ago
},
{
label: '操作',
field: 'action',
isDetail: false,
isForm: false,
table: {
width: 150,
fixed: 'right'
},
12 months ago
hiddenInMain:true,
1 year ago
isTableForm: false,
}
]))
//表单校验
export const SupplierinvoiceRequestDetailRules = reactive({
1 year ago
})