| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367 |
- export default {
- /**
- * @description 配置显示在浏览器标签的title
- */
- title: '东科MES系统',
- /**
- * @desc : 登录界面的副标题
- * @author : 周兴
- * @date : 2023/7/17 17:08
- */
- loginSubTitle: '东科智能业务运行支撑系统·厂商云',
- /**
- * @description token在Cookie中存储的天数,默认1天
- */
- cookieExpires: 1,
- /**
- * @description 是否使用国际化,默认为false
- * 如果不使用,则需要在路由中给需要在菜单中展示的路由设置meta: {title: 'xxx'}
- * 用来在菜单中显示文字
- */
- useI18n: false,
- /**
- * @description 默认打开的首页的路由name值,默认为home
- */
- homeName: 'home',
- /**
- * @description 需要加载的插件
- */
- plugin: {
- 'error-store': {
- showInHeader: true, // 设为false后不会在顶部显示错误日志徽标
- developmentOff: true // 设为true后在开发环境不会收集错误信息,方便开发中排查错误
- }
- },
- //加载成功
- SUCCESS_CODE: 200,
- //异常提示
- ERROR_CODE_2009: 2009,
- ERROR_CODE_2010: 2010,
- ERROR_CODE_2011: 2011,
- //扫码登录ClientId
- qvScanClientId: null,
- dkAuthIframePage: null,
- dkAuthSysUrl: null,
- dkAuthSysServerUrl: null,
- sysUuid: '00000002-b4ac-4912-a4c5-0945a775647f',
- appUuid: '6d2208ba-7ca9-41b2-96d3-b39a109ba811',
- appRegistMenuUuid: 'd891a6cc-8a94-47dd-8bda-2cfddee0710f',// pda数据采集的
- appReportMenuUuid: 'd891a6cc-8a94-47dd-8bda-2cfddee0710f',// pda数据采集的
- redirectUrl: null,
- dkMallUrl: 'https://ibossmp.dongkesoft.com:7050/', /* 菜单查询的类型 1:change 2:Enter */
- searchMenuType: 1,
- logLoginPw: 'dkno1',
- //这几个属性保留
- uploadUrl: '',
- logsUrl: '',
- imgUrl: '',
- hgImgUrl: '',
- websocketUrl: '',
- LOGIN_PAGE_NAME: [],
- loginType: 1,
- serviceUrl: '',
- releaseTime: '',
- selectLimit: 10, // 下拉所限制的条数
- editTableInitRows: 10, //初始行数
- columnWidth: 150, //表格的默认列宽
- columnWidthMin: 100, //表格的最小列宽
- maxNumber: 100000000, // 数字类可输入的最大值
- maxDisplayNo: 46656,// 序号最大值
- minNumber: 0,// 数字类可输入的最小值
- maxlength: 100, // 文本类可输入的最大长度
- exportMax: 100000,// 导出的最大值
- pageSize: 500, // 一页数量
- maxPageSize: 10000000,// 最大数量
- fontSize: 12, // 字体大小
- maxTagCount: 2, // 下拉显示的默认数量
- maxDiscount: 999.99,//折扣的最大值
- textAreaMaxLength: 1000,// 备注文本框的最大值
- currentLang: 'zh-CN', // 默认语言
- tagNavCurrentColor: '#2D8CF0',// 当前tab的颜色 2E406B
- reportMenuUUid: 'd39c5119-bc0b-4f80-b118-cf539bd35bae',// 报表的菜单Id
- customReportUuid: '19fb9e00-2b88-4f35-aeb2-1aca012c8950',// 动态报表的菜单Id
- type: '分类',
- customCondition: '自定义报表-条件',
- //语言类型
- languages: [
- {key: 'zh-CN', name: '简体中文', label: '简体中文', value: 'zh_CN'},
- {key: 'en-US', name: 'English', label: 'English', value: 'en_US'},
- ]
- ,
- //字体
- fontSizes: [
- {key: '12', label: '小'},
- {key: '13', label: '中'},
- {key: '14', label: '大'},
- ]
- ,
- //字体
- fontAppSizes: [
- {key: 'normal', name: '小', label: '小'},
- {key: 'middle', name: '中', label: '中'},
- {key: 'large', name: '大', label: '大'},
- ]
- ,
- //日期(月,日,年
- dateTypeList: [
- {key: 'd', name: '日', label: '日'},
- {key: 'm', name: '月', label: '月'},
- {key: 'y', name: '大', label: '大'},
- ]
- ,
- // 查询条件(日期范围)类型
- rangeSelList: [
- {value: 1, label: '今天'},
- {value: 2, label: '昨天'},
- {value: 3, label: '本周'},
- {value: 4, label: '近一周'},
- {value: 5, label: '上一周'},
- {value: 6, label: '本月'},
- {value: 7, label: '近一月'},
- {value: 8, label: '上一月'},
- {value: 9, label: '本账务月'},
- {value: 10, label: '上账务月'},
- {value: -1, label: '自定义'},
- ],
- // 查询条件(月份范围)类型
- rangeSelMonthList: [
- {value: 6, label: '本月'},
- {value: 7, label: '近一月'},
- {value: 8, label: '上一月'},
- {value: 9, label: '本账务月'},
- {value: 10, label: '上账务月'},
- {value: -1, label: '自定义'},
- ],
- // 查询条件日期范围取值默认值
- rangeSel: {
- today: {value: 1, label: '今天'},
- yesterday: {value: 2, label: '昨天'},
- thisWeek: {value: 3, label: '本周'},
- nearlyWeek: {value: 4, label: '近一周'},
- beforeWeek: {value: 5, label: '上一周'},
- thisMonth: {value: 6, label: '本月'},
- nearlyMonth: {value: 7, label: '近一月'},
- beforeMonth: {value: 8, label: '上一月'},
- thisAccountMonth: {value: 9, label: '本账务月'},
- beforeAccountMonth: {value: 10, label: '上账务月'},
- custom: {value: -1, label: '自定义'},
- },
- //按钮图标
- buttonIcon: {
- search: {icon: 'search'},
- add: {icon: 'new'},
- addUser: {icon: 'new'},
- edit: {icon: 'edit'},
- editDetail: {icon: 'edit'},
- editPrinter: {icon: 'edit'},
- clear: {icon: 'clear'},
- resetPassword: {icon: 'reset'},
- resetCpPassword: {icon: 'reset'},
- wxLocked: {icon: 'jiebang'},
- unLock: {icon: 'unlock'},
- unCpLock: {icon: 'unlock'},
- moduleRights: {icon: 'functionRight'},
- scopeRights: {icon: 'purview'},
- sync: {icon: 'tongbu'},
- refresh: {icon: 'refresh'},
- save: {icon: 'save'},
- enable: {icon: 'qiyong'},
- disable: {icon: 'tingyong'},
- editPwd: {icon: 'editPassword'},
- revert: {icon: 'reverse'},
- check: {icon: 'chakan'},
- reception: {icon: 'gongwujiedai'},
- follow: {icon: 'genjinkehu'},
- returnAndExchangeGoods: {icon: 'tuihuanhuo'},
- approve: {icon: 'shenpi'},
- toExamine: {icon: 'check'},
- resign: {icon: 'man-out'},
- resignTransfer: {icon: 'fenpeijiaose'},
- print: {icon: 'print'},
- openAccount: {icon: 'kaihuzhongxin'},
- stopAccount: {icon: 'tingyong1'},
- pull: {icon: 'tongbu1'},
- measuringStickReceipt: {icon: 'celianggongju1'},
- saveDms: {icon: 'chaosong'},
- getDms: {icon: 'shengchanjindu'},
- kujialeDesign: {icon: 'celianggongju1'},
- saleReturn: {icon: 'xiaoshoutuihuo'},
- saleReturnReverse: {icon: 'zuofei'},
- designFile: {icon: 'baojia'},
- orderDeposit: {icon: 'dingjin'},
- followTask: {icon: 'process'},
- import: {icon: 'import'},
- downloadTemplate: {icon: 'download'},
- draw: {icon: 'takeAmount'},
- collection: {icon: 'receive'},
- delete: {icon: 'reverse'},
- syncCustomer: {icon: 'tongbu1'},
- syncResume: {icon: 'rizhi'},
- submitForCensorship: {icon: 'songshen'},
- export: {icon: 'export'},
- saleRefund: {icon: 'refund'},
- orderRefund: {icon: 'refund'},
- processSetting: {icon: 'celianggongju1'},
- importPrinter: {icon: 'import'},
- layoutSetting: {icon: 'celianggongju1'},
- searchSet: {icon: 'celianggongju1'},
- dimission: {icon: 'man-out'},
- updateUsedCycle: {icon: 'refresh'},
- reverse: {icon: 'reverse'},
- scrap: {icon: 'scrap'},
- decreaseAllNoCheck: {icon: 'scrap'},
- moldDamage: {icon: 'scrap'},
- change: {icon: 'change'},
- mouldChangeStdNum: {icon: 'change'},
- modelMouldChange: {icon: 'change'},
- createMould: {icon: 'new2'},
- prodCheck: {icon: 'check2'},
- bindBarcode: {icon: 'bangding'},
- revokeBindBarcode: {icon: 'unlink'},
- install: {icon: 'new'},
- uninstall: {icon: 'tingyong'},
- allNoCheck: {icon: 'check'},
- changeModel: {icon: 'change'},
- climbKiln: {icon: 'new'},
- uninstallKiln: {icon: 'tingyong'},
- batchResettingKiln: {icon: 'reset'},
- finish: {icon: 'finish'},
- close: {icon: 'close'},
- moldingUserReplace: {icon: 'changeUser'},
- chooseBarCode: {icon: 'finish'},
- loadLimit: {icon: 'limit'},
- carryover: {icon: 'banjie'},
- reverseCarryover: {icon: 'revert'},
- leave: {icon: 'sign'},
- setLogoColour: {icon: 'change'},
- log:{icon:'rizhi'},
- },
- /**
- * @desc : 数据类型
- * @author : 周兴
- * @date : 2022/3/19 21:17
- */
- dataType: {
- //文本
- str: 'string',
- //数值
- number: 'number',
- //日期
- date: 'date',
- //日期+时间
- dateTime: 'dateTime',
- // 数组
- array: 'array',
- // 实体
- object: 'object'
- },
- /**
- * @desc : 数据类型数据源
- * @author : 周兴
- * @date : 2023/3/27 17:20
- */
- dataTypeList: [
- {value: 'string', name: '文本'},
- {value: 'number', name: '数值'},
- {value: 'date', name: '日期'},
- {value: 'dateTime', name: '时间'},
- {value: 'switch', name: '开关'},
- ],
- noAccessPage: ['echarts'],
- /**
- * @desc : 功能菜单
- * @author : 周兴
- * @date : 2023/8/17 14:01
- */
- objectCodes: {
- // 班组
- workTeam: 'work-team',
- // 成型线-分组
- moldlineGroup: 'moldline-group',
- // 成型线-模具
- moldlineItem: 'moldline-item',
- // 报工项目
- workProjectItem: 'work-project-item',
- // 仓库
- warehousePlace: 'warehouse-place',
- // 模具型号
- modelMouldOutput: 'model-mould-output',
- // 产品型号(erp)
- modelProduct: 'model-pdt-erp',
- // 载具型号
- modelCarrier:'model-carrier-range',
- // 物料BOM
- materialBomItem: 'material-bom-item',
- // 工位 - 工位工号
- workStationUser: 'work-station-user',
- // 工位 - 工位打印机
- workStationPrinter: 'work-station-printer',
- // 模具台账
- mould: 'mould',
- // 模具盘点
- mouldCheck: 'mould-check',
- // 模具结转
- mouldCarryover: 'mould-carryover',
- // 打卡记录
- wsClockItem: 'ws-clock-item',
- // 报工单-报工员工
- workBookStaff: 'work-book-staff',
- // 报工单-报工明细
- workBookItem: 'work-book-item',
- // 生产订单
- produceOrderItem: 'produce-order-item',
- // 产成品挂起
- prodSuspendItem: 'prod-suspend-item',
- // 在制品盘点
- prodCheck: 'prod-check',
- // 在制品结转
- prodCarryover: 'prod-carryover',
- // 产品实验单
- prodExperimentItem :'prod-experiment-item',
- // 角色用户
- roleUser :'role-user',
- // 菜单
- menu :'menu',
- // 出窑工序策略
- outKilnStrategyItem :'out-kiln-strategy-item',
- // 作业指导书使用位置
- workSopDetail :'work-sop-detail',
- // 节点
- processNode :'process-node',
- // 条码规则
- barcodeSet :'set-items'
- },
- /**
- * @desc : 系统基础数据类型
- * @author : 周兴
- * @date : 2022/3/9 10:28
- */
- basicTypeCode: {
- dealingCorp: '往来单位类型',
- channel: '销售渠道',
- settlementPoint: '采购结算时点',
- sex: '性别',
- national: '民族',
- supplierType: '供应商类型',
- warehouseType: '仓库标识',
- organizationType: '部门类型',
- staff: '员工',
- salesMode: '商品流通方式',
- flgEstimate: '计量标识',
- salesChannel: '销售渠道',
- invoiceType: '发票类型',
- customerNature: '客户性质',
- settlementCustomer: '结算客户',
- relationShip: '联系人关系',
- maritalStatus: '婚姻状况',
- politicalStatus: '政治面貌',
- educational: '学历',
- post: '基础-职务',
- job: '基础-岗位',
- role: '基础-角色',
- organization: '组织机构',
- company: '公司',
- user: '用户',
- noticeClass: '公告类别',
- taxNature: '公司纳税性质',
- approvalType: '审批拒绝再送审处理方式',
- kilnCarPlace: '窑车位置',
- passwordSecurity: '密码安全',
- mould: '成型模具'
- },
- /**
- * @desc : 数据字典类型
- * @author : 周兴
- * @date : 2023/2/1 9:37
- */
- dictionaryType: {
- // 设备类型
- equipmentType: 'equipment-type',
- // 窑炉类型
- kilnType: 'kiln-type',
- // 成型线类型
- moldingType: 'molding-type',
- // 模具原料
- carrierMaterial: 'carrier-material',
- // 未成型原因
- unformedReason: 'unformed-reason',
- // 工艺类别
- processType: 'process-type',
- // 工序类别
- nodeType: 'node-type'
- },
- /**
- * @desc : 粘贴方式
- * @date : 2023/3/13 9:39
- * @author : 寇珊珊
- */
- pdtGlueKindType: {
- notHave: '无',
- grouping: '分组粘接',
- group: '组内粘接',
- },
- /**
- * @desc : 窑车状态表 字段
- * @date : 2023/3/13 9:39
- * @author : 王英杰
- */
- KilnCarStatusText: {
- KilnCarProducts: '窑车产品',
- productionData: '生产数据',
- },
- /**
- * @desc : 工序类型
- * @date : 2023/3/9 10:17
- * @author : 寇珊珊
- */
- processType: {
- productCode: '节点操作-产品码',
- dressKilnCar: '节点操作-装载具',
- unloadKilnCar: '节点操作-卸载具',
- exchangeKilnCar: '节点操作-换载具',
- kilnCode: '节点操作-载具码',
- special: "节点操作-特殊",
- quantity: "节点操作-数量",
- carCode: '节点操作-载具码',
- },
- /**
- * @desc : 计件类型
- * @date : 2023/3/13 9:39
- * @author : 寇珊珊
- */
- registerType: {
- singleProduct: '节点计件-单品',
- batch: '节点计件-批量',
- quantity: '节点计件-数量',
- special: '节点计件-特殊',
- },
- /**
- * @desc : 操作用户类型
- * @date : 2023/3/13 13:23
- * @author : 寇珊珊
- */
- operationUserType: {
- operationUser: '节点工号-操作',
- produceUser: '节点工号-生产',
- },
- /**
- * @desc : 工序节点异常码
- * @date : 2023/3/9 15:28
- * @author : 寇珊珊
- */
- processTypeException: {
- CHKCAR007: 'CHK-CAR-007',
- CHKCAR008: 'CHK-UNS-008',
- CHKCAR009: 'CHK-UNS-009',
- },
- /**
- * @desc : 产品等级
- * @date : 2023/3/16 9:42
- * @author : 寇珊珊
- */
- limitKindsType: {
- product: '装载限制-产品',
- logo: '装载限制-商标',
- color: '装载限制-色釉',
- material: '装载限制-物料',
- number: '装载限制-数量',
- },
- /**
- * @desc : 页面类型
- * @author : 周兴
- * @date : 2023/10/10 15:48
- */
- pageType:{
- // 单一列表
- single:'single',
- // 上下列表
- upDown:'upDown',
- // 多列切换
- moreCol:'moreCol',
- // 多页签类型
- tab:'tab'
- },
- /**
- * @desc : 产品等级
- * @date : 2023/3/16 9:42
- * @author : 寇珊珊
- */
- gradeKindType: {
- flaw: '产品等级-瑕',
- inferior: '产品等级-劣',
- decrease: '产品等级-损',
- goodProduct: '产品等级-良',
- excellent: '产品等级-优',
- },
- /**
- * @desc : 工序撤销固定节点码
- * @date : 2023/3/9 15:28
- * @author : 寇珊珊
- */
- reverseNodeId: {
- id: '00000000-0000-0000-0000-000000000001',
- },
- /**
- * @desc : 工序撤销标识
- * @date : 2023/3/9 15:28
- * @author : 寇珊珊
- */
- reverseFlgUndo: {
- flg: true,
- },
- /**
- * @desc : 在产盘点盘点状态
- * @date : 2023/3/24 13:12
- * @author : 寇珊珊
- */
- prodCheckCheckKind: {
- notCounted: '盘点状态-未',
- counted: '盘点状态-已',
- inventoryProfit: '盘点状态-盈',
- decrease: '盘点状态-亏',
- },
- /**
- * @desc : 模具状态
- * @date : 2023/3/28 14:01
- * @author : 寇珊珊
- */
- mouldCheckKind: {
- mouldKindInTheLibrary: '模具状态-在库',
- inTheLibrary: '在库',
- mouldKindInProduction: '模具状态-在产',
- inProduction: '在产',
- mouldKindToBeDelivered: '模具状态-待产',
- toBeDelivered: '待产',
- },
- /**
- * @desc : 条码规则
- * @date : 2023/6/19 16:50
- * @author : 寇珊珊
- */
- barCodeTypes: {
- text: '生码项类-文本',
- number: '生码项类-流水',
- date: '生码项类-日期',
- },
- /**
- * @desc : 数据字典类型
- * @author : 常皓宁
- * @date : 2023/2/7 10:37
- */
- dicCode: {
- // 窑炉类型
- kilnDicCode: '设备-窑炉类型',
- // 成型线类型
- moldingDicCode: '设备-成线类型',
- // 模具原料
- carrierMaterialDicCode: '模具-模具原料',
- // 未成型原因
- unformedReasonDicCode: '生产-未成型原因',
- // 工艺类别
- processTypeDicCode: '生产-工艺类别',
- // 生产-工序类别
- nodeTypeDicCode: '生产-工序类别',
- },
- /**
- * @desc : 报表状态
- * @author : 周兴
- * @date : 2023/4/3 15:48
- */
- reportStatus: {
- confirm: '报表-发布',
- temp: '报表-暂存',
- },
- /**
- * @desc : 用户表格类型(用于表格设置)
- * @author : 周兴
- * @date : 2023/4/4 14:20
- */
- userTableType: {
- // 页面
- page: 1,
- // 放大镜
- magnifier: 2,
- // 表格放大镜
- tableSelect: 3
- },
- /**
- * @desc : 菜单的页面代码
- * @author : 周兴
- * @date : 2023/1/12 11:06
- */
- formCode: {
- // 产品缺陷
- productDefect: 'product-defect',
- // 损坯原因
- productDamage: 'product-damage',
- // 开模损原因
- moldDamageReason: 'mold-damage-reason',
- // 模具型号
- modelMould: 'model-mould',
- // 物料型号
- modelMaterial: 'model-material',
- // 载具型号
- modelCarrier: 'model-carrier',
- // 窑炉类型
- modelTypeKiln: 'model-type-kiln',
- // 窑车类型
- modelTypeCar: 'model-type-car',
- // 成型线类型
- modelTypeMoldline: 'model-type-moldline',
- // 设备型号
- modelEquipment: 'model-equipment',
- // 产品型号
- modelProduct: 'model-product',
- // 模具型号模板
- modelMouldLayout: 'model-mould-layout',
- // 物料型号模板
- modelMaterialLayout: 'model-material-layout',
- // 载具型号模板
- modelCarrierLayout: 'model-carrier-layout',
- // 设备型号模板
- modelEquipmentLayout: 'model-equipment-layout',
- // 产品型号模板
- modelProductLayout: 'model-product-layout',
- // 成型记录
- moldingRecord: 'molding-record',
- // 开模报损
- moldDamage: 'mold-damage',
- // 生产工位
- workStation: 'work-station',
- // 工位打印机
- stationPrinter: 'station-printer',
- //温湿度计
- thmeterRecord: 'thmeter-record',
- // 报工记录
- workRecord: 'work-record',
- // 自主报工
- workBook: 'work-book',
- // 统一报工
- workBookTogether: 'work-book-together',
- // 报工审核
- workBookAudit: 'work-book-audit',
- },
- /**
- * @desc : 缺陷类别
- * @author : 夏常明
- * @date : 2023/1/12 11:25
- */
- defectKind: {
- //产品缺陷
- Defect: '缺陷类别-质量',
- //损坯
- Damage: '缺陷类别-损坯',
- //开模损原因
- moldDamageReason: '缺陷类别-开模',
- },
- /**
- * @desc : 数据种类编码
- * @author : 夏常明
- * @date : 2023/2/28 15:19
- */
- kindCode: {
- product: '型号种类-产品',
- matter: '型号种类-物料',
- },
- /**
- * @desc : 数据种类
- * @author : 夏常明
- * @date : 2023/1/30 16:17
- */
- kindType: {
- defectType: '缺陷类别',
- productGrade: '产品等级',
- modelKind: '型号种类',
- modelLabel: '验证标签',
- modelCategory: '型号种类',
- staffStatus: '员工状态',
- mouldKind: '模具状态',
- materialType: '原料类型',
- userBindKindGroup: '成线工号-线组',
- nodeNumber: '节点工号',
- halfCheck: '工艺节点-半检',
- finishCheck: '工艺节点-成检',
- bookWay: '报工方式',
- bookStatus: '单据状态',
- qualityType:'质量类型',
- checkType:'检验类型',
- },
- /**
- * @desc : 产品erp型号-产品bom/产品型号验证标签
- * @author : 夏常明
- * @date : 2023/2/1 13:04
- */
- modelProductTab: {
- modelPdtErp: 'modelPdtErp',
- modelPdtLabel: 'modelPdtLabel',
- },
- /**
- * @desc : 班组信息/用户权限
- * @author : 姜宁
- * @date : 2023/2/7 15:37
- */
- userDetailTab: {
- workTeam: 'workTeam',
- userRight: 'userRight',
- },
- /**
- * @desc : 绑定用户/工位打印机
- * @author : 姜宁
- * @date : 2023/2/7 15:37
- */
- workStationDetailTab: {
- workStationUser: 'workStationUser',
- workStationPrinter: 'workStationPrinter',
- },
- /**
- * @desc : 模具产出
- * @author : 姜宁
- * @date : 2023/2/7 15:37
- */
- mouldDetailTab: {
- mouldOutput: 'mouldOutput',
- },
- /**
- * @desc : 在产结转明细
- * @author : 姜宁
- * @date : 2023/3/21 15:42
- */
- prodCarryoverItemTab: {
- prodCarryoverItem: 'prodCarryoverItem',
- },
- /**
- * @desc : 原料结转明细
- * @author : 洪旭东
- * @date : 2023-11-30 09:14
- */
- materialCarryoverItemTab: {
- materialCarryoverItem: 'materialCarryoverItem',
- },
- /**
- * @desc : 产品跟踪明细
- * @author : 姜宁
- * @date : 2023/4/14 14:34
- */
- productFollowItemTab: {
- productFollowItem: 'productFollowItem',
- },
- /**
- * @desc : 模具跟踪明细
- * @author : 姜宁
- * @date : 2023/4/14 14:34
- */
- mouldFollowItemTab: {
- mouldFollowItem: 'mouldFollowItem',
- },
- /**
- * @desc : 生产工号
- * @author : 姜宁
- * @date : 2023/2/7 15:37
- */
- userTab: {
- pdtUserTab: 'pdtUserTab',
- },
- /**
- * @desc : 商标釉色设定
- * @author : 夏常明
- * @date : 2023/2/21 13:30
- */
- logoOrColour: {
- colour: 'colour',
- logo: 'logo',
- },
- /**
- * @desc : 班组信息/用户权限
- * @author : 姜宁
- * @date : 2023/2/7 15:37
- */
- searchDataEnum: {
- flgMoldingTrue: '成型',
- flgMoldingFalse: '未成型',
- flgBindUniqueTrue: '绑码',
- flgBindUniqueFalse: '未绑码',
- flgScrapTrue: '损坯',
- flgScrapFalse: '未损坯',
- flgExperimentTrue: '有效',
- flgExperimentFalse: '无效',
- experimentTrue: '实验产品',
- experimentFalse: '正常产品',
- flgDeliveryTrue: '交胚',
- flgDeliveryFalse: '未交胚',
- },
- /**
- * @desc : 有显示顺序的表
- * @author : 周兴
- * @date : 2023/1/6 13:09
- */
- displayNoTable: {
- // 工种
- job: {model: 'core', table: 't_job'},
- // 商品规格
- specification: {model: 'apm', table: 't_model_specification'},
- // 职务
- post: {model: 'core', table: 't_post'},
- // 角色
- role: {model: 'core', table: 't_role'},
- // 釉色
- productColour: {model: 'mst', table: 't_product_colour'},
- // 缺陷分类
- productDefectType: {model: 'mst', table: 't_product_defect_type'},
- // 品牌
- productBrand: {model: 'mst', table: 't_product_brand'},
- // 产品分级
- productGrade: {model: 'mst', table: 't_product_grade'},
- // 产品商标
- productLogo: {model: 'mst', table: 't_product_logo'},
- // 标签打印机
- labelPrinter: {model: 'mst', table: 't_label_printer'},
- // 标签打印机模板
- labelPrinterLayout: {model: 'mst', table: 't_label_print_layout'},
- // 产品位置
- productPlace: {model: 'mst', table: 't_product_place'},
- // 组织部门
- organization: {model: 'core', table: 't_organization'},
- // 工厂区域
- factorySpace: {model: 'mst', table: 't_factory_space'},
- // 产品缺陷
- productDefect: {model: 'mst', table: 't_product_defect'},
- // 工厂
- factory: {model: 'core', table: 't_factory'},
- // 型号类别
- modelCategory: {model: 'mst', table: 't_model_category'},
- // 产品型号验证标签
- modelPdtLabel: {model: 'mst', table: 't_model_pdt_label'},
- // 窑车位置
- kilnCarPlace: {model: 'mst', table: 't_kiln_car_place'},
- // 产品视图
- productView: {model: 'mst', table: 't_product_view'},
- // 缺陷扣罚
- productDefectFine: {model: 'mst', table: 't_product_defect_fine'},
- // 窑炉
- kiln: {model: 'mst', table: 't_kiln'},
- // 数据字典
- dictionaryData: {model: 'core', table: 't_dictionary_data'},
- // 窑车
- kilnCarNo: {model: 'mst', table: 't_kiln_car'},
- //产品图片
- productViewImage: {model: 'mst', table: 't_product_view_image'},
- //打印模板分类
- labelPrintType: {model: 'mst', table: 't_label_print_type'},
- // 工艺流程
- processFlow: {model: 'pdm', table: 't_process_flow'},
- // 自定义报表
- customReport: {model: 'rpt', table: 't_custom_report'},
- // 计量单位
- modelUnits: {model: 'mst', table: 't_model_units'},
- // 报工项目
- workProject: {model: 'mst', table: 't_work_project'},
- //自定义表单下拉
- customSelectType:{model: 'mst', table: 't_custom_select_type'},
- //烘干房管理
- dryingRoom:{model: 'mst', table: 't_dry_room'},
- //母模组
- motherMoldGroup:{model: 'mst', table: 't_mother_mould_group'},
- //母模
- motherMold:{model: 'mst', table: 't_mother_mould'},
- //省市区
- area:{model: 'mst', table: 't_area'},
- },
- /**
- * @desc : 出库状态
- * @author : 周兴
- * @date : 2022/6/24 17:42
- */
- outStatus: {
- noOut: '出库状态-未出',
- part: '出库状态-部分',
- allOut: '出库状态-完成'
- },
- /**
- * @desc : 查询的类型
- * @author : 周兴
- * @date : 2022/6/29 8:28
- */
- searchFlag: {
- //总单
- total: 0,
- //明细
- detail: 1
- },
- /**
- * @desc : 组合促销
- * @author : 周兴
- * @date : 2022/6/5 19:26
- */
- promotionType: {
- // 正常品
- sku: 0,
- // 单品促销
- promotion: 1,
- // 组合促销
- combined: 2,
- },
- /**
- * @desc : 自定义报表类型
- * @author : 姜宁
- * @date : 2023/4/6 9:59
- */
- reportType: {
- // pc端
- pc: 1,
- // 移动端
- app: 2,
- },
- /**
- * @desc : 自定义报表类型名称
- * @author : 姜宁
- * @date : 2023/4/6 10:16
- */
- reportTypeName: {
- // pc端
- pc: 'pc端',
- // 移动端
- app: '移动端',
- },
- /**
- * @desc : 自定义报表所在位置
- * @author : 姜宁
- * @date : 2023/4/6 9:59
- */
- position: {
- // 主查询
- mainSearch: 1,
- // 筛选
- secondarySearch: 2,
- },
- /**
- * @desc : 默认工厂Id
- * @date : 2023/6/5 14:37
- * @author : 寇珊珊
- */
- defaultFty: {
- id: 0,
- },
- /**
- * @desc : 自定义报表所在位置名称
- * @author : 姜宁
- * @date : 2023/4/6 9:59
- */
- positionName: {
- // 主查询
- mainSearch: '主查询',
- // 筛选
- secondarySearch: '筛选',
- },
- /**
- * @desc : 数据字典
- * @author : 姜宁
- * @date : 2023/2/7 14:54
- */
- dictType: {
- materialType: '模具-模具原料',
- unmoldedReason: '生产-未成型原因',
- nodeType: '生产-工序类别',
- techType: '生产-工艺类别',
- moldlineTag: '生产-成型标签',
- returnReason: '出库-退货原因',
- scrapReason: '报损-损失原因',
- },
- /**
- * @desc : 系统单据
- * @author : 周兴
- * @date : 2022/3/17 11:25
- */
- docCode: {
- company: '财务主体',
- organization: '组织机构',
- customer: '客户资料',
- supplier: '供应商',
- staff: '员工',
- middleMan: '中间客户',
- dealingCorp: '往来单位',
- goods: '商品档案',
- warehouse: '仓库',
- costItem: '费用项目',
- address: '小区档案',
- bom: 'BOM配置',
- capitalAccount: '资金账户',
- orderFee: '订单费用',
- deposit: '订单定金',
- customerCollection: '客户收款',
- useCollection: '使用收款',
- customerWithdrawal: '客户取款',
- orderOut: '销售出库',
- orderOutReturn: '销售退货',
- standardPrice: '商品标价',
- promotionPrice: '单品促销',
- combinedPrice: '组合套餐',
- nonGlassPrice: '非标标价',
- order: '销售订单',
- refund: '退款单',
- },
- /**
- * @desc : 查询条件中有效标识
- * @author : 周兴
- * @date : 2023/1/29 10:14
- */
- flgValidSearch: {
- itemCode: 'flgValidList',
- valueFormat: {
- data: [
- {valueKey: 'true', flgValid: '有效'},
- {valueKey: 'false', flgValid: '无效'}],
- valueKey: 'valueKey',
- labelKey: 'flgValid',
- default: ['true']
- },
- valueKind: 'M-CHOICE'
- },
- /**
- * @desc : 查询条件中有效标识(全部)
- * @author : 周兴
- * @date : 2023/1/29 10:14
- */
- flgValidAllSearch: {
- itemCode: 'flgValidList',
- valueFormat: {
- data: [
- {valueKey: 'true', flgValid: '有效'},
- {valueKey: 'false', flgValid: '无效'}],
- valueKey: 'valueKey',
- labelKey: 'flgValid',
- default: ['true','false']
- },
- valueKind: 'M-CHOICE'
- },
- /**
- * @desc : 单据编码
- * @author : 周兴
- * @date : 2022/3/15 17:18
- */
- pageCode: {
- 'system-setting': '系统参数-一览',
- 'operation-log': '操作日志-一览',
- 'form-setting': '表单设计-一览',
- 'audit-setting': '审批设置-一览',
- 'print-setting': '打印票据-一览',
- 'workflow-setting': '工作流程设置-一览',
- 'operation-flow-setting': '业务流程设置-一览',
- 'print-control': '打印控制-一览',
- 'dictionary': '数据字典-一览',
- 'organization': '组织机构-一览',
- 'role': '角色管理-一览',
- 'staff': '员工-一览',
- 'customer': '客户-一览',
- 'supplier': '供应商-一览',
- 'dealing-corp': '往来单位-一览',
- 'middle-man': '中间客户-一览',
- 'address': '小区档案-一览',
- 'goods-unit': '计量单位-一览',
- 'goods-attribute': '商品属性-一览',
- 'goods': '商品档案-一览',
- 'bom': 'BOM配置-一览',
- 'warehouse': '仓库档案-一览',
- 'custom-tag': '标签管理-一览',
- 'fee-item': '费用项目-一览',
- 'capital-account': '资金账户-一览',
- 'init-data': '初始化数据-一览',
- 'init-setting': '初始化设置-一览',
- 'goods-basic': '商品资料-一览',
- 'finance-basic': '财务资料-一览',
- 'invoice-purview-settings': '单据范围权限设置-一览',
- 'invoice-design': '单据设计-一览',
- 'user-invoice-purview-settings': '员工单据范围权限设置-一览',
- 'user': '用户-一览',
- 'job': '岗位-一览',
- 'sensitive': '敏感权限-一览',
- 'model-category': '型号类别-一览',
- },
- /**
- * @desc : 放大镜枚举
- * @author : 周兴
- * @date : 2022/3/16 14:42
- */
- MagnifierType: {
- staff: 'staff',
- teamStaff: 'teamStaff',
- user: 'user',
- organization: 'organization',
- company: 'company',
- noticeClass: 'noticeClass',
- customTags: 'customTags',
- goodsAttribute: 'goodsAttribute',
- goodsCategory: 'goodsCategory',
- customer: 'customer',
- customerOrder: 'customerOrder',
- dictionary: 'dictionary',
- channel: 'channel',
- role: 'role',
- job: 'job',
- post: 'post',
- goodsSpecs: 'goodsSpecs',
- order: 'order',
- receipt: 'receipt',
- estate: 'estate',
- promotion: 'promotion',
- combined: 'combined',
- settlementType: 'settlementType',
- store: 'store',
- goods: 'goods',
- skuForNon: 'skuForNon',
- product: 'product',
- mould: 'mould',
- modelMould: 'modelMould',
- //物料型号
- modelMaterial: 'modelMaterial',
- moldlineGroup: 'moldlineGroup',
- //上卸模-成型线分组
- moldlineGroupByMouldManager: 'moldlineGroupByMouldManager',
- productCode: 'productCode',
- processNode: 'processNode',
- // 成型线
- moldline: 'moldline',
- //工号变更选择成型线
- jobNumberChangeMoldline: 'jobNumberChangeMoldline',
- // 产品信息(条码变更)
- productNodeChange: 'productNodeChange',
- // 产品釉色设定
- productColour: 'productColour',
- // 产品商标设定
- productLogoColour: 'productLogoColour',
- // 查询成型产品型号
- getProductModel: 'getProductModel',
- //用户、打卡
- userAndClock: 'userAndClock',
- //产品类别
- modelCategory: 'modelCategory',
- //窑炉
- kilnCode: 'kilnCode',
- //工位工号(工位打卡选择用户)
- stationUser: 'stationUser',
- //工位
- station: 'station',
- workUser: 'workUser',
- //工艺流程
- processFlow: 'processFlow',
- //产品等级
- productGrade: 'productGrade',
- //产品缺陷
- productDefect: 'productDefect',
- //产品类别(在产品明细报表)
- modelCategoryReport: 'modelCategoryReport',
- //模具类别
- getModelCategoryByPage: 'getModelCategoryByPage',
- //模具编码
- getModelMouldByPage: 'getModelMouldByPage',
- //湿温度计
- thmeterRecordByPage: 'thmeterRecordByPage',
- //报工工种
- workJob: 'workJob',
- //获取员工用于报工记录查询
- getStaffWithWork: 'getStaffWithWork',
- //可判分级-检验模型
- judgeGrade: 'judgeGrade',
- //型号种类 成型线类型
- moldlineType: 'moldlineType',
- //数据字典
- dictionaryData: 'dictionaryData',
- //报工项目
- workBook: 'workBook',
- //产品型号、物料型号
- modelBase: 'modelBase',
- //产品型号
- modelProduct: 'modelProduct',
- //仓库
- warehouse: 'warehouse',
- //仓位
- warehousePlace: 'warehousePlace',
- //理化检验
- physicalCollect: 'physicalCollect',
- },
- /**
- * @desc : 报工类型
- * @author : 付斌
- * @date : 2023/6/25 17:13
- */
- projectKind: {
- shuLiang: '报工类型-数量',
- jinE: '报工类型-金额',
- zhiLiang: '报工类型-质量'
- },
- /**
- * @desc : 报工明细类型
- * @author : 付斌
- * @date : 2023/6/25 17:13
- */
- workBookItemKind: {
- guDing: '报工明细-固定',
- ziTian: '报工明细-自填',
- wu: '报工明细-无'
- },
- /**
- * @desc : 设计状态
- * @author : 周兴
- * @date : 2022/6/17 17:13
- */
- designStatus: {
- // yes:'设计状态-待设计',
- yes: '设计状态-需要',
- no: '设计状态-无需'
- },
- /**
- * @desc : 收款完成
- * @author : 周兴
- * @date : 2022/6/17 17:17
- */
- receiptStatus: {
- no: '收款状态-未收',
- part: '收款状态-部分',
- all: '收款状态-完成'
- },
- /**
- * @desc : 成型记录履历类型
- * @author : 夏常明
- * @date : 2023/3/1 13:26
- */
- moldingItemHisType: {
- modelBefore: -4,//型号(变更前)
- modelAfter: 4,//型号(变更后)
- },
- /**
- * @desc : 表格中的选择类型
- * @author : 周兴
- * @date : 2022/3/20 14:33
- */
- tableSelectType: {
- user: 'user',
- organization: 'organization',
- goods: 'goods',
- job: 'job',
- post: 'post',
- staff: 'staff',
- mould: 'mould',
- productPlace: 'productPlace',
- product: 'product',
- carrier: 'carrier',
- defect: 'defect',
- processNode: 'processNode',
- blameUser: 'blameUser',
- addProduct: 'addProduct',
- modelMould: 'modelMould',
- prodExperimentProduct: 'prodExperimentProduct',
- productNodeChange: 'productNodeChange',
- modelId: 'modelId',
- //物料型号
- modelMaterial: 'modelMaterial',
- //仓库
- warehouse: 'warehouse',
- //仓位
- warehousePlace: 'warehousePlace',
- },
- /**
- * @desc : 选择类型
- * @author : 周兴
- * @date : 2022/3/17 14:22
- */
- searchType: {
- //多选
- multiple: 'M',
- //单选
- single: 'S'
- },
- /**
- * @desc : 退款类型(大类)
- * @author : 周兴
- * @date : 2022/10/20 10:47
- */
- refundFlag: {
- // 无
- no: 0,
- // 东科
- dk: 1,
- // 万维
- ww: 2
- },
- /**
- * @desc : 退款类型(入口)
- * @author : 周兴
- * @date : 2022/10/21 8:40
- */
- refundType: {
- // 客户退款
- customer: 11,
- // 销售退款
- order: 12
- },
- /**
- * @desc : ERP退款类型
- * @author : 周兴
- * @date : 2022/10/20 10:38
- */
- erpRefundType: {
- // 无系统对接退预存
- noPreStore: 1,
- // 无系统对接退货款
- noReceive: 2,
- // 无系统对接退定金
- noEarnest: 3,
- // 东科退预存(余额)
- prestore_dk: 11,
- // 东科退定金
- earnest_dk: 12,
- // 东科退货款
- receive_dk: 13,
- // 万维退预存
- prestore_ww: 21,
- // 万维退货款
- receive_ww: 22,
- },
- /**
- * @desc : 工号类型
- * @author : 周兴
- * @date : 2023/3/12 16:52
- */
- userKind: {
- // 操作
- operate: '节点工号-操作',
- // 生产
- product: '节点工号-生产'
- },
- opnKind: {},
- /**
- * @desc : 画面模式
- * @author : 周兴
- * @date : 2022/3/19 21:17
- */
- formMode: {
- //新建
- add: 'add',
- //新建其它
- addTogether: 'addTogether',
- //编辑
- edit: 'edit',
- //复制
- copy: 'copy',
- //批量
- batch: 'batch',
- //查看
- detail: 'detail',
- // 审批
- approval: 'approval',
- // 退款
- refund: 'refund',
- // 更新财年
- updateUsedCycle: 'updateUsedCycle',
- // 上模
- install: 'install',
- // 选择
- choose: 'choose',
- // 开模报损
- moldDamage: 'moldDamage',
- // 更改商标釉色
- setLogoColour: 'setLogoColour',
- //设置缺陷位置
- setDefectPlace: 'setDefectPlace',
- //结转
- carryover: 'carryover',
- //盘点
- prodCheck: 'prodCheck',
- // 变更模具标准次数
- mouldChangeStdNum: 'mouldChangeStdNum',
- //装载具
- climbKiln: 'climbKiln',
- //验证标签
- label: 'label',
- //模具型号变更
- modelMouldChange: 'modelMouldChange',
- //批量重置载具
- batchResettingKiln: 'batchResettingKiln',
- // 历史
- history: 'history',
- },
- /**
- * @desc : 树形节点展开的模式
- * @author : 周兴
- * @date : 2022/5/11 16:19
- */
- expandMode: {
- //所有
- all: 'all',
- //所有一级展开
- one: 'one',
- //第一个节点展开到最末端
- oneDeep: 'oneDeep',
- //不展开
- none: 'none'
- },
- /**
- * @desc : 列类型
- * @author : 周兴
- * @date : 2022/3/19 21:17
- */
- columnType: {
- //文本
- str: 'string',
- //数值
- number: 'number',
- //日期
- date: 'date',
- //日期+时间
- dateTime: 'dateTime',
- // 数组
- array: 'array',
- // 日期(年月)
- dateMonth: 'dateMonth',
- },
- /**
- * @desc : 商品属性
- * @author : 周兴
- * @date : 2022/3/9 10:28
- */
- goodsAttribute: {
- goodsVariety: '商品属性-品种',
- goodsBrand: '商品属性-品牌',
- goodsCategory: '商品属性-种类',
- goodsSeries: '商品属性-系列',
- goodsGrade: '商品属性-等级',
- goodsSpec: '商品属性-规格',
- },
- /**
- * @desc : 项目分类类型 1:总单 2:明细 3:
- * @author : 姜永辉
- * @date : 2022/3/19 17:12
- */
- classType: {
- 'order': '总单',
- 'detail': '明细',
- },
- /**
- * @desc : 主页抽屉类型
- * @author : 周兴
- * @date : 2022/8/20 13:25
- */
- homeDrawType: {
- // 待审中心
- waitAudit: 0,
- // 系统公告
- notice: 1,
- },
- /**
- * @desc : 特殊类型
- * @author : 周兴
- * @date : 2022/8/24 9:32
- */
- specialType: {
- // 普通
- common: {value: 0, label: '客意品类-普通'},
- // 定制
- custom: {value: 1, label: '客意品类-定制'},
- // 智能
- intellect: {value: 2, label: '客意品类-智能'},
- },
- /**
- * @desc : 有效标识
- * @author : 周兴
- * @date : 2022/4/11 15:19
- */
- flgValid: {
- //有效
- valid: 1,
- //无效
- unValid: 0,
- },
- /**
- * @desc : 商品类别
- * @author : 周兴
- * @date : 2022/4/10 10:17
- */
- goodsType: {
- //商品
- goods: 0,
- //套件(子件)
- sub: 1,
- //BOM
- bom: 2
- },
- /**
- * @desc : 单据值类型
- * @author : 姜永辉
- * @date : 2022/3/18 9:55
- */
- docValueKind: {
- userInput: 'USER_INPUT',//用户输入
- dicData: 'DIC_DATA',//数据字典
- basicData: 'BASIC_DATA',//基础数据(需要注意范围权限
- },
- /**
- * @desc : 单据值类型
- * @author : 姜永辉
- * @date : 2022/3/18 9:55
- */
- docUserInput: {
- 'int': 'INT',//整数
- 'num': 'NUM',//数值
- 'str': 'STR',//文本
- 'txt': 'TXT',//多行文本
- 'bool': 'BOOL',//布尔
- 'time': 'TIME',//时间
- 'date': 'DATE',//日期
- 'datetime': 'DATETIME',//日时
- 'dateRange': 'DATE_RANGE',// 日期范围
- 'dateTimeRange': 'DATETIME_RANGE',// 日时范围
- 'monthRange': 'MONTH_RANGE',// 月份范围
- 'month': 'MONTH',// 月份
- 'mSearch': 'M-SEARCH',// 多选放大镜
- 'sSearch': 'S-SEARCH',// 单选放大镜
- 'sChoice': 'S-CHOICE', // 单选下拉
- 'mChoice': 'M-CHOICE', // 多选下拉
- 'radio': 'RADIO', //radio
- },
- /**
- * @desc : 系统类型
- * @author : 洪旭东
- * @date : 2022-05-09 16:32
- */
- sysType: {
- SYS_HEGII: 1,
- SYS_MERCHANT: 2,
- CP_HEGII: 1,
- password_security_policy: 1
- },
- /**
- * @desc : 用户类型
- * @date : 2022/5/14 9:45
- * @author : 寇珊珊
- */
- userType: {
- // 文员
- staffUser: 1,
- // 生产工号
- workTeam: 2,
- // 接口用户
- ApiUser: -1,
- },
- /**
- * @desc : 产品等级
- * @author : 夏常明
- * @date : 2023/2/23 11:22
- */
- gradeKind: {
- good: '产品等级-优',
- fine: '产品等级-良',
- bad: '产品等级-瑕',
- low: '产品等级-劣',
- unChange: '产品等级-合',
- damage: '产品等级-损',
- },
- /**
- * @desc : 授权类型
- * @author : 姜宁
- * @date : 2023/2/3 15:26
- */
- rightType: {
- addUser: 1,
- refuseUser: -1,
- },
- /**
- * @desc : 应用代码
- * @author : 周兴
- * @date : 2023/2/14 15:32
- */
- appCode: {
- // PC端
- WEB_MAIN: 'WEB-MAIN',
- // 移动端
- PDA_PROD: 'PDA-PROD',
- },
- /**
- * @desc : 系统参数
- * @author : 洪旭东
- * @date : 2022-05-11 16:27
- */
- sysCode: {
- SYS_CODE_001: 'PWD_001',
- SYS_CODE_002: 'PWD_002',
- SYS_CODE_003: 'PWD_003',
- SYS_CODE_010: 'PWD_010',
- SYS_CODE_011: 'PWD_011',
- SYS_CODE_012: 'PWD_012',
- SYS_CODE_013: 'PWD_013',
- SYS_CODE_014: 'PWD_014',
- SYS_CODE_015: 'PWD_015',
- SYS_CODE_016: 'PWD_016',
- },
- /**
- * @desc : 订单参数
- * @date : 2022/5/31 16:21
- * @author : 寇珊珊
- */
- orderAllocation: {
- orderAll: 'orderAll',
- priceOrder: 'priceOrder',
- thisMonthOrder: 'thisMonthOrder',//暂时注掉‘本月订单’
- dealOrder: 'dealOrder',
- myOrder: 'myOrder',//暂时注掉'我的订单'
- customDesign: 'customDesign',
- followOrder: 'followOrder',
- docCode: '销售订单',
- orderType: 1, //报价单
- designStatusNo: '设计状态-无需',
- designStatusYes: '设计状态-需要',
- designStatusString: '不需要设计',
- allDesign: 'allDesign',
- toBeDesigned: 'toBeDesigned',
- designed: 'designed',
- determineDesign: 'determineDesign',
- toBeDesignedZh: '设计状态-待设计',
- designedZh: '设计状态-已设计',
- determineDesignZh: '设计状态-确定',
- orderStatus: '订单状态-通过',
- collection: 1,//收款
- draw: -1,//取款
- check: 0,// 查看
- customerCollection: '客户收款',//客户收款
- customerDraw: '客户取款',//客户取款
- receiptDirectionString: '定金',//定金
- },
- /**
- * @desc : 订单类型
- * @author : 周兴
- * @date : 2022/7/16 8:47
- */
- orderType: {
- // 退款单 -2
- refund: -2,
- // 退货单
- return: -1,
- //报价单
- quote: 1,
- //销售订单
- order: 2,
- //跟单
- follow: 3,
- //冲正
- reverse: 4
- },
- /**
- * @desc : erp推送状态
- * @author : 周兴
- * @date : 2022/7/13 11:44
- */
- erpPushStatus: {
- // 未推送
- no: 0,
- //推送成功
- success: 1,
- //推送失败
- fail: 2,
- //推送异常
- error: 3
- },
- /**
- * @desc : 订单状态
- * @author : 周兴
- * @date : 2022/6/21 16:31
- */
- orderStatus: {
- quote: '订单状态-报价',
- waitAudit: '订单状态-待审',
- done: '订单状态-通过',
- refuse: '订单状态-拒绝',
- reverse: '订单状态-冲正',
- },
- /**
- * @desc : 审批状态
- * @date : 2022/9/1 13:57
- * @author : 寇珊珊
- */
- apvResultStatus: {
- adopt: '审-通过',
- },
- /**
- * @desc : 审批状态
- * @author : 周兴
- * @date : 2022/6/21 16:31
- */
- approvalStatus: {
- waitAudit: '审-待审',
- done: '审-通过',
- refuse: '审-拒绝',
- error: '审-异常',
- auditing: '审-审中'
- },
- /**
- * @desc : 标识(是万维还是东科)
- * @author : 周兴
- * @date : 2022/11/14 14:27
- */
- linkPsiSystem: {
- 'DK-IBOSS': 'DK-IBOSS',
- 'WANWEI-PSI': 'WANWEI-PSI',
- },
- /**
- * @desc : 订单明细参数
- * @date : 2022/5/31 19:26
- * @author : 寇珊珊
- */
- orderDetailAllocation: {
- goodsDetail: 'goodsDetail',//货物明细
- collectionDetail: 'collectionDetail',//收款明细
- approvalDetail: 'approvalDetail',//审批明细
- filesDetail: 'filesDetail',//文件列表
- inventory: 'inventory', //产品清单
- designScheme: 'designScheme',//设计方案
- customerMessage: 'customerMessage',//客户信息
- },
- /**
- * @desc : 打印模板数据源
- * @author : 张潇木
- * @date : 2022-5-13 13:02
- */
- printTemplateDataSource: [
- {
- label: '销售订单',
- value: '销售订单',
- dataSource: {
- main: [
- {title: '订单号', key: 'no', value: 'DKRJ2022021000001'},
- {title: '客户名称', key: 'consumerName', value: '员工A'},
- {title: '客户电话', key: 'consumerTelephone', value: '17640177992'},
- {title: '客户地址', key: 'consumerAddress', value: '辽宁省沈阳市浑南区国际软件园F9东科软件'},
- {title: '订单状态', key: 'orderStatus', value: '完成'},
- {title: '备注', key: 'remarks', value: '备注备注备注'}
- ],
- detail: [
- {title: '产品名称', key: 'productName', value: '浴室柜 BC6017-090 木合金'},
- {title: '产品编码', key: 'productCode', value: 'BC6017-090'},
- {title: '色号', key: 'batchNo', value: '洁白'},
- {title: '规格', key: 'specBeforeValue', value: '900×485×185mm'},
- {title: '产品数量', key: 'unprocessedQuantity', value: '1'},
- {title: '备注', key: 'remark', value: '主柜颜色:绅士灰,镜柜颜色:哑光黑'},
- ]
- },
- tableColTemp: [
- {
- title: '产品名称',
- key: 'productName',
- width: 15,
- fontSize: 14,
- align1: 'center',
- align2: 'center',
- fontStyle: false,
- bold: false,
- },
- {
- title: '产品编码',
- key: 'productCode',
- width: 20,
- fontSize: 14,
- align1: 'center',
- align2: 'center',
- fontStyle: false,
- bold: false,
- },
- {
- title: '色号',
- key: 'batchNo',
- width: 15,
- fontSize: 14,
- align1: 'center',
- align2: 'center',
- fontStyle: false,
- bold: false,
- },
- {
- title: '规格',
- key: 'specBeforeValue',
- width: 15,
- fontSize: 14,
- align1: 'center',
- align2: 'center',
- fontStyle: false,
- bold: false,
- },
- ]
- },
- ],
- /**
- * @desc : 打印模板纸张类型
- * @author : 张潇木
- * @date : 2022-5-13 13:10
- */
- paperTypeList: [
- {label: '自定义', value: '0', width: 0, height: 0},
- {label: 'A4 (210mm x 297mm)', value: 1, width: 210, height: 297},
- {label: 'A5 (148mm x 210mm)', value: 2, width: 148, height: 210},
- {label: 'B5 (176mm x 250mm)', value: 3, width: 176, height: 250},
- ],
- uploadFileConfig: {
- maxSize: 2048,//图片大小的最大值 2MB 2048kb
- acceptPicType: 'image/png,image/jpeg,image/jpg',// 接受上传的图片类型
- acceptVideoType: 'video/mp4,video/avi,video/mov',// 接受上传的视频类型
- acceptExcel: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel ',
- acceptPdf: 'application/pdf',
- },
- /**
- * @desc : 组织类型-样式
- * @author : 姜永辉
- * @date : 2022/4/20 9:27
- */
- orgTypeNameStyle: {
- /**
- * @desc : 公司
- * @author : 姜永辉
- * @date : 2022/4/20 9:28
- */
- company: {color: '#fff', background: '#108ffe'},
- /**
- * @desc : 职能部门
- * @author : 姜永辉
- * @date : 2022/4/20 9:28
- */
- orgainzation: {color: '#fff', background: '#EE885C'},
- /**
- * @desc : 零售门店
- * @author : 姜永辉
- * @date : 2022/4/20 9:28
- */
- store: {color: '#fff', background: '#87CEFA'},
- /**
- * @desc : 部门类型-其他
- * @author : 姜永辉
- * @date : 2022/4/20 13:43
- */
- orgTypeOther: {color: '#fff', background: '#DA70D6'},
- /**
- * @desc : 部门类型-总公司
- * @author : 姜永辉
- * @date : 2022/4/20 13:44
- */
- parentCompany: {color: '#fff', background: '#108ffe'},
- /**
- * @desc : 部门类型-分销商
- * @author : 姜永辉
- * @date : 2022/4/20 13:44
- */
- distribution: {color: '#fff', background: '#90EE90'},
- },
- /**
- * @desc : 数据字典类型
- * @author : 洪旭东
- * @date : 2022-05-23 17:25
- */
- dictionaryItemCode: {
- customerClass: '客户-客户分类',
- customerfitupStyle: '客户-装修风格',
- customerFitupType: '客户-装修类型',
- customerAgeComposition: '客户-年龄构成',
- customerDecisionMaker: '客户-决策者',
- customerType: '客户-客户类型',
- customerHouseType: '客户-房屋类型',
- promotionPriceType: '促销-促销分类',
- glassThickness: '商品-玻璃厚度',
- glassCraft: '商品-玻璃工艺',
- substrateColor: '商品-基材颜色',
- usedLocation: '销售-使用位置',
- deliveryType: '销售-交货方式',
- loseReason: '客户-流失原因',
- bank: '销售-开户行',
- rejectReasonType: '销售-退货类别'
- },
- /**
- * @desc : 系统字典类型
- * @author : 周兴
- * @date : 2023/3/15 9:24
- */
- dataKind: {
- checkLabel: '验证标签',
- pieceKind: '节点计件',
- flowKind: '节点流程',
- nodeSysTags: '节点标签',
- opnKind: '节点操作',
- userKind: '节点工号',
- defectType: '缺陷类别',
- checkKind: '盘点状态',
- mouldKind: '模具状态',
- mouldSource: '模具来源',
- mouldOperate: '模具操作',
- moldlineKind: '成线状态',
- moldlineTags: '成线标签',
- moldlineOperate: '成线操作',
- moldlineUser: '成线工号',
- nodeKind: '工艺节点',
- factorySpace: '工厂区域',
- modelKind: '型号种类',
- recover: '回收到达',
- staffStatus: '员工状态',
- productGrade: '产品等级',
- productStatus: '产品状态',
- barCode: '产品条码',
- recycledKind: '产品组装',
- report: '报表引擎',
- carKind: '载具模式',
- limitKind: '装载限制',
- generativeCodeKind: '生码类型',
- generativeItemClass: '生码项类',
- orderStatus: '订单状态',
- area:'区域种类'
- },
- /**
- * @desc : 报表类型
- * @author : 周兴
- * @date : 2023/3/27 14:51
- */
- reportKind: {
- str: '文本',
- date: '日期',
- dateRange: '日期范围',
- dateTimeRange: '日时范围',
- monthRange: '月份范围',
- month: '月份',
- single: '下拉单选',
- multiple: '下拉多选',
- mSearch: '查询多选',
- sSearch: '查询单选',
- },
- /**
- * @desc : 对齐方式
- * @author : 周兴
- * @date : 2023/3/27 16:39
- */
- align: {
- // 左对齐
- left: 'left',
- // 居中
- center: 'center',
- // 左右
- right: 'right',
- },
- /**
- * @desc : 对齐方式数据源
- * @author : 周兴
- * @date : 2023/3/27 16:44
- */
- alignList: [
- {value: 'left', name: '居左'},
- {value: 'center', name: '居中'},
- {value: 'right', name: '居右'}
- ],
- /**
- * 商品类型
- */
- skuType: {
- goods: 0,
- bom: 2
- },
- /**
- * @desc : 型号种类
- * @author : 洪旭东
- * @date : 2023-02-07 15:25
- */
- modelKind: {
- modelMould: '型号种类-模具',
- modelMaterial: '型号种类-物料',
- modelCarrier: '型号种类-载具',
- modelEquipment: '型号种类-设备',
- modelProduct: '型号种类-产品',//产品型号add
- modelTypeCar: '型号种类-窑车',
- modelTypeKiln: '型号种类-窑炉',
- modelTypeMoldline: '型号种类-成型线',
- mouldKindInventory: '模具状态-在库',
- staffStatusDimission: '员工状态-离职',
- staffStatusInOffice: '员工状态-在职',
- },
- /**
- * @desc : 打印方式
- * @date : 2023/7/14 17:06
- * @author : 寇珊珊
- */
- printWay: {
- code: 0, //编码打印
- nodeOut: 1,//工序外箱码打印
- out: 2,//外箱码打印
- comOut: 3//外箱码补码
- },
- /**
- * @desc : 成产计划tab切换变量
- * @date : 2023/8/4 15:33
- * @author : 寇珊珊
- */
- productionPlanTabKind: {
- productionMoldPlan: 'productionMoldPlan', //模具生产计划
- moldBarcode: 'moldBarcode',//模具条码
- molidingMoldChange: 'molidingMoldChange',//成型线模具预测
- molidlineMoldChange: 'molidlineMoldChange',//成型模具预测
- layoutPlan: 'layoutPlan',//布模计划
- },
- /**
- * @desc : 模具状态-在库、在产、报废
- * @author : 姜永辉
- * @date : 2023/2/10 11:35
- */
- mould_kind: {
- mouldKindInventory: '模具状态-在库',
- mouldKindProduction: '模具状态-在产',
- mouldKindScrap: '模具状态-报废',
- },
- /**
- * @desc : 绑定条码父级pdtModelId
- * @date : 2023/4/25 17:24
- * @author : 寇珊珊
- */
- bindBarCodePdtModelId: {
- parentId: -999,
- },
- /**
- * @desc : 报工状态
- * @date : 2023/4/10 11:39
- * @author : 寇珊珊
- */
- workKind: {
- code: '报工类型',
- jiShi: '报工类型-计时',
- jiJian: '报工类型-计件',
- },
- /**
- * @desc : 报工记录查询保证状态
- * @date : 2023/4/11 13:49
- * @author : 寇珊珊
- */
- workKindSearchEnum: {
- jiJian: '计件',
- jiShi: '计时',
- },
- /**
- * @desc : 成线状态
- * @author : 洪旭东
- * @date : 2023-02-07 15:25
- */
- moldlineKind: {
- code: '成线状态',
- zaiChan: '成线状态-在产',
- tingChan: '成线状态-停产',
- wuMo: '成线状态-无模',
- },
- moldlineKindValue: {
- zaiChan: '在产',
- tingChan: '停产',
- },
- /**
- * @desc : 粘接方式
- * @author : 洪旭东
- * @date : 2023-02-08 09:01
- */
- pdtGlueKind: {
- code: '分体粘接',
- zuNei: '分体粘接-组',
- fenZu: '分体粘接-位',
- wu: '分体粘接-无',
- },
- /**
- * @desc : 成型工绑定类型
- * @author : 洪旭东
- * @date : 2023-02-09 08:54
- */
- userBindKind: {
- code: '成线工号',
- fenZu: '成线工号-线组',
- weiZhi: '成线工号-位置'
- },
- /**
- * @desc : 模具状态
- * @author : 洪旭东
- * @date : 2023-02-09 15:04
- */
- mouldKind: {
- zaiKu: '模具状态-在库'
- },
- /**
- * @desc : 成线标签
- * @author : 洪旭东
- * @date : 2023-02-09 15:04
- */
- moldlineSysTag: {
- code: '成线标签'
- },
- /**
- * @desc : table标识
- * @author : 夏常明
- * @date : 2023/2/10 15:36
- */
- tableTitle: {
- labelTitle: '标签',
- bomTitle: 'BOM',
- },
- /**
- * @desc : 工序类型
- * @author : 常皓宁
- * @date : 2023/2/16 10:49
- */
- nodeKind: {
- register: '工艺节点-计件',
- climbKiln: '工艺节点-登窑',
- inKiln: '工艺节点-入窑',
- outKiln: '工艺节点-出窑',
- uninstallKiln: '工艺节点-卸窑',
- halfCheck: '工艺节点-半检',
- finishCheck: '工艺节点-成检',
- recover: '工艺节点-回收',
- shaping: '工艺节点-成型',
- },
- /**
- * @desc : 成型线Info说明
- * @date : 2023/5/8 14:29
- * @author : 寇珊珊
- */
- mlodingInfo: {
- //绑定工序
- flowNodeId: '未绑定工序,成型线无法注浆',
- //绑定工位
- stationId: '高压注浆设备读取生产工号使用',
- //多批次标识
- flgCanBatches: '同一天是否可以多次做成型记录',
- },
- /**
- * @desc : 装载数量Info说明
- * @date : 2023/6/13 14:57
- * @author : 寇珊珊
- */
- carLoadLimitInfo: {
- pdtModelId: '载具型号启用“限制装板产品数量”后生效',
- },
- /**
- * @desc : 工序info说明
- * @author : 张潇木
- * @date : 2023/5/24 14:17
- */
- nodeInfo: {
- //绑定工序
- flgJobDefect: '未设置代表可产生全部缺陷',
- moldlineTags: '需满足所设所有标签条件'
- },
- /**
- * @desc : 窑车管理info静态变量
- * @date : 2023/5/11 10:37
- * @author : 寇珊珊
- */
- carKilnCar: {
- inputRange: '输入范围1-999',
- },
- /**
- * @desc : 回收到达
- * @author : 周兴
- * @date : 2023/3/15 16:40
- */
- recycledKind: {
- before: '回收到达-损前',
- after: '回收到达-流程'
- },
- /**
- * @desc : 菜单的页面代码
- * @author : 姜永辉
- * @date : 2023/2/17 11:23
- */
- appFormCode: {
- // 模具报废
- appMoldScrap: 'app-mold-scrap',
- // 模具变更
- appMoldChangeModel: 'app-mold-change-model',
- // 撤销报废
- appMoldUndoScrap: 'app-mold-undo-scrap',
- //计件撤销
- appPieceUndo: 'app-piece-undo',
- //成品撤销
- appFinishedProductUndo: 'app-finished-product-undo',
- //损坯撤销
- appDamagedBilletUndo: 'app-damaged-billet-undo',
- },
- /**
- * @desc : 节点流程
- * @author : 洪旭东
- * @date : 2023-03-13 14:16
- */
- flowKind: {
- start: '节点流程-开始',
- middle: '节点流程-中间',
- end: '节点流程-结束'
- },
- /**
- * @desc : 工厂区域
- * @author : 张潇木
- * @date : 2023/3/30 14:32
- */
- factorySpace: {
- shop: "工厂区域-车间",
- floor: "工厂区域-楼层",
- area: "工厂区域-区域",
- },
- /**
- * @desc : 节点标签
- * @author : 张潇木
- * @date : 2023/5/15 16:59
- */
- nodeSysTags: {
- mold: "节点标签-成型交接",
- check: "节点标签-成检交接",
- },
- /**
- * @desc : 路由类别
- * @author : 张潇木
- * @date : 2023/5/31 10:27
- */
- routeType: {
- line: 1,//画布中实际存在的线
- check: 2,//检验
- recover: 3,//回收
- cross: 4,//跨工序
- },
- /**
- * @desc : 装载限制
- * @author : 洪旭东
- * @date : 2023-06-13 08:57
- */
- limitKinds: {
- qty: '装载限制-数量'
- },
- /**
- * @desc : 单据状态
- * @author : 付斌
- * @date : 2023-06-26 15:23
- */
- bookStatus: {
- zanCun: '单据状态-暂存',
- daiShenHe: '单据状态-待审核',
- shenHeJuJue: '单据状态-审核拒绝',
- shenHeTongGuo: '单据状态-审核通过',
- wanCheng: '单据状态-完成',
- guanBi: '单据状态-关闭'
- },
- /**
- * @desc : 报工方式
- * @author : 付斌
- * @date : 2023-06-26 15:23
- */
- bookWay: {
- ziBao: '报工方式-自报',
- tongBao: '报工方式-统报',
- }
- }
|