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.
3790 lines
164 KiB
3790 lines
164 KiB
// 通用配置
|
|
const orderWidth = 180
|
|
import zh from '@/lang/zh'
|
|
let _Public = zh.ColumsPublic // 字段通用
|
|
let _Names = zh.ColumsNames // 业务字段
|
|
let _Dashboard = zh.ColumsDashboard // 接口监控看板字段
|
|
|
|
// 基础信息数据管理
|
|
/**/
|
|
// 物品基础信息
|
|
export const ItemBasic = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemName, prop: "name" },
|
|
{ label: _Names.itemDesc1, prop: "desc1" },
|
|
{ label: _Names.itemDesc2, prop: "desc2" },
|
|
{ label: _Names.configuration, prop: "configuration" },
|
|
{ label: _Names.basicUom, prop: "basicUom" },
|
|
{ label: _Names.category, prop: "category" },
|
|
{ label: _Public.status, prop: "status", type: "filter", filters: "itemStatus" },
|
|
{ label: _Public.type, prop: 'type', type: "filter", filters: "ItemTypeBasic" },
|
|
{ label: _Names.abcClass, prop: 'abcClass', type: "filter", filters: "abcClass" },
|
|
{ label: _Names.canMake, prop: 'canMake', type: "filter", filters: "whetherOrNot" },
|
|
{ label: _Names.canBuy, prop: 'canBuy', type: "filter", filters: "whetherOrNot" },
|
|
{ label: _Names.canOutsourcing, prop: 'canOutsourcing', type: "filter", filters: "whetherOrNot" },
|
|
{ label: _Names.isRecycled, prop: 'isRecycled', type: "filter", filters: "whetherOrNot" },
|
|
{ label: _Names.isPhantom, prop: "isPhantom", type: "filter", filters: "whetherOrNot" },
|
|
// { label: _Names.productLine, prop: 'productLine' },
|
|
// { label: _Names.elevel, prop: 'elevel' },
|
|
// { label: _Names.color, prop: "color" },
|
|
// { label: _Names.group, prop: "group" },
|
|
{ label: _Names.stdPackQty, prop: "stdPackQty",isNumber:true },
|
|
// { label: _Names.project, prop: "project" },
|
|
// { label: _Names.version, prop: "version" },
|
|
// { label: _Names.eco, prop: "eco" },
|
|
{ label: _Names.validity, prop: "validity" },
|
|
{ label: _Names.validityUnit, prop: "validityUnit", type: "filter", filters: "validityUnit" },
|
|
{ label: _Names.manageType, prop: "manageType", type: "filter", filters: "manageType" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
// {
|
|
// label: _Public.operation,
|
|
// type:"buttonOperation",
|
|
// buttonText:'编辑|删除',
|
|
// buttonName:'edit|delete',
|
|
// fixed: "right"
|
|
// },
|
|
]
|
|
|
|
// 物品质量信息
|
|
export const ItemQuality = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: _Names.supplierCode, prop: 'supplierCode' },
|
|
{ label: _Names.supplierName, prop: 'supplierName',showProp:true },
|
|
{ label: _Public.status, prop: 'status', type: "filter", filters: "openToClose" },
|
|
{ label: _Names.inspectType, prop: 'inspectType', type: "filter", filters: "inspectType" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 物品分类信息
|
|
export const ItemCategory = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.categoryCode, prop: 'categoryCode' },
|
|
{ label: _Names.categoryValue, prop: 'value' },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 物品包装信息
|
|
export const ItemPack = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: _Names.supplierCode, prop: 'supplierCode' },
|
|
{ label: _Names.supplierName, prop: 'supplierName',showProp:true },
|
|
{ label: _Names.packCode, prop: "packCode", },
|
|
{ label: _Names.packName, prop: "packName" },
|
|
{ label: _Names.packType, prop: "packType" },
|
|
{ label: _Names.packBasicUom, prop: "basicUom" },
|
|
{ label: _Names.packQty, prop: "qty",isNumber:true },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type:'dateTime' },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type:'dateTime' },
|
|
]
|
|
|
|
// 物品质检标准信息
|
|
export const AQL = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: _Names.supplierCode, prop: 'supplierCode' },
|
|
{ label: _Names.supplierName, prop: 'supplierName',showProp:true },
|
|
{ label: _Names.abcClass, prop: 'abcClass', type: "filter", filters: "abcClass" },
|
|
{ label: _Names.ceilingQty, prop: 'ceilingQty',isNumber:true },
|
|
{ label: _Names.floorQty, prop: "floorQty",isNumber:true},
|
|
{ label: _Names.isUsePercent, prop: 'isUsePercent', type: "filter", filters: "whetherOrNot" },
|
|
{ label: _Names.samplePercent, prop: 'samplePercent' },
|
|
{ label: _Names.sampleQty, prop: 'sampleQty',isNumber:true },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type:'dateTime' },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type:'dateTime' },
|
|
]
|
|
|
|
// 位置码
|
|
export const PositionCode = [
|
|
{
|
|
label: '位置码',
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "位置码类型", prop: 'type', type: "filter", filters: "positionCodeType" },
|
|
{ label: _Names.itemCode, prop: "partCode" },
|
|
{ label: _Names.itemName, prop: "partName" },
|
|
{ label: _Names.itemDesc1, prop: "partDesc" },
|
|
{ label: _Names.basicUom, prop: "basicUom" },
|
|
{ label: "箱数/数量", prop: "stdPackQty",isNumber:true },
|
|
{ label: "目标库位代码", prop: "locationCode" },
|
|
{ label: "目标库位名称", prop: "locationName" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 半成品/成品收容数 完工转储包装数
|
|
export const ItemContainer = [
|
|
{
|
|
label: "收容代码",
|
|
prop: "containerCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "收容代码描述", prop: "containerName" },
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: '转储标包数量', prop: "qty" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 物品清单信息
|
|
export const Bom = [
|
|
{
|
|
label: _Names.productCode,
|
|
prop: "product",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.productName, prop: "productName",showProp:true },
|
|
{ label: _Names.productDesc1, prop: "productDesc1",showProp:true },
|
|
{ label: _Names.componentCode, prop: "component" },
|
|
{ label: _Names.componentName, prop: "componentName",showProp:true },
|
|
{ label: _Names.componentDesc1, prop: "componentDesc1",showProp:true },
|
|
{ label: _Names.componentQty, prop: 'componentQty',isNumber:true },
|
|
// { label: _Names.componentUom, prop: 'componentUom' },
|
|
// { label: _Names.erpOp, prop: "erpOp" },
|
|
// { label: _Names.mfgOp, prop: "mfgOp" },
|
|
// { label: _Names.distributionType, prop: "distributionType", type: "filter", filters: "distributionType" },
|
|
// { label: _Names.truncType, prop: "truncType", type: "filter", filters: "truncType" },
|
|
// { label: _Names.plannedSplitRule, prop: "plannedSplitRule", type: "filter", filters: "plannedSplitRule" },
|
|
{ label: _Names.layer, prop: "layer" },
|
|
{ label: _Public.beginTime, prop: "beginTime", type: "dateTime" },
|
|
{ label: _Public.endTime, prop: "endTime", type: "dateTime" },
|
|
{ label: _Public.remark, prop: 'remark' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 物品清单信息 - 详情【父物品信息、子物品信息】
|
|
export const BomInner = [
|
|
{
|
|
label: _Names.productCode,
|
|
prop: "product",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.productName, prop: "productName",showProp:true },
|
|
{ label: _Names.productDesc1, prop: "productDesc1",showProp:true },
|
|
{ label: _Names.componentCode, prop: "component" },
|
|
{ label: _Names.componentName, prop: "componentName",showProp:true },
|
|
{ label: _Names.componentDesc1, prop: "componentDesc1",showProp:true },
|
|
{ label: _Names.componentQty, prop: 'componentQty',isNumber:true },
|
|
{ label: _Names.layer, prop: "layer" },
|
|
{ label: _Public.beginTime, prop: "beginTime", type:'dateTime' },
|
|
{ label: _Public.endTime, prop: "endTime", type:'dateTime' },
|
|
{ label: _Public.remark, prop: 'remark' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type:'dateTime' },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type:'dateTime' },
|
|
]
|
|
|
|
// 客户信息
|
|
export const Customer = [
|
|
{
|
|
label: _Names.customerCode,
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.customerName, prop: "name" },
|
|
{ label: _Names.customerShortName, prop: "shortName" },
|
|
{ label: _Names.address, prop: "address" },
|
|
{ label: _Names.contact, prop: "contacts" },
|
|
{ label: _Names.phone, prop: "phone" },
|
|
{ label: _Names.fax, prop: "fax" },
|
|
{ label: _Names.postID, prop: "postID" },
|
|
{ label: _Names.country, prop: "country" },
|
|
{ label: _Names.city, prop: "city" },
|
|
{ label: _Names.currency, prop: "currency" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 客户物品信息
|
|
export const CustomerItem = [
|
|
{
|
|
label: _Names.customerCode,
|
|
prop: "customerCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.customerItemCode, prop: "customerItemCode" },
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.customerPackQty, prop: "customerPackQty",isNumber:true },
|
|
{ label: _Names.customerPackUom, prop: "customerPackUom", width:160 },
|
|
{ label: _Public.beginTime, prop: "beginTime", type: "dateTime" },
|
|
{ label: _Public.endTime, prop: "endTime", type: "dateTime" },
|
|
{ label: _Public.remark, prop: 'remark' },
|
|
{ label: _Names.version, prop: 'version' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
|
|
]
|
|
|
|
// 客户地址信息
|
|
export const CustomerAddress = [
|
|
{ label: _Names.customerCode,
|
|
prop: "customerCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.customerAdrCode, prop: "code" },
|
|
{ label: _Names.customerAdrName, prop: "name" },
|
|
{ label: _Names.locationCode, prop: "locationCode" },
|
|
{ label: _Names.city, prop: "city" },
|
|
{ label: _Names.address, prop: "address" },
|
|
{ label: _Names.contact, prop: "contact" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.description, prop: "desc" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 客户项目信息
|
|
export const Project = [
|
|
{
|
|
label: _Names.projectCode,
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.projectName, prop: "name" },
|
|
{ label: _Names.customerCode, prop: "customerCode" },
|
|
{ label: _Public.beginTime, prop: "beginTime", type: "dateTime" },
|
|
{ label: _Public.endTime, prop: "endTime", type: "dateTime" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 供应商信息
|
|
export const Supplier = [
|
|
{
|
|
label: _Names.supplierCode,
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.supplierName, prop: "name" },
|
|
{ label: "简称", prop: "shortName" },
|
|
{ label: "税率", prop: "taxRate" },
|
|
{ label: "状态", prop: "isActive", type: "filter", filters: "openToCloseBit" },
|
|
{ label: "类型", prop: "type", type: "filter", filters: "supplierType" },
|
|
{ label: "联系人", prop: "contacts" },
|
|
{ label: "电话", prop: "phone" },
|
|
{ label: "传真", prop: 'fax' },
|
|
{ label: "邮编", prop: 'postID' },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "地址", prop: 'address' },
|
|
{ label: "国家", prop: 'country' },
|
|
{ label: "城市", prop: 'city' },
|
|
{ label: "银行", prop: 'bank' },
|
|
{ label: "货币", prop: 'currency' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 供应商物品信息
|
|
export const SupplierItem = [
|
|
{
|
|
label: _Names.supplierCode,
|
|
prop: 'supplierCode',
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "供应商物品代码", prop: "supplierItemCode" },
|
|
{ label: "供应商物品名称", prop: "itemName" },
|
|
{ label: _Names.supplierName, prop: 'supplierName',showProp:true },
|
|
{ label: "供应商简称", prop: "supplierSimpleName" },
|
|
// { label: "版本", prop: "version" },
|
|
// { label: "供应商包装计量单位", prop: "supplierPackUom" },
|
|
{ label: "供应商包装数量", prop: "supplierPackQty",isNumber:true },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 供应商时间窗口
|
|
export const SupplierTimeWindow = [
|
|
{
|
|
label: _Names.supplierCode,
|
|
prop: 'supplierCode',
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.supplierName, prop: "supplierName" },
|
|
{ label: "当前星期", prop: "week", type: "filter", filters: "week" },
|
|
{ label: "时间窗口", prop: "timeSlot" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 收货口信息
|
|
export const Dock = [
|
|
{
|
|
label: "收货口代码",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: "收货口名称", prop: 'name' },
|
|
{ label: "默认库位代码", prop: "defaultLocationCode" },
|
|
{ label: _Public.description, prop: "description" },,
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 区域信息
|
|
export const Area = [
|
|
{
|
|
label: "区域代码",
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "区域名称", prop: "name" },
|
|
{ label: "是否功能区", prop: "isFunctional", type: "filter", filters: "whetherOrNot" },
|
|
// { label: "类型", prop: "areaType", type: "filter", filters: "areaType" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 库位组信息
|
|
export const LocationGroup = [
|
|
{
|
|
label: "库位组代码",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: "库位组名称", prop: 'name' },
|
|
{ label: "区域代码", prop: "areaCode" },
|
|
{ label: "库位组类型", prop: "groupType", type: "filter", filters: "locationType" },
|
|
{ label: "默认库存状态", prop: "defaultInventoryStatus", type: "filter", filters: "inventoryStage" },
|
|
// { label: "拣料优先级", prop: "pickPriority" },
|
|
// { label: "溢流库位组", prop: "overflowLocationGroup" },
|
|
{ label: "是否混物品", prop: "enableMixItem", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否混批次", prop: "enableMixLot", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否混状态", prop: "enableMixStatus", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否负库存", prop: "enableNegative", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否保留零库存", prop: "enableKeepZero", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否动态盘点", prop: "enableOpportunityCount", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否领料", prop: "enablePick", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否过量领料", prop: "enableOverPick", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否整包存储", prop: "enableWholeStore", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否散件存储", prop: "enableBreakStore", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否发出", prop: "enableShip", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否接收", prop: "enableReceive", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否退货给供应商", prop: "enableReturnToSupplier", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否接收客户退货", prop: "enableReturnFromCustomer", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否拆箱", prop: "enableSplitBox", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否拆托", prop: "enableSplitPallet", type: "filter", filters: "whetherOrNot" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 工作组信息
|
|
export const WorkGroup = [
|
|
{
|
|
label: "工作组代码",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: "工作组名称", prop: 'name' },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 库位信息
|
|
export const Location = [
|
|
{
|
|
label: _Names.locationCode,
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: _Names.locationName, prop: "name" },
|
|
{ label: "区域代码", prop: "areaCode" },
|
|
{ label: "库位组代码", prop: "locationGroupCode" },
|
|
{ label: "工作组代码", prop: "workGroupCode" },
|
|
{ label: "库位类型", prop: "type", type: "filter", filters: "locationType" },
|
|
{ label: _Names.locationErpCode, prop: "erpLocationCode" },
|
|
{ label: "默认库存状态", prop: "defaultInventoryStatus", type: "filter", filters: "inventoryStage", width:'130px' },
|
|
{ label: "货架号", prop: "shelfCode" },
|
|
{ label: "行号", prop: "rowCode" },
|
|
{ label: "列号", prop: "columnCode" },
|
|
{ label: "拣料优先级", prop: "pickPriority" },
|
|
{ label: "拣料顺序", prop: "pickOrder" },
|
|
{ label: "是否混物品", prop: "enableMixItem", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否混批次", prop: "enableMixLot", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否混状态", prop: "enableMixStatus", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否负库存", prop: "enableNegative", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否保留零库存", prop: "enableKeepZero", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否动态盘点", prop: "enableOpportunityCount", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否领料", prop: "enablePick", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否过量领料", prop: "enableOverPick", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否整包存储", prop: "enableWholeStore", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否散件存储", prop: "enableBreakStore", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否发出", prop: "enableShip", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否接收", prop: "enableReceive", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否退货给供应商", prop: "enableReturnToSupplier", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否接收客户退货", prop: "enableReturnFromCustomer", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否拆箱", prop: "enableSplitBox", type: "filter", filters: "whetherOrNot" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 库位零件关系
|
|
export const ItemStoreRelation = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "存储关系类型", prop: "storeRelationType", type: "filter", filters: "storeRelationType" },
|
|
{ label: "库位", prop: "storeValue" },
|
|
{ label: "是否可用", prop: "enabled", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "主存储容量", prop: "umQty",isNumber:true },
|
|
{ label: "主存储单位", prop: "storeUM" },
|
|
{ label: "次要存储容量", prop: "altUmQty" ,isNumber:true},
|
|
{ label: "次要存储单位", prop: "altUm" },
|
|
{ label: "存储单位", prop: "pramaryUM", type: "filter", filters: "pramaryUm" },
|
|
// { label: "是否定制位置", prop: "isFixed", type: "filter", filters: "whetherOrNot" },
|
|
// { label: "是否占用多库位", prop: "multiLoc", type: "filter", filters: "whetherOrNot" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 库位可用容量信息
|
|
export const InventoryLocationCapacity = [
|
|
{
|
|
label: _Names.locationCode,
|
|
prop: "locationCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "可用容量(%)", prop: "availableCapacity" },
|
|
{ label: "是否无穷大", prop: "isInfinity", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "已用容量", prop: "usedCapacity" },
|
|
{ label: "可承受过载容量", prop: "bearableOverloadCapacity" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 物品安全库存信息
|
|
export const ItemSafetyStock = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "存储关系类型", prop: "storeRelationType", type: "filter", filters: "storeRelationType" },
|
|
{ label: "存储关系代码", prop: "storeValue" },
|
|
{ label: "最大库存", prop: "maxStock" },
|
|
{ label: "最小库存", prop: "minStock" },
|
|
{ label: "安全库存", prop: "safetyStock" },
|
|
// { label: "补料点", prop: "feedLine" },
|
|
// { label: "补料数量", prop: "feedQty",isNumber:true },
|
|
// { label: "补料单位", prop: "feedUM" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 事务类型信息
|
|
export const TransactionType = [
|
|
{
|
|
label: "事务ID",
|
|
prop: "id",
|
|
fixed: "left",
|
|
type: "name",
|
|
showProp: true
|
|
},
|
|
{ label: "事务类型", prop: "transType", type: "filter", filters: "TransTypeBase" },
|
|
{ label: "事务子类型", prop: "transSubType", type: "filter", filters: "transSubType" },
|
|
{ label: "入库库位类型", prop: 'inLocationTypes', type: "filterList", filters: "locationType", width: "300px" },
|
|
{ label: "出库库位类型", prop: 'outLocationTypes', type: "filterList", filters: "locationType", width: "300px" },
|
|
{ label: "物品状态", prop: 'itemStatuses', type: "filterList", filters: "ItemStatus" },
|
|
{ label: "物品类型", prop: 'itemTypes', type: "filterList", filters: "ItemType" },
|
|
{ label: "来源库存状态", prop: 'outInventoryStatuses', type: "filterList", filters: "inventoryStage" },
|
|
{ label: "目标库存状态", prop: 'inInventoryStatuses', type: "filterList", filters: "inventoryStage" },
|
|
{ label: "是否可用", prop: 'enabled', type: "filter", filters: "whetherOrNot" },
|
|
// { label: "入库库区列表", prop: 'inLocationAreas', type: "filterList", filters: "inventoryStage" },
|
|
// { label: "出库库区列表", prop: 'outLocationAreas', type: "filterList", filters: "inventoryStage" },
|
|
{ label: "入库库区列表", prop: 'inLocationAreas' },
|
|
{ label: "出库库区列表", prop: 'outLocationAreas' },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 库存开账
|
|
export const InventoryBilling = [
|
|
{ label: _Names.itemCode, prop: "itemCode", type: "name" },
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "TYRP储位代码", prop: "erpLocationCode",width:"180px" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 车间信息
|
|
export const Workshop = [
|
|
{
|
|
label: "车间代码",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: "车间名称", prop: "name" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 生产线信息
|
|
export const ProductionLine = [
|
|
{ label: "生产线代码", prop: "code", fixed: "left", type: "name" },
|
|
{ label: "生产线名称", prop: 'name' },
|
|
{ label: "生产线类型", prop: "productionLineType", type: "filter", filters: "productionLineType" },
|
|
{ label: "生产库位代码", prop: "locationCode" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 生产线零件关系
|
|
export const ProductionLineItem = [
|
|
{ label: _Names.itemCode, prop: "itemCode", type: "name" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "生产线代码", prop: "prodLineCode" },
|
|
{ label: "[来源]成品/半成品库位", prop: "productLocationCodeListJson", type:"showDetail", isJson:true,showProp:true,width:'180px'},
|
|
{ label: "[来源]原材料库位", prop: "rawLocationCodeListJson", type:"showDetail", isJson:true,showProp:true },
|
|
{ label: "[完工]线边库位", prop: "wipLocationCodeListJson", type:"showDetail", isJson:true,showProp:true },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 工作中心信息
|
|
export const WorkCenter = [
|
|
{
|
|
label: "编号",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: "生产线", prop: "productionLineCode" },
|
|
{ label: "工作中心类型", prop: "type", type: "filter", filters: "workCenterType" },
|
|
{ label: "名称", prop: "name" },
|
|
{ label: "工作中心描述", prop: "description" },
|
|
{ label: "原料库位", prop: "rawLocationCode" },
|
|
{ label: "成品库位", prop: "productLocationCode" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 班组信息
|
|
export const Team = [
|
|
{
|
|
label: "编号",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: "名称", prop: "name" },
|
|
{ label: "成员", prop: "members" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 班次信息
|
|
export const Shift = [
|
|
{
|
|
label: "班次代码",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: "班次名称", prop: "name" },
|
|
{ label: "结束到下一天", prop: "endAtNextDay", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "开始时间", prop: "beginTime", type: "dateTime" },
|
|
{ label: "结束时间", prop: "endTime", type: "dateTime" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 作业指导书信息
|
|
export const ItemGuideBook = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "步骤", prop: "step" },
|
|
{ label: "图片存储名称", prop: "pictureBlobName" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 账期信息
|
|
export const accountPeriodNote = [
|
|
{
|
|
label: "代码",
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "启日", prop: "beginTime", type:'dateTime' },
|
|
{ label: "迄日期", prop: "endTime", type:'dateTime' },
|
|
{ label: "最后异动时间", prop: "convertToTime", type:'dateTime' },
|
|
{ label: "名称", prop: "name" },
|
|
{ label: "年", prop: "year" },
|
|
{ label: "月", prop: "month" },
|
|
{ label: "转换生效时间", prop: "convertToTime", type:'dateTime' },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 字典信息
|
|
export const Dict = [
|
|
{
|
|
label: "字典编号",
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "字典名称", prop: "name" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 标准成本价格单
|
|
export const StdCostPriceSheet = [
|
|
{
|
|
label: _Names.itemCode,
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "itemCode",
|
|
width:"200px"
|
|
},
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "标准成本价格", prop: "stdCostPrice",type:"price" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 采购价格单
|
|
export const PurchasePriceSheet = [
|
|
{
|
|
label: _Names.itemCode,
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "itemCode",
|
|
width:"200px"
|
|
},
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "供应商编号", prop: "supplierCode" },
|
|
{ label: "采购价格", prop: "purchasePrice",type:"price" },
|
|
{ label: "价格单描述", prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 销售价格单
|
|
export const SalePriceSheet = [
|
|
{
|
|
label: _Names.itemCode,
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "itemCode",
|
|
width:"200px"
|
|
},
|
|
{ label: _Names.itemName, prop: "item_nameFromFE",showProp:true },
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "客户代码", prop: "customerCode" },
|
|
{ label: "销售价格", prop: "salePrice",type:"price" },
|
|
{ label: "价格单描述", prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 分类信息
|
|
export const Category = [
|
|
{
|
|
label: "分类代码",
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "分类名称", prop: "name" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 计量单位信息
|
|
export const Uom = [
|
|
{
|
|
label: "计量单位编号",
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "计量单位名称", prop: "name" },
|
|
{ label: "类型", prop: "type", type: "filter", filters: "uomType" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 日历信息
|
|
export const Calendar = [
|
|
{
|
|
label: "模块",
|
|
prop: "module",
|
|
type: "name",
|
|
fixed: "left"
|
|
},
|
|
{ label: "状态", prop: "status", type: "filter", filters: "calendarStatus" },
|
|
{ label: "开始时间", prop: "beginTime",type: "dateTime" },
|
|
{ label: "结束时间", prop: "endTime", type: "dateTime" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 配置信息
|
|
export const Configuration = [
|
|
{
|
|
label: "键",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "key"
|
|
},
|
|
{ label: "值", prop: "value" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 文档信息
|
|
export const documentBasic = [
|
|
{
|
|
label: "编码",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code",
|
|
width:"200px"
|
|
},
|
|
{ label: "名称", prop: "name" },
|
|
{ label: _Public.description, prop: "description" },
|
|
{ label: "事务类型", type: "filter", prop: "transactionType", filters: "TransTypeBaseForStr" },
|
|
{ label: "单号前缀", prop: "numberPrefix" },
|
|
{ label: "单号格式", prop: "numberFormat" },
|
|
{ label: "单号流水长度", prop: "numberSerialLength" },
|
|
{ label: "单号分隔符", prop: "numberSeparator" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 原料管理
|
|
/**/
|
|
// 采购订单信息
|
|
export const PurchaseOrder = [
|
|
{
|
|
label: "采购订单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: _Names.supplierCode, prop: "supplierCode" },
|
|
{ label: _Names.supplierName, prop: "supplierName" },
|
|
{ label: _Names.supplierAddress, prop: "supplierAddress",showProp: true },
|
|
{ label: _Public.status, prop: 'orderStatus', type: "filter", filters: "openToClose" },
|
|
{ label: _Public.worker, prop: 'worker' },
|
|
{ label: "订单类型", prop: 'poType' },
|
|
{ label: "订单日期", prop: 'orderDate',type: "dateTime" },
|
|
{ label: "截止日期", prop: 'dueDate',type: "dateTime" },
|
|
{ label: _Public.activeDate, prop: "activeDate", type: "dateTime" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 采购订单信息 (有关闭订单行)
|
|
export const PurchaseOrderHigher = [
|
|
{
|
|
label: "采购订单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: _Names.supplierCode, prop: "supplierCode" },
|
|
{ label: _Names.supplierName, prop: "supplierName" },
|
|
{ label: _Names.supplierAddress, prop: "supplierAddress",showProp: true },
|
|
{ label: _Public.status, prop: 'orderStatus', type: "filter", filters: "openToClose" },
|
|
{ label: _Public.worker, prop: 'worker' },
|
|
{ label: "订单类型", prop: 'poType' },
|
|
{ label: "订单日期", prop: 'orderDate',type: "dateTime" },
|
|
{ label: "截止日期", prop: 'dueDate',type: "dateTime" },
|
|
{ label: _Public.activeDate, prop: "activeDate", type: "dateTime" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 供应商发货通知
|
|
export const SupplierAsn = [
|
|
{
|
|
label: "发货单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "订单号", prop: "poNumber",width: orderWidth },
|
|
{ label: _Names.supplierCode, prop: "supplierCode" },
|
|
{ label: _Names.supplierName, prop: "supplierName" },
|
|
{ label: _Names.supplierAddress, prop: "supplierAddress",showProp: true },
|
|
{ label: "要求到货日期", prop: "planArriveDate", type: "dateTime" },
|
|
{ label: "发货日期", prop: "shipDate",type: "dateTime" },
|
|
{ label: _Public.worker, prop: 'worker' },
|
|
{ label: "到期日期", prop: 'dueDate', type: "dateTime" },
|
|
{ label: "时间窗口", prop: 'timeWindow' },
|
|
{ label: "筹措员代码", prop: 'planUserCode' },
|
|
{ label: _Public.activeDate, prop: "activeDate", type: "dateTime" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 到货请求
|
|
export const PurchaseReceiptRequest = [
|
|
{
|
|
label: "到货单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "请求状态", prop: "requestStatus", type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "订单号", prop: "poNumber",width: orderWidth },
|
|
{ label: "发货单号", prop: 'asnNumber',width: orderWidth },
|
|
{ label: _Names.supplierCode, prop: "supplierCode" },
|
|
{ label: _Names.supplierName, prop: "supplierName" },
|
|
{ label: _Names.supplierAddress, prop: "supplierAddress",showProp: true },
|
|
{ label: "计划到货日期", prop: "planArriveDate", type: "dateTime" },
|
|
{ label: _Public.worker, prop: 'worker' },
|
|
{ label: "时间窗口", prop: 'timeWindow' },
|
|
{ label: _Public.activeDate, prop: "activeDate", type: "dateTime" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 采购收货任务
|
|
export const PurchaseReceiptJob = [
|
|
{
|
|
label: "收货任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: _Public.status, prop: "jobStatus", type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "发货单号", prop: "asnNumber", width: orderWidth },
|
|
{ label: "到货单号", prop: "purchaseReceiptRequestNumber", width: orderWidth },
|
|
{ label: "采购订单号", prop: "poNumber", width: orderWidth },
|
|
{ label: _Names.supplierCode, prop: "supplierCode" },
|
|
{ label: _Names.supplierName, prop: "supplierName" },
|
|
{ label: _Names.supplierAddress, prop: "supplierAddress",showProp: true },
|
|
{ label: "要求到货日期", prop: "planArriveDate" ,type: "dateTime" },
|
|
{ label: "完成时间", prop: "completeTime",type: "dateTime" },
|
|
{ label: _Public.worker, prop: 'worker' },
|
|
{ label: "承接者用户名", prop: 'acceptUserName' },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "时间窗口", prop: 'timeWindow' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 采购收货记录
|
|
export const PurchaseReceiptNote = [
|
|
{
|
|
label: "收货单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth,
|
|
},
|
|
{ label: "发货单号", prop: "asnNumber", width:orderWidth },
|
|
{ label: "到货单号", prop: "purchaseReceiptRequestNumber", width:orderWidth },
|
|
{ label: "采购订单号", prop: "poNumber", width:orderWidth },
|
|
{ label: "供应商代码", prop: "supplierCode" },
|
|
{ label: "供应商名称", prop: "supplierName" },
|
|
{ label: "供应商地址", prop: "supplierAddress" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "收货时间", prop: 'receiveTime',type: "dateTime" },
|
|
{ label: "任务代码", prop: 'jobNumber' },
|
|
{ label: _Public.worker, prop: 'worker' },
|
|
{ label: _Public.activeDate, prop: "activeDate", type: "dateTime" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 采购收货记录-详情【合格品收货明细】
|
|
export const qualifiedInfo = [
|
|
{
|
|
label: "检验单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态",prop: "purchaseReceiptInspectStatus", type: "filter", filters: "enumPurchaseReceiptInspectStatus" },
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "数量", prop: "qty",isNumber:true },
|
|
{ label: "物品单位", prop: "uom" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "到货日期", prop: "arriveDate",type: "dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "订单号", prop: "poNumber" },
|
|
{ label: "订单行", prop: "poLine" },
|
|
{ label: "推荐箱码", prop: "recommendPackingCode" },
|
|
{ label: "实际箱码", prop: "handledPackingCode" },
|
|
// { label: _Names.recommendErpCode, prop: "recommendToLocationErpCode" },
|
|
// { label: _Names.handledErpCode, prop: "handledToLocationErpCode" },
|
|
{ label: "推荐数量", prop: "recommendQty",isNumber:true },
|
|
{ label: "实际数量", prop: "handledQty",isNumber:true },
|
|
// { label: "推荐批次到货日期", prop: "recommendArriveDate",type: "dateTime" },
|
|
// { label: "实际批次到货日期", prop: "handledArriveDate",type: "dateTime" },
|
|
{ label: "生产时间", prop: "produceDate",type: "dateTime" },
|
|
{ label: "推荐批次生产时间", prop: "recommendProduceDate",type: "dateTime" },
|
|
{ label: "实际批次生产时间", prop: "handledProduceDate",type: "dateTime" },
|
|
// { label: "推荐批次过期时间", prop: "recommendExpireDate",type: "dateTime" },
|
|
// { label: "实际批次过期时间", prop: "handledExpireDate",type: "dateTime" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "推荐库位", prop: "recommendToLocationCode" },
|
|
{ label: "实际库位", prop: "handledToLocationCode" },
|
|
// { label: "库区", prop: "locationArea" },
|
|
// { label: "推荐库区", prop: "recommendToLocationArea" },
|
|
// { label: "实际库区", prop: "handledToLocationArea" },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
// { label: "实际库位组", prop: "handledToLocationGroup" },
|
|
{ label: "标包数量", prop: "stdPackQty" ,isNumber:true},
|
|
// { label: "推荐批次排序", prop: "recommendLot" },
|
|
// { label: "实际批次排序", prop: "handledLot" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
// { label: "推荐批次供应商批次", prop: "recommendSupplierBatch" },
|
|
// { label: "实际批次供应商批次", prop: "handledSupplierBatch" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "目检照片Json", prop: 'inspectPhotoJson' },
|
|
{ label: "不合格原因代码", prop: 'failedReason' },
|
|
{ label: "不合格原因说明", prop: 'failedReason', type: "filter", filters: "getDict" , dictType:"UnqualifiedReason" },
|
|
{ label: "质量缺陷", prop: "massDefect" },
|
|
{ label: "供应商包装计量单位", prop: "supplierPackUom" },
|
|
{ label: "供应商包装数量", prop: "supplierPackQty",isNumber:true },
|
|
]
|
|
|
|
// 采购收货记录-详情【不合格品收货明细】
|
|
export const unqualifiedInfo = [
|
|
{
|
|
label: "检验单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态",prop: "purchaseReceiptInspectStatus", type: "filter", filters: "enumPurchaseReceiptInspectStatus" },
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "数量", prop: "qty",isNumber:true },
|
|
{ label: "物品单位", prop: "uom" },
|
|
{ label: "推荐箱码", prop: "recommendPackingCode" },
|
|
// { label: "拆箱箱码", prop: "packingCode" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "不合格原因代码", prop: 'failedReason' },
|
|
{ label: "不合格原因说明", prop: 'failedReason', type: "filter", filters: "getDict" , dictType:"UnqualifiedReason" },
|
|
{ label: "质量缺陷", prop: "massDefect" },
|
|
{ label: "到货日期", prop: "arriveDate",type: "dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type: "dateTime" },
|
|
{ label:"查看照片",prop: 'inspectPhotoJson',type:"button", fixed: "right",tableAlign:"center",tableHeaderAlign:"center" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "订单号", prop: "poNumber" },
|
|
{ label: "订单行", prop: "poLine" },
|
|
{ label: "原箱码", prop: "fromPackingCode" },
|
|
{ label: "实际箱码", prop: "handledPackingCode" },
|
|
// { label: _Names.recommendErpCode, prop: "recommendToLocationErpCode" },
|
|
// { label: _Names.handledErpCode, prop: "handledToLocationErpCode" },
|
|
// { label: "推荐数量", prop: "recommendQty",isNumber:true },
|
|
{ label: "实际数量", prop: "handledQty" ,isNumber:true},
|
|
// { label: "推荐批次到货日期", prop: "recommendArriveDate",type: "dateTime" },
|
|
{ label: "实际批次到货日期", prop: "handledArriveDate",type: "dateTime" },
|
|
{ label: "生产时间", prop: "produceDate",type: "dateTime" },
|
|
// { label: "推荐批次生产时间", prop: "recommendProduceDate",type: "dateTime" },
|
|
// { label: "实际批次生产时间", prop: "handledProduceDate",type: "dateTime" },
|
|
// { label: "推荐批次过期时间", prop: "recommendExpireDate",type: "dateTime" },
|
|
{ label: "实际批次过期时间", prop: "handledExpireDate",type: "dateTime" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "推荐库位", prop: "recommendToLocationCode" },
|
|
{ label: "实际库位", prop: "handledToLocationCode" },
|
|
{ label: "库区", prop: "locationArea" },
|
|
// { label: "推荐库区", prop: "recommendToLocationArea" },
|
|
// { label: "实际库区", prop: "handledToLocationArea" },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
// { label: "实际库位组", prop: "handledToLocationGroup" },
|
|
{ label: "标包数量", prop: "stdPackQty",isNumber:true },
|
|
{ label: "批次排序", prop: "lot" },
|
|
// { label: "推荐批次排序", prop: "recommendLot" },
|
|
// { label: "实际批次排序", prop: "handledLot" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
// { label: "推荐批次供应商批次", prop: "recommendSupplierBatch" },
|
|
// { label: "实际批次供应商批次", prop: "handledSupplierBatch" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "目检照片Json", prop: 'inspectPhotoJson' },
|
|
{ label: "供应商包装计量单位", prop: "supplierPackUom" },
|
|
{ label: "供应商包装数量", prop: "supplierPackQty",isNumber:true },
|
|
]
|
|
|
|
// 采购收货记录-详情【收货缺料明细】
|
|
export const lackMaterialsInfo = [
|
|
{ label: _Names.itemCode, prop: "itemCode",fixed: "left" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "单据号", prop: "number" },
|
|
{ label: "状态",prop: "purchaseReceiptInspectStatus", type: "filter", filters: "enumPurchaseReceiptInspectStatus" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "订单号", prop: "poNumber" },
|
|
{ label: "订单行", prop: "poLine" },
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: "推荐箱码", prop: "recommendPackingCode" },
|
|
{ label: "实际箱码", prop: "handledPackingCode" },
|
|
// { label: _Names.recommendErpCode, prop: "recommendToLocationErpCode" },
|
|
// { label: _Names.handledErpCode, prop: "handledToLocationErpCode" },
|
|
{ label: "物品单位", prop: "uom" },
|
|
{ label: "数量", prop: "qty",isNumber:true },
|
|
// { label: "推荐数量", prop: "recommendQty",isNumber:true },
|
|
// { label: "实际数量", prop: "handledQty",isNumber:true },
|
|
{ label: "到货日期", prop: "arriveDate",type: "dateTime" },
|
|
// { label: "推荐批次到货日期", prop: "recommendArriveDate",type: "dateTime" },
|
|
// { label: "实际批次到货日期", prop: "handledArriveDate",type: "dateTime" },
|
|
{ label: "生产时间", prop: "produceDate",type: "dateTime" },
|
|
// { label: "推荐批次生产时间", prop: "recommendProduceDate",type: "dateTime" },
|
|
// { label: "实际批次生产时间", prop: "handledProduceDate",type: "dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type: "dateTime" },
|
|
// { label: "推荐批次过期时间", prop: "recommendExpireDate",type: "dateTime" },
|
|
// { label: "实际批次过期时间", prop: "handledExpireDate",type: "dateTime" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "推荐库位", prop: "recommendToLocationCode" },
|
|
{ label: "实际库位", prop: "handledToLocationCode" },
|
|
// { label: "库区", prop: "locationArea" },
|
|
// { label: "推荐库区", prop: "recommendToLocationArea" },
|
|
// { label: "实际库区", prop: "handledToLocationArea" },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
// { label: "实际库位组", prop: "handledToLocationGroup" },
|
|
{ label: "标包数量", prop: "stdPackQty",isNumber:true },
|
|
// { label: "推荐批次排序", prop: "recommendLot" },
|
|
// { label: "实际批次排序", prop: "handledLot" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
// { label: "推荐批次供应商批次", prop: "recommendSupplierBatch" },
|
|
// { label: "实际批次供应商批次", prop: "handledSupplierBatch" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "目检照片Json", prop: 'inspectPhotoJson' },
|
|
{ label: "不合格原因代码", prop: 'failedReason' },
|
|
{ label: "不合格原因说明", prop: 'failedReason', type: "filter", filters: "getDict" , dictType:"UnqualifiedReason" },
|
|
{ label: "质量缺陷", prop: "massDefect" },
|
|
{ label: "供应商包装计量单位", prop: "supplierPackUom" },
|
|
{ label: "供应商包装数量", prop: "supplierPackQty",isNumber:true },
|
|
]
|
|
|
|
// 报检单
|
|
export const InspectRequest = [
|
|
{
|
|
label: "检验单号",
|
|
prop: "inspectNumber",
|
|
fixed: "left",
|
|
type: "name",
|
|
},
|
|
{ label: _Public.status, prop: "jobStatus", type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "单据号", prop: 'number', width: orderWidth },
|
|
{ label: _Public.worker, prop: 'worker' },
|
|
{ label: "采购订单号", prop: "poNumber",width: orderWidth },
|
|
{ label: "发货单号", prop: "asnNumber",width: orderWidth },
|
|
{ label: "收货单号", prop: "receiptNumber",width: orderWidth },
|
|
{ label: "到货单号", prop: 'purchaseReceiptRequestNumber' },
|
|
{ label: "供应商代码", prop: "supplierCode" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime', type: "dateTime" },
|
|
{ label: _Public.remark, prop: 'remark' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 检验记录
|
|
export const InspectNote = [
|
|
{
|
|
label: "检验单号",
|
|
prop: "inspectNumber",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "单据号", prop: 'number',width: orderWidth },
|
|
{ label: "到货单号", prop: 'purchaseReceiptRequestNumber' },
|
|
{ label: "采购订单号", prop: "poNumber" ,width: orderWidth },
|
|
{ label: "发货单号", prop: "asnNumber",width: orderWidth },
|
|
{ label: "收货单号", prop: "receiptNumber",width: orderWidth },
|
|
{ label: "供应商代码", prop: "supplierCode" },
|
|
// { label: "筹措员代码", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
// { label: "备注", prop: 'remark' },
|
|
{ label: "要货计划单号", prop: 'rpNumber',width: orderWidth },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
// { label: "检验规则", prop: 'nextAction',type: "filter", filters: "nextAction" },
|
|
]
|
|
|
|
// 不合格库存(不合格转合格)
|
|
export const unqualifiedToQualified = [
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "数量", prop: "qty",isNumber:true },
|
|
{ label: "单位", prop: "uom" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: "库位", prop: 'locationCode' },
|
|
{ label: "入库时间", prop: 'putInTime',type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "标包数量", prop: "stdPackQty",isNumber:true },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "供应商批次", prop: 'supplierBatch' },
|
|
{ label: "到货日期", prop: 'arriveDate', type: "dateTime" },
|
|
{ label: "生产时间", prop: 'produceDate', type: "dateTime" },
|
|
{ label: "过期时间", prop: 'expireDate', type: "dateTime" },
|
|
// { label: "序号", prop: 'serialNumber' },
|
|
// { label: "库位组", prop: 'locationGroup' },
|
|
// { label: "库区", prop: 'locationArea' },
|
|
// { label: "最后盘点时间", prop: 'lastCountTime' },
|
|
// { label: "最后盘点计划", prop: 'lastCountPlanNumber' },
|
|
// { label: "最后盘点标签", prop: 'lastCountLabel' },
|
|
{ label: "是否可用", prop: 'isActive' },
|
|
// { label: "最后事务号", prop: 'lastTransNumber' },
|
|
{ label: "最后事务类型", prop: "lastTransType", type: "filter", filters: "TransTypeBase" },
|
|
]
|
|
|
|
// 不合格转合格记录
|
|
export const unqualifiedToQualifiedNote = [
|
|
{
|
|
label: "转合格单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "原因", prop: 'remark' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 采购上架记录
|
|
export const PutawayNote = [
|
|
{
|
|
label: "上架记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
fixed: "left",
|
|
width: orderWidth
|
|
},
|
|
// { label: "备注", prop: 'remark' },//目前用来区分是否打印进行颜色区分,所以隐藏字段
|
|
// { label: "任务单号", prop: 'jobNumber',width: orderWidth },
|
|
// { label: "到货单号", prop: "purchaseReceiptRequestNumber", width: orderWidth },
|
|
// { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "供应商代码", prop: 'supplierCode' },
|
|
{ label: "供应商名称", prop: 'supplierName',showProp:true },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
// { label: "检验单号", prop: 'inspectNumber' },
|
|
// { label: "收货单号", prop: 'receiptNumber' },
|
|
// { label: "发货单号", prop: 'asnNumber' },
|
|
// { label: "要货计划单号", prop: 'rpNumber' },
|
|
// { label: "完工收货单号", prop: 'productReceiptNumber' },
|
|
]
|
|
|
|
// 人工叫料申请
|
|
export const IssueRequest = [
|
|
{
|
|
label: "叫料申请编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus", type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备料计划单号", prop: 'preparationPlanNumber',width: orderWidth },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
]
|
|
|
|
// 人工发料任务
|
|
export const IssueJob = [
|
|
{
|
|
label: "发料任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "申请单号", prop: "materialRequestNumber",width: orderWidth },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "完成时间", prop: "completeTime", type: "dateTime" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "上游任务编号", prop: 'upStreamJobNumber' },
|
|
{ label: "任务类型", prop: 'jobType' },
|
|
{ label: "优先级", prop: 'priority' },
|
|
{ label: "优先级增量", prop: 'priorityIncrement' },
|
|
{ label: "工作组", prop: 'workGroupCode' },
|
|
{ label: "承接者用户名", prop: 'acceptUserName' },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "任务描述", prop: 'jobDescription' },
|
|
{ label: "叫料请求类型", prop: 'requestType' },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
]
|
|
|
|
// 人工发料记录
|
|
export const IssueNote = [
|
|
{
|
|
label: "发料记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "申请单号", prop: 'requestNumber',width: orderWidth },
|
|
{ label: "任务单号", prop: 'jobNumber',width: orderWidth },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "生效日期", prop: 'activeDate',type: "dateTime" },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "叫料请求类型", prop: 'requestType' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: 'confirmTime' },
|
|
]
|
|
|
|
// 自动叫料申请
|
|
export const automaticCallApply = [
|
|
{
|
|
label: "叫料申请编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus", type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备料计划单号", prop: 'preparationPlanNumber',width: orderWidth },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
]
|
|
|
|
// 自动发料任务
|
|
export const automaticCallJob = [
|
|
{
|
|
label: "发料任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "申请单号", prop: "materialRequestNumber",width: orderWidth },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "完成时间", prop: "completeTime", type: "dateTime" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "上游任务编号", prop: 'upStreamJobNumber' },
|
|
{ label: "任务类型", prop: 'jobType' },
|
|
{ label: "优先级", prop: 'priority' },
|
|
{ label: "优先级增量", prop: 'priorityIncrement' },
|
|
{ label: "工作组", prop: 'workGroupCode' },
|
|
{ label: "承接者用户名", prop: 'acceptUserName' },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "任务描述", prop: 'jobDescription' },
|
|
{ label: "叫料请求类型", prop: 'requestType' },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
]
|
|
|
|
// 自动发料记录
|
|
export const automaticCallNote = [
|
|
{
|
|
label: "发料记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "申请单号", prop: 'requestNumber',width: orderWidth },
|
|
{ label: "任务单号", prop: 'jobNumber',width: orderWidth },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "生效日期", prop: 'activeDate',type: "dateTime" },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "叫料请求类型", prop: 'requestType' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: 'confirmTime',type: "dateTime" },
|
|
]
|
|
|
|
// 上架前退货记录
|
|
export const beforeGroundingReturnNote = [
|
|
{
|
|
label: "退货单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "供应商代码", prop: "supplierCode" },
|
|
{ label: "发货单号", prop: "asnNumber",width: orderWidth },
|
|
// { label: "收货单号", prop: "rpNumber", width: orderWidth },
|
|
{ label: "订单号", prop: 'poNumber' },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "退货时间", prop: "returnTime",type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
// { label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
// { label: "备注", prop: 'remark' },
|
|
// { label: "任务单号", prop: 'jobNumber' },
|
|
// { label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
// { label: "退货请求单号", prop: 'purchaseReturnRequestNumber' },
|
|
]
|
|
|
|
// 上架后退货申请
|
|
export const PurchaseReturnRequest = [
|
|
{ label: "退货申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
{ label: "发货单号", prop: "asnNumber", width: orderWidth },
|
|
{ label: "订单号", prop: "poNumber",width: orderWidth },
|
|
{ label: "供应商代码", prop: "supplierCode" },
|
|
{ label: "退货时间", prop: "returnTime", type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
// { label: "备注", prop: 'remark' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
// { label: "收货单号", prop: 'rpNumber' },
|
|
]
|
|
|
|
// 上架后退货审批
|
|
export const PurchaseReturnApprove = [
|
|
{ label: "退货申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "发货单号", prop: "asnNumber", width: orderWidth },
|
|
{ label: "订单号", prop: "poNumber",width: orderWidth },
|
|
{ label: "供应商代码", prop: "supplierCode" },
|
|
{ label: "退货时间", prop: "returnTime", type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
// ************** 确认隐藏 ************************
|
|
// { label: "自动提交审批", prop: 'autoSubmit', type: "filter", filters: "whetherOrNot" },
|
|
// { label: "自动审批通过", prop: 'autoAgree', type: "filter", filters: "whetherOrNot" },
|
|
// { label: "自动执行", prop: 'autoHandle', type: "filter", filters: "whetherOrNot" },
|
|
// { label: "自动完成任务", prop: 'autoCompleteJob', type: "filter", filters: "whetherOrNot" },
|
|
// { label: "直接生成记录", prop: 'directCreateNote', type: "filter", filters: "whetherOrNot" },
|
|
// ************** 确认隐藏 ************************
|
|
]
|
|
|
|
// 上架后退货任务
|
|
export const PurchaseReturnJob = [
|
|
{
|
|
label: "退货任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus", type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "退货申请单号", prop: "purchaseReturnRequestNumber",width: orderWidth },
|
|
{ label: "发货单号", prop: "asnNumber", width: orderWidth },
|
|
{ label: "订单号", prop: "poNumber",width: orderWidth },
|
|
{ label: "退货时间", prop: "returnTime", type:"dateTime" },
|
|
{ label: "退货原因代码", prop: 'returnReason' },
|
|
{ label: "退货原因说明", prop: 'returnReason', type: "filter", filters: "getDict" , dictType:"PurReturnReason" },
|
|
{ label: "供应商代码", prop: "supplierCode" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 上架后退货记录
|
|
export const PurchaseReturnNote = [
|
|
{
|
|
label: "退货记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "订单号", prop: "poNumber",width: orderWidth },
|
|
{ label: "发货单号", prop: "asnNumber", width: orderWidth },
|
|
{ label: "供应商代码", prop: "supplierCode" },
|
|
{ label: "退货时间", prop: "returnTime", type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate',type: "dateTime" },
|
|
{ label: "任务单号", prop: 'jobNumber',width: orderWidth },
|
|
{ label: "退货请求单号", prop: 'purchaseReturnRequestNumber',width: orderWidth },
|
|
]
|
|
|
|
// 原料报废记录
|
|
export const ScrapNote = [
|
|
{
|
|
label: "报废记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "报废日期", prop: "activeDate",type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 原料直发客户记录
|
|
export const materialDirectSendNote = [
|
|
{
|
|
label: "发货单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "发货日期", prop: "deliverTime",type: "dateTime" },
|
|
{ label: "客户代码", prop: 'customerCode' },
|
|
{ label: "客户地址", prop: 'customerAddressCode' },
|
|
{ label: "是否打印", prop: "countPrint",type: "filter", filters: "countPrintType" },
|
|
{ label: "发货类型", prop: "deliverRequestType",type: "filter", filters: "deliverRequestType" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 非生产调拨记录
|
|
export const directIssueNote = [
|
|
{
|
|
label: "发料记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "生效日期", prop: 'activeDate',type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
]
|
|
|
|
// 成品管理
|
|
/**/
|
|
// 完工收货缴库申请
|
|
export const ProductReceiptRequest = [
|
|
{
|
|
label: "缴库申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "生产计划编号", prop: 'productionPlanNumber' },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "班次", prop: 'shift' },
|
|
{ label: "班组", prop: 'team' },
|
|
{ label: "计划日期", prop: 'planDate' },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 完工收货缴库记录
|
|
export const ProductReceiptNote = [
|
|
{
|
|
label: "缴库记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "生效日期", prop: 'activeDate',type: "dateTime" },
|
|
{ label: "完工时间", prop: 'completeTime',type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
]
|
|
|
|
// 完工收货报废申请
|
|
export const ProductReceiptScrapRequest = [
|
|
{
|
|
label: "报废申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus", },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "报废类型", prop: 'type' },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 完工收货报废记录
|
|
export const ProductReceiptScrapNote = [
|
|
{
|
|
label: "报废记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "报废日期", prop: "activeDate",type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "报废类型", prop: 'type' },
|
|
{ label: "报废请求单号", prop: 'scrapRequestNumber',width: orderWidth },
|
|
]
|
|
|
|
// 半成品上架记录
|
|
export const partiallyPreparedProductsNote = [
|
|
{
|
|
label: "上架记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
fixed: "left",
|
|
width: orderWidth
|
|
},
|
|
{ label: "检验单号", prop: 'inspectNumber' },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 成品发货申请
|
|
export const DeliverRequest = [
|
|
{
|
|
label: "发货申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态",prop: "requestStatus", type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "发货时间", prop: "deliverTime",type: "dateTime" },
|
|
{ label: "客户代码", prop: "customerCode" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "发货计划单号", prop: 'deliverPlanNumber' },
|
|
{ label: "客户地址", prop: 'customerAddressCode' },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 成品发货任务
|
|
export const DeliverJob = [
|
|
{
|
|
label: "发货任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "发货申请单号", prop: "deliverRequestNumber",width:orderWidth },
|
|
{ label: "发货时间", prop: "deliverTime",type: "dateTime" },
|
|
{ label: "客户代码", prop: "customerCode" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "上游任务编号", prop: 'upStreamJobNumber' },
|
|
{ label: "任务类型", prop: 'jobType' },
|
|
{ label: "优先级", prop: 'priority' },
|
|
{ label: "优先级增量", prop: 'priorityIncrement' },
|
|
{ label: "工作组", prop: 'workGroupCode' },
|
|
{ label: "承接者用户名", prop: 'acceptUserName' },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime', type: "dateTime" },
|
|
{ label: "任务描述", prop: 'jobDescription' },
|
|
{ label: "客户地址", prop: 'customerAddressCode' },
|
|
{ label: "发货计划单号", prop: 'deliverPlanNumber' },
|
|
]
|
|
|
|
// 成品发货记录
|
|
export const DeliverNote = [
|
|
{
|
|
label: "发货记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "发货申请单号", prop: "deliverRequestNumber",width:orderWidth },
|
|
{ label: "发货时间", prop: "deliverTime",type: "dateTime" },
|
|
{ label: "客户代码", prop: "customerCode" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "发货任务单号", prop: "jobNumber", width:orderWidth },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "客户地址", prop: 'customerAddressCode' },
|
|
{ label: "发货计划单号", prop: 'deliverPlanNumber' },
|
|
{ label: "发货类型", prop: "deliverRequestType", type: "filter", filters: "deliverRequestType" },
|
|
{ label: "是否打印", prop: "countPrint",type: "filter", filters: "countPrintType" },
|
|
]
|
|
|
|
// FIS发货申请
|
|
export const FISDeliverRequest = [
|
|
{
|
|
label: "发货申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "客户代码", prop: "customerCode" },
|
|
{ label: "客户地址", prop: 'customerAddressCode' },
|
|
{ label: "车牌号", prop: 'mesTruckNumber' },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "发货时间", prop: "deliverTime", type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 成品发运任务
|
|
export const FISDeliverJob = [
|
|
{ label: _Names.itemCode, prop: "itemCode", fixed: "left" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "出货数量", prop: "qty" },
|
|
{ label: "单位", prop: "uom" },
|
|
{ label: "出货库区", prop: "areaCode" },
|
|
{ label: "起始盘底号", prop: "extraProperties", showProp: 'FromVinCode', type: 'object' },
|
|
{ label: "截止盘底号", prop: "extraProperties", showProp: 'ToVinCode', type: 'object' },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "创建者ID", prop: 'creatorId' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "上次修改者ID", prop: 'lastModifierId' },
|
|
{ label: "任务编号", prop: 'number' },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "标包数量", prop: 'stdPackQty' },
|
|
{ label: "事务ID", prop: "tenantId" },
|
|
]
|
|
|
|
// FIS发货记录
|
|
export const FISDeliverNote = [
|
|
{
|
|
label: "发货记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "客户代码", prop: "customerCode" },
|
|
{ label: "客户地址", prop: 'customerAddressCode' },
|
|
{ label: "车牌号", prop: 'mesTruckNumber' },
|
|
{ label: "发货申请单号", prop: "deliverRequestNumber",width:orderWidth },
|
|
{ label: "发货时间", prop: "deliverTime",type: "dateTime" },
|
|
{ label: "发货类型", prop: "deliverRequestType", type: "filter", filters: "deliverRequestType" },
|
|
{ label: "是否打印", prop: "countPrint",type: "filter", filters: "countPrintType" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 客户退拆申请
|
|
export const customerDismantle = [
|
|
{
|
|
label: "退拆申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: 'requestStatus', type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "班次", prop: 'shift' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "车间", prop: 'workshop' },
|
|
]
|
|
|
|
// 客户退拆任务
|
|
export const customerDismantleJob = [
|
|
{
|
|
label: "退拆任务单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "申请单号", prop: "requestNumber",width: orderWidth },
|
|
{ label: "状态", prop: "jobStatus", type: "tagFilter", filters: "jobStatus" },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
{ label: "承接者用户名", prop: 'acceptUserName' },
|
|
{ label: "完成时间", prop: 'completeTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "上游任务编号", prop: 'upStreamJobNumber' },
|
|
{ label: "优先级", prop: 'priority' },
|
|
{ label: "优先级增量", prop: 'priorityIncrement' },
|
|
{ label: "工作组", prop: 'workGroupCode' },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "班次", prop: 'shift' },
|
|
]
|
|
|
|
// 客户退拆记录
|
|
export const customerDismantleNote = [
|
|
{
|
|
label: "退拆记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "班次", prop: 'shift' },
|
|
{ label: "车间", prop: 'workshop' },
|
|
{ label: "回收时间", prop: "recycleTime",type: "dateTime" },
|
|
{ label: "生效时间", prop: "activeDate",type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "申请编号", prop: 'requestNumber', width:orderWidth },
|
|
]
|
|
|
|
// 客户退拆记录-明细【即回冲记录】
|
|
export const customerDismantleBackFlushNote = [
|
|
{ label: "退拆物品号", prop: "itemCode" },
|
|
{ label: "物品名称", prop: "itemName" },
|
|
{ label: "预定开工日", prop: "preStartTime" ,type: "dateTime", },
|
|
{ label: "退拆数量", prop: "qty",isNumber:true },
|
|
{ label: "扣账库位", prop: 'locationCode' },
|
|
{ label: "转移工时", prop: 'workHour' },
|
|
{ label: "缴库库位", prop: 'rawLocationCode' },
|
|
{ label: "转移料号(子零件号)", prop: 'rawItemCode' },
|
|
{ label: "转移量(子零件)", prop: 'rawQty',isNumber:true },
|
|
]
|
|
|
|
// 生产退库申请
|
|
export const productionReturnRequest = [
|
|
{
|
|
label: "退库申请单号",
|
|
prop: "number",
|
|
type: "name",
|
|
fixed: "left",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: 'requestStatus', type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 生产退库任务
|
|
export const productionReturnJob = [
|
|
{
|
|
label: "退库任务单号",
|
|
prop: "number",
|
|
type: "name",
|
|
fixed: "left",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus", type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "退库单号", prop: "productionReturnRequestNumber", width:orderWidth },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "上游任务编号", prop: 'upStreamJobNumber',width:orderWidth },
|
|
{ label: "任务类型", prop: 'jobType' },
|
|
{ label: "优先级", prop: 'priority' },
|
|
{ label: "优先级增量", prop: 'priorityIncrement' },
|
|
{ label: "工作组", prop: 'workGroupCode' },
|
|
{ label: "承接者用户名", prop: 'acceptUserName' },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime', type: "dateTime" },
|
|
{ label: "任务描述", prop: 'jobDescription' },
|
|
]
|
|
|
|
// 生产退库记录
|
|
export const productionReturnNote = [
|
|
{
|
|
label: "退库记录单号",
|
|
prop: "number",
|
|
type: "name",
|
|
fixed: "left",
|
|
width: orderWidth
|
|
},
|
|
{ label: "退库单号", prop: "productionReturnRequestNumber", width:orderWidth },
|
|
{ label: "任务单号", prop: 'jobNumber', width:orderWidth },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "退料时间", prop: 'returnTime', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 线边仓缴库申请
|
|
export const lineSideWarehousePaymentRequest = [
|
|
{
|
|
label: "缴库申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 线边仓缴库记录
|
|
export const lineSideWarehousePaymentNote = [
|
|
{
|
|
label: "缴库记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
]
|
|
|
|
// 线边仓报废申请
|
|
export const lineSideWarehouseScrappingRequest = [
|
|
{
|
|
label: "报废申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus", },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 线边仓报废记录
|
|
export const lineSideWarehouseScrappingNote = [
|
|
{
|
|
label: "报废记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "报废日期", prop: "activeDate",type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "报废请求单号", prop: 'scrapRequestNumber',width: orderWidth },
|
|
]
|
|
|
|
// 标签管理
|
|
/**/
|
|
// 标签查询
|
|
export const labelsList = [
|
|
{
|
|
label: "箱码",
|
|
prop: "code",
|
|
type: "name",
|
|
fixed:"left"
|
|
},
|
|
{ label: _Names.itemCode, prop: 'itemCode' },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "数量", prop: "qty",isNumber:true },
|
|
{ label: "单位", prop: "uom" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "库位", prop: "recommendLocationCode" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
{ label: "类型", prop: "labelType", type: "filter", filters: "labelTypeStatus" },
|
|
{ label: "备注", prop: "remark",type: "filter", filters: "getDict", dictType:"ProductionReturnReason"},
|
|
{ label: "到达时间", prop: "arriveDate",type:"dateTime" },
|
|
{ label: "生产时间", prop: "produceDate",type:"dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type:"dateTime" },
|
|
{ label: "采购单号", prop: "asnNumber",width:orderWidth },
|
|
{ label: "要货计划单号", prop: "rpNumber",width:orderWidth },
|
|
{ label: "订单号", prop: "poNumber" },
|
|
{ label: "供应商代码", prop: 'supplierCode' },
|
|
{ label: "供应商名称", prop: 'supplierName' },
|
|
{ label: "供应商简称", prop: 'supplierSimpleName' },
|
|
{ label: "供应商物品代码", prop: "supplierItemCode" },
|
|
{ label: "供应商物品名称", prop: 'supplierItemName' },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type:"dateTime" },
|
|
{ label: "完整条码文本", prop: "fullBarcodeString" },
|
|
{ label: "供应商批次", prop: 'supplierBatch' },
|
|
{ label: "标包数量", prop: 'stdPackQty',isNumber:true },
|
|
{ label: "器具号", prop: 'containerCode' },
|
|
{ label: "质量级别", prop: "qLevel" },
|
|
{ label: "质检文件", prop: "qualityFile" },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "班组", prop: 'team' },
|
|
{ label: "班次", prop: 'shift' },
|
|
{ label: "规格", prop: "specifications" },
|
|
{ label: "labelStatus", prop: "labelStatus" },
|
|
]
|
|
|
|
// 库存管理
|
|
/**/
|
|
// 库存初始化记录
|
|
export const InventoryInitialNote = [
|
|
{
|
|
label: "单据号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
// { label: "库存初始化请求单号", prop: "requestNumber" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "生效日期", prop: "activeDate",type: "dateTime" },
|
|
]
|
|
|
|
// 库存余额
|
|
export const InventoryBalance = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "类型", prop: 'item_typeFromFE', type: "filter", filters: "ItemTypeBasic", showProp:true },
|
|
{ label: "库存数量", prop: "qty",isNumber:true },
|
|
{ label: "计量单位", prop: "uom" },
|
|
{ label: "标准成本单价", prop: "stdCostPrice" },
|
|
{ label: "标准成本金额", prop: "stdCost" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "库存状态", type: "filter", filters: "inventoryStage", prop: "status" },
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "是否可用", prop: "isActive", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "生产日期", prop: "produceDate" ,type: "dateTime" },
|
|
{ label: "入库时间", prop: "putInTime", type: "dateTime" },
|
|
{ label: "过期日期", prop: "expireDate" ,type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "最后盘点时间", prop: "lastCountTime",type: "dateTime" },
|
|
{ label: "最后盘点计划单号", prop: "lastCountPlanNumber",width: orderWidth },
|
|
// { label: "最后盘点标签", prop: "lastCountLabel" },
|
|
{ label: "标包数量", prop: "stdPackQty",isNumber:true },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
{ label: "库区", prop: "locationArea" },
|
|
{ label: "管理类型", prop: "manageType", type: "filter", filters: "manageType" },
|
|
// { label: "序号", prop: "serialNumber" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "到货日期", prop: "arriveDate",type: "dateTime" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
{ label: "最后事务类型", prop: "lastTransType", type: "filter", filters: "TransTypeBase" },
|
|
{ label: "最后事务编号", prop: 'lastTransNumber' },
|
|
]
|
|
|
|
// 库存余额(解/冻)
|
|
export const InventoryBalanceActive = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "库存数量", prop: "qty",isNumber:true },
|
|
{ label: "计量单位", prop: "uom" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "库存状态", type: "filter", filters: "inventoryStage", prop: "status" },
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "是否可用", prop: "isActive", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "生产日期", prop: "produceDate" ,type: "dateTime" },
|
|
{ label: "入库时间", prop: "putInTime", type: "dateTime" },
|
|
{ label: "过期日期", prop: "expireDate" ,type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "最后盘点时间", prop: "lastCountTime",type: "dateTime" },
|
|
{ label: "最后盘点计划单号", prop: "lastCountPlanNumber",width: orderWidth },
|
|
// { label: "最后盘点标签", prop: "lastCountLabel" },
|
|
{ label: "标包数量", prop: "stdPackQty",isNumber:true },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
{ label: "库区", prop: "locationArea" },
|
|
{ label: "管理类型", prop: "manageType", type: "filter", filters: "manageType" },
|
|
// { label: "序号", prop: "serialNumber" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "到货日期", prop: "arriveDate",type: "dateTime" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
{ label: "最后事务类型", prop: "lastTransType", type: "filter", filters: "TransTypeBase" },
|
|
{ label: "最后事务编号", prop: 'lastTransNumber' },
|
|
]
|
|
|
|
// 库存事务
|
|
export const InventoryTransaction = [
|
|
{
|
|
label: "事务编号",
|
|
prop: "transNumber",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "事务分类", prop: "transType",type: "filter", filters: "TransTypeBase" },
|
|
{ label: "子事务类型", prop: "transSubType", type: "filter", filters: "transSubType" },
|
|
{ label: "出库/入库", prop: "transInOut",type: "filter", filters: "transInOutStatus" },
|
|
{ label: "接口对应类型", prop: "interfaceType", width: '360px', showProp: true },
|
|
{ label: "事务数量", prop: "qty",isNumber:true },
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "到货单位", prop: "uom" },
|
|
{ label: "库存状态", prop: "status",type: "filter", filters: "inventoryStage" },
|
|
{ label: "任务编号", prop: "jobNumber",width: orderWidth },
|
|
{ label: "事务时间", prop: "transTime" ,type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "单据号", prop: "docNumber" },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
{ label: "库区", prop: "locationArea" },
|
|
{ label: "到货日期", prop: "arriveDate",type: "dateTime" },
|
|
{ label: "生产日期", prop: "produceDate",type: "dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type: "dateTime" },
|
|
{ label: "标包数量", prop: "stdPackQty",isNumber:true },
|
|
{ label: "管理类型", prop: "manageType", type: "filter", filters: "manageType" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
]
|
|
|
|
// 库存快照
|
|
export const InventorySnapshot = [
|
|
{
|
|
label: "盘点标签",
|
|
prop: "countLabel",
|
|
fixed: "left",
|
|
type: "name",
|
|
showProp: true
|
|
},
|
|
{ label: "备注", prop: 'remark', },
|
|
]
|
|
|
|
// 库存转移日志
|
|
export const InventoryTransferLog = [
|
|
{
|
|
label: "库存转移编号",
|
|
prop: "transferNumber",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "从状态", prop: "fromStatus",type: "filter", filters: "inventoryStage" },
|
|
{ label: "到状态", prop: "toStatus", type: "filter", filters: "inventoryStage" },
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "到货数量", prop: "qty",isNumber:true },
|
|
{ label: "到货单位", prop: "uom" },
|
|
{ label: "从库位代码", prop: "fromLocationCode" },
|
|
{ label: "到库位代码", prop: "toLocationCode" },
|
|
{ label: "到箱码", prop: "toPackingCode" },
|
|
{ label: "事务类型", prop: "transType", type: "filter", filters: "TransType" },
|
|
{ label: "子事务类型", prop: "transSubType", type: "filter", filters: "transSubType" },
|
|
{ label: "接口对应类型", prop: "interfaceType", width: '360px', showProp: true },
|
|
{ label: "从事务编号", prop: "fromTransNumber", width: orderWidth },
|
|
{ label: "到事务编号", prop: "toTransNumber", width: orderWidth },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "单据号", prop: "docNumber" },
|
|
{ label: "任务编号", prop: "jobNumber" },
|
|
{ label: "标包数", prop: "stdPackQty",isNumber:true },
|
|
{ label: "从排序批次", prop: "fromLot" },
|
|
{ label: "到排序批次", prop: 'toLot' },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
{ label: "从箱码", prop: "fromPackingCode" },
|
|
{ label: "从库位组", prop: "fromLocationGroup" },
|
|
{ label: "到库位组", prop: 'toLocationGroup' },
|
|
{ label: "从库区", prop: "fromLocationArea" },
|
|
{ label: "到库区", prop: "toLocationArea" },
|
|
{ label: _Names.fromErpCode, prop: "fromLocationErpCode" },
|
|
{ label: _Names.toErpCode, prop: "toLocationErpCode" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "生产日期", prop: "produceDate",type: "dateTime" },
|
|
{ label: "到达时间", prop: "arriveDate",type:"dateTime" },
|
|
{ label: "事务时间", prop: "transferTime",type: "dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type:"dateTime" },
|
|
]
|
|
|
|
// 预计入库存(+自定义tab页)
|
|
export const expectOut = [
|
|
{
|
|
label: "任务编号",
|
|
prop: "jobNumber",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "status",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
// { label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "占用数量", prop: "qty",isNumber:true },
|
|
{ label: "计量单位", prop: "uom" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
{ label: "库区", prop: "locationArea" },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "到货日期", prop: "arriveDate",type:"dateTime" },
|
|
{ label: "生产日期", prop: "produceDate",type: "dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type:"dateTime" },
|
|
// { label: "序号", prop: "serialNumber" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 预计入库存(+自定义tab页)
|
|
export const expectIn = [
|
|
{
|
|
label: "任务编号",
|
|
prop: "jobNumber",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "status", type: "tagFilter", filters: "jobStatus" },
|
|
{ label: _Names.itemCode, prop: "itemCode" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "占用数量", prop: "qty",isNumber:true },
|
|
{ label: "计量单位", prop: "uom" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
{ label: "库区", prop: "locationArea" },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "到货日期", prop: "arriveDate",type: "dateTime" },
|
|
{ label: "生产日期", prop: "produceDate",type: "dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type:"dateTime" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
// { label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
// { label: "序号", prop: 'serialNumber' },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 物品安全库存预警
|
|
export const safetyStockWarning = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true },
|
|
{ label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true },
|
|
{ label: _Names.configuration, prop: "item_configurationFromFE",showProp:true },
|
|
{ label: "最小库存", prop: 'minStock' },
|
|
{ label: "最大库存", prop: 'maxStock' },
|
|
{ label: "安全库存", prop: 'safetyStock' },
|
|
{ label: "存储关系代码", prop: "storeValue" },
|
|
{ label: "存储关系类型", prop: "storeRelationType", type: "filter", filters: "storeRelationType" },
|
|
]
|
|
|
|
// 拆箱记录/标签记录
|
|
export const splitPackingList = [
|
|
{
|
|
label: _Names.itemCode,
|
|
prop: "itemCode",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "原箱箱码", prop: "fromPackingCode" },
|
|
{ label: "目标箱码", prop: "toPackingCode" },
|
|
{ label: "原数量", prop: "fromQty",isNumber:true },
|
|
{ label: "目标数量", prop: "toQty",isNumber:true },
|
|
{ label: "原顶级箱码", prop: "fromTopPackingCode" },
|
|
{ label: "目标顶级箱码", prop: "toTopPackingCode" },
|
|
{ label: "原标包数量", prop: "fromStdPackQty",isNumber:true },
|
|
{ label: "目标标包数量", prop: "toStdPackQty",isNumber:true },
|
|
{ label: "原批次", prop: "fromLot" },
|
|
{ label: "方式", prop: "oprType", type: "filter", filters: "oprTypeStatus" },
|
|
{ label: "采购订单", prop: "purchaseInfo_PoNumber" },
|
|
{ label: "供应商发货单", prop: "purchaseInfo_AsnNumber" },
|
|
{ label: "创建时间", prop: 'creationTime', type:'dateTime' },
|
|
]
|
|
|
|
// 非生产领料申请
|
|
export const pickingRequest = [
|
|
{
|
|
label: "领料单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "OA单号", prop: "oaNumber" },
|
|
{ label: "领料类别", prop: 'unplannedIssueType', type: "filter", filters: "unplannedIssueType" },
|
|
{ label: "状态", prop: 'requestStatus',type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "建档日期", prop: "buildDate", type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "部门代码", prop: "deptCode" },
|
|
{ label: "部门名称", prop: "deptName" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 非生产领料审批
|
|
export const pickingApproval = [
|
|
{
|
|
label: "领料单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "OA单号", prop: "oaNumber" },
|
|
{ label: "领料类别", prop: 'unplannedIssueType', type: "filter", filters: "unplannedIssueType" },
|
|
{ label: "状态", prop: 'requestStatus',type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "建档日期", prop: "buildDate", type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "部门代码", prop: "deptCode" },
|
|
{ label: "部门名称", prop: "deptName" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 非生产领料任务
|
|
export const pickingJob = [
|
|
{
|
|
label: "任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "申请单号", prop: "unplannedIssueRequestNumber" },
|
|
{ label: "OA单号", prop: "oaNumber" },
|
|
{ label: "领料类别", prop: 'unplannedIssueType', type: "filter", filters: "unplannedIssueType" },
|
|
{ label: "建档日期", prop: "buildDate", type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "部门代码", prop: "deptCode" },
|
|
{ label: "部门名称", prop: "deptName" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "完成时间", prop: "completeTime",type: "dateTime" },
|
|
{ label: "完成用户", prop: "completeUserName" },
|
|
]
|
|
|
|
// 非生产领料记录
|
|
export const pickingNote = [
|
|
{
|
|
label: "领料记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "OA单号", prop: "oaNumber" },
|
|
{ label: "领料类别", prop: 'unplannedIssueType', type: "filter", filters: "unplannedIssueType" },
|
|
{ label: "建档日期", prop: "buildDate", type: "dateTime" },
|
|
{ label: "请求单号", prop: 'unplannedIssueRequestNumber',width: orderWidth},
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "部门代码", prop: "deptCode" },
|
|
{ label: "部门名称", prop: "deptName" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 非生产退料申请
|
|
export const materialReturnRequest = [
|
|
{
|
|
label: "退料单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "OA单号", prop: "oaNumber" },
|
|
{ label: "退料类别", prop: 'unplannedReceiptType', type: "filter", filters: "unplannedReceiptType" },
|
|
{ label: "状态", prop: 'requestStatus', type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "建档日期", prop: "buildDate", type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "部门代码", prop: "deptCode" },
|
|
{ label: "部门名称", prop: "deptName" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 非生产退料审批
|
|
export const materialReturnApproval = [
|
|
{
|
|
label: "退料单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "OA单号", prop: "oaNumber" },
|
|
{ label: "退料类别", prop: 'unplannedReceiptType', type: "filter", filters: "unplannedReceiptType" },
|
|
{ label: "状态", prop: 'requestStatus', type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "建档日期", prop: "buildDate", type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "部门代码", prop: "deptCode" },
|
|
{ label: "部门名称", prop: "deptName" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 非生产退料任务
|
|
export const materialReturnJob = [
|
|
{
|
|
label: "任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "申请单号", prop: "unplannedReceiptRequestNumber" },
|
|
{ label: "OA单号", prop: "oaNumber" },
|
|
{ label: "退料类别", prop: 'unplannedReceiptType', type: "filter", filters: "unplannedReceiptType" },
|
|
{ label: "建档日期", prop: "buildDate", type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "部门代码", prop: "deptCode" },
|
|
{ label: "部门名称", prop: "deptName" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "完成时间", prop: "completeTime",type: "dateTime" },
|
|
{ label: "完成用户", prop: "completeUserName" },
|
|
]
|
|
|
|
// 非生产退料记录
|
|
export const materialReturnNote = [
|
|
{
|
|
label: "退料记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "OA单号", prop: "oaNumber" },
|
|
{ label: "退料类别", prop: 'unplannedReceiptType', type: "filter", filters: "unplannedReceiptType" },
|
|
{ label: "建档日期", prop: "buildDate", type: "dateTime" },
|
|
{ label: "请求单号", prop: 'unplannedReceiptRequestNumber',width: orderWidth },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "部门代码", prop: "deptCode" },
|
|
{ label: "部门名称", prop: "deptName" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 回收料收货记录
|
|
export const recycledMaterialsReceipt = [
|
|
{
|
|
label: "回收料收货记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "生效日期", prop: "activeDate" ,type: "dateTime" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 回收料调整申请
|
|
export const recycledMaterialsAdjustmentApply = [
|
|
{
|
|
label: "回收料调整申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: 'requestStatus', type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "创建时间", prop: "creationTime" ,type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 回收料调整记录
|
|
export const materialsAdjustment = [
|
|
{
|
|
label: "回收料调整记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "申请单号", prop: "requestNumber",width: orderWidth },
|
|
{ label: "操作员", prop: "worker",},
|
|
{ label: "任务单号", prop: "jobNumber" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建日期", prop: "creationTime",type: "dateTime" },
|
|
]
|
|
|
|
// 线边仓调拨申请
|
|
export const lineSideWarehouseAllocationRequest = [
|
|
{
|
|
label: "调拨申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "生效日期", prop: "activeDate",type:"dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 线边仓调拨确认
|
|
export const lineSideWarehouseAllocationConfirm = [
|
|
{
|
|
label: "调拨确认单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "调拨申请单号", prop: "requestNumber" ,width: orderWidth },
|
|
{ label: "是否确认", prop: "confirmed", type: "tagFilter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: "confirmTime",type:"dateTime" },
|
|
{ label: "使用中间库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 线边仓调拨记录
|
|
export const lineSideWarehouseAllocationNote = [
|
|
{
|
|
label: "调拨确认单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "调拨申请单号", prop: "requestNumber" ,width: orderWidth },
|
|
{ label: "是否确认", prop: "confirmed", type: "tagFilter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: "confirmTime",type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 储位调拨记录
|
|
export const interStorageAllocationNote = [
|
|
{
|
|
label: "调拨单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "调拨申请单号", prop: "requestNumber" ,width: orderWidth },
|
|
{ label: "申请日期", prop: "activeDate",type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 客户储位调拨申请
|
|
export const customerStorageAllocationRequest = [
|
|
{
|
|
label: "调拨申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "生效日期", prop: "activeDate",type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "使用中间库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
]
|
|
|
|
// 客户储位调拨确认
|
|
export const customerStorageAllocationConfirm = [
|
|
{
|
|
label: "调拨确认单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "调拨申请单号", prop: "requestNumber" ,width: orderWidth },
|
|
{ label: "是否确认", prop: "confirmed", type: "tagFilter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: "confirmTime",type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "使用中间库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 客户储位调拨记录
|
|
export const customerStorageAllocationNote = [
|
|
{
|
|
label: "调拨确认单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "调拨申请单号", prop: "requestNumber" ,width: orderWidth },
|
|
{ label: "是否确认", prop: "confirmed", type: "tagFilter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: "confirmTime",type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "使用中间库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 储位内移库记录
|
|
export const intraStorageTransferNote = [
|
|
{
|
|
label: "移库单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "调拨申请单号", prop: "requestNumber",width: orderWidth },
|
|
{ label: "任务单号", prop: 'jobNumber',width: orderWidth },
|
|
{ label: "使用中间库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "移库时间", prop: "activeDate",type:"dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 线边仓调整申请
|
|
export const lineSideWarehouseAdjustmentSheetRequest = [
|
|
{
|
|
label: "申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 线边仓调整记录
|
|
export const lineSideWarehouseAdjustmentSheetNote = [
|
|
{
|
|
label: "记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "调整单号", prop: "requestNumber",width: orderWidth },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 盘点计划
|
|
export const CountPlan = [
|
|
{
|
|
label: "盘点计划单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width:orderWidth
|
|
},
|
|
{ label: "状态", prop: "requestStatus", type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "开始时间", prop: "beginTime",type: "dateTime" },
|
|
{ label: "结束时间", prop: "endTime", type: "dateTime" },
|
|
{ label: "计划时间", prop: 'planTime', type: "dateTime"},
|
|
{ label: "盘点模式", prop: "inventoryMode",type: "filter", filters: "inventoryMode" },
|
|
{ label: "盘点次数", prop: "inventoryStage" },
|
|
{ label: "盘点库位", prop: 'jsonLocationCodes',type:"showDetail",isJson:true,showProp:true },
|
|
{ label: "根据", prop: "countMethod",type: "filter", filters: "countMethod" },
|
|
{ label: "描述", prop: "description" },
|
|
{ label: "备注", prop: 'remark', },
|
|
{ label: "操作员", prop: 'worker',},
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "类型", prop: "type",type: "filter", filters: "checkType" },
|
|
{ label: "生效时间", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
]
|
|
|
|
// 新增盘点计划-选择库位
|
|
export const CountPlanByAddLocation = [
|
|
{
|
|
label: "库位代码",
|
|
fixed: "left",
|
|
type: "name",
|
|
prop: "code"
|
|
},
|
|
{ label: "库位名称", prop: "name", showProp:true },
|
|
{ label: "区域代码", prop: "areaCode", showProp:true },
|
|
{ label: "库位组代码", prop: "locationGroupCode", showProp:true },
|
|
{ label: "工作组代码", prop: "workGroupCode", showProp:true },
|
|
{ label: "库位类型", prop: "type", type: "filter", filters: "locationType" },
|
|
{ label: "ERP系统库位代码", prop: "erpLocationCode", showProp:true },
|
|
{ label: "默认库存状态", prop: "defaultInventoryStatus", type: "filter", filters: "inventoryStage", width:'130px', showProp:true },
|
|
{ label: "货架号", prop: "shelfCode", showProp:true },
|
|
{ label: "行号", prop: "rowCode", showProp:true },
|
|
{ label: "列号", prop: "columnCode", showProp:true },
|
|
{ label: "拣料优先级", prop: "pickPriority", showProp:true },
|
|
{ label: "拣料顺序", prop: "pickOrder", showProp:true },
|
|
{ label: "是否混物品", prop: "enableMixItem", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否混批次", prop: "enableMixLot", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否混状态", prop: "enableMixStatus", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否负库存", prop: "enableNegative", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否保留零库存", prop: "enableKeepZero", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否动态盘点", prop: "enableOpportunityCount", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否领料", prop: "enablePick", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否过量领料", prop: "enableOverPick", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否整包存储", prop: "enableWholeStore", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否散件存储", prop: "enableBreakStore", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否发出", prop: "enableShip", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否接收", prop: "enableReceive", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否退货给供应商", prop: "enableReturnToSupplier", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否接收客户退货", prop: "enableReturnFromCustomer", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "是否拆箱", prop: "enableSplitBox", type: "filter", filters: "whetherOrNot", showProp:true },
|
|
{ label: "备注", prop: "remark", showProp:true },
|
|
{ label: "描述", prop: "description", showProp:true },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime", showProp:true },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime", showProp:true },
|
|
]
|
|
|
|
// 盘点任务
|
|
export const CountJob = [
|
|
{
|
|
label: "任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width:orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "盘点计划号", prop: "countPlanNumber",width:orderWidth },
|
|
{ label: "盘点次数", prop: "inventoryStage" },
|
|
{ label: "盘点根据", prop: "countMethod",type: "filter", filters: "countMethod" },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
{ label: "承接时间", prop: "acceptTime", type: "dateTime" },
|
|
{ label: "承接用户", prop: "acceptUserName" },
|
|
{ label: "完成时间", prop: "completeTime",type: "dateTime" },
|
|
{ label: "完成用户", prop: "completeUserName" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: _Names.itemCode, prop: 'itemCode' },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: "上游任务编号", prop: "upStreamJobNumber", width:orderWidth},
|
|
{ label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" },
|
|
{ label: "类型", prop: "type",type: "filter", filters: "checkType" },
|
|
{ label: "上次修改时间", prop: 'lastModificationTime', type: "dateTime" },
|
|
{ label: "优先级", prop: 'priority',},
|
|
{ label: "优先级增量", prop: 'priorityIncrement',},
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "描述", prop: "description" },
|
|
{ label: "任务描述", prop: 'jobDescription' },
|
|
{ label: "工作组代码", prop: "workGroupCode" },
|
|
]
|
|
|
|
// 盘点任务-扫描明细
|
|
export const countJobDepDetails = [
|
|
{ label: _Names.itemCode, prop: "itemCode", type: "name",fixed: "left" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "库存状态", type: "filter", filters: "inventoryStage", prop: "status" },
|
|
{ label: "库存数量", prop: "inventoryQty" },
|
|
{ label: "盘点数量", prop: "countQty" },
|
|
{ label: "盘点次数", prop: "inventoryStage" },
|
|
{ label: "单位", prop: "uom" },
|
|
{ label: "标包数量", prop: "stdPackQty" ,isNumber:true},
|
|
{ label: "箱码", prop: "packingCode" },
|
|
{ label: "批次", prop: "lot" },
|
|
{ label: "库存库位", prop: "inventoryLocationCode" },
|
|
{ label: "库位代码", prop: "locationCode" },
|
|
{ label: _Names.locationErpCode, prop: "locationErpCode" },
|
|
{ label: "库区", prop: "locationArea" },
|
|
{ label: "库位组", prop: "locationGroup" },
|
|
{ label: "供应商批次", prop: "supplierBatch" },
|
|
{ label: "盘点描述", prop: 'countDescription' },
|
|
{ label: "盘点操作员", prop: 'countOperator' },
|
|
{ label: "盘点时间", prop: "countTime",type: "dateTime" },
|
|
{ label: "到货日期", prop: "arriveDate",type: "dateTime" },
|
|
{ label: "生产日期", prop: "produceDate",type: "dateTime" },
|
|
{ label: "过期时间", prop: "expireDate",type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "创建时间", prop: "creationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 盘点记录
|
|
export const CountNote = [
|
|
{
|
|
label: "盘点记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "是否已生成盘点调整申请", prop: "adjusted", type: "tagFilter", filters: "whetherOrNot" },
|
|
{ label: "盘点计划单号", prop: "countPlanNumber", width: orderWidth },
|
|
{ label: "盘点任务单号", prop: "countJobNumber", width: orderWidth },
|
|
{ label: "开始时间", prop: "beginTime", type: "dateTime" },
|
|
{ label: "结束时间", prop: "endTime", type: "dateTime" },
|
|
{ label: "操作员", prop: 'worker',},
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "类型", prop: "type", type: "filter", filters: "checkType" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type:'dateTime' },
|
|
{ label: "生效时间", prop: "activeDate", type: "dateTime" },
|
|
{ label: "描述", prop: "description" },
|
|
]
|
|
|
|
// 盘点调整申请
|
|
export const CountPlanAdjust = [
|
|
{
|
|
label: "盘点调整申请单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", type: "tagFilter", filters: "requestStatus", prop: "requestStatus" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "盘点记录单号", prop: 'countNoteNumber', width: orderWidth },
|
|
{ label: "盘点计划单号", prop: "countPlanNumber",width: orderWidth },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "生效时间", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type:'dateTime' },
|
|
]
|
|
|
|
// 盘点调整记录
|
|
export const CountAdjustNote = [
|
|
{
|
|
label: "盘点调整单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "盘点记录单号", prop: 'countNoteNumber',width: orderWidth },
|
|
{ label: "盘点计划单号", prop: 'countPlanNumber', width: orderWidth },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime",showProp: true },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "类型", prop: "type" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type:'dateTime',showProp: true },
|
|
{ label: "生效时间", prop: "activeDate", type: "dateTime" },
|
|
]
|
|
|
|
// 消息管理
|
|
/**/
|
|
// 消息类型
|
|
export const MessageType = [
|
|
{
|
|
label: "消息类别代码",
|
|
prop: "messageTypeCode",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: "300px"
|
|
},
|
|
{ label: "消息类别名称", prop: "messageTypeName" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime",showProp: true },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type:'dateTime',showProp: true },
|
|
{ label: "消息使用的邮件模板名称", prop: "emailTemplate" },
|
|
{ label: "消息使用的短信模板名称", prop: "smsTemplate" },
|
|
{ label: "是否发送邮件", prop: "isSendEmail", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "是否发送短信", prop: "isSendSms", type: "filter", filters: "whetherOrNot" },
|
|
]
|
|
|
|
// 系统权限管理
|
|
/**/
|
|
// 部门信息维护
|
|
export const Department = [
|
|
{
|
|
label: "部门代码",
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "部门名称", prop: "name" },
|
|
{ label: "描述", prop: "description" },
|
|
{ label: "备注", prop: 'remark' },
|
|
]
|
|
|
|
// 外部数据转换
|
|
export const dataExchangeFromOut = [
|
|
{ label: _Dashboard.number, prop: "number" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.dataType, prop: "dataType", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.tableType, prop: "tableType" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction" },
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.status, prop: "status" },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.sourceDataId, prop: "sourceDataId" },
|
|
{ label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable",showProp:true },
|
|
{ label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
{ label: _Dashboard.writer, prop: "writer" },
|
|
{ label: _Dashboard.destinationSystem, prop: "destinationSystem", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.destinationDataId, prop: "destinationDataId" },
|
|
{ label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
{ label: _Dashboard.reader, prop: "reader" },
|
|
{ label: _Dashboard.errorCode, prop: "errorCode" },
|
|
{ label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
]
|
|
|
|
// 归档外部数据转换
|
|
export const dataExchangeFromOut_file = [
|
|
{ label: _Dashboard.number, prop: "number" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.dataType, prop: "dataType" },
|
|
{ label: _Dashboard.tableType, prop: "tableType" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction" },
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.status, prop: "status" },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
{ label: _Dashboard.sourceDataId, prop: "sourceDataId" },
|
|
{ label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode" },
|
|
{ label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode" },
|
|
{ label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
{ label: _Dashboard.writer, prop: "writer" },
|
|
{ label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
{ label: _Dashboard.destinationDataId, prop: "destinationDataId" },
|
|
{ label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
{ label: _Dashboard.reader, prop: "reader" },
|
|
{ label: _Dashboard.errorCode, prop: "errorCode" },
|
|
{ label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
]
|
|
|
|
// WMS数据接收
|
|
export const comingToWms = [
|
|
{ label: _Dashboard.number, prop: "number" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.dataType, prop: "dataType" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction" },
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.status, prop: "status" },
|
|
{ label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
{ label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
{ label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
{ label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
{ label: _Dashboard.errorCode, prop: "errorCode" },
|
|
{ label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
]
|
|
|
|
// 归档WMS数据接收
|
|
export const comingToWms_file = [
|
|
{ label: _Dashboard.number, prop: "number" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.dataType, prop: "dataType" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction" },
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.status, prop: "status" },
|
|
{ label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
{ label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
{ label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
{ label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
{ label: _Dashboard.errorCode, prop: "errorCode" },
|
|
{ label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
]
|
|
|
|
// WMS数据转换
|
|
export const dataExchangeFromWms = [
|
|
{ label: _Dashboard.number, prop: "number" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.dataType, prop: "dataType" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction" },
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.status, prop: "status" },
|
|
{ label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
{ label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
{ label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
{ label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
{ label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
{ label: _Dashboard.errorCode, prop: "errorCode" },
|
|
{ label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
]
|
|
|
|
// 归档WMS数据转换
|
|
export const dataExchangeFromWms_file = [
|
|
{ label: _Dashboard.number, prop: "number" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.dataType, prop: "dataType" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction" },
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.status, prop: "status" },
|
|
{ label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
{ label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
{ label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
{ label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
{ label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
{ label: _Dashboard.errorCode, prop: "errorCode" },
|
|
{ label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
]
|
|
|
|
// 外部数据接收
|
|
export const comingFromOut = [
|
|
{ label: _Dashboard.number, prop: "number" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.dataType, prop: "dataType" },
|
|
{ label: _Dashboard.tableType, prop: "tableType" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction" },
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.status, prop: "status" },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
{ label: _Dashboard.sourceDataId, prop: "sourceDataId" },
|
|
{ label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode" },
|
|
{ label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode" },
|
|
{ label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
{ label: _Dashboard.writer, prop: "writer" },
|
|
{ label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
{ label: _Dashboard.destinationDataId, prop: "destinationDataId" },
|
|
{ label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
{ label: _Dashboard.reader, prop: "reader" },
|
|
{ label: _Dashboard.errorCode, prop: "errorCode" },
|
|
{ label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
]
|
|
|
|
// 归档外部数据接收
|
|
export const comingFromOut_file = [
|
|
{ label: _Dashboard.number, prop: "number" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.dataType, prop: "dataType" },
|
|
{ label: _Dashboard.tableType, prop: "tableType" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction" },
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.status, prop: "status" },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
{ label: _Dashboard.sourceDataId, prop: "sourceDataId" },
|
|
{ label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode" },
|
|
{ label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode" },
|
|
{ label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
{ label: _Dashboard.writer, prop: "writer" },
|
|
{ label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
{ label: _Dashboard.destinationDataId, prop: "destinationDataId" },
|
|
{ label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
{ label: _Dashboard.reader, prop: "reader" },
|
|
{ label: _Dashboard.errorCode, prop: "errorCode" },
|
|
{ label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
]
|
|
|
|
// exchangeData批量操作页面
|
|
export const exchangeDataMaintenancePage = [
|
|
{ label: _Public.id, prop: "id" },
|
|
{ label: 'tyrpNumber', prop: "tyrpNumber" },
|
|
{ label: _Dashboard.dataAction, prop: "dataAction"},
|
|
{ label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
{ label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
{ label: _Dashboard.dataType, prop: "dataType", type:"showDetail",showProp:true },
|
|
{ label: _Dashboard.destinationSystem, prop: "destinationSystem", type:"showDetail" ,showProp:true},
|
|
{ label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
{ label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
{ label: _Public.remark, prop: "remark", type:"showDetail" ,showProp:true},
|
|
{ label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
{ label: _Public.creatorId, prop: "creatorId" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime",type:'dateTime' },
|
|
{ label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
{ label: _Names.tenantId, prop: "tenantId" },
|
|
]
|
|
|
|
// 器具
|
|
export const Utensil = [
|
|
{
|
|
label: '器具代码',
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "器具类型", prop: 'type',type:"filter",filters:"utensilType" },
|
|
{ label: "器具规格", prop: "model",type: "filter", filters: "getDict" , dictType:"ContainerSpecificationsType"},
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: '创建人', prop: "creator" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
]
|
|
|
|
// 总成量份
|
|
export const Kitting = [
|
|
{
|
|
label: 'Kitting编码',
|
|
prop: "code",
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: 'Kitting编码描述', prop: 'name' },
|
|
{ label: '底盘打包数量', prop: 'chassisQty' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
]
|
|
|
|
// 空器具呼叫任务
|
|
export const callEmptyUtensilJob = [
|
|
{
|
|
label: "任务编号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "器具呼叫号码", prop: 'containerRequestNumber' },
|
|
{ label: "器具类型", prop: 'containerType',type:"filter",filters:"utensilType" },
|
|
{ label: "器具规格", prop: "specificationsType",type: "filter", filters: "getDict" , dictType:"ContainerSpecificationsType"},
|
|
{ label: "呼叫库位代码", prop: 'requestLocationCode' },
|
|
{ label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "完成时间", prop: 'completeTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type:'dateTime' },
|
|
]
|
|
|
|
// 完工转储记录(注塑)
|
|
export const completDumpNoteZS = [
|
|
{ label: "记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
]
|
|
|
|
// 完工转储记录(喷涂)
|
|
export const completDumpNotePT = [
|
|
{ label: "记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
]
|
|
|
|
// 完工转储记录(装配)
|
|
export const completDumpNoteZP = [
|
|
{ label: "记录单号",
|
|
prop: "number",
|
|
fixed: "left",
|
|
type: "name",
|
|
width: orderWidth
|
|
},
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type:"dateTime" },
|
|
]
|
|
|
|
// 注塑计划
|
|
// export const IssuePlanZS = [
|
|
// {
|
|
// label: "注塑计划号",
|
|
// prop: "number",
|
|
// fixed: "left",
|
|
// width: orderWidth
|
|
// },
|
|
// { label: "计划说明", prop: 'remark',width:"auto" },
|
|
// { label: "版本号", prop: 'version' },
|
|
// { label: "状态", prop: "requestStatus",type: "tagFilter", filters: "planStatus_ZS",width:"auto" },
|
|
// { label: "计划日期", prop: 'planTime', type: "dateTime",width:"auto"},
|
|
// ]
|
|
|
|
// 注塑申请
|
|
export const IssueRequestZS = [
|
|
{ label: "请求单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "状态", prop: "requestStatus", type: "filter", filters: "requestStatus" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
// { label: "来源库位列表", prop: 'fromLocationCodeJsonList',type:"showDetail",isJson:true,showProp:true },
|
|
// { label: "目标库位代码", prop: "toLocationCode" },
|
|
// { label: _Names.toErpCode, prop: "toLocationErpCode" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 注塑任务
|
|
export const IssueJobZS = [
|
|
{ label: "任务单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: "injectionRequestNumber" },
|
|
{ label: "状态", prop: "jobStatus",type: "filter", filters: "jobStatus" },
|
|
{ label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
// { label: "要货单号", prop: 'kittingRequestNumber'},
|
|
{ label: "是否已承接", prop: "isClaims", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "承接者用户名", prop: 'claimsUserName' },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime',type: "dateTime" },
|
|
// { label: "任务描述", prop: 'jobDescription' },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
// { label: "备注", prop: "remark" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 注塑记录
|
|
export const IssueNoteZS = [
|
|
{ label: "记录单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: 'requestNumber' },
|
|
{ label: "任务单号", prop: 'jobNumber' },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 喷涂申请
|
|
export const IssueRequestPT = [
|
|
{ label: "请求单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "状态", prop: "requestStatus", type: "filter", filters: "requestStatus" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 喷涂任务
|
|
export const IssueJobPT = [
|
|
{ label: "任务单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: "coatingRequestNumber" },
|
|
{ label: "状态", prop: "jobStatus",type: "filter", filters: "jobStatus" },
|
|
{ label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "是否已承接", prop: "isClaims", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "承接者用户名", prop: 'claimsUserName' },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime',type: "dateTime" },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 喷涂记录
|
|
export const IssueNotePT = [
|
|
{ label: "记录单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: 'requestNumber' },
|
|
{ label: "任务单号", prop: 'jobNumber' },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 装配申请
|
|
export const IssueRequestZP = [
|
|
{ label: "请求单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "状态", prop: "requestStatus", type: "filter", filters: "requestStatus" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 装配任务
|
|
export const IssueJobZP = [
|
|
{ label: "任务单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: "assembleRequestNumber" },
|
|
{ label: "状态", prop: "jobStatus",type: "filter", filters: "jobStatus" },
|
|
{ label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "是否已承接", prop: "isClaims", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "承接者用户名", prop: 'claimsUserName' },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime',type: "dateTime" },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 装配记录
|
|
export const IssueNoteZP = [
|
|
{ label: "记录单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: 'requestNumber' },
|
|
{ label: "任务单号", prop: 'jobNumber' },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 备品申请
|
|
export const IssueRequestBP = [
|
|
{ label: "请求单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "状态", prop: "requestStatus", type: "filter", filters: "requestStatus" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 备品任务
|
|
export const IssueJobBP = [
|
|
{ label: "任务单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: "sparePartRequestNumber" },
|
|
{ label: "状态", prop: "jobStatus",type: "filter", filters: "jobStatus" },
|
|
{ label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "是否已承接", prop: "isClaims", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "承接者用户名", prop: 'claimsUserName' },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime',type: "dateTime" },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 备品记录
|
|
export const IssueNoteBP = [
|
|
{ label: "记录单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: 'requestNumber' },
|
|
{ label: "任务单号", prop: 'jobNumber' },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// kitting请求
|
|
export const KittingIssueRequest = [
|
|
{ label: "请求单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "状态", prop: "requestStatus", type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// kitting任务
|
|
export const KittingIssueJob = [
|
|
{ label: "任务单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: "kittingRequestNumber" },
|
|
{ label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" },
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "是否已承接", prop: "isClaims", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "承接者用户名", prop: 'claimsUserName' },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: 'completeTime',type: "dateTime" },
|
|
{ label: "生产线", prop: 'prodLine' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// kitting记录
|
|
export const KittingIssueNote = [
|
|
{ label: "记录单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: 'requestNumber',width: orderWidth },
|
|
{ label: "任务单号", prop: 'jobNumber' },
|
|
{ label: "叫料请求来源", prop: "issueRequestType", type: "filter", filters: "issueRequestType" },
|
|
{ label: "叫料发货类型", prop: "enumIssueSendType", type: "filter", filters: "enumIssueSendType" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 业务库移申请
|
|
export const transferLibRequest = [
|
|
{ label: "申请编号", prop: "number",type:"name",fixed: "left", },
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: "调拨类型", prop: 'type' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
]
|
|
|
|
// 业务库移任务
|
|
export const transferLibJob = [
|
|
{ label: "任务编号", prop: "number",type:"name",fixed: "left", },
|
|
{ label: "申请单号", prop: 'requestNumber' },
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "调拨类型", prop: 'type' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: 'confirmTime' },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
]
|
|
|
|
// 业务库移记录
|
|
export const transferLibNote = [
|
|
{ label: "记录编号", prop: "number",type:"name",fixed: "left", },
|
|
{ label: "申请单号", prop: 'requestNumber' },
|
|
{ label: "任务单号", prop: 'jobNumber' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: 'confirmTime',type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "创建时间", prop: "creationTime",type: "dateTime" },
|
|
]
|
|
|
|
// 三方库申请
|
|
export const ThirdLocationRequest = [
|
|
{ label: "申请单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "状态", prop: "requestStatus",type: "tagFilter", filters: "requestStatus" },
|
|
{ label: _Public.remark, prop: "remark" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 三方库任务
|
|
export const ThirdLocationJob = [
|
|
{ label: "任务单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: 'requestNumber' },
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
// { label: "任务类型", prop: "jobType", type: "filter", filters: "taskType" },
|
|
{ label: "是否已承接", prop: "isClaims", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "承接者用户名", prop: 'claimsUserName' },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
// { label: "完成者用户名", prop: 'completeUserName' },
|
|
// { label: "完成时间", prop: 'completeTime', type: "dateTime" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "备注", prop: 'remark' },
|
|
// { label: "任务描述", prop: 'jobDescription' },
|
|
// { label: "工作组", prop: 'workGroupCode' },
|
|
// { label: "优先级", prop: 'priority' },
|
|
// { label: "优先级增量", prop: 'priorityIncrement' },
|
|
// { label: "上游任务编号", prop: 'upStreamJobNumber' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 三方库记录
|
|
export const ThirdLocationNote = [
|
|
{ label: "记录单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: 'requestNumber',width: orderWidth },
|
|
{ label: "任务单号", prop: 'jobNumber',width: orderWidth },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: "是否已承接", prop: "isClaims", type: "filter", filters: "whetherOrNot" },
|
|
{ label: "承接者用户名", prop: 'claimsUserName' },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "发料时间", prop: 'issueTime', type: "dateTime" },
|
|
{ label: "收货时间", prop: 'receiptTime', type: "dateTime" },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 客户退货记录
|
|
export const customerReturnNote = [
|
|
{ label: "记录单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "操作员", prop: 'worker' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 页面锁定控制
|
|
export const pageLock = [
|
|
{ label: "菜单编码", prop: "menuCode", fixed: "left", type: "name" },
|
|
{ label: "用户信息", prop: "userAccount" },
|
|
{ label: "登录时间", prop: "loginTime", type: "dateTime" },
|
|
{ label: "备注", prop: 'remark' },
|
|
{ label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
|
|
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 底盘查询
|
|
export const chassisList = [
|
|
{
|
|
label: "底盘号",
|
|
prop: 'chassisNumber',
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "Wms编号", prop: 'number' },
|
|
{ label: "底盘生产时间", prop: 'produceDateTime', type: "dateTime" },
|
|
{ label: "接收接口时间", prop: 'receiveInterfaceDateTime', type: "dateTime" },
|
|
{ label: "执行位置排序列", prop: 'sortNumber' },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "描述", prop: "description" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 底盘执行位置序列
|
|
export const chassisOperationSequence = [
|
|
{
|
|
label: "底盘号",
|
|
prop: 'chassisNumber',
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "kitting代码", prop: 'kittingCode' },
|
|
{ label: "Kitting执行底盘序列位置", prop: 'chassisSortNumber',width:"220px" },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// kitting打包记录
|
|
export const KittingPackagingNote = [
|
|
{
|
|
label: "单号",
|
|
prop: 'number',
|
|
fixed: "left",
|
|
type: "name"
|
|
},
|
|
{ label: "kitting代码", prop: 'kittingCode' },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "生效日期", prop: 'activeDate', type: "dateTime" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// kitting打包记录 - 扫描明细
|
|
export const KittingPackagingDepDetails = [
|
|
{ label: _Names.itemCode, prop: "itemCode", fixed: "left" },
|
|
{ label: _Names.itemName, prop: "itemName" },
|
|
{ label: _Names.itemDesc1, prop: "itemDesc1" },
|
|
{ label: _Names.itemDesc2, prop: "itemDesc2" },
|
|
{ label: "底盘号", prop: "chassisNumber" },
|
|
{ label: "底盘号排序序列", prop: "chassisSortNumber" },
|
|
{ label: "kitting代码", prop: 'kittingCode' },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 【pad】业务库移
|
|
export const isPadForTransferLibJob = [
|
|
{ label: "任务单号", prop: "number", fixed: "left", type: "name" },
|
|
{ label: "申请单号", prop: 'requestNumber',width: orderWidth },
|
|
{ label: "状态", prop: "jobStatus",type: "tagFilter", filters: "jobStatus" },
|
|
{ label: "回调服务名称", prop: "callServerName" },
|
|
{ label: "回调业务类型", prop: "callBusinessType" },
|
|
{ label: "传入申请单号", prop: "callRequestNumber" },
|
|
{ label: "传入任务单号", prop: "callJobNumber" },
|
|
{ label: "任务描述", prop: 'jobDescription' },
|
|
{ label: "使用在途库", prop: 'useOnTheWayLocation', type: "filter", filters: "whetherOrNot" },
|
|
{ label: "已确认", prop: 'confirmed',type: "filter", filters: "whetherOrNot" },
|
|
{ label: "确认时间", prop: 'confirmTime' },
|
|
{ label: "备注", prop: "remark" },
|
|
{ label: "操作员", prop: "worker" },
|
|
{ label: "承接用户", prop: "acceptUserName" },
|
|
// { label: "承接时间", prop: 'acceptTime', type: "dateTime" },
|
|
{ label: "完成者用户名", prop: 'completeUserName' },
|
|
{ label: "完成时间", prop: "completeTime", type: "dateTime" },
|
|
{ label: "创建时间", prop: 'creationTime', type: "dateTime" },
|
|
{ label: "上次修改时间", prop: "lastModificationTime", type: "dateTime" },
|
|
]
|
|
|
|
// 字段说明
|
|
// showProp: true //隐藏该字段的高级筛选+列表排序
|
|
// sortable: false //隐藏该字段的列表排序
|
|
// type:showDetail //此类型点击弹窗所有信息,适用于接口监控看板等文本过长使用
|
|
// type:showJsonTable //此类型点击弹窗可以以表格的形式看解析的json,适用于接口监控看板中json数据等
|