syntec3-0-ui-components-test 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/README.md +5 -0
  2. package/dist/S3_0UC_main.csv +4 -0
  3. package/dist/S3_0UC_sub.csv +2 -0
  4. package/dist/globalVariableS3_0UC.json +1 -0
  5. package/dist/style.css +1 -0
  6. package/dist/syntec3-0-ui-components.es.js +19518 -0
  7. package/dist/syntec3-0-ui-components.es.js.map +1 -0
  8. package/dist/syntec3-0-ui-components.umd.js +23 -0
  9. package/dist/syntec3-0-ui-components.umd.js.map +1 -0
  10. package/dist/vite.svg +1 -0
  11. package/dist/web.config +17 -0
  12. package/package.json +137 -0
  13. package/src/App.vue +31 -0
  14. package/src/assets/fonts/genYoGothicTW-normal.js +7 -0
  15. package/src/assets/image/defaultImage.png +0 -0
  16. package/src/assets/vue.svg +1 -0
  17. package/src/components/Layout/modules/fullPageGlobal.vue +113 -0
  18. package/src/components/Layout/modules/viewFile/config.js +65 -0
  19. package/src/components/Layout/modules/viewFile/createView.vue +1000 -0
  20. package/src/components/Layout/modules/viewFile/filterCriteria.vue +816 -0
  21. package/src/components/Layout/modules/viewFile/viewList.vue +291 -0
  22. package/src/components/Layout/modules/viewFile/viewManageTool.js +271 -0
  23. package/src/components/Layout/modules/viewFile/viewRecord.vue +472 -0
  24. package/src/components/Layout/modules/viewFile/viewTabs.vue +542 -0
  25. package/src/components/Layout/tools/GlobalDialog.vue +115 -0
  26. package/src/components/Pagination.vue +139 -0
  27. package/src/components/columnConfigNext.vue +273 -0
  28. package/src/components/customFilter/customFilter.vue +492 -0
  29. package/src/components/customFilter/filterCriteria.vue +769 -0
  30. package/src/components/customTable/components/headerOperation/index.vue +136 -0
  31. package/src/components/customTable/components/headerTabs/index.vue +171 -0
  32. package/src/components/customTable/components/tableContent/index.vue +440 -0
  33. package/src/components/customTable/index.vue +305 -0
  34. package/src/components/dialog.vue +85 -0
  35. package/src/components/pageContent.vue +48 -0
  36. package/src/components/popover.vue +402 -0
  37. package/src/configFiles/apiFile/baseApiList.json +11 -0
  38. package/src/configFiles/apiFile/coreApiList.json +24 -0
  39. package/src/configFiles/apiFile/mesApiList.json +4 -0
  40. package/src/configFiles/apiFile/mmsApiList.json +3 -0
  41. package/src/configFiles/errorCode.json +291 -0
  42. package/src/configFiles/version.js +2 -0
  43. package/src/i18n/lang/en-us.json +2060 -0
  44. package/src/i18n/lang/errorCodeTranslate.mjs +847 -0
  45. package/src/i18n/lang/zh-cn.json +2062 -0
  46. package/src/i18n/lang/zh-tw.json +2059 -0
  47. package/src/index.js +115 -0
  48. package/src/main.js +51 -0
  49. package/src/plugins/excel.js +88 -0
  50. package/src/router/index.js +41 -0
  51. package/src/scriptFiles/apiConfig/baseApis.js +10 -0
  52. package/src/scriptFiles/apiConfig/mesApis.js +10 -0
  53. package/src/scriptFiles/apiConfig/mmsApis.js +10 -0
  54. package/src/scriptFiles/apiConfig/privateCloudCoreApis.js +13 -0
  55. package/src/scriptFiles/apiConfig/serviceRoute.js +23 -0
  56. package/src/scriptFiles/apis/baseApiFunction.js +63 -0
  57. package/src/scriptFiles/apis/mesApiFunction.js +15 -0
  58. package/src/scriptFiles/apis/mmsApiFunction.js +9 -0
  59. package/src/scriptFiles/apis/privateCloudCoreApiFunction.js +101 -0
  60. package/src/scriptFiles/backendApiFunction.js +11 -0
  61. package/src/scriptFiles/checkApiErrorMechanism.js +137 -0
  62. package/src/scriptFiles/common/objectDataProcessing.js +65 -0
  63. package/src/scss/base/commom.scss +1068 -0
  64. package/src/scss/base/dialog.scss +45 -0
  65. package/src/scss/base/index.scss +3 -0
  66. package/src/scss/base/table.scss +28 -0
  67. package/src/store/index.js +25 -0
  68. package/src/store/module/langStore.js +116 -0
  69. package/src/style.css +52 -0
  70. package/src/utils/excel.js +86 -0
  71. package/src/utils/formula.js +69 -0
  72. package/src/utils/https.js +13 -0
  73. package/src/utils/i18n.js +42 -0
  74. package/src/utils/shiftSelect.js +164 -0
  75. package/src/utils/summation.js +77 -0
  76. package/src/utils/tableWidth.js +29 -0
  77. package/src/utils/toolFun.js +93 -0
  78. package/src/views/productionWorkOrder/components/columnConfig.vue +242 -0
  79. package/src/views/productionWorkOrder/components/docCustomFieldForm.vue +739 -0
  80. package/src/views/productionWorkOrder/components/filePreview.vue +148 -0
  81. package/src/views/productionWorkOrder/components/querySearch.vue +363 -0
  82. package/src/views/productionWorkOrder/configFiles/excelImportErrorCode.json +94 -0
  83. package/src/views/productionWorkOrder/configFiles/pdfDefaultConfig.js +933 -0
  84. package/src/views/productionWorkOrder/configFiles/planMakingScript.js +600 -0
  85. package/src/views/productionWorkOrder/configFiles/productionRelatedScript.js +368 -0
  86. package/src/views/productionWorkOrder/configFiles/rulse.js +23 -0
  87. package/src/views/productionWorkOrder/configFiles/status.js +50 -0
  88. package/src/views/productionWorkOrder/index.vue +2174 -0
  89. package/src/views/productionWorkOrder/productionFlowLabel/component/addCirculationLabel.vue +394 -0
  90. package/src/views/productionWorkOrder/productionFlowLabel/component/circulationLabelTable.vue +124 -0
  91. package/src/views/productionWorkOrder/productionFlowLabel/component/materialPartFilePreview.vue +167 -0
  92. package/src/views/productionWorkOrder/productionFlowLabel/component/workOrderInformation.vue +28 -0
  93. package/src/views/productionWorkOrder/productionFlowLabel/index.vue +604 -0
  94. package/src/views/production_work_order/components/priorityTooltip.vue +53 -0
  95. package/src/views/production_work_order/index.vue +1307 -0
  96. package/src/views/review_record/components/materialInfo.vue +50 -0
  97. package/src/views/review_record/components/rootCause.vue +42 -0
  98. package/src/views/review_record/components/workDetail.vue +115 -0
  99. package/src/views/review_record/index.vue +884 -0
@@ -0,0 +1,23 @@
1
+ (function(oe,$e){typeof exports=="object"&&typeof module<"u"?$e(exports,require("vue-i18n"),require("vue"),require("vue-draggable-plus"),require("element-plus"),require("axios"),require("dayjs"),require("xlsx")):typeof define=="function"&&define.amd?define(["exports","vue-i18n","vue","vue-draggable-plus","element-plus","axios","dayjs","xlsx"],$e):(oe=typeof globalThis<"u"?globalThis:oe||self,$e(oe.Syntec30UiComponents={},oe.VueI18n,oe.Vue,oe.VueDraggablePlus,oe.ElementPlus,oe.axios,oe.dayjs,oe.XLSX))})(this,function(oe,$e,e,qe,K,ve,be,xe){"use strict";function Yo(t){const R=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const o in t)if(o!=="default"){const r=Object.getOwnPropertyDescriptor(t,o);Object.defineProperty(R,o,r.get?r:{enumerable:!0,get:()=>t[o]})}}return R.default=t,Object.freeze(R)}const We=Yo(xe);var Ko={name:"zh-cn",el:{breadcrumb:{label:"面包屑"},colorpicker:{confirm:"确定",clear:"清空",defaultLabel:"颜色选择器",description:"当前颜色 {color},按 Enter 键选择新颜色",alphaLabel:"选择透明度的值"},datepicker:{now:"此刻",today:"今天",cancel:"取消",clear:"清空",confirm:"确定",dateTablePrompt:"使用方向键与 Enter 键可选择日期",monthTablePrompt:"使用方向键与 Enter 键可选择月份",yearTablePrompt:"使用方向键与 Enter 键可选择年份",selectedDate:"已选日期",selectDate:"选择日期",selectTime:"选择时间",startDate:"开始日期",startTime:"开始时间",endDate:"结束日期",endTime:"结束时间",prevYear:"前一年",nextYear:"后一年",prevMonth:"上个月",nextMonth:"下个月",year:"年",month1:"1 月",month2:"2 月",month3:"3 月",month4:"4 月",month5:"5 月",month6:"6 月",month7:"7 月",month8:"8 月",month9:"9 月",month10:"10 月",month11:"11 月",month12:"12 月",weeks:{sun:"日",mon:"一",tue:"二",wed:"三",thu:"四",fri:"五",sat:"六"},weeksFull:{sun:"星期日",mon:"星期一",tue:"星期二",wed:"星期三",thu:"星期四",fri:"星期五",sat:"星期六"},months:{jan:"一月",feb:"二月",mar:"三月",apr:"四月",may:"五月",jun:"六月",jul:"七月",aug:"八月",sep:"九月",oct:"十月",nov:"十一月",dec:"十二月"}},inputNumber:{decrease:"减少数值",increase:"增加数值"},select:{loading:"加载中",noMatch:"无匹配数据",noData:"无数据",placeholder:"请选择"},dropdown:{toggleDropdown:"切换下拉选项"},mention:{loading:"加载中"},cascader:{noMatch:"无匹配数据",loading:"加载中",placeholder:"请选择",noData:"暂无数据"},pagination:{goto:"前往",pagesize:"条/页",total:"共 {total} 条",pageClassifier:"页",page:"页",prev:"上一页",next:"下一页",currentPage:"第 {pager} 页",prevPages:"向前 {pager} 页",nextPages:"向后 {pager} 页",deprecationWarning:"你使用了一些已被废弃的用法,请参考 el-pagination 的官方文档"},dialog:{close:"关闭此对话框"},drawer:{close:"关闭此对话框"},messagebox:{title:"提示",confirm:"确定",cancel:"取消",error:"输入的数据不合法!",close:"关闭此对话框"},upload:{deleteTip:"按 Delete 键可删除",delete:"删除",preview:"查看图片",continue:"继续上传"},slider:{defaultLabel:"滑块介于 {min} 至 {max}",defaultRangeStartLabel:"选择起始值",defaultRangeEndLabel:"选择结束值"},table:{emptyText:"暂无数据",confirmFilter:"筛选",resetFilter:"重置",clearFilter:"全部",sumText:"合计"},tour:{next:"下一步",previous:"上一步",finish:"结束导览"},tree:{emptyText:"暂无数据"},transfer:{noMatch:"无匹配数据",noData:"无数据",titles:["列表 1","列表 2"],filterPlaceholder:"请输入搜索内容",noCheckedFormat:"共 {total} 项",hasCheckedFormat:"已选 {checked}/{total} 项"},image:{error:"加载失败"},pageHeader:{title:"返回"},popconfirm:{confirmButtonText:"确定",cancelButtonText:"取消"},carousel:{leftArrow:"上一张幻灯片",rightArrow:"下一张幻灯片",indicator:"幻灯片切换至索引 {index}"}}},Xo={name:"en",el:{breadcrumb:{label:"Breadcrumb"},colorpicker:{confirm:"OK",clear:"Clear",defaultLabel:"color picker",description:"current color is {color}. press enter to select a new color.",alphaLabel:"pick alpha value"},datepicker:{now:"Now",today:"Today",cancel:"Cancel",clear:"Clear",confirm:"OK",dateTablePrompt:"Use the arrow keys and enter to select the day of the month",monthTablePrompt:"Use the arrow keys and enter to select the month",yearTablePrompt:"Use the arrow keys and enter to select the year",selectedDate:"Selected date",selectDate:"Select date",selectTime:"Select time",startDate:"Start Date",startTime:"Start Time",endDate:"End Date",endTime:"End Time",prevYear:"Previous Year",nextYear:"Next Year",prevMonth:"Previous Month",nextMonth:"Next Month",year:"",month1:"January",month2:"February",month3:"March",month4:"April",month5:"May",month6:"June",month7:"July",month8:"August",month9:"September",month10:"October",month11:"November",month12:"December",week:"week",weeks:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},weeksFull:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"},months:{jan:"Jan",feb:"Feb",mar:"Mar",apr:"Apr",may:"May",jun:"Jun",jul:"Jul",aug:"Aug",sep:"Sep",oct:"Oct",nov:"Nov",dec:"Dec"}},inputNumber:{decrease:"decrease number",increase:"increase number"},select:{loading:"Loading",noMatch:"No matching data",noData:"No data",placeholder:"Select"},mention:{loading:"Loading"},dropdown:{toggleDropdown:"Toggle Dropdown"},cascader:{noMatch:"No matching data",loading:"Loading",placeholder:"Select",noData:"No data"},pagination:{goto:"Go to",pagesize:"/page",total:"Total {total}",pageClassifier:"",page:"Page",prev:"Go to previous page",next:"Go to next page",currentPage:"page {pager}",prevPages:"Previous {pager} pages",nextPages:"Next {pager} pages",deprecationWarning:"Deprecated usages detected, please refer to the el-pagination documentation for more details"},dialog:{close:"Close this dialog"},drawer:{close:"Close this dialog"},messagebox:{title:"Message",confirm:"OK",cancel:"Cancel",error:"Illegal input",close:"Close this dialog"},upload:{deleteTip:"press delete to remove",delete:"Delete",preview:"Preview",continue:"Continue"},slider:{defaultLabel:"slider between {min} and {max}",defaultRangeStartLabel:"pick start value",defaultRangeEndLabel:"pick end value"},table:{emptyText:"No Data",confirmFilter:"Confirm",resetFilter:"Reset",clearFilter:"All",sumText:"Sum"},tour:{next:"Next",previous:"Previous",finish:"Finish"},tree:{emptyText:"No Data"},transfer:{noMatch:"No matching data",noData:"No data",titles:["List 1","List 2"],filterPlaceholder:"Enter keyword",noCheckedFormat:"{total} items",hasCheckedFormat:"{checked}/{total} checked"},image:{error:"FAILED"},pageHeader:{title:"Back"},popconfirm:{confirmButtonText:"Yes",cancelButtonText:"No"},carousel:{leftArrow:"Carousel arrow left",rightArrow:"Carousel arrow right",indicator:"Carousel switch to index {index}"}}},Zo={name:"zh-tw",el:{breadcrumb:{label:"面包屑"},colorpicker:{confirm:"確認",clear:"清空",defaultLabel:"色彩選擇器",description:"目前色彩為 {color}。按一下 Enter 以選擇新色彩。",alphaLabel:"選擇透明度的值"},datepicker:{now:"現在",today:"今天",cancel:"取消",clear:"清空",confirm:"確認",dateTablePrompt:"使用方向鍵與 Enter 鍵以選擇日期",monthTablePrompt:"使用方向鍵與 Enter 鍵以選擇月份",yearTablePrompt:"使用方向鍵與 Enter 鍵以選擇年份",selectedDate:"已選日期",selectDate:"選擇日期",selectTime:"選擇時間",startDate:"開始日期",startTime:"開始時間",endDate:"結束日期",endTime:"結束時間",prevYear:"前一年",nextYear:"後一年",prevMonth:"上個月",nextMonth:"下個月",year:"年",month1:"1 月",month2:"2 月",month3:"3 月",month4:"4 月",month5:"5 月",month6:"6 月",month7:"7 月",month8:"8 月",month9:"9 月",month10:"10 月",month11:"11 月",month12:"12 月",weeks:{sun:"日",mon:"一",tue:"二",wed:"三",thu:"四",fri:"五",sat:"六"},weeksFull:{sun:"星期日",mon:"星期一",tue:"星期二",wed:"星期三",thu:"星期四",fri:"星期五",sat:"星期六"},months:{jan:"一月",feb:"二月",mar:"三月",apr:"四月",may:"五月",jun:"六月",jul:"七月",aug:"八月",sep:"九月",oct:"十月",nov:"十一月",dec:"十二月"}},inputNumber:{decrease:"減少數值",increase:"增加數值"},select:{loading:"載入中",noMatch:"無相符資料",noData:"無資料",placeholder:"請選擇"},mention:{loading:"載入中"},dropdown:{toggleDropdown:"切換下拉選單"},cascader:{noMatch:"無相符資料",loading:"載入中",placeholder:"請選擇",noData:"無資料"},pagination:{goto:"前往",pagesize:"項/頁",total:"共 {total} 項",pageClassifier:"頁",page:"頁",prev:"上一頁",next:"下一頁",currentPage:"第 {pager} 頁",prevPages:"向前 {pager} 頁",nextPages:"向後 {pager} 頁",deprecationWarning:"偵測到已過時的使用方式,請參閱 el-pagination 說明文件以了解更多資訊"},dialog:{close:"關閉此對話框"},drawer:{close:"關閉此對話框"},messagebox:{title:"提示",confirm:"確定",cancel:"取消",error:"輸入的資料不符合規定!",close:"關閉此對話框"},upload:{deleteTip:"按 Delete 鍵以刪除",delete:"刪除",preview:"查看圖片",continue:"繼續上傳"},slider:{defaultLabel:"滑桿介於 {min} 至 {max}",defaultRangeStartLabel:"選擇起始值",defaultRangeEndLabel:"選擇結束值"},table:{emptyText:"暫無資料",confirmFilter:"篩選",resetFilter:"重置",clearFilter:"全部",sumText:"合計"},tour:{next:"下一步",previous:"上一步",finish:"結束導覽"},tree:{emptyText:"暫無資料"},transfer:{noMatch:"無相符資料",noData:"無資料",titles:["列表 1","列表 2"],filterPlaceholder:"請輸入搜尋內容",noCheckedFormat:"共 {total} 項",hasCheckedFormat:"已選 {checked}/{total} 項"},image:{error:"載入失敗"},pageHeader:{title:"返回"},popconfirm:{confirmButtonText:"確認",cancelButtonText:"取消"},carousel:{leftArrow:"上一張投影片",rightArrow:"下一張投影片",indicator:"投影片切換至索引 {index}"}}};const Jo={setting:"设定",personalInfo:"个人资料",language:"语系",homepage:"首页",all:"全部",Notyetstarted:"未开工",Alreadystarted:"已开工","PauseProcessing ":"暂停加工",Latecommencement:"逾期开工",workReport:"生产报工",apiError:"功能连线失败!您的网路状态可能不稳定,请确认网路连线正常后重新尝试。若仍无法使用烦请联络系统管理员。",productionManage:"生产管理",import:"汇入资料",export:"资料汇出",submit:"提交",saleOrder:"销售订单",productionPlan:"生产工单",assemblyWorkOrder:"装配工单",systemConfiguration:"系统配置",hello:"你好",user:"用户",workOrder:"工单报工",task:"任务",workReporting:"报工",department:"部门管理",actory:"工厂",basicData:"基础数据",productDefinition:"产品数据",bom:"物料清单",unit:"计量单位",defectiveItems:"不良原因设定",productionProcesses:"工序",processRoute:"产品工艺",productRouteManagement:"工艺路线管理",procesManagement:"工序管理",logout:"登出",log:"登录",perRow:"每列",items:"笔",fullName:"姓名",state:"状态",accountNumber:"帐号",password:"密码",query:"查询",identity:"身份",role:"角色",newUsers:"新增用户",actions:"操作",index:"序号",mobilePhone:"手机号",departmentName:"部门名称",position:"职位",confirm:"确认",edit:"编辑",permissionConfiguration:"权限设置",delete:"删除",workShift:"班别",roleManagement:"角色管理",roleName:"角色名称",add:"新增",createStaff:"创建人员",createTime:"创建时间",roleRemark:"角色描述",addRole:"新增角色",editRole:"编辑角色",rolePersonSetting:"角色人员设定",roleInfo:"角色资讯",addStaffList:"新增人员",employee:"人员",multiple:"复选",staffList:"人员列表",empNumber:"工号",addShift:"新增班制",breakTimeTable:"休息时间表",shiftMode:"班制名称",defaultShift:"默认班制",shiftItemName:"轮班名称",shiftItemTime:"轮班时间",editAndDelete:"编辑与删除",nextDay:"次日",addBreakTime:"新增休息时间",editBreakTime:"编辑休息时间",shift:"班制",timePeriod:"时间区段",breakStart:"休息开始",breakEnd:"休息结束",description:"备注说明",required:"必填",remarkLengthLimit:"字串长度不可超过50字元",timeInterval:"时间区间",type:"类型",break:"休息",editShift:"编修班制",selectShift:"请选择班制",editshiftItemTime:"编辑轮班时间",shiftStartTime:"轮班开始时间",shiftEndTime:"轮班结束时间",oneShift:"一班制",twoShift:"两班制",threeShift:"三班制",fourShift:"四班制",systemSnformation:"系统信息",processManagement:"工艺管理",WorkReportRecords:"报工记录",userManage:"人员管理",userManages:"人员管理(超管)",save:"保存",cancellation:"取消",haveSpace:"首尾不能有空格",addDepartment:"新增部门",editDepartment:"编辑部门",isInUse:"是否启用",enable:"启用",disable:"停用",finished:"已完成",unfinished:"未完成",orderNumber:"订单编号",deliveryDate:"交期",contractNumber:"合同编号",customerName:"客户名称",woCount:"工单数",addSuccess:"新增成功",editSuccess:"修改成功",woNumber:"工单",productPartNumber:"物料编号",productName:"物料名称",submitError:"提交错误",addSyShiftFail:"新增班制失败",addShiftFail:"存在新增失败的轮班",editShiftFail:"存在编辑失败的轮班",noDispatch:"未派工",workStart:"已开工",noStart:"未开工",overdueStart:"逾期开工",overdueEnd:"逾期完工",workEnd:"已完工",closed:"已关闭",suspendProcess:"待再加工",changing:"调机中",handling:"异常处理中",pauseProcessing:"暂停加工",craftPath:"工艺路线",clearAll:"清除全部",inputError:"生产工单号输入错误",SNnotEmpty:"子工单号不得为空",canNotBeEmpty:"物料编号、工艺路线、工序不得为空",standardParam:"标准参数",processFile:"工艺档案",mainFile:"主档案",subFile:"副档案",fileName:"档案名称",fileType:"档案类型",customField:"自定义栏位",product:"产品",preview:"预览",otherFile:"其他档案",synchronization:"串接同步",dataPathError:"档案路径错误",typeNotSupport:"预览不支援此格式",productionOrderNumber:"生产工单号",stationNumber:"工位子工单号",stringSearch:"串查",partNumber:"物料编号",noData:"尚无资料",productionProcess:"工序",routeProcessID:"路径工序ID",equipmentStation:"设备/工位",search:"搜寻",submitFail:"提交失败",standardTime:"标准工时",sizeBig:"大",sizeMedium:"中",sizeSmall:"小",customerNameDigiwin:"客户名称",orderExpectedDue:"订单预交日",requiredThroughput:"需求件数",startDate:"预计开工时间",finishDate:"预计完工时间",requiredField:"不能为空",processName:"工序名称",processNumber:"工序代码",workOrderSerialNumber:"子工单号",cantBeEarly:"预计开工时间不能晚于预计完工时间",cantAfEarly:"预计完工时间不能早于预计开工时间",sortSetting:"排序设定",ascending:"递增",descending:"递减",staff:"人员",startTime:"开工时间",endTime:"完工时间",total:"总计",actualEmp:"实际执行人员",processThroughput:"生产数量",quantityOfGoodProducts:"良品数",quantityOfDefectiveProducts:"不良品数",moreInfo:"更多信息",adverseCausesRecord:"不良原因记录",badCause:"不良原因",badCauseNum:"不良原因数量",myWorkOrder:"我的工单",manualReport:"手动报工",planDate:"计划时间",remainingRequired:"剩余需求件数",totalRequired:"总需求件数",pause:"暂停",designate:"指派",jobSpecification:"工作规范",errorAlert:"错误",code:"代码",nameCause:"不良原因名称",addReasonsDefects:"新增不良原因",remark:"备注",enableNot:"是否启用",action:"操作",deactivate:"停用栏位提醒",confirmDeactivation:"确认停用",noSpaces:"禁止输入空格",onlyEnglishNumbers:"只能输入英数字",no20Characters:"不可超过20个字符",no50Characters:"不可超过50个字符",typeDuplicated:"类型不可重复",editReasonsDefects:"编辑不良原因",displayDeactivatedItems:"显示停用项目",modifiedSuccessfully_api:"修改成功",modificationFailed_api:"修改失败",loadMore:"加载更多",requestError:"请求失败",requestSuccess:"请求成功",codeRepeat:"代码不可重复",PleaseSelect:"请选择",startDateInterval:"预计开工时间区间",closeCamera:"关闭",excelExport:"excel汇出",exportExcelData:"Excel汇出",columnConfiguration:"列配置",goodProducts:"良品数",defectivesNum:"不良品数",cycleStartTime:"加工开始时间",cycleEndTime:"加工结束时间",noDateRangeSelected:"未选择日期区间",number:"数量",processOrderNumber:"工序子工单号码",exceptStartDateInterval:"预计开工时间区间",cantLessZero:"需求工件数应大于0",goodProductTotalCount:"良品总数",badProductTotalCount:"不良品总数",needClickPlus:"点击“+”新增不良原因,否则将不会被新增",selectBadCase:"选择不良品原因",inputBadProductCount:"输入不良品数",selectDepartment:"选择部门",selectPerson:"选择人员",automatically:"自动生成生产工单号",maintain:"维护工艺路线",numerical:"数值需要为大于0的整数",fullNumber:"数值需要为整数",information:"无品名资料",specifications:"无规格型号",failed:"新增失败",containing:"请检查含有(*)的必填项",processEmpty:"工序为空",startSuccess:"开工成功",finishSuccess:"完工成功",pauseSuccess:"暂停成功",designSuccess:"指派成功",circulation:"工单流转卡",progress:"工序进度",createWorkOrder:"建立工单",expectEmp:"预计执行人员",requiredNotZero:"需求件数不得为零或负数",assignPersonnel:"指派人员",assignmentFailed:"指派失败",pleaseCause:"请选择不良原因",reportSuccess:"报工成功",reportFail:"报工失败",negative:"数值不得为零或负数",totalReportCount:"总加工数",tooLess:"生产数量不得小于不良品数",toMoreThenZero:"生产数量应大于0",operator:"操作人员",workOrderStatus:"工单状态",advancedSearch:"进阶搜索",more:"更多",print:"打印",newPlan:"新增计划",dispatchWorkOrders:"派发工单",viewProgress:"查看进度",underExecution:"执行中",editSchedule:"编辑计划",deletedWorkOrder:"相关工单任务将一并删除,是否确认执行?",successfullyDeleted:"删除成功",dataImport:"资料汇入",exportTemplate:"Excel模板",excelImport:"Excel汇入",duplicateName:"不良原因名称重复",importTheTemplate:"不良原因模板",importFail:"汇入失败",fileTypeErrorAndUploadXlsxOrXls:"汇入档案类型须为(.xlsx)或(.xls)档",excelImportNoData:"excel表单无资料,请重新填写后上传",excelSyntecTemplateError:"EXCEL模板与系统语系不一致或不符合标准EXCEL格式",importDataCheck:"汇入资料检查",totalNumber:"总条数",success:"成功",fail:"失败",exportResults:"异常结果汇出",theFollowing:"以下为导入失败的不良原因明细",payAttTo:"注意",failureReason:"失败原因",checkResult:"检查结果",InsItemIsHas:"数据已存在!",emptyStr:"空",do:"为",notEN:"不是英数字",lengthExceeds:"长度超过",notSpe:"不可含有空格",repeat:"重复",inputIsCorrectButRequestFailed:"输入格式正确,汇入请求失败",succImportedAll:"条全部汇入成功",previewSubmit:"提交数据预览",requestResults:"请求结果",transactions500:"Excel资料笔数限制为500",numberEmpty:"订单编号为空",numberMaximum50:"订单编号、生产工单号最大50位",productEmpty:"物料编号、工艺路线不得为空",processDoesNotExist:"工序不存在",processPathDoesNotExist:"工艺路线不存在",partNumberDoesNotExist:"物料编号不存在",requiredNumber:"工序子工单需求件数应为大于0的整数",workOrderNumber:"工单需求件数应为大于0的整数",jobNumberDoesNotExist:"工号不存在",operationSubWorkOrder:"工序子工单",dispatchSuccessful:"派工成功",dispatchFailed:"派工失败",workOrderDelivery:"请确认您选择的工单状态为未派工,才可进行工单派送",beenDispatched:"请选择未派工的工单",planDevelopmentReport:"生产工单报表",productionWorkOrderRemittance:"生产工单汇出",successfullyImported:"汇入成功",productManagement:"产品管理",enterProductPartNumber:"请输入物料编号",enterProductName:"请输入物料名称",productType:"产品类型",addProducts:"新增产品",importExcel:"Excel汇入",excelTemplate:"Excel模板",productTypeManagement:"产品类型管理",deactivated:"停用",spec:"规格型号",unity:"单位",productProperty:"产品属性",productStatus:"产品状态",supplierName:"供应商名称",illustrate:"说明",delProductConfirm:"是否删除产品",productImportTemplate:"产品汇入模板",selfMadePart:"自制件",purchasePart:"采购件",notHave:"无",pleaseEnter:"请输入",cannotBeEmpty:"必填项不能为空",cannotExceed20:"长度不能超过20",cannotExceed30:"长度不能超过30",cannotExceed50:"长度不能超过50",cannotExceed80:"长度不能超过80",cannotExceed100:"长度不能超过100",cannotExceed200:"长度不能超过200",successfullyEdited:"编辑成功",editingFailed:"编辑失败",addingFailedProductDup:"新增失败!物料编号重复。",editProduct:"编辑产品",endProduct:"成品",semiFinishedProduct:"半成品",rawMaterial:"原材料",cuttingTool:"刀具",mold:"模具",productPropertyError:"产品属性格式错误,可选:自制件、采购件、无",saveSuccess:"保存成功",saveFail:"保存失败",notExcel:"非Excel文件",emptyExcel:"Excel为空",headerError:"表头不正确",productTypeList:"产品类型列表",defaultCannotDel:"预设不可删除",typeName:"类型名称",dataDuplication:"数据重复",delProductTypeConfirm:"是否删除产品类型?",productTypeInUse:"产品类型已被使用",delSuccess:"删除成功",delFail:"删除失败",productImportNum:"物料编号格式错误",productImportName:"物料名称格式错误",productImportSpec:"规格型号格式错误",productImportUnit:"单位格式错误",productImportType:"产品类型格式错误",productImportPro:"供应商名称格式错误",productImportA:"产品属性格式错误,可选:自制件、采购件、无",productImportD:"说明格式错误",importSuccess:"导入成功",importProductFailRes:"以下为导入失败的产品明细",addProcess:"新增工序",selfControl:"自制",outsource:"外包",delReminder:"删除提醒",processType:"工序类型",manufacturingType:"制造类型",processingProcess:"加工工序",inspectionProcess:"检验工序",assemblyProcess:"组装工序",transportationProcess:"运输工序",confirmDeleProcess:"确认删除工序",thisProcessDele:"该工序已被使用,无法删除!",deleFailed:"删除失败!",processImportTemplate:"工序汇入模板",processCodeNot:"工序代码不得重复",saveFailed:"保存失败",requiredItemsNotEmpty:"必填项不能为空",procCodeFormatError:"工序代码格式错误",procNameFormatError:"工序名称格式错误",procTypeFormatError:"工序类型格式错误",manufTypeFormatError:"制造类型格式错误",importSuccessful:"导入成功",nonExcelFiles:"非Excel文件",excelEmpty:"Excel为空",inMeterHeader:"表头不正确",enter:"请输入",processRouteName:"工艺路线名称",addProcessRoute:"新增工艺",editProcessRoute:"编辑工艺",isDefaultRoute:"预设路径",processCount:"工序数量",yes:"是",no:"否",delConfirmPR:"确认删除工艺路线",processRouteTemplate:"工艺汇入模板",prNamehaveExit:"同一个产品下,该路径名称已存在",productNumCannotNull:"物料编号不能为空",processRouteCannotNull:"工艺路线名称不能为空",processRouteW:"工艺路线名称格式错误",productNumNotExist:"物料编号不存在",processCannotNull:"工序不能为空",processNotExist:"工序不存在",importFailPR:"以下为导入失败的工艺路线明细",isDefaultRoutes:"是否为预设路径",saveFields:"储存相关栏位",addMoreProcess:"添加工序",clearProcess:"清空工序",addProcessRouteMsg:"工艺的工序信息支援实时保存",choosePlm:"请选择档案",processSequence:"工序顺序",plmSetting:"档案设定",sort:"排序",selectProcess:"请选择工序",dataDup:"资料重复",errorProcessNumName:"工艺路线名称或编号不得重复!",delProcessRoute:"删除路径工序",onlyEnNum:"只能输入英文和数字",dataRedundancy:"资料重复",editingProc:"编辑工序",uploads:"档案上传",deleFiles:"删除档案",fileSize:"档案大小",uploader:"上传者",confDeleFile:"确认删除档案",drawing:"图纸",geneSpecif:"通用规范",inspecSpecif:"检验规范",toolSpecif:"刀具规范",procProgram:"加工程式",material:"物料",other:"其他",selectProfile:"选择档案",uploading:"上传中",uploadSuccess:"上传成功",uploadFailed:"上传失败",duplicateFile:"档案重复",uploadStatus:"上传状态",procCorrel:"工序关联",editProcCorrel:"编辑工序关联",theFollo:"以下为导入失败的工序明细",ordersFailed:"以下为导入失败的工单明细",MESManagement:"MES管理",fileManagement:"档案管理",failedContentExport:"异常失败内容汇出",materialsPerPage:"每页质料数",beenUploaded:"当前未上传数据",contentFirst:"请先清空内容",noHttps:"扫一扫功能仅支持https的域名",numberIsEmpty:"生产工单号为空",workOrderIsEmptyOr0:"工单的需求工件数为空或为0",workOrderIsEmpty0:"工单的需求工件数不得小于0",workOrderIsEmptys0:"工序的需求工件数不得小于0",workOrderIsEmptysOr0:"工序的需求工件数为空或为0",workOrderNumerical:"工单数值须为整数不得有小数点",processesNumerical:"工序数值须为整数不得有小数点",pathIsEmpty:"工艺路线为空",productnumberIsEmpty:"物料编号为空",inspect:"第【{index}】行中有失败项",processInformation:"工序信息修改成功",empty:"清空",zhEnNum:"只可输入中文、英文、数字",typeIncorrect:"附件类型不正确!支持格式",sizeExceeds10MB:"附件大小超过10MB!",strLengthLimit50:"字串长度不可超过50字元",strLengthLimit15:"字串长度不可超过15字元",formCategory:"表单类别",formName:"表单名称",formNumber:"表单编号",customFieldQueryFailed:"自定义字段查询失败",additionalForms:"附加表单",fillIn:"填写",fileNoHasEmpty:"必填项文档不能为空",mustNumber:"请输入数字",noEquipment:"暂无可用非联网设备,请前往【设定】模组下的设备设定页面中维护一个其他设备",addNoEquipment:"暂无可用非联网设备,请前往PC端【设定】模组下的设备设定页面中维护一个其他设备",numberOfJobApplications:"报工数量",clickEdit:"点击修改",aProdNumNotIs0:"添加不良品数不能为0",numIs0IsDel:"数量为0代表删除该条记录,是否继续?",timeRulesSSP:"开工时间应小于等于加工开始",timeRulesSEP:"开工时间应小于等于加工结束",timeRulesSAC:"开工时间应小于等于完工时间",timeRulesWS:"加工开始应大于等于开工时间",timeRulesWEP:"加工开始应小于等于加工结束",timeRulesWAC:"加工开始应小于等于完工时间",timeRulesWSP:"加工结束应大于等于加工开始",timeRulesWEAC:"加工结束应小于等于完工时间",timeRulesWES:"加工结束应大于等于开工时间",timeRulesEEP:"完工时间应大于等于加工结束",timeRulesESP:"完工时间应大于等于加工开始",timeRulesES:"完工时间应大于等于开工时间",modifyWorkReportRecords:"报工修改记录",modifyWorkReportRecord:"报工记录修改",previousProcesses:"后站工序报工总数 <= 前站工序报工总数",workReportSetting:"手动报工限制设定",restrictionSetting:"报工限制设定",basicSettings:"基础设定",getDeviceInfoFailed:"获取设备信息失败",topPriority:"最优先",priority:"优先",secondary:"次要",leastImportant:"最次要",normal:"正常",importantSort:"重要排序",remind:"当前工单暂无报工记录,请确认是否完工?",editTime:"修改时间",editPersonnel:"修改人员",editProject:"修改项目",editContent:"修改内容",originalContent:"原始内容",productionTime:"生产用时(时)",assignSaveFailed:"请至少指派一位人员!",startedConstruction:"当前工单已被开工,无需重复开工",completed:"当前工单已完工,不可再次开工",completeds:"当前工单已被完工,无需重复操作",notStarted:"当前工单尚未开工过,无法完工",paused:"当前工单已被暂停,无需重复操作",nonCommencement:"当前工单不是开工状态,无法暂停",nonProcessing:"当前工单状态已经不是开工中,不可报工",enterTheCorrectTime:"请输入正确的时间",formFillingRecord:"表单填写记录",filledBy:"填写人",fillTime:"填写时间",customizeFormSettings:"自定义表单设定",formSettings:"表单设定",associatedSuccess:"关联成功",selectPartNumber:"请选择物料编号",PLM_DRAWING_IMG:"图纸",PLM_STANDARD_RULE:"通用规范",PLM_QUALITY_CONTROL_RULE:"检验规范",PLM_CUTTING_TOOLS_RULE:"刀具规范",PLM_NC_PROGRAM:"加工程式",PLM_PART_DATA:"物料",PLM_OTHERS:"其他",downloadFile:"下载档案",currentAssignedPersonnel:"当前指派人员",hasBeenAssigned:"已被指派",workRequiredThroughput:"需求工件数",reportFailForCount:"报工数量不可为0",view:"查看",negatives:"数值不得为负数",requireds:"栏位名称含有(*)为必填栏位,请按照规范完整填写",processDeployment:"工序展开",dateRange:"选择日期不可超出三个月范围",dateRanges:"选择日期不可超出一个月范围",fileDownload:"档案下载",productSpec:"规格型号",reportForms:"不良统计报表汇出",reportingForWork:"报工",statisticalDimension:"统计维度",productSpecifications:"规格型号",disassemble:"无法拆解",reviewStatus:"审核状态",reviewer:"审核人",reviewTimeRange:"审核时间区间",reviewTime:"审核时间",approved:"审核通过",recordRemark:"报工备注",audited:"已审核",unaudited:"未审核",pendingReviewRecords:"待审核记录",reviewNotice:"【注意】此处针对全局设定,开启审核后,所有报工记录均需要审核才能生效!",openReview:"开启审核",closeReview:"关闭审核",reportProcessSetting:"工单报工审核设定",reportReview:"报工审核",closeReviewNote:"若关闭审核,则所有的报工记录将默认审核通过,是否确认关闭?",passReview:"审核通过",cancelReview:"取消审核",actualRecordEmp:"实际报工人员",reviewSuccess:"审核成功",rejectRate:"不良品率",poorProportion:"不良品占比",proportion:"占比",negativeStatistics:"不良统计",getReviewStatusFail:"获取审核状态失败",customerForm:"自定义表单",previewFile:"档案预览",actualRepWorkEmp:"实际报工人员",dragToSort:"拖拽排序",confirmCompletion:"是否确认完工?",currentCompletion:"当前工序尚未达到需求工件数,是否强制完工?",compulsoryCompletion:"强制完工",currConfirmCompletion:"当前存在未审核的报工记录,是否确认完工?",afterThisReport:"本次报工后,当前工序的报工数量将超过需求工件数,是否确认报工?",currentIs0:"当前已报工数量为0,是否确定完工?",batchPrint:"批量打印",selectPrintTemplate:"选择打印模板",orderQrcode:"工单二维码",productionWorkOrder:"工单流转卡",batchSize:"批次数量",processList:"工序列表",exportOrderPreview:"工单汇出预览",pleaseSelectOrder:"请先选择需要打印的工单",processQRCode:"工序二维码",getSubOrderInfoFail:"取得子工单资讯失败",getOrderSerialNumberInfoFail:"取得特定工单序号管理资料失败",getOrderAllSerialNumberFail:"取得工单所有序号失败",processOrderNum:"工序子工单号",withoutSpacingRules:"不可有空白字元",countFrontRearProcessControlInfo:"后站工序报工总数<=前站工序报工总数",countKeyProcessControlInfo:"开启关键工序卡控,关键工序的前站所有工序报工数不做任何限制;关键工序后站报工总数不能大于关键工序报工总数",statusFrontRearProcessControlInfo:"前站工序状态完工,后道工序才能开工",statusKeyProcessControlInfo:"开启关键工序卡控,关键工序的前站所有工序报工数不做任何限制;关键工序不完工,关键工序的后站所有工序无法开工",countControl:"工序报工数量卡控",statusControl:"工序开工状态卡控",frontRearControl:"前后站工序卡控",keyProcessControl:"关键工序卡控",keyProcesses:"关键工序",reportFailed:"报工失败!",WorkReportOne:"已开启前后站工序数量卡控,后站工序报工总数不可超过前站!",WorkReportTwo:"已开启关键工序的数量卡控,关键工序后站报工总数不能超过关键工序!",startFailed:"开工失败!",StartOne:"已开启前后站工序状态卡控,前道工序状态完工,后道工序才能开工!",StartTwo:"已开启关键工序状态卡控,关键工序完工,后站工序才能开工!",criticalProcess:"关键工序",criticalProcessError:"关键工序输入不符合要求,请输入'是'或'否'",columnSetting:"栏配置",returnToDefault:"恢复预设",productionOrderLevel:"工单层级",processOrderLevel:"工序层级",columnLimit18:"显示栏位不得超过18个栏位",columnLimit7:"显示栏位不得超过7个栏位",setSuccessfully:"设定成功",columnLimit2:"工单层级显示栏位不得少于2个栏位",orderDispatchToReporting:"工单下派至现场工单报工",orderSharing:"订单分享",sharedSelectOrder:"请先勾选要进行分享的订单!",errorDifferentOrders:"当前勾选工单属于不同订单,请勾选相同订单下的工单分享!",orderSharingQR:"订单追踪二维码",download:"下载",orderProgress:"订单进度",orderTracking:"订单追踪",no250Characters:"不可超过250个字符",processNotes:"工艺备注",lastUpTime:"最后更新时间",processRemark:"工艺备注",departmentPersonnel:"部门",deactivateds:"已停用",plannedCompleteDate:"计划完工日",planExpectedDate:"预计时间",turnOffScanning:"关闭扫码",deviceGroup:"设备群组",device:"设备/工位",stopUse:"已停用",noGroup:"无机群",salaryFailed:"工资计算失败",openRepporting:"若开启不开工直接报工设定,则手动报工限制设定将会失效,是否确认开启?",open:"开启",close:"关闭",reportNotice:"【注意】此处针对MES全局设定!",reportDirectly:"不开工直接报工设定",processOrderStatus:"工序子工单状态",reportTimeInterval:"报工时间区间",completeTimeInterval:"完工时间区间",showMyOrder:"仅显示[我的工单]",showMyRecords:"仅显示[我的记录]",cycleEndTimeInterval:"加工结束时间区间",yearRange:"最大筛选时间区间不可超过1年",reviewWarning:"可能有其他用户正在审核,请刷新后操作",agentReportingFunction:"代报工功能",workOrderCustomSetting:"工单自定义设定",workReportCustomSetting:"报工自定义设定",addCustomField:"新增自定义字段",editCustomField:"编辑自定义字段",showDisabledField:"展示停用字段",customSettingNotice:"最多可支持添加80个(不包含停用)",batchAction:"批量操作",cancelBatchAction:"取消批量操作",batchEnable:"批量启用",batchDisabled:"批量停用",dragSort:"拖拽排序",fieldName:"字段名称",fieldType:"字段类型",itemIndex:"项次",fieldProperty:"字段属性",regardText:"引导文字",regardTextPlaceholder:"请输入栏位填写时的引导文字",textType:"文本",numberType:"数字",dateType:"日期",copy:"复制",copyAddProcessPath:"复制新增工艺路线",presetPathModified:"若产品预设路径已存在则不可修改"," processUnderPath":"一个路径底下一定要有一个工序",workOrderImportTemplate:"工单汇入模板",workOrderProcessImportTemplate:"工单及工序汇入模板",fillingOutExcelTemplates:"Excel模板填写说明:",customersSameOrderDate:"1.相同订单的客户名称与订单预交日需要相同,若相同订单号的工单的客户名称与订单预交日不同,则默认以第一个工单的相关数据覆盖",workOrderEnteredGenerated:"1.生产工单号不可重复,若不输入,则汇入后自动生成",importantSorting:"2.重要排序输入数字(0-4),数字越大,优先级越高,若不填写。则汇入后系统自动带入2(表示正常)",processPathName:"3.工艺路线栏位输入对应的工艺路线名称",processPathFieldNumber:"5.工序栏位填写内容是工序顺序(数字),需要是工艺路线中已维护的工序",executorsJobNumbers:"6.工序的预计执行人员(工号)若有多个,则用英文逗号隔开",severalProcessesFewLines:"7.每个工单,工艺路线中有几个工序,数据就有几行",fillingInstructions:"填写说明",selectImportTemplate:"选择汇入模板",onlyImportWork:"仅汇入工单",workOrdersProcessDetails:"汇入工单及工序明细",planWorkOrderImportTemplate:"生产工单工单汇入模板",planWorkOrderProcessImportTemplate:"生产工单工单及工序汇入模板",importantSortIsEmpty:"重要排序为空",fileTypeErrorAndUploadXlsx:"汇入档案类型须为(.xlsx)档",repeatedOperations:"相同生产工单号的工序重复",containsFailed:"含有未通过校验,请检查",customizationProcessPath:"工艺路线自定义",jumpToThe:"跳转至第",page:"页",addWorkOrder:"新增工单",editWorkOrder:"编辑工单",buildWorkOrder:"工单建立",baseField:"基本栏位",selectCustomField:"请选择自定义字段",processedGoodProductsNum:"良品数",processedDefectiveProductsNum:"不良品数",deviceWorkNum:"设备生产数量",basicWorkReportFieldFilling:"基本报工栏位填写",customWorkReportFieldFilling:"自定义报工栏位填写",customFormFilling:"自定义表单填写",basicFieldModification:"基本栏位修改",customFieldModification:"自定义栏位修改",customFieldReocrd:"报工自定义记录",customFieldName:"自定义栏位名称",customFieldValue:"自定义栏位记录",insufficientAvailableInventoryTip:"工单【{arr}】可用库存不足,请确认是否需要执行派送工单",reportNumSetting:"生产数量自动带入设定",autoCompleteSetting:"工序自动完工功能设定",defaultShow:"默认显示",defaultShowThroughput:"默认显示需求工件数",cantOpenReview:"自动完工功能打开时,无法开启审核功能!",cantOpenAutoComplete:"审核功能打开时,无法开启自动完工功能!",dataCollection:"数据采集",getDataRequired:"开始时间、结束时间以及设备栏位需必填!",onlyNetEquip:"数据采集只可采集联网设备数据!",outserviceDevice:"机台停用,不可派送",eightDigits:"数值不得超过八位数",pathProcesslimitation:"工艺路线下工序数量不可超过200",auditFail:"已开启手动报工限制设定,无法关闭审核",consumptionAmount:"耗用量",procurementNotProgress:"采购未进",stockModel:"库存模式",finishedProductMarket:"成品超市",patchInventory:"尾数库存",bsInventory:"BS库存",adjustedInventory:"调节库存",batchRollingInventory:"批量滚动库存",batchInventory:"批量库存",rollingInventory:"滚动库存",mrpSetting:"MRP设定",replenishment:"回补数量",turnoverDays:"周期天数",adjustMagnification:"调整倍率",minimumOrderQuantity:"批量倍数生产(MOQ)",minimumPackQuantity:"最小批量生产(MPQ)",reorderPoint:"再订购点",safetyStock:"安全库存",inventoryReplenishmentAmount:"库存回补量",deliveryDay:"交期",valueNotBeNegativeAndZero:"数值不得为零或负数",day:"天",valueNotBeFloat:"数值须为整数不得有小数点",productData:"物料信息",valueNotBeNegative:"数值不得为负数",MRPSettingRequired:"已选择库存模式,MRP设定相关内容为必填",hour:"时",minute:"分",second:"秒",workTimeUnit:"工时单位",technologicalRequirements:"工艺要求",intMoreThan8:"整数位不能超过8位",floatMoreThan3:"小数位不能超过3位",wrongImportTimeUnit:"工时单位汇入格式错误",standardTimeMustPositive:"标准工时需为正数",workOrderRequirementsNumber:"工单需求数",processRequirementsNumber:"工序需求数",productionReport:"生产报工",processRequires:"工序需求数",expectedProcessingEquipment:"预计加工设备",change:"调机换线",changeItem:"调机项目",changeMark:"调机说明",startAdjustMachine:"开始调机",changeStatusSuccess:"调机成功!",changeStatusFail:"切换调机中状态失败!",changeError:"当前工位子工单尚未设定工位",SystemError_api:"系统错误",adjustmentEquip:"调机设备",resourceAssign:"资源指派",personnelAssign:"人员指派",deviceAssign:"设备指派",currentAssignedDevice:"当前指派设备",selectGroup:"选择群组",selectDevice:"选择设备",manufactureSettings:"制造执行设定",reportWorkQRcode:"产生二维码",personnelWorkLog:"人员上下机",settingPage:"设定页面",settingItem:"设定项目",reset:"重置",generateQrcode:"产生QRCODE",downloadQrcode:"下载QRCODE",settingQrcodeSize:"设定尺寸",settingQrcodeFirst:"请先设定QRCODE",qrcode:"QRCODE",copyQrcodeURL:"复制QRCODE网址",sizeLimit:"尺寸须为0至450",workProject:"工作项目",adjustmentProject:"调机项目",adjustmentPersonnel:"调机人员",adjustmentTimeInterval:"调机时间区间",adjustmentWaringOne:"当前设备正在工序",adjustmentWaringTwo:"调机,继续操作会结束上次的调机任务,是否继续?",adjustmentStartTime:"调机开始时间",adjustmentEndTime:"调机结束时间",adjustmentDuration:"调机时长(时)",production:"生产",prodWorkOrder:"生产工单",speedOfProgress:"进度",defectiveRate:"不良率",actualStartDate:"实际开工时间",actualCompletionDate:"实际完工时间",selectEquip:"选择设备",selectedItems:"已选择【{num}】项",productFile:"产品档案",creator:"创建人",updatePerson:"更新人",updateTime:"更新时间",templatename:"工艺模板名称",templatenameSave:"工艺模板的工序信息支持实时保存",abnormalProcess:"当前选择的工序有异常",templatenameRepeat:"工艺模板名称重复",newTemplate:"新增工艺模板",editTemplate:"编辑工艺模板",selected:"已选择",term:"项",templatEmpty:"工艺模板名称不能为空",templatError:"工艺模板名称格式错误",importProcessTemplate:"导入工艺模板",processTemplate:"工艺模板",columnConfigurationFail:"列配置信息查询失败",administration:"管理",keepOne:"一个模板下必须有一个工序",fileMassDelete:"批量删除",dataError:"资料错误",fileNotSelected:"请选择欲删除的文件",addCustomColumn:"新增自定义栏位",showDisableColumn:"显示停用栏位",upOrder:"向上排序",downOrder:"向下排序",reuse:"重启",orderFail:"排序失败",stopCustomRemind:"确认停用栏位",itemOrder:"项目顺序",customAttributeName:"自定义栏位名称",displayType:"栏位类型",optionsNumber:"选单列表数量",customColClass:"工艺阶层",customSelectCol:"自定义下拉选项",textField:"手输",selectField:"下拉选项",hyperLink:"超链接",editCustomColumn:"编辑自定义栏位与排序设定",dropOptionSetting:"下拉选项设定",dropOptionIsRequired:"下拉选项不得为空",someColumnRequired:"请完成必填栏位",customLimit:"对应阶级只能添加{number}个自定义属性",colNoSpecialCharacters:"栏位不可存在特殊字元",addCustomColumnOption:"新增自订选项",saveBasicCol:"储存基本栏位",confirmToDeleteOption:"若有资料于此自订栏位选择此选项,系统将不为其保留,您是否确认删除此选项?",machineGroup:"机群",productRouteVersion:"产品路径版本",fileTypeName:"档案类型名称",defaultFileTypeNoEditAndDelete:"预设资料不可更动",getFileTypeFail:"取得档案类别失败",fileTypeIsUsedCannotDelete:"档案类型已被使用不可删除",machineAdjustmentProject:"调机项目",addMAjroject:"新增调机项目",modifyMAjroject:"修改调机项目",machineAdjustmentInstructions:"调机说明",writeBackWorkPiecesNum:"报工件数回写",confirmToDelete:"您确定删除此笔资料?",strLengthLimit200:"字串长度不可超过200字元",duplicateMAjroject:"调机项目名重复",fileArchiveManagement:"文件档案管理",documentCustomField:"单据自定义字段",materialCustomization:"物料自定义",processCustomization:"工序自定义",customizationOfProcessRoute:"工艺路线自定义",customFileType:"文件类型自定义",workOrderCustomization:"工单自定义",customizedJobReporting:"报工自定义",customizedReasonsForDefects:"不良原因自定义",customTuning:"调机自定义",templateIssue:"模板有问题",inspectedQuantity:"请检查表头字段数量",inspectionContent:"请检查表头字段顺序或内容",pathProcessOrderLimitation:"工单下添加工序数量不可超过200",to:"至",starttime:"开始时间",endtime:"结束时间",productNumber:"物料编号",materialSpec:"规格型号",expectedStartDate:"预计开工时间",expectedDueDate:"预计完工时间",materialUnit:"单位",materialType:"产品类型",materialProperty:"产品属性",materialState:"产品状态",processOrderSn:"工序子工单号码",batchNumber:"批次号",productionOrderRequiredThroughput:"工单需求数",productionOrderExpectedStartDate:"预计开工时间",productionOrderExpectedDueDate:"预计完工时间",productionOrderPriority:"重要排序",createBySelf:"自制件",purchasedParts:"采购件",none:"无",finishedMaterial:"成品",semiFinishedMaterial:"半成品",moldTool:"模具",partCountRequired:"工序需求数",productionFileName:"加工程式",orderNumberIsNullOrEmpty:"订单编号必须是必填",orderNumberLengthExceeded:"订单编号长度不能超过50个字元",orderCustomerNameLengthExceeded:"客户名称长度不能超过50个字元",orderExpectedDueIsNotDate:"订单预计完工时间必须是日期格式",orderCustomerNameInconsistent:"同样订单编号,客户名称必须一致",orderExpectedDueInconsistent:"同样订单编号,订单预交日必须一致",productionOrderNumberIsNullOrEmpty:"生产工单号必须是必填",productionOrderNumberLengthExceeded:"生产工单号长度不能超过30个字元",productionOrderNumberIsExist:"生产工单号已经存在于系统内",partNumberIsNullOrEmpty:"料号必须是必填",partNumberNotExist:"料号必须存在于系统内",productionOrderRequiredThroughputIsNullOrEmpty:"工单需求工件数必须是必填",productionOrderRequiredThroughputIsNotNumber:"工单需求工件数必须是数值",productionOrderRequiredThroughputIsNotGreaterThanZero:"工单需求工件数必须大于0",productionOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"工单需求工件数不能大于 int.MaxValue",productionOrderExpectedStartDateIsNotDate:"工单预计开工时间必须是日期格式",productionOrderExpectedDueDateIsNotDate:"工单预计完工时间必须是日期格式",productRouteNameIsNullOrEmpty:"工艺路线名称必须是必填",productRouteNameNotExist:"工艺路线名称必须存在于系统内",productionOrderPriorityIsNotCorrectType:"工单重要排序格式错误",productionOrderPartNumberInconsistent:"同样生产工单号,料号必须一致",productionOrderRequiredThroughputInconsistent:"同样生产工单号,工单需求工件数必须一致",productionOrderExpectedStartDateInconsistent:"同样生产工单号,预计开工时间必须一致",productionOrderExpectedDueDateInconsistent:"同样生产工单号,预计完工时间必须一致",productionOrderProductRouteNameInconsistent:"同样生产工单号,工艺路线名称必须一致",productionOrderPriorityInconsistent:"同样生产工单号,工单重要排序必须一致",productionOrderOrderInconsistent:"同样生产工单号,订单编号必须一致",productionOrderNumberDuplicate:"重复的生产工单号",productionOrderBatchNumberIsExist:"工单批次号已经存在系统内",partNumberStatusIsDisable:"料号状态是停用",productionOrderCustomFieldValueLengthError:"工单自订栏位值长度错误",processOrderCustomFieldValueLengthError:"工序子工单自订栏位值长度错误",workOrderCustomFieldValueLengthError:"工位子工单自订栏位值长度错误",productionOrderNotFindCustomOption:"工单自订属性中找不到选项",productionOrderDateFormatError:"工单自订属性日期格式错误",productionOrderCustomFieldInconsistent:"同样生产工单号,自订栏位必须一致",productionProcessIsNullOrEmpty:"工序子工单工序顺序必须是必填",productionProcessIsNotNumber:"工序子工单工序顺序必须是数值",productionProcessNotExist:"工序子工单工序顺序不存在于系统内",processOrderRequiredThroughputIsNullOrEmpty:"工序子工单需求工件数必须是必填",processOrderRequiredThroughputIsNotNumber:"工序子工单需求工件数必须是数值",processOrderRequiredThroughputIsNotGreaterThanZero:"工序子工单需求工件数必须大于0",processOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"工序子工单需求工件数不能大于 int.MaxValue",processOrderExpectedStartDateIsNotDate:"工序子工单预计开工时间必须是日期格式",processOrderExpectedDueDateIsNotDate:"工序子工单预计完工时间必须是日期格式",processOrderPriorityIsNotCorrectType:"工序子工单重要排序格式错误",processOrderRequiredThroughputInconsistent:"同样工序子工单,工序子工单需求工件数必须一致",processOrderExpectedStartDateInconsistent:"同样工序子工单,预计开工时间必须一致",processOrderExpectedDueDateInconsistent:"同样工序子工单,预计完工时间必须一致",processOrderPriorityInconsistent:"同样工序子工单,工序子工单重要排序必须一致",processOrderNotFindCustomOption:"工序子工单自订属性中找不到选项",processOrderDateFormatError:"工序子工单自订属性日期格式错误",processOrderCustomFieldInconsistent:"同样工序子工单,自订栏位必须一致",workOrderEquipGroupNameNotExist:"工位子工单机群栏位必须存在于系统内",workOrderEquipNameNotExist:"工位子工单设备栏位必须存在于系统内",workOrderShiftNameNotExist:"工位子工单班制名称必须存在于系统内",workOrderEmpNumberNotExist:"工位子工单工号栏位必须存在于系统内",workOrderRequiredThroughputIsNotNumber:"工位子工单需求工数必须是数值",workOrderRequiredThroughputIsNotGreaterThanZero:"工位子工单需求工数必须大于 0",workOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"工位子工单需求工数不能大于 int.MaxValue",workOrderExpectedStartDateIsNotDate:"工位子工单预计开工时间必须是日期格式",workOrderExpectedDueDateIsNotDate:"工位子工单预计完工时间必须是日期格式",workOrderRequiredThroughputKeyIsNullOrEmpty:"工位子工单需求工件数Key没填",workOrderBatchNumberIsNotBelongToProductionOrder:"工位子工单的批次号不属于工单",workOrderNotFindCustomOption:"工位子工单自订属性中找不到选项",workOrderDateFormatError:"工位子工单自订属性日期格式错误",onlyOrderProductionOrderDataLegal:"只有订单跟工单资料合法",productionOrderOtherRowDataError:"同工单下,有其他列资料错误",notFindCustomFieldId:"找不到自订栏位id",salespersonMustExistWithinTheSystem:"该业务员不存在或已被停用",theLengthEmployeeNumberExceed20:"业务员工号长度不能超过20个字元",theLengthSourceOrderNumberExceed50Characters:"工单源单单号长度不能超过50个字元",theFormatError:"工单源单单号格式错误",theLengthProductionNumberExceed50Characters:"工单生产编号长度不能超过50个字元",workOrderProductionNumberFormatError:"工单生产编号格式错误",duplicateWorkOrderProductionNumber:"重复的工单生产编号",theProductionNumberAlreadyExistsInTheSystem:"工单生产编号已经存在系统内",orderSalesmanIsDisable:"该业务员不存在或已被停用",sameOrderNumberSalespersonConsistent:"同样订单编号,业务员必须一致",deviceName:"设备名称",itemsPerPage:"每页资料数",cancel:"取消",dispatch:"派工",loading:"载入中",consDate:"创建时间",machineName:"设备名称",serialNumber:"设备序号",planMaking:"计划制定",planProgress:"计划进度",standardTotalTime:"预期总工时",standardTimeSecondPerItem:"标准工时(秒/件)",exportSyntecOrder:"汇出新代工单",exportExcel:"汇出Excel",someColumnIsRequired:"栏位名称含有(*)为必填栏位,请完整填写",partCount:"实际/需求工件数",actualProgress:"实际进度",expectedProgress:"预期进度",excelCustomize:"Excel自定义",tableHeaderCustomize:"表头自定义",chooseTimeRange:"请选择期间范围",groupName:"群组名称",progressStatus:"进度状态",sortBy:"排序依据",orderStatus:"工单状态",hide:"隐藏",cloudImport:"云汇入",orderSchedulePreview:"工单排程预览",deviceSchedulePreview:"设备排程预览",productionOrderNumDetail:"工单内容",actualThroughput:"实际工件数",abnormal:"异常",order:"工单",subOrder:"子工单",saveOrder:"储存工单层级",dataSaveSuccess:"资料储存成功",warning:"提醒",serialNumberRuleSetting:"序号规则设定",snBatchSetting:"批次/序号规则",serialNumberPreview:"序号预览",prefixWord:"前缀字",middleWord:"中继字",sequenceNumberCount:"流水号位数",nowDate:"日期",noSelect:"無",partNumBefore:"前",partNumAfter:"后",partNumCount:"码",year:"年",month:"月",yearMonth:"年月",yearMonthDay:"年月日",numberLimitTen:"位数不得超过十码",numberLimitFifty:"总位数不得超过五十码, 目前:",numberLimitPositive:"位数必须大于0码",shiftName:"班别",submitSuccess:"提交成功",deleteSuccess:"删除成功",numberNotInteger:"位数只能为整数",workOrderReport:"工单报工",status:"状态",inUseStatus:"使用状态",stop:"已停用",batchStop:"批量停用",editAndStop:"编辑与停用",serialNumBinding:"序号绑定",showBindProductionOrder:"显示已绑定工单",serialNumGeneration:"序号生成",productionOrderCount:"工单数量",bindedNumber:"已绑定数量",addSerialNum:"新增序号",batchSerialNum:"批量新增序号",autoGenCount:"自动生成数量",autoGen:"自动生成",binded:"绑定",bindedSerialNumberTable:"绑定序号列表",deleteDuplicated:"清除重复序号",serialNumExample:"序号绑定模板",serialNum:"序号",colNum:"列数",reason:"原因",importFailInfo:"汇入失败资讯",check:"检查",importProductionOrderQuantity:"汇入工单数量",importSerialNumCount:"汇入序号数量",importInfoCorrect:"汇入资料正确",importSuccessSerialNumCount:"成功汇入序号数量",enterCorrectQuantity:"请输入正确的数量",numLessRequired:"绑定数小于所需工件数",serialNumExcel:"工单序列号绑定报表",serialDuplicated:"序号重复",serialDuplicatedCount:"绑定序号重复数量:",manualAddNum:"手动新增序号",unbindedNotEnough:"未绑定序号不够,无法绑定",bindedDate:"绑定时间",machineAndStation:"机台/工位",importantOrder:"重要排序",result:"结果",importSerial:"汇入",availableCount:"可绑定数量",notAddNewSerial:"操作错误,尚未新增序号",serialNumUnbinding:"序号解绑",reportStatus:"报工状态",sequenceNumber:"项次",unbinded:"解绑",allUnbinded:"全部解绑",isReportWork:"已报工",notReportWork:"未报工",confirmUnbindAll:"确定是否要解绑搜寻到的所有序号?",includeIsReportWork:"解绑序号包含已报工序号,请确认是否仍要解绑",exportSerialNumber:"汇出序号",snExportPreview:"序号汇出预览",snExportSetting:"序号汇出设定",snPrintSize:"序号列印大小",centimeter:"公分",orderSerialNumber:"工单序号",pageSizeLimit:"QRCode大小设定限制为0.5公分到15公分",defaultPrintSize:"QRcode预设列印大小",noSerialNumberData:"尚无序号资料",importTime:"进站时间",exportTime:"出站时间",processingType:"加工类型",batch:"批量",currentSN:"当前序号",processSetting:"工艺设定",returnDispatch:"退回派工",week:"周",expectedTuningTime:"预计调机时长",productionOrderSort:"工单排序",productionOrderSortSetting:"工单排序设定",singlePieceCycle:"单件周期(秒)",scheduleSetting:"排程设定",scheduleMethodSetting:"排程方式设定",NStationSetting:"节拍点设定",defaultScheduleMethod:"预设排程方式",basicDaySetting:"基础日设定",defaultStart:"预设启动",startStationComputing:"起始站运算",NStationCalculation:"节拍点运算",completionStationComputing:"完工站运算",plus:"加",minus:"减",NStation:"节拍点",firstStationTime:"起始站开工时间",NStationTime:"节拍点开工时间",endStationTime:"完工站完工时间",processOrder:"工序子工单",expectedImplementStaff:"预计执行人员",transferTime:"移转时间",productionProcessTransferCount:"最小移转件数",showNoProcessOrderExpectedStartDate:"显示无开工日工序",pageShowSetting:"页面显示设定",processOrderExpectedStartDate:"预计开工时间(工序子工单)",processOrderExpectedDueDate:"计划完工日(工序子工单)",processOrderRequiredThroughput:"需求工件数(工序子工单)",equipGroupName:"群组名称",equipName:"机台/工位",processOrderPriority:"重要排序(工序子工单)",routeID:"路径工序ID",snBindedOther:"该序号已绑定其他工单,是否仍确定绑定",numberLimitTwenty:"位数不得超过二十码",adjustMachine:"调机中",statusError:"异常处理中",serialNumRule:"序号规则",customParameter:"自定义参数",ruleName:"序号规则名称",showDisable:"显示停用",digits:"流水号位数",ruleState:"规则状态",defaultRule:"预设规则",snRange:"序号区间设定",paramName:"参数名称",selectCount:"选项数量",latestModiDate:"上次更新时间",selectName:"选项名称",displayString:"显示字串",default:"预设",param:"选项",snNameExist:"该序号参数名称已存在",optionExist:"该选项名称或序号显示字串已存在",deleteOptionWarn:"是否确定移除该选项?",needParamName:"请选择序号参数名称",needFullRange:"请填写正确序号区间",deleteCustomParamWarn:"是否确定移除该自定义变数",paramIsUsed:"该序号参数正在被使用,删除前请先移除规则中选用该参数的中继字",prodOrderBind:"工单绑定",partNumBind:"料号绑定",snParam:"序号参数",bindedRecord:"绑定记录",serialRuleInfo:"序号规则资料",bindedEmp:"绑定人员",bindedTime:"绑定时间",snStart:"序号开头",snEnd:"序号结尾",count:"数量",modiSnBinding:"变更序号绑定",batchAdd:"批量加入",pnReplacement:"料号替换",snAddStart:"序号开始",snAddEnd:"序号结束",snWasBinded:"序号已绑定其他料号",snExcelLimitOnePn:"Excel汇入限定一笔料号",pnNotUseProdNum:"料号绑定无法使用包含生产工单号的中继字,请确认序号规则",generatedCount:"已生成【 {count} 】笔序号",selectPnWarn:"请选择物料编号",needGenFirst:"请先生成此笔【 {partSerialNumber} 】序号",serialNumberQuery:"序号查询",snNameAlreadyExist:"该序号名称已存在",materialName:"物料名称",getDetail:"详细资讯",networkError:"网络或主机异常",mutiSelect:"复选",level:"阶层",columnName:"栏位名称",workOrderLevel:"工位层级",makeType:"制造类型",rebatchSplitting:"重新拆批",saveBatch:"储存变更",partNumberHasNoRuleSetting:"该料号未设置批次号规则",batchNumberRule:"批次号规则",batchRuleName:"批次号规则名称",batchNumberRuleSetting:"批次号规则设定",batchNumberPreview:"批次号预览",batchCount:"工单拆批数量",batchCountLimit:"工单拆批数量需大于0",batchNameAlreadyExist:"该批次号规则名称已存在",illegalEmpty:"不可为空",exportData:"数据导出",group:"群组",getProductRouteListError:"取得产品路径清单错误",use:"启用",productRouteName:"工艺路径名称",processInfo:"工序资讯",showMore:"显示更多",customCol:"自定义栏位",finishProduct:"成品",semiFinishProduct:"半成品",knives:"刀具",item:"项目",batchQrcode:"批次二维码",operationEmp:"操作人",operationTime:"操作时间",conditionName:"条件名称",defaultValue:"预设值",workOrderEquipment:"设备群组/机台工位",processOrderProgressStatus:"进度状态(工序子工单)",past:"过去",future:"未来",current:"当前",timeLine:"时间轴",timeUnit:"时间单位",customColSetting:"自定义栏位设定",orderLevel:"工单阶层",string:"手输",singleSelect:"下拉选项",date:"日期",yearMonthDate:"年-月-日",productionOrderStatus:"工单状态",productionOrderStatusList:"工单状态",processOrderStatusList:"进度状态",inProgress:"执行中",craftPathName:"工艺路径",productionProcessName:"工序名称",productionProcessNumber:"工序代码",sourceType:"云汇入",sourceTypeList:"云汇入",processOrderLastModify:"工序子工单更新时间",processOrderRemark:"备注",goodAndDefectiveCount:"良品/不良品总数",getDataError:"资料取得错误",getCustomColFail:"取自订栏位失败",workOrderExpectedStartDate:"预计开工时间(工位子工单)",workOrderExpectedEndDate:"计画完工日(工位子工单)",workOrderProgressStatus:"进度状态(工位子工单)",productionOrderConsDate:"创建日期(工单)",serialNumberCount:"已绑订数量",isCriticalProcess:"关键工序",empName:"人员",excelImportLimit1000Rows:"汇入资料数量不得超过1000笔",productionOrder:"生产工单",productionManagementSetting:"生产管理设定",sequenceNumberHierarchy:"序列号阶层图",serialNumberHistory:"序号历史记录",alter:"变更",jobDescription:"工作内容",bindWorkOrders:"绑定工单",unbindWorkOrders:"解绑工单",bindingPartNumber:"绑定料号",unbindingMaterialNumber:"解绑料号",changeBindingMaterialNumber:"绑定料号",numberManagement:"序号管理",batchCountLimitInteger:"工单拆批数量需为整数",allRecordsNum:"共 {total} 条记录",selectedRecordsNum:"已选 {selectedNum} 条",currentCount:"本页 {currentSize} 条记录",dragFileHereOr:"将文件拖到此处,或",clickToUpload:"点击上传",pleaseEnterQualifiedHyperlink:"请输入合格的超链接",pleaseCheckUploaded:"请检查带*附件表单项是否未上传附件",numberUploadsCannotExceed5:"上传数量不能超过5个",uploadFileSize20MB:"上传文件大小必须小于20MB!",downloadSuccessful:"下载成功",dateRangeArea:"日期区间",annex:"附件",radioButton:"单选框",checkBoxButton:"复选框",customFieldIDIsIllegal:"自定义栏位id非法",illegalDocumentType:"单据类型非法",customFieldsAreRequired:"自定义栏位必填",customTextCannotExceed50Characters:"自定义文本填写不能超过50字符",customNumbersExceed15Characters:"自定义数字填写不能超过15字符",customHyperlinkFillingIsIllegal:"自定义超链接填写非法",customSingleChoiceFillingIsIllegal:"自定义单选填写非法",customMultipleChoiceFillingIsIllegal:"自定义多选填写非法",illegalCustomTimeFilling:"自定义时间填写非法",illegalFillingCustomTimeInterval:"自定义时间区间填写非法",customNumberFillingIsIllegal:"自定义数字填写非法",ProductionOrderExpectedStartDateLatterThanDueDate:"预计完工时间(工单)>=预计开工时间(工单)",alreadyOverdue:"已逾期",materialCategory:"物料类别",materialProperties:"物料属性",materialStatus:"物料状态",mainSupplierName:"主供应商名称",duplicateColumnData:"此栏位数据已录入,请选择其他栏位",progressCheck:"进度查看",maxSupportedSimultaneousEdits:"最多支持同时编辑20个工单!",unableToEditClosedTickets:"包含“已关闭”状态的工单,无法进行多工单编辑",supportReopenClosedTickets:"仅已关闭状态的工单支持反关闭",undistributedOrder:"仅“未派工”状态的工单支持派送",unstartedOrderSupportsReturn:"仅“未开工”状态的工单支持退回",pleaseSelectWorkOrder:"请先选择工单",retreatSuccess:"退回成功",currentTicketClosed:"当前工单已关闭",closedTicketConfirmation:"已关闭的工单将无法进行任何操作,是否确认关闭?",closeSuccess:"关闭成功",antiCloseSuccess:"反关闭成功",importExcelData:"Excel导入",multiTaskEdit:"多工单编辑",batchUpdate:"批量更新",deliveryOrder:"派送工单",returnWorkOrder:"退回工单",antiClose:"反关闭",newMaterial:"新增物料",deleteMaterial:"删除物料",workOrderList:"工单列表",workOrderCustomRequiredFields:"请检查工单自定义必填项",workOrderInfoSavedSuccessfully:"工单信息保存成功",workOrderInfoSaveFailed:"工单信息保存失败",isConfirmCancel:"请确认是否取消?",ticketCorrespondingInfo:"请检查工单{workOrderNumber}对应的信息",attachmentUpload:"附件上传",workOrderNumbers:"工单号码",currentTableHasNoTickets:"当前表格暂无工单",expectedStartDay:"预计开工日",expectedCompletion:"预计完工日",salesOrderNumber:"销售订单号",checkWorkOrderRequiredFields:"请检查工单必填项",duplicateWorkOrderId:"有重复工单号",productionStation:"生产工位",productionEquipment:"生产设备",remainingProcessCannotDelete:"当前仅剩一条工序,不可删除",selectionNumber:"编号选择",identificationName:"编号名称",codePreview:"编号预览",selectNumberingRuleFirst:"请先选择编号规则",batchUpdateContent:"批量更新内容",batchUpdateSuccessful:"批量更新成功",batchUpdateFailed:"批量更新失败",failedToObtainSubWorkOrdersForTheProcess:"获取工序子工单失败",fillInTheBatchUpdateDataFirst:"请先填写批量更新数据",selectTheFieldNameFirst:"请先选择栏位名称",noAttachment:"附件无法修改",integerBitsMustNotExceed10Digits:"整数位不得超过10位数字",notExceeding30Characters:"不得超过30字符",notExceeding50Characters:"不得超过50字符",creationTimeRange:"创建时间区间",expectedConstructionStartDateRange:"预计开工日区间",modifyMaterial:"修改物料",workstationData:"含有工位数据,此选项不可为空",nextWorkstationInfo:"更新失败,请检查工单下工序对应的工位信息",closedTicketsUpdate:"'已关闭'的工单无法进行批量更新",workOrderGenerationFail:"工单号生成失败",materialNoImage:"此物料无图片预览",materialDetails:"物料详情",confirmToDeleteAction:"请确认是否删除?",startDateIsAfterEndDate:"预计开工日大于预计完工日",completionDateBeforeStartDate:"预计完工日小于预计开工日",processInfoIncorrect:"请检查工序信息",pleaseSelectData:"请先选择数据",circulationTagNumber:"流转标签号",numberOfTags:"每张流转卡数量",numberRuleName:"编号规则名称",previewOfNumberingRules:"编号规则预览",batchIssuanceQuantity:"批量发行数量",manuallyAddCirculationLabels:"手动新增流转标签",batchIssuanceOfCirculationLabels:"批量发行流转标签",bindFlowLabelList:"绑定流转标签列表",labelingIssuance:"标签发行",tagPreview:"标签预览",unbindSuccessfully:"解绑成功",closeAddTagNumber:"若取消,则本次新增的标签将不会保存,是否确认取消?",countOfTags:"标签数量",exportLabelIssuanceTemplate:"标签数量若不填写,则默认为1",theFileSizeCannotExceed5Mb:"文件大小不能超过5MB",duplicateCirculationTagNumber:"存在重复流转标签号,请重新调整",onlySupportsPositiveIntegers:"仅支持正整数",insufficientNumberOfBindingsAvailable:"当前可绑定的数量不足,请重新调整",flowLabelSpecification:"流转标签号仅支持输入大小写的英文字母和数字,且不可有空格",duplicateCirculationTagNumberWithNewlyAddedData:"流转标签号与已新增数据重复",batchUnbinding:"批量解绑",pleaseSelectTheBoundLabelFirst:"请先选择已绑定的标签",areYouSureToUnbind:"标签解绑后将立即生效,是否确认解绑?",batchUnbindingSuccessful:"批量解绑成功",pleaseSelectUnboundTagsFirst:"请先选择未绑定的标签",batchDeletionSuccessful:"批量删除成功",cannotSaveInPreviewState:"预览状态下无法保存",generate:"生成",remainingBindingQuantity:"剩余可绑定数量为",theCirculationTagNumberIsAUniqueCodeAndCannotBeDuplicated:"流转标签号为唯一码,不可重复",insufficientRemainingIssuableQuantity:"剩余可发行数量不足",thereIsNoCirculationLabelNumberingRule:"不存在流转标签编号规则",boundQuantity:"已绑定数量",successfullyGenerated:"生成成功",generationFailed:"生成失败",selectTheCirculationTagNumber:"请选择流转标签号",duplicateFileNameExistingFile:"档案名称重复,是否覆盖现有档案?",materialLabelIssuance:"物料标签发行",labelType:"标签类型",labelSourceObject:"标签来源对象",tagsNumber:"标签个数",latestLabelIssuer:"标签最新发行人",latestLabelReleaseTime:"标签最新发行时间",labelIssuer:"标签发行人",labelReleaseTime:"标签发行时间",materialLabel:"物料标签",noType:"无类型",materialMasterData:"物料主数据",tagSourceNumber:"标签来源单号",tagNumberingRules:"标签编号规则",rowExport:"汇出",labelIssuanceSource:"标签发行来源",manuallyAddTags:"手动新增标签",tagNumber:"标签号",quantityPerLabel:"每个标签数量",batchReleaseLabels:"批量发行标签",labelRulesPreview:"标签规则预览",productionWorkOrderNumber:"生产工单号",labelImportTemplate:"标签汇入模板",excelTemplateFields:"模板栏位",orderNotExist:"生产工单号不存在",materialNotExist:"物料编号不存在",tagValidate:"仅支持输入大小写的英文字母和数字,且不可有空格",releaseTagsList:"发行标签列表",selectMaterialMasterData:"选择物料主数据",selectProductionWorkOrder:"选择生产工单",return:"返回",confirmReturn:"确定返回?",returnTip:"是否确认取消",deleteTagEmptyMsg:"请先选择要删除的标签",deleteTagTip:"标签删除后将立即生效,是否确认删除?",plsSelectLabelSource:"请选择标签发行来源",documentNumber:"单据编号",productionTagExcelTemplate:"单据标签汇入模板",materialTagExcelTemplate:"物料标签汇入模板",tagExcelTemplate:"标签汇入模板",firProductionTip:"请在单据编号栏位填写对应的单据编号",secProductionTip:"汇入的不同的单据编号将自动拆分汇总",firMaterialTip:"请在物料编号栏位填写对应的物料编号",secMaterialTip:"汇入的不同的物料编号将自动拆分汇总",firDefaultTip:"标签号栏位不可重复",secDefaultTip:"标签数量若不填写,则汇入时默认为1",labelReplacementBinding:"标签换绑",availableRemainingNumber:"剩余可绑定数量为",noAvailableNumber:"剩余可发行数量不足,请重新输入",tagChangeBindingMsg:"标签换绑不可多选",tagSelectBindingMsg:"请选择签来源对象是“生产工单”或“物料主数据”的数据进行换绑",successfullyChangedBinding:"换绑成功",orderNotChange:"未修改生产工单号",productNumNotChange:"未修改物料编号",columnNotLessSix:"页面中栏位最少不得低于6列",columnFrozenFour:"最多可冻结4列数据",selectBindData:"请先选择需要换绑的数据",tagPublishQR:"物料标签",plsSelectData:"请选择数据",printTag:"标签打印",positiveInteger:"请输入正整数",onlyUseOneTag:"一次只能对一个工单发行标签",closedTicketsNotIssueTags:"已关闭的工单无法发行标签",selectData:"请先选择数据",endDate:"结束日期",selectPrintingTemplate:"选择打印模板",printTemplateName:"模板名称",templatesSystem:"系统内置模板",size:"尺寸大小",printedFirstData:"请先选择需要打印的数据",numberExceedsLimit:"该编码原则已超过上限,请至工厂建模中的编号规则设定",submitReviewSettings:"提交/审核设定",productionPlanSetting:"生产计划设定",salesOrderSetting:"销售订单设定",autocommit:"自动提交",automaticReview:"自动审核",automaticallySubmitAndReview:"自动提交且审核",planExcelExport:"Excel导出",productionPlanNumberCannotBeRepeated:"1.生产计划号不可重复,若不输入,则汇入后系统按照生产计划对应的编号规则自动生成",enterTheCorrespondingProcessPathNameInTheProcessPathField:"2.工艺路径栏位输入对应的工艺路径名称",afterFillingInTheRequiredFields:"3.必填栏位填写后即可进行汇入",planToImportTemplate:"计划汇入模板",productionPlanImportTemplate:"生产计划汇入模板",productionPlanNumber:"生产计划号",plannedQuantity:"计划数量",requestDeliveryDate:"要求交期",plannedCommencementDate:"计划开工日",plannedCompletionDate:"计划完工日",fatherPlanNumber:"父计划号",mainPlanNumber:"主计划号",submittedFirst:"请先选择需要提交的数据",submissionFailed:"提交失败,待提交状态下的单据才能提交",pendingSubmissionStatusSubmission:"待提交状态下的单据才能提交,以下计划状态不满足:",resubmittedFirst:"请先选择需要反提交的数据",antiSubmissionFailed:"反提交失败,待审核状态下的单据才能反提交",pendingReviewStatusForResubmission:"待审核状态下的单据才能反提交,以下计划状态不满足:",resubmittedSuccess:"反提交成功",reviewedSuccess:"审核成功",auditedSuccess:"反审核成功",closedSuccess:"关闭成功",antiClosureSuccess:"反关闭成功",reviewedFirst:"请先选择需要审核的数据",auditFailed:"审核失败,待审核状态下的单据才能审核",pendingStatusReview:"待审核状态下的单据才能审核,以下计划状态不满足:",auditedFirst:"请先选择需要反审核的数据",antiAuditFailed:"反审核失败,已审核状态下的单据才能反审核",reviewedStatusUnapproved:"已审核状态下的单据才能反审核,以下计划状态不满足:",closedFirst:"请先选择需要关闭的数据",shutdownReason:"关闭原因",fillInTheReasonForClosure:"请填写关闭原因",reverseClosedFirst:"请先选择需要反关闭的数据",antiClosureFailed:"反关闭失败,已关闭状态下的单据才能反关闭",closedStatusReverseClosure:"已关闭状态下的单据才能反关闭,以下计划状态不满足:",deletedFirst:"请先选择需要删除的数据",deleteFailed:"删除失败,待提交状态的单据才能删除",toBeSubmittedStatusDeleted:"待提交状态下的单据才能删除,以下计划状态不满足:",planStatus:"计划状态",bomVersion:"BOM版本",remainingPlanCount:"剩余计划数量",completionQuantity:"完工数量",orderQuantity:"订单数量",workStartDate:"实际开工日",workEndDate:"实际完工日",creationDate:"创建日期",submitter:"提交人",submitTime:"提交时间",avoidSubmitter:"反提交人",antiSubmitTime:"反提交时间",antiReviewer:"反审核人",antiReviewTime:"反审核时间",closePerson:"关闭人",closeTime:"关闭时间",antiClosePerson:"反关闭人",antiCloseTime:"反关闭时间",treatSubmit:"待提交",treatAudit:"待审核",minColumnCountInPage:"页面中栏位最少不得低于6列",maxFrozenCols:"最多可冻结4列数据",adjustNumber:"调整数量",exportOfProductionPlan:"生产计划汇出",selectPlanFirst:"请先选择计划",closedPlansUpdate:"仅'待提交'或'待审核'的工单可以进行批量更新",planLevel:"计划层级",mustBeAPositiveInteger:"必须为正整数",materialAlreadyExists:"物料已存在,添加失败,请重新选择!",checkPlanCorrespondingInfo:"请检查计划{planNumber}对应的信息",pendingSubmitEditable:"仅待提交,待审核的计划可编辑",maxEditPlans:"最多支持同时编辑20个计划",planList:"计划列表",productBomList:"产品BOM清单",checkPlanCustomFields:"请检查计划自定义字段",planInfoSavedSuccess:"计划信息保存成功",planInfoSaveFailure:"计划信息保存失败",addMaterial:"添加物料",materialTypeId:"物料类型",unitUsage:"单位用量",demandQuantity:"需求数量",inventoryQuantity:"库存数量",inventoryStorageQuantity:"入库数量",positiveIntegerCheck:"只能输入大于0的正整数",bomDeleteValidation:"当前BOM清单只剩一条,删除失败",standardWorkHourValidation:"整数位不得超过8位,小数位不得超过3位",maxTenDigitInt:"只能输入不超过10位的整数",orderQuantityValidation:"只能输入不超过10位的正整数",planStartDateAfterPlanEndDate:"计划开工日大于计划完工日",planCompletionDateBeforePlanStartDate:"计划完工日小于计划开工日",noDataInTable:"当前表格暂无数据",checkRequiredFieldsInPlan:"请检查计划必填项",hasDuplicatePlanId:"有重复计划号",system:"系统",reverseSubmission:"反提交",toExamine:"审核",antiAudit:"反审核",generateWorkOrder:"生成工单",adjustNumberValid:"输入框只能输入数字(包括正负整数),且最多输入10位数字",noDataCopy:"请先选择需要复制的数据",plannedStartDateIsIllegal:"计划开工日时间格式填写违法",plannedDueDateIsIllegal:"计划完工日时间格式填写违法",productionPlanList:"生产计划",productionPlanningProcess:"生产计划工序",multiPlanEdit:"多计划编辑",maxEditProductionPlans:"最多支持同时编辑20个生产计划!",editableProductionPlans:"仅“待提交”和“待审核”状态的生产计划可进行多计划编辑,请重新选择",submitTooltip:"待提交状态下的单据才能提交",reverseSubmitTooltip:"待审核状态下的单据才能反提交",toExamineTooltip:"待审核状态下的单据才能审核",autiAuditTooltip:"已审核状态下的单据才能反审核",closeTooltip:"已关闭状态下的单据不能关闭",antiCloseTooltip:"已关闭状态下的单据才能反关闭",deleteTooltip:"待提交状态的单据才能删除",parentMaterialNotAsChildMaterial:"父项物料与子项物料不能相同",copyPlan:"复制计划",confirmDelete:"确认删除",confirmCancel:"确定取消?",changeTagPublishBindFail:"当前生产工单的可绑定数量不足,切换失败!",pushDown:"下推",associativeQueries:"关联查询",theMinimumColumns6:"页面中栏位最少不得低于6列",upTo4ColumnsFrozen:"最多可冻结4列数据",returnQuantity:"退货数量",inboundRemain:"入库未完",listOfDocuments:"单据列表",warehousingEntry:"入库单",outboundOrder:"出库单",warehouseEntryNotice:"入库通知单",deliveryNotice:"出库通知单",inventoryList:"入库单列表",listOutboundOrders:"出库单列表",sourceOrderType:"源单类型",sourceOrderNumber:"源单单号",sourceSingleLineNumber:"源单行号",purchaseOrder:"采购订单",movementsName:"异动类型",changeFile:"异动文件",itemNoName:"物料料号/物料品名",storageSpace:"储位",aberrationTime:"异动时间",productionInventoryPreset:"生产入库(预设)",productionReturnMaterialPreset:"生产退料(预设)",productionMaterialRequisitionPreset:"生产领料(预设)",productionReturnPreset:"生产退库(预设)",warehouseNumber:"仓库编号",storage_nameForm:"仓库名称",storageLocationNumber:"储位编号",materialId:"物料料号",change_amount:"异动数量",productionReceipt:"生产入库单",selectDocument:"选择单据",productionMaterialRequisitionForm:"生产领料单",theWorkOrderNotBOMListDown:"工单无BOM清单,无法下推生产领料单",pleaseSelectDownFirst:"请先选择需要下推的数据",crossDocumentNotSupported:"不支持跨单据下推",downFailedDocumentsClosedState:"下推失败,已关闭状态下的单据不能下推",pleaseFirstSelectQuery:"请先选择需要关联查询的数据",crossDocumentQueryNotSupported:"不支持跨单据查询",defaultStoragePreset:"默认仓(预设)",productBOMList:"产品BOM清单",inventorySurplusReceiptPreset:"盘盈入库(预设)",inventoryLossOutboundPreset:"盘亏出库(预设)",frozenInventoryPreset:"冻结库存(预设)",removeFrozenInventoryPreset:"移除冻结库存(预设)",salesOutboundPreset:"销售出库(预设)",otherOutboundPreset:"其他出库(预设)",purchaseReturnMaterialPreset:"采购退料(预设)",purchaseInventoryPreset:"采购入库(预设)",salesReturnsPreset:"销售退货(预设)",otherInventoryPreset:"其他入库(预设)",startDates:"开始日期",endDates:"结束日期",selectedRangeNotExceedMAXdays:"选择的时间范围不能超过{MAX_DAYS}天",materialTypes:"物料类型",quantityOfMaterialsUsed:"用料数量",outboundQuantity:"出库数量",unfinishedOutbound:"出库未完",inventoryQuantitys:"库存数量",automaticMaterialSuccessful:"自动领料成功",inventoryChangeDocNumber:"库存异动单据编号",workNotProductBOM:"工单尚未维护产品BOM,无法自动领料,派工失败",insufficientInventory:"物料库存不足,派工失败,请先补充库存",selectPrintDoc:"选择打印单据",equipmentSchedule:"设备日程表",workOrderSchedule:"工单日程表",programmeSetting:"日程表设定",Date:"日",monday:"周一",tuesday:"周二",wednesday:"周三",thursday:"周四",friday:"周五",saturday:"周六",sunday:"周日",subWorkorderLinkage:"子工单连动",linkageMode:"连动方式",moveAllProcessesTogether:"所有工序一起移动",allSubWorkOrderLinkage:"仅该工序与后段工序下所有子工单连动",displayAbnormalContentDuringLinkage:"连动时显示异动内容",display:"显示",donotDisplay:"不显示",adjustmentLinkedToSameEquipment:"同设备工单连动调整",adjustMode:"调整方式",adjustPrevious:"前工单调整",adjustBehind:"后工单调整",simultaneouslyAdjusted:"前/后工单同时调整",rangeOfInfluence:"影响范围区间",dispatchProcessLocking:"派工工序锁定",sortReset:"排序重置",workOrderEidt:"工单编辑",splitTask:"拆分任务",splitNumber:"拆分数量",split:"拆分",statusColorDescription:"状态颜色说明",noDispatchDesc:"创建日期范围内所有未派工的工单",noStartDesc:"创建日期范围内所有未开工的工单",underExecutionDesc:"创建日期范围内所有已开工的工单",finishedDesc:"创建日期范围内所有已完成的工单",closedDesc:"创建日期范围内所有已关闭的工单",alreadyOverdueDesc:"创建日期范围内所有已逾期的工单",productpartNumber:"产品料号",productname:"产品名称",splitTip:"拆分数量不可大于原工单数量",updateNotification:"更新通知",updateNotice:"连动更新以下工单内容",segmentCode:"分段代号",station:"工位",equipment:"设备",old:"原",new:"新",splitNumberTip:"请输入小于等于原工单需求数量的正整数",sourceOrderNo:"源单单号",isVerifiedOrExecutingOrFinished:"仅“已审核”或“执行中”或“已完成”状态的生产计划支持生成工单,请重新选择!",menuImport:"选单导入",selectProductionPlan:"选择生产计划",Self:"自制件",Purchase:"采购件",None:"无",workingHoursCaculate:"工时推算",calculationSetting:"推算设定",automaticSchedulingSetting:"自动排程设定",startingStationStartTime:"起始站开工时间",beatPointStartTime:"节拍点开工时间",completionStationStartTime:"完工站开工时间",fillDateTimeCompletely:"请完整填写日期时间",calculationSuccess:"工时推算成功",calculationFail:"工时推算失败",plsFillStartEndTime:"请填写预计开工日与预计完工日",plsSetInfo:"请先设定完整资讯",batchClose:"批量关闭",planNumGenerateFail:"生产计划号生成失败",daily:"日",printPreview:"打印预览",printClientInstall:"打印客户端安装",batchPrintClient:"批量打印之前需要安装打印客户端并配置默认打印机,请点击下载",selectMaterials:"选择物料",inventorySetting:"库存设定",basicField:"基础栏位",unitSetting:"单位设定",batchShutdown:"原有批次号规则已停用,请重新设定",imageImport:"图片汇入",enableDefaultRepository:"启用默认仓库",enableShelfLifeManagement:"启用保质期管理",outboundWarehouse:"出库仓库",shelfLifeUnit:"保质期单位",outboundWarehouseLocation:"出库仓位",qualityGuaranteePeriod:"保质期",reorderPoints:"再订货点",storageWarehouse:"入库仓库",warehouseSelection:"仓库选择",positionSelection:"仓位选择",parentCategory:"父级类别",sun:"日",qualityGuaranteePeriodRulesText:"输入必须大于0,且无小数,最多10位数",sixDigitDecimalVerificationRulesText:"输入必须大于0,且整数位最多10位数,小数位最多6位数",materialNameNoSpace:"物料名称前后不得有空格",batchQueryFailed:"批次查询失败",tenMbLimit:"图片大小限制10MB,请重新选择图片",imgFormatError:"图片格式不符,请重新选择图片",chooseFinalCategory:"请选择末级类别",requiredNotEmpty:"必填栏位不得为空",continueAddInfo:"继续新增产品资料",storageType:"仓库类别",storage_id:"仓库编号",storage_name:"仓库名称",storage_address:"仓库地址",storage_manager:"仓库管理人",storage_phone:"电话",storage:"仓库",editMaterial:"编辑物料",unitList:"单位列表",unitName:"单位名称",unitVerify:"单位不支持特殊字符",unitRepeat:"物料单位重复",deleteUnit:"是否删除当前单位",customerCode:"客户编号",customerAbbreviation:"客户简称",contacts:"联系人",contactNumber:"联系电话",contactAddress:"联系地址",email:"邮箱",fax:"传真",area:"地区",detailedAddress:"详细地址",filePreview:"文档预览",generateNumber:"若不填写则保存时自动生成",cancelTip:"若取消,本次所有修改将不会保存,是否确认取消",systemTag:"系统标签",materialNumberGeneration:"若不填写,则保存时按照默认规则自动生成",customTextCannotExceed200Characters:"自定义文本填写不能超过200字符",unitVerification:"输入必须大于0,小数位最多6位数",unitUsed:"当前单位正在被使用中,无法删除",orderDateRules:"请选择订货日期",name:"名称",salesCategory:"销售类别",orderDate:"订货日期",materialNumber:"物料编号",ThisOutboundQuantity:"出库数量",outboundRemaining:"出库未完",customerOrderNumber:"客户订单号",salesEmp:"业务员",followEmp:"跟单内勤",dispatchLocation:"发货地点",salesBatchNumber:"销售批号",customerModelCode:"客户型号",customerProductCode:"客户货号",cartons:"箱数",quantityPerCarton:"箱只数",salesRemark:"订单备注",materialRemark:"物料备注",priceIncludingTax:"含税单价",priceExcludingTax:"未税单价",amountIncludingTax:"含税金额",amountExcludingTax:"未税金额",createEmpName:"创建人",auditEmpName:"审核人",auditTime:"审核时间",pushPlanNum:"下推计划数",pushEmpNum:"下推工单数",plsSelectSaleOrder:"请先选择销售订单",standardSales:"标准销售",outsourcedSales:"委外销售",salesReturn:"销售退货",pendingReview:"待审核",deliveryInProgressFa:"发货中",review:"审核",materialInventoryInsufficient:"{material}物料库存不足,缺料{number},是否确认建立生产计划",materialInventoryInsufficientOrder:"{material}物料库存不足,缺料{number},是否确认建立生产工单",planNumberIsEmpty:"生产计划号未维护BOM,请确认是否建立生产计划",orderNumberIsEmpty:"行号未维护BOM,请确认是否建立生产工单",remainingAvailableQuantity:"剩余可用量",salesOrderPushDownFailurePrompt:"销售订单已下推过生产工单不可再下推生产计划",salesOrderPushDownFailurePromptDetail:"销售订单已下推过生产计划不可再下推生产工单",materialInventoryInsufficientPrompt:"{material}物料库存不足,缺料{number},派工失败,请先补充库存",ticketDeleteConfirmation:"工单删除后将不可恢复,是否确认删除?",unassignedWorkOrderCanDelete:"未派工的工单才能删除",template:"模板",materialFile:"物料档案",stockOut:"库存出库",stockView:"库存入库",operationLog:"操作日志",toBeFinished:"完工",viewOperationRecord:"工单操作记录",operationType:"操作类型",operationDetails:"操作详情",operationTimeInterval:"操作时间区间",operationTips:"只保留半年内的操作记录",addOrder:"新增工单",editOrder:"编辑工单",deleteOrder:"删除工单",toBeFinishedTips:"只有“执行中”,“已逾期”的工单可以完工",toBeFinishedConfirmTips:"完工的工单将无法进行其他操作,确认是否完工?",customerList:"客户列表",sizeLimitSingleFileIs10MB:"单个文件大小限制为10MB",fileIsExitTooltip:"为已存在的档案,是否确认更新?",fileUpdataTooltip:"档案更新提醒",numberUploadsCannotExceed10:"上传数量不能超过10个",materialPicture:"物料图片",materialImages10MBHaveOneImage:"物料图片仅支持汇入图片类型的文件,文件大小不得超过10MB,一个物料只能有一张图片",upTo10MaterialFilesButFileNotExceed10MB:"物料档案最多可上传10个,文件类型不限,但单个文件大小不超过10MB",customer:"客户",pleaseSelect:"请选择",batchOperation:"批量操作",moreActions:"更多操作",batchImport:"批量汇入",batchExport:"批量汇出",advancedOperation:"进阶操作",parentSpecModel:"父项规格型号",childSpecModel:"子项规格型号",manufacturerIDOfPOM:"厂商编号",businessName:"厂商名称",manufacturerAbbreviationOfPOM:"厂商简称",contactOfPOM:"联系人",contactNumberOfPOM:"联系电话",emailOfPOM:"邮箱",faxOfPOM:"传真",contactAddressOfPOM:"联系地址",remarksOfPOM:"备注说明",manufacturerListOfPOM:"厂商列表",manufacturer:"厂商",productionOrderProcess:"生产工单(工序)",productionProcessTemplate:"工单工序流转卡",checkBOMList:"请检查bom信息",goodStorageWarehouse:"良品入库仓库",goodStorageSpace:"良品入库仓位",defectiveStorageWarehouse:"不良品入库仓库",defectiveStorageSpace:"不良品入库仓位",purchaseStorage:"采购入库仓库",purchaseStorageSpace:"采购入库仓位",storageImportWarn:"四个仓库,若其中一个填写了其余三个均为必填",shelfLifeImportWarn:"保质期单位、保质期若其中一个填写剩下一个也为必填",intervalStart:"区间开始",intervalEnd:"区间结束",viewOperationRecordTxt:"视图操作记录",viewOperationRecordTips:"只保留半年内的操作记录",operationTimeRange:"操作时间区间",newView:"新增视图",editView:"编辑视图",copyView:"复制视图",deleteView:"删除视图",viewList:"视图列表",viewListTips:"最多支持创建20个视图",createView:"创建视图",viewName:"视图名称",basicInfo:"基本信息",dataFilter:"数据过滤",dataFilterTips:"视图默认显示1年内的数据",viewIcon:"图标",viewPermission:"查阅权限",quarter:"季度",addFilterConditions:"添加筛选条件",greaterThan:"大于",greaterThanOrEqualTo:"大于等于",lessThan:"小于",lessThanOrEqualTo:"小于等于",equalTo:"等于",notEqualTo:"不等于",yesEmpty:"为空",notEmpty:"不为空",selectRange:"选择范围",dynamicFiltering:"动态筛选",contains:"包含",notContains:"不包含",inRange:"在范围内",notInRange:"不在范围内",isOneOf:"是其中一个",notAnyOf:"不是任何一个",today:"今天",yesterday:"昨天",thisWeek:"本周",lastWeek:"上周",thisMonth:"本月",lastMonth:"上月",lastThreeMonths:"近三月",custom:"自定义",customRange:"自定义(范围)",maxValue:"最大值",minValue:"最小值",moreView:"更多视图",viewDeleteTip:"删除后不可恢复,请确认是否删除?",duplicateViewNames:"视图名称重复",originalOrderNumber:"源单单号",orderDemander:"客户名称",consUserName:"创建人",modiUserName:"更新人",modiDate:"更新时间",inboundQuantity:"入库数量",originalOrderType:"源单类型",closeNonClosedTickets:"仅支持关闭非“已关闭”状态的工单",selectOperation:"选择操作",startOrEndTime:"开始或结束时间",inputText:"请输入文本",selectOptions:"请选择选项",timePrecision:"精度",selectTime:"选择时间",pastOrFuture:"过去或未来",selectOperator:"请选择操作符",inputRangeValue:"请输入范围值",inputValidRange:"请输入有效范围",startValueCannotGreaterThanEndValue:"起始值不能大于结束值",selectTimeAndPrecision:"请选择时间和精度",selectStartOrEnd:"请选择开始或结束时间",selectTimeRange:"请选择时间范围",selectCompleteTimeRange:"请选择完整时间范围",selectDynamicFilteringType:"请选择动态筛选类型",pleaseInput:"请输入",checkForm:"请检查表单",closeReason:"关闭原因",materialFileName:"物料档案",viewEditSuccessful:"编辑视图成功",adjustDataFiltering:"【{name}】【数据过滤】做了调整",adjustViewPermission:"【{name}】【查阅权限】做了调整",adjustViewName:"【{name}】【视图名称】修改为【{newName}】",deleteViewSuccessful:"删除视图成功, 删除的视图名称为【{name}】",addViewSuccessful:"新增视图成功, 视图名称为【{name}】",currentUser:"当前用户",numIntegerExceedTen:"整数位不能超过10位",numDecimalExceedSix:"小数位不能超过6位",moreFilter:"更多筛选",addFilterCriteria:"添加筛选条件",maxFilterConditions:"一次最多添加10个条件进行过滤,请先移除其他过滤条件",sum:"合计",resourceType:"资源类型",resourceName:"资源名称",processResourceList:"工序资源清单",beatPoint:"节拍点",leadTime:"前置时间",minimumTransferCount:"最小转移件数",loadingTime:"上料时间",unloadingTime:"下料时间",minimumTimeIntervalMinutes:"最小时间区段(分)",devices:"设备",multipleFilesCannotBeSelected:"不可选择多个档案",zeroPositiveInteger:"请输入0或正整数",checkProcessResource:"请检查工序资源检验",checkProcessResourceName:"请填写工序资源名称",checkCalWorkingHours:"请检查工时推算校验",calWorkHour:"工时推算"},er={setting:"Settings",personalInfo:"Personal Info",language:"Language",homepage:"Homepage",all:"all",Notyetstarted:"Not yet started",Alreadystarted:"Already started","PauseProcessing ":"Pause processin",Latecommencement:"Late commencement of work",workReport:"Work Report",productionManage:"Production Management",import:"Import",export:"Data Export",submit:"submit",saleOrder:"Sale Order",productionPlan:"Plan Development",assemblyWorkOrder:"Assembly work order",systemConfiguration:"System Configuration",hello:"Hello",user:"User",workOrder:"Work order reporting",task:"Task",workReporting:"Work Reporting",department:"Department Management",actory:"Actory",basicData:"Basic Data",productDefinition:"Material Master",password:"Password",bom:"BOM",unit:"Unit of measurement",defectiveItems:"Setting of adverse causes",productionProcesses:"Production Processes",processRoute:"Product Process",productRouteManagement:"Process route management",procesManagement:"Process Management",logout:"Logout",log:"Log On",perRow:"Per Row",items:"Items",fullName:"Full Name",state:"State",accountNumber:"Account Number",query:"Query",identity:"Identity",role:"Role",newUsers:"New Users",actions:"Action",index:"Index",mobilePhone:"Mobile Phone",departmentName:"Department Name",position:"Position",edit:"Edit",permissionConfiguration:"Permission Configuration",delete:"Delete",workShift:"Shift",roleManagement:"Role Management",roleName:"Role Name",createStaff:"Create Staff",createTime:"Creation Time",roleRemark:"Role Description",addRole:"Add Role",editRole:"Edit Role",rolePersonSetting:"Role Personnel Setting",roleInfo:"Role Information",addStaffList:"Add Staff",employee:"Employee",multiple:"Multiple",staffList:"Staff List",empNumber:"Employee ID",addShift:"Add Shift",breakTimeTable:"Break time table",shiftMode:"Shift mode name",defaultShift:"Default Shift",shiftItemName:"Shift Name",shiftItemTime:"Shift Time",editAndDelete:"Edit and Delete",nextDay:"Next Day",addBreakTime:"Add break time",editBreakTime:"Edit break time",shift:"Shift",timePeriod:"Time Period",breakStart:"Break Start",breakEnd:"Break End",description:"Description",remarkLengthLimit:"String length cannot exceed 50 characters",timeInterval:"Time Interval",type:"Type",break:"Break",editShift:"Edit Shift",selectShift:"Please select shift",editshiftItemTime:"Edit shift time",shiftStartTime:"Start Name",shiftEndTime:"End Name",oneShift:"one-shift",twoShift:"two-shift",threeShift:"three-shift",fourShift:"four-shift",systemSnformation:"System Information",processManagement:"Process Management",WorkReportRecords:"Work report records",userManage:"User Manage",userManages:"User Manage(super management)",save:"Save",cancellation:"Cancellation",addDepartment:"New Department",editDepartment:"Editing Department",isInUse:"Enable or not",disable:"Deactivate",finished:"Completed",unfinished:"Incomplete",orderNumber:"Order Number",deliveryDate:"Delivery Date",contractNumber:"Contract Number",customerName:"Customer Name",woCount:"Number of work orders",addSuccess:"Add Success",editSuccess:"Edit Success",woNumber:"Work order number",productPartNumber:"Material Number",productName:"Material Name",submitError:"Submit Error",addSyShiftFail:"Failed to add shift system",addShiftFail:"There are shifts with failed addition",editShiftFail:"There are shifts with failed editing",craftPath:"Process Route",SNnotEmpty:"Sub work order number cannot be empty",canNotBeEmpty:"Material number, process path, process cannot be empty",inputError:"Production work order number input error",clearAll:"Clear All",standardParam:"Standard Parameters",processFile:"Process File",mainFile:"Main Program",subFile:"Sub Program",fileName:"File Name",fileType:"File Type",preview:"Preview",typeNotSupport:"Preview does not support this format",dataPathError:"File path error",otherFile:"Other Files",synchronization:"Serial Synchronization",customField:"Custom Field",product:"Product",productionOrderNumber:"MO Number",stationNumber:"Station sub work order number",stringSearch:"String Search",partNumber:"Material Number",productionProcess:"Sub Process",routeProcessID:"Route Process ID",equipmentStation:"Equipment/Station",standardTime:"Standard lead time",sizeBig:"Big",sizeMedium:"Medium",sizeSmall:"Small",customerNameDigiwin:"Customer Name",orderExpectedDue:"Sales order delivery date",requiredThroughput:"Number of pieces required",startDate:"Expected start time",finishDate:"Expected due time",requiredField:" Cannot be empty",processName:"Process Name",processNumber:"Process Number",workOrderSerialNumber:"Sub MO",cantBeEarly:"The expected start time cannot be later than the expected completion time",cantAfEarly:"The expected completion time cannot be earlier than the expected start time",sortSetting:"Sort Setting",ascending:"Ascending",descending:"Descending",startTime:"Start Time",total:"Total",actualEmp:"Actual executive staff",processThroughput:"Production Quantity",quantityOfGoodProducts:"Number of good products",quantityOfDefectiveProducts:"Number of defective products",moreInfo:"More Information",adverseCausesRecord:"Record of adverse causes",badCauseNum:"Number of adverse causes",myWorkOrder:"My work order",manualReport:"Manual Reporting",planDate:"Scheduled Time",remainingRequired:"Number of remaining required workpieces",totalRequired:"Total number of required workpieces",workStart:"Start",pause:"Pause",workEnd:"To be finished",designate:"Assign",jobSpecification:"Job Specification",errorAlert:"Error",loadMore:"Load More",action:"Action",add:"Add",confirm:"Confirm",haveSpace:"Cannot have spaces at the beginning and end",modifiedSuccessfully_api:"Modified Successfully",modificationFailed_api:"Modification Failed",search:"Search",badCause:"Adverse Causes",remark:"Notes",submitFail:"Submit Fail",displayDeactivatedItems:"Display deactivated items",enableNot:"Enable or not",code:"Code",nameCause:"Name of defect cause",addReasonsDefects:"Newly added reasons for defects",editReasonsDefects:"Edit reasons for defects",enable:"Enable",required:"Required",noSpaces:"Prohibit entering spaces",onlyEnglishNumbers:"Only English numbers can be entered",no20Characters:"Cannot exceed 20 characters",no50Characters:"Cannot exceed 50 characters",typeDuplicated:"Type cannot be duplicated",deactivate:"Disable Field Reminder",confirmDeactivation:"Confirm Deactivation",noData:"No Data",apiError:"Function connection failed! Your network status may be unstable. Please make sure the network connection is normal and try again. If you still can’t use it please contact your system administrator.",requestError:"Request Failure",requestSuccess:"Request Successful",codeRepeat:"Code cannot be repeated",PleaseSelect:"Please Select",startDateInterval:"Start time interval",closeCamera:"Close",excelExport:"Excel Export",exportExcelData:"Excel Export",columnConfiguration:"Column Configuration",goodProducts:"Number of Good Products",defectivesNum:"Number of defective products",cycleStartTime:"Processing start time",cycleEndTime:"Processing end time",endTime:"Completion Time",noDateRangeSelected:"No date range selected",number:"Number",cancel:"Cancel",noDispatch:"Not Dispatched",noStart:"Not Started",overdueStart:"Overdue Start",overdueEnd:"Overdue End",closed:"Closed",suspendProcess:"To be reprocessed",changing:"In the process of machine adjustment",handling:"Exception handling",pauseProcessing:"Pause Processing",staff:"Personnel",processOrderNumber:"Operation sub work order number",exceptStartDateInterval:"Expected Start Time Interval",cantLessZero:"The number of required workpieces should be greater than 0",goodProductTotalCount:"Total number of good products",badProductTotalCount:"Total number of defective products",needClickPlus:'Click"+"to add a new defect reason, otherwise it will not be added',selectBadCase:"Select the reason for the defective product ",inputBadProductCount:"Enter the number of defective products",selectDepartment:"Select Department",selectPerson:"Select Person",automatically:"Automatically generate work order number",maintain:"Maintain process path",numerical:"The value needs to be an integer greater than 0",fullNumber:"The value needs to be an integer",information:"No product name information",specifications:"No specification and model",failed:"Add Failed",containing:"Please check the required fields containing (*)",processEmpty:"Process is empty",startSuccess:"Successfully started",finishSuccess:"Completed successfully",pauseSuccess:"Paused successfully",designSuccess:"Assignment succeeded",circulation:"Work order circulation card",progress:"Process Progress",createWorkOrder:"Create work order",expectEmp:"Expected executive staff",requiredNotZero:"The number of required artifacts must not be zero or negative",assignPersonnel:"Assign Personnel",assignmentFailed:"Assignment Failed",pleaseCause:"Please select the cause of the defect",reportSuccess:"Report Success",reportFail:"Report Fail",negative:"Value must not be zero or negative",totalReportCount:"Total processing quantity",tooLess:"The production quantity should not be less than the number of defective products",toMoreThenZero:"The production quantity should be greater than 0",operator:"Operator",workOrderStatus:"Work order status",advancedSearch:"Advanced Search",more:"More",print:"Print",newPlan:"New Plan",dispatchWorkOrders:"Dispatch work orders",viewProgress:"View Progress",underExecution:"Under Execution",editSchedule:"Edit Schedule",deletedWorkOrder:"The relevant work order tasks will be deleted together. Are you sure to execute?",successfullyDeleted:"Successfully Deleted",dataImport:"Data Import",exportTemplate:"Excel Template",excelImport:"Excel Import",duplicateName:"Duplicate name of defect cause",importTheTemplate:"Defect Cause Template",importFail:"Import Fail",fileTypeErrorAndUploadXlsxOrXls:"Import file type must be (.xls) or (.xls) file.",excelImportNoData:"The excel has no data",excelSyntecTemplateError:"The EXCEL template is inconsistent with the system language family or does not comply with the standard EXCEL format",importDataCheck:"Import data check",totalNumber:"Total number of articles",success:"Success",fail:"Fail",exportResults:"Export of abnormal results",theFollowing:"The following are the detailed reasons for the import failure",payAttTo:"Pay attention to",failureReason:"Failure Reason",checkResult:"Check Result",InsItemIsHas:"Data already exists!",emptyStr:"Empty",do:"Do",notEN:"Not an English number",lengthExceeds:"Length Exceeds",notSpe:"Cannot contain spaces",repeat:"Repeat",inputIsCorrectButRequestFailed:"The input format is correct, but the import request failed",succImportedAll:"Successfully imported all items",previewSubmit:"Submit Data Preview",requestResults:"Request Results",transactions500:"Excel data transaction limit is 500",numberEmpty:"Order number is empty",numberMaximum50:"Order number and work order number can have a maximum of 50 digits",productEmpty:"The material number and process path cannot be empty",processDoesNotExist:"Process does not exist",processPathDoesNotExist:"The process path does not exist",partNumberDoesNotExist:"Material number does not exist",requiredNumber:"The required number of sub work orders in the process should be an integer greater than 0",workOrderNumber:"The required number of work orders should be an integer greater than 0",jobNumberDoesNotExist:"Job number does not exist",operationSubWorkOrder:"Operation sub work order",dispatchSuccessful:"Dispatch Successful",dispatchFailed:"Dispatch Failed",workOrderDelivery:"Please confirm that the status of the work order you have selected is Not Dispatched before proceeding with work order delivery",beenDispatched:"Please select a work order that has not been dispatched",planDevelopmentReport:"Plan development report",successfullyImported:"Successfully Imported",productManagement:"Product Management",enterProductPartNumber:"Please enter the material number",enterProductName:"Please enter the material name",productType:"Product Type",addProducts:"Add Products",importExcel:"Excel Import",excelTemplate:"Excel Template",productTypeManagement:"Product type management",deactivated:"Deactivate",spec:"Specification and model",unity:"Unit",productProperty:"Product Attributes",productStatus:"Product Status",supplierName:"Supplier Name",illustrate:"Illustrate",delProductConfirm:"Do you want to delete the product",productImportTemplate:"Product import template",selfMadePart:"Production",purchasePart:"Procurement",notHave:"None",pleaseEnter:"Enter",cannotBeEmpty:"Required items cannot be empty",cannotExceed20:"The length cannot exceed 20",cannotExceed50:"The length cannot exceed 50",cannotExceed80:"The length cannot exceed 80",cannotExceed100:"The length cannot exceed 100",cannotExceed200:"The length cannot exceed 200",successfullyEdited:"Successfully Edited",editingFailed:"Editing Failed",addingFailedProductDup:"Adding failed! The material number is duplicated.",editProduct:"Edit Product",endProduct:"Finish Product",semiFinishedProduct:"Semi-finished Products",rawMaterial:"Raw Material",cuttingTool:"Cutting Tool",mold:"Mold",productPropertyError:"Product attribute format error, optional: Production, Procurement, None",saveSuccess:"Successfully Saved",saveFail:"Save Failed",notExcel:"Non Excel files",emptyExcel:"Excel is empty",headerError:"Incorrect meter header",productTypeList:"Product type list",defaultCannotDel:"The preset cannot be deleted",typeName:"Type Name",dataDuplication:"Data Duplication",delProductTypeConfirm:"Delete product type?",productTypeInUse:"The product type has already been used",delSuccess:"Successfully Deleted",delFail:"Delete Failed",productImportNum:"Material number format error",productImportName:"Material name format error",productImportSpec:"Specification and model format error",productImportUnit:"Unit format error",productImportType:"Product type format error",productImportPro:"Supplier name format error",productImportA:"Product attribute format error, optional: Production, Procurement, None",productImportD:"Description format error",importSuccess:"Import Success",importProductFailRes:"The following are the product details that failed to import",addProcess:"Add a new process",selfControl:"Self-Control",outsource:"Outsource",delReminder:"Delete Reminder",processType:"Process Type",manufacturingType:"Manufacturing Type",processingProcess:"Processing Process",inspectionProcess:"Inspection Process",assemblyProcess:"Assembly Process",transportationProcess:"Transportation Process",confirmDeleProcess:"Confirm deletion of process",thisProcessDele:"This process has already been used and cannot be deleted!!",deleFailed:"Delete Failed!",processImportTemplate:"Process Import Template",processCodeNot:"Process number must not be duplicated",saveFailed:"Save Failed",requiredItemsNotEmpty:"Required items cannot be empty",procCodeFormatError:"Process number format error",procNameFormatError:"Incorrect format of process name",procTypeFormatError:"Process type format error",manufTypeFormatError:"Manufacturing type format error",importSuccessful:"Import was successful",nonExcelFiles:"Non Excel files",excelEmpty:"Excel is empty",inMeterHeader:"Incorrect meter header",enter:"Enter",processRouteName:"Process route name",addProcessRoute:"Add process route",editProcessRoute:"Edit process route",isDefaultRoute:"Default Route",processCount:"Number of processes",yes:"Yes",no:"No",delConfirmPR:"Confirm deletion of process path",processRouteTemplate:"Process import template",prNamehaveExit:"The path name already exists under the same product",productNumCannotNull:"The material number cannot be empty",processRouteCannotNull:"The process path name cannot be empty",processRouteW:"Incorrect format of process path name",productNumNotExist:"Material number does not exist",processCannotNull:"Process cannot be empty",processNotExist:"Process does not exist",importFailPR:"The following are the details of the process paths that failed to import",isDefaultRoutes:"Is it a default path",saveFields:"Store related fields",addMoreProcess:"Add Process",clearProcess:"Clear Process",addProcessRouteMsg:"Real time saving of process information support for processes",choosePlm:"Please select a file",processSequence:"Process Sequence",plmSetting:"File Settings",sort:"Sort",selectProcess:"Please select a process",dataDup:"Data Redundancy",errorProcessNumName:"The process path name or number must not be duplicated!",delProcessRoute:"Delete process route",onlyEnNum:"Only English and numbers can be entered",dataRedundancy:"Data Redundancy",editingProc:"Editing Process",uploads:"Uploads",deleFiles:"Delete Files",fileSize:"File Size",uploader:"Uploader",confDeleFile:"Confirm deletion of file",drawing:"Drawing",geneSpecif:"General Specifications",inspecSpecif:"Inspection Specifications",toolSpecif:"Tool Specifications",procProgram:"Processing Program",material:"Material",other:"Other",selectProfile:"Select Profile",uploading:"Uploading",uploadSuccess:"Upload Successful",uploadFailed:"Upload Failed",duplicateFile:"Duplicate File",uploadStatus:"Upload Status",procCorrel:"Process Correlation",editProcCorrel:"Edit Operation Association",theFollo:"The following are the details of the failed import operations",ordersFailed:"The following are the details of the work orders that failed to import",MESManagement:"MES Management",fileManagement:"File Management",failedContentExport:"Exception failed content export",materialsPerPage:"Number of materials per page",beenUploaded:"Currently, no data has been uploaded",contentFirst:"Please clear the content first",noHttps:"The scan function only supports domain names with HTTPS",numberIsEmpty:"The production work order number is empty",workOrderIsEmptyOr0:"The required number of workpieces in the work order is empty or 0",workOrderIsEmptysOr0:"The required number of workpieces for the process is either empty or 0",workOrderIsEmpty0:"The required number of workpieces for the work order must not be less than 0",workOrderIsEmptys0:"The required number of workpieces for the process must not be less than 0",pathIsEmpty:"The process path is empty",productnumberIsEmpty:"The material number is empty",processInformation:"Successfully modified process information",inspect:"There is a failure item in line [{index}]",workOrderNumerical:"The work order value must be an integer and must not have a decimal point",processesNumerical:"The process value must be an integer and must not have a decimal point",empty:"Empty",zhEnNum:"Only Chinese, English, and numbers can be entered",typeIncorrect:"The attachment type is incorrect! Supported formats",sizeExceeds10MB:"Attachment size exceeds 10MB!",strLengthLimit50:"String length cannot exceed 50 characters",strLengthLimit15:"String length cannot exceed 15 characters",formCategory:"Form Category",formName:"Form Name",formNumber:"Form Number",customFieldQueryFailed:"Custom field query failed",additionalForms:"Additional Forms",fillIn:"Fill In",fileNoHasEmpty:"The required document cannot be empty",mustNumber:"Please enter a number",numberOfJobApplications:"Number of job applications",clickEdit:"Click to modify",aProdNumNotIs0:"The number of added defective products cannot be 0",numIs0IsDel:"A quantity of 0 represents the deletion of this record. Do you want to continue?",timeRulesSSP:"The start time should be less than or equal to the start of processing",timeRulesSEP:"The start time should be less than or equal to the end of processing",timeRulesSAC:"The start time should be less than or equal to the completion time",timeRulesWS:"Processing start should be greater than or equal to the start time",timeRulesWEP:"Processing start should be less than or equal to processing end",timeRulesWAC:"The start of processing should be less than or equal to the completion time",timeRulesWSP:"Processing end should be greater than or equal to processing start",timeRulesWEAC:"The end of processing should be less than or equal to the completion time",timeRulesWES:"Processing end should be greater than or equal to the start time",timeRulesEEP:"The completion time should be greater than or equal to the end of processing",timeRulesESP:"The completion time should be greater than or equal to the start of processing",timeRulesES:"The completion time should be greater than or equal to the start time",modifyWorkReportRecords:"Work report modification record",modifyWorkReportRecord:"Modification of work report records",previousProcesses:"Total number of work reports for subsequent processes <= total number of work reports for previous processes",workReportSetting:"Manual reporting restriction setting",restrictionSetting:"Work reporting restriction setting",basicSettings:"Basic Settings",noEquipment:"There are currently no non networked devices available. Please go to the device settings page under the [Settings] module to maintain a different device",addNoEquipment:"There are currently no non networked devices available. Please go to the device settings page under the PC [Settings] module to maintain a different device",getDeviceInfoFailed:"Failed to obtain device information",topPriority:"Top Priority",priority:"Priority",secondary:"Secondary",leastImportant:"Least Important",normal:"Normal",importantSort:"Important Sort",remind:"There is currently no work report record for the current work order. Please confirm if it has been completed?",editTime:"Modification Time",editPersonnel:"Modify Personnel",editProject:"Modify Project",editContent:"Modify Content",originalContent:"Original Content",productionTime:"Production Time(Hour)",assignSaveFailed:"Please assign at least one person!",startedConstruction:"The current work order has been started, there is no need to start again",completed:"The current work order has been completed and cannot be started again",completeds:"The current work order has been completed, no need to repeat the operation",notStarted:"The current work order has not been started yet and cannot be completed",paused:"The current work order has been suspended, no need to repeat the operation",nonCommencement:"The current work order is not in the start status and cannot be paused",nonProcessing:"The current work order status is no longer in processing and cannot be reported for work",enterTheCorrectTime:"Please enter the correct time",filledBy:"Filled By",fillTime:"Fill in the time",formFillingRecord:"Form filling record",customizeFormSettings:"Customize Form Settings",formSettings:"Form Settings",associatedSuccess:"Successfully associated",selectPartNumber:"Please select the material number",PLM_DRAWING_IMG:"Drawing image",PLM_STANDARD_RULE:"Standard Rule",PLM_QUALITY_CONTROL_RULE:"Quality control rule",PLM_CUTTING_TOOLS_RULE:"Cutting tools rule",PLM_NC_PROGRAM:"Program",PLM_PART_DATA:"Part data",PLM_OTHERS:"Others",downloadFile:"Download File",currentAssignedPersonnel:"Current assigned personnel",hasBeenAssigned:"Has been assigned",workRequiredThroughput:"Number of pieces required",reportFailForCount:"Report failed, report count can not be 0",view:"View",negatives:"The numerical value must not be negative",requireds:"The field name containing (*) is a mandatory field, please fill it out completely according to the specifications",processDeployment:"Process deployment",dateRange:"The selection date cannot exceed the range of three months",dateRanges:"The selection date cannot exceed the range of one month",fileDownload:"File Download",productSpec:"Specification and model",reportForms:"Export of adverse statistical reports",reportingForWork:"Reporting for work",statisticalDimension:"Statistical Dimension",productSpecifications:"Specification and model",disassemble:"Unable to disassemble",reportProcessSetting:"Work Order Approval Settings",reviewStatus:"Review Status",reviewer:"Reviewer",reviewTimeRange:"Review time interval",reviewTime:"Review Time",approved:"Approved",recordRemark:"Job application notes",audited:"Audited",unaudited:"Unaudited",pendingReviewRecords:"Pending review record",reviewNotice:"[Note] This is for global settings. After opening the audit, all work report records need to be audited before they can take effect!",openReview:"Enable Review",closeReview:"Close Review",reportReview:"Work application review",closeReviewNote:"If the review is closed, all work report records will be deemed approved by default. Are you sure to close?",passReview:"Approved",cancelReview:"Cancel Review",actualRecordEmp:"Actual job applicants",reviewSuccess:"Review Success",rejectRate:"Reject Rate",poorProportion:"The proportion of defective products",proportion:"Proportion",negativeStatistics:"Negative Statistics",getReviewStatusFail:"Failed to obtain review status",customerForm:"Customer Form",previewFile:"File Preview",actualRepWorkEmp:"Actual job applicants",dragToSort:"Drag and drop sorting",confirmCompletion:"Confirm Completion?",currentCompletion:"The current process has not yet reached the required number of workpieces. Do you want to force completion?",compulsoryCompletion:"Compulsory Completion",currConfirmCompletion:"There are currently unapproved work report records. Do you want to confirm completion?",afterThisReport:"After this work report, the number of work reports for the current process will exceed the required number of workpieces. Are you sure to confirm the work report?",currentIs0:"The current reported work quantity is 0. Are you sure to complete it?",batchPrint:"Batch Print",selectPrintTemplate:"Select Print Template",orderQrcode:"Order QR code",productionWorkOrder:"Work order circulation card",batchSize:"Batch Size",processList:"Process List",exportOrderPreview:"Export Order Preview",pleaseSelectOrder:"Please select the work order that needs to be printed first.",processQRCode:"Process QR code",getSubOrderInfoFail:"Get sub-work orders information fail",getOrderSerialNumberInfoFail:"Get order serial numbers information fail",getOrderAllSerialNumberFail:"Get all serial numbers fail",processOrderNum:"Process sub work order number",withoutSpacingRules:"No blank characters allowed",countFrontRearProcessControlInfo:"The total number of work reports for subsequent processes<=the total number of work reports for previous processes",countKeyProcessControlInfo:"Enable critical process control. There is no limit on the number of work reports for all previous processes in critical processes; the total number of work reports for subsequent processes in critical processes cannot exceed the total number of work reports for critical processes.",statusFrontRearProcessControlInfo:"The previous process status is completed, and the subsequent process can only start",statusKeyProcessControlInfo:"Enable critical process control, with no limit on the number of work reports for all previous processes in the critical process. If the critical process is not completed, all subsequent processes in the critical process cannot start.",countControl:"Process reporting quantity control",statusControl:"Process start status card control",frontRearControl:"Front and rear station process card control",keyProcessControl:"Critical process control",keyProcesses:"Critical Process",reportFailed:"Report Fail!",WorkReportOne:"The control of the number of processes in the front and rear stations has been activated, and the total number of reported processes in the back station cannot exceed that in the front station!",WorkReportTwo:"The quantity control of critical processes has been activated, and the total number of post station work reports for critical processes cannot exceed that of critical processes!",startFailed:"Start Fail!",StartOne:"The front and rear station process status control has been activated. The previous process status is completed, and the subsequent process can only start!",StartTwo:"The critical process status control has been activated, and the critical process is completed before the subsequent process can start!",criticalProcess:"Is critical process",criticalProcessError:"The key process input does not meet the requirements. Please enter 'Yes' or' No '",columnSetting:"Column Configuration",returnToDefault:"Return to default",productionOrderLevel:"Production Order Level",processOrderLevel:"Process Order Level",columnLimit18:"The displayed fields must not exceed 18 fields",columnLimit7:"The displayed fields must not exceed 7 fields",setSuccessfully:"Set Successfully",columnLimit2:"The work order hierarchy display field must not be less than 2 fields",orderDispatchToReporting:"Dispatch work orders to the site and report work orders",orderSharing:"Order Sharing",sharedSelectOrder:"Please check the order you want to share first!",errorDifferentOrders:"The currently selected work order belongs to different orders. Please select work orders under the same order to share!",orderSharingQR:"Order tracking QR code",download:"Download",orderProgress:"Order Progress",orderTracking:"Order Tracking",no250Characters:"Cannot exceed 250 characters",processNotes:"Process Notes",lastUpTime:"Last update time",processRemark:"Process Remarks",departmentPersonnel:"Department",deactivateds:"Deactivated",plannedCompleteDate:"Planned completion date",planExpectedDate:"Estimated Time",turnOffScanning:"Turn off scanning",deviceGroup:"Machine Group",device:"Equipment/Station",stopUse:"Deactivated ",noGroup:"No Group",salaryFailed:"Salary calculation failed",openRepporting:"If the setting up for reporting work directly without starting work is enabled, the manual reporting restriction setting will become invalid. Are you sure to enable it?",reportDirectly:"Setting up for reporting work directly without starting work",open:"Open",close:"Close",reportNotice:"[Note] This is for MES global settings!",reportTimeInterval:"Reporting time interval",completeTimeInterval:"Completion time interval",showMyOrder:"Only display [My Work Orders]",showMyRecords:"Only display [My Records]",cycleEndTimeInterval:"Processing end time interval",yearRange:"The maximum filtering time interval cannot exceed one year",reviewWarning:"There may be other users reviewing, please refresh before proceeding",agentReportingFunction:"Agent reporting function",workOrderCustomSetting:"Custom settings for work orders",workReportCustomSetting:"Custom settings for reporting work",addCustomField:"Add custom field",editCustomField:"Edit custom field",showDisabledField:"Display disabled fields",customSettingNotice:"Supports adding up to 80 (excluding deactivation)",batchAction:"Batch Operation",cancelBatchAction:"Cancel batch operation",batchEnable:"Batch Enable",batchDisabled:"Batch Disabled",dragSort:"Drag and drop sort",fieldName:"Field Name",fieldType:"Field Type",itemIndex:"Item",fieldProperty:"Field Properties",regardText:"Guiding Text",regardTextPlaceholder:"Please enter the guiding text when filling in the field",textType:"Text",numberType:"Number",dateType:"Date",copy:"Copy",copyAddProcessPath:"Copy and add process path",presetPathModified:"If the preset path of the product already exists, it cannot be modified"," processUnderPath":"There must be a process under a path",workOrderImportTemplate:"Work order import template",workOrderProcessImportTemplate:"Work order&process import TMPL",fillingOutExcelTemplates:"Instructions for filling out Excel templates:",customersSameOrderDate:"1.The customer name of the same order and the order delivery date need to be the same. If the customer name of the work order with the same order number is different from the order delivery date, the relevant data of the first work order will be overwritten by default",workOrderEnteredGenerated:"1.The production work order number cannot be duplicated. If not entered, it will be automatically generated after importing",importantSorting:"2. Important sorting input numbers (0-4), the larger the number, the higher the priority. If not filled in. After importing, the system automatically brings in 2 (indicating normal)",processPathName:"3.Enter the corresponding process path name in the process path field",processPathFieldNumber:"5.The content filled in the process field is the process sequence (number), which needs to be the maintained process in the process path",executorsJobNumbers:"6.If there are multiple expected executors (job numbers) of the process, separate them with English commas",severalProcessesFewLines:"7.For each work order, there are several processes in the process path, and there are only a few lines of data",fillingInstructions:"Filling Instructions",selectImportTemplate:"Select import template",onlyImportWork:"Only import work orders",workOrdersProcessDetails:"Import work orders and process details",planWorkOrderImportTemplate:"Plan to develop a work order import template",planWorkOrderProcessImportTemplate:"Plan to develop work orders and process import templates",importantSortIsEmpty:"Important sorting is empty",fileTypeErrorAndUploadXlsx:"The imported file type must be a (.xlsx) file",repeatedOperations:"Repeated processes with the same production order number",containsFailed:"Contains failed verification, please check",customizationProcessPath:"Customization of process path",jumpToThe:"Jump to the",page:"Page",addWorkOrder:"Add work order",editWorkOrder:"Edit work order",buildWorkOrder:"Work order creation",baseField:"Base Field",selectCustomField:"Please select custom field",processedGoodProductsNum:"Number of good products",processedDefectiveProductsNum:"Number of defective products",processOrderStatus:"Process sub work order status",deviceWorkNum:"Equipment production quantity",basicWorkReportFieldFilling:"Basic work report field filling",customWorkReportFieldFilling:"Custom work report field filling",customFormFilling:"Custom form filling",basicFieldModification:"Basic field modification",customFieldModification:"Custom field modification",customFieldReocrd:"Custom record for job reporting",customFieldName:"Custom field name",customFieldValue:"Custom field record",insufficientAvailableInventoryTip:"The available inventory for work order [{arr}] is insufficient. Please confirm if a delivery work order needs to be executed",reportNumSetting:"The production quantity is automatically entered into the setting",autoCompleteSetting:"Automatic completion function setting for process",defaultShow:"Default Display",defaultShowThroughput:"Default display of required number of workpieces",cantOpenReview:"When the automatic completion function is turned on, the review function cannot be enabled!",cantOpenAutoComplete:"When the review function is turned on, the automatic completion function cannot be enabled!",dataCollection:"Data Collection",getDataRequired:"The start time, end time, and device fields must be filled in!",onlyNetEquip:"Data collection can only collect data from connected devices!",outserviceDevice:"The machine is out of service and cannot be delivered",eightDigits:"The numerical value shall not exceed eight digits",pathProcesslimitation:"The number of processes in the process path cannot exceed 200",auditFail:"The manual reporting restriction setting has been enabled, and the audit cannot be closed",consumptionAmount:"Consumption",procurementNotProgress:"Procurement Not Progressing",stockModel:"Stock Model",finishedProductMarket:"Finished Product Inventory",patchInventory:"Patch Inventory",bsInventory:"BS Inventory",adjustedInventory:"Adjusted Inventory",batchRollingInventory:"Batch Rolling Inventory",batchInventory:"Batch Inventory",rollingInventory:"Rolling Inventory",mrpSetting:"MRP Setting",replenishment:"Replenishment Quantity",turnoverDays:"Number of Turnover Days",adjustMagnification:"Adjust Magnification",minimumOrderQuantity:"Minimum Order Quantity (MOQ)",minimumPackQuantity:"Minimum Pack Quantity (MPQ)",reorderPoint:"Reorder Point",safetyStock:"Safety Stock",inventoryReplenishmentAmount:"Inventory Replenishment Amount",deliveryDay:"Delivery Date",valueNotBeNegativeAndZero:"The value must not be zero or negative",day:"Day",valueNotBeFloat:"The value must be an integer without a decimal point",productData:"Material Info",valueNotBeNegative:"The value must not be negative",MRPSettingRequired:"Inventory mode has been selected, MRP setting related content is required",hour:"Hour",minute:"Minute",second:"Second",workTimeUnit:"Working hour unit",technologicalRequirements:"Process Requirements",intMoreThan8:"Integer bits cannot exceed 8 bits",floatMoreThan3:"The decimal place cannot exceed 3 digits",wrongImportTimeUnit:"Working hour unit import format error",standardTimeMustPositive:"Standard working hours must be positive numbers",productFile:"Product File",workOrderRequirementsNumber:"Number of work order requirements",processRequirementsNumber:"Number of process requirements",productionReport:"Production Report",processRequires:"Number of process requirements",expectedProcessingEquipment:"Expected processing equipment",change:"Switching machines and lines",changeItem:"Debugging Item",changeMark:"Debugging Instructions",startAdjustMachine:"Start adjusting the machine",changeStatusSuccess:"Machine adjustment successful!",changeStatusFail:"Failed to switch the state during machine adjustment!",changeError:"The current station sub work order has not yet set a station",SystemError_api:"System Error",adjustmentEquip:"Adjustment Equipment",resourceAssign:"Resource Assignment",personnelAssign:"Personnel Assignment",deviceAssign:"Device Assignment",currentAssignedDevice:"Current assigned device",selectGroup:"Select Group",selectDevice:"Select Device",manufactureSettings:"Manufacturing execution settings",reportWorkQRcode:"Generate work QRcode",personnelWorkLog:"Personnel work log",settingPage:"Settings Page",settingItem:"Setting Item",reset:"Reset",generateQrcode:"Generate QRcode",downloadQrcode:"Download QRcode",settingQrcodeSize:"Setting Size",settingQrcodeFirst:"Please set QRcode first",qrcode:"QRcode",copyQrcodeURL:"Copy QRcode URL",sizeLimit:"Size must be 0 to 450",workProject:"Work Project",adjustmentProject:"Adjustment Project",adjustmentPersonnel:"Adjustment Personnel",adjustmentTimeInterval:"Adjustment time interval",adjustmentWaringOne:"The current device is undergoing machine adjustment in process",adjustmentWaringTwo:" . Continuing the operation will end the previous machine adjustment task. Do you want to continue?",adjustmentStartTime:"Adjustment StartTime",adjustmentEndTime:"Adjustment EndTime",adjustmentDuration:"Adjustment Duration(Hour)",production:"Production",prodWorkOrder:"Production Work Order",speedOfProgress:"Speed of progress",defectiveRate:"Defective Rate",actualStartDate:"Actual start time",actualCompletionDate:"Actual completion time",selectEquip:"Select Device",selectedItems:"Selected【{num}】Items",creator:"Creator",updatePerson:"Update Person",updateTime:"Update Time",templatename:"Process template name",templatenameSave:"The process information of the process template supports real-time saving",abnormalProcess:"The currently selected process has an exception",templatenameRepeat:"Duplicate process template names",newTemplate:"Add process template",editTemplate:"Edit process template",selected:"Selected",term:"Term",templatEmpty:"The process template name cannot be empty",templatError:"Process template name format error",importProcessTemplate:"Import process template",processTemplate:"Process Template",columnConfigurationFail:"Column configuration information query failed",administration:"Administration",keepOne:"There must be a process under a template",fileMassDelete:"Files Delete",dataError:"Data Error",fileNotSelected:"Please select files",addCustomColumn:"Add Custom Column",showDisableColumn:"Show Disabled Column and Sort Settings",upOrder:"Sort Up",downOrder:"Sort Down",reuse:"Restart",orderFail:"Sorting Failed",stopCustomRemind:"Confirm the disabled column",itemOrder:"Item Order",customAttributeName:"Custom Attribute Name",displayType:"Display Type",optionsNumber:"Options Number",customColClass:"Process Level",customSelectCol:"Custom drop-down option",textField:"Hand Input",selectField:"Drop-down option",hyperLink:"Hyperlink",editCustomColumn:"Edit Custom Column",dropOptionSetting:"Drop-down Option Setting",dropOptionIsRequired:"Drop options is required.",someColumnRequired:"Please complete the required fields",customLimit:"Corresponding class can only add {number} custom attributes",colNoSpecialCharacters:"Column cannot have special characters",addCustomColumnOption:"Add a custom option",saveBasicCol:"Save Basic Column",confirmToDeleteOption:"If you select this option in this custom field, the system will not keep it. Do you confirm to delete this option?",machineGroup:"Machine Group",productRouteVersion:"Product Route Version",fileTypeName:"File type name",defaultFileTypeNoEditAndDelete:"Default data cannot be update",getFileTypeFail:"Get file type failed",fileTypeIsUsedCannotDelete:"The file Type has been used and cannot be deleted",machineAdjustmentProject:"Debugging Item",addMAjroject:"Add machine adjustment project",modifyMAjroject:"Modify machine adjustment project",machineAdjustmentInstructions:"Machine adjustment instructions",writeBackWorkPiecesNum:"Write back the number of work pieces",confirmToDelete:"Are you sure to delete this data?",strLengthLimit200:"String length cannot exceed 200 characters",duplicateMAjroject:"Duplicate machine adjustment project name",fileArchiveManagement:"File Archive Management",documentCustomField:"Document Custom Field",materialCustomization:"Material Customization",processCustomization:"Process Customization",customizationOfProcessRoute:"Customization of process route",customFileType:"Custom file type",workOrderCustomization:"Work order customization",customizedJobReporting:"Customized job reporting",customizedReasonsForDefects:"Customized reasons for defects",customTuning:"Custom Tuning",templateIssue:"Template has issues",inspectedQuantity:"Please check the number of header fields",inspectionContent:"Please check the order or content of the header fields",pathProcessOrderLimitation:"The number of processes added to a work order cannot exceed 200",to:"To",starttime:"Start Time",endtime:"End Time",productNumber:"Material Number",materialSpec:"Specification and model",expectedStartDate:"Expected Start Time",expectedDueDate:"Due Time",materialUnit:"Unit",materialType:"Product Type",materialProperty:"Product Properties",materialState:"Product State",processOrderSn:"Process work order number",batchNumber:"Batch Number",productionOrderRequiredThroughput:"Part Count Required",productionOrderExpectedStartDate:"Expected Start Time",productionOrderExpectedDueDate:"Expected Due Time",productionOrderPriority:"Important Order",createBySelf:"Homemadeware",purchasedParts:"Purchased Parts",none:"None",finishedMaterial:"Finished Product",semiFinishedMaterial:"Semifinished Material",moldTool:"Mold",partCountRequired:"Part RQD",productionFileName:"CNC Program",orderNumberIsNullOrEmpty:"The order number must be required",orderNumberLengthExceeded:"The length of the order number cannot exceed 50 characters",orderCustomerNameLengthExceeded:"Customer name length cannot exceed 50 characters",orderExpectedDueIsNotDate:"Order expected due must be in date format",orderCustomerNameInconsistent:"For the same order number, the customer name must be consistent",orderExpectedDueInconsistent:"For the same order number, order expected due must be consistent",productionOrderNumberIsNullOrEmpty:"The production order number must be required",productionOrderNumberLengthExceeded:"The length of the production order number cannot exceed 30 characters",productionOrderNumberIsExist:"The production order number already exists in the system",partNumberIsNullOrEmpty:"The part number must be required",partNumberNotExist:"The part number must exist in the system",productionOrderRequiredThroughputIsNullOrEmpty:"Production order required throughput must be required",productionOrderRequiredThroughputIsNotNumber:"Production order required throughput must be a numerical value",productionOrderRequiredThroughputIsNotGreaterThanZero:"Production order required throughput must be greater than 0",productionOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"Production order required throughput cannot be greater than int.MaxValue",productionOrderExpectedStartDateIsNotDate:"Production order expected start time must be in date format",productionOrderExpectedDueDateIsNotDate:"Production order expected due time must be in date format",productRouteNameIsNullOrEmpty:"Product route name must be required",productRouteNameNotExist:"Product route name must exist in the system",productionOrderPriorityIsNotCorrectType:"Production order priority format error",productionOrderPartNumberInconsistent:"For the same production order, the part number must be consistent",productionOrderRequiredThroughputInconsistent:"For the same production order, production order required throughput must be consistent",productionOrderExpectedStartDateInconsistent:"For the same production order, production order expected start time must be the same",productionOrderExpectedDueDateInconsistent:"For the same production order, production order expected due time must be consistent",productionOrderProductRouteNameInconsistent:"For the same production order, product route name must be consistent",productionOrderPriorityInconsistent:"For the same production order, production order priority must be consistent",productionOrderOrderInconsistent:"For the same production order, the order number must be consistent",productionOrderNumberDuplicate:"Duplicate production order number",productionOrderBatchNumberIsExist:"Production order batch number already exists in the system",partNumberStatusIsDisable:"Part Number is disabled",productionOrderCustomFieldValueLengthError:"Production order custom field value length error",processOrderCustomFieldValueLengthError:"Process order custom field value length error",workOrderCustomFieldValueLengthError:"Work order custom field value length error",productionOrderNotFindCustomOption:"Work order custom field value not find option",productionOrderDateFormatError:"Work order custom field value date format error",productionOrderCustomFieldInconsistent:"For the same production order number, the custom field must be consistent",productionProcessIsNullOrEmpty:"The production process must be required",productionProcessIsNotNumber:"The production process must be numerical",productionProcessNotExist:"The production process does not exist in the system",processOrderRequiredThroughputIsNullOrEmpty:"Process order required throughput must be required",processOrderRequiredThroughputIsNotNumber:"Process order required throughput must be a numerical value",processOrderRequiredThroughputIsNotGreaterThanZero:"Process order required throughput must be greater than 0",processOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"Process order required throughput cannot be greater than int.MaxValue",processOrderExpectedStartDateIsNotDate:"Process order expected start time must be in date format",processOrderExpectedDueDateIsNotDate:"Process order expected due time must be in date format",processOrderPriorityIsNotCorrectType:"Process order priority format error",processOrderRequiredThroughputInconsistent:"For the same process order, process order required throughput must be consistent",processOrderExpectedStartDateInconsistent:"Process order expected start time of the same process must be consistent",processOrderExpectedDueDateInconsistent:"Process order expected due time of the same process must be consistent",processOrderPriorityInconsistent:"For the same process process order, process order priority must be consistent",processOrderNotFindCustomOption:"The option cannot be found in the custom attributes of the process order",processOrderDateFormatError:"The date format of the custom attribute of the process order is wrong",processOrderCustomFieldInconsistent:"For the same process process order, the custom field must be consistent",workOrderEquipGroupNameNotExist:"The work order group field must exist in the system",workOrderEquipNameNotExist:"The work order equipment field must exist in the system",workOrderShiftNameNotExist:"The work order shift name must exist in the system",workOrderEmpNumberNotExist:"The work order employee number field must exist in the system",workOrderRequiredThroughputIsNotNumber:"The work order required throughput must be a numerical value",workOrderRequiredThroughputIsNotGreaterThanZero:"The work order required throughput must be greater than 0",workOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"The work order required throughput cannot be greater than int.MaxValue",workOrderExpectedStartDateIsNotDate:"The expected start time of the work order must be in date format",workOrderExpectedDueDateIsNotDate:"The expected due time of the work order must be in date format",workOrderRequiredThroughputKeyIsNullOrEmpty:"The work order required throughput Key is required",workOrderBatchNumberIsNotBelongToProductionOrder:"The batch number of the work order does not belong to the work order",workOrderNotFindCustomOption:"The option cannot be found in the custom attributes of the work order",workOrderDateFormatError:"Work order custom attribute date format error",onlyOrderProductionOrderDataLegal:"Only order and production order data are legal",productionOrderOtherRowDataError:"Under the same produciton order, there are other row data errors",notFindCustomFieldId:"Not find custom field ID",salespersonMustExistWithinTheSystem:"The salesperson does not exist or has been deactivated",theLengthEmployeeNumberExceed20:"The length of the business employee number cannot exceed 20 characters",theLengthSourceOrderNumberExceed50Characters:"The length of the work order source order number cannot exceed 50 characters",theFormatError:"The format of the work order source order number is incorrect",theLengthProductionNumberExceed50Characters:"The length of the work order production number cannot exceed 50 characters",workOrderProductionNumberFormatError:"Work order production number format error",duplicateWorkOrderProductionNumber:"Duplicate work order production number",theProductionNumberAlreadyExistsInTheSystem:"The production number of the work order already exists in the system",orderSalesmanIsDisable:"The salesperson does not exist or has been deactivated",sameOrderNumberSalespersonConsistent:"Same order number, salesperson must be consistent",deviceName:"Machine Name",itemsPerPage:"Items Per Page",dispatch:"Dispatch",loading:"Loading",consDate:"Creation Time",machineName:"Machine Name",serialNumber:"Controller SN",planMaking:"Plan Making",planProgress:"Plan Progress",standardTotalTime:"Standard total lead time",standardTimeSecondPerItem:"Standard lead time(Second Per Item)",exportSyntecOrder:"Export Syntec Order",exportExcel:"Export Excel",someColumnIsRequired:"(*) is required",partCount:"Actual/Expected Part Count",actualProgress:"Actual Progress",expectedProgress:"Expected Progress",excelCustomize:"Excel Custom",tableHeaderCustomize:"Headers",chooseTimeRange:"Please choose Time Range",groupName:"Group Name",progressStatus:"progress status",sortBy:"Sort By",orderStatus:"Status",hide:"Hide",cloudImport:"Cloud Import",orderSchedulePreview:"Production Order Schedule Preview",deviceSchedulePreview:"Device Schedule Preview",productionOrderNumDetail:"MO Info.",actualThroughput:"Actual part count",abnormal:"abnormal",order:"Order",subOrder:"Sub Order",saveOrder:"Save Order Level",dataSaveSuccess:"Data saved successfully",warning:"Warning",serialNumberRuleSetting:"SN Rule Settings",snBatchSetting:"Batch/SN Rules",serialNumberPreview:"Serial Number Preview",prefixWord:"Prefix Word",middleWord:"Middle Word",sequenceNumberCount:"Number of Serial Numbers",nowDate:"Date",noSelect:"None",partNumBefore:"Before",partNumAfter:"After",partNumCount:"Number",year:"Year",month:"Month",yearMonth:"Year Month",yearMonthDay:"Year Month Day",numberLimitTen:"Number limit is 10",numberLimitFifty:"Total number limit is 50. The current number : ",numberLimitPositive:"Number must be positive",shiftName:"Shift",submitSuccess:"Submit Success",deleteSuccess:"Delete Success",numberNotInteger:"It can only be integers.",workOrderReport:"Work order report",status:"Status",inUseStatus:"Status of Use",stop:"Disabled",batchStop:"Batch Disable",editAndStop:"Edit And Disable",serialNumBinding:"SN Binding",showBindProductionOrder:"Show Binded Production Orders",serialNumGeneration:"Serial Number Generation",productionOrderCount:"Number of Production Orders",bindedNumber:"Binded Number",addSerialNum:"Add Serial Number",batchSerialNum:"Add Serial Numbers in Batches",autoGenCount:"Auto-generate count",autoGen:"Auto-generate",binded:"Binding",bindedSerialNumberTable:"binded serial number list",deleteDuplicated:"Delete Duplicated",serialNumExample:"Serial Number Example ",serialNum:"Serial Number",colNum:"number of columns",reason:"Reason",importFailInfo:"Import failed information",check:"Check",importProductionOrderQuantity:"Import Work Order Quantity",importSerialNumCount:"Number of imported serial numbers",importInfoCorrect:"Imported data is correct",importSuccessSerialNumCount:"Number of serial numbers imported successfully",enterCorrectQuantity:"Please enter the correct quantity",numLessRequired:"The number of bindings is less than the number of required artifacts",serialNumExcel:"Serial Number Binding Report",serialDuplicated:"Duplicated serial number",serialDuplicatedCount:"Duplicated number of binding serial numbers:",manualAddNum:"Manually add serial number",unbindedNotEnough:"The unbound serial number is not enough to bind",bindedDate:"Binded Date",machineAndStation:"Machine/Station",importantOrder:"Important Order",result:"Result",importSerial:"Import",availableCount:"Available number of bindings",notAddNewSerial:"Operation error, serial number has not been added",serialNumUnbinding:"Serial number unbinding",reportStatus:"Report Status",sequenceNumber:"Sequence Number",unbinded:"Unbinded",allUnbinded:"All Unbinded",isReportWork:"Reported Work",notReportWork:"not reported work",confirmUnbindAll:"Are you sure you want to unbind all the serial numbers found?",includeIsReportWork:"The unbinding sequence number includes the reported process number, please confirm whether you still want to unbind",exportSerialNumber:"Export Serial Number",snExportPreview:"SN Export Preview",snExportSetting:"SN Export",snPrintSize:"Serial number print size ",centimeter:"(CM)",orderSerialNumber:"Order Serial Number",pageSizeLimit:"QRCode size setting limit is 0.5 cm to 15 cm",defaultPrintSize:"QRcode default print size",noSerialNumberData:"No Serial Number Data",importTime:"Inbound Time",exportTime:"Export Time",processingType:"Processing Type",batch:"Batch",currentSN:"current serial number",processSetting:"Process Setting",returnDispatch:"Return Dispatch",week:"Week",expectedTuningTime:"Expected tuning time",productionOrderSort:"Production Order Sort",productionOrderSortSetting:"Production order sorting setting",singlePieceCycle:"Single Piece Cycle (seconds)",scheduleMethodSetting:"Schedule Method Settings",NStationSetting:"NStation Settings",defaultScheduleMethod:"Default Schedule Method",basicDaySetting:"Basic Time Setting",defaultStart:"Default Start",startStationComputing:"Start Station Computing",NStationCalculation:"NStation Calculation",completionStationComputing:"Completion Station Computing",plus:"Plus",minus:"Minus",NStation:"NStation",firstStationTime:"Start station start time",NStationTime:"Tick start time",endStationTime:"Completion Station Completion Time",processOrder:"Process work order",expectedImplementStaff:"Expected Implementation Staff",transferTime:"Transfer Time",productionProcessTransferCount:"Minimum transfer count",showNoProcessOrderExpectedStartDate:"Show process order with no start date",pageShowSetting:"Page Display Setting",processOrderExpectedStartDate:"Expected Start Date(process work order)",processOrderExpectedDueDate:"Expected Due Date(process work order)",processOrderRequiredThroughput:"Part Count Required(process orders)",equipGroupName:"Group Name",equipName:"machine/station",processOrderPriority:"Important Order(process order)",routeID:"Route Process ID",snBindedOther:"This serial number has been bound to other work orders, whether to still confirm the binding",numberLimitTwenty:"The number of digits must not exceed twenty yards",adjustMachine:"Tuning",statusError:"Exception",serialNumRule:"Serial Number Rule",customParameter:"Custom Parameter",ruleName:"Serial number rule name",showDisable:"Show Disabled",digits:"Digits",ruleState:"Rule State",defaultRule:"Default Rule",snRange:"Serial number range setting",paramName:"Parameter Name",selectCount:"Number of options",latestModiDate:"Last updated time",selectName:"Option Name",displayString:"Display String",default:"Default",param:"Options",snNameExist:"The serial number parameter name already exists",optionExist:"The option name or serial number display string already exists",deleteOptionWarn:"Are you sure you want to remove this option?",needParamName:"Please select the serial number parameter name",needFullRange:"Please fill in the correct serial number range",deleteCustomParamWarn:"Are you sure to delete the custom variable?",paramIsUsed:"The serial number parameter is being used. Please remove the metaword that uses this parameter in the rule before deleting it.",prodOrderBind:"Work order binding",partNumBind:"Material number binding",snParam:"Serial number parameter",bindedRecord:"Binded Record",serialRuleInfo:"Serial number rule data",bindedEmp:"Binded Person",bindedTime:"Binding Time",snStart:"Start with serial number",snEnd:"End of sequence number",count:"Quantity",modiSnBinding:"Change serial number binding",batchAdd:"Batch Add",pnReplacement:"Material number replacement",snAddStart:"Serial number starts",snAddEnd:"End of sequence number",snWasBinded:"The serial number has been bound to other material numbers",snExcelLimitOnePn:"Excel imports only one material number",pnNotUseProdNum:"The material number binding cannot use the metaword containing the work order number, please confirm the serial number rules",generatedCount:"[{count}] pen serial numbers have been generated",selectPnWarn:"Please select the material number",needGenFirst:"Please generate this [{partSerialNumber}] serial number first",serialNumberQuery:"Serial Number Query",snNameAlreadyExist:"The SN name already exists.",materialName:"Material Name",getDetail:"Detail",networkError:"Network or Host Exception",mutiSelect:"Multiple selection",level:"Level",columnName:"Column Name",workOrderLevel:"Work Order Level",makeType:"Make Type",rebatchSplitting:"Rebatch Splitting",saveBatch:"Save Changes",partNumberHasNoRuleSetting:"No batch number rule is set for this material.",batchNumberRule:"Batch Number Rule",batchRuleName:"Batch Number Rule Name",batchNumberRuleSetting:"Batch Number Rule Setting",batchNumberPreview:"Batch Number Preview",batchCount:"The number of batch",batchCountLimit:"The number of batch must be greater than 0",batchNameAlreadyExist:"The batch number rule name already exists",illegalEmpty:"Cannot be empty",exportData:"Export Data",group:"Group",getProductRouteListError:"Get product route list error.",use:"Enable",productRouteName:"Product Route Name",processInfo:"Process Information",showMore:"Show More",customCol:"Custom Field",finishProduct:"Finished",semiFinishProduct:"Semi-Finish",knives:"Tools",item:"Item",batchQrcode:"Batch QRcode",operationEmp:"Operator",operationTime:"Operation Time",searchSetting:"Conditional Search",conditionName:"Condition Name",defaultValue:"Default Value",workOrderEquipment:"Machine Group/Machine Station",processOrderProgressStatus:"Progress Status(process order)",past:"Past",future:"Next",current:"Current",timeLine:"Time Line",timeUnit:"Time Unit",customColSetting:"Custom field settings",orderLevel:"Production order level",string:"Input",singleSelect:"Selection",date:"Date",yearMonthDate:"Year-Month-Date",productionOrderStatus:"Order Status",productionOrderStatusList:"Order Status",processOrderStatusList:"Progress Status",inProgress:"In Progress",craftPathName:"Craft Path",productionProcessName:"Process Name",productionProcessNumber:"Process number",sourceType:"Cloud Import",sourceTypeList:"Cloud Import",processOrderLastModify:"process order update time",processOrderRemark:"Remarks",goodAndDefectiveCount:"Total number of good/defective products",getDataError:"Get data error",getCustomColFail:"Get custom column fail",workOrderExpectedStartDate:"Expected Start Date(work order)",workOrderExpectedEndDate:"Expected Due Date(work order)",workOrderProgressStatus:"Progress Status(work order)",productionOrderConsDate:"Creation Date(Order)",serialNumberCount:"Bound Number",isCriticalProcess:"Critical Process",empName:"Personnel",excelImportLimit1000Rows:"The number of data must not exceed 1000.",productionOrder:"Production Work Order",productionManagementSetting:"Production Management Setting",sequenceNumberHierarchy:"Sequence Number Hierarchy",serialNumberHistory:"Serial Number History",alter:"Change",jobDescription:"Job Description",bindWorkOrders:"Bind Work Orders",unbindWorkOrders:"Nnbind Work Orders",bindingPartNumber:"Binding part number",unbindingMaterialNumber:"Unbinding material number",changeBindingMaterialNumber:"Binding part number",numberManagement:"Number Management",batchCountLimitInteger:"The quantity of work order splitting batches must be an integer",allRecordsNum:"There are a total of {total} records",selectedRecordsNum:"{selectedNum} have been selected",currentCount:"This page has {currentSize} records",dragFileHereOr:"Drag the file here, or",clickToUpload:"Click to upload",pleaseEnterQualifiedHyperlink:"Please enter a qualified hyperlink",pleaseCheckUploaded:"Please check if the form items with * attachments have not been uploaded",numberUploadsCannotExceed5:"The number of uploads cannot exceed 5",uploadFileSize20MB:"Upload file size must be less than 20MB!",downloadSuccessful:"Download Successful",dateRangeArea:"Date Range",annex:"Annex",radioButton:"Radio Button",checkBoxButton:"Check Box",customFieldIDIsIllegal:"Custom field ID is illegal",illegalDocumentType:"Illegal document type",customFieldsAreRequired:"Custom fields are required",customTextCannotExceed50Characters:"Custom text cannot exceed 50 characters",customNumbersExceed15Characters:"Custom numbers cannot exceed 15 characters",customHyperlinkFillingIsIllegal:"Custom hyperlink filling is illegal",customSingleChoiceFillingIsIllegal:"Custom single choice filling is illegal",customMultipleChoiceFillingIsIllegal:"Custom multiple choice filling is illegal",illegalCustomTimeFilling:"Illegal custom time filling",illegalFillingCustomTimeInterval:"Illegal filling of custom time interval",customNumberFillingIsIllegal:"Custom number filling is illegal",ProductionOrderExpectedStartDateLatterThanDueDate:"Expected due time(Work order number)>=Expected start time(Work order number)",alreadyOverdue:"Already Overdue",materialCategory:"Material Category",materialProperties:"Material Properties",materialStatus:"Material Status",mainSupplierName:"Main supplier name",duplicateColumnData:"The data in this field has been entered, please select another field",progressCheck:"Progress Check",maxSupportedSimultaneousEdits:"Supports up to 20 work orders to be edited simultaneously!",unableToEditClosedTickets:"Work orders with a 'closed' status cannot be edited multiple times",supportReopenClosedTickets:"Only work orders that have been closed support anti closure",undistributedOrder:"Only work orders in the 'unassigned' status support delivery",unstartedOrderSupportsReturn:"Only work orders in the 'not yet started' status support returning",pleaseSelectWorkOrder:"Please select a work order first",retreatSuccess:"Returned Successfully",currentTicketClosed:"The current work order has been closed",closedTicketConfirmation:"The closed work order will not be able to perform any operations. Are you sure you want to close it?",closeSuccess:"Close Successfully",antiCloseSuccess:"Anti closure successful",importExcelData:"Excel Import",multiTaskEdit:"Multi work order editing",batchUpdate:"Batch Update",deliveryOrder:"Delivery work order",returnWorkOrder:"Return work order",antiClose:"Anti Closure",newMaterial:"Add new materials",deleteMaterial:"Delete Material",workOrderList:"Work order list",workOrderCustomRequiredFields:"Please check the required fields for customizing the work order",workOrderInfoSavedSuccessfully:"Work order information saved successfully",workOrderInfoSaveFailed:"Failed to save work order information",isConfirmCancel:"Please confirm whether to cancel?",ticketCorrespondingInfo:"Please check the information corresponding to the work order {workOrderNumber}",attachmentUpload:"Attachment Upload",workOrderNumbers:"Work order number",currentTableHasNoTickets:"There are currently no work orders in the table",expectedStartDay:"Expected commencement date",expectedCompletion:"Expected completion date",salesOrderNumber:"Pre sales order number",checkWorkOrderRequiredFields:"Please check the required fields on the work order",duplicateWorkOrderId:"There are duplicate work order numbers",productionStation:"Production Workstation",productionEquipment:"Production Equipment",remainingProcessCannotDelete:"There is currently only one process left, which cannot be deleted",selectionNumber:"Number Selection",identificationName:"Number and name",codePreview:"Number Preview",selectNumberingRuleFirst:"Please select the numbering rule first",creationTimeRange:"Create time interval",expectedConstructionStartDateRange:"Expected start date interval",batchUpdateContent:"Batch update content",batchUpdateSuccessful:"Batch update successful",batchUpdateFailed:"Batch update failed",failedToObtainSubWorkOrdersForTheProcess:"Failed to obtain sub work orders for the process",fillInTheBatchUpdateDataFirst:"Please fill in the batch update data first",selectTheFieldNameFirst:"Please select the field name first",noAttachment:"Attachment cannot be modified",integerBitsMustNotExceed10Digits:"Integer bits must not exceed 10 digits",notExceeding30Characters:"Not exceeding 30 characters",notExceeding50Characters:"Not exceeding 50 characters",modifyMaterial:"Modify Materials",workstationData:"Contains workstation data, this option cannot be empty",nextWorkstationInfo:"Update failed, please check the workstation information corresponding to the process under the work order",closedTicketsUpdate:"The 'closed' plan cannot be updated in bulk",workOrderGenerationFail:"Work order number generation failed",materialNoImage:"This material has no image preview available",materialDetails:"Material Details",confirmToDeleteAction:"Please confirm whether to delete it?",startDateIsAfterEndDate:"Expected start date greater than expected completion date",completionDateBeforeStartDate:"Expected completion date is less than the expected start date",processInfoIncorrect:"Please check the process information",pleaseSelectData:"Please select data first",circulationTagNumber:"Circulation tag number",numberOfTags:"Quantity of each circulation card",numberRuleName:"Number Rule Name",previewOfNumberingRules:"Preview of numbering rules",batchIssuanceQuantity:"Batch issuance quantity",manuallyAddCirculationLabels:"Manually add circulation labels",batchIssuanceOfCirculationLabels:"Batch issuance of circulation labels",bindFlowLabelList:"Bind flow label list",labelingIssuance:"Labeling Issuance",tagPreview:"Tag Preview",unbindSuccessfully:"Unbind Successfully",closeAddTagNumber:"If cancelled, the newly added tags will not be saved. Are you sure you want to cancel?",countOfTags:"Number of tags",exportLabelIssuanceTemplate:"If the number of labels is not filled in, it defaults to 1",theFileSizeCannotExceed5Mb:"The file size cannot exceed 5MB",duplicateCirculationTagNumber:"There are duplicate circulation tag numbers, please adjust them again",onlySupportsPositiveIntegers:"Only supports positive integers",insufficientNumberOfBindingsAvailable:"The current number of bindings is insufficient, please adjust again",flowLabelSpecification:"The circulation tag number only supports inputting uppercase and lowercase English letters and numbers, and cannot have spaces",duplicateCirculationTagNumberWithNewlyAddedData:"Duplicate circulation tag number with newly added data",batchUnbinding:"Batch Unbinding",pleaseSelectTheBoundLabelFirst:"Please select the bound label first",areYouSureToUnbind:"The label will take effect immediately after unbinding. Are you sure you want to unbind it?",batchUnbindingSuccessful:"Batch unbinding successful",pleaseSelectUnboundTagsFirst:"Please select unbound tags first",batchDeletionSuccessful:"Batch deletion successful",cannotSaveInPreviewState:"Cannot save in preview state",generate:"Generate",remainingBindingQuantity:"The remaining number of available bindings is",theCirculationTagNumberIsAUniqueCodeAndCannotBeDuplicated:"The circulation tag number is a unique code and cannot be duplicated",insufficientRemainingIssuableQuantity:"Insufficient remaining issuable quantity",thereIsNoCirculationLabelNumberingRule:"There is no circulation label numbering rule",boundQuantity:"Bound Quantity",successfullyGenerated:"Successfully Generated",generationFailed:"Generation Failed",selectTheCirculationTagNumber:"Please select the circulation tag number",duplicateFileNameExistingFile:"Duplicate file name, do you want to overwrite the existing file?",materialLabelIssuance:"Material label issuance",labelType:"Label Type",labelSourceObject:"Label source object",tagsNumber:"Number of tags",latestLabelIssuer:"Latest issuer of tags",latestLabelReleaseTime:"Latest release date of tags",labelIssuer:"Label Issuer",labelReleaseTime:"Label issuance time",materialLabel:"Material Label",noType:"No Type",materialMasterData:"Material master data",tagSourceNumber:"Tag source number",tagNumberingRules:"Tag numbering rules",rowExport:"Export",labelIssuanceSource:"Source of label issuance",manuallyAddTags:"Manually add tags",tagNumber:"Tag Number",quantityPerLabel:"Quantity per label",batchReleaseLabels:"Batch release labels",labelRulesPreview:"Preview of label rules",productionWorkOrderNumber:"Production work order number",labelImportTemplate:"Label import template",excelTemplateFields:"Template Fields",orderNotExist:"Production work order number does not exist",materialNotExist:"Material number does not exist",releaseTagsList:"List of Release Tags",selectMaterialMasterData:"Select material master data",selectProductionWorkOrder:"Select production work order",return:"Return",confirmReturn:"Confirm Return?",returnTip:"Are you sure to cancel",deleteTagEmptyMsg:"Please select the label to be deleted first",deleteTagTip:"The tag will take effect immediately after deletion. Are you sure you want to confirm the deletion?",plsSelectLabelSource:"Please select the source of label issuance",documentNumber:"Document Number",productionTagExcelTemplate:" Importing document labels template",materialTagExcelTemplate:"Material label import template",tagExcelTemplate:"Label import template",firProductionTip:"Please fill in the corresponding document number in the document number field",secProductionTip:"The different document numbers imported will be automatically split and summarized",firMaterialTip:"Please fill in the corresponding material number in the material number field",secMaterialTip:"The different material numbers imported will be automatically split and summarized",firDefaultTip:"The tag number field cannot be repeated",secDefaultTip:"If the number of labels is not filled in, it defaults to 1 when importing",labelReplacementBinding:"Label replacement binding",availableRemainingNumber:"The remaining number of available bindings is",noAvailableNumber:"Insufficient remaining issuable quantity, please re-enter",tagChangeBindingMsg:"Tag change binding cannot be selected multiple times",tagSelectBindingMsg:"Please select the data with the signing source object being 'Production Work Order' or 'Material Master Data' for data conversion and binding",successfullyChangedBinding:"Successfully changed binding",orderNotChange:"Production work order number not modified",productNumNotChange:"Unmodified material number",columnNotLessSix:"The minimum number of columns on the page should not be less than 6",columnFrozenFour:"Up to 4 columns of data can be frozen",selectBindData:"Please select the data that needs to be re bound first",tagPublishQR:"Material Label",plsSelectData:"Please select data",printTag:"Label Printing",positiveInteger:"Please enter a positive integer",onlyUseOneTag:"Only one work order can be tagged at a time",closedTicketsNotIssueTags:"Closed tickets cannot issue tags",selectData:"Please select data first",endDate:"End Date",selectPrintingTemplate:"Select printing template",printTemplateName:"Template Name",templatesSystem:"The system has built-in templates",size:"Size",printedFirstData:"Please select the data to be printed first",numberExceedsLimit:"The coding principle has exceeded the upper limit. Please go to the numbering rule setting in the factory modeling",submitReviewSettings:"Submit/Review Settings",productionPlanSetting:"Production plan setting",salesOrderSetting:"Sales Order Setting",autocommit:"autocommit",automaticReview:"Automatic Review",automaticallySubmitAndReview:"Automatically submit and review",planExcelExport:"Excel Export",productionPlanNumberCannotBeRepeated:"1.The production plan number cannot be duplicated. If not entered, the system will automatically generate it according to the numbering rules corresponding to the production plan after importing",enterTheCorrespondingProcessPathNameInTheProcessPathField:"2.Enter the corresponding process path name in the process path field",afterFillingInTheRequiredFields:"3.After filling in the required fields, you can proceed with the import",planToImportTemplate:"Plan to import template",productionPlanImportTemplate:"Production plan import template",productionPlanNumber:"Production Plan Number",plannedQuantity:"Planned Quantity",requestDeliveryDate:"Request delivery date",plannedCommencementDate:"Planned commencement date",plannedCompletionDate:"Planned completion date",fatherPlanNumber:"Father Plan Number",mainPlanNumber:"Main Plan Number",submittedFirst:"Please select the data to be submitted first",submissionFailed:"Submission failed, documents in pending submission status can only be submitted",pendingSubmissionStatusSubmission:"Only documents in the pending submission status can be submitted, and the following plan statuses are not met:",resubmittedFirst:"Please select the data that needs to be resubmitted first",antiSubmissionFailed:"Failed to resubmit, only documents in the pending review status can be resubmitted",pendingReviewStatusForResubmission:"Only documents in the pending review status can be resubmitted. The following plan statuses are not met:",reviewedFirst:"Please select the data that needs to be reviewed first",auditFailed:"Approval failed, documents in pending approval status can only be approved",pendingStatusReview:"Only documents in the pending approval status can be approved. The following plan statuses are not met:",resubmittedSuccess:"Reverse submission successful",reviewedSuccess:"Audit Successful",auditedSuccess:"Anti audit successful",closedSuccess:"Close Successfully",antiClosureSuccess:"Anti closure successful",auditedFirst:"Please select the data that needs to be de audited first",antiAuditFailed:"Anti audit failed, only documents in the approved state can be de audited",reviewedStatusUnapproved:"Only documents in the approved status can be unapproved. The following plan statuses are not met:",closedFirst:"Please select the data to be closed first",shutdownReason:"Shutdown Reason",fillInTheReasonForClosure:"Please fill in the reason for closure",reverseClosedFirst:"Please select the data that needs to be reverse closed first",antiClosureFailed:"Failed to close, only documents in closed status can be closed",closedStatusReverseClosure:"Only documents that are in a closed state can be de closed. The following plan states are not met:",deletedFirst:"Please select the data to be deleted first",deleteFailed:"Delete failed, only documents in pending submission status can be deleted",toBeSubmittedStatusDeleted:"Documents in the pending submission status can only be deleted, and the following plan statuses are not met:",planStatus:"Plan Status",bomVersion:"BOM version",remainingPlanCount:"Remaining planned quantity",completionQuantity:"Completed Quantity",orderQuantity:"Order Quantity",workStartDate:"Actual commencement date",workEndDate:"Actual completion date",creationDate:"Creation Date",submitter:"Presenter",submitTime:"Submission Time",avoidSubmitter:"Anti Submitter",antiSubmitTime:"Reverse submission time",antiReviewer:"Anti Reviewer",antiReviewTime:"Anti audit time",closePerson:"Close People",closeTime:"Closing Time",antiClosePerson:"Anti closure person",antiCloseTime:"Anti closing time",treatSubmit:"To be submitted",treatAudit:"Pending Approval",minColumnCountInPage:"The minimum number of columns on the page should not be less than 6",maxFrozenCols:"Up to 4 columns of data can be frozen",adjustNumber:"Adjust Quantity",exportOfProductionPlan:"Export of production plan",productionWorkOrderRemittance:"Production work order remittance",selectPlanFirst:"Please select a plan first",closedPlansUpdate:"Only 'pending submission' or 'pending review' work orders can be batch updated",planLevel:"planning hierarchy",mustBeAPositiveInteger:"Must be a positive integer",materialAlreadyExists:"The material already exists, adding failed, please select again!",checkPlanCorrespondingInfo:"Please check the information corresponding to plan {planNumber}",pendingSubmitEditable:"Only for submission, the plan awaiting review can be edited",maxEditPlans:"Supports editing up to 20 plans simultaneously",planList:"Plan List",productBomList:"Product bom list",checkPlanCustomFields:"Please check the custom fields in the plan",planInfoSavedSuccess:"Plan information saved successfully",planInfoSaveFailure:"Failed to save plan information",addMaterial:"Add Materials",materialTypeId:"Material Type",unitUsage:"Quantity Per",demandQuantity:"Demand Quantity",inventoryQuantity:"Inventory Quantity",inventoryStorageQuantity:"Inventory Quantity",positiveIntegerCheck:"Only positive integers greater than 0 can be input",bomDeleteValidation:"The current BOM list only has one item left, deletion failed",standardWorkHourValidation:"The integer bits must not exceed 8, and the decimal places must not exceed 3",maxTenDigitInt:"Only integers up to 10 digits can be input",orderQuantityValidation:"Only positive integers up to 10 digits can be input",planStartDateAfterPlanEndDate:"The planned start date is later than the planned completion date",planCompletionDateBeforePlanStartDate:"The planned completion date is less than the planned commencement date",noDataInTable:"There is currently no data available in the table",checkRequiredFieldsInPlan:"Please check the required fields in the plan",hasDuplicatePlanId:"There are duplicate plan numbers",system:"System",reverseSubmission:"Reverse Submission",toExamine:"To Examine",antiAudit:"Anti Audit",generateWorkOrder:"Generate work order",adjustNumberValid:"The input box can only input numbers (including positive and negative integers), and can only input up to 10 digits",noDataCopy:"Please select the data to be copied first",plannedStartDateIsIllegal:"Filling in the format of the planned start date is illegal",plannedDueDateIsIllegal:"Filling in the format of the planned completion date is illegal",productionPlanList:"Production Plan",productionPlanningProcess:"Production Planning Process",multiPlanEdit:"Multi plan editing",maxEditProductionPlans:"Supports editing up to 20 production plans simultaneously!",editableProductionPlans:"Only production plans in the 'pending submission' and 'pending review' states can be edited with multiple plans. Please select again",submitTooltip:"Only documents in the pending submission status can be submitted",reverseSubmitTooltip:"Only documents in the pending review status can be resubmitted",toExamineTooltip:"Only documents in the pending review status can be reviewed",autiAuditTooltip:"Only documents in the approved state can be unapproved",closeTooltip:"Documents in closed status cannot be closed",antiCloseTooltip:"Only documents that are in a closed state can be de closed",deleteTooltip:"Only documents in a pending submission status can be deleted",parentMaterialNotAsChildMaterial:"Parent and child materials cannot be the same",copyPlan:"Copy Plan",confirmDelete:"Confirm to delete",confirmCancel:"Are you sure to cancel?",changeTagPublishBindFail:"The current production order does not have enough quantity to bind, switching failed!",pushDown:"Push Down",associativeQueries:"Associative Queries",theMinimumColumns6:"The minimum number of columns on the page should not be less than 6",upTo4ColumnsFrozen:"Up to 4 columns of data can be frozen",returnQuantity:"Return Quantity",inboundRemain:"Inventory not yet completed",listOfDocuments:"List of Documents",warehousingEntry:"Warehousing Entry",outboundOrder:"Outbound Order",warehouseEntryNotice:"Warehouse Entry Notice",deliveryNotice:"Delivery Notice",inventoryList:"Inventory List",listOutboundOrders:"List of outbound orders",sourceOrderType:"Source order type",sourceOrderNumber:"Source Order Number",sourceSingleLineNumber:"Source single line number",purchaseOrder:"Purchase Order",movementsName:"Anomalous Type",changeFile:"Alterative File",itemNoName:"Material number/Material name",storageSpace:"Storage Location",aberrationTime:"Aberration Time",productionInventoryPreset:"Production inventory (preset)",productionReturnMaterialPreset:"Production return material (preset)",productionMaterialRequisitionPreset:"Production material requisition (preset)",productionReturnPreset:"Production return (preset)",warehouseNumber:"Warehouse Number",storage_nameForm:"Storage Name",storageLocationNumber:"Storage location number",materialId:"Material No",change_amount:"Number of changes",productionReceipt:"Production Receipt",selectDocument:"Select Document",productionMaterialRequisitionForm:"Production Material Requisition Form",theWorkOrderNotBOMListDown:"The work order does not have a BOM list, so the production material requisition cannot be pushed down",pleaseSelectDownFirst:"Please select the data to be pushed down first",crossDocumentNotSupported:"Cross document push is not supported",downFailedDocumentsClosedState:"Push down failed, documents in closed state cannot be pushed down",pleaseFirstSelectQuery:"Please first select the data that needs to be associated with the query",crossDocumentQueryNotSupported:"Cross document query is not supported",defaultStoragePreset:"Default warehouse (preset)",productBOMList:"Product BOM List",inventorySurplusReceiptPreset:"Inventory surplus storage (preset)",inventoryLossOutboundPreset:"Inventory loss outbound (preset)",frozenInventoryPreset:"Freeze inventory (preset)",removeFrozenInventoryPreset:"Remove frozen inventory (preset)",salesOutboundPreset:"Sales outbound (preset)",otherOutboundPreset:"Other outbound (preset)",purchaseReturnMaterialPreset:"Purchase return material (preset)",purchaseInventoryPreset:"Purchase inventory (preset)",salesReturnsPreset:"Sales returns (preset)",otherInventoryPreset:"Other inventory (preset)",startDates:"Start Date",endDates:"End Date",selectedRangeNotExceedMAXdays:"The selected time range cannot exceed {MAX_DAYS} days",materialTypes:"Material Type",quantityOfMaterialsUsed:"Quantity of materials used",outboundQuantity:"Outbound Quantity",unfinishedOutbound:"Unfinished Outbound",inventoryQuantitys:"Inventory Quantity",automaticMaterialSuccessful:"Automatic material requisition successful",inventoryChangeDocNumber:"Inventory change document number",workNotProductBOM:"The work order has not yet maintained the product BOM, unable to automatically pick up materials, and dispatching has failed",insufficientInventory:"Insufficient material inventory, dispatch failed, please replenish inventory first",selectPrintDoc:"Select to print documents",equipmentSchedule:"EquipmentSchedule",workOrderSchedule:"workOrderSchedule",programmeSetting:"Schedule setting",Date:"Day",monday:"Monday",tuesday:"Tuesday",wednesday:"Wednesday",thursday:"Thursday",friday:"Friday",saturday:"Saturday",sunday:"Sunday",subWorkorderLinkage:"Sub work order linkage",linkageMode:"Linkage mode",moveAllProcessesTogether:"Move all processes together",allSubWorkOrderLinkage:"Only this process is linked to all sub work orders under the subsequent process",displayAbnormalContentDuringLinkage:"Display abnormal content during linkage",display:"Display",donotDisplay:"Do not display",adjustmentLinkedToSameEquipment:"Adjustment linked to the same equipment work order",adjustMode:"Adjust mode",adjustPrevious:"Adjustment of previous work order",adjustBehind:"Post work order adjustment",simultaneouslyAdjusted:"Simultaneous adjustment of front/back work orders",rangeOfInfluence:"Range of influence",dispatchProcessLocking:"Dispatch process locking",sortReset:"Sort Reset",workOrderEidt:"Work order edit",splitTask:"Split task",splitNumber:"Split number",split:"Split",statusColorDescription:"Status color description",noDispatchDesc:"All unassigned work orders within the date range",noStartDesc:"All work orders that have not yet started within the date range",underExecutionDesc:"All work orders that have already started within the date range",finishedDesc:"All completed work orders within the date range",closedDesc:"All closed work orders within the date range",alreadyOverdueDesc:"All overdue work orders within the date range",productpartNumber:"Product part number",productname:"Product name",splitTip:"The splitting quantity cannot exceed the original work order quantity",updateNotification:"Update notifications",updateNotice:"Update the following work order content in a linked manner",segmentCode:"Segment code",station:"Work station",equipment:"Equipment",old:"Old",new:"New",splitNumberTip:"Please enter a positive integer less than or equal to the required quantity of the original work order",sourceOrderNo:"Source Order Number",isVerifiedOrExecutingOrFinished:"Only production plans in the 'approved', 'in progress', or 'completed' status support generating work orders. Please select again!",menuImport:"Menu Import",selectProductionPlan:"Select Production Plan",Self:"Homemadeware",Purchase:"Purchased Parts",None:"None",workingHoursCaculate:"Calculation of working hours",calculationSetting:"Calculation Setting",automaticSchedulingSetting:"Automatic scheduling setting",startingStationStartTime:"Starting time of the starting station",beatPointStartTime:"Starting time at the beat point",completionStationStartTime:"Completion station start time",fillDateTimeCompletely:"Please fill in the date and time completely",calculationSuccess:"Work hour calculation successful",calculationFail:"Calculation of working hours failed",plsFillStartEndTime:"Please fill in the expected start date and expected completion date",plsSetInfo:"Please set complete information first",batchClose:"Batch Closure",planNumGenerateFail:"Production plan number generation failed",daily:"Day",printPreview:"Print Preview",printClientInstall:"Print client installation",batchPrintClient:"Before batch printing, you need to install the printing client and configure the default printer. Please click to download",selectMaterials:"Select Materials",inventorySetting:"Inventory Setting",basicField:"Basic Field",unitSetting:"Unit Setting",batchShutdown:"The original batch number rule has been discontinued, please reset it",imageImport:"Image Import",enableDefaultRepository:"Enable default repository",enableShelfLifeManagement:"Enable shelf life management",outboundWarehouse:"Outbound Warehouse",shelfLifeUnit:"Shelf life unit",outboundWarehouseLocation:"Outbound warehouse location",qualityGuaranteePeriod:"Shelf Life",reorderPoints:"Reorder Point",storageWarehouse:"Warehousing Warehouse",warehouseSelection:"Warehouse Selection",positionSelection:"Position Selection",parentCategory:"Parent Category",sun:"Day",qualityGuaranteePeriodRulesText:"The input must be greater than 0 and have no decimals, with a maximum of 10 digits",sixDigitDecimalVerificationRulesText:"The input must be greater than 0, with a maximum of 10 integer digits and 6 decimal digits",materialNameNoSpace:"There must be no spaces before or after the material name",batchQueryFailed:"Batch query failed",tenMbLimit:"The image size limit is 10MB. Please select a new image",imgFormatError:"The image format does not match. Please select a new image",chooseFinalCategory:"Please select the final category",requiredNotEmpty:"Required fields cannot be empty",continueAddInfo:"Continue to add product information",storageType:"Warehouse category",storage_id:"Warehouse Number",storage_name:"Warehouse Name",storage_address:"Warehouse Address",storage_manager:"Warehouse Manager",storage_phone:"Telephone",storage:"Warehouse",editMaterial:"Edit Materials",unitList:"Unit List",unitName:"Unit Name",unitVerify:"The unit does not support special characters",unitRepeat:"Duplicate material units",deleteUnit:"Do you want to delete the current unit",customerCode:"Customer Code",customerAbbreviation:"Customer Abbreviation",contacts:"Contacts",contactNumber:"Contact Number",contactAddress:"Contact Address",email:"Email",fax:"Fax",area:"Area",detailedAddress:"Detailed Address",filePreview:"File Preview",generateNumber:"If not filled in, it will be automatically generated when saving",systemTag:"System Label",cancelTip:"If cancelled, all modifications made this time will not be saved. Are you sure you want to cancel",materialNumberGeneration:"If not filled in, it will be automatically generated according to the default rules when saving",unitVerification:"The input must be greater than 0, with a maximum of 6 decimal places",customTextCannotExceed200Characters:"Custom text cannot exceed 200 characters",unitUsed:"The current unit is in use and cannot be deleted",orderDateRules:"Please select the order date",name:"Name",salesCategory:"Sales Category",orderDate:"Order Date",materialNumber:"Material Number",ThisOutboundQuantity:"Outbound Quantity",outboundRemaining:"Outbound Remaining",customerOrderNumber:"Customer Order Number",salesEmp:"Sales Emp",followEmp:"Follow Emp",dispatchLocation:"Dispatch Location",salesBatchNumber:"Sales Batch Number",customerModelCode:"Customer Model Code",customerProductCode:"Customer Product Code",cartons:"Cartons",quantityPerCarton:"Quantity Per Carton",salesRemark:"Sales Remark",materialRemark:"Material Remark",priceIncludingTax:"Price Including Tax",priceExcludingTax:"Price Excluding Tax",amountIncludingTax:"Amount Including Tax",amountExcludingTax:"Amount Excluding Tax",createEmpName:"Create Emp Name",auditEmpName:"Audit Emp Name",auditTime:"Audit Time",pushPlanNum:"Push Plan Num",pushEmpNum:"Push Emp Num",plsSelectSaleOrder:"Please select a sales order first",standardSales:"Standard Sales",outsourcedSales:"Outsourced Sales",salesReturn:"Sales Return",pendingReview:"Pending Review",deliveryInProgressFa:"Delivery In Progress",review:"Review",materialInventoryInsufficient:"{material} material inventory is insufficient, missing {number}, whether to confirm to create production plan",materialInventoryInsufficientOrder:"{material} material inventory is insufficient, missing {number}, whether to confirm to create production order",planNumberIsEmpty:"Production plan number is not maintained, whether to confirm to create production plan",orderNumberIsEmpty:"Row number is not maintained, whether to confirm to create production order",remainingAvailableQuantity:"Remaining available quantity",salesOrderPushDownFailurePrompt:"Sales Order Push Down Failed, Sales Order has already been pushed down to production order, cannot be pushed down to production plan",salesOrderPushDownFailurePromptDetail:"Sales Order has already been pushed down to production plan, cannot be pushed down to production order",ticketDeleteConfirmation:"The work order will be permanently deleted and cannot be recovered. Are you sure you want to delete it?",unassignedWorkOrderCanDelete:"Only unassigned work orders can be deleted",template:"Template",materialFile:"Material File",stockView:"Inventory Inbound",stockOut:"Inventory Outflow",operationLog:"Operation Log",toBeFinished:"to be finished",viewOperationRecord:"Order operation record",operationType:"Operation Type",operationDetails:"Operation Details",operationTimeInterval:"Operation time interval",operationTips:"Only retain operation records within six months",addOrder:"Add Order",editOrder:"Edit Order",deleteOrder:"Delete Order",toBeFinishedTips:"Only work orders that are 'in progress' or 'overdue' can be completed",toBeFinishedConfirmTips:"The completed work order will not be able to perform any other operations. Can you confirm if it has been completed?",customerList:"Customer List",sizeLimitSingleFileIs10MB:"The size limit for a single file is 10MB",fileIsExitTooltip:"This is an existing file. Are you sure you want to update it?",fileUpdataTooltip:"File Update Reminder",numberUploadsCannotExceed10:"The number of uploads cannot exceed 10",materialPicture:"Material Picture",materialImages10MBHaveOneImage:"Material images only support importing image type files, with a file size not exceeding 10MB. Each material can only have one image",upTo10MaterialFilesButFileNotExceed10MB:"Up to 10 material files can be uploaded, with no limit on file types, but each file size should not exceed 10MB",customer:"Customer",pleaseSelect:"Please Select",batchOperation:"Batch Operation",moreActions:"More Actions",batchImport:"Batch Import",batchExport:"Batch Export",advancedOperation:"Advanced Operations",parentSpecModel:"Parent Spec Model",childSpecModel:"Child Spec Model",manufacturerIDOfPOM:"Manufacturer ID",businessName:"Business Name",manufacturerAbbreviationOfPOM:"Manufacturer Abbreviation",contactOfPOM:"Contact",contactNumberOfPOM:"Contact Number",emailOfPOM:"Email",faxOfPOM:"Fax",contactAddressOfPOM:"Contact Address",remarksOfPOM:"Remarks",manufacturerListOfPOM:"Manufacturer List",manufacturer:"Manufacturer",productionOrderProcess:"Production work order (process)",productionProcessTemplate:"Work order process flow card",checkBOMList:"Please check the BOM information",goodStorageWarehouse:"Good storage warehouse",goodStorageSpace:"Good storage space",defectiveStorageWarehouse:"Defective storage warehouse",defectiveStorageSpace:"Defective storage space",purchaseStorage:"Purchase storage warehouse",purchaseStorageSpace:"Purchase storage space",storageImportWarn:"For four warehouses, if one is filled in, the other three are required to be filled in.",shelfLifeImportWarn:"If one of the 'shelf life unit' and 'shelf life' is filled in, the other must also be filled in",intervalStart:"Interval Start",intervalEnd:"Interval End",viewOperationRecordTxt:"View OperationRecord",viewOperationRecordTips:"Only retain operation records within the past six months.",operationTimeRange:"Operation time interval",newView:"New View",editView:"Edit View",copyView:"Copy View",deleteView:"Delete View",viewList:"View List",viewListTips:"Up to 20 views can be created at most",createView:"Create a View",viewName:"View Name",basicInfo:"Basic Information",dataFilter:"Data Filtering",dataFilterTips:"The view defaults to displaying data within one year",viewIcon:"Icon",viewPermission:"Check Permission",quarter:"Quarter",addFilterConditions:"Add filtering conditions",greaterThan:"Greater Than",greaterThanOrEqualTo:"Greater than or equal to",lessThan:"Less Than",lessThanOrEqualTo:"Less than or equal to",equalTo:"Equal To",notEqualTo:" Not equal to",yesEmpty:" Empty",notEmpty:" Not Empty",selectRange:" Select Range",dynamicFiltering:" Dynamic Screening",contains:"Contain",notContains:"Not Included",inRange:"Within the range",notInRange:"Not within the range",isOneOf:"Is one of them",notAnyOf:"Not any of",today:"Today",yesterday:"Yesterday",thisWeek:"This Week",lastWeek:"Last Week",thisMonth:"this Month",lastMonth:"Last Month",lastThreeMonths:"Nearly three months",custom:"Self-Defined",customRange:"Custom (Range)",maxValue:"Max Value",minValue:"Min Value",moreView:"More View",viewDeleteTip:"Once deleted, it cannot be restored. Please confirm whether it has been deleted?",duplicateViewNames:"Duplicate ViewNames",originalOrderNumber:"Original Order Number",orderDemander:"Demander",consUserName:"Creator",modiUserName:"Update Person",modiDate:"Update Time",inboundQuantity:"Inbound Quantity",originalOrderType:"Original Order Type",closeNonClosedTickets:"Only supports closing tickets that are not in the 'Closed' status",selectOperation:"Selection Operation",startOrEndTime:"Start or end time",inputText:"Please enter text",selectOptions:"Please select an option",timePrecision:"Precision",selectTime:"Select Time",pastOrFuture:"Past or future",selectOperator:"Please select an operator",inputRangeValue:"Please enter a range value",inputValidRange:"Please enter a valid range",startValueCannotGreaterThanEndValue:"The starting value cannot be greater than the ending value",selectTimeAndPrecision:"Please select time and precision",selectStartOrEnd:"Please choose a start or end time",selectTimeRange:"Please select a time range",selectCompleteTimeRange:"Please select the complete time range",selectDynamicFilteringType:"Please select the dynamic filtering type",pleaseInput:"Please Enter",checkForm:"Please check the form",closeReason:"Close Reason",materialFileName:"Material File",viewEditSuccessful:"The view editing was successful",adjustDataFiltering:"[{name}] [Data Filtering] has been adjusted",adjustViewPermission:"[{name}] [View Permission] has been adjusted",adjustViewName:"[{name}] [View Name] is changed to [{newName}]",deleteViewSuccessful:"The view has been successfully deleted, and the name of the deleted view is [{name}]",addViewSuccessful:"New view successfully added, view name is [{name}]",currentUser:"Current User",numIntegerExceedTen:"Integer bits cannot exceed 10 bits",numDecimalExceedSix:"The decimal place cannot exceed 6 digits",moreFilter:"More Filtering",addFilterCriteria:"Add filtering criteria",maxFilterConditions:"At most 10 filtering conditions can be added at a time, please remove other filtering conditions first",sum:"Total",resourceType:"Resource Type",resourceName:"Resource Name",processResourceList:"Process Resource List",beatPoint:"Beat Point",leadTime:"Lead Time",minimumTransferCount:"Minimum Transfer Quantity",loadingTime:"Loading Time",unloadingTime:"Unloading Time",minimumTimeIntervalMinutes:"Minimum Time Interval (minutes)",devices:"Devices",multipleFilesCannotBeSelected:"Multiple files cannot be selected",zeroPositiveInteger:"Please enter 0 or a positive integer",checkProcessResource:"Please check the process resource",checkProcessResourceName:"Please enter the process resource name",checkCalWorkingHours:"Please check the working hours calculation",calWorkHour:"Calculation of working hours"},tr={setting:"設定",personalInfo:"個人資料",language:"語系",homepage:"首頁",all:"全部",Notyetstarted:"未開工",Alreadystarted:"已開工","PauseProcessing ":"暫停加工",Latecommencement:"逾期開工",workReport:"生產報工",apiError:"功能連線失敗!您的網路狀態可能不穩定,請確認網路連線正常後重新嘗試。若仍無法使用煩請聯絡系統管理員。",productionManage:"生產管理",import:"匯入資料",export:"資料匯出",submit:"提交",saleOrder:"銷售訂單",productionPlan:"生產工單",assemblyWorkOrder:"裝配工單",systemConfiguration:"系統配置",hello:"你好",user:"用戶",workOrder:"工單報工",task:"任務",workReporting:"報工",department:"部門管理",actory:"工廠",basicData:"基礎數據",productDefinition:"產品數據",bom:"物料清單",unit:"計量單位",defectiveItems:"不良原因設定",productionProcesses:"工序",processRoute:"產品工藝",productRouteManagement:"工藝路線管理",procesManagement:"工序管理",logout:"登出",log:"登錄",perRow:"每列",items:"筆",fullName:"姓名",state:"狀態",accountNumber:"帳號",password:"密碼",query:"查詢",identity:"身份",role:"角色",newUsers:"新增用戶",actions:"操作",index:"序號",mobilePhone:"手機號",departmentName:"部門名稱",position:"職位",confirm:"確認",edit:"編輯",permissionConfiguration:"權限設置",delete:"刪除",workShift:"班別",roleManagement:"角色管理",roleName:"角色名稱",add:"新增",createStaff:"創建人員",createTime:"創建時間",roleRemark:"角色描述",addRole:"新增角色",editRole:"編輯角色",rolePersonSetting:"角色人員設定",roleInfo:"角色資訊",addStaffList:"新增人員",employee:"人員",multiple:"復選",staffList:"人員列表",empNumber:"工號",addShift:"新增班制",breakTimeTable:"休息時間表",shiftMode:"班制名稱",defaultShift:"默認班制",shiftItemName:"輪班名稱",shiftItemTime:"輪班時間",editAndDelete:"編輯與刪除",nextDay:"次日",addBreakTime:"新增休息時間",editBreakTime:"編輯休息時間",shift:"班制",timePeriod:"時間區段",breakStart:"休息開始",breakEnd:"休息結束",description:"備註說明",required:"必填",remarkLengthLimit:"字串長度不可超過50字元",timeInterval:"時間區間",type:"類型",break:"休息",editShift:"編修班制",selectShift:"請選擇班制",editshiftItemTime:"編輯輪班時間",shiftStartTime:"輪班開始時間",shiftEndTime:"輪班結束時間",oneShift:"一班制",twoShift:"兩班制",threeShift:"三班制",fourShift:"四班制",systemSnformation:"系統信息",processManagement:"工藝管理",WorkReportRecords:"報工記錄",userManage:"人員管理",userManages:"人員管理(超管)",save:"保存",cancellation:"取消",haveSpace:"首尾不能有空格",addDepartment:"新增部門",editDepartment:"編輯部門",isInUse:"是否啟用",enable:"啟用",disable:"停用",finished:"已完成",unfinished:"未完成",orderNumber:"訂單編號",deliveryDate:"交期",contractNumber:"合同編號",customerName:"客戶名稱",woCount:"工單數",addSuccess:"新增成功",editSuccess:"修改成功",woNumber:"工單",productPartNumber:"物料編號",productName:"物料名稱",submitError:"提交錯誤",addSyShiftFail:"新增班制失敗",addShiftFail:"存在新增失敗的輪班",editShiftFail:"存在編輯失敗的輪班",noDispatch:"未派工",workStart:"已開工",noStart:"未開工",overdueStart:"逾期開工",overdueEnd:"逾期完工",workEnd:"已完工",closed:"已關閉",suspendProcess:"待再加工",changing:"調機中",handling:"異常處理中",pauseProcessing:"暫停加工",craftPath:"工藝路線",clearAll:"清除全部",inputError:"生產工單號輸入錯誤",SNnotEmpty:"子工單號不得為空",canNotBeEmpty:"物料編號、工藝路綫、工序不得為空",standardParam:"標準參數",processFile:"工藝檔案",mainFile:"主檔案",subFile:"副檔案",fileName:"檔案名稱",fileType:"檔案類型",customField:"自定義欄位",product:"產品",preview:"預覽",otherFile:"其他檔案",synchronization:"串接同步",dataPathError:"檔案路徑錯誤",typeNotSupport:"預覽不支援此格式",productionOrderNumber:"生產工單號",stationNumber:"工位子工單號",stringSearch:"串查",partNumber:"物料編號",noData:"尚無資料",productionProcess:"工序",routeProcessID:"路徑工序ID",equipmentStation:"設備/工位",search:"搜尋",submitFail:"提交失敗",standardTime:"標準工時",sizeBig:"大",sizeMedium:"中",sizeSmall:"小",customerNameDigiwin:"客戶名稱",orderExpectedDue:"訂單預交日",requiredThroughput:"需求件數",startDate:"預計開工時間",finishDate:"預計完工時間",requiredField:"不能為空",processName:"工序名稱",processNumber:"工序代碼",workOrderSerialNumber:"子工單號",cantBeEarly:"預計開工時間不能晚於預計完工時間",cantAfEarly:"預計完工時間不能早於預計開工時間",sortSetting:"排序設定",ascending:"遞增",descending:"遞減",staff:"人員",startTime:"開工時間",endTime:"完工時間",total:"總計",actualEmp:"實際執行人員",processThroughput:"生產數量",quantityOfGoodProducts:"良品數",quantityOfDefectiveProducts:"不良品數",moreInfo:"更多信息",adverseCausesRecord:"不良原因記錄",badCause:"不良原因",badCauseNum:"不良原因數量",myWorkOrder:"我的工單",manualReport:"手動報工",planDate:"計劃時間",remainingRequired:"剩余需求工件數",totalRequired:"總需求工件數",pause:"暫停",designate:"指派",jobSpecification:"工作規範",errorAlert:"錯誤",code:"代碼",nameCause:"不良原因名稱",addReasonsDefects:"新增不良原因",remark:"備註",enableNot:"是否啟用",action:"操作",deactivate:"停用欄位提醒",confirmDeactivation:"確認停用",noSpaces:"禁止輸入空格",onlyEnglishNumbers:"只能輸入英數字",no20Characters:"不可超過20個字符",no50Characters:"不可超過50個字符",typeDuplicated:"類型不可重復",editReasonsDefects:"編輯不良原因",displayDeactivatedItems:"顯示停用項目",modifiedSuccessfully_api:"修改成功",modificationFailed_api:"修改失敗",loadMore:"加載更多",requestError:"請求失敗",requestSuccess:"請求成功",codeRepeat:"代碼不可重復",PleaseSelect:"請選擇",startDateInterval:"預計開工時間區間",closeCamera:"關閉",excelExport:"excel匯出",exportExcelData:"Excel匯出",columnConfiguration:"列配置",goodProducts:"良品數",defectivesNum:"不良品數",cycleStartTime:"加工開始時間",cycleEndTime:"加工結束時間",noDateRangeSelected:"未選擇日期區間",number:"數量",processOrderNumber:"工序子工單號碼",exceptStartDateInterval:"預計開工時間區間",cantLessZero:"需求工件數應大於0",goodProductTotalCount:"良品總數",badProductTotalCount:"不良品總數",needClickPlus:"點擊“+”新增不良原因,否則將不會被新增",selectBadCase:"選擇不良品原因",inputBadProductCount:"輸入不良品數",selectDepartment:"選擇部門",selectPerson:"選擇人員",automatically:"自動生成生產工單號",maintain:"維護工藝路綫",numerical:"數值需要為大於0的整數",fullNumber:"數值需要為整數",information:"無品名資料",specifications:"無規格型號",failed:"新增失敗",containing:"請檢查含有(*)的必填項",processEmpty:"工序為空",startSuccess:"開工成功",finishSuccess:"完工成功",pauseSuccess:"暫停成功",designSuccess:"指派成功",circulation:"工單流轉卡",progress:"工序進度",createWorkOrder:"建立工單",expectEmp:"預計執行人員",requiredNotZero:"需求工件數不得為零或負數",assignPersonnel:"指派人員",assignmentFailed:"指派失敗",pleaseCause:"請選擇不良原因",reportSuccess:"報工成功",reportFail:"報工失敗",negative:"數值不得為零或負數",totalReportCount:"總加工數",tooLess:"生產數量不得小於不良品數",toMoreThenZero:"生產數量應大於0",operator:"操作人員",workOrderStatus:"工單狀態",advancedSearch:"進階搜索",more:"更多",print:"打印",newPlan:"新增計劃",dispatchWorkOrders:"派發工單",viewProgress:"查看進度",underExecution:"執行中",editSchedule:"編輯計劃",deletedWorkOrder:"相關工單任務將一並刪除,是否確認執行?",successfullyDeleted:"刪除成功",dataImport:"資料匯入",exportTemplate:"Excel模板",excelImport:"Excel匯入",duplicateName:"不良原因名稱重複",importTheTemplate:"不良原因模板",importFail:"匯入失敗",fileTypeErrorAndUploadXlsxOrXls:"匯入檔案類型須為(.xlsx)或(.xls)檔",excelImportNoData:"excel表單無資料,請重新填寫後上傳",excelSyntecTemplateError:"EXCEL模板與系統語系不一致或不符合標準EXCEL格式",importDataCheck:"匯入資料檢查",totalNumber:"總條數",success:"成功",fail:"失敗",exportResults:"異常結果匯出",theFollowing:"以下為導入失敗的不良原因明細",payAttTo:"注意",failureReason:"失敗原因",checkResult:"檢查結果",InsItemIsHas:"數據已存在!",emptyStr:"空",do:"為",notEN:"不是英數字",lengthExceeds:"長度超過",notSpe:"不可含有空格",repeat:"重複",inputIsCorrectButRequestFailed:"輸入格式正確,但是請求失敗",succImportedAll:"條全部匯入成功",previewSubmit:"提交數據預覽",requestResults:"請求結果",transactions500:"Excel資料筆數限制為500",numberEmpty:"訂單編號為空",numberMaximum50:"訂單編號、生產工單號最大50位",productEmpty:"物料編號、工藝路綫不得為空",processDoesNotExist:"工序不存在",processPathDoesNotExist:"工藝路綫不存在",partNumberDoesNotExist:"物料編號不存在",requiredNumber:"工序子工單需求件數應為大於0的整數",workOrderNumber:"工單需求件數應為大於0的整數",jobNumberDoesNotExist:"工號不存在",operationSubWorkOrder:"工序子工單",dispatchSuccessful:"派工成功",dispatchFailed:"派工失敗",workOrderDelivery:"請確認您選擇的工單狀態為未派工,才可進行工單派送",beenDispatched:"請選擇未派工的工單",planDevelopmentReport:"生產工單報表",productionWorkOrderRemittance:"生產工單匯出",successfullyImported:"匯入成功",productManagement:"產品管理",enterProductPartNumber:"請輸入物料編號",enterProductName:"請輸入物料名稱",productType:"產品類型",addProducts:"新增產品",importExcel:"Excel匯入",excelTemplate:"Excel模板",productTypeManagement:"產品類型管理",deactivated:"停用",spec:"規格型號",unity:"單位",productProperty:"產品屬性",productStatus:"產品狀態",supplierName:"供應商名稱",illustrate:"說明",delProductConfirm:"是否刪除產品",productImportTemplate:"產品匯入模板",selfMadePart:"自製件",purchasePart:"採購件",notHave:"無",pleaseEnter:"請輸入",cannotBeEmpty:"必填項不能為空",cannotExceed20:"長度不能超過20",cannotExceed50:"長度不能超過50",cannotExceed80:"長度不能超過80",cannotExceed100:"長度不能超過100",cannotExceed200:"長度不能超過200",successfullyEdited:"編輯成功",editingFailed:"編輯失敗",addingFailedProductDup:"新增失敗!物料編號重複",editProduct:"編輯產品",endProduct:"成品",semiFinishedProduct:"半成品",rawMaterial:"原材料",cuttingTool:"刀具",mold:"模具",productPropertyError:"產品屬性格式錯誤,可選:自製件、採購件、無",saveSuccess:"保存成功",saveFail:"保存失敗",notExcel:"非Excel文件",emptyExcel:"Excel為空",headerError:"表頭不正確",productTypeList:"產品類型列表",defaultCannotDel:"預設不可刪除",typeName:"類型名稱",dataDuplication:"數據重複",delProductTypeConfirm:"是否刪除產品類型?",productTypeInUse:"產品類型已被使用",delSuccess:"刪除成功",delFail:"刪除失敗",productImportNum:"物料編號格式錯誤",productImportName:"物料名稱格式錯誤",productImportSpec:"規格型號格式錯誤",productImportUnit:"單位格式錯誤",productImportType:"產品類型格式錯誤",productImportPro:"供應商名稱格式錯誤",productImportA:"產品屬性格式錯誤,可選:自製件、採購件、無",productImportD:"說明格式錯誤",importSuccess:"導入成功",importProductFailRes:"以下為導入失敗的產品明細",addProcess:"新增工序",selfControl:"自製",outsource:"外包",delReminder:"刪除提醒",processType:"工序類型",manufacturingType:"製造類型",processingProcess:"加工工序",inspectionProcess:"檢驗工序",assemblyProcess:"組裝工序",transportationProcess:"運輸工序",confirmDeleProcess:"確認刪除工序",thisProcessDele:"該工序已被使用,無法刪除!",deleFailed:"刪除失敗!",processImportTemplate:"工序匯入模板",processCodeNot:"工序代碼不得重複",saveFailed:"保存失敗",requiredItemsNotEmpty:"必填項不能為空",procCodeFormatError:"工序代碼格式錯誤",procNameFormatError:"工序名稱格式錯誤",procTypeFormatError:"工序類型格式错误",manufTypeFormatError:"製造類型格式錯誤",importSuccessful:"導入成功",nonExcelFiles:"非Excel文件",excelEmpty:"Excel為空",inMeterHeader:"表頭不正確",enter:"請輸入",processRouteName:"工藝路線名稱",addProcessRoute:"新增工藝",editProcessRoute:"編輯工藝",isDefaultRoute:"預設路徑",processCount:"工序數量",yes:"是",no:"否",delConfirmPR:"確認刪除工藝路綫",processRouteTemplate:"工藝匯入模板",prNamehaveExit:"同一個產品下,該路徑名稱已存在",productNumCannotNull:"物料編號不能為空",processRouteCannotNull:"工藝路綫名稱不能為空",processRouteW:"工藝路綫名稱格式錯誤",productNumNotExist:"物料編號不存在",processCannotNull:"工序不能為空",processNotExist:"工序不存在",importFailPR:"以下為導入失敗的工藝路綫明細",isDefaultRoutes:"是否為預設路徑",saveFields:"儲存相關欄位",addMoreProcess:"添加工序",clearProcess:"清空工序",addProcessRouteMsg:"工藝的工序信息支援實時保存",choosePlm:"請選擇檔案",processSequence:"工序順序",plmSetting:"檔案設定",sort:"排序",selectProcess:"請選擇工序",dataDup:"資料重複",errorProcessNumName:"工藝路綫名稱或編號不得重複!",delProcessRoute:"刪除路徑工序",onlyEnNum:"只能輸入英文和數字",dataRedundancy:"資料重複",editingProc:"編輯工序",uploads:"檔案上傳",deleFiles:"刪除檔案",fileSize:"檔案大小",uploader:"上傳者",confDeleFile:"確認刪除檔案",drawing:"圖紙",geneSpecif:"通用規範",inspecSpecif:"檢驗規範",toolSpecif:"刀具規範",procProgram:"加工程式",material:"物料",other:"其他",selectProfile:"選擇檔案",uploading:"上傳中",uploadSuccess:"上傳成功",uploadFailed:"上傳失敗",duplicateFile:"檔案重複",uploadStatus:"上傳狀態",procCorrel:"關係關聯",editProcCorrel:"編輯工序關聯",theFollo:"以下為導入失敗的工序明細",ordersFailed:"以下為導入失敗的工單明細",MESManagement:"MES管理",fileManagement:"檔案管理",failedContentExport:"異常失敗內容匯出",materialsPerPage:"每頁質料數",beenUploaded:"當前未上傳數據",contentFirst:"請先清空內容",noHttps:"掃一掃功能僅支持https的域名",numberIsEmpty:"生產工單號為空",workOrderIsEmptyOr0:"工單的需求工件數為空或為0",workOrderIsEmptysOr0:"工序的需求工件數為空或為0",workOrderIsEmpty0:"工單的需求工件數不得小於0",workOrderIsEmptys0:"工序的需求工件數不得小於0",pathIsEmpty:"工藝路綫為空",productnumberIsEmpty:"物料編號為空",processInformation:"工序資訊修改成功",inspect:"第【{index}】行中有失敗項",workOrderNumerical:"工單數值須為整數不得有小數點",processesNumerical:"工序數值須為整數不得有小數點",empty:"清空",zhEnNum:"只可輸入中文、英文、數字",typeIncorrect:"附件類型不正確!支持格式",sizeExceeds10MB:"附件大小超過10MB!",strLengthLimit50:"字串長度不可超過50字元",strLengthLimit15:"字串長度不可超過15字元",formCategory:"表單類別",formName:"表單名稱",formNumber:"表單編號",customFieldQueryFailed:"自定義表單查詢失敗",additionalForms:"附加表單",fillIn:"填寫",fileNoHasEmpty:"必填項文檔不能為空",mustNumber:"請輸入數字",numberOfJobApplications:"報工數量",clickEdit:"點擊修改",aProdNumNotIs0:"添加不良品數不能為0",numIs0IsDel:"數量為0代表删除該條記錄,是否繼續?",timeRulesSSP:"開工時間應小於等於加工開始",timeRulesSEP:"開工時間應小於等於加工結束",timeRulesSAC:"開工時間應小於等於完工時間",timeRulesWS:"加工開始應大於等於開工時間",timeRulesWEP:"加工開始應小於等於加工結束",timeRulesWAC:"加工開始應小於等於完工時間",timeRulesWSP:"加工結束應大於等於加工開始",timeRulesWEAC:"加工結束應小於等於完工時間",timeRulesWES:"加工結束應大於等於開工時間",timeRulesEEP:"完工時間應大於等於加工結束",timeRulesESP:"完工時間應大於等於加工開始",timeRulesES:"完工時間應大於等於開工時間",modifyWorkReportRecords:"報工修改記錄",modifyWorkReportRecord:"报工記錄修改",previousProcesses:"後站工序報工總數 <= 前站工序報工總數",workReportSetting:"手動報工限制設定",restrictionSetting:"報工限制設定",basicSettings:"基礎設定",noEquipment:"暫無可用非聯網設備,請前往【設定】模組下的設備設定頁面中維護一個其他設備",addNoEquipment:"暫無可用非聯網設備,請前往PC端【設定】模組下的設備設定頁面中維護一個其他設備",getDeviceInfoFailed:"獲取設備信息失敗",topPriority:"最優先",priority:"優先",secondary:"次要",leastImportant:"最次要",normal:"正常",importantSort:"重要排序",remind:"當前工單暫無報工記錄,請確認是否完工?",editTime:"修改時間",editPersonnel:"修改人員",editProject:"修改項目",editContent:"修改內容",originalContent:"原始內容",productionTime:"生產用時(時)",assignSaveFailed:"請至少指派一位人員!",startedConstruction:"當前工單已被開工,無需重復開工",completed:"當前工單已完工,不可再次開工",completeds:"當前工單已被完工,無需重復操作",notStarted:"當前工單尚未開工過,無法完工",paused:"當前工單已被暫停,無需重復操作",nonCommencement:"當前工單不是開工狀態,無法暫停",nonProcessing:"當前工單狀態已經不是开工中,不可報工",enterTheCorrectTime:"請輸入正確的時間",formFillingRecord:"表單填寫記錄",filledBy:"填寫人",fillTime:"填寫時間",customizeFormSettings:"自定義表單設定",formSettings:"表單設定",associatedSuccess:"關聯成功",selectPartNumber:"請選擇物料編號",PLM_DRAWING_IMG:"圖紙",PLM_STANDARD_RULE:"通用規範",PLM_QUALITY_CONTROL_RULE:"檢驗規範",PLM_CUTTING_TOOLS_RULE:"刀具規範",PLM_NC_PROGRAM:"加工程式",PLM_PART_DATA:"物料",PLM_OTHERS:"其他",downloadFile:"下載檔案",currentAssignedPersonnel:"當前指派人員",hasBeenAssigned:"已被指派",workRequiredThroughput:"需求工件數",reportFailForCount:"報工失敗,報工數量不可為0",view:"查看",negatives:"數值不得為負數",requireds:"欄位名稱含有(*)為必填欄位,請按照規範完整填寫",processDeployment:"工序展開",dateRange:"選擇日期不可超出三個月範圍",dateRanges:"選擇日期不可超出一個月範圍",fileDownload:"檔案下載",productSpec:"規格型號",reportForms:"不良統計報表匯出",reportingForWork:"報工",statisticalDimension:"統計維度",productSpecifications:"規格型號",disassemble:"無法拆解",reviewStatus:"審核狀態",reviewer:"審核人",reviewTimeRange:"審核時間區間",reviewTime:"審核時間",approved:"審核通過",recordRemark:"報工備註",audited:"已審核",unaudited:"未審核",pendingReviewRecords:"待審核記錄",reviewNotice:"【注意】此處針對全域設定,開啟審核後,所有報工記錄均需要審核才能生效!",openReview:"開啟審核",closeReview:"關閉審核",reportProcessSetting:"工單報工審核設定",reportReview:"報工審核",closeReviewNote:"若關閉審核,則所有的報工記錄將默認審核通過,是否確認關閉?",passReview:"審核通過",cancelReview:"取消審核",actualRecordEmp:"實際報工人員",reviewSuccess:"審核成功",rejectRate:"不良品率",poorProportion:"不良品占比",proportion:"占比",negativeStatistics:"不良統計",getReviewStatusFail:"獲取審核狀態失敗",customerForm:"自定義表單",previewFile:"檔案預覽",actualRepWorkEmp:"實際報工人員",dragToSort:"拖拽排序",confirmCompletion:"是否確認完工?",currentCompletion:"當前工序尚未達到需求工件數,是否強制完工?",compulsoryCompletion:"強制完工",currConfirmCompletion:"當前存在未審核的報工記錄,是否確認完工?",afterThisReport:"本次報工後,當前工序的報工數量將超過需求工件數,是否確認報工?",currentIs0:"當前已報工數量為0,是否確定完工?",batchPrint:"批量打印",selectPrintTemplate:"選擇打印模板",orderQrcode:"工單二維碼",productionWorkOrder:"工單流轉卡",batchSize:"批次數量",processList:"工序列表",exportOrderPreview:"工單匯出預覽",pleaseSelectOrder:"請先選擇需要打印的工單",processQRCode:"工序二維碼",getSubOrderInfoFail:"取得子工单资讯失败",getOrderSerialNumberInfoFail:"取得特定工单序号管理资料失败",getOrderAllSerialNumberFail:"取得工单所有序号失败",processOrderNum:"工序子工單號",withoutSpacingRules:"不可有空白字元",countFrontRearProcessControlInfo:"後站工序報工總數<=前站工序報工總數",countKeyProcessControlInfo:"開啟關鍵工序卡控,關鍵工序的前站所有工序報工數不做任何限制;關鍵工序後站報工總數不能大於關鍵工序報工總數",statusFrontRearProcessControlInfo:"前站工序狀態完工,後道工序才能開工",statusKeyProcessControlInfo:"開啟關鍵工序卡控,關鍵工序的前站所有工序報工數不做任何限制;關鍵工序不完工,關鍵工序的後站所有工序無法開工",countControl:"工序報工數量卡控",statusControl:"工序開工狀態卡控",frontRearControl:"前後站工序卡控",keyProcessControl:"關鍵工序卡控",reportFailed:"報工失敗!",WorkReportOne:"已開啟前後站工序數量卡控,後站工序報工總數不可超過前站!",WorkReportTwo:"已開啟關鍵工序的數量卡控,關鍵工序後站報工總數不能超過關鍵工序!",startFailed:"開工失敗!",StartOne:"已開啟前後站工序狀態卡控,前道工序狀態完工,後道工序才能開工!",StartTwo:"已開啟關鍵工序狀態卡控,關鍵工序完工,後站工序才能開工!",criticalProcess:"關鍵工序",criticalProcessError:"關鍵工序輸入不符合要求,請輸入'是'或'否'",keyProcesses:"關鍵工序",columnSetting:"欄配置",returnToDefault:"恢復預設",productionOrderLevel:"工單層級",processOrderLevel:"工序層級",columnLimit18:"顯示欄位不得超過18個欄位",columnLimit7:"顯示欄位不得超過7個欄位",setSuccessfully:"設定成功",columnLimit2:"工單層級顯示欄位不得少於2個欄位",orderDispatchToReporting:"工單下派至現場工單報工",orderSharing:"訂單分享",sharedSelectOrder:"請先勾選要進行分享的訂單!",errorDifferentOrders:"當前勾選工單屬於不同訂單,請勾選相同訂單下的工單分享!",orderSharingQR:"訂單追蹤二維碼",download:"下載",orderProgress:"訂單進度",orderTracking:"訂單追蹤",no250Characters:"不可超過250個字符",processNotes:"工藝備註",lastUpTime:"最後更新時間",processRemark:"工藝備註",departmentPersonnel:"部門",deactivateds:"已停用",plannedCompleteDate:"計劃完工日",planExpectedDate:"預計時間",turnOffScanning:"關閉掃碼",deviceGroup:"設備群組",device:"設備/工位",stopUse:"已停用",noGroup:"無機群",salaryFailed:"工資計算失敗",openRepporting:"若開啟不開工直接報工設定,則手動報工限制設定將會失效,是否確認開啟?",reportDirectly:"不開工直接報工設定",open:"開啟",close:"關閉",reportNotice:"【注意】此處針對MES全局設定!",processOrderStatus:"工序子工單狀態",reportTimeInterval:"報工時間區間",completeTimeInterval:"完工時間區間",showMyOrder:"僅顯示[我的工單]",showMyRecords:"僅顯示[我的記錄]",cycleEndTimeInterval:"加工結束時間區間",yearRange:"最大篩選時間區間不可超過1年",reviewWarning:"可能有其他用戶正在審核,請刷新後操作",agentReportingFunction:"代報工功能",workOrderCustomSetting:"工單自定義設定",workReportCustomSetting:"報工自定義設定",addCustomField:"新增自定義字段",editCustomField:"編輯自定義字段",showDisabledField:"展示停用字段",customSettingNotice:"最多可支持添加80個(不包含停用)",batchAction:"批量操作",cancelBatchAction:"取消批量操作",batchEnable:"批量啟用",batchDisabled:"批量停用",dragSort:"拖拽排序",fieldName:"字段名稱",fieldType:"字段類型",itemIndex:"項次",fieldProperty:"字段屬性",regardText:"引導文字",regardTextPlaceholder:"請輸入欄位填寫時的引導文字",textType:"文本",numberType:"數字",dateType:"日期",copy:"複製",copyAddProcessPath:"複製新增工藝路綫",presetPathModified:"若產品預設路徑已存在則不可修改"," processUnderPath":"一個路徑底下一定要有一個工序",workOrderImportTemplate:"工單匯入模板",workOrderProcessImportTemplate:"工單及工序匯入模板",fillingOutExcelTemplates:"Excel模板填寫說明:",customersSameOrderDate:"1.相同訂單的客戶名稱與訂單預交日需要相同,若相同訂單號的工單的客戶名稱與訂單預交日不同,則默認以第一個工單的相關數據覆蓋",workOrderEnteredGenerated:"1.生產工單號不可重復,若不輸入,則匯入後自動生成",importantSorting:"2.重要排序輸入數字(0-4),數字越大,優先級越高,若不填寫。則匯入後系統自動帶入2(表示正常)",processPathName:"3.工藝路綫欄位輸入對應的工藝路綫名稱",processPathFieldNumber:"5.工序欄位填寫內容是工序順序(數字),需要是工藝路綫中已維護的工序",executorsJobNumbers:"6.工序的預計執行人員(工號)若有多個,則用英文逗號隔開",severalProcessesFewLines:"7.每個工單,工藝路綫中有幾個工序,數據就有幾行",fillingInstructions:"填寫說明",selectImportTemplate:"選擇匯入模板",onlyImportWork:"僅匯入工單",workOrdersProcessDetails:"匯入工單及工序明細",planWorkOrderImportTemplate:"生產工單工單匯入模板",planWorkOrderProcessImportTemplate:"生產工單工單及工序匯入模板",importantSortIsEmpty:"重要排序為空",fileTypeErrorAndUploadXlsx:"匯入檔案類型須為(.xlsx)檔",repeatedOperations:"相同生產工單號的工序重複",containsFailed:"含有未通過校驗,請檢查",customizationProcessPath:"工藝路綫自定義",jumpToThe:"跳轉至第",page:"頁",addWorkOrder:"新增工單",editWorkOrder:"編輯工單",buildWorkOrder:"工單建立",baseField:"基本欄位",selectCustomField:"請選擇自定義字段",processedGoodProductsNum:"良品數",processedDefectiveProductsNum:"不良品數",deviceWorkNum:"設備生產數量",basicWorkReportFieldFilling:"基本報工欄位填寫",customWorkReportFieldFilling:"自定義報工欄位填寫",customFormFilling:"自定義表單填寫",basicFieldModification:"基本欄位修改",customFieldModification:"自定義欄位修改",customFieldReocrd:"報工自定義記錄",customFieldName:"自定義欄位名稱",customFieldValue:"自定義欄位記錄",insufficientAvailableInventoryTip:"工單【{arr}】可用庫存不足,請確認是否需要執行派送工單",reportNumSetting:"生產數量自動帶入設定",autoCompleteSetting:"工序自動完工功能設定",defaultShow:"默認顯示",defaultShowThroughput:"默認顯示需求工件數",cantOpenReview:"自動完工功能打開時,無法開啟審核功能!",cantOpenAutoComplete:"審核功能打開時,無法開啟自動完工功能!",dataCollection:"數據采集",getDataRequired:"開始時間、結束時間以及設備欄位需必填!",onlyNetEquip:"數據采集只可采集聯網設備數據!",outserviceDevice:"機台停用,不可派送",eightDigits:"數值不得超過八位數",pathProcesslimitation:"工藝路綫下工序數量不可超過200",auditFail:"已開啟手動報工限制設定,無法關閉審核",consumptionAmount:"耗用量",procurementNotProgress:"採購未進",stockModel:"庫存模式",finishedProductMarket:"成品超市",patchInventory:"尾數庫存",bsInventory:"BS庫存",adjustedInventory:"調節庫存",batchRollingInventory:"批量滾動庫存",batchInventory:"批量庫存",rollingInventory:"滾動庫存",mrpSetting:"MRP設定",replenishment:"回補數量",turnoverDays:"週期天數",adjustMagnification:"調整倍率",minimumOrderQuantity:"批量倍數生產(MOQ)",minimumPackQuantity:"最小批量生產(MPQ)",reorderPoint:"再訂購點",safetyStock:"安全庫存",inventoryReplenishmentAmount:"庫存回補量",deliveryDay:"交期",valueNotBeNegativeAndZero:"數值不得為零或負數",day:"天",valueNotBeFloat:"數值須為整數不得有小數點",productData:"物料主數據",valueNotBeNegative:"數值不得為負數",MRPSettingRequired:"已選擇庫存模式,MRP設定相關內容為必填",hour:"時",minute:"分",second:"秒",workTimeUnit:"工時單位",technologicalRequirements:"工藝要求",intMoreThan8:"整數位不能超過8位",floatMoreThan3:"小數位不能超過3位",wrongImportTimeUnit:"工時單位匯入格式錯誤",standardTimeMustPositive:"標準工時需為正數",workOrderRequirementsNumber:"工單需求數",processRequirementsNumber:"工序需求數",productionReport:"生產報工",processRequires:"工序需求數",expectedProcessingEquipment:"預計加工設備",change:"調機換線",changeItem:"調機項目",changeMark:"調機說明",startAdjustMachine:"開始調機",changeStatusSuccess:"調機成功!",changeStatusFail:"切換調機中狀態失敗!",changeError:"當前工位子工單尚未設定工位",SystemError_api:"系統錯誤",adjustmentEquip:"調機設備",resourceAssign:"資源指派",personnelAssign:"人員指派",deviceAssign:"設備指派",currentAssignedDevice:"當前指派設備",selectGroup:"選擇群組",selectDevice:"選擇設備",manufactureSettings:"制造執行設定",reportWorkQRcode:"產生二維碼",personnelWorkLog:"人員上下機",settingPage:"設定頁面",settingItem:"設定項目",reset:"重置",generateQrcode:"產生QRCODE",downloadQrcode:"下載QRCODE",settingQrcodeSize:"設定尺寸",settingQrcodeFirst:"請先設定QRCODE",qrcode:"QRCODE",copyQrcodeURL:"複製QRCODE網址",sizeLimit:"尺寸須為0至450",workProject:"工作項目",adjustmentProject:"調機項目",adjustmentPersonnel:"調機人員",adjustmentTimeInterval:"調機時間區間",adjustmentWaringOne:"當前設備正在工序",adjustmentWaringTwo:"調機,繼續操作會結束上次的調機任務,是否繼續?",adjustmentStartTime:"調機開始時間",adjustmentEndTime:"調機結束時間",adjustmentDuration:"調機時長(時)",production:"生產",prodWorkOrder:"生產工單",speedOfProgress:"進度",defectiveRate:"不良率",actualStartDate:"實際開工時間",actualCompletionDate:"實際完工時間",selectEquip:"選擇設備",selectedItems:"已選擇【{num}】項",productFile:"產品檔案",creator:"創建人",updatePerson:"更新人",updateTime:"更新時間",templatename:"工藝模板名稱",templatenameSave:"工藝模板的工序信息支持實時保存",abnormalProcess:"當前選擇的工序有異常",templatenameRepeat:"工藝模板名稱重復",newTemplate:"新增工藝模板",editTemplate:"編輯工藝模板",selected:"已選擇",term:"項",templatEmpty:"工藝模板名稱不能為空",templatError:"工藝模板名稱格式錯誤",importProcessTemplate:"導入工藝模板",processTemplate:"工藝模板",columnConfigurationFail:"列配置信息查詢失敗",administration:"管理",keepOne:"一個模板下必須有一個工序",fileMassDelete:"批量删除",dataError:"資料錯誤",fileNotSelected:"請選擇欲刪除的檔案",addCustomColumn:"新增自定義欄位",showDisableColumn:"顯示停用欄位與排序設定",upOrder:"向上排序",downOrder:"向下排序",reuse:"重啟",orderFail:"排序失敗",stopCustomRemind:"確認停用欄位",itemOrder:"項目順序",customAttributeName:"自定義欄位名稱",displayType:"欄位類型",optionsNumber:"選單列表數量",customColClass:"工藝階層",customSelectCol:"自定義下拉選項",textField:"手輸",selectField:"下拉選項",hyperLink:"超鏈接",editCustomColumn:"編輯自定義欄位",dropOptionSetting:"下拉選項設定",dropOptionIsRequired:"下拉選項不得為空",someColumnRequired:"請完成必填欄位",customLimit:"對應階級只能添加{number}個自定義屬性",colNoSpecialCharacters:"欄位不可存在特殊字元",addCustomColumnOption:"新增自訂選項",saveBasicCol:"儲存基本欄位",confirmToDeleteOption:"若有資料於此自訂欄位選擇此選項,系統將不為其保留,您是否確認刪除此選項?",machineGroup:"機群",productRouteVersion:"產品路徑版本",fileTypeName:"檔案類型名稱",defaultFileTypeNoEditAndDelete:"預設資料不可更動",getFileTypeFail:"取得檔案類別失敗",fileTypeIsUsedCannotDelete:"檔案類型已被使用不可刪除",machineAdjustmentProject:"調機項目",addMAjroject:"新增調機項目",modifyMAjroject:"修改調機項目",machineAdjustmentInstructions:"調機說明",writeBackWorkPiecesNum:"報工件數回寫",confirmToDelete:"您確定刪除此筆資料?",strLengthLimit200:"字串長度不可超過200字元",duplicateMAjroject:"調機項目名重復",fileArchiveManagement:"文件檔案管理",documentCustomField:"單據自定義字段",materialCustomization:"物料自定義",processCustomization:"工序自定義",customizationOfProcessRoute:"工藝路線自定義",customFileType:"文件類型自定義",workOrderCustomization:"工單自定義",customizedJobReporting:"報工自定義",customizedReasonsForDefects:"不良原因自定義",customTuning:"調機自定義",templateIssue:"模板有問題",inspectedQuantity:"請檢查表頭字段數量",inspectionContent:"請檢查表頭字段順序或內容",pathProcessOrderLimitation:"工單下添加工序數量不可超過200",to:"至",starttime:"開始時間",endtime:"結束時間",productNumber:"物料編號",materialSpec:"規格型號",expectedStartDate:"預計開工時間",expectedDueDate:"預計完工時間",materialUnit:"單位",materialType:"產品類型",materialProperty:"產品屬性",materialState:"產品狀態",processOrderSn:"工序子工單號碼",batchNumber:"批次號",productionOrderRequiredThroughput:"工單需求數",productionOrderExpectedStartDate:"預計開工時間",productionOrderExpectedDueDate:"預計完工時間",productionOrderPriority:"重要排序",createBySelf:"自製件",purchasedParts:"採購件",none:"無",finishedMaterial:"成品",semiFinishedMaterial:"半成品",moldTool:"模具",partCountRequired:"工序需求數",productionFileName:"加工程式",orderNumberIsNullOrEmpty:"訂單編號必須是必填",orderNumberLengthExceeded:"訂單編號長度不能超過50個字元",orderCustomerNameLengthExceeded:"客戶名稱長度不能超過50個字元",orderExpectedDueIsNotDate:"訂單預交日必須是日期格式",orderCustomerNameInconsistent:"同樣訂單編號,客戶名稱必須一致",orderExpectedDueInconsistent:"同樣訂單編號,訂單預交日必須一致",productionOrderNumberIsNullOrEmpty:"生產工單號必須是必填",productionOrderNumberLengthExceeded:"生產工單號長度不能超過30個字元",productionOrderNumberIsExist:"生產工單號已經存在於系統內",partNumberIsNullOrEmpty:"料號必須是必填",partNumberNotExist:"料號必須存在於系統內",productionOrderRequiredThroughputIsNullOrEmpty:"工單需求工件數必須是必填",productionOrderRequiredThroughputIsNotNumber:"工單需求工件數必須是數值",productionOrderRequiredThroughputIsNotGreaterThanZero:"工單需求工件數必須大於0",productionOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"工單需求工件數不能大於 int.MaxValue",productionOrderExpectedStartDateIsNotDate:"工單預計開工時間必須是日期格式",productionOrderExpectedDueDateIsNotDate:"工單預計完工時間必須是日期格式",productRouteNameIsNullOrEmpty:"工藝路綫名稱必須是必填",productRouteNameNotExist:"工藝路綫名稱必須存在於系統內",productionOrderPriorityIsNotCorrectType:"工單重要排序格式錯誤",productionOrderPartNumberInconsistent:"同樣生產工單號,料號必須一致",productionOrderRequiredThroughputInconsistent:"同樣生產工單號,工單需求工件數必須一致",productionOrderExpectedStartDateInconsistent:"同樣生產工單號,預計開工時間必須一致",productionOrderExpectedDueDateInconsistent:"同樣生產工單號,預計完工時間必須一致",productionOrderProductRouteNameInconsistent:"同樣生產工單號,工藝路綫名稱必須一致",productionOrderPriorityInconsistent:"同樣生產工單號,工單重要排序必須一致",productionOrderOrderInconsistent:"同樣生產工單號,訂單編號必須一致",productionOrderNumberDuplicate:"重複的生產工單號",productionOrderBatchNumberIsExist:"工單批次號已經存在系統內",partNumberStatusIsDisable:"料號狀態是停用",productionOrderCustomFieldValueLengthError:"工單自訂欄位值長度錯誤",processOrderCustomFieldValueLengthError:"工序子工單自訂欄位值長度錯誤",workOrderCustomFieldValueLengthError:"工位子工單自訂欄位值長度錯誤",productionOrderNotFindCustomOption:"工單自訂屬性中找不到選項",productionOrderDateFormatError:"工單自訂屬性日期格式錯誤",productionOrderCustomFieldInconsistent:"同樣生產工單號,自訂欄位必須一致",productionProcessIsNullOrEmpty:"工序子工單工序順序必須是必填",productionProcessIsNotNumber:"工序子工單工序順序必須是數值",productionProcessNotExist:"工序子工單工序順序不存在於系統內",processOrderRequiredThroughputIsNullOrEmpty:"工序子工單需求工件數必須是必填",processOrderRequiredThroughputIsNotNumber:"工序子工單需求工件數必須是數值",processOrderRequiredThroughputIsNotGreaterThanZero:"工序子工單需求工件數必須大於0",processOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"工序子工單需求工件數不能大於 int.MaxValue",processOrderExpectedStartDateIsNotDate:"工序子工單預計開工時間必須是日期格式",processOrderExpectedDueDateIsNotDate:"工序子工單預計完工時間必須是日期格式",processOrderPriorityIsNotCorrectType:"工序子工單重要排序格式錯誤",processOrderRequiredThroughputInconsistent:"同樣工序子工單,工序子工單需求工件數必須一致",processOrderExpectedStartDateInconsistent:"同樣工序子工單,預計開工時間必須一致",processOrderExpectedDueDateInconsistent:"同樣工序子工單,預計完工時間必須一致",processOrderPriorityInconsistent:"同樣工序子工單,工序子工單重要排序必須一致",processOrderNotFindCustomOption:"工序子工單自訂屬性中找不到選項",processOrderDateFormatError:"工序子工單自訂屬性日期格式錯誤",processOrderCustomFieldInconsistent:"同樣工序子工單,自訂欄位必須一致",workOrderEquipGroupNameNotExist:"工位子工單機群欄位必須存在於系統內",workOrderEquipNameNotExist:"工位子工單設備欄位必須存在於系統內",workOrderShiftNameNotExist:"工位子工單班制名稱必須存在於系統內",workOrderEmpNumberNotExist:"工位子工單工號欄位必須存在於系統內",workOrderRequiredThroughputIsNotNumber:"工位子工單需求工數必須是數值",workOrderRequiredThroughputIsNotGreaterThanZero:"工位子工單需求工數必須大於 0",workOrderRequiredThroughputIsNotGreaterThanIntMaxValue:"工位子工單需求工數不能大於 int.MaxValue",workOrderExpectedStartDateIsNotDate:"工位子工單預計開工時間必須是日期格式",workOrderExpectedDueDateIsNotDate:"工位子工單預計完工時間必須是日期格式",workOrderRequiredThroughputKeyIsNullOrEmpty:"工位子工單需求工件數Key沒填",workOrderBatchNumberIsNotBelongToProductionOrder:"工位子工單的批次號不屬於工單",workOrderNotFindCustomOption:"工位子工單自訂屬性中找不到選項",workOrderDateFormatError:"工位子工單自訂屬性日期格式錯誤",onlyOrderProductionOrderDataLegal:"只有訂單跟工單資料合法",productionOrderOtherRowDataError:"同工單下,有其他列資料錯誤",notFindCustomFieldId:"找不到自訂欄位id",salespersonMustExistWithinTheSystem:"該業務員不存在或已被停用",theLengthEmployeeNumberExceed20:"業務員工號長度不能超過20個字元",theLengthSourceOrderNumberExceed50Characters:"工單源單單號長度不能超過50個字元",theFormatError:"工單源單單號格式錯誤",theLengthProductionNumberExceed50Characters:"工單生產編號長度不能超過50個字元",workOrderProductionNumberFormatError:"工單生產編號格式錯誤",duplicateWorkOrderProductionNumber:"重複的工單生產編號",theProductionNumberAlreadyExistsInTheSystem:"工單生產編號已經存在系統內",orderSalesmanIsDisable:"該業務員不存在或已被停用",sameOrderNumberSalespersonConsistent:"同樣訂單編號,業務員必須一致",deviceName:"設備名稱",itemsPerPage:"每頁資料數",dispatch:"派工",loading:"載入中",consDate:"創建時間",machineName:"設備名稱",serialNumber:"設備序號",planMaking:"計劃制定",planProgress:"計劃進度",standardTotalTime:"預期總工時",standardTimeSecondPerItem:"標準工時(秒/件)",exportSyntecOrder:"匯出新代工單",exportExcel:"匯出Excel",someColumnIsRequired:"欄位名稱含有(*)為必填欄位,請完整填寫",partCount:"實際/需求工件數",actualProgress:"實際進度",expectedProgress:"預期進度",excelCustomize:"Excel自定義",tableHeaderCustomize:"表頭自定義",chooseTimeRange:"請選擇期間範圍",groupName:"群組名稱",progressStatus:"進度狀態",sortBy:"排序依據",orderStatus:"工單狀態",hide:"隱藏",cloudImport:"雲匯入",orderSchedulePreview:"工單排程預覽",deviceSchedulePreview:"設備排程預覽",productionOrderNumDetail:"工單內容",actualThroughput:"實際工件數",abnormal:"異常",order:"工單",subOrder:"子工單",saveOrder:"儲存工單層級",dataSaveSuccess:"資料儲存成功",warning:"提醒",serialNumberRuleSetting:"序號規則設定",snBatchSetting:"批次/序號規則",serialNumberPreview:"序號預覽",prefixWord:"前綴字",middleWord:"中繼字",sequenceNumberCount:"流水號位數",nowDate:"日期",noSelect:"無",partNumBefore:"前",partNumAfter:"後",partNumCount:"碼",year:"年",month:"月",yearMonth:"年月",yearMonthDay:"年月日",numberLimitTen:"位數不得超過十碼",numberLimitFifty:"總位數不得超過五十碼, 目前:",numberLimitPositive:"位數必須大於0碼",shiftName:"班別",submitSuccess:"提交成功",deleteSuccess:"刪除成功",numberNotInteger:"位數只能為整數",workOrderReport:"工單報工",status:"狀態",inUseStatus:"使用狀態",stop:"已停用",batchStop:"批量停用",editAndStop:"編輯與停用",serialNumBinding:"序號綁定",showBindProductionOrder:"顯示已綁定工單",serialNumGeneration:"序號生成",productionOrderCount:"工單數量",bindedNumber:"已綁定數量",addSerialNum:"新增序號",batchSerialNum:"批量新增序號",autoGenCount:"自動生成數量",autoGen:"自動生成",binded:"綁定",bindedSerialNumberTable:"綁定序號列表",deleteDuplicated:"清除重複序號",serialNumExample:"序號綁定模板",serialNum:"序號",colNum:"列數",reason:"原因",importFailInfo:"匯入失敗資訊",check:"檢查",importProductionOrderQuantity:"匯入工單數量",importSerialNumCount:"匯入序號數量",importInfoCorrect:"匯入資料正確",importSuccessSerialNumCount:"成功匯入序號數量",enterCorrectQuantity:"請輸入正確的數量",numLessRequired:"綁定數量少於需求工件數",serialNumExcel:"工單序號綁定報表",serialDuplicated:"序號重複",serialDuplicatedCount:"綁定序號重複數量:",manualAddNum:"手動新增序號",unbindedNotEnough:"未綁定序號不足,無法綁定",bindedDate:"綁定時間",machineAndStation:"機台/工位",importantOrder:"重要排序",result:"結果",importSerial:"匯入",availableCount:"可綁定數量",notAddNewSerial:"操作錯誤,尚未新增序號",serialNumUnbinding:"序號解綁",reportStatus:"報工狀態",sequenceNumber:"項次",unbinded:"解綁",allUnbinded:"全部解綁",isReportWork:"已報工",notReportWork:"未報工",confirmUnbindAll:"確定是否要解綁搜尋到的所有序號?",includeIsReportWork:"解綁序號包含已報工序號,請確認是否仍要解綁",exportSerialNumber:"匯出序號",snExportPreview:"序號匯出預覽",snExportSetting:"序號匯出設定",snPrintSize:"序號列印大小",centimeter:"公分",orderSerialNumber:"工單序號",pageSizeLimit:"QRCode大小設定限制為0.5公分到15公分",defaultPrintSize:"QRcode預設列印大小",noSerialNumberData:"尚無序號資料",importTime:"進站時間",exportTime:"出站時間",processingType:"加工類型",batch:"批量",currentSN:"當前序號",processSetting:"工藝設定",returnDispatch:"退回派工",week:"週",expectedTuningTime:"預計調機時長",productionOrderSort:"工單排序",productionOrderSortSetting:"工單排序設定",singlePieceCycle:"單件週期(秒)",scheduleSetting:"排程設定",scheduleMethodSetting:"排程方式設定",NStationSetting:"節拍點設定",defaultScheduleMethod:"預設排程方式",basicDaySetting:"基礎日設定",defaultStart:"預設啟動",startStationComputing:"起始站運算",NStationCalculation:"節拍點運算",completionStationComputing:"完工站運算",plus:"加",minus:"減",NStation:"節拍點",firstStationTime:"起始站開工時間",NStationTime:"節拍點開工時間",endStationTime:"完工站完工時間",processOrder:"工序子工單",expectedImplementStaff:"預計執行人員",transferTime:"移轉時間",productionProcessTransferCount:"最小移轉件數",showNoProcessOrderExpectedStartDate:"顯示無開工日工序",pageShowSetting:"頁面顯示設定",processOrderExpectedStartDate:"預計開工時間(工序子工單)",processOrderExpectedDueDate:"計劃完工日(工序子工單)",processOrderRequiredThroughput:"需求工件數(工序子工單)",equipGroupName:"群組名稱",equipName:"機台/工位",processOrderPriority:"重要排序(工序子工單)",routeID:"路徑工序ID",snBindedOther:"該序號已綁定其他工單,是否仍確定綁定",numberLimitTwenty:"位數不得超過二十碼",adjustMachine:"調機中",statusError:"異常處理中",serialNumRule:"序號規則",customParameter:"自定義參數",ruleName:"序號規則名稱",showDisable:"顯示停用",digits:"流水號位數",ruleState:"規則狀態",defaultRule:"預設規則",snRange:"序號區間設定",paramName:"參數名稱",selectCount:"選項數量",latestModiDate:"上次更新時間",selectName:"選項名稱",displayString:"顯示字串",default:"預設",param:"選項",snNameExist:"該序號參數名稱已存在",optionExist:"該選項名稱或序號顯示字串已存在",deleteOptionWarn:"是否確定移除該選項?",needParamName:"請選擇序號參數名稱",needFullRange:"請填寫正確序號區間",deleteCustomParamWarn:"是否確定移除該自定義變數",paramIsUsed:"該序號參數正在被使用,刪除前請先移除規則中選用該參數的中繼字",prodOrderBind:"工單綁定",partNumBind:"料號綁定",snParam:"序號參數",bindedRecord:"綁定記錄",serialRuleInfo:"序號規則資料",bindedEmp:"綁定人員",bindedTime:"綁定時間",snStart:"序號開頭",snEnd:"序號結尾",count:"數量",modiSnBinding:"變更序號綁定",batchAdd:"批量加入",pnReplacement:"料號替換",snAddStart:"序號開始",snAddEnd:"序號結束",snWasBinded:"序號已綁定其他料號",snExcelLimitOnePn:"Excel匯入限定一筆料號",pnNotUseProdNum:"料號綁定無法使用包含生產工單號的中繼字,請確認序號規則",generatedCount:"已生成【 {count} 】筆序號",selectPnWarn:"請選擇物料編號",needGenFirst:"請先生成此筆【 {partSerialNumber} 】序號",serialNumberQuery:"序號查詢",snNameAlreadyExist:"該序號名稱已存在",materialName:"物料名稱",getDetail:"詳細資訊",networkError:"網路或主機異常",mutiSelect:"複選",level:"階層",columnName:"欄位名稱",workOrderLevel:"工位層級",makeType:"製造類型",rebatchSplitting:"重新拆批",saveBatch:"儲存變更",partNumberHasNoRuleSetting:"該料號未設置批次號規則",batchNumberRule:"批次號規則",batchRuleName:"批次號規則名稱",batchNumberRuleSetting:"批次號規則設定",batchNumberPreview:"批次號預覽",batchCount:"工單拆批數量",batchCountLimit:"工單拆批數量需大於0",batchNameAlreadyExist:"該批次號規則名稱已存在",illegalEmpty:"不可為空",exportData:"資料匯出",group:"群組",getProductRouteListError:"取得產品路徑清單錯誤",use:"啟用",productRouteName:"工藝路徑名稱",processInfo:"工序資訊",showMore:"顯示更多",customCol:"自訂義欄位",finishProduct:"成品",semiFinishProduct:"半成品",knives:"刀具",item:"項目",batchQrcode:"批次二維碼",operationEmp:"操作人",operationTime:"操作時間",conditionName:"條件名稱",defaultValue:"預設值",workOrderEquipment:"設備群組/機台工位",processOrderProgressStatus:"進度狀態(工序子工單)",past:"過去",future:"未來",current:"當前",timeLine:"時間軸",timeUnit:"時間單位",customColSetting:"自定義欄位設定",orderLevel:"工單階層",string:"手輸",singleSelect:"下拉選項",date:"日期",yearMonthDate:"年-月-日",productionOrderStatus:"工單狀態",productionOrderStatusList:"工單狀態",processOrderStatusList:"進度狀態",inProgress:"執行中",craftPathName:"工藝路徑",productionProcessName:"工序名稱",productionProcessNumber:"工序代碼",sourceType:"雲匯入",sourceTypeList:"雲匯入",processOrderLastModify:"工序子工單更新時間",processOrderRemark:"備註",goodAndDefectiveCount:"良品/不良品總數",getDataError:"資料取得錯誤",getCustomColFail:"取自訂欄位失敗",workOrderExpectedStartDate:"預計開工時間(工位子工單)",workOrderExpectedEndDate:"計畫完工日(工位子工單)",workOrderProgressStatus:"進度狀態(工位子工單)",productionOrderConsDate:"建立日期(工單)",serialNumberCount:"已綁訂數量",isCriticalProcess:"關鍵工序",empName:"人員",excelImportLimit1000Rows:"匯入資料數量不得超過1000筆",productionOrder:"生產工單",productionManagementSetting:"生產管理設定",sequenceNumberHierarchy:"序列號階層圖",serialNumberHistory:"序號歷史記錄",alter:"變更",jobDescription:"工作內容",bindWorkOrders:"綁定工單",unbindWorkOrders:"解綁工單",bindingPartNumber:"綁定料號",unbindingMaterialNumber:"解綁料號",changeBindingMaterialNumber:"綁定料號",numberManagement:"序號管理",batchCountLimitInteger:"工單拆批數量需為整數",allRecordsNum:"共 {total} 條記錄",selectedRecordsNum:"已選 {selectedNum} 條",currentCount:"本頁 {currentSize} 條記錄",dragFileHereOr:"將文件拖到此處,或",clickToUpload:"點擊上傳",pleaseEnterQualifiedHyperlink:"請輸入合格的超鏈接",pleaseCheckUploaded:"請檢查帶*附件表單項是否未上傳附件",numberUploadsCannotExceed5:"上傳數量不能超過5個",uploadFileSize20MB:"上傳文件大小必須小於20MB!",downloadSuccessful:"下載成功",dateRangeArea:"日期區間",annex:"附件",radioButton:"單選框",checkBoxButton:"復選框",customFieldIDIsIllegal:"自定義欄位id非法",illegalDocumentType:"單據類型非法",customFieldsAreRequired:"自定義欄位必填",customTextCannotExceed50Characters:"自定義文本填寫不能超過50字符",customNumbersExceed15Characters:"自定義數字填寫不能超過15字符",customHyperlinkFillingIsIllegal:"自定義超鏈接填寫非法",customSingleChoiceFillingIsIllegal:"自定義單選填寫非法",customMultipleChoiceFillingIsIllegal:"自定義多選填寫非法",illegalCustomTimeFilling:"自定義時間填寫非法",illegalFillingCustomTimeInterval:"自定義時間區間填寫非法",customNumberFillingIsIllegal:"自定義數字填寫非法",ProductionOrderExpectedStartDateLatterThanDueDate:"預計完工時間(工單)>=預計開工時間(工單)",alreadyOverdue:"已逾期",materialCategory:"物料類別",materialProperties:"物料屬性",materialStatus:"物料狀態",mainSupplierName:"主供應商名稱",duplicateColumnData:"此欄位數據已錄入,請選擇其他欄位",progressCheck:"進度查看",maxSupportedSimultaneousEdits:"最多支持同時編輯20個工單!",unableToEditClosedTickets:"包含“已關閉”狀態的工單,無法進行多工單編輯",supportReopenClosedTickets:"僅已關閉狀態的工單支持反關閉",undistributedOrder:"僅“未派工”狀態的工單支持派送",unstartedOrderSupportsReturn:"僅“未開工”狀態的工單支持退回",pleaseSelectWorkOrder:"請先選擇工單",retreatSuccess:"退回成功",currentTicketClosed:"當前工單已關閉",closedTicketConfirmation:"已關閉的工單將無法進行任何操作,是否確認關閉?",closeSuccess:"關閉成功",antiCloseSuccess:"反關閉成功",importExcelData:"Excel導入",multiTaskEdit:"多工單編輯",batchUpdate:"批量更新",deliveryOrder:"派送工單",returnWorkOrder:"退回工單",antiClose:"反關閉",newMaterial:"新增物料",deleteMaterial:"刪除物料",workOrderList:"工單列表",workOrderCustomRequiredFields:"請檢查工單自定義必填項",workOrderInfoSavedSuccessfully:"工單信息保存成功",workOrderInfoSaveFailed:"工單信息保存失敗",isConfirmCancel:"請確認是否取消?",ticketCorrespondingInfo:"請檢查工單{workOrderNumber}對應的信息",attachmentUpload:"附件上傳",workOrderNumbers:"工單號碼",currentTableHasNoTickets:"當前表格暫無工單",expectedStartDay:"預計開工日",expectedCompletion:"預計完工日",salesOrderNumber:"銷售訂單號",checkWorkOrderRequiredFields:"請檢查工單必填項",duplicateWorkOrderId:"有重復工單號",productionStation:"生產工位",productionEquipment:"生產設備",remainingProcessCannotDelete:"當前僅剩一條工序,不可刪除",selectionNumber:"編號選擇",identificationName:"編號名稱",codePreview:"編號預覽",selectNumberingRuleFirst:"請先選擇編號規則",creationTimeRange:"創建時間區間",expectedConstructionStartDateRange:"預計開工日區間",batchUpdateContent:"批量更新內容",batchUpdateSuccessful:"批量更新成功",batchUpdateFailed:"批量更新失敗",failedToObtainSubWorkOrdersForTheProcess:"獲取工序子工單失敗",fillInTheBatchUpdateDataFirst:"請先填寫批量更新數據",selectTheFieldNameFirst:"請先選擇欄位名稱",noAttachment:"附件無法修改",integerBitsMustNotExceed10Digits:"整數位不得超過10位數字",notExceeding30Characters:"不得超過30字符",notExceeding50Characters:"不得超過50字符",modifyMaterial:"修改物料",workstationData:"含有工位數據,此選項不可為空",nextWorkstationInfo:"更新失敗,請檢查工單下工序對應的工位信息",closedTicketsUpdate:"'已關閉'的計劃無法進行批量更新",workOrderGenerationFail:"工單號生成失敗",materialNoImage:"此物料無圖片預覽",materialDetails:"物料詳情",confirmToDeleteAction:"請確認是否刪除?",startDateIsAfterEndDate:"預計開工日大於預計完工日",completionDateBeforeStartDate:"預計完工日小於預計開工日",processInfoIncorrect:"請檢查工序信息",pleaseSelectData:"請先選擇數據",circulationTagNumber:"流轉標簽號",numberOfTags:"每張流轉卡數量",numberRuleName:"編號規則名稱",previewOfNumberingRules:"編號規則預覽",batchIssuanceQuantity:"批量發行數量",manuallyAddCirculationLabels:"手動新增流轉標簽",batchIssuanceOfCirculationLabels:"批量發行流轉標簽",bindFlowLabelList:"綁定流轉標簽列表",labelingIssuance:"標簽發行",tagPreview:"標簽預覽",unbindSuccessfully:"解綁成功",closeAddTagNumber:"若取消,則本次新增的標簽將不會保存,是否確認取消?",countOfTags:"標簽數量",exportLabelIssuanceTemplate:"標簽數量若不填寫,則默認為1",theFileSizeCannotExceed5Mb:"文件大小不能超過5MB",duplicateCirculationTagNumber:"存在重復流轉標簽號,請重新調整",onlySupportsPositiveIntegers:"僅支持正整數",insufficientNumberOfBindingsAvailable:"當前可綁定的數量不足,請重新調整",flowLabelSpecification:"流轉標簽號僅支持輸入大小寫的英文字母和數字,且不可有空格",duplicateCirculationTagNumberWithNewlyAddedData:"流轉標簽號與已新增數據重復",batchUnbinding:"批量解綁",pleaseSelectTheBoundLabelFirst:"請先選擇已綁定的標簽",areYouSureToUnbind:"標簽解綁後將立即生效,是否確認解綁?",batchUnbindingSuccessful:"批量解綁成功",pleaseSelectUnboundTagsFirst:"請先選擇未綁定的標簽",batchDeletionSuccessful:"批量刪除成功",cannotSaveInPreviewState:"預覽狀態下無法保存",generate:"生成",remainingBindingQuantity:"剩余可綁定數量為",theCirculationTagNumberIsAUniqueCodeAndCannotBeDuplicated:"流轉標簽號為唯一碼,不可重復",insufficientRemainingIssuableQuantity:"剩余可發行數量不足",thereIsNoCirculationLabelNumberingRule:"不存在流轉標簽編號規則",boundQuantity:"已綁定數量",successfullyGenerated:"生成成功",generationFailed:"生成失敗",selectTheCirculationTagNumber:"請選擇流轉標簽號",duplicateFileNameExistingFile:"檔案名稱重復,是否覆蓋現有檔案?",materialLabelIssuance:"物料標簽發行",labelType:"標簽類型",labelSourceObject:"標簽來源對象",tagsNumber:"標簽個數",latestLabelIssuer:"標簽最新發行人",latestLabelReleaseTime:"標簽最新發行時間",labelIssuer:"標簽發行人",labelReleaseTime:"標簽發行時間",materialLabel:"物料標簽",noType:"無類型",materialMasterData:"物料主數據",tagSourceNumber:"標簽來源單號",tagNumberingRules:"標簽編號規則",rowExport:"匯出",labelIssuanceSource:"標簽發行來源",manuallyAddTags:"手動新增標簽",tagNumber:"標簽號",quantityPerLabel:"每個標簽數量",batchReleaseLabels:"批量發行標簽",labelRulesPreview:"編號規則預覽",productionWorkOrderNumber:"生產工單號",labelImportTemplate:"標簽匯入模板",excelTemplateFields:"模板欄位",orderNotExist:"生產工單號不存在",materialNotExist:"物料編號不存在",releaseTagsList:"發行標簽列表",selectMaterialMasterData:"選擇物料主數據",selectProductionWorkOrder:"選擇生產工單",return:"返回",confirmReturn:"確認返回?",returnTip:"是否確認取消",deleteTagEmptyMsg:"請先選擇要刪除的標簽",deleteTagTip:"標簽刪除后將立即生效,是否確認刪除?",plsSelectLabelSource:"請選擇標簽發行來源",documentNumber:"單據編號",productionTagExcelTemplate:"單據標簽匯入模板",materialTagExcelTemplate:"物料標簽匯入模板",tagExcelTemplate:"標簽匯入模板",firProductionTip:"請在單據編號欄位填寫對應的單據編號",secProductionTip:"匯入的不同的單據編號將自動拆分匯總",firMaterialTip:"請在物料編號欄位填寫對應的物料編號",secMaterialTip:"匯入的不同的物料編號將自動拆分匯總",firDefaultTip:"標簽號欄位不可重複",secDefaultTip:"標簽數量若不填寫,則匯入時默認為1",labelReplacementBinding:"標簽換綁",availableRemainingNumber:"剩餘可綁定數量為",noAvailableNumber:"剩餘可發行數量不同,請重新輸入",tagChangeBindingMsg:"標簽換綁不可多選",tagSelectBindingMsg:"請選擇簽來源對象是“生產工單”或“物料主數據”的數據進行換綁",successfullyChangedBinding:"換綁成功",orderNotChange:"未修改生產工單號",productNumNotChange:"未修改物料編號",columnNotLessSix:"頁面中欄位最少不得低於6列",columnFrozenFour:"最多可凍結4列數據",selectBindData:"請先選擇需要換綁的數據",tagPublishQR:"物料標簽",plsSelectData:"請選擇數據",printTag:"標簽打印",positiveInteger:"請輸入正整數",onlyUseOneTag:"一次只能對一個工單發行標籤",closedTicketsNotIssueTags:"已關閉的工單無法發行標籤",selectData:"請先選擇數據",endDate:"結束日期",selectPrintingTemplate:"選擇打印模版",printTemplateName:"模板名稱",templatesSystem:"系統內置模板",size:"尺寸大小",printedFirstData:"請先選擇需要打印的數據",numberExceedsLimit:"該編碼原則已超過上限,請至工廠建模中的編號規則設定",submitReviewSettings:"提交/審覈設定",productionPlanSetting:"生產計劃設定",salesOrderSetting:"銷售訂單設定",autocommit:"自動提交",automaticReview:"自動審覈",automaticallySubmitAndReview:"自動提交且審覈",planExcelExport:"Excel導出",productionPlanNumberCannotBeRepeated:"1.生產計劃號不可重複,若不輸入,則匯入後系統按照生產計劃對應的編號規則自動生成",enterTheCorrespondingProcessPathNameInTheProcessPathField:"2.工藝路徑欄位輸入對應的工藝路徑名稱",afterFillingInTheRequiredFields:"3.必填欄位填寫後即可進行匯入",planToImportTemplate:"計劃匯入模板",productionPlanImportTemplate:"生產計劃匯入模板",productionPlanNumber:"生產計劃號",plannedQuantity:"計劃數量",requestDeliveryDate:"要求交期",plannedCommencementDate:"計劃開工日",plannedCompletionDate:"計劃完工日",fatherPlanNumber:"父計劃號",mainPlanNumber:"主計劃號",submittedFirst:"請先選擇需要提交的數據",submissionFailed:"提交失敗,待提交狀態下的單據才能提交",pendingSubmissionStatusSubmission:"待提交狀態下的單據才能提交,以下計劃狀態不滿足:",resubmittedFirst:"請先選擇需要反提交的數據",antiSubmissionFailed:"反提交失敗,待審覈狀態下的單據才能反提交",pendingReviewStatusForResubmission:"待審覈狀態下的單據才能反提交,以下計劃狀態不滿足:",reviewedFirst:"請先選擇需要審覈的數據",auditFailed:"審覈失敗,待審覈狀態下的單據才能審覈",pendingStatusReview:"待審覈狀態下的單據才能審覈,以下計劃狀態不滿足:",resubmittedSuccess:"反提交成功",reviewedSuccess:"審覈成功",auditedSuccess:"反審覈成功",closedSuccess:"關閉成功",antiClosureSuccess:"反關閉成功",auditedFirst:"請先選擇需要反審覈的數據",antiAuditFailed:"反審覈失敗,已審覈狀態下的單據才能反審覈",reviewedStatusUnapproved:"已審覈狀態下的單據才能反審覈,以下計劃狀態不滿足:",closedFirst:"請先選擇需要關閉的數據",shutdownReason:"關閉原因",fillInTheReasonForClosure:"請填寫關閉原因",reverseClosedFirst:"請先選擇需要反關閉的數據",antiClosureFailed:"反關閉失敗,已關閉狀態下的單據才能反關閉",closedStatusReverseClosure:"已關閉狀態下的單據才能反關閉,以下計劃狀態不滿足:",deletedFirst:"請先選擇需要刪除的數據",deleteFailed:"刪除失敗,待提交狀態的單據才能刪除",toBeSubmittedStatusDeleted:"待提交狀態下的單據才能刪除,以下計劃狀態不滿足:",planStatus:"計劃狀態",bomVersion:"BOM版本",remainingPlanCount:"剩余計劃數量",completionQuantity:"完工數量",orderQuantity:"訂單數量",workStartDate:"實際開工日",workEndDate:"實際完工日",creationDate:"創建日期",submitter:"提交人",submitTime:"提交時間",avoidSubmitter:"反提交人",antiSubmitTime:"反提交時間",antiReviewer:"反審核人",antiReviewTime:"反審核時間",closePerson:"關閉人",closeTime:"關閉時間",antiClosePerson:"反關閉人",antiCloseTime:"反關閉時間",treatSubmit:"待提交",treatAudit:"待審核",minColumnCountInPage:"頁面中欄位最少不得低於6列",maxFrozenCols:"最多可凍結4列數據",adjustNumber:"調整數量",exportOfProductionPlan:"生產計劃匯出",selectPlanFirst:"請先選擇計劃",closedPlansUpdate:"僅'待提交'或'待審覈'的工單可以進行批量更新",planLevel:"計劃層級",mustBeAPositiveInteger:"必須爲正整數",materialAlreadyExists:"物料已存在,添加失敗,請重新選擇!",checkPlanCorrespondingInfo:"請檢查計劃{planNumber}對應的信息",pendingSubmitEditable:"僅待提交,待審核的計劃可編輯",maxEditPlans:"最多支持同時編輯20個計劃",planList:"計劃列表",productBomList:"產品BOM清單",checkPlanCustomFields:"請檢查計劃自定義字段",planInfoSavedSuccess:"計劃信息保存成功",planInfoSaveFailure:"計劃信息保存失敗",addMaterial:"添加物料",materialTypeId:"物料類型",unitUsage:"單位用量",demandQuantity:"需求數量",inventoryQuantity:"庫存數量",inventoryStorageQuantity:"入庫數量",positiveIntegerCheck:"只能輸入大於0的正整數",bomDeleteValidation:"當前BOM清單只剩一條,刪除失敗",standardWorkHourValidation:"整數位不得超過8位,小數位不得超過3位",maxTenDigitInt:"只能輸入不超過10位的整數",orderQuantityValidation:"只能輸入不超過10位的正整數",planStartDateAfterPlanEndDate:"計劃開工日大於計劃完工日",planCompletionDateBeforePlanStartDate:"計劃完工日小於計劃開工日",noDataInTable:"當前表格暫無數據",checkRequiredFieldsInPlan:"請檢查計劃必填項",hasDuplicatePlanId:"有重復計劃號",system:"系統",reverseSubmission:"反提交",toExamine:"審覈",antiAudit:"反審覈",generateWorkOrder:"生成工單",adjustNumberValid:"輸入框只能輸入數字(包括正負整數),且最多輸入10位數字",noDataCopy:"請先選擇需要復制的數據",plannedStartDateIsIllegal:"計劃開工日時間格式填寫違法",plannedDueDateIsIllegal:"計劃完工日時間格式填寫違法",productionPlanList:"生產計劃",productionPlanningProcess:"生產計劃工序",multiPlanEdit:"多計劃編輯",maxEditProductionPlans:"最多支持同時編輯20個生產計劃!",editableProductionPlans:"僅“待提交”和“待審核”狀態的生產計劃可進行多計劃編輯,請重新選擇",submitTooltip:"待提交狀態下的單據才能提交",reverseSubmitTooltip:"待審覈狀態下的單據才能反提交",toExamineTooltip:"待審覈狀態下的單據才能審覈",autiAuditTooltip:"已審覈狀態下的單據才能反審覈",closeTooltip:"已關閉狀態下的單據不能關閉",antiCloseTooltip:"已關閉狀態下的單據才能反關閉",deleteTooltip:"待提交狀態的單據才能刪除",parentMaterialNotAsChildMaterial:"父項物料與子項物料不能相同",copyPlan:"復制計劃",confirmDelete:"確認刪除",confirmCancel:"確定取消?",changeTagPublishBindFail:"當前生產工單的可綁定數量不足,切換失敗!",pushDown:"下推",associativeQueries:"關聯查詢",theMinimumColumns6:"頁面中欄位最少不得低於6列",upTo4ColumnsFrozen:"最多可凍結4列數據",returnQuantity:"退貨數量",inboundRemain:"入庫未完",cancel:"取消",listOfDocuments:"單據列表",warehousingEntry:"入庫單",outboundOrder:"出庫單",warehouseEntryNotice:"入庫通知單",deliveryNotice:"出庫通知單",inventoryList:"入庫單列表",listOutboundOrders:"出庫單列表",sourceOrderType:"源單類型",sourceOrderNumber:"源單單號",sourceSingleLineNumber:"源單行號",purchaseOrder:"采購訂單",movementsName:"異動類型",changeFile:"異動檔案",itemNoName:"物料料號/物料品名",storageSpace:"儲位",aberrationTime:"異動時間",productionInventoryPreset:"生產入庫(預設)",productionReturnMaterialPreset:"生產退料(預設)",productionMaterialRequisitionPreset:"生產領料(預設)",productionReturnPreset:"生產退庫(預設)",warehouseNumber:"倉庫編號",storage_nameForm:"倉庫名稱",storageLocationNumber:"儲位編號",materialId:"物料料號",change_amount:"異動數量",productionReceipt:"生產入庫單",selectDocument:"選擇單據",productionMaterialRequisitionForm:"生產領料單",theWorkOrderNotBOMListDown:"工單無BOM清單,無法下推生產領料單",pleaseSelectDownFirst:"請先選擇需要下推的數據",crossDocumentNotSupported:"不支持跨單據下推",downFailedDocumentsClosedState:"下推失敗,已關閉狀態下的單據不能下推",pleaseFirstSelectQuery:"請先選擇需要關聯查詢的數據",crossDocumentQueryNotSupported:"不支持跨單據查詢",defaultStoragePreset:"默認倉(預設)",productBOMList:"產品BOM清單",inventorySurplusReceiptPreset:"盤盈入庫(預設)",inventoryLossOutboundPreset:"盤虧出庫(預設)",frozenInventoryPreset:"凍結庫存(預設)",removeFrozenInventoryPreset:"移除凍結庫存(預設)",salesOutboundPreset:"銷售出庫(預設)",otherOutboundPreset:"其他出庫(預設)",purchaseReturnMaterialPreset:"采購退料(預設)",purchaseInventoryPreset:"采購入庫(預設)",salesReturnsPreset:"銷售退貨(預設)",otherInventoryPreset:"其他入庫(預設)",startDates:"開始日期",endDates:"結束日期",selectedRangeNotExceedMAXdays:"選擇的時間範圍不能超過{MAX_DAYS}天",materialTypes:"物料類型",quantityOfMaterialsUsed:"用料數量",outboundQuantity:"出庫數量",unfinishedOutbound:"出庫未完",inventoryQuantitys:"庫存數量",automaticMaterialSuccessful:"自動領料成功",inventoryChangeDocNumber:"庫存異動單據編號",workNotProductBOM:"工單尚未維護產品BOM,無法自動領料,派工失敗",insufficientInventory:"物料庫存不足,派工失敗,請先補充庫存",selectPrintDoc:"選擇打印單據",equipmentSchedule:"設備日程表",workOrderSchedule:"工單日程表",programmeSetting:"日程表設定",Date:"日",monday:"週一",tuesday:"週二",wednesday:"週三",thursday:"週四",friday:"週五",saturday:"週六",sunday:"週日",subWorkorderLinkage:"子工單連動",linkageMode:"連動方式",moveAllProcessesTogether:"所有工序一起移動",allSubWorkOrderLinkage:"僅該工序與後段工序下所有子工單連動",displayAbnormalContentDuringLinkage:"連動時顯示異動內容",display:"顯示",donotDisplay:"不顯示",adjustmentLinkedToSameEquipment:"同設備工單連動調整",adjustMode:"調整方式",adjustPrevious:"前工單調整",adjustBehind:"後工單調整",simultaneouslyAdjusted:"前/後工單同時調整",rangeOfInfluence:"影響範圍區間",dispatchProcessLocking:"派工工序鎖定",sortReset:"排序重置",workOrderEidt:"工單編輯",splitTask:"折開任務",splitNumber:"折開數量",split:"折開",statusColorDescription:"狀態顏色說明",noDispatchDesc:"創建日期範圍內所有未派工的工單",noStartDesc:"創建日期範圍內所有未開工的工單",underExecutionDesc:"創建日期範圍內所有已開工的工單",finishedDesc:"創建日期範圍內所有已完成的工單",closedDesc:"創建日期範圍內所有已關閉的工單",alreadyOverdueDesc:"創建日期範圍內所有已逾期的工單",productpartNumber:"產品料號",productname:"產品名稱",splitTip:"折開數量不可大於原工單數量",updateNotification:"更新通知",updateNotice:"連動更新以下工單內容",segmentCode:"分段代號",station:"工位",equipment:"設備",old:"原",new:"新",splitNumberTip:"請輸入小於等於原工單需求數量的正整數",sourceOrderNo:"源單單號",isVerifiedOrExecutingOrFinished:"僅“已審核”或“執行中”或“已完成”狀態的生產計劃支持生成工單,請重新選擇!",menuImport:"選單導入",selectProductionPlan:"選擇生產計劃",Self:"自製件",Purchase:"採購件",None:"無",workingHoursCaculate:"工時推算",calculationSetting:"推算設定",automaticSchedulingSetting:"自動排程設定",startingStationStartTime:"起始站開工時間",beatPointStartTime:"節拍點開工時間",completionStationStartTime:"完工站開工時間",fillDateTimeCompletely:"請完整填寫日期時間",calculationSuccess:"工時推算成功",calculationFail:"工時推算失敗",plsFillStartEndTime:"請填寫預計開工日與預計完工日",plsSetInfo:"請先設定完整資訊",batchClose:"批量關閉",planNumGenerateFail:"生產計劃號生成失敗",daily:"日",printPreview:"打印預覽",printClientInstall:"打印客戶端安裝",batchPrintClient:"批量打印之前需要安裝打印客戶端並配置默認打印機,請點擊下載",selectMaterials:"選擇物料",inventorySetting:"庫存設定",basicField:"基礎欄位",unitSetting:"單位設定",batchShutdown:"原有批次號規則已停用,請重新設定",imageImport:"圖片匯入",enableDefaultRepository:"啟用默認倉庫",enableShelfLifeManagement:"啟用保質期管理",outboundWarehouse:"出庫倉庫",shelfLifeUnit:"保質期單位",outboundWarehouseLocation:"出庫倉位",qualityGuaranteePeriod:"保質期",reorderPoints:"再訂貨點",storageWarehouse:"入庫倉庫",warehouseSelection:"倉庫選擇",positionSelection:"倉位選擇",parentCategory:"父級類別",sun:"日",qualityGuaranteePeriodRulesText:"輸入必須大於0,且無小數,最多10位數",sixDigitDecimalVerificationRulesText:"輸入必須大於0,且整數位最多10位數,小數位最多6位數",materialNameNoSpace:"物料名稱前後不得有空格",batchQueryFailed:"批次查詢失敗",tenMbLimit:"圖片大小限制10MB,請重新選擇圖片",imgFormatError:"圖片格式不符,請重新選擇圖片",chooseFinalCategory:"請選擇末級類別",requiredNotEmpty:"必填欄位不得為空",continueAddInfo:"繼續新增產品資料",storageType:"倉庫類別",storage_id:"倉庫編號",storage_name:"倉庫名稱",storage_address:"倉庫地址",storage_manager:"倉庫管理人",storage_phone:"電話",storage:"倉庫",editMaterial:"編輯物料",unitList:"單位列表",unitName:"單位名稱",unitVerify:"單位不支持特殊字符",unitRepeat:"物料單位重復",deleteUnit:"是否刪除當前單位",customerCode:"客戶編號",customerAbbreviation:"客戶簡稱",contacts:"聯系人",contactNumber:"聯系電話",contactAddress:"聯系地址",email:"郵箱",fax:"傳真",area:"地區",detailedAddress:"詳細地址",filePreview:"文檔預覽",generateNumber:"若不填寫則保存時自動生成",cancelTip:"若取消,本次所有修改將不會保存,是否確認取消",systemTag:"系統標簽",materialNumberGeneration:"若不填寫,則保存時按照默認規則自動生成",unitVerification:"輸入必須大於0,小數位最多6位數",customTextCannotExceed200Characters:"自定義文本填寫不能超過200字符",unitUsed:"當前單位正在被使用中,無法刪除",orderDateRules:"請選擇訂貨日期",name:"名稱",salesCategory:"銷售類別",orderDate:"訂貨日期",materialNumber:"物料編號",ThisOutboundQuantity:"出庫數量",outboundRemaining:"出庫未完",customerOrderNumber:"客戶訂單號",salesEmp:"業務員",followEmp:"跟單內勤",dispatchLocation:"發貨地點",salesBatchNumber:"銷售批號",customerModelCode:"客戶型號",customerProductCode:"客戶貨號",cartons:"箱數",quantityPerCarton:"箱只數",salesRemark:"訂單備註",materialRemark:"物料備註",priceIncludingTax:"含稅單價",priceExcludingTax:"未稅單價",amountIncludingTax:"含稅金額",amountExcludingTax:"未稅金額",createEmpName:"創建人",auditEmpName:"審覈人",auditTime:"審覈時間",pushPlanNum:"下推計劃數",pushEmpNum:"下推工單數",plsSelectSaleOrder:"請先選擇銷售訂單",standardSales:"標準銷售",outsourcedSales:"委外銷售",salesReturn:"銷售退貨",pendingReview:"待審覈",deliveryInProgressFa:"發貨中",review:"審覈",materialInventoryInsufficient:"{material}物料庫存不足,缺料{number},是否確認建立生產計劃",materialInventoryInsufficientOrder:"{material}物料庫存不足,缺料{number},是否確認建立生產工單",planNumberIsEmpty:"生產計劃號未維護BOM,請確認是否建立生產計劃",orderNumberIsEmpty:"行號未維護BOM,請確認是否建立生產工單",remainingAvailableQuantity:"剩餘可用量",salesOrderPushDownFailurePrompt:"銷售訂單已下推過生產工單不可再下推生產計劃",salesOrderPushDownFailurePromptDetail:"銷售訂單已下推過生產計劃不可再下推生產工單",ticketDeleteConfirmation:"工單刪除後將不可恢復,是否確認刪除?",unassignedWorkOrderCanDelete:"未派工的工單才能刪除",template:"模板",materialFile:"物料檔案",stockView:"庫存入庫",stockOut:"庫存出庫",operationLog:"操作日誌",toBeFinished:"完工",viewOperationRecord:"工單操作记录",operationType:"操作類型",operationDetails:"操作詳情",operationTimeInterval:"操作時間區間",operationTips:"只保留半年內的操作記錄",addOrder:"新增工單",editOrder:"編輯工單",deleteOrder:"刪除工單",toBeFinishedTips:"只有“執行中”,“已逾期”的工單可以完工",toBeFinishedConfirmTips:"完工的工單將無法進行其他操作,確認是否完工?",customerList:"客戶列表",sizeLimitSingleFileIs10MB:"單個文件大小限制為10MB",fileIsExitTooltip:"為已存在的檔案,是否確認更新?",fileUpdataTooltip:"檔案更新提醒",numberUploadsCannotExceed10:"上傳數量不能超過10個",materialPicture:"物料圖片",materialImages10MBHaveOneImage:"物料圖片僅支持匯入圖片類型的文件,文件大小不得超過10MB,一個物料只能有一張圖片",upTo10MaterialFilesButFileNotExceed10MB:"物料檔案最多可上傳10個,文件類型不限,但單個文件大小不超過10MB",customer:"客戶",pleaseSelect:"請選擇",batchOperation:"批量操作",moreActions:"更多操作",batchImport:"批量匯入",batchExport:"批量匯出",advancedOperation:"進階操作",parentSpecModel:"父項規格型號",childSpecModel:"子項規格型號",manufacturerIDOfPOM:"廠商編號",businessName:"廠商名稱",manufacturerAbbreviationOfPOM:"廠商簡稱",contactOfPOM:"聯繫人",contactNumberOfPOM:"聯繫電話",emailOfPOM:"郵箱",faxOfPOM:"傳真",contactAddressOfPOM:"聯繫地址",remarksOfPOM:"備註說明",manufacturerListOfPOM:"廠商列表",manufacturer:"廠商",productionOrderProcess:"生產工單(工序)",productionProcessTemplate:"工單工序流轉卡",checkBOMList:"請檢查bom信息",goodStorageWarehouse:"良品入庫倉庫",goodStorageSpace:"良品入庫倉位",defectiveStorageWarehouse:"不良品入庫倉庫",defectiveStorageSpace:"不良品入庫倉位",purchaseStorage:"采購入庫倉庫",purchaseStorageSpace:"采購入庫倉位",intervalStart:"區間開始",intervalEnd:"區間结束",storageImportWarn:"四個倉庫,若其中一個填寫了其餘三個皆為必填",shelfLifeImportWarn:"保質期單位、保質期若其中一個填剩一個也為必填",viewOperationRecordTxt:"視圖操作記錄",viewOperationRecordTips:"只保留半年內的操作記錄",operationTimeRange:"操作時間區間",newView:"新增視圖",editView:"編輯視圖",copyView:"復製視圖",deleteView:"刪除視圖",viewList:"視圖列表",viewListTips:"最多支持創建20個視圖",createView:"創建視圖",viewName:"視圖名稱",basicInfo:"基本信息",dataFilter:"數據過濾",dataFilterTips:"視圖默認顯示1年內的數據",viewIcon:"圖標",viewPermission:"查閱權限",quarter:"季度",addFilterConditions:"添加篩選條件",greaterThan:"大於",greaterThanOrEqualTo:"大於等於",lessThan:"小於",lessThanOrEqualTo:"小於等於",equalTo:"等於",notEqualTo:"不等於",yesEmpty:"為空",notEmpty:"不為空",selectRange:"選擇範圍",dynamicFiltering:"動態篩選",contains:"包含",notContains:"不包含",inRange:"在範圍內",notInRange:"不在範圍內",isOneOf:"是其中一個",notAnyOf:"不是任何一個",today:"今天",yesterday:"昨天",thisWeek:"本周",lastWeek:"上周",thisMonth:"本月",lastMonth:"上月",lastThreeMonths:"近三月",custom:"自定義",customRange:"自定義(範圍)",maxValue:"最大值",minValue:"最小值",moreView:"更多視圖",viewDeleteTip:"刪除後不可恢復,請確認是否刪除?",duplicateViewNames:"視圖名稱重復",originalOrderNumber:"源單單號",orderDemander:"客戶名稱",consUserName:"創建人",modiUserName:"更新人",modiDate:"更新時間",inboundQuantity:"入庫數量",originalOrderType:"源單類型",closeNonClosedTickets:"僅支持關閉非“已關閉”狀態的工單",selectOperation:"選擇操作",startOrEndTime:"開始或結束時間",inputText:"請輸入文本",selectOptions:"請選擇選項",timePrecision:"精度",selectTime:"選擇時間",pastOrFuture:"過去或未來",selectOperator:"請選擇操作符",inputRangeValue:"請輸入範圍值",inputValidRange:"請輸入有效範圍",startValueCannotGreaterThanEndValue:"起始值不能大於結束值",selectTimeAndPrecision:"請選擇時間和精度",selectStartOrEnd:"請選擇開始或結束時間",selectTimeRange:"請選擇時間範圍",selectCompleteTimeRange:"請選擇完整時間範圍",selectDynamicFilteringType:"請選擇動態篩選類型",pleaseInput:"請輸入",checkForm:"請檢查表單",closeReason:"關閉原因",materialFileName:"物料檔案",viewEditSuccessful:"編輯視圖成功",adjustDataFiltering:"【{name}】【數據過濾】做了調整",adjustViewPermission:"【{name}】【查閱權限】做了調整",adjustViewName:"【{name}】【視圖名稱】修改為【{newName}】",deleteViewSuccessful:"刪除視圖成功,刪除的視圖名稱為【{name}】",addViewSuccessful:"新增視圖成功,視圖名稱為【{name}】",currentUser:"當前用戶",numIntegerExceedTen:"整數位不能超過10位",numDecimalExceedSix:"小數位不能超過6位",moreFilter:"更多篩選",addFilterCriteria:"添加篩選條件",maxFilterConditions:"一次最多添加10個條件進行過濾,請先移除其他過濾條件",sum:"合計",resourceType:"資源類型",resourceName:"資源名稱",processResourceList:"工序資源清單",beatPoint:"節拍點",leadTime:"前置時間",minimumTransferCount:"最小轉移件數",loadingTime:"上料時間",unloadingTime:"下料時間",minimumTimeIntervalMinutes:"最小時間區段(分)",devices:"設備",multipleFilesCannotBeSelected:"不可選擇多個檔案",zeroPositiveInteger:"請輸入0或正整數",checkProcessResource:"請檢查工序資源檢驗",checkProcessResourceName:"請填寫工序資源名稱",checkCalWorkingHours:"請檢查工時推算校驗",calWorkHour:"工時推算"},Ue={"zh-tw":{System_Error:"系統錯誤",Service_Unavailable:"系統服務暫停",Remote_Service_Error:"遠端連線錯誤",IP_Limit:"IP限制不能請求該資源",Illegal_Request:"非法請求",Token_Missing:"缺少source (token) 參數",Unsupport_Mediatype:"不支援的MediaType",Param_Error:"參數錯誤,您回傳的資料內容或代碼數量不符規範",System_Busy:"系統過載",Job_Expired:"執行超時",RPC_Error:"RPC錯誤",Partial_Data_Error:"部分資料錯誤",Time_Out:"連線逾時",Mail_Failed:"寄信功能異常",Decode_Failed:"解密功能異常",WeChat_GetOpenID_Error:"微信取OpenID功能異常",SDK_Unsupport_Function:"SDK不支援此功能",API_Internet_Error:"連線其他API失敗",SMS_Failed:"簡訊發送異常,請檢查國碼及手機號碼是否輸入正確",Insert_Problem_Type_Wrong:"插入錯誤之參數型態不正確",Insert_Problem_KeyColumn_Exist:"已存在相同主鍵欄位",Update_Problem_Type_Wrong:"更新錯誤之參數型態不正確",Update_Problem_KeyColumn_Miss:"缺少主鍵",Select_Problem_No_Data:"查無資料",Update_Error:"更新錯誤",Insert_Error:"插入失敗",Upsert_Error:"更新插入失敗",Delete_Error:"刪除失敗",DBRelated_Error:"資料庫相關系統錯誤",Data_Duplicate:"資料重複",Password_Wrong:"密碼錯誤",ProcessOrder_Duplicate:"工序子工單重複",No_Right_to_Access:"權限不足",UserID_UnExist:"帳號不存在",Account_Quit:"帳號停用",Verify_Fail:"驗證錯誤",ID_SameAs_Password:"帳號等同於密碼",Auth_Error:"帳號認證錯誤",Machine_Number_Limit:"機台授權數量限制",Token_Expired:"權證時效過期,請重新整理或重新提交表單",Password_Need_Change:"密碼必須更改(忘記密碼時)",Cookie_Error:"Cookie驗證錯誤,您的登入時限可能過期,請重新登入",WeChat_First_Login:"微信首次登入",Token_Verify_Fail:"Token驗證失敗",Option_Right_Invalid:"選配功能權限不足",No_Right_to_Access_CNC:"對控制器權限不足",Mail_Verify_Fail:"信箱尚未驗證",No_Right_to_Access_Equipment:"對其他設備權限不足",Equipment_Name_Duplicate:"其他設備名稱重複",Software_Serial_Number_Valid:"軟體序號非法,直聯網用之序號不得拿來使用SMB軟體序號相關 API",Input_Type_Wrong:"參數型態不正確",Input_Size_Exceeded:"輸入參數過多",File_Not_Exist:"檔案不存在",File_Using_Conflict:"檔案使用衝突",File_Not_ExistInRequest:"檔案不存在於參數中",File_Upload_Number_Limit:"檔案上傳數量問題",Oss_Upload_Fail:"上傳到OSS失敗",File_Size_Exceeded:"單一檔案大小超過上限",Folder_Size_Exceeded:"單一資料夾檔案大小超過上限",File_Extension_Invalid:"非法的副檔名",File_Delete_Fail:"刪除檔案失敗",File_Related_Error:"檔案相關錯誤",File_InUse_Error:"檔案正在使用中",Folder_Not_Exist:"資料夾不存在",Folder_InUse_Error:"資料夾正在使用中",Folder_Error:"通用資料夾錯誤訊息",Partial_File_Fail:"部分檔案失敗",OSS_Error:"OSS通用錯誤訊息",Connect_Broker_Failed:"連線Broker失敗",Subscribe_Topic_Failed:"訂閱topic失敗",Publish_Topic_Failed:"發布topic失敗",Duplicate_Subscribe_Topic:"重複訂閱topic",Not_Subscribe_Topic_Yet:"尚未訂閱此Topic",Unsubscribe_Topic_Failed:"取消訂閱topic失敗",DisConnect_Broker_Failed:"斷線Broker失敗",CNC_MQTT_Error:"通用控制器MQTT相關錯誤",CNC_Offline:"控制器離線",CNC_Busy:"控制器忙碌中",CNC_Busy_MQTT:"控制器因為MQTT指令忙碌中",SMB_MQTT_Error:"通用 SMB MQTT 相關錯誤",SMB_Offline:"SMB離線",SMB_Busy:"SMB忙碌中",SMB_Busy_MQTT:"SMB 因為MQTT忙碌中",Client_Already_Connect:"已經有相同資訊的Client連線中",CNC_Error:"控制器通用錯誤碼",CNC_Not_Regist:"控制器沒有註冊過",CNC_Already_Decode:"該控制器對應的檢查碼已經解密成功了",CNC_Already_Bind_SynFactory:"該控制器已經被註冊綁定給其他終端使用者",CNC_Name_Duplicate:"終端使用者的控制器名稱重複",CNC_Connection_Full:"終端使用者的連線數量已達上限",CNC_Not_Binding:"控制器並沒有被任何終端綁定",CNC_Disk_Not_Enough:"控制器磁碟未足夠",CNC_Dispatch_Type:"控制器派送類型問題(例如:參數不對)",CNC_Busy_FileRelated:"控制器忙碌處理檔案相關事宜",Robot_CNC_Direct_Dispatch_Deny:"機器人控制器不允許接收派工",CNC_Busy_LogBackup:"控制器忙碌處理Log備份相關事宜",CNC_Disconnected:"控制器離線中,無法交握",CNC_Invalid_BindingType:"控制器綁定類型不適用,如部分功能只有直聯網機台能使用",CNC_Invalid_Brand:"控制器廠牌不適用,如部分功能只有新代廠牌能使用",CNC_Busy_ReportWorkRelated:"控制器忙碌無法修改報工方式",CNC_Check_Connection:"控制器不合法或連線問題",Decode_Error:"序號或檢查代碼輸入錯誤",Decode_Illegal:"此檢查代碼或解密行為異常,請聯繫新代進一步確認",Subaccount_Auth_Illegal:"您沒有權限,請洽您的機械廠管理者",VerifyCode_Illegal:"檢查代碼異常",SN_Not_Found:"資料庫查無此筆序號",Decode_DataBase_Action_Error:"解密資料庫操作錯誤,請聯繫新代進一步確認",Remote_Decode_Error:"遠距解密失敗",CNCType_Model_Not_Found:"查無控制器機型或控制器類別",SubAccount_Multi_Wechat_Bind:"子帳號存在多組微信綁定",MotherAccount_Multi_Wechat_Bind:"母帳號存在多組微信綁定",Production_Plan_Error:"生產計劃管理通用錯誤碼",Production_Order_Duplicate:"工單重複",Order_Duplicate:"訂單重複或訂單資料不一致",InValid_WorkOrderID:"工令ID 不合法 (不屬於該使用者或者不存在)",InValid_CNC_ID:"不合法的控制器ID (可能不屬於當前使用者 或者根本不存在)",InValid_ExceptedStartTime_Parameter:"工單起始時間有誤",Out_Of_Number:"取號碼系統發現 規格內可用號碼用鑿",Production_Order_Not_Same_Order:"工單已存在,對應到不同訂單號錯誤",Work_Order_Inconsistency:"子工單已存在,機台ID、工序相同 但其他欄位(如需求工件數)不同",PLM_Data_Inconsistent:"與工藝包資料不一致",Work_Order_Comes_From_OT:"子工單來源是OT的錯誤碼",InValid_ProductionOrderID:"工單ID不合法(不屬於該使用者或不存在)",PLM_CraftPath_Info_Inconsistent:"與工藝包的工藝路徑資料不符",PLM_ProdctionProcess_Info_Inconsistent:"與工藝包的工序資料不符",PLM_Machine_Info_Inconsistent:"與工藝包的機台資料不符",InValid_Shift_ID:"不合法的班別ID",InValid_Emp_ID:"不合法的職員ID",Part_Serial_Number_In_Use:"序號已經被使用",Part_Serial_Number_Process_Lock:"已有人正在取序號",Serial_Number_Count_Setting_Conflict:"取號數量和設定不符",Insufficient_Number:"剩餘號碼數量不足",Work_Order_Status_Error:"子工單狀態有誤",Part_Serial_Number_Length_Limit:"序號長度過長",Duplicate_SN_List:"清單號碼內序號重複",Work_Order_Duplicate_Start:"子工單在一分鐘內重複開工",Work_Order_Start_Fail:"子工單開工失敗",Work_Order_Suspend_Fail:"子工單暫停加工失敗",Work_Order_Close_Fail_But_Suspend_Success:"子工單關閉失敗,但是暫停加工成功",Work_Order_Part_Count_Not_Fulfill:"子工單需求數尚未完成,無法完工",Work_Order_Start_Switch_Fail:"子工單開工時換單失敗",Duplicate_Production_Order_List:"清單內工單重複",Work_order_Can_not_Direct_Start_work:"子工單無法直接開工",Unbind_Part_Serial_Number_When_Start_work:"加工中的工單不能執行解綁",InValid_Part_Serial_Number:"不合法的序號",Machine_Send_File_When_Start_Work:"機台正在開工傳檔中,無法執行開工",Serial_Number_Bind_Different_Part_Number:"序號綁定到不同料號",Need_Part_Serial_Number_Export_Time:"已有出站時間的序號,更新後需要有序號的出站時間",Shift_Error:"班別錯誤",Employee_Error:"人員錯誤",Shift_Pattern_Not_Exist:"班制模式不存在",Same_Pattern_System_Exist:"已存在相同班制模式的實際班制",Pattern_Shift_Number_Conflict:"欲新增的班別數量與班制模式不符",Shift_Time_Overlap:"班別時間重疊",Shift_Time_Sum_Exceed:"班制時間區間超過上限(一天)",Shift_Start_End_Time_Conflict:"班別開始時間大於等於結束時間",Shift_System_Not_Exist:"實際班制不存在",Shift_ID_Shift_System_Conflict:"該班別不屬於此實際班制",Duplicate_Dept:"部門名稱重複",Success:"成功",Work_Report_Review_Error:"審核失敗",Wrong_Work_Quantity:"報工數量數量錯誤,數量被卡控",Field_Count_Max:"自定義字段數量過多",Field_Name_Repeat:"自定義字段名稱重復",Break_Time_Out_Of_Range:"有休息時間超出該輪班區間",FileDispatch_Error:"檔案派送通用錯誤碼",TakeEvent_ID_Error:"取事件代碼錯誤",Service_Original_Connect_Error:"串接原生SynFactory API錯誤",IsProxyCheck_Error:"確認是否為代理時發生錯誤",IsCNCIdentityValid_Check_Error:"確認CNC認證資訊是否正確時發生錯誤",CanSNAccessEquipment_Check_Error:"確認軟體序號是否可使用設備時發生錯誤",SNCanNotAccessEquipment:"該序號不能使用該設備",GetTriggerHistory_Error:"呼叫取派送記錄API時發生錯誤",Duplicate_Setting_Data:"預設路徑設定重複",Setting_Number_Limit_Exceed:"預設路徑設定 數量 達到設定上限",None_Data_Delete:"沒有資料被刪除",Material_Error:"物料通用錯誤碼",MaterialPartNumber_Invalid:"物料編號不合法",MaterialPartNumber_Duplicated:"物料編號重複",MaterialType_Duplicated:"物料類型重複",MaterialPartNumber_Not_Found:"物料編號不存在",MaterialBOM_Exist:"物料BOM表已存在",MaterialBOM_Child_Relation_Invalid:"物料BOM表子項非法",MaterialBOM_RelationShip_Invalid:"不能存在其他BOM表有父子料相反的關係",MaterialBOM_Self_Contained:"父項物料與子項物料不能相同",MaterialBOM_Not_Exist:"物料BOM表不存在",MaterialBOM_Bulk_Insert_Exceed:"超出批量匯入數量",MaterialBOM_Version_Not_Exist:"料號BOM版本不存在",Material_Sync_To_PDM_Fail:"料號同步到PDM失敗",Material_Do_Not_Have_BatchNumber_Setting:"料號沒有批次號設定",MaterialPartNumber_Status_Disable:"料號狀態停用",Response_Fomat_Error:"格式不正確",Equipmnet_Craft_Bind_Error:"設備工藝綁定錯誤",Template_Format_Error:"刀具模板格式錯誤",Craft_NO_ToolLIfeTemplate:"該設備對應工序無刀具壽命資料",Tool_Axis_Error:"系統(軸群)錯誤",Specification_Update_Error:"規範更新錯誤",Equip_Monitor_Setting_Name_Existed:"監控設定名稱已存在",Equip_In_Monitor_Setting_Has_Existed_In_Same_Indicator_And_Immediate_Noti:"設備在該監控指標下已設定過即時通知",Equip_ID_Not_Exist:"設備ID不存在",Equip_Monitor_Setting_ID_Not_Existed:"監控設定ID不存在",CVUS_Error:"通用客製變數系統錯誤",CVUS_Setting_Not_Exist:"客製變數設定不存在",CVUS_Parameter_Validation_Fail:"CVUS通用參數驗證失敗",CVUS_SETTING_COUNT_LIMIT:"達到CVUS 設定數量上限",CVUS_VARTYPE_LENGTH_LIMIT:"vartype 參數超過長度限制",CVUS_Map_Diff_Set_Result:"不同設定結果",CVUS_Map_Error_Busy:"設備忙碌,無法設定",CVUS_Map_When_Get_Setting:"當取得設定時發生錯誤",CVUS_Map_Unsup_Var:"不支援的變數",CVUS_Map_Var_Addr:"不支援的變數指向",CVUS_Map_Unsup_Var_Tp:"不支援的變數類型",CVUS_Map_Unsup_Freq:"不支援的上傳頻率",CVUS_EventID_Not_Exist:"該派送事件不存在",CVM_Parameter_Validation_Fail:"客製變數修改參數驗證失敗",CVM_SETTING_COUNT_LIMIT:"達到CVM設定數量上限",CVM_VARTYPE_LENGTH_LIMIT:"CVM vartype 參數超過長度限制",CVM_Take_Event_ID:"CVM 服務取得派送ID錯誤",CVM_Different_Result:"CVM 有不同修改結果",CVM_Busy_Var_Modifying:"CVM執行失敗,忙碌中,正在變更變數數值",CVM_Error_DataType_Trans_Error:"CVM執行失敗,資料型別轉型失敗",CVM_Error_Unsupport_VarType:"CVM執行失敗,不支援的變數類別",CVM_Error_Wrong_Var_Address:"CVM執行失敗,變數位址不合法",CVM_Error_Unsupport_DataType:"CVM執行失敗,不支援的型別代碼",CVUS_Error_GroupSub_NotExist:"該群組相關資料不存在,有可能是設備ID不存在,有可能是該設備名稱或者ID不存在",CVUS_Equip_Not_Support:"設備不支援群組訂閱功能",CVUS_Error_DataType_Inconsistent:"資料型態不一致",CVUS_Error_Unsupport_DataType:"不支援的資料型態",CVUS_PLC_Setting_Count_Limit:"PLC設備達數量設定上限",Data_Already_Exists:"數據已存在",Data_Count_Few:"資料筆數過少",APP_Service_Common:"APP服務通用錯誤",APP_Not_Exist:"APP不存在",APP_Duplicate_MQ_Connection:"APP已經連線到MQTT",Part_Serial_Number_Error:"料件序號通用錯誤",Part_Serial_Number_Already_Bind_Part_Number:"料件序號已經綁在料號上了",Part_Serial_Number_Not_Found:"找不到該料件序號",Part_Serial_Number_Do_Not_Bind_Part_Number:"料件序號沒有綁定的料號",Operation_Uuid_Already_Bind_Other_Part_Number:"該操作記錄已經綁定在其他料號上了",Custom_Parameter_Already_Used_By_Part_Serial_Number_Setting:"序號自定義參數已經被序號設定所使用",Serial_Number_Rule_Setting_Name_Duplicate:"序號規則設定的名稱重複",Serial_Number_Interval_Setting_Error:"流水號區間設定錯誤",Machine_Type_Exit_Error:"機台類別已存在",Cnc_Already_Bound:"控制器已绑定",Batch_Number_Error:"批次號通用錯誤",Batch_Number_Setting_Name_Duplicate:"批次號設定名稱重複",Batch_Number_Setting_ID_Not_Exist:"批次號設定ID不存在",Batch_Number_Setting_Not_Enable:"批次號設定未啟用",Batch_Number_Insufficient:"批次號數量不足",Batch_Number_Already_Bind_Other_Production_Order:"批次號已經綁定在其他工單上",Illegal_Batch_Number:"不合法的批次號",Batch_Number_Setting_Exceed_Max_Digit:"批次號設定超過最大位數",Message_Push_Error:"推播服務通用錯誤",Message_Push_Server_Not_Initialized:"推播服務尚未與伺服器做初始化連線設定",Message_Push_Mobile_Message_Excced:"推播服務手機提醒訊息達到上限",Message_Push_Server_Connect_Fail:"推播服務與推播伺服器連線失敗",Message_Push_Emp_Not_Bind_APP:"推播服務要發送訊息的人員尚未綁定APP",Message_Push_Message_Setting_Not_Initialized:"推播服務手機提醒訊息設定尚未初始化開通",Tag_Over_Count:"超出工單可綁定標簽數量",Data_Not_Exists:"數據不存在",Encoding_Exceeds_Upper_Limit:"編碼會超過系統設定上限,請至工廠建模中的編號規則設定",No_Beat_Point:"請先至工廠建模_產品工藝設定該路徑節拍點",Last_Process:"最後一道工序,不能删除",MaterialUnit_Not_Exist:"單位不存在",Production_Order_Not_In_NotDispatch:"非未派工的工單不可刪除",Production_Order_Has_Source_Document_Association:"生產工單存在源單關聯",Production_Order_Tag_Number_Released:"生產工單已發行標簽",Out_Storage_Not_Exit:"出庫倉庫不存在",Out_Stock_Space_Not_Exit:"出庫倉位不存在",In_Storage_Not_Exit:"入库仓库不存在",In_Stock_Space_Not_Exit:"入库仓位不存在",Def_In_Storage_Not_Exit:"不良入库仓库不存在",Def_In_Stock_Space_Not_Exit:"不良入庫倉庫不存在",Purchase_In_Storage_Not_Exit:"采购入库仓库不存在",Purchase_In_Stock_Space_Not_Exit:"採購入庫倉位不存在"},"zh-cn":{System_Error:"系统错误",Service_Unavailable:"系统服务暂停",Remote_Service_Error:"远端连线错误",ProcessOrder_Duplicate:"工序子工单重复",IP_Limit:"IP限制不能请求该资源",Illegal_Request:"非法请求",Token_Missing:"缺少source (token) 参数",Unsupport_Mediatype:"不支援的MediaType",Param_Error:"参数错误,您回传的资料内容或代码数量不符规范",System_Busy:"系统过载",Job_Expired:"执行超时",RPC_Error:"RPC错误",Partial_Data_Error:"部分资料错误",Time_Out:"连线逾时",Mail_Failed:"寄信功能异常",Decode_Failed:"解密功能异常",WeChat_GetOpenID_Error:"微信取OpenID功能异常",SDK_Unsupport_Function:"SDK不支援此功能",API_Internet_Error:"连线其他API失败",SMS_Failed:"简讯发送异常,请检查国码及手机号码是否输入正确",Insert_Problem_Type_Wrong:"插入错误之参数型态不正确",Insert_Problem_KeyColumn_Exist:"已存在相同主键栏位",Update_Problem_Type_Wrong:"更新错误之参数型态不正确",Update_Problem_KeyColumn_Miss:"缺少主键",Select_Problem_No_Data:"查无资料",Update_Error:"更新错误",Insert_Error:"插入失败",Upsert_Error:"更新插入失败",Delete_Error:"删除失败",DBRelated_Error:"资料库相关系统错误",Data_Duplicate:"资料重复",Password_Wrong:"密码错误",No_Right_to_Access:"权限不足",UserID_UnExist:"帐号不存在",Account_Quit:"帐号停用",Verify_Fail:"验证错误",ID_SameAs_Password:"帐号等同于密码",Auth_Error:"帐号认证错误",Machine_Number_Limit:"机台授权数量限制",Token_Expired:"权证时效过期,请重新整理或重新提交表单",Password_Need_Change:"密码必须更改(忘记密码时)",Cookie_Error:"Cookie验证错误,您的登入时限可能过期,请重新登入",WeChat_First_Login:"微信首次登入",Token_Verify_Fail:"Token验证失败",Option_Right_Invalid:"选配功能权限不足",No_Right_to_Access_CNC:"对控制器权限不足",Mail_Verify_Fail:"信箱尚未验证",No_Right_to_Access_Equipment:"对其他设备权限不足",Equipment_Name_Duplicate:"其他设备名称重复",Software_Serial_Number_Valid:"软体序号非法,直联网用之序号不得拿来使用SMB软体序号相关 API",Input_Type_Wrong:"参数型态不正确",Input_Size_Exceeded:"输入参数过多",File_Not_Exist:"档案不存在",File_Using_Conflict:"档案使用冲突",File_Not_ExistInRequest:"档案不存在于参数中",File_Upload_Number_Limit:"档案上传数量问题",Oss_Upload_Fail:"上传到OSS失败",File_Size_Exceeded:"单一档案大小超过上限",Folder_Size_Exceeded:"单一资料夹档案大小超过上限",File_Extension_Invalid:"非法的副档名",File_Delete_Fail:"删除档案失败",File_Related_Error:"档案相关错误",File_InUse_Error:"档案正在使用中",Folder_Not_Exist:"资料夹不存在",Folder_InUse_Error:"资料夹正在使用中",Folder_Error:"通用资料夹错误讯息",Partial_File_Fail:"部分档案失败",OSS_Error:"OSS通用错误讯息",Connect_Broker_Failed:"连线Broker失败",Subscribe_Topic_Failed:"订阅topic失败",Publish_Topic_Failed:"发布topic失败",Duplicate_Subscribe_Topic:"重复订阅topic",Not_Subscribe_Topic_Yet:"尚未订阅此Topic",Unsubscribe_Topic_Failed:"取消订阅topic失败",DisConnect_Broker_Failed:"断线Broker失败",CNC_MQTT_Error:"通用控制器MQTT相关错误",CNC_Offline:"控制器离线",CNC_Busy:"控制器忙碌中",CNC_Busy_MQTT:"控制器因为MQTT指令忙碌中",SMB_MQTT_Error:"通用 SMB MQTT 相关错误",SMB_Offline:"SMB离线",SMB_Busy:"SMB忙碌中",SMB_Busy_MQTT:"SMB 因为MQTT忙碌中",Client_Already_Connect:"已经有相同资讯的Client连线中",CNC_Error:"控制器通用错误码",CNC_Not_Regist:"控制器没有注册过",CNC_Already_Decode:"该控制器对应的检查码已经解密成功了",CNC_Already_Bind_SynFactory:"该控制器已经被注册绑定给其他终端使用者",CNC_Name_Duplicate:"终端使用者的控制器名称重复",CNC_Connection_Full:"终端使用者的连线数量已达上限",CNC_Not_Binding:"控制器并没有被任何终端绑定",CNC_Disk_Not_Enough:"控制器磁碟未足够",CNC_Dispatch_Type:"控制器派送类型问题(例如:参数不对)",CNC_Busy_FileRelated:"控制器忙碌处理档案相关事宜",Robot_CNC_Direct_Dispatch_Deny:"机器人控制器不允许接收派工",CNC_Busy_LogBackup:"控制器忙碌处理Log备份相关事宜",CNC_Disconnected:"控制器离线中,无法交握",CNC_Invalid_BindingType:"控制器绑定类型不适用,如部分功能只有直联网机台能使用",CNC_Invalid_Brand:"控制器厂牌不适用,如部分功能只有新代厂牌能使用",CNC_Busy_ReportWorkRelated:"控制器忙碌无法修改报工方式",CNC_Check_Connection:"控制器不合法或连线问题",Decode_Error:"序号或检查代码输入错误",Decode_Illegal:"此检查代码或解密行为异常,请联系新代进一步确认",Subaccount_Auth_Illegal:"您没有权限,请洽您的机械厂管理者",VerifyCode_Illegal:"检查代码异常",SN_Not_Found:"资料库查无此笔序号",Decode_DataBase_Action_Error:"解密资料库操作错误,请联系新代进一步确认",Remote_Decode_Error:"远距解密失败",CNCType_Model_Not_Found:"查无控制器机型或控制器类别",Wechat_Error:"微信错误通用错误码",SubAccount_Multi_Wechat_Bind:"子帐号存在多组微信绑定",MotherAccount_Multi_Wechat_Bind:"母帐号存在多组为信绑定",Production_Plan_Error:"生产计划管理通用错误码",Production_Order_Duplicate:"工单重复",Order_Duplicate:"订单重复或订单资料不一致",InValid_WorkOrderID:"工令ID 不合法 (不属于该使用者或者不存在)",InValid_CNC_ID:"不合法的控制器ID (可能不属于当前使用者 或者根本不存在)",InValid_ExceptedStartTime_Parameter:"工单起始时间有误",Out_Of_Number:"取号码系统发现 规格内可用号码用凿",Production_Order_Not_Same_Order:"工单已存在,对应到不同订单号错误",Work_Order_Inconsistency:"子工单已存在,机台ID、工序相同 但其他栏位(如需求工件数)不同",PLM_Data_Inconsistent:"与工艺包资料不一致",Work_Order_Comes_From_OT:"子工单来源是OT的错误码",InValid_ProductionOrderID:"工单ID不合法(不属于该使用者或不存在)",PLM_CraftPath_Info_Inconsistent:"与工艺包的工艺路径资料不符",PLM_ProdctionProcess_Info_Inconsistent:"与工艺包的工序资料不符",PLM_Machine_Info_Inconsistent:"与工艺包的机台资料不符",InValid_Shift_ID:"不合法的班别ID",InValid_Emp_ID:"不合法的职员ID",Part_Serial_Number_In_Use:"序号已经被使用",Part_Serial_Number_Process_Lock:"已有人正在取序号",Serial_Number_Count_Setting_Conflict:"取号数量和设定不符",Insufficient_Number:"剩余号码数量不足",Work_Order_Status_Error:"子工单状态有误",Part_Serial_Number_Length_Limit:"序号长度过长",Duplicate_SN_List:"清单号码内序号重复",Work_Order_Duplicate_Start:"子工单在一分钟内重复开工",Work_Order_Start_Fail:"子工单开工失败",Work_Order_Suspend_Fail:"子工单暂停加工失败",Work_Order_Close_Fail_But_Suspend_Success:"子工单关闭失败,但是暂停加工成功",Work_Order_Part_Count_Not_Fulfill:"子工单需求数尚未完成,无法完工",Work_Order_Start_Switch_Fail:"子工单开工时换单失败",Duplicate_Production_Order_List:"清单内工单重复",Work_order_Can_not_Direct_Start_work:"子工单无法直接开工",Unbind_Part_Serial_Number_When_Start_work:"加工中的工单不能执行解绑",InValid_Part_Serial_Number:"不合法的序号",Machine_Send_File_When_Start_Work:"机台正在开工传档中,无法执行开工",Serial_Number_Bind_Different_Part_Number:"序号绑定到不同料号",Need_Part_Serial_Number_Export_Time:"已有出站时间的序号,更新后需要有序号的出站时间",Shift_Error:"班别错误",Employee_Error:"人员错误",Shift_Pattern_Not_Exist:"班制模式不存在",Same_Pattern_System_Exist:"已存在相同班制模式的实际班制",Pattern_Shift_Number_Conflict:"欲新增的班别数量与班制模式不符",Shift_Time_Overlap:"班别时间重叠",Shift_Time_Sum_Exceed:"班制时间区间超过上限(一天)",Shift_Start_End_Time_Conflict:"班别开始时间大于等于结束时间",Shift_System_Not_Exist:"实际班制不存在",Shift_ID_Shift_System_Conflict:"该班别不属于此实际班制",Duplicate_Dept:"部门名称重复",Success:"成功",Work_Report_Review_Error:"审核失败",Wrong_Work_Quantity:"报工数量数量错误,数量被卡控",Field_Count_Max:"自定义字段数量过多",Field_Name_Repeat:"自定义字段名称重复",Break_Time_Out_Of_Range:"有休息时间超出该轮班区间",FileDispatch_Error:"档案派送通用错误码",TakeEvent_ID_Error:"取事件代码错误",Service_Original_Connect_Error:"串接原生SynFactory API错误",IsProxyCheck_Error:"确认是否为代理时发生错误",IsCNCIdentityValid_Check_Error:"确认CNC认证资讯是否正确时发生错误",CanSNAccessEquipment_Check_Error:"确认软体序号是否可使用设备时发生错误",SNCanNotAccessEquipment:"该序号不能使用该设备",GetTriggerHistory_Error:"呼叫取派送记录API时发生错误",Duplicate_Setting_Data:"预设路径设定重复",Setting_Number_Limit_Exceed:"预设路径设定 数量 达到设定上限",None_Data_Delete:"没有资料被删除",Material_Error:"物料通用错误码",MaterialPartNumber_Invalid:"物料编号不合法",MaterialPartNumber_Duplicated:"物料编号重复",MaterialType_Duplicated:"物料类型重复",MaterialPartNumber_Not_Found:"物料编号不存在",MaterialBOM_Exist:"物料BOM表已存在",MaterialBOM_Child_Relation_Invalid:"物料BOM表子项非法",MaterialBOM_RelationShip_Invalid:"不能存在其他BOM表有父子料相反的关系",MaterialBOM_Self_Contained:"父项物料与子项物料不能相同",MaterialBOM_Not_Exist:"物料BOM表不存在",MaterialBOM_Bulk_Insert_Exceed:"超出批量汇入数量",MaterialBOM_Version_Not_Exist:"料号BOM版本不存在",Material_Sync_To_PDM_Fail:"料号同步到PDM失败",Material_Do_Not_Have_BatchNumber_Setting:"料号没有批次号设定",MaterialPartNumber_Status_Disable:"料号状态停用",Response_Fomat_Error:"格式不正确",Equipmnet_Craft_Bind_Error:"设备工艺绑定错误",Template_Format_Error:"刀具模板格式错误",Craft_NO_ToolLIfeTemplate:"该设备对应工序无刀具寿命资料",Tool_Axis_Error:"系统(轴群)错误",Specification_Update_Error:"规范更新错误",Equip_Monitor_Setting_Name_Existed:"监控设定名称已存在",Equip_In_Monitor_Setting_Has_Existed_In_Same_Indicator_And_Immediate_Noti:"设备在该监控指标下已设定过即时通知",Equip_ID_Not_Exist:"设备ID不存在",Equip_Monitor_Setting_ID_Not_Existed:"监控设定ID不存在",CVUS_Error:"通用客制变数系统错误",CVUS_Setting_Not_Exist:"客制变数设定不存在",CVUS_Parameter_Validation_Fail:"CVUS通用参数验证失败",CVUS_SETTING_COUNT_LIMIT:"达到CVUS 设定数量上限",CVUS_VARTYPE_LENGTH_LIMIT:"vartype 参数超过长度限制",CVUS_Map_Diff_Set_Result:"不同设定结果",CVUS_Map_Error_Busy:"设备忙碌,无法设定",CVUS_Map_When_Get_Setting:"当取得设定时发生错误",CVUS_Map_Unsup_Var:"不支援的变数",CVUS_Map_Var_Addr:"不支援的变数指向",CVUS_Map_Unsup_Var_Tp:"不支援的变数类型",CVUS_Map_Unsup_Freq:"不支援的上传频率",CVUS_EventID_Not_Exist:"该派送事件不存在",CVM_Parameter_Validation_Fail:"客制变数修改参数验证失败",CVM_SETTING_COUNT_LIMIT:"达到CVM设定数量上限",CVM_VARTYPE_LENGTH_LIMIT:"CVM vartype 参数超过长度限制",CVM_Take_Event_ID:"CVM 服务取得派送ID错误",CVM_Different_Result:"CVM 有不同修改结果",CVM_Busy_Var_Modifying:"CVM执行失败,忙碌中,正在变更变数数值",CVM_Error_DataType_Trans_Error:"CVM执行失败,资料型别转型失败",CVM_Error_Unsupport_VarType:"CVM执行失败,不支援的变数类别",CVM_Error_Wrong_Var_Address:"CVM执行失败,变数位址不合法",CVM_Error_Unsupport_DataType:"CVM执行失败,不支援的型别代码",CVUS_Error_GroupSub_NotExist:"该群组相关资料不存在,有可能是设备ID不存在,有可能是该设备名称或者ID不存在",CVUS_Equip_Not_Support:"设备不支援群组订阅功能",CVUS_Error_DataType_Inconsistent:"资料型态不一致",CVUS_Error_Unsupport_DataType:"资料型态不支援",CVUS_PLC_Setting_Count_Limit:"PLC设备达数量设定上限",Part_Serial_Number_Error:"料件序号通用错误",Part_Serial_Number_Already_Bind_Part_Number:"料件序号已经绑在料号上了",Part_Serial_Number_Not_Found:"找不到该料件序号",Part_Serial_Number_Do_Not_Bind_Part_Number:"料件序号没有绑定的料号",Operation_Uuid_Already_Bind_Other_Part_Number:"该操作记录已经绑定在其他料号上了",Custom_Parameter_Already_Used_By_Part_Serial_Number_Setting:"序号自定义参数已经被序号设定所使用",Serial_Number_Rule_Setting_Name_Duplicate:"序号规则设定的名称重复",Serial_Number_Interval_Setting_Error:"流水号区间设定错误",Machine_Type_Exit_Error:"机台类别已存在",Cnc_Already_Bound:"控制器已绑定",Batch_Number_Error:"批次号通用错误",Batch_Number_Setting_Name_Duplicate:"批次号设定名称重复",Batch_Number_Setting_ID_Not_Exist:"批次号设定ID不存在",Batch_Number_Setting_Not_Enable:"批次号设定未启用",Batch_Number_Insufficient:"批次号数量不足",Batch_Number_Already_Bind_Other_Production_Order:"批次号已经绑定在其他工单上",Illegal_Batch_Number:"不合法的批次号",Batch_Number_Setting_Exceed_Max_Digit:"批次号设定超过最大位数",Message_Push_Error:"推播服务通用错误",Message_Push_Server_Not_Initialized:"推播服务尚未与伺服器做初始化连线设定",Message_Push_Mobile_Message_Excced:"推播服务手机提醒讯息达到上限",Message_Push_Server_Connect_Fail:"推播服务与推播伺服器连线失败",Message_Push_Emp_Not_Bind_APP:"推播服务要发送讯息的人员尚未绑定APP",Message_Push_Message_Setting_Not_Initialized:"推播服务手机提醒讯息设定尚未初始化开通",Tag_Over_Count:"超出工单可绑定标签数量",Data_Not_Exists:"数据不存在",Encoding_Exceeds_Upper_Limit:"编码会超过系统设定上限,请至工厂建模中的编号规则设定",No_Beat_Point:"请先至工厂建模_产品工艺设定该路径节拍点",Last_Process:"最后一道工序,不能删除",MaterialUnit_Not_Exist:"单位不存在",Production_Order_Not_In_NotDispatch:"非未派工的工单不可删除",Production_Order_Has_Source_Document_Association:"生产工单存在源单关联",Production_Order_Tag_Number_Released:"生产工单已发行标签",Out_Storage_Not_Exit:"出库仓库不存在",Out_Stock_Space_Not_Exit:"出库仓位不存在",In_Storage_Not_Exit:"入库仓库不存在",In_Stock_Space_Not_Exit:"入库仓位不存在",Def_In_Storage_Not_Exit:"不良入库仓库不存在",Def_In_Stock_Space_Not_Exit:"不良入库仓库不存在",Purchase_In_Storage_Not_Exit:"采购入库仓库不存在",Purchase_In_Stock_Space_Not_Exit:"采购入库仓位不存在"},en:{System_Error:"System Error.",Service_Unavailable:"System service is suspended.",Remote_Service_Error:"Remote connection error.",IP_Limit:"IP limit cannot request this resource.",Illegal_Request:"Illegal request.",Token_Missing:"The source (token) parameter is missing.",Unsupport_Mediatype:"Unsupported MediaType.",Param_Error:"Parameter error, the content of the data or the number of codes you returned does not meet the specifications.",System_Busy:"System overload.",Job_Expired:"Execution timed out.",RPC_Error:"RPC error.",Partial_Data_Error:"Partial data error.",Time_Out:"Connection timed out.",Mail_Failed:"The mailing function is abnormal.",Decode_Failed:"Decryption function is abnormal.",WeChat_GetOpenID_Error:"WeChat get OpenID function abnormal.",SDK_Unsupport_Function:"SDK unsupport function.",API_Internet_Error:"Failed to connect to other API.",SMS_Failed:"SMS sending is abnormal. Please check whether the country code and phone number are entered correctly.",Insert_Problem_Type_Wrong:"Insert Error. The parameter type is incorrect.",Insert_Problem_KeyColumn_Exist:"The same primary key column already exists.",Update_Problem_Type_Wrong:"Update Error. The parameter type is incorrect.",Update_Problem_KeyColumn_Miss:"Missing primary key.",Select_Problem_No_Data:"Check no data.",Update_Error:"Update error.",Insert_Error:"Insert failed.",Upsert_Error:"Update insert failed.",Delete_Error:"Delete failed.",DBRelated_Error:"DB Related Error.",Password_Wrong:"Password Wrong.",No_Right_to_Access:"Insufficient permissions.",UserID_UnExist:"Account does not exist.",Account_Quit:"Account is disabled.",Verify_Fail:"Verification error.",ProcessOrder_Duplicate:"The process sub-work order is repeated",ID_SameAs_Password:"Account is equivalent to password.",Auth_Error:"Account authentication error.",Machine_Number_Limit:"Machine authorized number limit.",Token_Expired:"Login time limit expired, please refresh or resubmit the form.",Password_Need_Change:"The password must be changed (when the password is forgotten).",Cookie_Error:"Cookie verification error. Your login time limit may have expired, please login again.",WeChat_First_Login:"WeChat first login.",Token_Verify_Fail:"Token verification failed.",Option_Right_Invalid:"Insufficient Option right.",No_Right_to_Access_CNC:"No right to access CNC.",Mail_Verify_Fail:"The mail has not been verified.",No_Right_to_Access_Equipment:"Insufficient permission to other devices.",Equipment_Name_Duplicate:"Other equipment names are duplicated.",Software_Serial_Number_Valid:"The software serial number is illegal, the serial number used for direct networking cannot be used to use the SMB software serial number related API.",Input_Type_Wrong:"The parameter type is incorrect.",File_Not_Exist:"File does not exist.",File_Using_Conflict:"File usage conflict.",File_Not_ExistInRequest:"File does not exist in the parameter.",File_Upload_Number_Limit:"File upload number problem.",Oss_Upload_Fail:"Upload to OSS failed.",File_Size_Exceeded:"Single file size exceeds the upper limit.",Folder_Size_Exceeded:"The file size of a single folder exceeds the upper limit.",File_Extension_Invalid:"Illegal extension.",File_Delete_Fail:"Failed to delete file.",File_Related_Error:"File related error.",File_InUse_Error:"File is in use.",Folder_Not_Exist:"Folder does not exist.",Folder_InUse_Error:"Folder is in use.",Folder_Error:"Generic folder error message.",Partial_File_Fail:"Partial file failed.",OSS_Error:"OSS general error.",Connect_Broker_Failed:"Failed to connect to Broker.",Subscribe_Topic_Failed:"Subscription to topic failed.",Publish_Topic_Failed:"Publish topic failed.",Duplicate_Subscribe_Topic:"Duplicate subscription topic.",Not_Subscribe_Topic_Yet:"Not yet subscribed to this topic.",Unsubscribe_Topic_Failed:"Unsubscribe topic failed.",DisConnect_Broker_Failed:"Broker failed to disconnect.",CNC_MQTT_Error:"General controller MQTT related error.",CNC_Offline:"Controller is offline.",CNC_Busy:"The controller is busy.",CNC_Busy_MQTT:"The controller is busy due to MQTT instructions.",SMB_MQTT_Error:"General SMB MQTT related errors.",SMB_Offline:"SMB offline.",SMB_Busy:"SMB is busy.",SMB_Busy_MQTT:"SMB is busy because of MQTT.",Client_Already_Connect:"A client with the same information is already connected",CNC_Error:"controller general error code.",CNC_Not_Regist:"The controller has not been registered.",CNC_Already_Decode:"The check code corresponding to this controller has been successfully decrypted.",CNC_Already_Bind_SynFactory:"The controller has been registered and bound to other user.",CNC_Name_Duplicate:"The controller name of the end user is duplicated.",CNC_Connection_Full:"The number of connections for the end user has reached the upper limit.",CNC_Not_Binding:"The controller is not bound by any terminal.",CNC_Disk_Not_Enough:"Not enough CNC disk",CNC_Dispatch_Type:"The CNC dispatch type problem (for example: the parameter is incorrect)",CNC_Busy_FileRelated:"The CNC is busy with file related matters",Robot_CNC_Direct_Dispatch_Deny:"Robot CNC is not allowed to receive dispatches",CNC_Busy_LogBackup:"The controller is busy with log backup related matters",CNC_Disconnected:"The controller is offline, unable to shake hands",CNC_Invalid_BindingType:"The controller binding type is not applicable, such as some functions can only be used by directly connected machines",CNC_Busy_ReportWorkRelated:"The controller is busy and cannot modify the reporting method",CNC_Invalid_Brand:"The controller brand is not applicable, such as some functions can only be used by the new generation brand",CNC_Check_Connection:"Invalid controller or connection problem",Decode_Error:"Serial number or check code input error.",Decode_Illegal:"This check code or decryption behavior is abnormal, please contact the new generation for further confirmation.",Subaccount_Auth_Illegal:"You do not have permission, please contact your machine factory manager.",VerifyCode_Illegal:"Check code exception.",SN_Not_Found:"No such serial number found in the database.",Decode_DataBase_Action_Error:"Decode database operation error, please contact New Generation for further confirmation.",Remote_Decode_Error:"Remote decryption failed.",CNCType_Model_Not_Found:"Check without controller model or controller type.",Wechat_Error:"Wechat error.",SubAccount_Multi_Wechat_Bind:"There are multiple WeChat bindings for sub-accounts.",MotherAccount_Multi_Wechat_Bind:"The parent account has multiple groups for WeChat binding.",Production_Plan_Error:"Production plan management error.",Production_Order_Duplicate:"Production order number duplicate.",Order_Duplicate:"Order duplicate or inconsistent order Number information.",InValid_WorkOrderID:"The sub production order number is invalid. (It does not belong to the account or does not exist)",InValid_CNC_ID:"Invalid CNC ID (It may not belong to the account or does not exist at all)",InValid_ExceptedStartTime_Parameter:"The start time of the production order number is incorrect",Out_Of_Number:"The number system found that the available numbers in the specification are used up",Production_Order_Not_Same_Order:"Production order number already exists, corresponding to a different order number error.",Work_Order_Inconsistency:"The sub-work order already exists, the machine ID and process are the same, but other fields (such as the number of required workpieces) are different",PLM_Data_Inconsistent:"Inconsistent with the PLM data",Work_Order_Comes_From_OT:"The source of the sub-work order is the error code of OT",InValid_ProductionOrderID:"The work order ID is invalid (does not belong to the user or does not exist)",PLM_CraftPath_Info_Inconsistent:"Inconsistent with the craft path information of the craft package",PLM_ProdctionProcess_Info_Inconsistent:"Inconsistent with the process information of the process package",PLM_Machine_Info_Inconsistent:"Inconsistent with the machine information of the craft package",InValid_Shift_ID:"Invalid shift ID",InValid_Emp_ID:"Invalid employee ID",Part_Serial_Number_In_Use:"The serial number has been used",Part_Serial_Number_Process_Lock:"Someone is accessing the serial number",Serial_Number_Count_Setting_Conflict:"Number of SN to be taken does not match the setting",Insufficient_Number:"Insufficient number of remaining numbers",Work_Order_Status_Error:"Work order status error",Part_Serial_Number_Length_Limit:"The length of the serial number is too long",Duplicate_SN_List:"The serial number in the list number is repeated",Work_Order_Duplicate_Start:"The sub-work order starts repeatedly within one minute",Work_Order_Start_Fail:"Failed to start sub-work order",Work_Order_Suspend_Fail:"The sub-work order suspend processing failed",Work_Order_Close_Fail_But_Suspend_Success:"Failed to close the sub-work order, but suspend processing successfully",Work_Order_Part_Count_Not_Fulfill:"The sub-work order partCountRequired has not been completed and cannot be completed",Work_Order_Start_Switch_Fail:"Failed to change the order when the sub-work order started",Duplicate_Production_Order_List:"Duplicate work orders in the list",Work_order_Can_not_Direct_Start_work:"The sub-work order cannot start directly",Unbind_Part_Serial_Number_When_Start_work:"The work order in processing cannot be unbind",InValid_Part_Serial_Number:"Invalid serial number",Machine_Send_File_When_Start_Work:"The machine is in the process of starting work, unable to start work",Serial_Number_Bind_Different_Part_Number:"The serial number is bound to a different part number",Need_Part_Serial_Number_Export_Time:"The serial number of the export time already exists, and the export time of the serial number is required after the update",Shift_Error:"Shift error",Employee_Error:"Employee error",Shift_Pattern_Not_Exist:"Shift pattern does not exist",Same_Pattern_System_Exist:"The shift with the same shift pattern already exists",Pattern_Shift_Number_Conflict:"The number of shifts does not match the shift pattern",Shift_Time_Overlap:"Shift time overlap",Shift_Time_Sum_Exceed:"The shift time interval exceeds the upper limit (one day)",Shift_Start_End_Time_Conflict:"The shift start time is greater than or equal to the end time",Shift_System_Not_Exist:"The actual shift system does not exist",Shift_ID_Shift_System_Conflict:"This shift name does not belong to this actual shift",Duplicate_Dept:"Duplicate department name",Success:"Success",Work_Report_Review_Error:"Review failed",Wrong_Work_Quantity:"The number of work reports is incorrect, and the quantity is stuck",Field_Count_Max:"Too many custom fields",Field_Name_Repeat:"Duplicate custom field names",Break_Time_Out_Of_Range:"This break time beyond the shift interval",FileDispatch_Error:"File delivery general error code",TakeEvent_ID_Error:"Error taking event code",Service_Original_Connect_Error:"Error in connecting native SynFactory API",IsProxyCheck_Error:"An error occurred while confirming whether it is a proxy",IsCNCIdentityValid_Check_Error:"An error occurred while confirming whether the CNC certification information is correct",CanSNAccessEquipment_Check_Error:"An error occurred while confirming whether the software serial number can use the device",SNCanNotAccessEquipment:"This serial number cannot use this device",GetTriggerHistory_Error:"An error occurred while calling the API to get the dispatch record",Duplicate_Setting_Data:"Duplicate default path settings",Setting_Number_Limit_Exceed:"The number of default path settings has reached the setting upper limit",None_Data_Delete:"No data was deleted",Material_Error:"Material general error code",MaterialPartNumber_Invalid:"The material number is illegal",MaterialPartNumber_Duplicated:"Duplicate material number",MaterialType_Duplicated:"Duplicated material type",MaterialPartNumber_Not_Found:"The material number does not exist",MaterialBOM_Exist:"Material BOM already exists",MaterialBOM_Child_Relation_Invalid:"Illegal material BOM child item",MaterialBOM_RelationShip_Invalid:"There cannot be any other BOM table with an opposite relationship between parent and child materials",MaterialBOM_Self_Contained:"Parent and child materials cannot be the same",MaterialBOM_Not_Exist:"Material BOM table does not exist",MaterialBOM_Bulk_Insert_Exceed:"Exceeded batch import quantity",MaterialBOM_Version_Not_Exist:"The material number BOM version does not exist",Material_Sync_To_PDM_Fail:"Failed to synchronize material number to PDM",Material_Do_Not_Have_BatchNumber_Setting:"The material number does not have a batch number setting",MaterialPartNumber_Status_Disable:"Material number status disabled",Response_Fomat_Error:"Incorrect format",Equipmnet_Craft_Bind_Error:"Equipment craft binding error",Template_Format_Error:"Tool template format error",Craft_NO_ToolLIfeTemplate:"There is no tool life data for the corresponding process of this equipment",Tool_Axis_Error:"System (axis group) error",Specification_Update_Error:"Specification update error",Equip_Monitor_Setting_Name_Existed:"Monitoring setting name already exists",Equip_In_Monitor_Setting_Has_Existed_In_Same_Indicator_And_Immediate_Noti:"The device has set up real-time notification under this monitoring indicator",Equip_ID_Not_Exist:"Device ID does not exist",Equip_Monitor_Setting_ID_Not_Existed:"Monitoring setting ID does not exist",CVUS_Error:"General custom variable system error",CVUS_Setting_Not_Exist:"Custom variable setting does not exist",CVUS_Parameter_Validation_Fail:"CVUS general parameter validation failed",CVUS_SETTING_COUNT_LIMIT:"CVUS setting limit reached",CVUS_VARTYPE_LENGTH_LIMIT:"The vartype parameter exceeds the length limit",CVUS_Map_Diff_Set_Result:"Different setting results",CVUS_Map_Error_Busy:"The device is busy and cannot be set",CVUS_Map_When_Get_Setting:"An error occurred when getting the setting",CVUS_Map_Unsup_Var:"Unsupported variable",CVUS_Map_Var_Addr:"Unsupported variable pointer",CVUS_Map_Unsup_Var_Tp:"Unsupported variable type",CVUS_Map_Unsup_Freq:"Unsupported upload frequency",CVUS_EventID_Not_Exist:"The dispatch event does not exist",CVM_Parameter_Validation_Fail:"Custom variable modification parameter validation failed",CVM_SETTING_COUNT_LIMIT:"The upper limit of the number of CVM settings has been reached",CVM_VARTYPE_LENGTH_LIMIT:"CVM vartype parameter exceeds length limit",CVM_Take_Event_ID:"The CVM service got a delivery ID error",CVM_Different_Result:"CVM has different modification results",CVM_Busy_Var_Modifying:"CVM execution failed, busy, changing variable value",CVM_Error_DataType_Trans_Error:"CVM execution failed, data type transformation failed",CVM_Error_Unsupport_VarType:"CVM execution failed, unsupported variable type",CVM_Error_Wrong_Var_Address:"CVM execution failed, the variable address is invalid",CVM_Error_Unsupport_DataType:"CVM execution failed, unsupported type code",CVUS_Error_GroupSub_NotExist:"The group-related information does not exist, it may be that the device ID does not exist, it may be that the device name or ID does not exist",CVUS_Equip_Not_Support:"The device does not support the group subscription function",CVUS_Error_DataType_Inconsistent:"Data type is inconsistent",CVUS_Error_Unsupport_DataType:"Unsupported data type",CVUS_PLC_Setting_Count_Limit:"PLC device reaches the setting upper limit",Part_Serial_Number_Error:"General error of material serial number",Part_Serial_Number_Already_Bind_Part_Number:"The serial number of the material has been bound to the material number",Part_Serial_Number_Not_Found:"The part serial number cannot be found",Part_Serial_Number_Do_Not_Bind_Part_Number:"The material part serial number does not have a bound material number",Operation_Uuid_Already_Bind_Other_Part_Number:"This operation record has been bound to other material numbers",Custom_Parameter_Already_Used_By_Part_Serial_Number_Setting:"The serial number custom parameter has been used by the serial number setting",Serial_Number_Rule_Setting_Name_Duplicate:"The name of the serial number rule setting is duplicated",Serial_Number_Interval_Setting_Error:"Serial number interval setting error",Machine_Type_Exit_Error:"Machine type already exists",Cnc_Already_Bound:"Controller is bound",Batch_Number_Error:"Batch number error.",Batch_Number_Setting_Name_Duplicate:"Duplicate batch number setting name.",Batch_Number_Setting_ID_Not_Exist:"The batch number setting ID does not exist.",Batch_Number_Setting_Not_Enable:"Batch number setting is not enabled.",Batch_Number_Insufficient:"Insufficient batch number.",Batch_Number_Already_Bind_Other_Production_Order:"The batch number has been bound to other work orders.",Illegal_Batch_Number:"Illegal batch number",Batch_Number_Setting_Exceed_Max_Digit:"The batch number setting exceeds the maximum number of digits.",Message_Push_Error:"Push service general error",Message_Push_Server_Not_Initialized:"The push service has not yet initialized the connection settings with the server",Message_Push_Mobile_Message_Excced:"The push service mobile phone reminder message has reached the upper limit",Message_Push_Server_Connect_Fail:"The connection between push service and push server failed",Message_Push_Emp_Not_Bind_APP:"The person to whom the push service wants to send messages has not been bound to the APP",Message_Push_Message_Setting_Not_Initialized:"The push service mobile phone reminder message setting has not been initialized and activated",Tag_Over_Count:"Exceeding the number of tags that can be bound to the work order",Data_Not_Exists:"Data does not exist",Encoding_Exceeds_Upper_Limit:"The coding will exceed the upper limit set by the system. Please go to the numbering rule setting in the factory modeling",No_Beat_Point:"Please first go to the factory to model the product process and set the beat point for this path",Last_Process:"The last process cannot be deleted",MaterialUnit_Not_Exist:"Unit does not exist",Production_Order_Not_In_NotDispatch:"Non-assigned work orders cannot be deleted",Production_Order_Has_Source_Document_Association:"The production order has a source order association",Production_Order_Tag_Number_Released:"Production Work Order Issued Label",Out_Storage_Not_Exit:"The outbound storage does not exist",Out_Stock_Space_Not_Exit:"Outbound storage location does not exist",In_Storage_Not_Exit:"The storage warehouse does not exist",In_Stock_Space_Not_Exit:"The inbound storage location does not exist",Def_In_Storage_Not_Exit:"The defective product storage warehouse does not exist",Def_In_Stock_Space_Not_Exit:"The defective product storage warehouse does not exist",Purchase_In_Storage_Not_Exit:"The purchase inbound warehouse does not exist",Purchase_In_Stock_Space_Not_Exit:"The purchase inbound storage location does not exist"}},or={"zh-cn":{...Jo,...Ue["zh-cn"],el:Ko},"zh-tw":{...tr,...Ue["zh-tw"],el:Zo},en:{...er,...Ue.en,el:Xo}},rr=$e.createI18n({locale:localStorage.getItem("lang")||"zh-cn",fallbackLocale:"zh-cn",silentTranslationWarn:!0,missingWarn:!1,silentFallbackWarn:!0,fallbackWarn:!1,messages:or}),pe=(t,R)=>{const o=t.__vccOpts||t;for(const[r,i]of R)o[r]=i;return o},nr={style:{display:"flex"},"data-test-id":"DIV-ksWjQV"},ar={"data-test-id":"DIV-0Bp9xN"},sr={key:0,"data-test-id":"DIV-FUfjAE"},ze=pe({__name:"columnConfigNext",props:{disabled:Boolean,parentItems:Array,isParentCheckbox:Boolean,parentLabel:String,childLabel:String,childItems:Array,isChildCheckbox:Boolean,isChild:Boolean},emits:["parentSaveData","childSaveData"],setup(t,{emit:R}){const{t:o}=$e.useI18n(),r=t,i=R,u=e.ref([]),_=e.ref([]),S=e.ref(".dragindicator");e.watch(()=>r,()=>{u.value=r.parentItems,_.value=r.childItems},{immediate:!0,deep:!0});function y(m){if(u.value.filter(x=>x.isShown===!0).length<6&&!m.isShown){m.isShown=!0,K.ElMessage.error(o("theMinimumColumns6"));return}i("parentSaveData",u.value)}function a(m){if(_.value.filter(x=>x.isShown===!0).length<6&&!m.isShown){m.isShown=!0,K.ElMessage.error(o("theMinimumColumns6"));return}i("childSaveData",_.value)}function n(m,p,x){const g=p.filter(h=>h.freeze===!0).length;if(m.freeze){m.freeze=!1,m.isFixed=!1;const h=p.indexOf(m);if(h!==-1){const[c]=p.splice(h,1),d=p.findIndex($=>!$.freeze);d!==-1?p.splice(d,0,c):p.push(c)}}else{if(g>=4){K.ElMessage.error(o("upTo4ColumnsFrozen"));return}m.freeze=!0,m.isFixed=!0;const h=p.indexOf(m);if(h!==-1){const[c]=p.splice(h,1),d=p.findLastIndex($=>$.freeze);d!==-1?p.splice(d+1,0,c):p.unshift(c)}}i(x,p)}function N(m){return m.freeze?"disabled-color":""}function l(m,p){const x=Array.from(m.from.children).indexOf(m.dragged),g=p[x];let h=Array.from(m.to.children).indexOf(m.related);m.willInsertAfter&&h!==-1&&(h+=1),m.related==null&&(h=p.length);const c=p.filter(d=>d.freeze).length;return!(!g.freeze&&h<c||g.freeze&&h>=c)}return(m,p)=>{const x=e.resolveComponent("arrow-down"),g=e.resolveComponent("el-icon"),h=e.resolveComponent("el-button"),c=e.resolveComponent("el-text"),d=e.resolveComponent("el-space"),$=e.resolveComponent("v-icon"),s=e.resolveComponent("el-checkbox"),T=e.resolveComponent("el-dropdown-item"),P=e.resolveComponent("el-dropdown-menu"),D=e.resolveComponent("el-dropdown");return e.openBlock(),e.createBlock(D,{size:"default",type:"primary","hide-on-click":!1,trigger:"click",style:{"margin-left":"15px"},disabled:t.disabled,"data-test-id":"EL-DROPDOWN-eo8M84"},{dropdown:e.withCtx(()=>[e.createElementVNode("div",nr,[e.createElementVNode("div",ar,[t.parentLabel?(e.openBlock(),e.createBlock(d,{key:0,direction:"vertical","data-test-id":"EL-SPACE-SwiJNQ"},{default:e.withCtx(()=>[e.createVNode(c,{tag:"b","data-test-id":"EL-TEXT-PtuT6g"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.parentLabel),1)]),_:1})]),_:1})):e.createCommentVNode("",!0),e.createVNode(P,{style:{"max-height":"400px"},"data-test-id":"EL-DROPDOWN-MENU-P9MKSO"},{default:e.withCtx(()=>[e.createVNode(e.unref(qe.VueDraggable),{ref:"el",modelValue:u.value,"onUpdate:modelValue":p[0]||(p[0]=I=>u.value=I),handle:S.value,filter:".disabled-color","data-test-id":"VUEDRAGGABLE-XbqWos",onEnd:y,onMove:p[1]||(p[1]=I=>l(I,u.value))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,I=>(e.openBlock(),e.createBlock(T,{key:I.value,command:I,"data-test-id":"EL-DROPDOWN-ITEM-qhw6G6"},{default:e.withCtx(()=>[e.createVNode($,{class:e.normalizeClass(["mdi mdi-drag dragindicator",N(I)]),style:{"margin-right":"10px"},"data-test-id":"V-ICON-4nKZUW"},null,8,["class"]),t.isParentCheckbox?(e.openBlock(),e.createBlock(s,{key:0,modelValue:I.isShown,"onUpdate:modelValue":C=>I.isShown=C,label:I.customizeFields?I.text:m.$t(I.text),size:"large",disabled:I.disabled,"data-test-id":"EL-CHECKBOX-7VXhXa",onChange:C=>y(I)},null,8,["modelValue","onUpdate:modelValue","label","disabled","onChange"])):(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass(N(I)),style:{"margin-right":"10px"},"data-test-id":"SPAN-VpmSwI"},e.toDisplayString(I.customizeFields?I.text:m.$t(I.text)),3)),I.freeze?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock($,{key:2,class:"mdi mdi-lock-open-variant",style:{"margin-left":"10px"},"data-test-id":"V-ICON-gfsrPv",onClick:C=>n(I,u.value,"parentSaveData")},null,8,["onClick"])),I.freeze?(e.openBlock(),e.createBlock($,{key:3,class:"mdi mdi-lock",style:{"margin-left":"10px"},"data-test-id":"V-ICON-bfzpiZ",onClick:C=>n(I,u.value,"parentSaveData")},null,8,["onClick"])):e.createCommentVNode("",!0)]),_:2},1032,["command"]))),128))]),_:1},8,["modelValue","handle"])]),_:1})]),t.isChild?(e.openBlock(),e.createElementBlock("div",sr,[t.childLabel?(e.openBlock(),e.createBlock(d,{key:0,direction:"vertical","data-test-id":"EL-SPACE-tJl63c"},{default:e.withCtx(()=>[e.createVNode(c,{tag:"b","data-test-id":"EL-TEXT-BqEDSr"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.childLabel),1)]),_:1})]),_:1})):e.createCommentVNode("",!0),e.createVNode(P,{style:{"max-height":"400px"},"data-test-id":"EL-DROPDOWN-MENU-PAz7a2"},{default:e.withCtx(()=>[e.createVNode(e.unref(qe.VueDraggable),{ref:"el",modelValue:_.value,"onUpdate:modelValue":p[2]||(p[2]=I=>_.value=I),handle:S.value,filter:".disabled-color","data-test-id":"VUEDRAGGABLE-QgDzSV",onEnd:a,onMove:p[3]||(p[3]=I=>l(I,_.value))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(_.value,I=>(e.openBlock(),e.createBlock(T,{key:I.value,command:I,"data-test-id":"EL-DROPDOWN-ITEM-LBKFI2"},{default:e.withCtx(()=>[e.createVNode($,{class:e.normalizeClass(["mdi mdi-drag dragindicator",N(I)]),style:{"margin-right":"10px"},"data-test-id":"V-ICON-8xH3OY"},null,8,["class"]),t.isChildCheckbox?(e.openBlock(),e.createBlock(s,{key:0,modelValue:I.isShown,"onUpdate:modelValue":C=>I.isShown=C,label:I.customizeFields?I.text:m.$t(I.text),size:"large",disabled:I.disabled,"data-test-id":"EL-CHECKBOX-EMAn7J",onChange:C=>a(I)},null,8,["modelValue","onUpdate:modelValue","label","disabled","onChange"])):(e.openBlock(),e.createElementBlock("span",{key:1,class:e.normalizeClass(N(I)),style:{"margin-right":"10px"},"data-test-id":"SPAN-DCpyQn"},e.toDisplayString(I.customizeFields?I.text:m.$t(I.text)),3)),I.freeze?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock($,{key:2,class:"mdi mdi-lock-open-variant",style:{"margin-left":"10px"},"data-test-id":"V-ICON-BJQDvq",onClick:C=>n(I,_.value,"childSaveData")},null,8,["onClick"])),I.freeze?(e.openBlock(),e.createBlock($,{key:3,class:"mdi mdi-lock",style:{"margin-left":"10px"},"data-test-id":"V-ICON-fcAGHD",onClick:C=>n(I,_.value,"childSaveData")},null,8,["onClick"])):e.createCommentVNode("",!0)]),_:2},1032,["command"]))),128))]),_:1},8,["modelValue","handle"])]),_:1})])):e.createCommentVNode("",!0)])]),default:e.withCtx(()=>[e.createVNode(h,{type:"primary",color:"#125088",disabled:t.disabled,"data-test-id":"EL-BUTTON-WQugCA"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(o)("columnConfiguration"))+" ",1),e.createVNode(g,{class:"el-icon--right","data-test-id":"EL-ICON-9BpySy"},{default:e.withCtx(()=>[e.createVNode(x,{"data-test-id":"ARROW-DOWN-iXQ8EA"})]),_:1})]),_:1},8,["disabled"])]),_:1},8,["disabled"])}}},[["__scopeId","data-v-3af3d4a7"]]),ir={class:"dialog-footer"},Lt=pe({__name:"dialog",props:{title:String,value:Boolean,width:{type:Number,default:50},className:String,dialogContainerVHHeightName:{type:Number,default:60}},emits:["close"],setup(t,{emit:R}){const o=R,r=t,i=e.ref(!1);e.watch(()=>r.value,_=>{i.value=_});function u(){o("close")}return(_,S)=>{const y=e.resolveComponent("el-dialog");return e.openBlock(),e.createBlock(y,{modelValue:i.value,"onUpdate:modelValue":S[0]||(S[0]=a=>i.value=a),class:"global-dialog",width:`${t.width}rem`,center:"","align-center":"","close-on-click-modal":!1,"close-on-press-escape":!1,"modal-append-to-body":!0,"append-to-body":!0,onClose:u},{header:e.withCtx(()=>[e.renderSlot(_.$slots,"header",{},()=>[e.createTextVNode(e.toDisplayString(t.title),1)],!0)]),default:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(t.className||"dialog-container"),style:e.normalizeStyle(`max-height: calc(${t.dialogContainerVHHeightName}vh - 30px); overflow-y: auto`)},[e.renderSlot(_.$slots,"default",{},void 0,!0)],6),e.createElementVNode("div",ir,[e.renderSlot(_.$slots,"footer",{},void 0,!0)])]),_:3},8,["modelValue","width"])}}},[["__scopeId","data-v-342a6cdf"]]),cr={key:0,"data-test-id":"DIV-s8FkU33s"},Qe=pe({__name:"pageContent",props:{isTab:Boolean,isView:Boolean},setup(t){return(R,o)=>(e.openBlock(),e.createElementBlock("div",{style:e.normalizeStyle(`
2
+ height: calc(100vh - 5.5rem - ${t.isTab?"3.8rem":"0rem"});
3
+ width: 100%;
4
+ display: flex;
5
+ flex-direction: column;
6
+ `),"data-test-id":"DIV-9uS3aN"},[t.isView?(e.openBlock(),e.createElementBlock("div",cr,[e.renderSlot(R.$slots,"viewContent",{},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:"box1",style:e.normalizeStyle(`${t.isTab?"top: -3.5rem;width:30%":t.isView?"top: 3.5rem":"top: 0"}`),"data-test-id":"DIV-s8FkUs"},[e.renderSlot(R.$slots,"headerContent",{},void 0,!0)],4),e.createElementVNode("div",{style:e.normalizeStyle(t.isTab?{marginTop:0}:{marginTop:"2.5rem"}),"data-test-id":"DIV-b7sCPr"},[e.renderSlot(R.$slots,"searchContent",{},void 0,!0)],4),e.renderSlot(R.$slots,"tableContent",{style:"flex: auto"},void 0,!0)],4))}},[["__scopeId","data-v-cc7d1264"]]),Fe={Success:0,System_Error:10001,Service_Unavailable:10002,Remote_Service_Error:10003,IP_Limit:10004,Illegal_Request:10005,Token_Missing:10006,Unsupport_Mediatype:10007,Param_Error:10008,System_Busy:10009,Job_Expired:10010,RPC_Error:10011,Partial_Data_Error:10012,Time_Out:10013,Mail_Failed:10014,Decode_Failed:10015,Wechat_GetOpenID_Error:10016,SDK_Unsupport_Function:10017,API_Internet_Error:10018,SMS_Failed:10019,Insert_Problem_Type_Wrong:20001,Insert_Problem_KeyColumn_Exist:20002,Update_Problem_Type_Wrong:20003,Update_Problem_KeyColumn_Miss:20004,Select_Problem_No_Data:20005,Update_Error:20006,Insert_Error:20007,Upsert_Error:20008,Delete_Error:20009,DBRelated_Error:20010,Data_Duplicate:20011,Password_Wrong:30001,No_Right_to_Access:30002,UserID_UnExist:30003,Account_Quit:30004,Verify_Fail:30005,ID_SameAs_Password:30006,Auth_Error:30007,Machine_Number_Limit:30008,Token_Expired:30009,Password_Need_Change:30010,Cookie_Error:30011,Wechat_First_Login:30012,Token_Verify_Fail:30013,Option_Right_Invalid:30014,No_Right_to_Access_CNC:30015,Mail_Verify_Fail:30016,No_Right_to_Access_Equipment:30017,Equipment_Name_Duplicate:30018,Software_Serial_Number_Valid:30019,Input_Type_Wrong:40001,Input_Size_Exceeded:40002,File_Not_Exist:50001,File_Using_Conflict:50002,File_Not_ExistInRequest:50003,File_Upload_Number_Limit:50004,Oss_Upload_Fail:50005,File_Size_Exceeded:50006,Folder_Size_Exceeded:50007,File_Extension_Invalid:50008,File_Delete_Fail:50009,File_Related_Error:50010,File_InUse_Error:50011,Folder_Not_Exist:50012,Folder_InUse_Error:50013,Folder_Error:50014,Partial_File_Fail:50015,OSS_Error:50016,Connect_Broker_Failed:60001,Subscribe_Topic_Failed:60002,Publish_Topic_Failed:60003,Duplicate_Subscribe_Topic:60004,Not_Subscribe_Topic_Yet:60005,Unsubscribe_Topic_Failed:60006,DisConnect_Broker_Failed:60007,CNC_MQTT_Error:61001,CNC_Offline:61002,CNC_Busy:61003,CNC_Busy_MQTT:61004,SMB_MQTT_Error:62001,SMB_Offline:62002,SMB_Busy:62003,SMB_Busy_MQTT:62004,Client_Already_Connect:62005,CNC_Error:70001,CNC_Not_Regist:70002,CNC_Already_Decode:70003,CNC_Already_Bind_SynFactory:70004,CNC_Name_Duplicate:70005,CNC_Connection_Full:70006,CNC_Not_Binding:70007,CNC_Disk_Not_Enough:70008,CNC_Dispatch_Type:70009,CNC_Busy_FileRelated:70010,Robot_CNC_Direct_Dispatch_Deny:70011,CNC_Busy_LogBackup:70012,CNC_Disconnected:70013,CNC_Invalid_BindingType:70014,CNC_Invalid_Brand:70015,CNC_Busy_ReportWorkRelated:70016,CNC_Check_Connection:70017,Decode_Error:80001,Decode_Illegal:80002,Subaccount_Auth_Illegal:80003,VerifyCode_Illegal:80004,SN_Not_Found:80005,Decode_DataBase_Action_Error:80006,Remote_Decode_Error:80007,CNCType_Model_Not_Found:80008,Wechat_Error:90001,SubAccount_Multi_Wechat_Bind:90002,MotherAccount_Multi_Wechat_Bind:90003,Production_Plan_Error:100001,Production_Order_Duplicate:100002,Order_Duplicate:100003,InValid_WorkOrderID:100004,InValid_CNC_ID:100005,InValid_ExceptedStartTime_Parameter:100006,Out_Of_Number:100007,Production_Order_Not_Same_Order:100008,Work_Order_Inconsistency:100009,PLM_Data_Inconsistent:100010,Work_Order_Comes_From_OT:100011,InValid_ProductionOrderID:100012,PLM_CraftPath_Info_Inconsistent:100013,PLM_ProdctionProcess_Info_Inconsistent:100014,PLM_Machine_Info_Inconsistent:100015,InValid_Shift_ID:100016,InValid_Emp_ID:100017,Part_Serial_Number_In_Use:100018,Part_Serial_Number_Process_Lock:100019,Serial_Number_Count_Setting_Conflict:100020,Insufficient_Number:100021,Work_Order_Status_Error:100022,Part_Serial_Number_Length_Limit:100023,Duplicate_SN_List:100024,Work_Order_Duplicate_Start:100025,Work_Order_Start_Fail:100026,Work_Order_Suspend_Fail:100027,Work_Order_Close_Fail_But_Suspend_Success:100028,Work_Order_Part_Count_Not_Fulfill:100029,Work_Order_Start_Switch_Fail:100030,Duplicate_Production_Order_List:100031,Work_order_Can_not_Direct_Start_work:100032,Unbind_Part_Serial_Number_When_Start_work:100033,InValid_Part_Serial_Number:100034,Machine_Send_File_When_Start_Work:100035,Serial_Number_Bind_Different_Part_Number:100036,Need_Part_Serial_Number_Export_Time:100037,Wrong_Work_Quantity:100047,Shift_Error:120001,Employee_Error:120002,Shift_Pattern_Not_Exist:120003,Same_Pattern_System_Exist:120004,Pattern_Shift_Number_Conflict:120005,Shift_Time_Overlap:120006,Shift_Time_Sum_Exceed:120007,Shift_Start_End_Time_Conflict:120008,Shift_System_Not_Exist:120009,Shift_ID_Shift_System_Conflict:120010,Work_Report_Review_Error:100056,Mobile_Message_Publish_Error:10020,App_Version_Not_Null:11001,App_Version_Error:11002,TenantID_Not_Null:11003,System_DB_Inner_Error:11004,Call_API_Exception:11009,DB_Number_Max:20012,Software_Serial_Number_Expired:30020,Login_All_SN_Invalid_Admin:30021,Login_All_SN_Invalid_Not_Admin:30022,Input_Param_Conflict:40003,Search_Param_Unsupport:40004,CNC_Status_Disable:70018,CNC_Status_Active:70019,Work_Time_Setting_Invalid:100038,Invalid_Equipment_Group:100039,ProcessOrder_Duplicate:100040,Invalid_ProcessOrder_Status:100041,Invalid_Equip_Resource:100042,Process_Order_Not_Exist:100043,ProductionOrder_Not_Exist:100044,Production_Count_Belong_To_Failed:100045,Work_Order_Not_Exist:100046,Work_Order_Not_Select_EquipID:100048,Wrong_Write_Custom_Data:100050,Wrong_Relate_Work_report:100051,ProductionOrder_ProcessOrder_RequiredThroughput_Inconsistent:100052,Null_Custom_Data:100053,Wrong_Custom_Form_Id:100054,Work_Report_Review_Setting_Error:100055,Break_Time_Out_Of_Range:120011,FileDispatch_Error:130001,TakeEvent_ID_Error:130002,Service_Original_Connect_Error:130003,IsProxyCheck_Error:130004,IsCNCIdentityValid_Check_Error:130005,CanSNAccessEquipment_Check_Error:130006,SNCanNotAccessEquipment:130007,GetTriggerHistory_Error:130008,Duplicate_Setting_Data:130009,Setting_Number_Limit_Exceed:130010,None_Data_Delete:130011,Material_Error:140001,MaterialPartNumber_Invalid:140002,MaterialPartNumber_Duplicated:140003,MaterialType_Duplicated:140004,MaterialPartNumber_Not_Found:140005,MaterialBOM_Exist:140006,MaterialBOM_Child_Relation_Invalid:140007,MaterialBOM_RelationShip_Invalid:140008,MaterialBOM_Self_Contained:140009,MaterialBOM_Not_Exist:140010,MaterialBOM_Bulk_Insert_Exceed:140011,MaterialBOM_Version_Not_Exist:140012,Material_Sync_To_PDM_Fail:140013,Material_Do_Not_Have_BatchNumber_Setting:140014,MaterialPartNumber_Status_Disable:140015,Out_Storage_Not_Exit:140025,Out_Stock_Space_Not_Exit:140026,In_Storage_Not_Exit:140027,In_Stock_Space_Not_Exit:140028,Def_In_Storage_Not_Exit:140029,Def_In_Stock_Space_Not_Exit:140030,Purchase_In_Storage_Not_Exit:140031,Purchase_In_Stock_Space_Not_Exit:140032,Response_Fomat_Error:150001,Equipmnet_Craft_Bind_Error:160001,Template_Format_Error:160002,Craft_NO_ToolLIfeTemplate:160003,Tool_Axis_Error:160004,Specification_Update_Error:160005,CVUS_Error:190001,CVUS_Setting_Not_Exist:190002,CVUS_Parameter_Validation_Fail:190003,CVUS_SETTING_COUNT_LIMIT:190004,CVUS_VARTYPE_LENGTH_LIMIT:190005,CVUS_Map_Diff_Set_Result:190006,CVUS_Map_Error_Busy:190007,CVUS_Map_When_Get_Setting:190008,CVUS_Map_Unsup_Var:190009,CVUS_Map_Var_Addr:190010,CVUS_Map_Unsup_Var_Tp:190011,CVUS_Map_Unsup_Freq:190012,CVUS_EventID_Not_Exist:190013,CVM_Parameter_Validation_Fail:190014,CVM_SETTING_COUNT_LIMIT:190015,CVM_VARTYPE_LENGTH_LIMIT:190016,CVM_Take_Event_ID:190017,CVM_Different_Result:190018,CVM_Busy_Var_Modifying:190019,CVM_Error_DataType_Trans_Error:190020,CVM_Error_Unsupport_VarType:190021,CVM_Error_Wrong_Var_Address:190022,CVM_Error_Unsupport_DataType:190023,CVUS_Error_GroupSub_NotExist:190024,CVUS_Equip_Not_Support:190025,Data_Already_Exists:210001,Data_Count_Few:210002,APP_Service_Common:220001,APP_Not_Exist:220002,APP_Duplicate_MQ_Connection:220003,Part_Serial_Number_Error:230001,Part_Serial_Number_Already_Bind_Part_Number:230002,Part_Serial_Number_Not_Found:230003,Part_Serial_Number_Do_Not_Bind_Part_Number:230004,Operation_Uuid_Already_Bind_Other_Part_Number:230005,Custom_Parameter_Already_Used_By_Part_Serial_Number_Setting:230006,Serial_Number_Rule_Setting_Name_Duplicate:230007,Serial_Number_Interval_Setting_Error:230008,Machine_Type_Exit_Error:240001,Cnc_Already_Bound:240002,Batch_Number_Error:250001,Batch_Number_Setting_Name_Duplicate:250002,Batch_Number_Setting_ID_Not_Exist:250003,Batch_Number_Setting_Not_Enable:250004,Batch_Number_Insufficient:250005,Batch_Number_Already_Bind_Other_Production_Order:250006,Illegal_Batch_Number:250007,Batch_Number_Setting_Exceed_Max_Digit:250008,Field_Count_Max:300001,Field_Name_Repeat:300002,Process_Is_Not_Found:110002,Route_Version_Is_Not_Found:110006,Process_Repeat:110007,Process_Count_Exceed_Limit:110008,Template_Not_Exist:110009,No_Beat_Point:37001,Last_Process:340011},se={logins:"/Internal/FrontEnd/Auth/Login",logout:"/Internal/FrontEnd/Auth/Logout",refreshToken:"/Internal/FrontEnd/Auth/Refresh",materialList:"/Internal/Common/Query/MaterialList",empID:"/Internal/FrontEnd/Auth/User/EmpID",employeeList:"/Internal/FrontEnd/Management/Employee/List",QueryMyPermission:"/Internal/FrontEnd/Management/Permission/QueryMyPermission",queryPageSetting:"/Internal/FrontEnd/Management/Employee/QueryPageSetting",updatePageSetting:"/Internal/FrontEnd/Management/Employee/UpdatePageSetting",getViewOnlyReadList:"/Internal/View/CommonList",getViewOptEmployeeList:"/Internal/View/GetUserList",getViewLogList:"/Internal/View/OperateLogList",getViewList:"/Internal/View/List",addView:"/Internal/View/InsertView",IsExistViewName:"/Internal/View/IsExistViewName",modifyView:"/Internal/View/EditView",deleteView:"/Internal/View/DeleteView",getViewTabDetail:"/Internal/View/GetView",getViewFieldList:"/Internal/View/GetFieldList",upadateViewOrder:"/Internal/View/UpdateViewOrder",getViewPermissionEmployeeList:"/Internal/FrontEnd/Management/Employee/EmployeeList",getViewpersionList:"/Internal/FrontEnd/Management/Employee/AllEmployeeList"},qt=process.env.NODE_ENV;function Be(t,R=""){let o=R;o.length===0&&(o=t);let r="";if(qt==="production"){const{protocol:i}=window.location,{hostname:u}=window.location,{port:_}=window.location;r=`${i}//${u}:${_}/${t}`}else qt==="development"&&(r=`/${o}`);return r}const lr=Be("PrivateCloudCore/API/V1","PrivateCloudCoreApi_SynComponent/PrivateCloudCore/API/V1"),ie=ve.create({baseURL:lr}),dr={refreshToken(t){const R={headers:{"Content-Type":"application/json",token:"store.state.login.token"}};return ie.post(se.refreshToken,t,R)},logins(t){return ie.post(se.logins,t)},logout(){return localStorage.removeItem("synFactoryUserID"),localStorage.removeItem("synFactoryUserName"),localStorage.removeItem("synFactoryPermission"),localStorage.removeItem("synFactoryEmpID"),ie.get(se.logout)},getEmployeeList(t){return ie.post(se.employeeList,t)},QueryMyPermission(t){return ie.get(se.QueryMyPermission,{params:t})},queryPageSetting(t){return ie.get(`${se.queryPageSetting}?permissionCode=${t.permissionCode}&pageType=${t.pageType}`)},updatePageSetting(t){return ie.post(se.updatePageSetting,t)},queryDeptAssigneeInfoList(t){return ie.post(se.queryDeptAssigneeInfoList,t)},getViewOnlyReadList(t){return ie.post(se.getViewOnlyReadList,t)},getViewOpLogList(t){return ie.post(se.getViewLogList,t)},getViewEmployeeList(t){return ie.post(se.getViewOptEmployeeList,t)},getViewList(t){return ie.post(se.getViewList,t)},addView(t){return ie.post(se.addView,t)},checkViewName(t){return ie.post(se.IsExistViewName,t)},editView(t){return ie.post(se.modifyView,t)},deleteView(t){return ie.get(`${se.deleteView}?id=${t}`)},getViewDetail(t,R){return ie.get(`${se.getViewTabDetail}?id=${t}&isCopy=${R}`)},getViewFilterList(t){return ie.post(se.getViewFieldList,t)},viewSortList(t){return ie.post(se.upadateViewOrder,t)},getViewReadEmployeeList(t){return ie.post(se.getViewPermissionEmployeeList,t)},getViewPersionList(t){return ie.post(se.getViewpersionList,t)}},ur=Be("API/V1","baseApi_SynComponent/API/V1"),Se=ve.create({baseURL:ur}),Ne={docCustomUpload:"/Internal/FrontEnd/DmlDocCustom/Upload",querySetting:"/Internal/FrontEnd/DmlDocCustom/QuerySetting",docDownloadFile:"/Internal/FrontEnd/DmlDocCustom/DownloadFile",docViewFile:"/Internal/FrontEnd/DmlDocCustom/ViewFile",updateColumnSettingNext:"/Internal/FrontEnd/EmpDisplayConfig/Field",queryColumnSettingNext:"/Internal/FrontEnd/EmpDisplayConfig/Field/Query",insertOrUpdateFilterCondition:"/Internal/FrontEnd/DmlFilterCondition/DmlFilterCondition/InsertOrUpdate",queryFilterCondition:"/Internal/FrontEnd/DmlFilterCondition/DmlFilterCondition/Query",getFieldSetting:"/Internal/FrontEnd/DmlFilterCondition/DmlFilterCondition/GetFieldSetting"},mr={docCustomUpload(t){const R={headers:{"Content-Type":"multipart/form-data"}};return Se.post(`${Ne.docCustomUpload}/${t.DocCode}/${t.DocCustomId}`,t.file,R)},querySetting(t){const R={headers:{"Content-Type":"application/json"}};return Se.post(Ne.querySetting,t,R)},docDownloadFile(t){const R={headers:{"Content-Type":"application/json"},responseType:"blob"};return Se.post(Ne.docDownloadFile,t,R)},updateColumnSettingNext(t){const R={headers:{"Content-Type":"application/json"}};return Se.put(Ne.updateColumnSettingNext,t,R)},queryColumnSettingNext(t){const R={headers:{"Content-Type":"application/json"}};return Se.post(Ne.queryColumnSettingNext,t,R)},insertOrUpdateFilterCondition(t){return Se.post(Ne.insertOrUpdateFilterCondition,t)},queryFilterCondition(t){return Se.post(Ne.queryFilterCondition,t)},getFieldSetting(t){return Se.get(`${Ne.getFieldSetting}?permissionCode=${t}`)}},Wt={planFormulationQuery:"/Internal/Common/ProductionPlan/MainPage/Search",GetReviewRecord:"/Internal/Common/ProductionReview/GetReviewRecord"},pr=Be("MES/API/V1","mesApi_SynComponent/MES/API/V1"),Ut=ve.create({baseURL:pr}),$r={planFormulationQuery(t){return Ut.post(Wt.planFormulationQuery,t)},GetReviewRecord(t){return Ut.post(Wt.GetReviewRecord,t)}},hr={materialCategoryLastLevel:"/Internal/FrontEnd/Command/materialType/GetMaterialCategoryLowestLevel"},gr=Be("MMS/API/V1","mmsApi_SynComponent/MMS/API/V1"),fr=ve.create({baseURL:gr}),Ie={...dr,...mr,...$r,...{materialCategoryLastLevel(){return fr.get(hr.materialCategoryLastLevel)}}},zt=t=>new Promise(R=>{setTimeout(()=>{const o=t+1;return R(o),o},3e3)}),Qt=()=>{const t=process.env.NODE_ENV;if(t==="production"){const{protocol:R}=window.location,{hostname:o}=window.location,{port:r}=window.location;window.location.href=`${R}//${o}:${r}/BASE/login`}else t==="development"&&(window.location.href="/login")},jt=async(t,R,o)=>{let r={};return await Ie.refreshToken({account:localStorage.synFactoryUserID}).then(async i=>{switch(i.data.code){case Fe.Success:{await t(...R).then(u=>{r=u}).catch(u=>{r=u});break}default:Ie.logout().then(()=>{Qt()}).catch(u=>{console.log(u)}),r={},K.ElMessage.error("Refresh Token Api Error!")}}).catch(async i=>{r=i;const u=await zt(o);return u>1?(K.ElMessage.error(rr.global.t("canNotGetToken")),r):await jt(t,R,u)}),r},Gt=async(t,R,o,r)=>{try{const i=await t(...R);return i.data.code===Fe.Verify_Fail||i.data.code===Fe.Cookie_Error||i.data.code===Fe.UserID_UnExist?(Ie.logout().then(()=>{Qt()}).catch(u=>{console.log(u)}),i):i.data.code===Fe.Token_Expired?await jt(t,R,0):i}catch(i){if(await zt(o)>1){if(r)return i;throw i}return await Gt(t,R,o+1,r)}};function Ht(t,R=!1){return new Proxy(t,{get(...o){const r=Reflect.get(...o);return async function(...u){return Gt(r,u,0,R)}}})}Ht(Ie);const ae=Ht(Ie,!0),br=["data-test-id"],xr=["data-test-id"],yr=["data-test-id"],_r=["data-test-id"],Me=pe({__name:"Pagination",props:{total:{type:Number,default:0},currentPage:{type:Number,default:1},pageSize:{type:Number,default:20},selectedNum:{type:Number,default:0},hasSelected:{type:Boolean,default:!1},currentCount:{type:Number,default:0},pagerCount:{type:Number,default:7},dataTestId:{type:String,default:""},pageType:{type:Number,default:1},permissionCode:{type:String,default:""}},emits:["changePage"],setup(t,{emit:R}){const o=t,r=R,i=e.ref({page:o.currentPage,size:o.pageSize});function u(){r("changePage",i.value)}function _(y){i.value.size=y,u(),o.permissionCode&&ae.updatePageSetting({permissionCode:o.permissionCode,pageNumber:y,pageType:o.pageType})}function S(y){i.value.page=y,u()}return e.watch(()=>o.currentPage,y=>{i.value.page=y}),e.onMounted(()=>{o.permissionCode&&ae.queryPageSetting({permissionCode:o.permissionCode,pageType:o.pageType}).then(y=>{y.data.code===0&&(i.value.size=parseInt(y.data.content.pageNumber,10),u())})}),(y,a)=>{const n=e.resolveComponent("el-pagination");return e.openBlock(),e.createBlock(n,{"current-page":i.value.page,"onUpdate:currentPage":a[0]||(a[0]=N=>i.value.page=N),"page-size":i.value.size,"onUpdate:pageSize":a[1]||(a[1]=N=>i.value.size=N),class:"pagination-table","page-sizes":[5,10,20,50,100,200],disabled:!t.total,background:"",layout:"slot, sizes, prev, pager, next, jumper",total:t.total,"pager-count":t.pagerCount,"data-test-id":`${t.dataTestId}-EL-PAGINATION-fvu9sB`,onSizeChange:_,onCurrentChange:S},{default:e.withCtx(()=>[e.createElementVNode("div",{class:"slot_style","data-test-id":`${t.dataTestId}-DIV-yISBZh`},[e.createElementVNode("span",{"data-test-id":`${t.dataTestId}-SPAN-lX8Y8q`},e.toDisplayString(y.$t("currentCount",{currentSize:t.currentCount}))+",",9,xr),t.hasSelected?(e.openBlock(),e.createElementBlock("span",{key:0,"data-test-id":`${t.dataTestId}-SPAN-BlXSV7`},e.toDisplayString(y.$t("selectedRecordsNum",{selectedNum:t.selectedNum}))+", ",9,yr)):e.createCommentVNode("",!0),e.createElementVNode("span",{"data-test-id":`${t.dataTestId}-SPAN-qnY4fg`},e.toDisplayString(y.$t("allRecordsNum",{total:t.total})),9,_r)],8,br)]),_:1},8,["current-page","page-size","disabled","total","pager-count","data-test-id"])}}},[["__scopeId","data-v-48b54660"]]),Sr={class:"custom-title"},Nr={style:{overflow:"auto","max-height":"500px"}},Cr={key:1},Er={key:0,class:"input-max-width"},Tr={key:1},Dr={key:2,class:"input-max-width"},Pr={key:3,class:"input-max-width"},Or={key:0,style:{"max-height":"200px","max-width":"200px"}},Yt=pe({__name:"popover",props:{value:{type:Boolean,required:!0},popInformation:{type:Object,required:!0},popType:String,popCustomizeFields:{type:Object,default:()=>{}},popTitle:{type:String,default:"物料详情"},popStrategies:{type:Object,required:!0}},setup(t){const{t:R}=$e.useI18n(),o=t,r=e.ref(o.value),i=e.ref(!1),u=e.ref({}),_=e.computed(()=>o.popStrategies),S=e.ref(null),y=R("materialNoImage"),a=async()=>{try{const{data:x}=await ae.getMaterialImage({materialPartNumber:u.value[_.value.numberField]});if(x!=null&&x.type.includes("image")){const g=new Blob([x],{type:x.type}),h=new FileReader;h.readAsDataURL(g),h.onload=()=>{S.value=h.result}}}catch(x){console.error("[error]错误:",x),K.ElMessage.error(R("apiError"))}},n=(x,g)=>{const h=g.filter(c=>c.docCustomId===x[_.value.customizeField.customizeFieldKey])[0][_.value.customizeField.writeValue];window.open(h,"_blank")},N=(x,g)=>{const h=window.URL.createObjectURL(new Blob([g.data],{type:g.headers["content-type"]})),c=document.createElement("a");c.href=h,c.setAttribute("download",x),document.body.appendChild(c),c.click(),setTimeout(()=>{window.URL.revokeObjectURL(h),document.body.removeChild(c)},0)},l=async x=>{const g=x.fileName;if(x){const h={docCode:"doc_5",docCustomId:x.docCustomId,fileId:x.fileId};i.value=!0;try{const c=await ae.docDownloadFile(h);c.status===200?(N(g,c),K.ElMessage.success(R("downloadSuccessful"))):K.ElMessage.error(R("apiError"))}catch(c){console.error("[error]错误:",c),K.ElMessage.error(R("apiError"))}finally{i.value=!1}}},m=(x,g)=>{const h=o.popCustomizeFields.find(d=>d[_.value.customizeField.customizeFieldKey]===x),c=g==null?void 0:g.find(d=>d.docCustomId===x);if(g&&h&&c){if(h[_.value.customizeField.type]===3)return K.dayjs(Number(c[_.value.customizeField.writeValue])).format("YYYY-MM-DD HH:mm:ss");if(h[_.value.customizeField.type]===4)try{const d=JSON.parse(c[_.value.customizeField.writeValue]);return d?`${K.dayjs(Number(d[0])).format("YYYY-MM-DD HH:mm:ss")} ~ ${K.dayjs(Number(d[1])).format("YYYY-MM-DD HH:mm:ss")}`:""}catch{return""}return h[_.value.customizeField.type]===5?c.fileData&&c.fileData.length!==0?c.fileData.map(d=>({...d,docCustomId:c.docCustomId})):"":h[_.value.customizeField.type]===7||h[_.value.customizeField.type]===8?c[_.value.customizeField.writeValue]?JSON.parse(c[_.value.customizeField.writeValue]):"":c[_.value.customizeField.writeValue]||""}return""},p=async()=>{var x;try{u.value=o.popInformation,(x=_.value.customizeField)!=null&&x.expandField&&(u.value.customValues=u.value.customValues.map(g=>{const{customAttribute:h,...c}=g;return{...c,...h}}))}catch(g){console.error("[error]错误:",g),K.ElMessage.error(R("apiError"))}};return e.onMounted(()=>{e.nextTick(async()=>{i.value=!0,await p(),await a(),i.value=!1})}),(x,g)=>{const h=e.resolveComponent("el-divider"),c=e.resolveComponent("el-input"),d=e.resolveComponent("el-form-item"),$=e.resolveComponent("el-tooltip"),s=e.resolveComponent("el-check-tag"),T=e.resolveComponent("v-icon"),P=e.resolveComponent("el-button"),D=e.resolveComponent("el-tag"),I=e.resolveComponent("el-image"),C=e.resolveComponent("el-form"),f=e.resolveComponent("el-popover"),k=e.resolveDirective("loading");return e.openBlock(),e.createBlock(f,{modelValue:r.value,"onUpdate:modelValue":g[0]||(g[0]=F=>r.value=F),placement:"right",width:"350","hide-after":200},{reference:e.withCtx(()=>[e.renderSlot(x.$slots,"reference",{},void 0,!0)]),default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",null,[e.createElementVNode("div",Sr,e.toDisplayString(e.unref(R)("materialDetails")),1),e.createVNode(h),e.createElementVNode("div",Nr,[e.createVNode(C,{model:u.value,"label-width":"25%","label-position":"right"},{default:e.withCtx(()=>[e.createVNode(d,{label:e.unref(R)("productName")},{default:e.withCtx(()=>[e.createVNode(c,{class:"input-max-width",value:u.value[_.value.nameField],readonly:""},null,8,["value"])]),_:1},8,["label"]),e.createVNode(d,{label:e.unref(R)("spec")},{default:e.withCtx(()=>[e.createVNode(c,{class:"input-max-width",value:u.value[_.value.specField]||"--",readonly:""},null,8,["value"])]),_:1},8,["label"]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.popCustomizeFields,F=>(e.openBlock(),e.createBlock(d,{key:F[_.value.customizeField.key]},{label:e.withCtx(()=>[F[_.value.customizeField.label].length>6?(e.openBlock(),e.createBlock($,{key:0,effect:"dark",content:F[_.value.customizeField.label],placement:"top"},{default:e.withCtx(()=>[e.createElementVNode("span",null,e.toDisplayString(`${F[_.value.customizeField.label].slice(0,6)}...`),1)]),_:2},1032,["content"])):(e.openBlock(),e.createElementBlock("span",Cr,e.toDisplayString(F[_.value.customizeField.label]),1))]),default:e.withCtx(()=>[F[_.value.customizeField.type]===5&&m(F[_.value.customizeField.key],u.value[_.value.customizeField.value]).length!==0?(e.openBlock(),e.createElementBlock("span",Er,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m(F[_.value.customizeField.key],u.value[_.value.customizeField.value]),v=>(e.openBlock(),e.createBlock(s,{key:v.fileId,checked:"",type:"primary",style:{"margin-right":"0.5rem"},round:"",onClick:w=>l(v)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(v.fileName),1)]),_:2},1032,["onClick"]))),128))])):F[_.value.customizeField.type]===6&&m(F[_.value.customizeField.key],u.value[_.value.customizeField.value])!==""?(e.openBlock(),e.createElementBlock("span",Tr,[e.createVNode($,{content:m(F[_.value.customizeField.key],u.value[_.value.customizeField.value]),placement:"top",enterable:!1},{default:e.withCtx(()=>[e.createVNode(P,{link:"",onClick:v=>n(F,u.value[_.value.customizeField.value])},{default:e.withCtx(()=>[e.createVNode(T,{class:"mdi mdi-link"})]),_:2},1032,["onClick"])]),_:2},1032,["content"])])):F[_.value.customizeField.type]===7&&m(F[_.value.customizeField.key],u.value[_.value.customizeField.value])!==""?(e.openBlock(),e.createElementBlock("span",Dr,[e.createVNode(D,{type:"primary",style:{"margin-right":"0.5rem"},round:""},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(m(F[_.value.customizeField.key],u.value[_.value.customizeField.value])),1)]),_:2},1024)])):F[_.value.customizeField.type]===8&&m(F[_.value.customizeField.key],u.value[_.value.customizeField.value])!==""?(e.openBlock(),e.createElementBlock("span",Pr,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m(F[_.value.customizeField.key],u.value[_.value.customizeField.value]),(v,w)=>(e.openBlock(),e.createBlock(D,{key:w,type:"primary",style:{"margin-right":"0.5rem"},round:""},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(v),1)]),_:2},1024))),128))])):(e.openBlock(),e.createBlock(c,{key:4,class:"input-max-width",value:m(F[_.value.customizeField.key],u.value[_.value.customizeField.value])||"--",readonly:""},null,8,["value"]))]),_:2},1024))),128)),e.createVNode(d,{label:e.unref(R)("preview")},{default:e.withCtx(()=>[S.value?(e.openBlock(),e.createElementBlock("div",Or,[e.createVNode(I,{src:S.value,fit:"contain"},null,8,["src"])])):(e.openBlock(),e.createBlock(c,{key:1,class:"input-max-width",value:e.unref(y),readonly:""},null,8,["value"]))]),_:1},8,["label"])]),_:1},8,["model"])])])),[[k,i.value]])]),_:3},8,["modelValue"])}}},[["__scopeId","data-v-c926e19e"]]),Ae={__name:"filterCriteria",props:{filterConditions:{type:Array,default:()=>[]},fieldSetting:{type:Array,default:()=>[]},isItDefault:{type:Boolean,default:!1},otherFilterConditions:{type:Array,default:()=>[]},selectOptions:{type:Object,default:function(){return{}}}},setup(t,{expose:R}){const{t:o}=$e.useI18n(),r=t,i=e.ref(1),{filterConditions:u,fieldSetting:_,isItDefault:S,otherFilterConditions:y}=r,a=w=>[1,5,6].includes(w),n=w=>[7,8].includes(w),N=w=>[3,4].includes(w),l=w=>[5,6,7,8].includes(w),m=e.ref([]),p=w=>{const M={};return[9,10].includes(w==null?void 0:w.Operator)||w.ColumnType===2&&[13,14].includes(w.Operator)&&(M.NumberRangeValue=[{validator:(E,W,O)=>{if(W.length===1&&W[0]!==null)return O(new Error(o("inputValidRange")));if(W.length===2&&W[0]===null!=(W[1]===null))return O(new Error(o("inputValidRange")));if(W.length===2&&W[0]!==null&&W[1]!==null&&W[0]>W[1])return O(new Error(o("startValueCannotGreaterThanEndValue")));O()},trigger:"change"}]),M},x=w=>{u[w].NumberRangeValue=[],m.value[w].clearValidate("NumberRangeValue"),m.value[w].validateField("NumberRangeValue")},g=e.ref([{value:0,label:"daily",timeFormat:"YYYY-MM-DD"},{value:1,label:"hour",timeFormat:"YYYY-MM-DD HH"},{value:2,label:"minute",timeFormat:"YYYY-MM-DD HH:mm"},{value:3,label:"second",timeFormat:"YYYY-MM-DD HH:mm:ss"}]),h=w=>{var M;return(M=g.value.find(E=>E.value===w))==null?void 0:M.timeFormat},c=e.ref([{value:2,label:"today"},{value:3,label:"yesterday"},{value:4,label:"thisWeek"},{value:5,label:"lastWeek"},{value:6,label:"thisMonth"},{value:7,label:"lastMonth"},{value:8,label:"lastThreeMonths"},{value:0,label:"custom"},{value:1,label:"customRange"}]),d=e.ref([{value:0,label:"past"},{value:1,label:"future"}]),$=e.ref([{value:1,label:"daily"},{value:2,label:"week"},{value:3,label:"month"},{value:4,label:"quarter"},{value:5,label:"year"}]),s=e.ref([{value:0,label:"intervalStart"},{value:1,label:"intervalEnd"}]),T=e.ref([{value:1,label:"greaterThan"},{value:2,label:"greaterThanOrEqualTo"},{value:3,label:"lessThan"},{value:4,label:"lessThanOrEqualTo"},{value:5,label:"equalTo"},{value:6,label:"notEqualTo"},{value:7,label:"contains"},{value:8,label:"notContains"},{value:9,label:"yesEmpty"},{value:10,label:"notEmpty"},{value:11,label:"selectRange"},{value:12,label:"dynamicFiltering"},{value:13,label:"inRange"},{value:14,label:"notInRange"},{value:15,label:"isOneOf"},{value:16,label:"notAnyOf"}]),P=w=>{const E={1:[5,6,7,8,9,10],2:[9,10,13,14],3:[1,2,3,4,5,9,10,11,12],4:[1,2,3,4,5,9,10,11,12],5:[5,6,7,8,9,10],6:[5,6,7,8,9,10],7:[5],8:[9,10,15,16]}[w]||[];return T.value.filter(W=>E.includes(W.value))},D=w=>{if(w==null)return[];try{if(r.selectOptions&&typeof r.selectOptions=="object"){if(r.selectOptions[w])return Array.isArray(r.selectOptions[w])?r.selectOptions[w]:[];const W=Object.keys(r.selectOptions).find(O=>O.endsWith("Options")&&w.includes(O.replace("Options","")));if(W)return Array.isArray(r.selectOptions[W])?r.selectOptions[W]:[]}const E=(Array.isArray(_)?_:[]).find(W=>W&&W.key===w);if(E&&(E.fieldTypeId===7||E.fieldTypeId===8)&&E.fieldSelectOptions)try{const W=JSON.parse(E.fieldSelectOptions);return Array.isArray(W)?W.map(O=>({label:E.isDoc?O:O?O.key||O.label||O.value:"",value:E.isDoc?O:O?O.value:""})):[]}catch{K.ElMessage.error(o("apiError"))}return[]}catch{return[]}},I=w=>[1,5,6].includes(w)?5:w===2?13:[3,4].includes(w)?11:w===7?5:w===8?15:null,C=(w,M)=>{const E=r.fieldSetting.find(O=>O.key===w),W=u[M];Object.assign(W,{CloumnName:w,ColumnType:E==null?void 0:E.fieldTypeId,Operator:I(E==null?void 0:E.fieldTypeId),StartOrEnd:null,TextValue:null,IsCustomSetting:E==null?void 0:E.isDoc,DocCustomId:E!=null&&E.isDoc?E.key:null,NumberRangeValue:[],SelectRangeValue:[],SingleSelectValue:null,DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:[3,4].includes(E==null?void 0:E.fieldTypeId)?0:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:null},DateTimeDynamicFilteringCustomize:[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]})},f=(w,M)=>{const E=u[M];Object.assign(E,{TextValue:null,NumberRangeValue:[],SelectRangeValue:[],SingleSelectValue:null,DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:null},DateTimeDynamicFilteringCustomize:[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]})},k=(w,M)=>{const E=u[M];E.DateTimeDynamicFilteringCustomize=[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]},F=w=>{K.ElMessageBox.confirm(o("confirmToDelete"),o("confirmDelete"),{confirmButtonText:o("confirm"),cancelButtonText:o("cancel"),type:"warning"}).then(()=>{u.splice(w,1)})};return R({validateAllForms:async()=>{await e.nextTick();try{return await Promise.all(m.value.map(w=>{var M;return((M=w==null?void 0:w.validate)==null?void 0:M.call(w))||Promise.resolve()})),!0}catch{return K.ElMessage.error(o("checkForm")),!1}}}),(w,M)=>{const E=e.resolveComponent("el-option"),W=e.resolveComponent("el-select"),O=e.resolveComponent("el-form-item"),q=e.resolveComponent("el-col"),B=e.resolveComponent("el-input"),U=e.resolveComponent("el-input-number"),j=e.resolveComponent("el-button"),z=e.resolveComponent("el-date-picker"),J=e.resolveComponent("el-row"),te=e.resolveComponent("el-form");return e.openBlock(),e.createElementBlock("div",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(u),(V,H)=>(e.openBlock(),e.createBlock(te,{ref_for:!0,ref_key:"filterForm",ref:m,key:H,model:V,rules:p(V),"data-test-id":`EL-FORM-t4nN1q-${H}`},{default:e.withCtx(()=>[e.createVNode(J,{gutter:10,"data-test-id":"EL-ROW-i6hi71"},{default:e.withCtx(()=>[e.createVNode(q,{span:6,"data-test-id":"EL-COL-YtO6It"},{default:e.withCtx(()=>[e.createVNode(O,{label:e.unref(S)?e.unref(o)("dataFilter"):"",prop:"CloumnName","data-test-id":"EL-FORM-ITEM-X2DfMG"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.CloumnName,"onUpdate:modelValue":L=>V.CloumnName=L,filterable:"","data-test-id":"EL-SELECT-Tla5bC",onChange:L=>C(L,H)},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(_),(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.key,label:e.unref(o)(L.fieldName),value:L.key,disabled:e.unref(u).some(b=>b.CloumnName===L.key)||e.unref(y).some(b=>b.CloumnName===L.key),"data-test-id":`EL-OPTION-24JqP4-${Z}`},null,8,["label","value","disabled","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","onChange"])]),_:2},1032,["label"])]),_:2},1024),V.CloumnName?(e.openBlock(),e.createBlock(q,{key:0,span:4,"data-test-id":"EL-COL-o6tUCn"},{default:e.withCtx(()=>[e.createVNode(O,{prop:"Operator","data-test-id":"EL-FORM-ITEM-lwyEu4"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.Operator,"onUpdate:modelValue":L=>V.Operator=L,placeholder:e.unref(o)("selectOperation"),"data-test-id":"EL-SELECT-B8JVKa",onChange:L=>f(L,H)},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(P(V.ColumnType),(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-698Ga6-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder","onChange"])]),_:2},1024),V.ColumnType===4?(e.openBlock(),e.createBlock(O,{key:0,prop:"StartOrEnd","data-test-id":"EL-FORM-ITEM-iI09Nl"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.StartOrEnd,"onUpdate:modelValue":L=>V.StartOrEnd=L,style:{"margin-top":"1rem"},placeholder:e.unref(o)("startOrEndTime"),"data-test-id":"EL-SELECT-hYLMt4"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-qkQDv6-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)):e.createCommentVNode("",!0)]),_:2},1024)):e.createCommentVNode("",!0),V.Operator&&![9,10].includes(V.Operator)?(e.openBlock(),e.createBlock(q,{key:1,span:12,"data-test-id":"EL-COL-bWX9Cb"},{default:e.withCtx(()=>[a(V.ColumnType)&&l(V.Operator)?(e.openBlock(),e.createBlock(O,{key:0,prop:"TextValue","data-test-id":"EL-FORM-ITEM-MaRru1"},{default:e.withCtx(()=>[e.createVNode(B,{modelValue:V.TextValue,"onUpdate:modelValue":L=>V.TextValue=L,placeholder:e.unref(o)("inputText"),clearable:"","data-test-id":"EL-INPUT-RoUXuD"},null,8,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)):V.ColumnType===2&&[13,14].includes(V.Operator)?(e.openBlock(),e.createBlock(O,{key:1,prop:"NumberRangeValue","data-test-id":"EL-FORM-ITEM-vLLx0f"},{default:e.withCtx(()=>[e.createVNode(U,{modelValue:V.NumberRangeValue[0],"onUpdate:modelValue":L=>V.NumberRangeValue[0]=L,max:V.NumberRangeValue[1]??Number.MAX_SAFE_INTEGER,controls:!1,placeholder:e.unref(o)("minValue"),"disabled-scientific":"",clearable:"","data-test-id":"EL-INPUT-NUMBER-nxVp98"},null,8,["modelValue","onUpdate:modelValue","max","placeholder"]),M[2]||(M[2]=e.createElementVNode("span",{"data-test-id":"SPAN-aJGkhM"}," - ",-1)),e.createVNode(U,{modelValue:V.NumberRangeValue[1],"onUpdate:modelValue":L=>V.NumberRangeValue[1]=L,min:V.NumberRangeValue[0]??Number.MIN_SAFE_INTEGER,controls:!1,placeholder:e.unref(o)("maxValue"),"disabled-scientific":"",clearable:"","data-test-id":"EL-INPUT-NUMBER-BhVdW7"},null,8,["modelValue","onUpdate:modelValue","min","placeholder"]),e.createVNode(j,{type:"text","data-test-id":"EL-BUTTON-1EWCV6",onClick:L=>x(H)},{default:e.withCtx(()=>M[1]||(M[1]=[e.createElementVNode("i",{class:"mdi mdi-close","data-test-id":"I-a2oGJf"},null,-1)])),_:2},1032,["onClick"])]),_:2},1024)):n(V.ColumnType)&&[15,16].includes(V.Operator)?(e.openBlock(),e.createBlock(O,{key:2,prop:"SelectRangeValue","data-test-id":"EL-FORM-ITEM-tjsXva"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.SelectRangeValue,"onUpdate:modelValue":L=>V.SelectRangeValue=L,"collapse-tags":"","collapse-tags-tooltip":"",multiple:"",filterable:"",placeholder:e.unref(o)("selectOptions"),clearable:"","data-test-id":"EL-SELECT-3wxMW0"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(D(V.CloumnName),(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-5wrWi6-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)):n(V.ColumnType)&&[5].includes(V.Operator)?(e.openBlock(),e.createBlock(O,{key:3,prop:"SingleSelectValue","data-test-id":"EL-FORM-ITEM-tjsXvb"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.SingleSelectValue,"onUpdate:modelValue":L=>V.SingleSelectValue=L,"collapse-tags":"","collapse-tags-tooltip":"",filterable:"",placeholder:e.unref(o)("selectOptions"),clearable:"","data-test-id":"EL-SELECT-3wxMWS"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(D(V.CloumnName),(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-5wrWi5-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)):N(V.ColumnType)&&[1,2,3,4,5].includes(V.Operator)?(e.openBlock(),e.createBlock(O,{key:4,prop:"DateTimeOperatorValue","data-test-id":"EL-FORM-ITEM-932Tco"},{default:e.withCtx(()=>[e.createVNode(J,{gutter:10,"data-test-id":"EL-ROW-CWWfMC"},{default:e.withCtx(()=>[e.createVNode(q,{span:6,"data-test-id":"EL-COL-3tGiBz8"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeOperatorValue.TimeType,"onUpdate:modelValue":L=>V.DateTimeOperatorValue.TimeType=L,placeholder:e.unref(o)("timePrecision"),clearable:"","data-test-id":"EL-SELECT-nphb5z"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-7foEY9-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024),e.createVNode(q,{span:18,"data-test-id":"EL-COL-rxXI8U"},{default:e.withCtx(()=>[e.createVNode(z,{modelValue:V.DateTimeOperatorValue.TimeValue,"onUpdate:modelValue":L=>V.DateTimeOperatorValue.TimeValue=L,type:V.DateTimeOperatorValue.TimeType===0?"date":"datetime",format:h(V.DateTimeOperatorValue.TimeType),"value-format":"x",placeholder:e.unref(o)("selectTime"),clearable:"","data-test-id":"EL-DATE-PICKER-BFwrVh"},null,8,["modelValue","onUpdate:modelValue","type","format","placeholder"])]),_:2},1024)]),_:2},1024)]),_:2},1024)):N(V.ColumnType)&&V.Operator===11?(e.openBlock(),e.createBlock(O,{key:5,prop:"DateTimeRangeValue","data-test-id":"EL-FORM-ITEM-nM49hw"},{default:e.withCtx(()=>[e.createVNode(J,{gutter:10,"data-test-id":"EL-ROW-zZIFj0"},{default:e.withCtx(()=>[e.createVNode(q,{span:6,"data-test-id":"EL-COL-k6LrJP"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeRangeValue.TimeType,"onUpdate:modelValue":L=>V.DateTimeRangeValue.TimeType=L,placeholder:e.unref(o)("timePrecision"),clearable:"","data-test-id":"EL-SELECT-93yQnb"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-WuL5hF-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024),e.createVNode(q,{span:24,"data-test-id":"EL-COL-Zy3UKA"},{default:e.withCtx(()=>[(e.openBlock(),e.createBlock(z,{key:i.value,modelValue:V.DateTimeRangeValue.TimeValue,"onUpdate:modelValue":L=>V.DateTimeRangeValue.TimeValue=L,style:{width:"90%","margin-top":"1rem"},type:V.DateTimeRangeValue.TimeType===0?"daterange":"datetimerange",format:h(V.DateTimeRangeValue.TimeType),"value-format":"x",clearable:"","range-separator":"-","start-placeholder":e.unref(o)("starttime"),"end-placeholder":e.unref(o)("endtime"),"data-test-id":"EL-DATE-PICKER-fPXNSn",onClear:L=>V.DateTimeRangeValue.TimeValue=[],onChange:M[0]||(M[0]=()=>{i.value++})},null,8,["modelValue","onUpdate:modelValue","type","format","start-placeholder","end-placeholder","onClear"]))]),_:2},1024)]),_:2},1024)]),_:2},1024)):N(V.ColumnType)&&V.Operator===12?(e.openBlock(),e.createBlock(O,{key:6,prop:"DateTimeDynamicFilteringValue","data-test-id":"EL-FORM-ITEM-3pz54d"},{default:e.withCtx(()=>[e.createVNode(J,{gutter:10,"data-test-id":"EL-ROW-wcwmDm"},{default:e.withCtx(()=>[e.createVNode(q,{span:12,"data-test-id":"EL-COL-1WOBcB"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeDynamicFilteringValue.DateType,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringValue.DateType=L,placeholder:e.unref(o)("dynamicFiltering"),clearable:"","data-test-id":"EL-SELECT-93zW0f",onChange:L=>k(L,H)},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-j2Gto6-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder","onChange"])]),_:2},1024),e.createVNode(q,{span:12,"data-test-id":"8"},{default:e.withCtx(()=>M[3]||(M[3]=[e.createElementVNode("div",{style:{width:"200px"},"data-test-id":"DIV-oQYQZI"},null,-1)])),_:1})]),_:2},1024)]),_:2},1024)):e.createCommentVNode("",!0),V.DateTimeDynamicFilteringValue.DateType===0||V.DateTimeDynamicFilteringValue.DateType===1?(e.openBlock(),e.createBlock(O,{key:7,prop:"DateTimeDynamicFilteringCustomize","data-test-id":"EL-FORM-ITEM-oKi0MK"},{default:e.withCtx(()=>[V.DateTimeDynamicFilteringValue.DateType===0?(e.openBlock(),e.createBlock(q,{key:0,span:24,"data-test-id":"EL-COL-5XNCgU"},{default:e.withCtx(()=>[e.createVNode(J,{gutter:10,"data-test-id":"EL-ROW-zHGl1c"},{default:e.withCtx(()=>[e.createVNode(q,{span:8,"data-test-id":"EL-COL-tTDMtb"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeDynamicFilteringCustomize[0].PastOrFuture,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[0].PastOrFuture=L,placeholder:e.unref(o)("pastOrFuture"),clearable:"","data-test-id":"EL-SELECT-xifi4x"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-0ql2zr-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024),e.createVNode(q,{span:8,"data-test-id":"EL-COL-T5qcri"},{default:e.withCtx(()=>[e.createVNode(U,{modelValue:V.DateTimeDynamicFilteringCustomize[0].NumberValue,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[0].NumberValue=L,min:1,max:365,precision:0,controls:!1,style:{width:"100%"},clearable:"","data-test-id":"EL-INPUT-NUMBER-RYLnRt"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e.createVNode(q,{span:8,"data-test-id":"EL-COL-JlxABO"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeDynamicFilteringCustomize[0].DayType,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[0].DayType=L,placeholder:e.unref(o)("unit"),clearable:"","data-test-id":"EL-SELECT-8Lpazq"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-ncuVRo-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)]),_:2},1024)]),_:2},1024)):V.DateTimeDynamicFilteringValue.DateType===1?(e.openBlock(),e.createBlock(q,{key:1,span:24,"data-test-id":"EL-COL-eM8opS"},{default:e.withCtx(()=>[e.createVNode(J,{gutter:10,"data-test-id":"EL-ROW-lcZ8pe"},{default:e.withCtx(()=>[e.createVNode(q,{span:8,"data-test-id":"EL-COL-7j3j0p"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeDynamicFilteringCustomize[0].PastOrFuture,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[0].PastOrFuture=L,placeholder:e.unref(o)("pastOrFuture"),clearable:"","data-test-id":"EL-SELECT-FjHTpQ"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-xpcYp5-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024),e.createVNode(q,{span:8,"data-test-id":"EL-COL-JnQ12D"},{default:e.withCtx(()=>[e.createVNode(U,{modelValue:V.DateTimeDynamicFilteringCustomize[0].NumberValue,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[0].NumberValue=L,min:1,max:365,precision:0,controls:!1,style:{width:"100%"},clearable:"","data-test-id":"EL-INPUT-NUMBER-3lwksG"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e.createVNode(q,{span:8,"data-test-id":"EL-COL-ms7sgy"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeDynamicFilteringCustomize[0].DayType,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[0].DayType=L,placeholder:e.unref(o)("unit"),clearable:"","data-test-id":"EL-SELECT-fgZOLb"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-Q07Tx8-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)]),_:2},1024),e.createVNode(J,{gutter:10,style:{"margin-top":"1rem"},"data-test-id":"EL-ROW-XkOYka"},{default:e.withCtx(()=>[e.createVNode(q,{span:8,"data-test-id":"EL-COL-dLQQRb"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeDynamicFilteringCustomize[1].PastOrFuture,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[1].PastOrFuture=L,placeholder:e.unref(o)("pastOrFuture"),clearable:"","data-test-id":"EL-SELECT-ZNyGMx"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-nlnE2g-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024),e.createVNode(q,{span:8,"data-test-id":"EL-COL-3uTjYF"},{default:e.withCtx(()=>[e.createVNode(U,{modelValue:V.DateTimeDynamicFilteringCustomize[1].NumberValue,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[1].NumberValue=L,min:1,max:365,precision:0,controls:!1,style:{width:"100%"},clearable:"","data-test-id":"EL-INPUT-NUMBER-w1GgpV"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e.createVNode(q,{span:8,"data-test-id":"EL-COL-wDLRGi"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:V.DateTimeDynamicFilteringCustomize[1].DayType,"onUpdate:modelValue":L=>V.DateTimeDynamicFilteringCustomize[1].DayType=L,placeholder:e.unref(o)("unit"),clearable:"","data-test-id":"EL-SELECT-3d7Hyz"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($.value,(L,Z)=>(e.openBlock(),e.createBlock(E,{key:L.value,label:e.unref(o)(L.label),value:L.value,"data-test-id":`EL-OPTION-wkFjZV-${Z}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)]),_:2},1024)]),_:2},1024)):e.createCommentVNode("",!0)]),_:2},1024)):e.createCommentVNode("",!0)]),_:2},1024)):e.createCommentVNode("",!0),e.unref(S)?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(q,{key:2,span:2,"data-test-id":"EL-COL-7VbmTB"},{default:e.withCtx(()=>[e.createVNode(j,{type:"text","data-test-id":"EL-BUTTON-f9487D",onClick:L=>F(H)},{default:e.withCtx(()=>M[4]||(M[4]=[e.createElementVNode("i",{class:"mdi mdi-close","data-test-id":"I-lr2pJ2"},null,-1)])),_:2},1032,["onClick"])]),_:2},1024))]),_:2},1024)]),_:2},1032,["model","rules","data-test-id"]))),128))])}}},Fr={"data-test-id":"DIV-Ydf0yz"},Ir={"data-test-id":"DIV-uWyNOt"},wr={class:"button-container","data-test-id":"DIV-jtoMT9"},kr={"data-test-id":"DIV-u82ZkA"},je=pe({__name:"customFilter",props:{hasColumnConfig:{type:Boolean,default:!0},canEditHeaders:Array,permissionCode:String,selectOptions:{type:Object,default:()=>({})}},emits:["filterSearch","parentSaveData","childSaveData"],setup(t,{expose:R,emit:o}){const{t:r}=$e.useI18n(),i=o,u=t,_=e.ref(!1),S=e.ref(!1),y=e.computed(()=>u.canEditHeaders),a=e.computed(()=>u.permissionCode),n=v=>{i("parentSaveData",v)},N=v=>{i("childSaveData",v)},l=e.ref([]),m=e.ref([]),p=e.ref([]),x=async()=>{try{const{data:{code:v,message:w,content:M}}=await ae.queryFilterCondition({permissionCode:a.value});if(v!==0){K.ElMessage.error(r(w));return}if(M.data.filterCondition===""||M.data.filterCondition==="[]"||M.data.filterCondition===null){m.value=[{Operator:null,IsCustomSetting:null,DocCustomId:null,ColumnType:null,TextValue:null,NumberValue:null,NumberRangeValue:[],CloumnName:null,SelectRangeValue:[],SingleSelectValue:null,DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:null},DateTimeDynamicFilteringCustomize:[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]}],p.value=[];return}l.value=JSON.parse(M.data.filterCondition),m.value=[l.value[0]],p.value=l.value.length===1?[]:l.value.slice(1,10)}catch{K.ElMessage.error(r("apiError"))}},g=()=>{if(p.value.length>=9){K.ElMessage.error(r("maxFilterConditions"));return}p.value.push({Operator:null,IsCustomSetting:null,DocCustomId:null,ColumnType:null,TextValue:null,NumberValue:null,NumberRangeValue:[],CloumnName:null,SelectRangeValue:[],SingleSelectValue:null,DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:null},DateTimeDynamicFilteringCustomize:[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]})},h=e.ref([]),c=async v=>{try{const{data:{code:w,content:M,message:E}}=await ae.getFieldSetting(v);if(w!==0){K.ElMessage.error(r(E));return}const W=M.docCustomSettings.map(q=>({fieldName:q.fieldName,fieldTypeId:q.fieldTypeId,fieldSelectOptions:q.fieldSelectOptions,key:q.docCustomId,isDoc:!0})),O=M.fieldSettings.map(q=>({fieldName:q.fieldKey,fieldTypeId:q.fieldTypeId,fieldSelectOptions:q.fieldSelectOptions,key:q.fieldKey,isDoc:!1}));h.value=[...O,...W]}catch{K.ElMessage.error(r("apiError"))}},d=e.ref(null),$=e.ref(null),s=e.ref(!1),T=async()=>{var v,w;try{const M=await((v=d.value)==null?void 0:v.validateAllForms())??!0,E=await((w=$.value)==null?void 0:w.validateAllForms())??!0;return M&&E}catch{return!1}},P=async()=>{_.value=!1,s.value=!0;try{if(!await T())return;const{data:{code:w,message:M}}=await ae.insertOrUpdateFilterCondition({permissionCode:a.value,filterCondition:JSON.stringify([...m.value,...p.value].filter(E=>E.CloumnName!==null).map(E=>({...E,NumberRangeValue:E.NumberRangeValue.every(W=>W===null)?[]:E.NumberRangeValue})))});if(w!==0){K.ElMessage.error(r(M));return}await x(),S.value=!1}catch{K.ElMessage.error(r("apiError"))}finally{s.value=!1,_.value=!0}},D=async v=>{var W,O;v&&await P();const w=((W=d.value)==null?void 0:W.filterConditions)||[],M=((O=$.value)==null?void 0:O.filterConditions)||[];i("filterSearch",{defaultConditions:w,extraConditions:M})},I=()=>{S.value=!S.value},C=e.ref(null),f=e.ref(null),k=v=>{var w,M,E,W,O,q,B,U;if(S.value){const j=(w=C.value)==null?void 0:w.$el,z=((M=f.value)==null?void 0:M.$el)||document.querySelector('[data-test-id="EL-BUTTON-AzDm8o"]');if(j&&z){const J=j.contains(v.target)||z.contains(v.target);let te=!1,V=v.target;for(;V;){if((E=V.classList)!=null&&E.contains("el-popper")||(W=V.classList)!=null&&W.contains("el-date-editor")||(q=(O=V.dataset)==null?void 0:O.testId)!=null&&q.includes("EL-DATE-PICKER")||(U=(B=V.dataset)==null?void 0:B.testId)!=null&&U.includes("EL-SELECT")){te=!0;break}V=V.parentElement}const H=v.target.closest('[data-test-id="FILTERCRITERIA-1hVwQx"]');!J&&!te&&!H&&(S.value=!1)}}};e.watch(S,v=>{v?setTimeout(()=>{document.addEventListener("click",k)},0):document.removeEventListener("click",k)});const F=async()=>{_.value=!1,s.value=!0,l.value=[],m.value=[],p.value=[];try{const{data:{code:v,message:w}}=await ae.insertOrUpdateFilterCondition({permissionCode:a.value,filterCondition:null});if(v!==0){K.ElMessage.error(r(w));return}await x(),await D(!1),S.value=!1}catch{K.ElMessage.error(r("apiError"))}finally{s.value=!1,_.value=!0}};return R({handleSearch:D}),e.onMounted(async()=>{await e.nextTick(),await c(a.value),await x();const v=window.stockViewQueryDataObj;let w={};v&&(w=v.searchObj),w!=null&&w.sourceOrderNumber&&(_.value=!1,s.value=!0,l.value=[{Operator:5,IsCustomSetting:!1,DocCustomId:null,ColumnType:1,TextValue:w.sourceOrderNumber,NumberValue:null,NumberRangeValue:[],CloumnName:"productionOrderNumber",SelectRangeValue:[],SingleSelectValue:null,DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:null},DateTimeDynamicFilteringCustomize:[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]}],m.value=[l.value[0]],p.value=l.value.length===1?[]:l.value.slice(1,10),await D(!0),s.value=!1,_.value=!0),_.value=!0}),e.onBeforeUnmount(()=>{delete window.stockViewQueryDataObj,document.removeEventListener("click",k)}),(v,w)=>{const M=e.resolveComponent("el-col"),E=e.resolveComponent("el-button"),W=e.resolveComponent("v-icon"),O=e.resolveComponent("el-text"),q=e.resolveComponent("el-popover"),B=e.resolveComponent("el-row"),U=e.resolveDirective("loading");return e.withDirectives((e.openBlock(),e.createElementBlock("div",Fr,[e.createElementVNode("div",Ir,[e.createVNode(B,{"data-test-id":"EL-ROW-Qs8O6C"},{default:e.withCtx(()=>[e.createVNode(M,{span:15,"data-test-id":"EL-COL-7SqxcZ"},{default:e.withCtx(()=>[_.value?(e.openBlock(),e.createBlock(Ae,{key:0,ref_key:"defaultFilterRef",ref:d,"is-it-default":!0,"filter-conditions":m.value,"other-filter-conditions":p.value,"field-setting":h.value,"select-options":t.selectOptions,"data-test-id":"FILTERCRITERIA-1hVwQx"},null,8,["filter-conditions","other-filter-conditions","field-setting","select-options"])):e.createCommentVNode("",!0)]),_:1}),e.createVNode(M,{span:9,align:"center","data-test-id":"EL-COL-jTNbYx"},{default:e.withCtx(()=>[e.createElementVNode("div",wr,[e.createVNode(E,{type:"primary","data-test-id":"EL-BUTTON-heY1hB",onClick:w[0]||(w[0]=j=>D(!0))},{default:e.withCtx(()=>[w[1]||(w[1]=e.createElementVNode("i",{class:"mdi mdi-magnify","data-test-id":"I-tbxET9"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(r)("query")),1)]),_:1}),e.createVNode(q,{ref_key:"popoverRef",ref:C,visible:S.value,placement:"bottom-start",width:"800",trigger:"click","data-test-id":"EL-POPOVER-fMMv4b"},{reference:e.withCtx(()=>[e.createVNode(E,{"data-test-id":"EL-BUTTON-AzDm8o",onClick:I},{default:e.withCtx(()=>[w[2]||(w[2]=e.createElementVNode("i",{class:"mdi mdi-cog","data-test-id":"I-tbxET9"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(r)("moreFilter")),1)]),_:1})]),default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",kr,[S.value?(e.openBlock(),e.createBlock(Ae,{key:0,ref_key:"extraFilterRef",ref:$,"is-it-default":!1,"filter-conditions":p.value,"other-filter-conditions":m.value,"field-setting":h.value,"select-options":t.selectOptions,"data-test-id":"FILTERCRITERIA-1hVwQx"},null,8,["filter-conditions","other-filter-conditions","field-setting","select-options"])):e.createCommentVNode("",!0),e.createVNode(O,{class:"title-content cursor mx-1",type:"primary","data-test-id":"EL-TEXT-fiYiUY",onClick:g},{default:e.withCtx(()=>[e.createVNode(W,{class:"mdi mdi-plus","data-test-id":"V-ICON-RTH8U1"}),e.createTextVNode(" "+e.toDisplayString(e.unref(r)("addFilterCriteria")),1)]),_:1})])),[[U,s.value]])]),_:1},8,["visible"]),e.createVNode(E,{"data-test-id":"EL-BUTTON-f5txPo",onClick:F},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(r)("reset")),1)]),_:1}),t.hasColumnConfig?(e.openBlock(),e.createBlock(ze,{key:0,"parent-items":y.value,"is-parent-checkbox":!0,"is-child-checkbox":!1,"is-child":!1,"data-test-id":"COLUMNCONFIGNEXT-fZb3uK",onParentSaveData:n,onChildSaveData:N},null,8,["parent-items"])):e.createCommentVNode("",!0)])]),_:1})]),_:1})])])),[[U,!_.value]])}}},[["__scopeId","data-v-337230fc"]]),Rr=["value","data-test-id"],vr=["data-test-id"],Br=["data-test-id"],Mr=["data-test-id"],Ar=["data-test-id"],Vr=["data-test-id"],Kt=pe({__name:"fullPageGlobal",props:{modelValue:{type:Boolean,default:!1},globalProps:{title:{type:String,default:""}},height:{type:String,default:"100%"},top:{type:String,default:"0rem"},isShowSave:{type:Boolean,default:!0},dataTestId:{type:String,default:""}},emits:["update:modelValue","update:address","submit","close"],setup(t,{expose:R,emit:o}){const r=t,i=e.ref(!1),u=o,_=e.computed({get(){return r.modelValue},set(y){u("update:modelValue",y)}});function S(y){u(y)}return R({closed,open}),(y,a)=>{const n=e.resolveComponent("el-button"),N=e.resolveDirective("loading");return e.withDirectives((e.openBlock(),e.createElementBlock("div",{value:_.value,class:"full_page",style:e.normalizeStyle({height:t.height?t.height:"calc(100% + 1rem)",top:t.top?t.top:"-1rem"}),"data-test-id":`${t.dataTestId}-DIV-NjXo0`},[t.globalProps?(e.openBlock(),e.createElementBlock("div",{key:0,class:"title_name","data-test-id":`${t.dataTestId}-DIV-VCvcCd`},e.toDisplayString(t.globalProps),9,vr)):e.createCommentVNode("",!0),e.createElementVNode("div",{style:{height:"2rem",float:"right","line-height":"2rem"},"data-test-id":`${t.dataTestId}-DIV-E2CzeU`},[e.renderSlot(y.$slots,"head_button",{},void 0,!0),t.isShowSave?(e.openBlock(),e.createBlock(n,{key:0,class:"button_item",type:"primary",link:"","data-test-id":`${t.dataTestId}-EL-BUTTON-w4qzUN`,onClick:a[0]||(a[0]=l=>S("submit"))},{default:e.withCtx(()=>[e.createElementVNode("i",{class:e.normalizeClass("mdi mdi-content-save-check-outline"),style:{"margin-right":"0.5rem"},"data-test-id":`${t.dataTestId}-I-oIdZaY`},null,8,Mr),e.createTextVNode(" "+e.toDisplayString(y.$t("save")),1)]),_:1},8,["data-test-id"])):e.createCommentVNode("",!0),e.createVNode(n,{class:"button_item",type:"primary",style:{"padding-right":"10px"},link:"","data-test-id":`${t.dataTestId}-EL-BUTTON-SM1nlI`,onClick:a[1]||(a[1]=l=>S("close"))},{default:e.withCtx(()=>[e.createElementVNode("i",{class:e.normalizeClass("mdi mdi-close"),style:{"margin-right":"0.5rem"},"data-test-id":`${t.dataTestId}-I-kreuD8`},null,8,Ar),e.createTextVNode(" "+e.toDisplayString(y.$t("cancel")),1)]),_:1},8,["data-test-id"])],8,Br),e.createElementVNode("div",{style:{height:"calc(100% - 2rem)"},"data-test-id":`${t.dataTestId}-DIV-2oISpK`},[e.renderSlot(y.$slots,"default",{},void 0,!0)],8,Vr)],12,Rr)),[[e.vShow,_.value],[N,i.value]])}}},[["__scopeId","data-v-5ff2c3bf"]]),Lr={class:"bodydivcontent","data-test-id":"DIV-KWYRpI"},qr={key:0,class:"dialog-footer","data-test-id":"DIV-YsulBT"},Wr={key:1,class:"dialog-footer","data-test-id":"SPAN-bKKXSO"},Xt=pe({__name:"GlobalDialog",props:{dialogOptions:{type:Object,required:!0,width:{type:String,default:"30%"},title:{type:String,default:"标题"},appendBody:{type:Boolean,default:!1},dialogStatus:{type:Boolean,required:!0,default:!1},isReadonly:{type:Boolean,default:!1}}},setup(t,{emit:R}){const o=R,r=t,i=e.ref(!1),u=e.ref(!1),_=e.ref(r.dialogOptions.height);function S(n,N,l,m){o(n,N,l,m)}function y(n){i.value=!0,o(n),setTimeout(function(){i.value=!1},2e3)}const a=e.ref(!1);return e.watch(()=>r.dialogOptions.dialogStatus,n=>{a.value=n}),(n,N)=>{const l=e.resolveComponent("el-button"),m=e.resolveComponent("el-dialog");return e.openBlock(),e.createBlock(m,{modelValue:a.value,"onUpdate:modelValue":N[2]||(N[2]=p=>a.value=p),"before-close":t.dialogOptions.beforeClose,width:`${t.dialogOptions.width}%`,"close-on-click-modal":u.value,btn_array:t.dialogOptions.btns,scope:t.dialogOptions.scope,"append-to-body":!0,"modal-append-to-body":!0,center:"","align-center":"",class:"globalDialog",style:{"border-radius":"6px"},"data-test-id":"EL-DIALOG-cQVOLz",onOptionClick:S},e.createSlots({header:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.$t(t.dialogOptions.title)),1)]),default:e.withCtx(()=>[e.createElementVNode("div",{style:e.normalizeStyle({height:_.value+"rem"}),"data-test-id":"DIV-9zutsg"},[e.createElementVNode("div",Lr,[e.renderSlot(n.$slots,"default",{},void 0,!0)])],4)]),_:2},[t.dialogOptions.isReadonly?void 0:{name:"footer",fn:e.withCtx(()=>[t.dialogOptions.customFooter?(e.openBlock(),e.createElementBlock("span",Wr,[e.renderSlot(n.$slots,"footer",{},void 0,!0)])):(e.openBlock(),e.createElementBlock("div",qr,[e.withDirectives(e.createVNode(l,{type:"primary","data-test-id":"EL-BUTTON-atr1gR",onClick:N[0]||(N[0]=p=>y("submit"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.$t("confirm")),1)]),_:1},512),[[e.vShow,!t.dialogOptions.detail&&!i.value]]),e.withDirectives(e.createVNode(l,{type:"primary",loading:i.value,"data-test-id":"EL-BUTTON-Kjdhyk",onClick:N[1]||(N[1]=p=>y("submit"))},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.$t("confirm")),1)]),_:1},8,["loading"]),[[e.vShow,!t.dialogOptions.detail&&i.value]])]))]),key:"0"}]),1032,["modelValue","before-close","width","close-on-click-modal","btn_array","scope"])}}},[["__scopeId","data-v-ee82f00c"]]),ce={dynamicFilteringOptions:[{value:2,label:"today",sql:"today"},{value:3,label:"yesterday",sql:"yesterday"},{value:4,label:"thisWeek",sql:"thisweek"},{value:5,label:"lastWeek",sql:"lastweek"},{value:6,label:"thisMonth",sql:"thismonth"},{value:7,label:"lastMonth",sql:"lastmonth"},{value:8,label:"lastThreeMonths",sql:"lastthreemonths"},{value:0,label:"custom",sql:"custom"},{value:1,label:"customRange"}],pastOrFutureOptions:[{value:0,label:"past"},{value:2,label:"current"},{value:1,label:"future"}],dayTypeOptions:[{value:1,label:"daily"},{value:2,label:"week"},{value:3,label:"month"},{value:4,label:"quarter"},{value:5,label:"year"}],startOrEndOptions:[{value:0,label:"intervalStart"},{value:1,label:"intervalEnd"}],operatorOptions:[{value:1,label:"greaterThan",sql:">"},{value:2,label:"greaterThanOrEqualTo",sql:">="},{value:3,label:"lessThan",sql:"<"},{value:4,label:"lessThanOrEqualTo",sql:"<="},{value:5,label:"equalTo",sql:"="},{value:6,label:"notEqualTo",sql:"!="},{value:7,label:"contains",sql:"LIKE"},{value:8,label:"notContains",sql:"NOT LIKE"},{value:9,label:"yesEmpty",sql:"is"},{value:10,label:"notEmpty",sql:"is not"},{value:11,label:"selectRange",sql:"BETWEEN"},{value:12,label:"dynamicFiltering",sql:"BETWEEN"},{value:13,label:"inRange",sql:"BETWEEN"},{value:14,label:"notInRange",sql:"NOT BETWEEN"},{value:15,label:"isOneOf",sql:"IN"},{value:16,label:"notAnyOf",sql:"NOT IN"}],timePrecisionOptions:[{value:0,label:"daily",timeFormat:"YYYY-MM-DD"},{value:1,label:"hour",timeFormat:"YYYY-MM-DD HH"},{value:2,label:"minute",timeFormat:"YYYY-MM-DD HH:mm"},{value:3,label:"second",timeFormat:"YYYY-MM-DD HH:mm:ss"}]},Ge=pe({__name:"filterCriteria",props:{filterConditions:{type:Array,default:()=>[]},fieldSetting:{type:Array,default:()=>[]},selectOptions:{type:Object,default:()=>({})},defaultCreateTimeString:{type:String,default:"createTime"}},setup(t,{expose:R}){const{t:o}=$e.useI18n(),r=t,i=e.computed(()=>r.filterConditions),u=e.ref([]),_=s=>[1,5,6].includes(s),S=s=>[7,8].includes(s),y=s=>[3,4].includes(s),a=s=>[5,6,7,8].includes(s),n=e.computed(()=>r.selectOptions.fieldList?r.selectOptions.fieldList:r.fieldSetting),N=s=>{var P,D,I,C;const T={CloumnName:[{required:!0,message:o("selectField"),trigger:"change"}],Operator:[{required:!0,message:o("selectOperator"),trigger:"change"}]};return[9,10].includes(s.Operator)||(_(s.ColumnType)&&a(s.Operator)&&(T.TextValue=[{required:!0,message:o("inputText"),trigger:"blur"},{validator:(f,k,F)=>{if(k!==k.trim())return F(new Error(o("haveSpace")));F()},trigger:"blur"}]),(s.ColumnType===2||s.ColumnType===9)&&[13,14].includes(s.Operator)&&(T.NumberRangeValue=[{required:!0,message:o("inputRangeValue"),trigger:"change"},{validator:(f,k,F)=>{const v=/^(([1-9]{1}[0-9]{0,9})|([0]{1}))((\.{1}[0-9]{1,6}$)|$)/;if(!k||!Array.isArray(k)||k.some(w=>w==null)||k.length!==2)return F(new Error(o("inputValidRange")));if(!v.test(k[0])&&k[0]||!v.test(k[1])&&k[1])return F(new Error(o("numIntegerExceedTen")+","+o("numDecimalExceedSix")));if(+k[0]>+k[1])return F(new Error(o("startValueCannotGreaterThanEndValue")));F()},trigger:"change"}]),S(s.ColumnType)&&[15,16].includes(s.Operator)&&(T.SelectRangeValue=[{required:!0,message:o("selectOptions"),trigger:"change"}]),y(s.ColumnType)&&[1,2,3,4,5].includes(s.Operator)&&(T.DateTimeOperatorValue=[{required:!0,message:o("selectTime"),trigger:"change"},{validator:(f,k,F)=>{if((k==null?void 0:k.TimeType)===null||!(k!=null&&k.TimeValue))return F(new Error(o("selectTimeAndPrecision")));F()},trigger:"change"}]),s.ColumnType===4&&(T.StartOrEnd=[{required:!0,message:o("selectStartOrEnd"),trigger:"change"}]),y(s.ColumnType)&&s.Operator===11&&(T.DateTimeRangeValue=[{required:!0,message:o("selectTimeRange"),trigger:"change"},{validator:(f,k,F)=>{if((k==null?void 0:k.TimeType)===null||!(k!=null&&k.TimeValue)||k.TimeValue.length!==2)return F(new Error(o("selectCompleteTimeRange")));F()},trigger:"change"}]),y(s.ColumnType)&&s.Operator===12&&(T.DateTimeDynamicFilteringValue=[{required:!0,message:o("selectDynamicFilteringType"),trigger:"change"},{validator:(f,k,F)=>{if((k==null?void 0:k.DateType)===null)return F(new Error(o("selectDynamicFilteringType")));F()},trigger:"change"}],T.DateTimeDynamicFilteringCustomize=[{validator:(f,k,F)=>{var v,w,M;if(((v=k[0])==null?void 0:v.PastOrFuture)===null||((w=k[0])==null?void 0:w.NumberValue)===null||((M=k[0])==null?void 0:M.DayType)===null)return F(new Error(o("pleaseInput")));F()},trigger:"change"}],((P=s==null?void 0:s.DateTimeDynamicFilteringValue)==null?void 0:P.DateType)!==null&&((D=s==null?void 0:s.DateTimeDynamicFilteringValue)==null?void 0:D.DateType)===0&&(T.DateTimeDynamicFilteringCustomize=[{validator:(f,k,F)=>{var v,w,M;if(((v=k[0])==null?void 0:v.PastOrFuture)===null||((w=k[0])==null?void 0:w.NumberValue)===null||((M=k[0])==null?void 0:M.DayType)===null)return F(new Error(o("pleaseInput")));F()},trigger:"change"}]),((I=s==null?void 0:s.DateTimeDynamicFilteringValue)==null?void 0:I.DateType)!==null&&((C=s==null?void 0:s.DateTimeDynamicFilteringValue)==null?void 0:C.DateType)===1&&(T.DateTimeDynamicFilteringCustomize=[{validator:(f,k,F)=>{var v,w,M,E,W,O;if(((v=k[0])==null?void 0:v.PastOrFuture)===null||((w=k[0])==null?void 0:w.NumberValue)===null||((M=k[0])==null?void 0:M.DayType)===null||((E=k[1])==null?void 0:E.PastOrFuture)===null||((W=k[1])==null?void 0:W.NumberValue)===null||((O=k[1])==null?void 0:O.DayType)===null)return F(new Error(o("pleaseInput")));F()},trigger:"change"}]))),T},l=s=>{var T;return(T=ce.timePrecisionOptions.find(P=>P.value===s))==null?void 0:T.timeFormat},m=s=>{const P={1:[5,6,7,8,9,10],2:[9,10,13,14],3:[1,2,3,4,5,9,10,11,12],4:[1,2,3,4,5,9,10,11,12],5:[5,6,7,8,9,10],6:[5,6,7,8,9,10],7:[5],8:[9,10,15,16],9:[9,10,13,14]}[s]||[];return r.selectOptions.operatorOptions?r.selectOptions.operatorOptions.filter(D=>P.includes(D.value)):ce.operatorOptions.filter(D=>P.includes(D.value))},p=s=>{if(s==null)return[];try{if(r.selectOptions&&typeof r.selectOptions=="object"){if(r.selectOptions[s])return Array.isArray(r.selectOptions[s])?r.selectOptions[s]:[];const D=Object.keys(r.selectOptions).find(I=>I.endsWith("Options")&&s.includes(I.replace("Options","")));if(D)return Array.isArray(r.selectOptions[D])?r.selectOptions[D]:[]}const P=(Array.isArray(n.value)?n.value:[]).find(D=>D&&D.key===s);if(P&&(P.fieldTypeId===7||P.fieldTypeId===8)&&P.fieldSelectOptions)try{const D=JSON.parse(P.fieldSelectOptions);return Array.isArray(D)?D.map(I=>({label:P.isDoc?I:I?I.key||I.label||I.value:"",value:P.isDoc?I:I?I.value:""})):[]}catch{return[]}return[]}catch{K.ElMessage.error(o("apiError"))}},x=s=>[1,5,6].includes(s)?5:s===2?13:[3,4].includes(s)?11:s===7?5:s===8?15:null,g=(s,T)=>{const P=n.value.find(I=>I.key===s),D=i.value[T];Object.assign(D,{CloumnName:s,ColumnType:P==null?void 0:P.fieldTypeId,Operator:x(P==null?void 0:P.fieldTypeId),StartOrEnd:null,TextValue:null,IsCustomSetting:P==null?void 0:P.isDoc,DocCustomId:P!=null&&P.isDoc?P.key:null,NumberRangeValue:[],SelectRangeValue:[],DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:[3,4].includes(P==null?void 0:P.fieldTypeId)?0:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:null},DateTimeDynamicFilteringCustomize:[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]})},h=(s,T)=>{const P=i.value[T];Object.assign(P,{TextValue:null,NumberRangeValue:[],SelectRangeValue:[],DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:null},DateTimeDynamicFilteringCustomize:[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]})},c=(s,T)=>{const P=i.value[T];P.DateTimeDynamicFilteringCustomize=[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]},d=s=>{K.ElMessageBox.confirm(o("confirmToDelete"),o("confirmDelete"),{confirmButtonText:o("confirm"),cancelButtonText:o("cancel"),type:"warning"}).then(()=>{i.value.splice(s,1)})};return R({validateAllForms:async()=>{await e.nextTick();try{return await Promise.all(u.value.map(s=>{var T;return((T=s==null?void 0:s.validate)==null?void 0:T.call(s))||Promise.resolve()})),!0}catch{return K.ElMessage.error(o("checkForm")),!1}}}),(s,T)=>{const P=e.resolveComponent("el-option"),D=e.resolveComponent("el-select"),I=e.resolveComponent("el-form-item"),C=e.resolveComponent("el-col"),f=e.resolveComponent("el-input"),k=e.resolveComponent("el-date-picker"),F=e.resolveComponent("el-row"),v=e.resolveComponent("el-input-number"),w=e.resolveComponent("el-button"),M=e.resolveComponent("el-form");return e.openBlock(),e.createElementBlock("div",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,(E,W)=>(e.openBlock(),e.createBlock(M,{ref_for:!0,ref_key:"filterForm",ref:u,key:W,model:E,rules:N(E),style:{"margin-bottom":"1rem"},"data-test-id":`EL-FORM-t4nN1q-${W}`,class:"filter-item"},{default:e.withCtx(()=>[e.createVNode(F,{gutter:10,"data-test-id":"EL-ROW-i6hi71"},{default:e.withCtx(()=>[e.createVNode(C,{span:5,"data-test-id":"EL-COL-YtO6It"},{default:e.withCtx(()=>[e.createVNode(I,{prop:"CloumnName","data-test-id":"EL-FORM-ITEM-X2DfMG"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.CloumnName,"onUpdate:modelValue":O=>E.CloumnName=O,"data-test-id":"EL-SELECT-Tla5bC",disabled:E.CloumnName===t.defaultCreateTimeString,filterable:"",onChange:O=>g(O,W)},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.key,label:O.key==="salesOrderNumber"?e.unref(o)(O.key):e.unref(o)(O.fieldName),value:O.key,disabled:i.value.some(B=>B.CloumnName===O.key),"data-test-id":`EL-OPTION-24JqP4-${q}`},null,8,["label","value","disabled","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","disabled","onChange"])]),_:2},1024)]),_:2},1024),E.CloumnName?(e.openBlock(),e.createBlock(C,{key:0,span:5,"data-test-id":"EL-COL-o6tUCn"},{default:e.withCtx(()=>[e.createVNode(I,{prop:"Operator","data-test-id":"EL-FORM-ITEM-lwyEu4"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.Operator,"onUpdate:modelValue":O=>E.Operator=O,placeholder:e.unref(o)("selectOperation"),"data-test-id":"EL-SELECT-B8JVKa",onChange:O=>h(O,W)},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m(E.ColumnType),(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-698Ga6-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder","onChange"])]),_:2},1024),E.ColumnType===4?(e.openBlock(),e.createBlock(I,{key:0,prop:"StartOrEnd","data-test-id":"EL-FORM-ITEM-iI09Nl"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.StartOrEnd,"onUpdate:modelValue":O=>E.StartOrEnd=O,style:{"margin-top":"1rem"},placeholder:e.unref(o)("startOrEndTime"),"data-test-id":"EL-SELECT-hYLMt4"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).startOrEndOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-qkQDv6-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)):e.createCommentVNode("",!0)]),_:2},1024)):e.createCommentVNode("",!0),E.Operator&&![9,10].includes(E.Operator)?(e.openBlock(),e.createBlock(C,{key:1,span:12,"data-test-id":"EL-COL-bWX9Cb"},{default:e.withCtx(()=>[_(E.ColumnType)&&a(E.Operator)?(e.openBlock(),e.createBlock(I,{key:0,prop:"TextValue","data-test-id":"EL-FORM-ITEM-MaRru1"},{default:e.withCtx(()=>[e.createVNode(f,{modelValue:E.TextValue,"onUpdate:modelValue":O=>E.TextValue=O,placeholder:e.unref(o)("inputText"),clearable:"","data-test-id":"EL-INPUT-RoUXuD"},null,8,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)):(E.ColumnType===2||E.ColumnType===9)&&[13,14].includes(E.Operator)?(e.openBlock(),e.createBlock(I,{key:1,prop:"NumberRangeValue","data-test-id":"EL-FORM-ITEM-vLLx0f"},{default:e.withCtx(()=>[e.createVNode(f,{modelValue:E.NumberRangeValue[0],"onUpdate:modelValue":O=>E.NumberRangeValue[0]=O,style:{width:"150px"},type:"number",controls:!1,placeholder:e.unref(o)("minValue"),clearable:"","data-test-id":"EL-INPUT-NUMBER-nxVp98"},null,8,["modelValue","onUpdate:modelValue","placeholder"]),T[0]||(T[0]=e.createElementVNode("span",{"data-test-id":"SPAN-aJGkhM"}," - ",-1)),e.createVNode(f,{modelValue:E.NumberRangeValue[1],"onUpdate:modelValue":O=>E.NumberRangeValue[1]=O,style:{width:"150px"},type:"number",controls:!1,placeholder:e.unref(o)("maxValue"),clearable:"","data-test-id":"EL-INPUT-NUMBER-BhVdW7"},null,8,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)):S(E.ColumnType)&&[5,15,16].includes(E.Operator)?(e.openBlock(),e.createBlock(I,{key:2,prop:"SelectRangeValue","data-test-id":"EL-FORM-ITEM-tjsXva"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.SelectRangeValue,"onUpdate:modelValue":O=>E.SelectRangeValue=O,"collapse-tags":"","collapse-tags-tooltip":"",multiple:E.ColumnType===8,placeholder:e.unref(o)("selectOptions"),clearable:"","data-test-id":"EL-SELECT-3wxMWS"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p(E.CloumnName),(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-5wrWi5-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","multiple","placeholder"])]),_:2},1024)):y(E.ColumnType)&&[1,2,3,4,5].includes(E.Operator)?(e.openBlock(),e.createBlock(I,{key:3,prop:"DateTimeOperatorValue","data-test-id":"EL-FORM-ITEM-932Tco"},{default:e.withCtx(()=>[e.createVNode(F,{gutter:10,"data-test-id":"EL-ROW-CWWfMC"},{default:e.withCtx(()=>[e.createVNode(C,{span:6,"data-test-id":"EL-COL-3tGiBz"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeOperatorValue.TimeType,"onUpdate:modelValue":O=>E.DateTimeOperatorValue.TimeType=O,placeholder:e.unref(o)("timePrecision"),clearable:"","data-test-id":"EL-SELECT-nphb5z"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).timePrecisionOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-7foEY9-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024),e.createVNode(C,{span:18,"data-test-id":"EL-COL-rxXI8U"},{default:e.withCtx(()=>[e.createVNode(k,{modelValue:E.DateTimeOperatorValue.TimeValue,"onUpdate:modelValue":O=>E.DateTimeOperatorValue.TimeValue=O,type:E.DateTimeOperatorValue.TimeType===0?"date":"datetime",format:l(E.DateTimeOperatorValue.TimeType),"value-format":"x",placeholder:e.unref(o)("selectTime"),clearable:"","data-test-id":"EL-DATE-PICKER-BFwrVh"},null,8,["modelValue","onUpdate:modelValue","type","format","placeholder"])]),_:2},1024)]),_:2},1024)]),_:2},1024)):y(E.ColumnType)&&E.Operator===11?(e.openBlock(),e.createBlock(I,{key:4,prop:"DateTimeRangeValue","data-test-id":"EL-FORM-ITEM-nM49hw"},{default:e.withCtx(()=>[e.createVNode(F,{gutter:10,"data-test-id":"EL-ROW-zZIFj0"},{default:e.withCtx(()=>[e.createVNode(C,{span:12,"data-test-id":"EL-COL-k6LrJP"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeRangeValue.TimeType,"onUpdate:modelValue":O=>E.DateTimeRangeValue.TimeType=O,placeholder:e.unref(o)("timePrecision"),clearable:"","data-test-id":"EL-SELECT-93yQnb"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).timePrecisionOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-WuL5hF-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024),e.createVNode(C,{span:24,"data-test-id":"EL-COL-Zy3UKA"},{default:e.withCtx(()=>[e.createVNode(k,{modelValue:E.DateTimeRangeValue.TimeValue,"onUpdate:modelValue":O=>E.DateTimeRangeValue.TimeValue=O,style:{width:"90%","margin-top":"1rem"},type:E.DateTimeRangeValue.TimeType===0?"daterange":"datetimerange",format:l(E.DateTimeRangeValue.TimeType),clearable:"","range-separator":"-","start-placeholder":e.unref(o)("startTime"),"end-placeholder":e.unref(o)("endTime"),"data-test-id":"EL-DATE-PICKER-fPXNSn"},null,8,["modelValue","onUpdate:modelValue","type","format","start-placeholder","end-placeholder"])]),_:2},1024)]),_:2},1024)]),_:2},1024)):y(E.ColumnType)&&E.Operator===12?(e.openBlock(),e.createBlock(I,{key:5,prop:"DateTimeDynamicFilteringValue","data-test-id":"EL-FORM-ITEM-3pz54d"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeDynamicFilteringValue.DateType,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringValue.DateType=O,placeholder:e.unref(o)("dynamicFiltering"),clearable:"","data-test-id":"EL-SELECT-93zW0f",onChange:O=>c(O,W)},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).dynamicFilteringOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-j2Gto6-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder","onChange"])]),_:2},1024)):e.createCommentVNode("",!0),E.DateTimeDynamicFilteringValue.DateType===0||E.DateTimeDynamicFilteringValue.DateType===1?(e.openBlock(),e.createBlock(I,{key:6,prop:"DateTimeDynamicFilteringCustomize","data-test-id":"EL-FORM-ITEM-oKi0MK"},{default:e.withCtx(()=>[E.DateTimeDynamicFilteringValue.DateType===0?(e.openBlock(),e.createBlock(C,{key:0,span:24,style:{"margin-top":"1rem"},"data-test-id":"EL-COL-5XNCgU"},{default:e.withCtx(()=>[e.createVNode(F,{gutter:10,"data-test-id":"EL-ROW-zHGl1c"},{default:e.withCtx(()=>[e.createVNode(C,{span:8,"data-test-id":"EL-COL-tTDMtb"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeDynamicFilteringCustomize[0].PastOrFuture,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[0].PastOrFuture=O,placeholder:e.unref(o)("pastOrFuture"),clearable:"","data-test-id":"EL-SELECT-xifi4x"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).pastOrFutureOptions.filter(O=>O.value!==2),(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-0ql2zr-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024),e.createVNode(C,{span:8,"data-test-id":"EL-COL-T5qcri"},{default:e.withCtx(()=>[e.createVNode(v,{modelValue:E.DateTimeDynamicFilteringCustomize[0].NumberValue,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[0].NumberValue=O,min:1,max:365,precision:0,controls:!1,style:{width:"100%"},clearable:"","data-test-id":"EL-INPUT-NUMBER-RYLnRt"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e.createVNode(C,{span:8,"data-test-id":"EL-COL-JlxABO"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeDynamicFilteringCustomize[0].DayType,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[0].DayType=O,placeholder:e.unref(o)("unity"),clearable:"","data-test-id":"EL-SELECT-8Lpazq"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).dayTypeOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-ncuVRo-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)]),_:2},1024)]),_:2},1024)):E.DateTimeDynamicFilteringValue.DateType===1?(e.openBlock(),e.createBlock(C,{key:1,span:24,style:{"margin-top":"1rem"},"data-test-id":"EL-COL-eM8opS"},{default:e.withCtx(()=>[e.createVNode(F,{gutter:10,"data-test-id":"EL-ROW-lcZ8pe"},{default:e.withCtx(()=>[e.createVNode(C,{span:8,"data-test-id":"EL-COL-7j3j0p"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeDynamicFilteringCustomize[0].PastOrFuture,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[0].PastOrFuture=O,placeholder:e.unref(o)("pastOrFuture"),clearable:"","data-test-id":"EL-SELECT-FjHTpQ",onChange:O=>{O===2&&(E.DateTimeDynamicFilteringCustomize[0].NumberValue=1)}},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).pastOrFutureOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-xpcYp5-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder","onChange"])]),_:2},1024),e.createVNode(C,{span:8,"data-test-id":"EL-COL-JnQ12D"},{default:e.withCtx(()=>[e.createVNode(v,{modelValue:E.DateTimeDynamicFilteringCustomize[0].NumberValue,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[0].NumberValue=O,min:1,max:365,disabled:E.DateTimeDynamicFilteringCustomize[0].PastOrFuture===2,precision:0,controls:!1,style:{width:"100%"},clearable:"","data-test-id":"EL-INPUT-NUMBER-3lwksG"},null,8,["modelValue","onUpdate:modelValue","disabled"])]),_:2},1024),e.createVNode(C,{span:8,"data-test-id":"EL-COL-ms7sgy"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeDynamicFilteringCustomize[0].DayType,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[0].DayType=O,placeholder:e.unref(o)("unity"),clearable:"","data-test-id":"EL-SELECT-fgZOLb"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).dayTypeOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-Q07Tx8-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)]),_:2},1024),e.createVNode(F,{gutter:10,style:{"margin-top":"1rem"},"data-test-id":"EL-ROW-XkOYka"},{default:e.withCtx(()=>[e.createVNode(C,{span:8,"data-test-id":"EL-COL-dLQQRb"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeDynamicFilteringCustomize[1].PastOrFuture,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[1].PastOrFuture=O,placeholder:e.unref(o)("pastOrFuture"),clearable:"","data-test-id":"EL-SELECT-ZNyGMx",onChange:O=>{O===2&&(E.DateTimeDynamicFilteringCustomize[1].NumberValue=1)}},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).pastOrFutureOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-nlnE2g-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder","onChange"])]),_:2},1024),e.createVNode(C,{span:8,"data-test-id":"EL-COL-3uTjYF"},{default:e.withCtx(()=>[e.createVNode(v,{modelValue:E.DateTimeDynamicFilteringCustomize[1].NumberValue,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[1].NumberValue=O,min:1,max:365,disabled:E.DateTimeDynamicFilteringCustomize[1].PastOrFuture===2,precision:0,controls:!1,style:{width:"100%"},clearable:"","data-test-id":"EL-INPUT-NUMBER-w1GgpV"},null,8,["modelValue","onUpdate:modelValue","disabled"])]),_:2},1024),e.createVNode(C,{span:8,"data-test-id":"EL-COL-wDLRGi"},{default:e.withCtx(()=>[e.createVNode(D,{modelValue:E.DateTimeDynamicFilteringCustomize[1].DayType,"onUpdate:modelValue":O=>E.DateTimeDynamicFilteringCustomize[1].DayType=O,placeholder:e.unref(o)("unity"),clearable:"","data-test-id":"EL-SELECT-3d7Hyz"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(ce).dayTypeOptions,(O,q)=>(e.openBlock(),e.createBlock(P,{key:O.value,label:e.unref(o)(O.label),value:O.value,"data-test-id":`EL-OPTION-wkFjZV-${q}`},null,8,["label","value","data-test-id"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","placeholder"])]),_:2},1024)]),_:2},1024)]),_:2},1024)):e.createCommentVNode("",!0)]),_:2},1024)):e.createCommentVNode("",!0)]),_:2},1024)):e.createCommentVNode("",!0),E.CloumnName!==t.defaultCreateTimeString?(e.openBlock(),e.createBlock(C,{key:2,span:2,"data-test-id":"EL-COL-7VbmTB"},{default:e.withCtx(()=>[e.createVNode(w,{class:"ml-2",type:"text","data-test-id":"EL-BUTTON-f9487D",onClick:O=>d(W)},{default:e.withCtx(()=>T[1]||(T[1]=[e.createElementVNode("i",{class:"mdi mdi-close"},null,-1)])),_:2},1032,["onClick"])]),_:2},1024)):e.createCommentVNode("",!0)]),_:2},1024)]),_:2},1032,["model","rules","data-test-id"]))),128))])}}},[["__scopeId","data-v-fd46486f"]]);var X=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function Ur(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}function zr(t){if(t.__esModule)return t;var R=t.default;if(typeof R=="function"){var o=function r(){return this instanceof r?Reflect.construct(R,arguments,this.constructor):R.apply(this,arguments)};o.prototype=R.prototype}else o={};return Object.defineProperty(o,"__esModule",{value:!0}),Object.keys(t).forEach(function(r){var i=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(o,r,i.get?i:{enumerable:!0,get:function(){return t[r]}})}),o}var Zt={exports:{}};function Qr(t){throw new Error('Could not dynamically require "'+t+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var He={exports:{}};const jr=zr(Object.freeze(Object.defineProperty({__proto__:null,default:{}},Symbol.toStringTag,{value:"Module"})));var Jt;function ee(){return Jt||(Jt=1,function(t,R){(function(o,r){t.exports=r()})(X,function(){var o=o||function(r,i){var u;if(typeof window<"u"&&window.crypto&&(u=window.crypto),typeof self<"u"&&self.crypto&&(u=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(u=globalThis.crypto),!u&&typeof window<"u"&&window.msCrypto&&(u=window.msCrypto),!u&&typeof X<"u"&&X.crypto&&(u=X.crypto),!u&&typeof Qr=="function")try{u=jr}catch{}var _=function(){if(u){if(typeof u.getRandomValues=="function")try{return u.getRandomValues(new Uint32Array(1))[0]}catch{}if(typeof u.randomBytes=="function")try{return u.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},S=Object.create||function(){function c(){}return function(d){var $;return c.prototype=d,$=new c,c.prototype=null,$}}(),y={},a=y.lib={},n=a.Base=function(){return{extend:function(c){var d=S(this);return c&&d.mixIn(c),(!d.hasOwnProperty("init")||this.init===d.init)&&(d.init=function(){d.$super.init.apply(this,arguments)}),d.init.prototype=d,d.$super=this,d},create:function(){var c=this.extend();return c.init.apply(c,arguments),c},init:function(){},mixIn:function(c){for(var d in c)c.hasOwnProperty(d)&&(this[d]=c[d]);c.hasOwnProperty("toString")&&(this.toString=c.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),N=a.WordArray=n.extend({init:function(c,d){c=this.words=c||[],d!=i?this.sigBytes=d:this.sigBytes=c.length*4},toString:function(c){return(c||m).stringify(this)},concat:function(c){var d=this.words,$=c.words,s=this.sigBytes,T=c.sigBytes;if(this.clamp(),s%4)for(var P=0;P<T;P++){var D=$[P>>>2]>>>24-P%4*8&255;d[s+P>>>2]|=D<<24-(s+P)%4*8}else for(var I=0;I<T;I+=4)d[s+I>>>2]=$[I>>>2];return this.sigBytes+=T,this},clamp:function(){var c=this.words,d=this.sigBytes;c[d>>>2]&=4294967295<<32-d%4*8,c.length=r.ceil(d/4)},clone:function(){var c=n.clone.call(this);return c.words=this.words.slice(0),c},random:function(c){for(var d=[],$=0;$<c;$+=4)d.push(_());return new N.init(d,c)}}),l=y.enc={},m=l.Hex={stringify:function(c){for(var d=c.words,$=c.sigBytes,s=[],T=0;T<$;T++){var P=d[T>>>2]>>>24-T%4*8&255;s.push((P>>>4).toString(16)),s.push((P&15).toString(16))}return s.join("")},parse:function(c){for(var d=c.length,$=[],s=0;s<d;s+=2)$[s>>>3]|=parseInt(c.substr(s,2),16)<<24-s%8*4;return new N.init($,d/2)}},p=l.Latin1={stringify:function(c){for(var d=c.words,$=c.sigBytes,s=[],T=0;T<$;T++){var P=d[T>>>2]>>>24-T%4*8&255;s.push(String.fromCharCode(P))}return s.join("")},parse:function(c){for(var d=c.length,$=[],s=0;s<d;s++)$[s>>>2]|=(c.charCodeAt(s)&255)<<24-s%4*8;return new N.init($,d)}},x=l.Utf8={stringify:function(c){try{return decodeURIComponent(escape(p.stringify(c)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(c){return p.parse(unescape(encodeURIComponent(c)))}},g=a.BufferedBlockAlgorithm=n.extend({reset:function(){this._data=new N.init,this._nDataBytes=0},_append:function(c){typeof c=="string"&&(c=x.parse(c)),this._data.concat(c),this._nDataBytes+=c.sigBytes},_process:function(c){var d,$=this._data,s=$.words,T=$.sigBytes,P=this.blockSize,D=P*4,I=T/D;c?I=r.ceil(I):I=r.max((I|0)-this._minBufferSize,0);var C=I*P,f=r.min(C*4,T);if(C){for(var k=0;k<C;k+=P)this._doProcessBlock(s,k);d=s.splice(0,C),$.sigBytes-=f}return new N.init(d,f)},clone:function(){var c=n.clone.call(this);return c._data=this._data.clone(),c},_minBufferSize:0});a.Hasher=g.extend({cfg:n.extend(),init:function(c){this.cfg=this.cfg.extend(c),this.reset()},reset:function(){g.reset.call(this),this._doReset()},update:function(c){return this._append(c),this._process(),this},finalize:function(c){c&&this._append(c);var d=this._doFinalize();return d},blockSize:16,_createHelper:function(c){return function(d,$){return new c.init($).finalize(d)}},_createHmacHelper:function(c){return function(d,$){return new h.HMAC.init(c,$).finalize(d)}}});var h=y.algo={};return y}(Math);return o})}(He)),He.exports}var Ye={exports:{}},eo;function Ve(){return eo||(eo=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){return function(r){var i=o,u=i.lib,_=u.Base,S=u.WordArray,y=i.x64={};y.Word=_.extend({init:function(a,n){this.high=a,this.low=n}}),y.WordArray=_.extend({init:function(a,n){a=this.words=a||[],n!=r?this.sigBytes=n:this.sigBytes=a.length*8},toX32:function(){for(var a=this.words,n=a.length,N=[],l=0;l<n;l++){var m=a[l];N.push(m.high),N.push(m.low)}return S.create(N,this.sigBytes)},clone:function(){for(var a=_.clone.call(this),n=a.words=this.words.slice(0),N=n.length,l=0;l<N;l++)n[l]=n[l].clone();return a}})}(),o})}(Ye)),Ye.exports}var Ke={exports:{}},to;function Gr(){return to||(to=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){return function(){if(typeof ArrayBuffer=="function"){var r=o,i=r.lib,u=i.WordArray,_=u.init,S=u.init=function(y){if(y instanceof ArrayBuffer&&(y=new Uint8Array(y)),(y instanceof Int8Array||typeof Uint8ClampedArray<"u"&&y instanceof Uint8ClampedArray||y instanceof Int16Array||y instanceof Uint16Array||y instanceof Int32Array||y instanceof Uint32Array||y instanceof Float32Array||y instanceof Float64Array)&&(y=new Uint8Array(y.buffer,y.byteOffset,y.byteLength)),y instanceof Uint8Array){for(var a=y.byteLength,n=[],N=0;N<a;N++)n[N>>>2]|=y[N]<<24-N%4*8;_.call(this,n,a)}else _.apply(this,arguments)};S.prototype=u}}(),o.lib.WordArray})}(Ke)),Ke.exports}var Xe={exports:{}},oo;function Hr(){return oo||(oo=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){return function(){var r=o,i=r.lib,u=i.WordArray,_=r.enc;_.Utf16=_.Utf16BE={stringify:function(y){for(var a=y.words,n=y.sigBytes,N=[],l=0;l<n;l+=2){var m=a[l>>>2]>>>16-l%4*8&65535;N.push(String.fromCharCode(m))}return N.join("")},parse:function(y){for(var a=y.length,n=[],N=0;N<a;N++)n[N>>>1]|=y.charCodeAt(N)<<16-N%2*16;return u.create(n,a*2)}},_.Utf16LE={stringify:function(y){for(var a=y.words,n=y.sigBytes,N=[],l=0;l<n;l+=2){var m=S(a[l>>>2]>>>16-l%4*8&65535);N.push(String.fromCharCode(m))}return N.join("")},parse:function(y){for(var a=y.length,n=[],N=0;N<a;N++)n[N>>>1]|=S(y.charCodeAt(N)<<16-N%2*16);return u.create(n,a*2)}};function S(y){return y<<8&4278255360|y>>>8&16711935}}(),o.enc.Utf16})}(Xe)),Xe.exports}var Ze={exports:{}},ro;function Te(){return ro||(ro=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){return function(){var r=o,i=r.lib,u=i.WordArray,_=r.enc;_.Base64={stringify:function(y){var a=y.words,n=y.sigBytes,N=this._map;y.clamp();for(var l=[],m=0;m<n;m+=3)for(var p=a[m>>>2]>>>24-m%4*8&255,x=a[m+1>>>2]>>>24-(m+1)%4*8&255,g=a[m+2>>>2]>>>24-(m+2)%4*8&255,h=p<<16|x<<8|g,c=0;c<4&&m+c*.75<n;c++)l.push(N.charAt(h>>>6*(3-c)&63));var d=N.charAt(64);if(d)for(;l.length%4;)l.push(d);return l.join("")},parse:function(y){var a=y.length,n=this._map,N=this._reverseMap;if(!N){N=this._reverseMap=[];for(var l=0;l<n.length;l++)N[n.charCodeAt(l)]=l}var m=n.charAt(64);if(m){var p=y.indexOf(m);p!==-1&&(a=p)}return S(y,a,N)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="};function S(y,a,n){for(var N=[],l=0,m=0;m<a;m++)if(m%4){var p=n[y.charCodeAt(m-1)]<<m%4*2,x=n[y.charCodeAt(m)]>>>6-m%4*2,g=p|x;N[l>>>2]|=g<<24-l%4*8,l++}return u.create(N,l)}}(),o.enc.Base64})}(Ze)),Ze.exports}var Je={exports:{}},no;function Yr(){return no||(no=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){return function(){var r=o,i=r.lib,u=i.WordArray,_=r.enc;_.Base64url={stringify:function(y,a){a===void 0&&(a=!0);var n=y.words,N=y.sigBytes,l=a?this._safe_map:this._map;y.clamp();for(var m=[],p=0;p<N;p+=3)for(var x=n[p>>>2]>>>24-p%4*8&255,g=n[p+1>>>2]>>>24-(p+1)%4*8&255,h=n[p+2>>>2]>>>24-(p+2)%4*8&255,c=x<<16|g<<8|h,d=0;d<4&&p+d*.75<N;d++)m.push(l.charAt(c>>>6*(3-d)&63));var $=l.charAt(64);if($)for(;m.length%4;)m.push($);return m.join("")},parse:function(y,a){a===void 0&&(a=!0);var n=y.length,N=a?this._safe_map:this._map,l=this._reverseMap;if(!l){l=this._reverseMap=[];for(var m=0;m<N.length;m++)l[N.charCodeAt(m)]=m}var p=N.charAt(64);if(p){var x=y.indexOf(p);x!==-1&&(n=x)}return S(y,n,l)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"};function S(y,a,n){for(var N=[],l=0,m=0;m<a;m++)if(m%4){var p=n[y.charCodeAt(m-1)]<<m%4*2,x=n[y.charCodeAt(m)]>>>6-m%4*2,g=p|x;N[l>>>2]|=g<<24-l%4*8,l++}return u.create(N,l)}}(),o.enc.Base64url})}(Je)),Je.exports}var et={exports:{}},ao;function De(){return ao||(ao=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){return function(r){var i=o,u=i.lib,_=u.WordArray,S=u.Hasher,y=i.algo,a=[];(function(){for(var x=0;x<64;x++)a[x]=r.abs(r.sin(x+1))*4294967296|0})();var n=y.MD5=S.extend({_doReset:function(){this._hash=new _.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(x,g){for(var h=0;h<16;h++){var c=g+h,d=x[c];x[c]=(d<<8|d>>>24)&16711935|(d<<24|d>>>8)&4278255360}var $=this._hash.words,s=x[g+0],T=x[g+1],P=x[g+2],D=x[g+3],I=x[g+4],C=x[g+5],f=x[g+6],k=x[g+7],F=x[g+8],v=x[g+9],w=x[g+10],M=x[g+11],E=x[g+12],W=x[g+13],O=x[g+14],q=x[g+15],B=$[0],U=$[1],j=$[2],z=$[3];B=N(B,U,j,z,s,7,a[0]),z=N(z,B,U,j,T,12,a[1]),j=N(j,z,B,U,P,17,a[2]),U=N(U,j,z,B,D,22,a[3]),B=N(B,U,j,z,I,7,a[4]),z=N(z,B,U,j,C,12,a[5]),j=N(j,z,B,U,f,17,a[6]),U=N(U,j,z,B,k,22,a[7]),B=N(B,U,j,z,F,7,a[8]),z=N(z,B,U,j,v,12,a[9]),j=N(j,z,B,U,w,17,a[10]),U=N(U,j,z,B,M,22,a[11]),B=N(B,U,j,z,E,7,a[12]),z=N(z,B,U,j,W,12,a[13]),j=N(j,z,B,U,O,17,a[14]),U=N(U,j,z,B,q,22,a[15]),B=l(B,U,j,z,T,5,a[16]),z=l(z,B,U,j,f,9,a[17]),j=l(j,z,B,U,M,14,a[18]),U=l(U,j,z,B,s,20,a[19]),B=l(B,U,j,z,C,5,a[20]),z=l(z,B,U,j,w,9,a[21]),j=l(j,z,B,U,q,14,a[22]),U=l(U,j,z,B,I,20,a[23]),B=l(B,U,j,z,v,5,a[24]),z=l(z,B,U,j,O,9,a[25]),j=l(j,z,B,U,D,14,a[26]),U=l(U,j,z,B,F,20,a[27]),B=l(B,U,j,z,W,5,a[28]),z=l(z,B,U,j,P,9,a[29]),j=l(j,z,B,U,k,14,a[30]),U=l(U,j,z,B,E,20,a[31]),B=m(B,U,j,z,C,4,a[32]),z=m(z,B,U,j,F,11,a[33]),j=m(j,z,B,U,M,16,a[34]),U=m(U,j,z,B,O,23,a[35]),B=m(B,U,j,z,T,4,a[36]),z=m(z,B,U,j,I,11,a[37]),j=m(j,z,B,U,k,16,a[38]),U=m(U,j,z,B,w,23,a[39]),B=m(B,U,j,z,W,4,a[40]),z=m(z,B,U,j,s,11,a[41]),j=m(j,z,B,U,D,16,a[42]),U=m(U,j,z,B,f,23,a[43]),B=m(B,U,j,z,v,4,a[44]),z=m(z,B,U,j,E,11,a[45]),j=m(j,z,B,U,q,16,a[46]),U=m(U,j,z,B,P,23,a[47]),B=p(B,U,j,z,s,6,a[48]),z=p(z,B,U,j,k,10,a[49]),j=p(j,z,B,U,O,15,a[50]),U=p(U,j,z,B,C,21,a[51]),B=p(B,U,j,z,E,6,a[52]),z=p(z,B,U,j,D,10,a[53]),j=p(j,z,B,U,w,15,a[54]),U=p(U,j,z,B,T,21,a[55]),B=p(B,U,j,z,F,6,a[56]),z=p(z,B,U,j,q,10,a[57]),j=p(j,z,B,U,f,15,a[58]),U=p(U,j,z,B,W,21,a[59]),B=p(B,U,j,z,I,6,a[60]),z=p(z,B,U,j,M,10,a[61]),j=p(j,z,B,U,P,15,a[62]),U=p(U,j,z,B,v,21,a[63]),$[0]=$[0]+B|0,$[1]=$[1]+U|0,$[2]=$[2]+j|0,$[3]=$[3]+z|0},_doFinalize:function(){var x=this._data,g=x.words,h=this._nDataBytes*8,c=x.sigBytes*8;g[c>>>5]|=128<<24-c%32;var d=r.floor(h/4294967296),$=h;g[(c+64>>>9<<4)+15]=(d<<8|d>>>24)&16711935|(d<<24|d>>>8)&4278255360,g[(c+64>>>9<<4)+14]=($<<8|$>>>24)&16711935|($<<24|$>>>8)&4278255360,x.sigBytes=(g.length+1)*4,this._process();for(var s=this._hash,T=s.words,P=0;P<4;P++){var D=T[P];T[P]=(D<<8|D>>>24)&16711935|(D<<24|D>>>8)&4278255360}return s},clone:function(){var x=S.clone.call(this);return x._hash=this._hash.clone(),x}});function N(x,g,h,c,d,$,s){var T=x+(g&h|~g&c)+d+s;return(T<<$|T>>>32-$)+g}function l(x,g,h,c,d,$,s){var T=x+(g&c|h&~c)+d+s;return(T<<$|T>>>32-$)+g}function m(x,g,h,c,d,$,s){var T=x+(g^h^c)+d+s;return(T<<$|T>>>32-$)+g}function p(x,g,h,c,d,$,s){var T=x+(h^(g|~c))+d+s;return(T<<$|T>>>32-$)+g}i.MD5=S._createHelper(n),i.HmacMD5=S._createHmacHelper(n)}(Math),o.MD5})}(et)),et.exports}var tt={exports:{}},so;function io(){return so||(so=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){return function(){var r=o,i=r.lib,u=i.WordArray,_=i.Hasher,S=r.algo,y=[],a=S.SHA1=_.extend({_doReset:function(){this._hash=new u.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(n,N){for(var l=this._hash.words,m=l[0],p=l[1],x=l[2],g=l[3],h=l[4],c=0;c<80;c++){if(c<16)y[c]=n[N+c]|0;else{var d=y[c-3]^y[c-8]^y[c-14]^y[c-16];y[c]=d<<1|d>>>31}var $=(m<<5|m>>>27)+h+y[c];c<20?$+=(p&x|~p&g)+1518500249:c<40?$+=(p^x^g)+1859775393:c<60?$+=(p&x|p&g|x&g)-1894007588:$+=(p^x^g)-899497514,h=g,g=x,x=p<<30|p>>>2,p=m,m=$}l[0]=l[0]+m|0,l[1]=l[1]+p|0,l[2]=l[2]+x|0,l[3]=l[3]+g|0,l[4]=l[4]+h|0},_doFinalize:function(){var n=this._data,N=n.words,l=this._nDataBytes*8,m=n.sigBytes*8;return N[m>>>5]|=128<<24-m%32,N[(m+64>>>9<<4)+14]=Math.floor(l/4294967296),N[(m+64>>>9<<4)+15]=l,n.sigBytes=N.length*4,this._process(),this._hash},clone:function(){var n=_.clone.call(this);return n._hash=this._hash.clone(),n}});r.SHA1=_._createHelper(a),r.HmacSHA1=_._createHmacHelper(a)}(),o.SHA1})}(tt)),tt.exports}var ot={exports:{}},co;function rt(){return co||(co=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){return function(r){var i=o,u=i.lib,_=u.WordArray,S=u.Hasher,y=i.algo,a=[],n=[];(function(){function m(h){for(var c=r.sqrt(h),d=2;d<=c;d++)if(!(h%d))return!1;return!0}function p(h){return(h-(h|0))*4294967296|0}for(var x=2,g=0;g<64;)m(x)&&(g<8&&(a[g]=p(r.pow(x,1/2))),n[g]=p(r.pow(x,1/3)),g++),x++})();var N=[],l=y.SHA256=S.extend({_doReset:function(){this._hash=new _.init(a.slice(0))},_doProcessBlock:function(m,p){for(var x=this._hash.words,g=x[0],h=x[1],c=x[2],d=x[3],$=x[4],s=x[5],T=x[6],P=x[7],D=0;D<64;D++){if(D<16)N[D]=m[p+D]|0;else{var I=N[D-15],C=(I<<25|I>>>7)^(I<<14|I>>>18)^I>>>3,f=N[D-2],k=(f<<15|f>>>17)^(f<<13|f>>>19)^f>>>10;N[D]=C+N[D-7]+k+N[D-16]}var F=$&s^~$&T,v=g&h^g&c^h&c,w=(g<<30|g>>>2)^(g<<19|g>>>13)^(g<<10|g>>>22),M=($<<26|$>>>6)^($<<21|$>>>11)^($<<7|$>>>25),E=P+M+F+n[D]+N[D],W=w+v;P=T,T=s,s=$,$=d+E|0,d=c,c=h,h=g,g=E+W|0}x[0]=x[0]+g|0,x[1]=x[1]+h|0,x[2]=x[2]+c|0,x[3]=x[3]+d|0,x[4]=x[4]+$|0,x[5]=x[5]+s|0,x[6]=x[6]+T|0,x[7]=x[7]+P|0},_doFinalize:function(){var m=this._data,p=m.words,x=this._nDataBytes*8,g=m.sigBytes*8;return p[g>>>5]|=128<<24-g%32,p[(g+64>>>9<<4)+14]=r.floor(x/4294967296),p[(g+64>>>9<<4)+15]=x,m.sigBytes=p.length*4,this._process(),this._hash},clone:function(){var m=S.clone.call(this);return m._hash=this._hash.clone(),m}});i.SHA256=S._createHelper(l),i.HmacSHA256=S._createHmacHelper(l)}(Math),o.SHA256})}(ot)),ot.exports}var nt={exports:{}},lo;function Kr(){return lo||(lo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),rt())})(X,function(o){return function(){var r=o,i=r.lib,u=i.WordArray,_=r.algo,S=_.SHA256,y=_.SHA224=S.extend({_doReset:function(){this._hash=new u.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var a=S._doFinalize.call(this);return a.sigBytes-=4,a}});r.SHA224=S._createHelper(y),r.HmacSHA224=S._createHmacHelper(y)}(),o.SHA224})}(nt)),nt.exports}var at={exports:{}},uo;function mo(){return uo||(uo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Ve())})(X,function(o){return function(){var r=o,i=r.lib,u=i.Hasher,_=r.x64,S=_.Word,y=_.WordArray,a=r.algo;function n(){return S.create.apply(S,arguments)}var N=[n(1116352408,3609767458),n(1899447441,602891725),n(3049323471,3964484399),n(3921009573,2173295548),n(961987163,4081628472),n(1508970993,3053834265),n(2453635748,2937671579),n(2870763221,3664609560),n(3624381080,2734883394),n(310598401,1164996542),n(607225278,1323610764),n(1426881987,3590304994),n(1925078388,4068182383),n(2162078206,991336113),n(2614888103,633803317),n(3248222580,3479774868),n(3835390401,2666613458),n(4022224774,944711139),n(264347078,2341262773),n(604807628,2007800933),n(770255983,1495990901),n(1249150122,1856431235),n(1555081692,3175218132),n(1996064986,2198950837),n(2554220882,3999719339),n(2821834349,766784016),n(2952996808,2566594879),n(3210313671,3203337956),n(3336571891,1034457026),n(3584528711,2466948901),n(113926993,3758326383),n(338241895,168717936),n(666307205,1188179964),n(773529912,1546045734),n(1294757372,1522805485),n(1396182291,2643833823),n(1695183700,2343527390),n(1986661051,1014477480),n(2177026350,1206759142),n(2456956037,344077627),n(2730485921,1290863460),n(2820302411,3158454273),n(3259730800,3505952657),n(3345764771,106217008),n(3516065817,3606008344),n(3600352804,1432725776),n(4094571909,1467031594),n(275423344,851169720),n(430227734,3100823752),n(506948616,1363258195),n(659060556,3750685593),n(883997877,3785050280),n(958139571,3318307427),n(1322822218,3812723403),n(1537002063,2003034995),n(1747873779,3602036899),n(1955562222,1575990012),n(2024104815,1125592928),n(2227730452,2716904306),n(2361852424,442776044),n(2428436474,593698344),n(2756734187,3733110249),n(3204031479,2999351573),n(3329325298,3815920427),n(3391569614,3928383900),n(3515267271,566280711),n(3940187606,3454069534),n(4118630271,4000239992),n(116418474,1914138554),n(174292421,2731055270),n(289380356,3203993006),n(460393269,320620315),n(685471733,587496836),n(852142971,1086792851),n(1017036298,365543100),n(1126000580,2618297676),n(1288033470,3409855158),n(1501505948,4234509866),n(1607167915,987167468),n(1816402316,1246189591)],l=[];(function(){for(var p=0;p<80;p++)l[p]=n()})();var m=a.SHA512=u.extend({_doReset:function(){this._hash=new y.init([new S.init(1779033703,4089235720),new S.init(3144134277,2227873595),new S.init(1013904242,4271175723),new S.init(2773480762,1595750129),new S.init(1359893119,2917565137),new S.init(2600822924,725511199),new S.init(528734635,4215389547),new S.init(1541459225,327033209)])},_doProcessBlock:function(p,x){for(var g=this._hash.words,h=g[0],c=g[1],d=g[2],$=g[3],s=g[4],T=g[5],P=g[6],D=g[7],I=h.high,C=h.low,f=c.high,k=c.low,F=d.high,v=d.low,w=$.high,M=$.low,E=s.high,W=s.low,O=T.high,q=T.low,B=P.high,U=P.low,j=D.high,z=D.low,J=I,te=C,V=f,H=k,L=F,Z=v,b=w,A=M,Q=E,G=W,Y=O,ne=q,me=B,le=U,re=j,ye=z,ge=0;ge<80;ge++){var he,de,_e=l[ge];if(ge<16)de=_e.high=p[x+ge*2]|0,he=_e.low=p[x+ge*2+1]|0;else{var Vt=l[ge-15],Pe=Vt.high,ke=Vt.low,Ua=(Pe>>>1|ke<<31)^(Pe>>>8|ke<<24)^Pe>>>7,Ao=(ke>>>1|Pe<<31)^(ke>>>8|Pe<<24)^(ke>>>7|Pe<<25),Vo=l[ge-2],Oe=Vo.high,Re=Vo.low,za=(Oe>>>19|Re<<13)^(Oe<<3|Re>>>29)^Oe>>>6,Lo=(Re>>>19|Oe<<13)^(Re<<3|Oe>>>29)^(Re>>>6|Oe<<26),qo=l[ge-7],Qa=qo.high,ja=qo.low,Wo=l[ge-16],Ga=Wo.high,Uo=Wo.low;he=Ao+ja,de=Ua+Qa+(he>>>0<Ao>>>0?1:0),he=he+Lo,de=de+za+(he>>>0<Lo>>>0?1:0),he=he+Uo,de=de+Ga+(he>>>0<Uo>>>0?1:0),_e.high=de,_e.low=he}var Ha=Q&Y^~Q&me,zo=G&ne^~G&le,Ya=J&V^J&L^V&L,Ka=te&H^te&Z^H&Z,Xa=(J>>>28|te<<4)^(J<<30|te>>>2)^(J<<25|te>>>7),Qo=(te>>>28|J<<4)^(te<<30|J>>>2)^(te<<25|J>>>7),Za=(Q>>>14|G<<18)^(Q>>>18|G<<14)^(Q<<23|G>>>9),Ja=(G>>>14|Q<<18)^(G>>>18|Q<<14)^(G<<23|Q>>>9),jo=N[ge],es=jo.high,Go=jo.low,fe=ye+Ja,Ee=re+Za+(fe>>>0<ye>>>0?1:0),fe=fe+zo,Ee=Ee+Ha+(fe>>>0<zo>>>0?1:0),fe=fe+Go,Ee=Ee+es+(fe>>>0<Go>>>0?1:0),fe=fe+he,Ee=Ee+de+(fe>>>0<he>>>0?1:0),Ho=Qo+Ka,ts=Xa+Ya+(Ho>>>0<Qo>>>0?1:0);re=me,ye=le,me=Y,le=ne,Y=Q,ne=G,G=A+fe|0,Q=b+Ee+(G>>>0<A>>>0?1:0)|0,b=L,A=Z,L=V,Z=H,V=J,H=te,te=fe+Ho|0,J=Ee+ts+(te>>>0<fe>>>0?1:0)|0}C=h.low=C+te,h.high=I+J+(C>>>0<te>>>0?1:0),k=c.low=k+H,c.high=f+V+(k>>>0<H>>>0?1:0),v=d.low=v+Z,d.high=F+L+(v>>>0<Z>>>0?1:0),M=$.low=M+A,$.high=w+b+(M>>>0<A>>>0?1:0),W=s.low=W+G,s.high=E+Q+(W>>>0<G>>>0?1:0),q=T.low=q+ne,T.high=O+Y+(q>>>0<ne>>>0?1:0),U=P.low=U+le,P.high=B+me+(U>>>0<le>>>0?1:0),z=D.low=z+ye,D.high=j+re+(z>>>0<ye>>>0?1:0)},_doFinalize:function(){var p=this._data,x=p.words,g=this._nDataBytes*8,h=p.sigBytes*8;x[h>>>5]|=128<<24-h%32,x[(h+128>>>10<<5)+30]=Math.floor(g/4294967296),x[(h+128>>>10<<5)+31]=g,p.sigBytes=x.length*4,this._process();var c=this._hash.toX32();return c},clone:function(){var p=u.clone.call(this);return p._hash=this._hash.clone(),p},blockSize:1024/32});r.SHA512=u._createHelper(m),r.HmacSHA512=u._createHmacHelper(m)}(),o.SHA512})}(at)),at.exports}var st={exports:{}},po;function Xr(){return po||(po=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Ve(),mo())})(X,function(o){return function(){var r=o,i=r.x64,u=i.Word,_=i.WordArray,S=r.algo,y=S.SHA512,a=S.SHA384=y.extend({_doReset:function(){this._hash=new _.init([new u.init(3418070365,3238371032),new u.init(1654270250,914150663),new u.init(2438529370,812702999),new u.init(355462360,4144912697),new u.init(1731405415,4290775857),new u.init(2394180231,1750603025),new u.init(3675008525,1694076839),new u.init(1203062813,3204075428)])},_doFinalize:function(){var n=y._doFinalize.call(this);return n.sigBytes-=16,n}});r.SHA384=y._createHelper(a),r.HmacSHA384=y._createHmacHelper(a)}(),o.SHA384})}(st)),st.exports}var it={exports:{}},$o;function Zr(){return $o||($o=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Ve())})(X,function(o){return function(r){var i=o,u=i.lib,_=u.WordArray,S=u.Hasher,y=i.x64,a=y.Word,n=i.algo,N=[],l=[],m=[];(function(){for(var g=1,h=0,c=0;c<24;c++){N[g+5*h]=(c+1)*(c+2)/2%64;var d=h%5,$=(2*g+3*h)%5;g=d,h=$}for(var g=0;g<5;g++)for(var h=0;h<5;h++)l[g+5*h]=h+(2*g+3*h)%5*5;for(var s=1,T=0;T<24;T++){for(var P=0,D=0,I=0;I<7;I++){if(s&1){var C=(1<<I)-1;C<32?D^=1<<C:P^=1<<C-32}s&128?s=s<<1^113:s<<=1}m[T]=a.create(P,D)}})();var p=[];(function(){for(var g=0;g<25;g++)p[g]=a.create()})();var x=n.SHA3=S.extend({cfg:S.cfg.extend({outputLength:512}),_doReset:function(){for(var g=this._state=[],h=0;h<25;h++)g[h]=new a.init;this.blockSize=(1600-2*this.cfg.outputLength)/32},_doProcessBlock:function(g,h){for(var c=this._state,d=this.blockSize/2,$=0;$<d;$++){var s=g[h+2*$],T=g[h+2*$+1];s=(s<<8|s>>>24)&16711935|(s<<24|s>>>8)&4278255360,T=(T<<8|T>>>24)&16711935|(T<<24|T>>>8)&4278255360;var P=c[$];P.high^=T,P.low^=s}for(var D=0;D<24;D++){for(var I=0;I<5;I++){for(var C=0,f=0,k=0;k<5;k++){var P=c[I+5*k];C^=P.high,f^=P.low}var F=p[I];F.high=C,F.low=f}for(var I=0;I<5;I++)for(var v=p[(I+4)%5],w=p[(I+1)%5],M=w.high,E=w.low,C=v.high^(M<<1|E>>>31),f=v.low^(E<<1|M>>>31),k=0;k<5;k++){var P=c[I+5*k];P.high^=C,P.low^=f}for(var W=1;W<25;W++){var C,f,P=c[W],O=P.high,q=P.low,B=N[W];B<32?(C=O<<B|q>>>32-B,f=q<<B|O>>>32-B):(C=q<<B-32|O>>>64-B,f=O<<B-32|q>>>64-B);var U=p[l[W]];U.high=C,U.low=f}var j=p[0],z=c[0];j.high=z.high,j.low=z.low;for(var I=0;I<5;I++)for(var k=0;k<5;k++){var W=I+5*k,P=c[W],J=p[W],te=p[(I+1)%5+5*k],V=p[(I+2)%5+5*k];P.high=J.high^~te.high&V.high,P.low=J.low^~te.low&V.low}var P=c[0],H=m[D];P.high^=H.high,P.low^=H.low}},_doFinalize:function(){var g=this._data,h=g.words;this._nDataBytes*8;var c=g.sigBytes*8,d=this.blockSize*32;h[c>>>5]|=1<<24-c%32,h[(r.ceil((c+1)/d)*d>>>5)-1]|=128,g.sigBytes=h.length*4,this._process();for(var $=this._state,s=this.cfg.outputLength/8,T=s/8,P=[],D=0;D<T;D++){var I=$[D],C=I.high,f=I.low;C=(C<<8|C>>>24)&16711935|(C<<24|C>>>8)&4278255360,f=(f<<8|f>>>24)&16711935|(f<<24|f>>>8)&4278255360,P.push(f),P.push(C)}return new _.init(P,s)},clone:function(){for(var g=S.clone.call(this),h=g._state=this._state.slice(0),c=0;c<25;c++)h[c]=h[c].clone();return g}});i.SHA3=S._createHelper(x),i.HmacSHA3=S._createHmacHelper(x)}(Math),o.SHA3})}(it)),it.exports}var ct={exports:{}},ho;function Jr(){return ho||(ho=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){/** @preserve
7
+ (c) 2012 by Cédric Mesnil. All rights reserved.
8
+
9
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
10
+
11
+ - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
12
+ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
13
+
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
15
+ */return function(r){var i=o,u=i.lib,_=u.WordArray,S=u.Hasher,y=i.algo,a=_.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),n=_.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),N=_.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),l=_.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),m=_.create([0,1518500249,1859775393,2400959708,2840853838]),p=_.create([1352829926,1548603684,1836072691,2053994217,0]),x=y.RIPEMD160=S.extend({_doReset:function(){this._hash=_.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(T,P){for(var D=0;D<16;D++){var I=P+D,C=T[I];T[I]=(C<<8|C>>>24)&16711935|(C<<24|C>>>8)&4278255360}var f=this._hash.words,k=m.words,F=p.words,v=a.words,w=n.words,M=N.words,E=l.words,W,O,q,B,U,j,z,J,te,V;j=W=f[0],z=O=f[1],J=q=f[2],te=B=f[3],V=U=f[4];for(var H,D=0;D<80;D+=1)H=W+T[P+v[D]]|0,D<16?H+=g(O,q,B)+k[0]:D<32?H+=h(O,q,B)+k[1]:D<48?H+=c(O,q,B)+k[2]:D<64?H+=d(O,q,B)+k[3]:H+=$(O,q,B)+k[4],H=H|0,H=s(H,M[D]),H=H+U|0,W=U,U=B,B=s(q,10),q=O,O=H,H=j+T[P+w[D]]|0,D<16?H+=$(z,J,te)+F[0]:D<32?H+=d(z,J,te)+F[1]:D<48?H+=c(z,J,te)+F[2]:D<64?H+=h(z,J,te)+F[3]:H+=g(z,J,te)+F[4],H=H|0,H=s(H,E[D]),H=H+V|0,j=V,V=te,te=s(J,10),J=z,z=H;H=f[1]+q+te|0,f[1]=f[2]+B+V|0,f[2]=f[3]+U+j|0,f[3]=f[4]+W+z|0,f[4]=f[0]+O+J|0,f[0]=H},_doFinalize:function(){var T=this._data,P=T.words,D=this._nDataBytes*8,I=T.sigBytes*8;P[I>>>5]|=128<<24-I%32,P[(I+64>>>9<<4)+14]=(D<<8|D>>>24)&16711935|(D<<24|D>>>8)&4278255360,T.sigBytes=(P.length+1)*4,this._process();for(var C=this._hash,f=C.words,k=0;k<5;k++){var F=f[k];f[k]=(F<<8|F>>>24)&16711935|(F<<24|F>>>8)&4278255360}return C},clone:function(){var T=S.clone.call(this);return T._hash=this._hash.clone(),T}});function g(T,P,D){return T^P^D}function h(T,P,D){return T&P|~T&D}function c(T,P,D){return(T|~P)^D}function d(T,P,D){return T&D|P&~D}function $(T,P,D){return T^(P|~D)}function s(T,P){return T<<P|T>>>32-P}i.RIPEMD160=S._createHelper(x),i.HmacRIPEMD160=S._createHmacHelper(x)}(),o.RIPEMD160})}(ct)),ct.exports}var lt={exports:{}},go;function dt(){return go||(go=1,function(t,R){(function(o,r){t.exports=r(ee())})(X,function(o){(function(){var r=o,i=r.lib,u=i.Base,_=r.enc,S=_.Utf8,y=r.algo;y.HMAC=u.extend({init:function(a,n){a=this._hasher=new a.init,typeof n=="string"&&(n=S.parse(n));var N=a.blockSize,l=N*4;n.sigBytes>l&&(n=a.finalize(n)),n.clamp();for(var m=this._oKey=n.clone(),p=this._iKey=n.clone(),x=m.words,g=p.words,h=0;h<N;h++)x[h]^=1549556828,g[h]^=909522486;m.sigBytes=p.sigBytes=l,this.reset()},reset:function(){var a=this._hasher;a.reset(),a.update(this._iKey)},update:function(a){return this._hasher.update(a),this},finalize:function(a){var n=this._hasher,N=n.finalize(a);n.reset();var l=n.finalize(this._oKey.clone().concat(N));return l}})})()})}(lt)),lt.exports}var ut={exports:{}},fo;function en(){return fo||(fo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),rt(),dt())})(X,function(o){return function(){var r=o,i=r.lib,u=i.Base,_=i.WordArray,S=r.algo,y=S.SHA256,a=S.HMAC,n=S.PBKDF2=u.extend({cfg:u.extend({keySize:128/32,hasher:y,iterations:25e4}),init:function(N){this.cfg=this.cfg.extend(N)},compute:function(N,l){for(var m=this.cfg,p=a.create(m.hasher,N),x=_.create(),g=_.create([1]),h=x.words,c=g.words,d=m.keySize,$=m.iterations;h.length<d;){var s=p.update(l).finalize(g);p.reset();for(var T=s.words,P=T.length,D=s,I=1;I<$;I++){D=p.finalize(D),p.reset();for(var C=D.words,f=0;f<P;f++)T[f]^=C[f]}x.concat(s),c[0]++}return x.sigBytes=d*4,x}});r.PBKDF2=function(N,l,m){return n.create(m).compute(N,l)}}(),o.PBKDF2})}(ut)),ut.exports}var mt={exports:{}},bo;function Ce(){return bo||(bo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),io(),dt())})(X,function(o){return function(){var r=o,i=r.lib,u=i.Base,_=i.WordArray,S=r.algo,y=S.MD5,a=S.EvpKDF=u.extend({cfg:u.extend({keySize:128/32,hasher:y,iterations:1}),init:function(n){this.cfg=this.cfg.extend(n)},compute:function(n,N){for(var l,m=this.cfg,p=m.hasher.create(),x=_.create(),g=x.words,h=m.keySize,c=m.iterations;g.length<h;){l&&p.update(l),l=p.update(n).finalize(N),p.reset();for(var d=1;d<c;d++)l=p.finalize(l),p.reset();x.concat(l)}return x.sigBytes=h*4,x}});r.EvpKDF=function(n,N,l){return a.create(l).compute(n,N)}}(),o.EvpKDF})}(mt)),mt.exports}var pt={exports:{}},xo;function ue(){return xo||(xo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Ce())})(X,function(o){o.lib.Cipher||function(r){var i=o,u=i.lib,_=u.Base,S=u.WordArray,y=u.BufferedBlockAlgorithm,a=i.enc;a.Utf8;var n=a.Base64,N=i.algo,l=N.EvpKDF,m=u.Cipher=y.extend({cfg:_.extend(),createEncryptor:function(C,f){return this.create(this._ENC_XFORM_MODE,C,f)},createDecryptor:function(C,f){return this.create(this._DEC_XFORM_MODE,C,f)},init:function(C,f,k){this.cfg=this.cfg.extend(k),this._xformMode=C,this._key=f,this.reset()},reset:function(){y.reset.call(this),this._doReset()},process:function(C){return this._append(C),this._process()},finalize:function(C){C&&this._append(C);var f=this._doFinalize();return f},keySize:128/32,ivSize:128/32,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function C(f){return typeof f=="string"?I:T}return function(f){return{encrypt:function(k,F,v){return C(F).encrypt(f,k,F,v)},decrypt:function(k,F,v){return C(F).decrypt(f,k,F,v)}}}}()});u.StreamCipher=m.extend({_doFinalize:function(){var C=this._process(!0);return C},blockSize:1});var p=i.mode={},x=u.BlockCipherMode=_.extend({createEncryptor:function(C,f){return this.Encryptor.create(C,f)},createDecryptor:function(C,f){return this.Decryptor.create(C,f)},init:function(C,f){this._cipher=C,this._iv=f}}),g=p.CBC=function(){var C=x.extend();C.Encryptor=C.extend({processBlock:function(k,F){var v=this._cipher,w=v.blockSize;f.call(this,k,F,w),v.encryptBlock(k,F),this._prevBlock=k.slice(F,F+w)}}),C.Decryptor=C.extend({processBlock:function(k,F){var v=this._cipher,w=v.blockSize,M=k.slice(F,F+w);v.decryptBlock(k,F),f.call(this,k,F,w),this._prevBlock=M}});function f(k,F,v){var w,M=this._iv;M?(w=M,this._iv=r):w=this._prevBlock;for(var E=0;E<v;E++)k[F+E]^=w[E]}return C}(),h=i.pad={},c=h.Pkcs7={pad:function(C,f){for(var k=f*4,F=k-C.sigBytes%k,v=F<<24|F<<16|F<<8|F,w=[],M=0;M<F;M+=4)w.push(v);var E=S.create(w,F);C.concat(E)},unpad:function(C){var f=C.words[C.sigBytes-1>>>2]&255;C.sigBytes-=f}};u.BlockCipher=m.extend({cfg:m.cfg.extend({mode:g,padding:c}),reset:function(){var C;m.reset.call(this);var f=this.cfg,k=f.iv,F=f.mode;this._xformMode==this._ENC_XFORM_MODE?C=F.createEncryptor:(C=F.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==C?this._mode.init(this,k&&k.words):(this._mode=C.call(F,this,k&&k.words),this._mode.__creator=C)},_doProcessBlock:function(C,f){this._mode.processBlock(C,f)},_doFinalize:function(){var C,f=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(f.pad(this._data,this.blockSize),C=this._process(!0)):(C=this._process(!0),f.unpad(C)),C},blockSize:128/32});var d=u.CipherParams=_.extend({init:function(C){this.mixIn(C)},toString:function(C){return(C||this.formatter).stringify(this)}}),$=i.format={},s=$.OpenSSL={stringify:function(C){var f,k=C.ciphertext,F=C.salt;return F?f=S.create([1398893684,1701076831]).concat(F).concat(k):f=k,f.toString(n)},parse:function(C){var f,k=n.parse(C),F=k.words;return F[0]==1398893684&&F[1]==1701076831&&(f=S.create(F.slice(2,4)),F.splice(0,4),k.sigBytes-=16),d.create({ciphertext:k,salt:f})}},T=u.SerializableCipher=_.extend({cfg:_.extend({format:s}),encrypt:function(C,f,k,F){F=this.cfg.extend(F);var v=C.createEncryptor(k,F),w=v.finalize(f),M=v.cfg;return d.create({ciphertext:w,key:k,iv:M.iv,algorithm:C,mode:M.mode,padding:M.padding,blockSize:C.blockSize,formatter:F.format})},decrypt:function(C,f,k,F){F=this.cfg.extend(F),f=this._parse(f,F.format);var v=C.createDecryptor(k,F).finalize(f.ciphertext);return v},_parse:function(C,f){return typeof C=="string"?f.parse(C,this):C}}),P=i.kdf={},D=P.OpenSSL={execute:function(C,f,k,F,v){if(F||(F=S.random(64/8)),v)var w=l.create({keySize:f+k,hasher:v}).compute(C,F);else var w=l.create({keySize:f+k}).compute(C,F);var M=S.create(w.words.slice(f),k*4);return w.sigBytes=f*4,d.create({key:w,iv:M,salt:F})}},I=u.PasswordBasedCipher=T.extend({cfg:T.cfg.extend({kdf:D}),encrypt:function(C,f,k,F){F=this.cfg.extend(F);var v=F.kdf.execute(k,C.keySize,C.ivSize,F.salt,F.hasher);F.iv=v.iv;var w=T.encrypt.call(this,C,f,v.key,F);return w.mixIn(v),w},decrypt:function(C,f,k,F){F=this.cfg.extend(F),f=this._parse(f,F.format);var v=F.kdf.execute(k,C.keySize,C.ivSize,f.salt,F.hasher);F.iv=v.iv;var w=T.decrypt.call(this,C,f,v.key,F);return w}})}()})}(pt)),pt.exports}var $t={exports:{}},yo;function tn(){return yo||(yo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.mode.CFB=function(){var r=o.lib.BlockCipherMode.extend();r.Encryptor=r.extend({processBlock:function(u,_){var S=this._cipher,y=S.blockSize;i.call(this,u,_,y,S),this._prevBlock=u.slice(_,_+y)}}),r.Decryptor=r.extend({processBlock:function(u,_){var S=this._cipher,y=S.blockSize,a=u.slice(_,_+y);i.call(this,u,_,y,S),this._prevBlock=a}});function i(u,_,S,y){var a,n=this._iv;n?(a=n.slice(0),this._iv=void 0):a=this._prevBlock,y.encryptBlock(a,0);for(var N=0;N<S;N++)u[_+N]^=a[N]}return r}(),o.mode.CFB})}($t)),$t.exports}var ht={exports:{}},_o;function on(){return _o||(_o=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.mode.CTR=function(){var r=o.lib.BlockCipherMode.extend(),i=r.Encryptor=r.extend({processBlock:function(u,_){var S=this._cipher,y=S.blockSize,a=this._iv,n=this._counter;a&&(n=this._counter=a.slice(0),this._iv=void 0);var N=n.slice(0);S.encryptBlock(N,0),n[y-1]=n[y-1]+1|0;for(var l=0;l<y;l++)u[_+l]^=N[l]}});return r.Decryptor=i,r}(),o.mode.CTR})}(ht)),ht.exports}var gt={exports:{}},So;function rn(){return So||(So=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){/** @preserve
16
+ * Counter block mode compatible with Dr Brian Gladman fileenc.c
17
+ * derived from CryptoJS.mode.CTR
18
+ * Jan Hruby jhruby.web@gmail.com
19
+ */return o.mode.CTRGladman=function(){var r=o.lib.BlockCipherMode.extend();function i(S){if((S>>24&255)===255){var y=S>>16&255,a=S>>8&255,n=S&255;y===255?(y=0,a===255?(a=0,n===255?n=0:++n):++a):++y,S=0,S+=y<<16,S+=a<<8,S+=n}else S+=1<<24;return S}function u(S){return(S[0]=i(S[0]))===0&&(S[1]=i(S[1])),S}var _=r.Encryptor=r.extend({processBlock:function(S,y){var a=this._cipher,n=a.blockSize,N=this._iv,l=this._counter;N&&(l=this._counter=N.slice(0),this._iv=void 0),u(l);var m=l.slice(0);a.encryptBlock(m,0);for(var p=0;p<n;p++)S[y+p]^=m[p]}});return r.Decryptor=_,r}(),o.mode.CTRGladman})}(gt)),gt.exports}var ft={exports:{}},No;function nn(){return No||(No=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.mode.OFB=function(){var r=o.lib.BlockCipherMode.extend(),i=r.Encryptor=r.extend({processBlock:function(u,_){var S=this._cipher,y=S.blockSize,a=this._iv,n=this._keystream;a&&(n=this._keystream=a.slice(0),this._iv=void 0),S.encryptBlock(n,0);for(var N=0;N<y;N++)u[_+N]^=n[N]}});return r.Decryptor=i,r}(),o.mode.OFB})}(ft)),ft.exports}var bt={exports:{}},Co;function an(){return Co||(Co=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.mode.ECB=function(){var r=o.lib.BlockCipherMode.extend();return r.Encryptor=r.extend({processBlock:function(i,u){this._cipher.encryptBlock(i,u)}}),r.Decryptor=r.extend({processBlock:function(i,u){this._cipher.decryptBlock(i,u)}}),r}(),o.mode.ECB})}(bt)),bt.exports}var xt={exports:{}},Eo;function sn(){return Eo||(Eo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.pad.AnsiX923={pad:function(r,i){var u=r.sigBytes,_=i*4,S=_-u%_,y=u+S-1;r.clamp(),r.words[y>>>2]|=S<<24-y%4*8,r.sigBytes+=S},unpad:function(r){var i=r.words[r.sigBytes-1>>>2]&255;r.sigBytes-=i}},o.pad.Ansix923})}(xt)),xt.exports}var yt={exports:{}},To;function cn(){return To||(To=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.pad.Iso10126={pad:function(r,i){var u=i*4,_=u-r.sigBytes%u;r.concat(o.lib.WordArray.random(_-1)).concat(o.lib.WordArray.create([_<<24],1))},unpad:function(r){var i=r.words[r.sigBytes-1>>>2]&255;r.sigBytes-=i}},o.pad.Iso10126})}(yt)),yt.exports}var _t={exports:{}},Do;function ln(){return Do||(Do=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.pad.Iso97971={pad:function(r,i){r.concat(o.lib.WordArray.create([2147483648],1)),o.pad.ZeroPadding.pad(r,i)},unpad:function(r){o.pad.ZeroPadding.unpad(r),r.sigBytes--}},o.pad.Iso97971})}(_t)),_t.exports}var St={exports:{}},Po;function dn(){return Po||(Po=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.pad.ZeroPadding={pad:function(r,i){var u=i*4;r.clamp(),r.sigBytes+=u-(r.sigBytes%u||u)},unpad:function(r){for(var i=r.words,u=r.sigBytes-1,u=r.sigBytes-1;u>=0;u--)if(i[u>>>2]>>>24-u%4*8&255){r.sigBytes=u+1;break}}},o.pad.ZeroPadding})}(St)),St.exports}var Nt={exports:{}},Oo;function un(){return Oo||(Oo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return o.pad.NoPadding={pad:function(){},unpad:function(){}},o.pad.NoPadding})}(Nt)),Nt.exports}var Ct={exports:{}},Fo;function mn(){return Fo||(Fo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),ue())})(X,function(o){return function(r){var i=o,u=i.lib,_=u.CipherParams,S=i.enc,y=S.Hex,a=i.format;a.Hex={stringify:function(n){return n.ciphertext.toString(y)},parse:function(n){var N=y.parse(n);return _.create({ciphertext:N})}}}(),o.format.Hex})}(Ct)),Ct.exports}var Et={exports:{}},Io;function pn(){return Io||(Io=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Te(),De(),Ce(),ue())})(X,function(o){return function(){var r=o,i=r.lib,u=i.BlockCipher,_=r.algo,S=[],y=[],a=[],n=[],N=[],l=[],m=[],p=[],x=[],g=[];(function(){for(var d=[],$=0;$<256;$++)$<128?d[$]=$<<1:d[$]=$<<1^283;for(var s=0,T=0,$=0;$<256;$++){var P=T^T<<1^T<<2^T<<3^T<<4;P=P>>>8^P&255^99,S[s]=P,y[P]=s;var D=d[s],I=d[D],C=d[I],f=d[P]*257^P*16843008;a[s]=f<<24|f>>>8,n[s]=f<<16|f>>>16,N[s]=f<<8|f>>>24,l[s]=f;var f=C*16843009^I*65537^D*257^s*16843008;m[P]=f<<24|f>>>8,p[P]=f<<16|f>>>16,x[P]=f<<8|f>>>24,g[P]=f,s?(s=D^d[d[d[C^D]]],T^=d[d[T]]):s=T=1}})();var h=[0,1,2,4,8,16,32,64,128,27,54],c=_.AES=u.extend({_doReset:function(){var d;if(!(this._nRounds&&this._keyPriorReset===this._key)){for(var $=this._keyPriorReset=this._key,s=$.words,T=$.sigBytes/4,P=this._nRounds=T+6,D=(P+1)*4,I=this._keySchedule=[],C=0;C<D;C++)C<T?I[C]=s[C]:(d=I[C-1],C%T?T>6&&C%T==4&&(d=S[d>>>24]<<24|S[d>>>16&255]<<16|S[d>>>8&255]<<8|S[d&255]):(d=d<<8|d>>>24,d=S[d>>>24]<<24|S[d>>>16&255]<<16|S[d>>>8&255]<<8|S[d&255],d^=h[C/T|0]<<24),I[C]=I[C-T]^d);for(var f=this._invKeySchedule=[],k=0;k<D;k++){var C=D-k;if(k%4)var d=I[C];else var d=I[C-4];k<4||C<=4?f[k]=d:f[k]=m[S[d>>>24]]^p[S[d>>>16&255]]^x[S[d>>>8&255]]^g[S[d&255]]}}},encryptBlock:function(d,$){this._doCryptBlock(d,$,this._keySchedule,a,n,N,l,S)},decryptBlock:function(d,$){var s=d[$+1];d[$+1]=d[$+3],d[$+3]=s,this._doCryptBlock(d,$,this._invKeySchedule,m,p,x,g,y);var s=d[$+1];d[$+1]=d[$+3],d[$+3]=s},_doCryptBlock:function(d,$,s,T,P,D,I,C){for(var f=this._nRounds,k=d[$]^s[0],F=d[$+1]^s[1],v=d[$+2]^s[2],w=d[$+3]^s[3],M=4,E=1;E<f;E++){var W=T[k>>>24]^P[F>>>16&255]^D[v>>>8&255]^I[w&255]^s[M++],O=T[F>>>24]^P[v>>>16&255]^D[w>>>8&255]^I[k&255]^s[M++],q=T[v>>>24]^P[w>>>16&255]^D[k>>>8&255]^I[F&255]^s[M++],B=T[w>>>24]^P[k>>>16&255]^D[F>>>8&255]^I[v&255]^s[M++];k=W,F=O,v=q,w=B}var W=(C[k>>>24]<<24|C[F>>>16&255]<<16|C[v>>>8&255]<<8|C[w&255])^s[M++],O=(C[F>>>24]<<24|C[v>>>16&255]<<16|C[w>>>8&255]<<8|C[k&255])^s[M++],q=(C[v>>>24]<<24|C[w>>>16&255]<<16|C[k>>>8&255]<<8|C[F&255])^s[M++],B=(C[w>>>24]<<24|C[k>>>16&255]<<16|C[F>>>8&255]<<8|C[v&255])^s[M++];d[$]=W,d[$+1]=O,d[$+2]=q,d[$+3]=B},keySize:256/32});r.AES=u._createHelper(c)}(),o.AES})}(Et)),Et.exports}var Tt={exports:{}},wo;function $n(){return wo||(wo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Te(),De(),Ce(),ue())})(X,function(o){return function(){var r=o,i=r.lib,u=i.WordArray,_=i.BlockCipher,S=r.algo,y=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],a=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],n=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],N=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],l=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],m=S.DES=_.extend({_doReset:function(){for(var h=this._key,c=h.words,d=[],$=0;$<56;$++){var s=y[$]-1;d[$]=c[s>>>5]>>>31-s%32&1}for(var T=this._subKeys=[],P=0;P<16;P++){for(var D=T[P]=[],I=n[P],$=0;$<24;$++)D[$/6|0]|=d[(a[$]-1+I)%28]<<31-$%6,D[4+($/6|0)]|=d[28+(a[$+24]-1+I)%28]<<31-$%6;D[0]=D[0]<<1|D[0]>>>31;for(var $=1;$<7;$++)D[$]=D[$]>>>($-1)*4+3;D[7]=D[7]<<5|D[7]>>>27}for(var C=this._invSubKeys=[],$=0;$<16;$++)C[$]=T[15-$]},encryptBlock:function(h,c){this._doCryptBlock(h,c,this._subKeys)},decryptBlock:function(h,c){this._doCryptBlock(h,c,this._invSubKeys)},_doCryptBlock:function(h,c,d){this._lBlock=h[c],this._rBlock=h[c+1],p.call(this,4,252645135),p.call(this,16,65535),x.call(this,2,858993459),x.call(this,8,16711935),p.call(this,1,1431655765);for(var $=0;$<16;$++){for(var s=d[$],T=this._lBlock,P=this._rBlock,D=0,I=0;I<8;I++)D|=N[I][((P^s[I])&l[I])>>>0];this._lBlock=P,this._rBlock=T^D}var C=this._lBlock;this._lBlock=this._rBlock,this._rBlock=C,p.call(this,1,1431655765),x.call(this,8,16711935),x.call(this,2,858993459),p.call(this,16,65535),p.call(this,4,252645135),h[c]=this._lBlock,h[c+1]=this._rBlock},keySize:64/32,ivSize:64/32,blockSize:64/32});function p(h,c){var d=(this._lBlock>>>h^this._rBlock)&c;this._rBlock^=d,this._lBlock^=d<<h}function x(h,c){var d=(this._rBlock>>>h^this._lBlock)&c;this._lBlock^=d,this._rBlock^=d<<h}r.DES=_._createHelper(m);var g=S.TripleDES=_.extend({_doReset:function(){var h=this._key,c=h.words;if(c.length!==2&&c.length!==4&&c.length<6)throw new Error("Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.");var d=c.slice(0,2),$=c.length<4?c.slice(0,2):c.slice(2,4),s=c.length<6?c.slice(0,2):c.slice(4,6);this._des1=m.createEncryptor(u.create(d)),this._des2=m.createEncryptor(u.create($)),this._des3=m.createEncryptor(u.create(s))},encryptBlock:function(h,c){this._des1.encryptBlock(h,c),this._des2.decryptBlock(h,c),this._des3.encryptBlock(h,c)},decryptBlock:function(h,c){this._des3.decryptBlock(h,c),this._des2.encryptBlock(h,c),this._des1.decryptBlock(h,c)},keySize:192/32,ivSize:64/32,blockSize:64/32});r.TripleDES=_._createHelper(g)}(),o.TripleDES})}(Tt)),Tt.exports}var Dt={exports:{}},ko;function hn(){return ko||(ko=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Te(),De(),Ce(),ue())})(X,function(o){return function(){var r=o,i=r.lib,u=i.StreamCipher,_=r.algo,S=_.RC4=u.extend({_doReset:function(){for(var n=this._key,N=n.words,l=n.sigBytes,m=this._S=[],p=0;p<256;p++)m[p]=p;for(var p=0,x=0;p<256;p++){var g=p%l,h=N[g>>>2]>>>24-g%4*8&255;x=(x+m[p]+h)%256;var c=m[p];m[p]=m[x],m[x]=c}this._i=this._j=0},_doProcessBlock:function(n,N){n[N]^=y.call(this)},keySize:256/32,ivSize:0});function y(){for(var n=this._S,N=this._i,l=this._j,m=0,p=0;p<4;p++){N=(N+1)%256,l=(l+n[N])%256;var x=n[N];n[N]=n[l],n[l]=x,m|=n[(n[N]+n[l])%256]<<24-p*8}return this._i=N,this._j=l,m}r.RC4=u._createHelper(S);var a=_.RC4Drop=S.extend({cfg:S.cfg.extend({drop:192}),_doReset:function(){S._doReset.call(this);for(var n=this.cfg.drop;n>0;n--)y.call(this)}});r.RC4Drop=u._createHelper(a)}(),o.RC4})}(Dt)),Dt.exports}var Pt={exports:{}},Ro;function gn(){return Ro||(Ro=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Te(),De(),Ce(),ue())})(X,function(o){return function(){var r=o,i=r.lib,u=i.StreamCipher,_=r.algo,S=[],y=[],a=[],n=_.Rabbit=u.extend({_doReset:function(){for(var l=this._key.words,m=this.cfg.iv,p=0;p<4;p++)l[p]=(l[p]<<8|l[p]>>>24)&16711935|(l[p]<<24|l[p]>>>8)&4278255360;var x=this._X=[l[0],l[3]<<16|l[2]>>>16,l[1],l[0]<<16|l[3]>>>16,l[2],l[1]<<16|l[0]>>>16,l[3],l[2]<<16|l[1]>>>16],g=this._C=[l[2]<<16|l[2]>>>16,l[0]&4294901760|l[1]&65535,l[3]<<16|l[3]>>>16,l[1]&4294901760|l[2]&65535,l[0]<<16|l[0]>>>16,l[2]&4294901760|l[3]&65535,l[1]<<16|l[1]>>>16,l[3]&4294901760|l[0]&65535];this._b=0;for(var p=0;p<4;p++)N.call(this);for(var p=0;p<8;p++)g[p]^=x[p+4&7];if(m){var h=m.words,c=h[0],d=h[1],$=(c<<8|c>>>24)&16711935|(c<<24|c>>>8)&4278255360,s=(d<<8|d>>>24)&16711935|(d<<24|d>>>8)&4278255360,T=$>>>16|s&4294901760,P=s<<16|$&65535;g[0]^=$,g[1]^=T,g[2]^=s,g[3]^=P,g[4]^=$,g[5]^=T,g[6]^=s,g[7]^=P;for(var p=0;p<4;p++)N.call(this)}},_doProcessBlock:function(l,m){var p=this._X;N.call(this),S[0]=p[0]^p[5]>>>16^p[3]<<16,S[1]=p[2]^p[7]>>>16^p[5]<<16,S[2]=p[4]^p[1]>>>16^p[7]<<16,S[3]=p[6]^p[3]>>>16^p[1]<<16;for(var x=0;x<4;x++)S[x]=(S[x]<<8|S[x]>>>24)&16711935|(S[x]<<24|S[x]>>>8)&4278255360,l[m+x]^=S[x]},blockSize:128/32,ivSize:64/32});function N(){for(var l=this._X,m=this._C,p=0;p<8;p++)y[p]=m[p];m[0]=m[0]+1295307597+this._b|0,m[1]=m[1]+3545052371+(m[0]>>>0<y[0]>>>0?1:0)|0,m[2]=m[2]+886263092+(m[1]>>>0<y[1]>>>0?1:0)|0,m[3]=m[3]+1295307597+(m[2]>>>0<y[2]>>>0?1:0)|0,m[4]=m[4]+3545052371+(m[3]>>>0<y[3]>>>0?1:0)|0,m[5]=m[5]+886263092+(m[4]>>>0<y[4]>>>0?1:0)|0,m[6]=m[6]+1295307597+(m[5]>>>0<y[5]>>>0?1:0)|0,m[7]=m[7]+3545052371+(m[6]>>>0<y[6]>>>0?1:0)|0,this._b=m[7]>>>0<y[7]>>>0?1:0;for(var p=0;p<8;p++){var x=l[p]+m[p],g=x&65535,h=x>>>16,c=((g*g>>>17)+g*h>>>15)+h*h,d=((x&4294901760)*x|0)+((x&65535)*x|0);a[p]=c^d}l[0]=a[0]+(a[7]<<16|a[7]>>>16)+(a[6]<<16|a[6]>>>16)|0,l[1]=a[1]+(a[0]<<8|a[0]>>>24)+a[7]|0,l[2]=a[2]+(a[1]<<16|a[1]>>>16)+(a[0]<<16|a[0]>>>16)|0,l[3]=a[3]+(a[2]<<8|a[2]>>>24)+a[1]|0,l[4]=a[4]+(a[3]<<16|a[3]>>>16)+(a[2]<<16|a[2]>>>16)|0,l[5]=a[5]+(a[4]<<8|a[4]>>>24)+a[3]|0,l[6]=a[6]+(a[5]<<16|a[5]>>>16)+(a[4]<<16|a[4]>>>16)|0,l[7]=a[7]+(a[6]<<8|a[6]>>>24)+a[5]|0}r.Rabbit=u._createHelper(n)}(),o.Rabbit})}(Pt)),Pt.exports}var Ot={exports:{}},vo;function fn(){return vo||(vo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Te(),De(),Ce(),ue())})(X,function(o){return function(){var r=o,i=r.lib,u=i.StreamCipher,_=r.algo,S=[],y=[],a=[],n=_.RabbitLegacy=u.extend({_doReset:function(){var l=this._key.words,m=this.cfg.iv,p=this._X=[l[0],l[3]<<16|l[2]>>>16,l[1],l[0]<<16|l[3]>>>16,l[2],l[1]<<16|l[0]>>>16,l[3],l[2]<<16|l[1]>>>16],x=this._C=[l[2]<<16|l[2]>>>16,l[0]&4294901760|l[1]&65535,l[3]<<16|l[3]>>>16,l[1]&4294901760|l[2]&65535,l[0]<<16|l[0]>>>16,l[2]&4294901760|l[3]&65535,l[1]<<16|l[1]>>>16,l[3]&4294901760|l[0]&65535];this._b=0;for(var g=0;g<4;g++)N.call(this);for(var g=0;g<8;g++)x[g]^=p[g+4&7];if(m){var h=m.words,c=h[0],d=h[1],$=(c<<8|c>>>24)&16711935|(c<<24|c>>>8)&4278255360,s=(d<<8|d>>>24)&16711935|(d<<24|d>>>8)&4278255360,T=$>>>16|s&4294901760,P=s<<16|$&65535;x[0]^=$,x[1]^=T,x[2]^=s,x[3]^=P,x[4]^=$,x[5]^=T,x[6]^=s,x[7]^=P;for(var g=0;g<4;g++)N.call(this)}},_doProcessBlock:function(l,m){var p=this._X;N.call(this),S[0]=p[0]^p[5]>>>16^p[3]<<16,S[1]=p[2]^p[7]>>>16^p[5]<<16,S[2]=p[4]^p[1]>>>16^p[7]<<16,S[3]=p[6]^p[3]>>>16^p[1]<<16;for(var x=0;x<4;x++)S[x]=(S[x]<<8|S[x]>>>24)&16711935|(S[x]<<24|S[x]>>>8)&4278255360,l[m+x]^=S[x]},blockSize:128/32,ivSize:64/32});function N(){for(var l=this._X,m=this._C,p=0;p<8;p++)y[p]=m[p];m[0]=m[0]+1295307597+this._b|0,m[1]=m[1]+3545052371+(m[0]>>>0<y[0]>>>0?1:0)|0,m[2]=m[2]+886263092+(m[1]>>>0<y[1]>>>0?1:0)|0,m[3]=m[3]+1295307597+(m[2]>>>0<y[2]>>>0?1:0)|0,m[4]=m[4]+3545052371+(m[3]>>>0<y[3]>>>0?1:0)|0,m[5]=m[5]+886263092+(m[4]>>>0<y[4]>>>0?1:0)|0,m[6]=m[6]+1295307597+(m[5]>>>0<y[5]>>>0?1:0)|0,m[7]=m[7]+3545052371+(m[6]>>>0<y[6]>>>0?1:0)|0,this._b=m[7]>>>0<y[7]>>>0?1:0;for(var p=0;p<8;p++){var x=l[p]+m[p],g=x&65535,h=x>>>16,c=((g*g>>>17)+g*h>>>15)+h*h,d=((x&4294901760)*x|0)+((x&65535)*x|0);a[p]=c^d}l[0]=a[0]+(a[7]<<16|a[7]>>>16)+(a[6]<<16|a[6]>>>16)|0,l[1]=a[1]+(a[0]<<8|a[0]>>>24)+a[7]|0,l[2]=a[2]+(a[1]<<16|a[1]>>>16)+(a[0]<<16|a[0]>>>16)|0,l[3]=a[3]+(a[2]<<8|a[2]>>>24)+a[1]|0,l[4]=a[4]+(a[3]<<16|a[3]>>>16)+(a[2]<<16|a[2]>>>16)|0,l[5]=a[5]+(a[4]<<8|a[4]>>>24)+a[3]|0,l[6]=a[6]+(a[5]<<16|a[5]>>>16)+(a[4]<<16|a[4]>>>16)|0,l[7]=a[7]+(a[6]<<8|a[6]>>>24)+a[5]|0}r.RabbitLegacy=u._createHelper(n)}(),o.RabbitLegacy})}(Ot)),Ot.exports}var Ft={exports:{}},Bo;function bn(){return Bo||(Bo=1,function(t,R){(function(o,r,i){t.exports=r(ee(),Te(),De(),Ce(),ue())})(X,function(o){return function(){var r=o,i=r.lib,u=i.BlockCipher,_=r.algo;const S=16,y=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],a=[[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946],[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055],[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504],[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462]];var n={pbox:[],sbox:[]};function N(g,h){let c=h>>24&255,d=h>>16&255,$=h>>8&255,s=h&255,T=g.sbox[0][c]+g.sbox[1][d];return T=T^g.sbox[2][$],T=T+g.sbox[3][s],T}function l(g,h,c){let d=h,$=c,s;for(let T=0;T<S;++T)d=d^g.pbox[T],$=N(g,d)^$,s=d,d=$,$=s;return s=d,d=$,$=s,$=$^g.pbox[S],d=d^g.pbox[S+1],{left:d,right:$}}function m(g,h,c){let d=h,$=c,s;for(let T=S+1;T>1;--T)d=d^g.pbox[T],$=N(g,d)^$,s=d,d=$,$=s;return s=d,d=$,$=s,$=$^g.pbox[1],d=d^g.pbox[0],{left:d,right:$}}function p(g,h,c){for(let P=0;P<4;P++){g.sbox[P]=[];for(let D=0;D<256;D++)g.sbox[P][D]=a[P][D]}let d=0;for(let P=0;P<S+2;P++)g.pbox[P]=y[P]^h[d],d++,d>=c&&(d=0);let $=0,s=0,T=0;for(let P=0;P<S+2;P+=2)T=l(g,$,s),$=T.left,s=T.right,g.pbox[P]=$,g.pbox[P+1]=s;for(let P=0;P<4;P++)for(let D=0;D<256;D+=2)T=l(g,$,s),$=T.left,s=T.right,g.sbox[P][D]=$,g.sbox[P][D+1]=s;return!0}var x=_.Blowfish=u.extend({_doReset:function(){if(this._keyPriorReset!==this._key){var g=this._keyPriorReset=this._key,h=g.words,c=g.sigBytes/4;p(n,h,c)}},encryptBlock:function(g,h){var c=l(n,g[h],g[h+1]);g[h]=c.left,g[h+1]=c.right},decryptBlock:function(g,h){var c=m(n,g[h],g[h+1]);g[h]=c.left,g[h+1]=c.right},blockSize:64/32,keySize:128/32,ivSize:64/32});r.Blowfish=u._createHelper(x)}(),o.Blowfish})}(Ft)),Ft.exports}(function(t,R){(function(o,r,i){t.exports=r(ee(),Ve(),Gr(),Hr(),Te(),Yr(),De(),io(),rt(),Kr(),mo(),Xr(),Zr(),Jr(),dt(),en(),Ce(),ue(),tn(),on(),rn(),nn(),an(),sn(),cn(),ln(),dn(),un(),mn(),pn(),$n(),hn(),gn(),fn(),bn())})(X,function(o){return o})})(Zt);var xn=Zt.exports;const we=Ur(xn),yn={class:"view-box","data-test-id":"DIV-1N5GVN"},_n={class:"view-title","data-test-id":"DIV-RHdrZN"},Sn={"data-test-id":"H4-2vhWDY"},Nn={"data-test-id":"SPAN-vzUpbG"},Cn={class:"view-content","data-test-id":"DIV-lpvhN1"},En={class:"drawer-content","data-test-id":"DIV-9dBeYG"},Tn={"data-test-id":"DIV-qkoKbM"},Dn={"data-test-id":"H3-95pW9X"},Pn={class:"icon-options","data-test-id":"DIV-OuotQS"},On={"data-test-id":"DIV-ckP1yh"},Fn={"data-test-id":"H3-c1nKHQ"},In={class:"drawer-footer","data-test-id":"DIV-eCU0O7"},Le=pe({__name:"createView",props:{permissionData:Object,selectOptions:{type:Object,default:()=>({})},defaultCreateTimeString:{type:String,default:"createTime"}},emits:["updataView"],setup(t,{expose:R,emit:o}){const r=e.ref(null),i=b=>{var A;if(b&&!r.value){r.value=K.ElLoading.service({target:".create-view-drawer",lock:!0});return}(A=r.value)==null||A.close(),r.value=null},u=t,_=e.ref([]),S=o,y=e.ref([]),a=e.reactive({Operator:12,IsCustomSetting:!1,DocCustomId:null,ColumnType:3,TextValue:null,NumberValue:null,NumberRangeValue:[],CloumnName:u.defaultCreateTimeString,SelectRangeValue:[],DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:1},DateTimeDynamicFilteringCustomize:[{PastOrFuture:0,NumberValue:365,DayType:1},{PastOrFuture:2,NumberValue:1,DayType:1}],StartOrEnd:null}),{t:n,locale:N}=$e.useI18n(),l=e.ref("basicInfo"),m=e.ref(null),p=e.ref(n("newView")),x=e.ref(!1),g=e.ref(1),h=e.reactive({viewName:"",permission:["-1"],selectedIconIndex:0}),c=e.ref(null),d=e.ref(null),$=e.computed(()=>({viewName:[{required:!0,message:n("required"),trigger:["change"]},{validator:async(b,A,Q)=>{const{data:{code:G}}=await ae.checkViewName({viewName:A,permissionCode:u.permissionData.permissionCode,id:m.value});if(G!==0&&m.value>=0)return Q(new Error(n("duplicateViewNames")));if(A!==A.trim())return Q(new Error(n("haveSpace")));if(A.trim().length>20)return Q(new Error(n("no20Characters")));Q()},trigger:["change"]}],permission:[{required:!0,message:n("required"),trigger:["blur","change"]}]})),s=e.ref([]),T=async()=>{await ae.getViewReadEmployeeList().then(b=>{b.data.code===0?s.value=b.data.content:K.ElMessage.error(n("message"))}).catch(()=>{K.ElMessage.error(n("apiError"))})},P=e.ref(["#125088","#FF0000","#F0D155","#99C0E4","#FF7A21","#323338","#34AA1A"]),D={showPrefix:!0,multiple:!0,checkOnClickNode:!0,renderTag:b=>b.label},I=b=>{b.length&&b.length>1&&(b[0].includes("-1")?h.permission=h.permission.filter((A,Q)=>Q>0):b.forEach(A=>{A.some(G=>G==="-1")&&(h.permission=["-1"])}))},C=()=>{y.value.push({Operator:null,IsCustomSetting:null,DocCustomId:null,ColumnType:null,TextValue:null,NumberValue:null,NumberRangeValue:[],CloumnName:null,SelectRangeValue:[],DateTimeOperatorValue:{TimeType:null,TimeValue:null},DateTimeRangeValue:{TimeType:null,TimeValue:[]},DateTimeDynamicFilteringValue:{DateType:null},DateTimeDynamicFilteringCustomize:[{PastOrFuture:null,NumberValue:null,DayType:null},{PastOrFuture:null,NumberValue:null,DayType:null}]})},f=b=>{if(!b.length)return["-1"];let A=[];const Q=[];return s.value.forEach(G=>{G.children.length&&G.children.forEach(Y=>{Q.push(Y.value),b.includes(Number(Y.value))&&A.push([G.value,Y.value])})}),Q.length===b.length&&(A=[["-1"]]),A},k=async()=>{try{if(u.selectOptions&&u.selectOptions.fieldList&&u.selectOptions.fieldList.length>0)_.value=u.selectOptions.fieldList.map(A=>({fieldName:A.fieldName,fieldTypeId:A.fieldTypeId,fieldSelectOptions:A.fieldSelectOptions,key:A.key||A.fieldName,isDoc:A.isDoc||!1}));else{const{data:{code:A,content:Q,message:G}}=await ae.getViewFilterList({permissionCode:u.permissionData.permissionCode}),Y={docCode:u.permissionData.docCode,status:1,fieldName:"",consDate:[],startIndex:0,count:100},ne=await ae.querySetting(Y);if(A!==0){K.ElMessage.error(n(G));return}const me=Q.map(re=>({fieldName:re.fieldKey,fieldTypeId:re.fieldTypeId,fieldSelectOptions:re.fieldSelectOptions,key:re.fieldKey,isDoc:!1}));let le=[];ne.data.code===0&&(le=ne.data.content.data.filter(re=>re.fieldTypeId!==9).map(re=>({fieldName:re.fieldName,fieldTypeId:re.fieldTypeId,fieldSelectOptions:re.fieldSelectOptions,key:re.docCustomId,isDoc:!0}))),_.value=[...me,...le]}_.value.find(A=>A.key===u.defaultCreateTimeString)||_.value.unshift({fieldName:u.defaultCreateTimeString,fieldKey:u.defaultCreateTimeString,fieldTypeId:3,fieldSelectOptions:[],key:u.defaultCreateTimeString,isDoc:!1})}catch{K.ElMessage.error(n("apiError"))}},F=async(b,A)=>{try{if(i(!0),l.value="basicInfo",x.value=!0,await T(),await k(),g.value=A,b){p.value=n(A?"copyView":"editView"),g.value||(m.value=b);const{data:Q}=await ae.getViewDetail(b,!!A);Q.code===0&&(y.value=Q.content.fieldString?[...JSON.parse(Q.content.fieldString)]:[{...a}],h.viewName=A?`${n("copy")}${["zh-cn","zh-tw"].includes(N.value)?"":" "}${Q.content.id<0&&(Q.content.viewName==="全部"||Q.content.viewName==="all")?n("all"):Q.content.viewName}`:Q.content.id<0&&(Q.content.viewName==="全部"||Q.content.viewName==="all")?n("all"):Q.content.viewName,h.permission=f(Q.content.viewPermissionEmpId),h.selectedIconIndex=Number(Q.content.meta))}else y.value=[{...a}]}catch{K.ElMessage.error(n("apiError"))}finally{i(!1),d.value.clearValidate()}},v=()=>{p.value=n("newView"),m.value=null,x.value=!1,y.value=[{...a}],h.viewName="",h.permission=["-1"],h.selectedIconIndex=0,d.value.clearValidate()},w=b=>{let A=[];return b.length===1&&b[0].includes("-1")?(s.value.forEach(Q=>{Q.children.length&&Q.children.forEach(G=>A.push(G.value))}),A):(b.forEach(Q=>{Q.length>1?A.push(Q[1]):Q.length===1&&A.push(Q[0])}),A)},M=b=>!(b===null||Array.isArray(b)&&!b.length),E=b=>{const A=ce.timePrecisionOptions.find(Q=>Q.value===b);return A.label==="daily"?"day":A.label},W=b=>{var A;return(A=ce.timePrecisionOptions.find(Q=>Q.value===b))==null?void 0:A.timeFormat},O=(b,A)=>{const Q=ce.dynamicFilteringOptions.find(G=>G.value===b);return A?Q.sql:Q.label},q=b=>ce.pastOrFutureOptions.find(Q=>Q.value===b).label,B=b=>{const A=ce.dayTypeOptions.find(Q=>Q.value===b);return A.label==="daily"?"day":A.label};function U(b,A){const G={0:864e5,1:36e5,2:6e4,3:1e3}[A];return+b+G}const j=b=>{var ne,me;let A=_.value.find(le=>le.key===b.CloumnName).fieldName,Q=b.IsCustomSetting?`"${A}"`:A;Q==="inboundRemain"&&(Q="(required_throughput-COALESCE(inboundQuantity,0)+COALESCE(returnQuantity,0))");let G=`${Q} ${(ne=ce.operatorOptions.find(le=>le.value===b.Operator))==null?void 0:ne.sql}`,Y="";if([1,5,6].includes(b.ColumnType)&&(b.TextValue?b.Operator===5?Y=`${G} '${b.TextValue}'`:b.Operator===6?Y=`(${G} '${b.TextValue}' or ${Q} is null)`:b.Operator===8?Y=`(${G} '%${b.TextValue}%' or ${Q} is null)`:Y=`${G} '%${b.TextValue}%'`:b.Operator===10?Y=`(${G} null and ${Q} != '')`:b.Operator===9?Y=`(${G} null or ${Q} = '')`:Y=`${G} null`),[7,8].includes(b.ColumnType)&&(b.SelectRangeValue.length?b.IsCustomSetting&&b.ColumnType===8?Y=`STRING_TO_ARRAY(replace(replace(replace(${Q}, '"', ''), '[', ''), ']', ''), ',')::text[] && STRING_TO_ARRAY('${b.SelectRangeValue.toString()}', ',')::text[] =${b.Operator===15}`:b.ColumnType===7?Y=`${G} '${b.SelectRangeValue}'`:Y=`${G} (${b.SelectRangeValue.toString()})`:b.Operator===10&&b.IsCustomSetting?Y=`(${G} null and ${Q} != '')`:b.Operator===9&&b.IsCustomSetting?Y=`(${G} null or ${Q} = '')`:Y=`${G} null`),(b.ColumnType===2||b.ColumnType===9)&&(b.NumberRangeValue.length?b.Operator===14?Y=`(${G} ${b.NumberRangeValue[0]} AND ${b.NumberRangeValue[1]} or ${Q} is null)`:Y=`${G} ${b.NumberRangeValue[0]} AND ${b.NumberRangeValue[1]}`:Y=`${G} null`),[3,4].includes(b.ColumnType)){let le=b.IsCustomSetting?`"${A}_${b.StartOrEnd?"end":"start"}"`:`${A}_${b.StartOrEnd?"end":"start"}`;if(b.ColumnType===4&&(G=`${le} ${(me=ce.operatorOptions.find(re=>re.value===b.Operator))==null?void 0:me.sql}`),[1,2,3,4].includes(b.Operator)&&(Y=`${G} ${b.DateTimeOperatorValue.TimeValue}`),[5].includes(b.Operator)){const re=U(b.DateTimeOperatorValue.TimeValue,b.DateTimeOperatorValue.TimeType);Y=b.StartOrEnd===null?`${Q} >= ${b.DateTimeOperatorValue.TimeValue} AND ${Q} < ${re}`:`${le} >= ${b.DateTimeOperatorValue.TimeValue} AND ${le} < ${re}`}if([9,10].includes(b.Operator)&&(Y=`${G} null`),b.Operator===11&&(Y=`${G} ${be(b.DateTimeRangeValue.TimeValue[0]).format("x")} AND ${U(be(b.DateTimeRangeValue.TimeValue[1]).format("x"),b.DateTimeRangeValue.TimeType)}`),b.Operator===12){if([4,5,6,7,8].includes(b.DateTimeDynamicFilteringValue.DateType)&&(Y=`${G} ${O(b.DateTimeDynamicFilteringValue.DateType,!0)}`),b.DateTimeDynamicFilteringValue.DateType===2&&(Y=`${G} currentday`),b.DateTimeDynamicFilteringValue.DateType===3&&(Y=`${G} past_day_1`),b.DateTimeDynamicFilteringValue.DateType===0){let re=`${q(b.DateTimeDynamicFilteringCustomize[0].PastOrFuture)}_${B(b.DateTimeDynamicFilteringCustomize[0].DayType)}_${b.DateTimeDynamicFilteringCustomize[0].NumberValue}`;b.DateTimeDynamicFilteringCustomize[0].PastOrFuture?Y=`${G} currentend AND ${re}`:Y=`${G} ${re} AND currentstart`}if(b.DateTimeDynamicFilteringValue.DateType===1){let re=`${q(b.DateTimeDynamicFilteringCustomize[0].PastOrFuture)}_${B(b.DateTimeDynamicFilteringCustomize[0].DayType)}_${b.DateTimeDynamicFilteringCustomize[0].NumberValue}`,ye=`${q(b.DateTimeDynamicFilteringCustomize[1].PastOrFuture)}_${B(b.DateTimeDynamicFilteringCustomize[1].DayType)}_${b.DateTimeDynamicFilteringCustomize[1].NumberValue}`;b.DateTimeDynamicFilteringCustomize[0].PastOrFuture===2&&(re=`${q(b.DateTimeDynamicFilteringCustomize[0].PastOrFuture)}${B(b.DateTimeDynamicFilteringCustomize[0].DayType)}`),b.DateTimeDynamicFilteringCustomize[1].PastOrFuture===2&&(ye=`${q(b.DateTimeDynamicFilteringCustomize[1].PastOrFuture)}${B(b.DateTimeDynamicFilteringCustomize[1].DayType)}`),Y=`${G} ${re} AND ${ye}`}}}return Y},z=b=>{let A={};return[1,2,3,4,5].includes(b.Operator)&&(A={precision:E(b.DateTimeOperatorValue.TimeType),value:b.DateTimeOperatorValue.TimeValue,judgeLogic:b.Operator}),[9,10].includes(b.Operator)&&(A={value:"",judgeLogic:b.Operator}),b.Operator===11&&(A={precision:E(b.DateTimeRangeValue.TimeType),value:b.DateTimeRangeValue.TimeValue,judgeLogic:b.Operator}),b.Operator===12&&(b.DateTimeDynamicFilteringValue.DateType===0?A={value:O(b.DateTimeDynamicFilteringValue.DateType),customType:q(b.DateTimeDynamicFilteringCustomize[0].PastOrFuture),customUnit:B(b.DateTimeDynamicFilteringCustomize[0].DayType),customUum:b.DateTimeDynamicFilteringCustomize[0].NumberValue,judgeLogic:b.Operator}:b.DateTimeDynamicFilteringValue.DateType===1?A={value:O(b.DateTimeDynamicFilteringValue.DateType),customTypeStart:q(b.DateTimeDynamicFilteringCustomize[0].PastOrFuture),customUnitStart:B(b.DateTimeDynamicFilteringCustomize[0].DayType),customNumStart:b.DateTimeDynamicFilteringCustomize[0].NumberValue,customTypeEnd:q(b.DateTimeDynamicFilteringCustomize[1].PastOrFuture),customUnitEnd:B(b.DateTimeDynamicFilteringCustomize[1].DayType),customNumEnd:b.DateTimeDynamicFilteringCustomize[1].NumberValue,judgeLogic:b.Operator}:A={value:O(b.DateTimeDynamicFilteringValue.DateType),judgeLogic:b.Operator}),A},J=b=>{let A={};return[1,5,6].includes(b.ColumnType)&&b.TextValue&&(A={first:b.TextValue}),[7,8].includes(b.ColumnType)&&b.SelectRangeValue.length&&(A={first:b.SelectRangeValue.toString()}),(b.ColumnType===2||b.ColumnType===9)&&b.NumberRangeValue.length&&(A={first:b.NumberRangeValue[0],second:b.NumberRangeValue[1]}),[3].includes(b.ColumnType)&&([1,2,3,4,5].includes(b.Operator)&&(A={first:E(b.DateTimeOperatorValue.TimeType),second:b.DateTimeOperatorValue.TimeValue}),b.Operator===11&&(A={first:E(b.DateTimeRangeValue.TimeType),second:b.DateTimeRangeValue.TimeValue[0],third:b.DateTimeRangeValue.TimeValue[1]}),b.Operator===12&&(b.DateTimeDynamicFilteringValue.DateType===0?A={first:O(b.DateTimeDynamicFilteringValue.DateType),second:q(b.DateTimeDynamicFilteringCustomize[0].PastOrFuture),four:B(b.DateTimeDynamicFilteringCustomize[0].DayType),third:b.DateTimeDynamicFilteringCustomize[0].NumberValue,judgeLogic:b.Operator}:b.DateTimeDynamicFilteringValue.DateType===1?A={first:O(b.DateTimeDynamicFilteringValue.DateType),second:q(b.DateTimeDynamicFilteringCustomize[0].PastOrFuture),third:b.DateTimeDynamicFilteringCustomize[0].NumberValue,four:B(b.DateTimeDynamicFilteringCustomize[0].DayType),five:q(b.DateTimeDynamicFilteringCustomize[1].PastOrFuture),six:b.DateTimeDynamicFilteringCustomize[1].NumberValue,seven:B(b.DateTimeDynamicFilteringCustomize[1].DayType),judgeLogic:b.Operator}:A={first:O(b.DateTimeDynamicFilteringValue.DateType)})),{...A}},te=b=>{let A={};if(b.ColumnType===4){const Q=b.StartOrEnd?"end":"start";A[Q]={...z(b)}}else A={...J(b)};return{...A}},V=b=>{var G;let A=[],Q={};if(Q=_.value.find(Y=>Y.key===b.CloumnName),A.push(Q.key==="salesOrderNumber"?Q.key:Q.fieldName),M(b.StartOrEnd)&&A.push(b.StartOrEnd?"intervalEnd":"intervalStart"),M(b.Operator)&&A.push((G=ce.operatorOptions.find(Y=>Y.value===b.Operator))==null?void 0:G.label),M(b.TextValue)&&A.push(b.TextValue),M(b.SelectRangeValue))if(Q.fieldSelectOptions)if(b.IsCustomSetting)A.push(b.SelectRangeValue.toString());else try{if(typeof Q.fieldSelectOptions=="string"&&Q.fieldSelectOptions.trim()&&(Q.fieldSelectOptions.trim().startsWith("[")&&Q.fieldSelectOptions.trim().endsWith("]")||Q.fieldSelectOptions.trim().startsWith("{")&&Q.fieldSelectOptions.trim().endsWith("}"))){const Y=JSON.parse(Q.fieldSelectOptions).filter(ne=>b.SelectRangeValue.includes(ne.value)).map(ne=>ne.key);A.push(Y.toString())}else A.push(b.SelectRangeValue.toString())}catch{A.push(b.SelectRangeValue.toString())}else{const Y=[],ne=u.selectOptions[b.CloumnName]||[];Array.isArray(ne)&&ne.forEach(me=>{b.SelectRangeValue.includes(me.value)&&Y.push(me.label)}),A.push(Y.length?Y.toString():b.SelectRangeValue.toString())}return M(b.NumberRangeValue)&&A.push(b.NumberRangeValue.toString()),M(b.DateTimeOperatorValue.TimeType)&&A.push(E(b.DateTimeOperatorValue.TimeType),be(b.DateTimeOperatorValue.TimeValue).format(W(b.DateTimeOperatorValue.TimeType))),M(b.DateTimeRangeValue.TimeType)&&A.push(E(b.DateTimeRangeValue.TimeType)),M(b.DateTimeRangeValue.TimeType)&&A.push(be(b.DateTimeRangeValue.TimeValue[0]).format(W(b.DateTimeRangeValue.TimeType)),be(b.DateTimeRangeValue.TimeValue[1]).format(W(b.DateTimeRangeValue.TimeType))),M(b.DateTimeDynamicFilteringValue.DateType)&&A.push(O(b.DateTimeDynamicFilteringValue.DateType)),M(b.DateTimeDynamicFilteringCustomize[0].DayType)&&A.push(q(b.DateTimeDynamicFilteringCustomize[0].PastOrFuture),b.DateTimeDynamicFilteringCustomize[0].NumberValue,B(b.DateTimeDynamicFilteringCustomize[0].DayType)),M(b.DateTimeDynamicFilteringCustomize[1].DayType)&&A.push(q(b.DateTimeDynamicFilteringCustomize[1].PastOrFuture),b.DateTimeDynamicFilteringCustomize[1].NumberValue,B(b.DateTimeDynamicFilteringCustomize[1].DayType)),A.toString()},H=()=>{const b={viewField:[],filterString:[],whereSql:""},A=[];return y.value.forEach(Q=>{let G=_.value.find(Y=>Y.key===Q.CloumnName);A.push(j(Q)),b.filterString.push(V(Q)),b.viewField.push({fieldCode:G.fieldName,fieldKey:Q.IsCustomSetting?G.fieldName:G.key,docCustomId:Q.DocCustomId||"",fieldTypeId:Q.ColumnType,judgeLogic:Q.ColumnType===4?null:Q.Operator,fieldValue:JSON.stringify(te(Q)),isCustom:Q.IsCustomSetting?1:0})}),A.forEach((Q,G)=>{b.whereSql+=G?` AND ${Q}`:Q}),{...b}},L=b=>{const A=we.enc.Utf8.parse("3847201956372841"),Q=we.enc.Utf8.parse("3847201956372841");return we.AES.encrypt(b,A,{iv:Q,mode:we.mode.CBC,padding:we.pad.Pkcs7}).toString()},Z=async()=>{try{const b=await c.value.validateAllForms();if(await d.value.validate()&&b){i(!0);const{viewField:Q,filterString:G,whereSql:Y}=H(),ne={meta:String(h.selectedIconIndex),viewName:h.viewName,permissionCode:u.permissionData.permissionCode,viewPermissionEmpId:w(h.permission),viewField:JSON.stringify(Q),filterString:JSON.stringify(G),whereSql:L(Y),fieldString:JSON.stringify(y.value)};if(g.value){const{data:{code:me}}=await ae.addView(ne);me===0&&(K.ElMessage.success(n("addSuccess")),S("updataView"),v())}else{ne.id=m.value;const{data:{code:me}}=await ae.editView(ne);me===0&&(K.ElMessage.success(n("editSuccess")),S("updataView"),v())}}}catch{K.ElMessage.error(n("someColumnRequired"))}finally{i(!1)}};return R({open:F}),(b,A)=>{const Q=e.resolveComponent("v-icon"),G=e.resolveComponent("el-icon"),Y=e.resolveComponent("el-menu-item"),ne=e.resolveComponent("el-menu"),me=e.resolveComponent("el-input"),le=e.resolveComponent("el-form-item"),re=e.resolveComponent("el-button"),ye=e.resolveComponent("el-cascader"),ge=e.resolveComponent("el-form"),he=e.resolveComponent("el-drawer");return e.openBlock(),e.createBlock(he,{modelValue:x.value,"onUpdate:modelValue":A[5]||(A[5]=de=>x.value=de),"show-close":!1,size:"calc(60% - 100px)","append-to-body":!1,"close-on-press-escape":!1,modal:!1,"z-index":2e3,"with-header":!1,"body-class":"drawer-box","data-test-id":"EL-DRAWER-bQvmdU",class:"create-view-drawer"},{default:e.withCtx(()=>[e.createElementVNode("div",yn,[e.createElementVNode("div",_n,[e.createElementVNode("h3",Sn,[e.createElementVNode("span",Nn,[e.createVNode(Q,{class:"mdi mdi-book-open-variant","data-test-id":"V-ICON-52NN4f"}),e.createTextVNode(" "+e.toDisplayString(p.value),1)])]),e.createVNode(G,{class:"mdi mdi-close cursor",size:25,"data-test-id":"EL-ICON-Y6FnRm",onClick:v})]),e.createElementVNode("div",Cn,[e.createVNode(ne,{modelValue:l.value,"onUpdate:modelValue":A[2]||(A[2]=de=>l.value=de),class:"el-menu-vertical-demo","background-color":"#f5f7fa","text-color":"#333","active-text-color":"#125088","default-active":l.value,"unique-opened":"","data-test-id":"EL-MENU-zUc2Ka"},{default:e.withCtx(()=>[e.createVNode(Y,{index:"basicInfo","data-test-id":"EL-MENU-ITEM-e3jZsV",onClick:A[0]||(A[0]=de=>l.value="basicInfo")},{default:e.withCtx(()=>[A[6]||(A[6]=e.createElementVNode("span",{class:"mdi mdi-note-text","data-test-id":"SPAN-FXgldN"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(n)("basicInfo")),1)]),_:1}),e.createVNode(Y,{index:"dataFilter","data-test-id":"EL-MENU-ITEM-FP0Pdh",onClick:A[1]||(A[1]=de=>l.value="dataFilter")},{default:e.withCtx(()=>[A[7]||(A[7]=e.createElementVNode("span",{class:"mdi mdi-filter-cog","data-test-id":"SPAN-DvUe8j"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(n)("dataFilter")),1)]),_:1})]),_:1},8,["modelValue","default-active"]),e.createElementVNode("div",En,[e.withDirectives(e.createElementVNode("div",Tn,[e.createElementVNode("h3",Dn,e.toDisplayString(e.unref(n)("basicInfo")),1),e.createVNode(ge,{ref_key:"basicFormRef",ref:d,model:h,rules:$.value,"label-width":"auto","data-test-id":"EL-FORM-RLlvjp"},{default:e.withCtx(()=>[e.createVNode(le,{label:e.unref(n)("viewName"),prop:"viewName","data-test-id":"EL-FORM-ITEM-wwCvB7"},{default:e.withCtx(()=>[e.createVNode(me,{modelValue:h.viewName,"onUpdate:modelValue":A[3]||(A[3]=de=>h.viewName=de),placeholder:e.unref(n)("enter")+e.unref(n)("viewName"),maxlength:"20",disabled:m.value<0,"show-word-limit":"",clearable:"","data-test-id":"EL-INPUT-eTI2mw"},null,8,["modelValue","placeholder","disabled"])]),_:1},8,["label"]),e.createVNode(le,{label:e.unref(n)("viewIcon"),"data-test-id":"EL-FORM-ITEM-UtKiIs"},{default:e.withCtx(()=>[e.createElementVNode("div",Pn,[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(7,(de,_e)=>e.createVNode(re,{key:_e,class:e.normalizeClass({active:h.selectedIconIndex===_e}),style:e.normalizeStyle({color:P.value[_e],borderColor:h.selectedIconIndex===_e?"#4665ad":"#dcdcdc"}),type:"text","data-test-id":"EL-BUTTON-4Hyaga",onClick:Vt=>h.selectedIconIndex=_e},{default:e.withCtx(()=>A[8]||(A[8]=[e.createElementVNode("i",{class:"mdi mdi-book-open-blank-variant radio-icon","data-test-id":"V-ICON-oBZKUA"},null,-1)])),_:2},1032,["class","style","onClick"])),64))])]),_:1},8,["label"]),e.createVNode(le,{label:e.unref(n)("viewPermission"),prop:"permission",required:"","data-test-id":"EL-FORM-ITEM-Jb9jGY"},{default:e.withCtx(()=>[e.createVNode(ye,{modelValue:h.permission,"onUpdate:modelValue":A[4]||(A[4]=de=>h.permission=de),options:s.value,props:D,"show-all-levels":!1,"show-checked-strategy":"parent",clearable:"","data-test-id":"EL-CASCADER-X0KLWz",onChange:I},null,8,["modelValue","options"])]),_:1},8,["label"])]),_:1},8,["model","rules"])],512),[[e.vShow,l.value==="basicInfo"]]),e.withDirectives(e.createElementVNode("div",On,[e.createElementVNode("h3",Fn,e.toDisplayString(e.unref(n)("dataFilter")),1),e.createVNode(Ge,{ref_key:"filterCriteriaRef",ref:c,"field-setting":_.value,"filter-conditions":y.value,"select-options":t.selectOptions,"default-create-time-string":t.defaultCreateTimeString,"data-test-id":"FILTERCRITERIA-ShqDeQ"},null,8,["field-setting","filter-conditions","select-options","default-create-time-string"]),e.createVNode(re,{link:"",type:"primary","data-test-id":"EL-BUTTON-W21EYJ",onClick:C},{default:e.withCtx(()=>[e.createVNode(Q,{class:"mdi mdi-plus",style:{"margin-right":"0.5rem"},"data-test-id":"V-ICON-u6sfaW"}),e.createTextVNode(" "+e.toDisplayString(e.unref(n)("addFilterConditions")),1)]),_:1})],512),[[e.vShow,l.value==="dataFilter"]]),e.createElementVNode("div",In,[e.createVNode(re,{type:"primary","data-test-id":"EL-BUTTON-xHRONm",onClick:Z},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(n)("save")),1)]),_:1}),e.createVNode(re,{type:"primary","data-test-id":"EL-BUTTON-CQwuMO",onClick:v},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(n)("cancellation")),1)]),_:1})])])])])]),_:1},8,["modelValue"])}}},[["__scopeId","data-v-6ca8c1cc"]]);function wn(t){return{color:{0:"#125088",1:"#FF0000",2:"#F0D155",3:"#99C0E4",4:"#FF7A21",5:"#323338",6:"#34AA1A"}[t]||"#909399"}}function It(t){return Array.isArray(t)?t.map(R=>{try{if(!(R!=null&&R.filterString)||typeof R.filterString!="string")return{...R,parsedFilter:null};const o=JSON.parse(R.filterString);if(!Array.isArray(o))return console.warn(`processFilterData:id为${R.id||"未知"}的filterString解析结果非数组`),{...R,parsedFilter:null};const r=o.map(i=>typeof i!="string"?[i]:i.split(",").map(u=>u.trim()));return{...R,parsedFilter:r}}catch(o){return console.error(`processFilterData:解析id为${R.id||"未知"}的filterString失败:`,o),{...R,parsedFilter:null}}}):(console.error("processFilterData:入参必须是数组"),[])}const kn={class:"drawer_header_class_content","data-test-id":"DIV-rXpQmF"},Rn={class:"drawer_title","data-test-id":"DIV-zQlq1H"},vn={class:"title_text","data-test-id":"SPAN-0Iut9t"},Bn={class:"list-body","data-test-id":"DIV-Xmx3qv"},wt=pe({__name:"viewList",props:{permissionData:Object,selectOptions:{type:Object,default:()=>({})},defaultCreateTimeString:{type:String,default:"createTime"}},emits:["updateViewTabs"],setup(t,{expose:R,emit:o}){const r=t,{t:i}=$e.useI18n(),u=o,_=e.ref(!1),S=e.ref(null),y=e.ref(null),a=e.ref([]),n=e.ref([]),N=e.ref(null);async function l(D){await ae.getViewList({startIndex:0,count:20,permissionCode:r.permissionData.permissionCode}).then(I=>{I.data.code===0?(n.value=[...I.data.content.data],D==="update"&&u("updateViewTabs",[...n.value],N.value)):K.ElMessage.error(i(I.data.message))}).catch(()=>{K.ElMessage.error(i("apiError"))})}function m(){S.value.open(null,1)}const p=D=>{const I=typeof D=="object"&&D.id!==void 0?D.id:D;N.value=I,S.value.open(I,0,r.selectOptions)},x=D=>{const I=typeof D=="object"&&D.id!==void 0?D.id:D;N.value=I,S.value.open(I,2,r.selectOptions)},g=e.ref(".list-body tbody"),h=e.ref(".dragindicator"),c=async()=>{try{const D=await ae.viewSortList({viewJson:n.value});D.data.code===0?u("updateViewTabs",[...n.value]):K.ElMessage.error(i(D.data.message))}catch{K.ElMessage.error(i("apiError"))}};async function d(D){await ae.deleteView(D).then(I=>{var C;((C=I.data)==null?void 0:C.code)===0?l("update"):K.ElMessage.error(i(I.data.message))}).catch(()=>{K.ElMessage.error(i("apiError"))})}const $=D=>{let I=i("delReminder"),C=`${i("viewDeleteTip")}`;K.ElMessageBox.confirm(C,I,{confirmButtonText:i("confirm"),cancelButtonText:i("cancel"),type:"warning"}).then(async()=>{await d(D.id)}).catch(()=>{})},s=async()=>{_.value=!0,l()},T=async(D,I)=>{_.value=!0,await l(),I===0?p(D,r.selectOptions):I===2&&x(D,r.selectOptions)},P=()=>{_.value=!1,a.value=[],n.value=[]};return R({open:s,openDrawer:T}),(D,I)=>{const C=e.resolveComponent("el-tooltip"),f=e.resolveComponent("el-icon"),k=e.resolveComponent("el-button"),F=e.resolveComponent("el-table-column"),v=e.resolveComponent("v-icon"),w=e.resolveComponent("el-table"),M=e.resolveComponent("el-drawer");return e.openBlock(),e.createBlock(M,{modelValue:_.value,"onUpdate:modelValue":I[2]||(I[2]=E=>_.value=E),"body-class":"drawer_body_class",style:{"margin-bottom":"0"},"z-index":2e3,size:"45%","with-header":!1,"append-to-body":!1,"close-on-press-escape":!1,"before-close":P,"data-test-id":"EL-DRAWER-jasb7C"},{default:e.withCtx(()=>[e.createElementVNode("div",kn,[e.createElementVNode("div",Rn,[I[4]||(I[4]=e.createElementVNode("span",{class:"mdi mdi-list-box-outline","data-test-id":"SPAN-HFpXUh"},null,-1)),e.createElementVNode("span",vn,e.toDisplayString(e.unref(i)("viewList")),1),e.createVNode(C,{effect:"dark",content:e.unref(i)("viewListTips"),placement:"right","data-test-id":"EL-TOOLTIP-hHb1YY"},{default:e.withCtx(()=>I[3]||(I[3]=[e.createElementVNode("span",{class:"mdi mdi-help-circle-outline title_text_right_icon","data-test-id":"SPAN-UENqYR"},null,-1)])),_:1},8,["content"])]),e.createVNode(k,{link:"",type:"primary","data-test-id":"EL-BUTTON-4ZFjLQ",onClick:m},{default:e.withCtx(()=>[e.createVNode(f,{class:"mdi mdi-plus",style:{"margin-right":"0.5rem","font-size":"18px"},"data-test-id":"EL-ICON-0ylmiQ"}),e.createTextVNode(" "+e.toDisplayString(e.unref(i)("createView")),1)]),_:1})]),e.createElementVNode("div",Bn,[e.createVNode(e.unref(qe.VueDraggable),{ref_key:"draggableRef",ref:y,modelValue:n.value,"onUpdate:modelValue":I[0]||(I[0]=E=>n.value=E),target:g.value,handle:h.value,"data-test-id":"VUEDRAGGABLE-dL4IT9",onEnd:c},{default:e.withCtx(()=>[e.createVNode(w,{data:n.value,border:"",class:"commonTable sort-target","header-cell-class-name":"tableHeaderCell","header-row-class-name":"tableHeader",height:"100%","data-test-id":"EL-TABLE-jJswcP"},{default:e.withCtx(()=>[e.createVNode(F,{width:50,align:"center","data-test-id":"EL-TABLE-COLUMN-gVOhBD"},{default:e.withCtx(()=>[e.createVNode(f,{class:"mdi mdi-drag dragindicator",style:{cursor:"move"},"data-test-id":"EL-ICON-XVO0RZ"})]),_:1}),e.createVNode(F,{label:"#",width:70,align:"center","data-test-id":"EL-TABLE-COLUMN-EGE1qk"},{default:e.withCtx(({$index:E})=>[e.createTextVNode(e.toDisplayString(E+1),1)]),_:1}),e.createVNode(F,{label:e.unref(i)("viewName"),prop:"name","show-overflow-tooltip":"","data-test-id":"EL-TABLE-COLUMN-BX8fIe"},{default:e.withCtx(E=>[e.createVNode(f,{class:"mdi mdi-book-open-blank-variant",style:e.normalizeStyle({color:e.unref(wn)(Number(E.row.meta)).color}),"data-test-id":"EL-ICON-IJLII3"},null,8,["style"]),e.createTextVNode(" "+e.toDisplayString(E.row.id<0&&(E.row.viewName==="全部"||E.row.viewName==="all")?e.unref(i)("all"):E.row.viewName),1)]),_:1},8,["label"]),e.createVNode(F,{label:e.unref(i)("action"),width:150,align:"center","data-test-id":"EL-TABLE-COLUMN-15WeBo"},{default:e.withCtx(E=>[e.createVNode(C,{content:e.unref(i)("edit"),placement:"top",enterable:!1,"data-test-id":"EL-TOOLTIP-NGVisW"},{default:e.withCtx(()=>[e.createVNode(k,{link:"",type:"primary","data-test-id":"EL-BUTTON-VVS5A0",onClick:W=>p(E.row)},{default:e.withCtx(()=>[e.createVNode(v,{class:"mdi mdi-pencil",style:{"font-size":"1.2rem"},"data-test-id":"V-ICON-8OzEal"})]),_:2},1032,["onClick"])]),_:2},1032,["content"]),e.createVNode(C,{content:e.unref(i)("copy"),placement:"top",enterable:!1,"data-test-id":"EL-TOOLTIP-Ima4Dj"},{default:e.withCtx(()=>[e.createVNode(k,{link:"",type:"primary","data-test-id":"EL-BUTTON-NQswpy",onClick:W=>x(E.row)},{default:e.withCtx(()=>[e.createVNode(f,{class:"mdi mdi-content-copy",style:{"font-size":"1.2rem"},"data-test-id":"EL-ICON-e2uFy4"})]),_:2},1032,["onClick"])]),_:2},1032,["content"]),e.createVNode(C,{content:e.unref(i)("delete"),placement:"top",enterable:!1,"data-test-id":"EL-TOOLTIP-WlX0wi"},{default:e.withCtx(()=>[e.createVNode(k,{link:"",type:"primary","data-test-id":"EL-BUTTON-v6dR6f",onClick:W=>$(E.row)},{default:e.withCtx(()=>[e.createVNode(f,{class:"mdi mdi-trash-can",style:{"font-size":"1.2rem"},"data-test-id":"EL-ICON-TRfu6F"})]),_:2},1032,["onClick"])]),_:2},1032,["content"])]),_:1},8,["label"])]),_:1},8,["data"])]),_:1},8,["modelValue","target","handle"])]),e.createVNode(Le,{ref_key:"createViewRef",ref:S,"permission-data":r.permissionData,"select-options":r.selectOptions,"default-create-time-string":t.defaultCreateTimeString,"data-test-id":"CREATEVIEW-cCI5u5",onUpdataView:I[1]||(I[1]=E=>l("update"))},null,8,["permission-data","select-options","default-create-time-string"])]),_:1},8,["modelValue"])}}},[["__scopeId","data-v-83cfc592"]]);function Mn(t){const R=[],o=[];return t.forEach(r=>{o.push(r.text)}),R.push(o),R}function An(t,R,o,r){const i=[];return t.forEach(u=>{const _={};R.forEach(S=>{Object.entries(u).forEach(y=>{if(y[0]===S.value.replace(o,r)){const a=y[1];_[y[0]]=a}})}),i.push(_)}),i}const Vn={exportFromArray(t){const R={name:"demo",suffix:"xml",...t},{title:o,body:r,name:i,suffix:u,wscols:_}=R,S=[...o,...r],y=xe.utils.book_new(),a=xe.utils.aoa_to_sheet(S,{raw:!0});a["!cols"]=_;const n=`${i}.${u}`;xe.utils.book_append_sheet(y,a,i),We.writeFile(y,n,{bookType:u,type:"buffer",writeFile:!0})},async exportBatchFromArray(t,R){const o=xe.utils.book_new();for(let r=0;r<t.length;r+=1){const i={...t[r]},{title:u,body:_,name:S,wscols:y,wsmerges:a,wsrow:n}=i,N=[...u,..._],l=xe.utils.aoa_to_sheet(N,{raw:!0});l["!cols"]=y,l["!rows"]=n,l["!merges"]=a,await xe.utils.book_append_sheet(o,l,S)}We.writeFile(o,`${R}.xlsx`,{bookType:"xlsx",type:"buffer",writeFile:!0})},async importFromLocal(t){const R=await this.readerWorkBookFromLocal(t),o=R.Sheets[R.SheetNames[0]],r=xe.utils.sheet_to_json(o,{defval:""}),i=xe.utils.sheet_to_json(o,{header:1});if(r.length===0)return r;const u={};return u.title=Object.keys(r[0]),u.body=r,u.titleSort=[...i[0]],u},async importInstructionsFromLocal(t){const R=await this.readerWorkBookFromLocal(t),o=R.Sheets[R.SheetNames[1]],r=xe.utils.sheet_to_json(o,{defval:""});if(r.length===0)return r;const i={};return i.title=Object.keys(r[0]),i.body=r,i},readerWorkBookFromLocal(t){const R=new FileReader;return R.readAsBinaryString(t),new Promise((o,r)=>{R.onload=function(i){const u=i.target.result;if(R.readyState===2){const _=We.read(u,{type:"binary"});o(_)}else r(new Error("讀取文件失敗"))}})}},Ln={style:{display:"flex","align-items":"center"},"data-test-id":"DIV-vOcYvj"},qn={style:{color:"#165389","font-weight":"bold",margin:"0 0.5rem"},"data-test-id":"SPAN-JLNrR8"},Wn={class:"view-operation-record","data-test-id":"DIV-Ig4Lp5"},Un={class:"filter-card","data-test-id":"DIV-BY1ENL"},zn={style:{"text-align":"center"},"data-test-id":"DIV-ePTtCw"},Qn={class:"table-container","data-test-id":"DIV-wGYn7a"},jn={class:"table-wrapper","data-test-id":"DIV-tableWrapper"},Gn={"data-test-id":"SPAN-HEnHjc"},Hn={key:0,"data-test-id":"SPAN-Gd107Y"},Yn={key:1,"data-test-id":"SPAN-DiW6W9"},Kn={class:"pagination-wrapper","data-test-id":"DIV-paginationWrapper"},kt=pe({__name:"viewRecord",props:{pageData:{type:Object,default:()=>({})}},setup(t,{expose:R}){const o=t,r=e.ref(!1),{t:i}=$e.useI18n(),u=e.ref({total:0,currentPage:1,pageSize:20}),_=e.computed(()=>[{text:i("operator"),value:"operateUserName",width:150},{text:i("operationTime"),value:"operateDate",width:220},{text:i("operationType"),value:"operateType",width:150},{text:i("operationDetails"),value:"detail",width:""}]),S=e.computed(()=>[{label:i("newView"),value:1},{label:i("editView"),value:2},{label:i("deleteView"),value:4}]),y=e.ref([]);async function a(){return ae.getViewEmployeeList({permissionCode:o.pageData.permissionCode}).then(async f=>{f.data.code===0?y.value=f.data.content:K.ElMessage.error(i(f.data.message))})}const n=e.ref({operators:"",timeRange:[],types:[]}),N=e.ref([]),l=e.ref(!1);function m(f,k){const F=f.split(",").map(O=>O.replace(/'/g,"").replace(/"/g,"").trim());for(;F.length<4;)F.push("");const[v,w,M,E]=F,W={1:()=>i("addViewSuccessful",{name:v}),4:()=>i("deleteViewSuccessful",{name:v}),2:()=>{const O=[];return w&&O.push(i("adjustViewName",{name:v,newName:w})),M&&O.push(i("adjustDataFiltering",{name:v})),E&&O.push(i("adjustViewPermission",{name:v})),O.length>0?`${i("viewEditSuccessful")}, ${O.join(", ")}`:i("viewEditSuccessful")}};return W[k]?W[k]():""}const p=async()=>{var f,k;await ae.getViewOpLogList({permissionCode:o.pageData.permissionCode,operateUser:n.value.operators||[],operateStartDate:(f=n.value.timeRange)!=null&&f.length?be(n.value.timeRange[0]).format("YYYY-MM-DD HH:mm"):"",operateEndDate:(k=n.value.timeRange)!=null&&k.length?be(n.value.timeRange[1]).format("YYYY-MM-DD HH:mm"):"",operateType:n.value.types.length?n.value.types:[],startIndex:(u.value.currentPage-1)*u.value.pageSize,count:u.value.pageSize}).then(F=>{F.data.code===0?(l.value=!1,N.value=F.data.content.data.map(v=>({...v,detail:m(v.operateDetail,v.operateType)})),u.value.total=F.data.content.totalCount):(K.ElMessage.error(i(F.data.message)),l.value=!1)}).catch().finally(()=>{l.value=!1})},x=()=>{u.value.currentPage=1,l.value=!0,p()},g=()=>{n.value={operators:[],timeRange:[],types:[]},u.value={currentPage:1,pageSize:20},p()},h=async f=>{u.value.currentPage=f.page,u.value.pageSize=f.size,p()},c=(f,k)=>{u.value.currentPage=k.page,u.value.pageSize=k.size},d=f=>Number(f)+1+(u.value.currentPage-1)*u.value.pageSize,$=e.ref([]),s=async f=>{var k,F;try{const{data:{code:v,content:w}}=await ae.getViewOpLogList({permissionCode:o.pageData.permissionCode,operateUser:n.value.operators||[],operateStartDate:(k=n.value.timeRange)!=null&&k.length?be(n.value.timeRange[0]).format("YYYY-MM-DD HH:mm"):"",operateEndDate:(F=n.value.timeRange)!=null&&F.length?be(n.value.timeRange[1]).format("YYYY-MM-DD HH:mm"):"",operateType:n.value.types?n.value.types:[],startIndex:f,count:200});v===0&&($.value=$.value.concat(w.data),w.totalCount>$.value.length&&await s(f+=200))}catch(v){K.ElMessage.error(i(v.message))}};function T(f){return f?be(f).format("YY-MM-DD HH:mm:ss"):"--"}function P(f){switch(f){case 1:return"newView";case 2:return"editView";case 3:return"copyView";case 4:return"deleteView"}}const D=async()=>{const f=Mn(_.value);$.value=[],await s(0);const k=[];$.value.forEach(M=>{const E={operateUserName:M.operateUserName,operateDate:T(M.operateDate),operateType:i(P(M.operateType)),detail:m(M.operateDetail,M.operateType)};k.push(E)});const F=An(k,_.value,"",""),v=[];F.map((M,E)=>{const W={...M},O=Object.values(W);return v[E]=O,v});const w=Array.from({length:_.value.length},()=>({wch:19}));Vn.exportFromArray({title:f,body:v,name:i("viewOperationRecord"),suffix:"xlsx",sheetName:i("viewOperationRecord"),wscols:w})};function I(){r.value=!0,a(),x()}function C(){r.value=!1,N.value=[],n.value={operators:[],timeRange:[],types:[]},u.value.total=0}return R({open:I}),(f,k)=>{const F=e.resolveComponent("el-tooltip"),v=e.resolveComponent("el-option"),w=e.resolveComponent("el-select"),M=e.resolveComponent("el-form-item"),E=e.resolveComponent("el-col"),W=e.resolveComponent("el-date-picker"),O=e.resolveComponent("el-button"),q=e.resolveComponent("v-icon"),B=e.resolveComponent("el-row"),U=e.resolveComponent("el-form"),j=e.resolveComponent("el-table-column"),z=e.resolveComponent("el-text"),J=e.resolveComponent("el-table"),te=e.resolveComponent("el-drawer");return e.openBlock(),e.createBlock(te,{modelValue:r.value,"onUpdate:modelValue":k[3]||(k[3]=V=>r.value=V),"z-index":1e3,size:"80%","with-header":!1,"before-close":C,"data-test-id":"EL-DRAWER-yW3j6a"},{default:e.withCtx(()=>[e.createElementVNode("div",Ln,[k[5]||(k[5]=e.createElementVNode("span",{class:"mdi mdi-post-outline","data-test-id":"SPAN-QcjZ2G"},null,-1)),e.createElementVNode("span",qn,e.toDisplayString(e.unref(i)("viewOperationRecordTxt")),1),e.createVNode(F,{content:e.unref(i)("viewOperationRecordTips"),placement:"right",enterable:!1,"data-test-id":"EL-TOOLTIP-r2lUDt"},{default:e.withCtx(()=>k[4]||(k[4]=[e.createElementVNode("span",{class:"mdi mdi-help-circle-outline",style:{color:"#909399","font-size":"1rem"},"data-test-id":"SPAN-DFDBGw"},null,-1)])),_:1},8,["content"])]),e.createElementVNode("div",Wn,[e.createElementVNode("div",Un,[e.createVNode(U,{model:n.value,"label-width":"auto",class:"query-form",size:"default","data-test-id":"EL-FORM-DQPNj7"},{default:e.withCtx(()=>[e.createVNode(B,{gutter:20,"data-test-id":"EL-ROW-XqFgSB"},{default:e.withCtx(()=>[e.createVNode(E,{span:8,"data-test-id":"EL-COL-44Qf7a"},{default:e.withCtx(()=>[e.createVNode(M,{label:e.unref(i)("operator"),"data-test-id":"EL-FORM-ITEM-jhywJa"},{default:e.withCtx(()=>[e.createVNode(w,{modelValue:n.value.operators,"onUpdate:modelValue":k[0]||(k[0]=V=>n.value.operators=V),clearable:"",multiple:"","collapse-tags":"","collapse-tags-tooltip":!0,filterable:"",placeholder:e.unref(i)("PleaseSelect"),"data-test-id":"EL-SELECT-2iKRMnl"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(y.value,(V,H)=>(e.openBlock(),e.createBlock(v,{key:H,label:V.name+" ( "+V.empNumber+" )",value:V.id,"data-test-id":`EL-OPTION-rIctaO-${H}`},null,8,["label","value","data-test-id"]))),128))]),_:1},8,["modelValue","placeholder"])]),_:1},8,["label"])]),_:1}),e.createVNode(E,{span:8,"data-test-id":"EL-COL-JWN3c6"},{default:e.withCtx(()=>[e.createVNode(M,{label:e.unref(i)("operationTimeRange"),"data-test-id":"EL-FORM-ITEM-qGA6FG"},{default:e.withCtx(()=>[e.createVNode(W,{modelValue:n.value.timeRange,"onUpdate:modelValue":k[1]||(k[1]=V=>n.value.timeRange=V),type:"datetimerange","range-separator":"~","start-placeholder":e.unref(i)("PleaseSelect"),"end-placeholder":e.unref(i)("PleaseSelect"),clearable:"","data-test-id":"EL-DATE-PICKER-sXaAjJ"},null,8,["modelValue","start-placeholder","end-placeholder"])]),_:1},8,["label"])]),_:1}),e.createVNode(E,{span:8,"data-test-id":"EL-COL-7wsX67"},{default:e.withCtx(()=>[e.createElementVNode("div",zn,[e.createVNode(O,{type:"primary","data-test-id":"EL-BUTTON-iepjfm",onClick:x},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(i)("query")),1)]),_:1}),e.createVNode(O,{"data-test-id":"EL-BUTTON-misE7D",onClick:g},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(i)("reset")),1)]),_:1}),e.createVNode(O,{link:"",type:"primary","data-test-id":"EL-BUTTON-a3sO22ZO",onClick:D},{default:e.withCtx(()=>[e.createVNode(q,{style:{"margin-right":"0.5rem"},class:"mdi mdi-file-export","data-test-id":"V-ICON-Mbdhkt"}),e.createTextVNode(" "+e.toDisplayString(f.$t("export")),1)]),_:1})])]),_:1}),e.createVNode(E,{span:8,"data-test-id":"EL-COL-1mxuMy"},{default:e.withCtx(()=>[e.createVNode(M,{label:e.unref(i)("operationType"),"data-test-id":"EL-FORM-ITEM-HAaHnq"},{default:e.withCtx(()=>[e.createVNode(w,{modelValue:n.value.types,"onUpdate:modelValue":k[2]||(k[2]=V=>n.value.types=V),placeholder:e.unref(i)("PleaseSelect"),clearable:"",multiple:"","collapse-tags":"","collapse-tags-tooltip":!0,"data-test-id":"EL-SELECT-mg4gIc"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(S.value,(V,H)=>(e.openBlock(),e.createBlock(v,{key:V.value,label:V.label,value:V.value,"data-test-id":`EL-OPTION-SDFctaO-${H}`},null,8,["label","value","data-test-id"]))),128))]),_:1},8,["modelValue","placeholder"])]),_:1},8,["label"])]),_:1})]),_:1})]),_:1},8,["model"])]),e.createElementVNode("div",Qn,[e.createElementVNode("div",jn,[e.createVNode(J,{data:N.value,border:"",loading:l.value,"header-row-class-name":"tableHeader","header-cell-class-name":"tableHeaderCell","scrollbar-always-on":!0,style:{width:"100%"},size:"default","data-test-id":"EL-TABLE-6CNtjP"},{default:e.withCtx(()=>[e.createVNode(j,{type:"index",label:"#",width:"60",align:"center","data-test-id":"EL-TABLE-COLUMN-O8UyCw"},{default:e.withCtx(V=>[e.createElementVNode("span",Gn,e.toDisplayString(d(V.$index)),1)]),_:1}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(_.value,(V,H)=>(e.openBlock(),e.createBlock(j,{key:H,label:V.text,prop:V.value,width:V.width,align:"center","show-overflow-tooltip":"","data-test-id":`EL-TABLE-COLUMN-uzDbCR-${H}`},{default:e.withCtx(({row:L,column:Z})=>[Z.property==="operateDate"?(e.openBlock(),e.createElementBlock("span",Hn,e.toDisplayString(L.operateDate?e.unref(be)(L.operateDate).format("YYYY-MM-DD HH:mm:ss"):"-"),1)):e.createCommentVNode("",!0),Z.property==="operateType"?(e.openBlock(),e.createElementBlock("span",Yn,[L.operateType===1?(e.openBlock(),e.createBlock(z,{key:0,"data-test-id":"EL-TEXT-6b8Abr"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(i)("newView")),1)]),_:1})):e.createCommentVNode("",!0),L.operateType===2?(e.openBlock(),e.createBlock(z,{key:1,"data-test-id":"EL-TEXT-XzqTuW"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(i)("editView")),1)]),_:1})):e.createCommentVNode("",!0),L.operateType===4?(e.openBlock(),e.createBlock(z,{key:2,"data-test-id":"EL-TEXT-NrIXXs"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(i)("deleteView")),1)]),_:1})):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0)]),_:2},1032,["label","prop","width","data-test-id"]))),128))]),_:1},8,["data","loading"])]),e.createElementVNode("div",Kn,[e.createVNode(Me,{style:{"background-color":"transparent","padding-bottom":"0.625rem","padding-top":"1.25rem"},total:u.value.total,"current-page":u.value.currentPage,"page-type":2,"page-size":u.value.pageSize,"current-count":N.value.length,"permission-code":t.pageData.permissionCode,"has-selected":!1,"data-test-id":"PAGINATION-vcMBuD",onChangePage:h,onFMounted:c},null,8,["total","current-page","page-size","current-count","permission-code"])])])])]),_:1},8,["modelValue"])}}},[["__scopeId","data-v-51080841"]]),Xn={class:"view-box flex-center","data-test-id":"DIV-f6cLWs"},Zn={class:"tab-label-container"},Jn={class:"fixed-width flex-center","data-test-id":"DIV-Vgcixm"},ea={key:0,class:"span-box","data-test-id":"DIV-BiX4o2"},ta={style:{"margin-bottom":"5px"},"data-test-id":"DIV-v0zgNe"},oa=["data-test-id"],ra=["data-test-id"],na={key:0,"data-test-id":"SPAN-Zj5s2a"},aa={key:0,"data-test-id":"BR-g8bZ8D"},sa={key:1,class:"empty-filter-tip","data-test-id":"DIV-5qrLAo"},ia={key:0,class:"view-more","data-test-id":"DIV-VIE0ym"},ca={"data-test-id":"SPAN-N2VdKy"},la={class:"flex-center","data-test-id":"DIV-mCNYU8"},da={key:0,class:"more-txt","data-test-id":"DIV-z5UnfR"},ua={key:1,class:"more-txt","data-test-id":"DIV-54VVVY"},ma={class:"fixed-width flex-center","data-test-id":"DIV-iCwDyl"},pa={class:"tab-title","data-test-id":"SPAN-kvDuvy"},$a={key:0,class:"span-box","data-test-id":"DIV-PgJjLg"},ha={style:{"margin-bottom":"5px"},"data-test-id":"DIV-qlWueE"},ga=["data-test-id"],fa=["data-test-id"],ba={key:0,"data-test-id":"SPAN-b69aKz"},xa={key:0,"data-test-id":"BR-6bC7S9"},ya={key:1,class:"empty-filter-tip","data-test-id":"DIV-5FYT0D"},_a={key:1,class:"flex-center","data-test-id":"DIV-1GGakX"},Sa={class:"plus-icon flex-center","data-test-id":"DIV-7acJL9"},Rt=pe({__name:"viewTabs",props:{pageData:{type:Object,default:()=>({})},viewType:{type:Boolean,default:!1},viewIdFromList:{type:Number,default:null},tabs:{type:Array,required:!0,default:()=>[]},selectOptions:{type:Object,default:()=>({})}},emits:["openViewDrawer","openLogDrawer","tabUpdate","tabClick"],setup(t,{emit:R}){const{t:o}=$e.useI18n(),r=t,i=R,u=e.ref(""),_=e.ref(!1),S=e.ref(""),y=e.ref(["#125088","#FF0000","#F0D155","#99C0E4","#FF7A21","#323338","#34AA1A"]),a=e.ref([]),n=e.ref([]),N=e.ref(""),l=e.ref(null),m=e.ref(!1),p=$=>Array.isArray($)&&$.length>0&&$.some(s=>Array.isArray(s)&&s.length>0);function x($){_.value=!1,S.value="";let s=$.paneName;s&&typeof s.value<"u"&&(s=s.value);const T=a.value.find(P=>P.viewName===s);T?(N.value=T.viewName,u.value=T.id,e.nextTick(()=>{i("tabClick",u.value,1)})):K.ElMessage.error(o("tabNotFound"))}function g($){_.value=!0,S.value=$.id<0&&($.viewName==="全部"||$.viewName==="all")?"all":$.viewName,u.value=$.id,N.value="",e.nextTick(()=>{i("tabClick",u.value,1)})}async function h($){await ae.deleteView($).then(s=>{var T;((T=s.data)==null?void 0:T.code)===0?(_.value&&u.value===$&&(_.value=!1,S.value=""),i("tabUpdate")):K.ElMessage.error(o(s.data.message))}).catch(()=>{K.ElMessage.error(o("apiError"))})}function c($,s){switch(s){case"edit":m.value=!0,l.value={mode:"edit",data:{...$},permissionCode:r.pageData.permissionCode,docCode:r.pageData.docCode},e.nextTick(()=>{i("tabClick",$.id,0,r.selectOptions)});break;case"copy":l.value={mode:"copy",data:{...$,name:`${o("copy")}${$.name}`},permissionCode:r.pageData.permissionCode,docCode:r.pageData.docCode},e.nextTick(()=>{i("tabClick",$.id,2,r.selectOptions)});break;case"delete":K.ElMessageBox.confirm(o("viewDeleteTip"),o("delReminder"),{type:"warning",confirmButtonText:o("confirm"),cancelButtonText:o("cancel")}).then(async()=>{await h($.id)}).catch(()=>{});break}}function d(){const $=a.value.find(s=>s.id===u.value);if($)N.value=$.viewName,_.value=!1,S.value="";else{const s=n.value.find(T=>T.id===u.value);s&&(_.value=!0,S.value=s.id<0&&(s.viewName==="全部"||s.viewName==="all")?"all":s.viewName)}}return e.watch(()=>r.tabs,$=>{var T;const s=Array.isArray($)?$:[];s.length>6?(a.value=It(s.slice(0,6)),n.value=It(s.slice(6))):(a.value=It(s),n.value=[]),r.viewIdFromList&&(m.value=!0,u.value=r.viewIdFromList),m.value?(m.value=!1,e.nextTick(()=>{d(),i("tabClick",u.value,"refresh")})):s.some(D=>D.id===u.value)?e.nextTick(()=>{d()}):(_.value=!1,S.value="",N.value=s.length>0?s[0].viewName:"",u.value=s.length>0?(T=s[0])==null?void 0:T.id:0,e.nextTick(()=>{i("tabClick",u.value)}))},{deep:!0,immediate:!0}),($,s)=>{const T=e.resolveComponent("v-icon"),P=e.resolveComponent("el-popover"),D=e.resolveComponent("el-dropdown-item"),I=e.resolveComponent("el-dropdown-menu"),C=e.resolveComponent("el-dropdown"),f=e.resolveComponent("el-tab-pane"),k=e.resolveComponent("el-tabs"),F=e.resolveComponent("el-button"),v=e.resolveComponent("el-tooltip");return e.openBlock(),e.createElementBlock("div",Xn,[e.createVNode(k,{modelValue:N.value,"onUpdate:modelValue":s[1]||(s[1]=w=>N.value=w),type:"card",closable:!1,stretch:!1,"data-test-id":"EL-TABS-hQi8BJ",onTabClick:x},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,(w,M)=>(e.openBlock(),e.createBlock(f,{key:w.id,label:w.viewName,name:w.viewName,"data-test-id":`EL-TAB-PANE-yEF1MT-${M}`},{label:e.withCtx(()=>[e.createElementVNode("div",Zn,[e.createVNode(P,{title:w.id<0&&(w.viewName==="全部"||w.viewName==="all")?e.unref(o)("all"):w.viewName,placement:"bottom",width:"auto","data-test-id":"EL-POPOVER-KqCZyA"},{reference:e.withCtx(()=>[e.createElementVNode("div",Jn,[e.createVNode(T,{style:e.normalizeStyle({color:y.value[Number(w.meta)]}),class:"mdi mdi-book-open-blank-variant","data-test-id":"V-ICON-F6vGIl"},null,8,["style"]),e.createElementVNode("span",{class:"tab-title",style:e.normalizeStyle(u.value===w.id?"font-weight: 700":""),"data-test-id":"SPAN-4OpUJc"},e.toDisplayString(w.id<0&&(w.viewName==="全部"||w.viewName==="all")?e.unref(o)("all"):w.viewName),5)])]),default:e.withCtx(()=>[p(w.parsedFilter)?(e.openBlock(),e.createElementBlock("div",ea,[e.createElementVNode("div",ta,e.toDisplayString(e.unref(o)("dataFilter")),1),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.parsedFilter,(E,W)=>(e.openBlock(),e.createElementBlock("span",{key:W,"data-test-id":`SPAN-Y5w6Ny-${W}`},[E.length>0?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E,(O,q)=>(e.openBlock(),e.createElementBlock("span",{key:q,"data-test-id":`SPAN-RA8qb9-${q}`},[e.createTextVNode(e.toDisplayString(e.unref(o)(O)||O)+" ",1),q<E.length-1?(e.openBlock(),e.createElementBlock("span",na," ")):e.createCommentVNode("",!0)],8,ra))),128)),W<w.parsedFilter.length-1?(e.openBlock(),e.createElementBlock("br",aa)):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)],8,oa))),128))])):(e.openBlock(),e.createElementBlock("div",sa))]),_:2},1032,["title"]),t.viewType?(e.openBlock(),e.createBlock(C,{key:0,placement:"bottom-start",trigger:"click","data-test-id":"EL-DROPDOWN-S8ReG5",onCommand:E=>c(w,E),onClick:s[0]||(s[0]=e.withModifiers(()=>{},["stop"]))},{dropdown:e.withCtx(()=>[e.createVNode(I,{"data-test-id":"EL-DROPDOWN-MENU-lXcUWS"},{default:e.withCtx(()=>[e.createVNode(D,{command:"edit","data-test-id":"EL-DROPDOWN-ITEM-a8rxXb"},{default:e.withCtx(()=>[s[4]||(s[4]=e.createElementVNode("span",{class:"mdi mdi-pencil",style:{"margin-right":"0.5rem"},"data-test-id":"SPAN-c8iMHY"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(o)("edit")),1)]),_:1}),e.createVNode(D,{command:"copy","data-test-id":"EL-DROPDOWN-ITEM-cTJWPm"},{default:e.withCtx(()=>[s[5]||(s[5]=e.createElementVNode("span",{class:"mdi mdi-content-copy",style:{"margin-right":"0.5rem"},"data-test-id":"SPAN-ixzjfp"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(o)("copy")),1)]),_:1}),e.createVNode(D,{command:"delete","data-test-id":"EL-DROPDOWN-ITEM-le8tGS"},{default:e.withCtx(()=>[s[6]||(s[6]=e.createElementVNode("span",{class:"mdi mdi-trash-can",style:{"margin-right":"0.5rem"},"data-test-id":"SPAN-Ihig61"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(o)("delete")),1)]),_:1})]),_:1})]),default:e.withCtx(()=>[s[7]||(s[7]=e.createElementVNode("span",{class:"mdi mdi-dots-vertical","data-test-id":"SPAN-JZNwUC"},null,-1))]),_:2},1032,["onCommand"])):e.createCommentVNode("",!0)])]),_:2},1032,["label","name","data-test-id"]))),128))]),_:1},8,["modelValue"]),n.value.length?(e.openBlock(),e.createElementBlock("div",ia,[e.createVNode(C,{trigger:"click",placement:"bottom-end","data-test-id":"EL-DROPDOWN-Y6vrvm"},{dropdown:e.withCtx(()=>[e.createVNode(I,{"data-test-id":"EL-DROPDOWN-MENU-EaVFiu"},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,(w,M)=>(e.openBlock(),e.createBlock(D,{key:w.id,"data-test-id":`EL-DROPDOWN-ITEM-p4mHqG-${M}`,onClick:E=>g(w)},{default:e.withCtx(()=>[e.createVNode(P,{title:w.id<0&&(w.viewName==="全部"||w.viewName==="all")?e.unref(o)("all"):w.viewName,placement:"left",width:"aoto","data-test-id":"EL-POPOVER-bIn3x3"},{reference:e.withCtx(()=>[e.createElementVNode("div",ma,[e.createVNode(T,{style:e.normalizeStyle([{color:y.value[w.meta]},{"margin-right":"0.5rem"}]),class:"mdi mdi-book-open-blank-variant","data-test-id":"V-ICON-V8uyqx"},null,8,["style"]),e.createElementVNode("span",pa,e.toDisplayString(w.id<0&&(w.viewName==="全部"||w.viewName==="all")?e.unref(o)("all"):w.viewName),1)])]),default:e.withCtx(()=>[p(w.parsedFilter)?(e.openBlock(),e.createElementBlock("div",$a,[e.createElementVNode("div",ha,e.toDisplayString(e.unref(o)("dataFilter")),1),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.parsedFilter,(E,W)=>(e.openBlock(),e.createElementBlock("span",{key:W,"data-test-id":`SPAN-gwUPHe-${W}`},[E.length>0?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E,(O,q)=>(e.openBlock(),e.createElementBlock("span",{key:q,"data-test-id":`SPAN-Yoke3N-${q}`},[e.createTextVNode(e.toDisplayString(e.unref(o)(O)||O)+" ",1),q<E.length-1?(e.openBlock(),e.createElementBlock("span",ba," ")):e.createCommentVNode("",!0)],8,fa))),128)),W<w.parsedFilter.length-1?(e.openBlock(),e.createElementBlock("br",xa)):e.createCommentVNode("",!0)],64)):e.createCommentVNode("",!0)],8,ga))),128))])):(e.openBlock(),e.createElementBlock("div",ya))]),_:2},1032,["title"]),t.viewType?(e.openBlock(),e.createBlock(C,{key:0,placement:"bottom-start",trigger:"hover","data-test-id":"EL-DROPDOWN-VwI5JN",onCommand:E=>c(w,E)},{dropdown:e.withCtx(()=>[e.createVNode(I,{"data-test-id":"EL-DROPDOWN-MENU-uB6AzT"},{default:e.withCtx(()=>[e.createVNode(D,{command:"edit","data-test-id":"EL-DROPDOWN-ITEM-pPx9rh"},{default:e.withCtx(()=>[s[9]||(s[9]=e.createElementVNode("span",{class:"mdi mdi-pencil",style:{"margin-right":"0.5rem"},"data-test-id":"SPAN-gONTrg"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(o)("edit")),1)]),_:1}),e.createVNode(D,{command:"copy","data-test-id":"EL-DROPDOWN-ITEM-GzG8Jm"},{default:e.withCtx(()=>[s[10]||(s[10]=e.createElementVNode("span",{class:"mdi mdi-content-copy",style:{"margin-right":"0.5rem"},"data-test-id":"SPAN-N1W2YJ"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(o)("copy")),1)]),_:1}),e.createVNode(D,{command:"delete","data-test-id":"EL-DROPDOWN-ITEM-n2UcqQ"},{default:e.withCtx(()=>[s[11]||(s[11]=e.createElementVNode("span",{class:"mdi mdi-trash-can",style:{"margin-right":"0.5rem"},"data-test-id":"SPAN-PL9dTd"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(o)("delete")),1)]),_:1})]),_:1})]),default:e.withCtx(()=>[s[12]||(s[12]=e.createElementVNode("span",{class:"mdi mdi-dots-vertical","data-test-id":"SPAN-88aNbL"},null,-1))]),_:2},1032,["onCommand"])):e.createCommentVNode("",!0)]),_:2},1032,["data-test-id","onClick"]))),128))]),_:1})]),default:e.withCtx(()=>[e.createElementVNode("span",ca,[e.createVNode(F,{type:"text","data-test-id":"EL-BUTTON-8gv545"},{default:e.withCtx(()=>[e.createElementVNode("div",la,[_.value?(e.openBlock(),e.createElementBlock("div",ua,e.toDisplayString(S.value==="all"?e.unref(o)("all"):S.value),1)):(e.openBlock(),e.createElementBlock("div",da,e.toDisplayString(e.unref(o)("moreView")),1)),s[8]||(s[8]=e.createElementVNode("div",{"data-test-id":"DIV-YkEYuZ"},[e.createElementVNode("span",{class:"mdi mdi-chevron-down","data-test-id":"SPAN-OA1DMi"})],-1))])]),_:1})])]),_:1})])):e.createCommentVNode("",!0),t.viewType?(e.openBlock(),e.createElementBlock("div",_a,[e.createVNode(v,{content:e.unref(o)("createView"),placement:"top",enterable:!1,"data-test-id":"EL-TOOLTIP-tBu398"},{default:e.withCtx(()=>[e.createElementVNode("div",{class:"plus-icon","data-test-id":"DIV-2LlLoK",onClick:s[2]||(s[2]=w=>i("openViewDrawer"))},[e.createVNode(F,{type:"text","data-test-id":"EL-BUTTON-v7caGb"},{default:e.withCtx(()=>s[13]||(s[13]=[e.createElementVNode("span",{class:"mdi mdi-plus","data-test-id":"SPAN-vVJa7G"},null,-1)])),_:1})])]),_:1},8,["content"]),e.createElementVNode("div",Sa,[e.createVNode(v,{content:e.unref(o)("viewOperationRecordTxt"),placement:"top",enterable:!1,"data-test-id":"EL-TOOLTIP-QQUw4G"},{default:e.withCtx(()=>[e.createVNode(F,{type:"text","data-test-id":"EL-BUTTON-D3QSbJ",onClick:s[3]||(s[3]=w=>i("openLogDrawer"))},{default:e.withCtx(()=>[s[14]||(s[14]=e.createElementVNode("span",{class:"mdi mdi-text-box-check-outline",style:{"margin-right":"0.5rem"},"data-test-id":"SPAN-4M2L0o"},null,-1)),e.createTextVNode(" "+e.toDisplayString(e.unref(o)("viewOperationRecordTxt")),1)]),_:1})]),_:1},8,["content"])])])):e.createCommentVNode("",!0)])}}},[["__scopeId","data-v-67977136"]]),Na=["data-test-id"],vt=pe({__name:"index",props:{permissionData:{type:Object,default:()=>({})},selectOptions:{type:Object,default:()=>({})},dataTextId:String,defaultCreateTimeString:{type:String,default:"createTime"}},emits:["update:permissionData"],setup(t,{expose:R,emit:o}){const{t:r}=$e.useI18n(),i=t,u=o,_=e.ref(null),S=e.ref(null),y=e.ref(null),a=e.ref(null),n=e.ref([]),N=async()=>{var h;try{const c=await ae.getViewOnlyReadList({permissionCode:i.permissionData.permissionCode});if(((h=c.data)==null?void 0:h.code)===0)return n.value=[...c.data.content],c.data.content;K.ElMessage.error(r(c.data.message))}catch{K.ElMessage.error("获取视图标签列表失败")}},l=()=>{N()},m=()=>{S.value&&S.value.open()},p=(h,c)=>{c===0||c===2?a.value&&a.value.open(h,c===2):u("update:permissionData",{...i.permissionData,viewId:h})},x=()=>{y.value&&y.value.open()},g=(h,c)=>{n.value=[...h],c&&u("update:permissionData",{...i.permissionData,viewId:c}),N()};return e.onMounted(()=>{N()}),R({openViewList:()=>{m()},openViewRecord:()=>{x()}}),(h,c)=>(e.openBlock(),e.createElementBlock("div",{class:"view-manager-container","data-test-id":`${t.dataTextId}-DIV-XGm3Sf`},[(e.openBlock(),e.createBlock(Rt,{ref_key:"viewTabsRef",ref:_,key:t.permissionData.viewId,tabs:n.value,"view-type":!0,"view-id-from-list":null,"select-options":t.selectOptions,"data-test-id":`${t.dataTextId}-VIEWTABS-7oMOT6`,onTabUpdate:l,onOpenViewDrawer:m,onTabClick:p,onOpenLogDrawer:x},null,8,["tabs","select-options","data-test-id"])),e.createVNode(wt,{ref_key:"viewListRef",ref:S,"permission-data":t.permissionData,"select-options":t.selectOptions,"data-test-id":`${t.dataTextId}-VIEWLIST-cyMJsA`,"default-create-time-string":t.defaultCreateTimeString,onUpdateViewTabs:g},null,8,["permission-data","select-options","data-test-id","default-create-time-string"]),e.createVNode(kt,{ref_key:"viewRecordRef",ref:y,"page-data":t.permissionData,"data-test-id":`${t.dataTextId}-VIEWRECORD-2RlrfD`},null,8,["page-data","data-test-id"]),e.createVNode(Le,{ref_key:"createViewRef",ref:a,"permission-data":t.permissionData,"select-options":t.selectOptions,"data-test-id":`${t.dataTextId}-CREATEVIEW-uTu1Xa`,"default-create-time-string":t.defaultCreateTimeString,onUpdataView:l},null,8,["permission-data","select-options","data-test-id","default-create-time-string"])],8,Na))}},[["__scopeId","data-v-93fcef4d"]]),Ca=["data-test-id"],Ea=["data-test-id"],Bt=pe({__name:"index",props:{buttons:{type:Array,required:!0,default:()=>[]},position:{type:String,default:"left",validator:t=>["left","center","right"].includes(t)},dataTestId:String},setup(t){const R=e.ref(null);return(o,r)=>{const i=e.resolveComponent("v-icon"),u=e.resolveComponent("el-button"),_=e.resolveComponent("el-dropdown-item"),S=e.resolveComponent("el-dropdown-menu"),y=e.resolveComponent("el-dropdown");return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["header-buttons-container",`buttons-position-${t.position}`]),"data-test-id":`${t.dataTestId}-DIV-eobZrN`},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.buttons,(a,n)=>(e.openBlock(),e.createElementBlock("div",{key:a.key,class:"header-button-item","data-test-id":`${t.dataTestId}-DIV-Y656ZM-${n}`},[a.dropdownItems?(e.openBlock(),e.createBlock(y,{key:1,ref_for:!0,ref_key:"dropdownRef",ref:R,"hide-on-click":!1,trigger:"click","data-test-id":`${t.dataTestId}-EL-DROPDOWN-WliCoC-${n}`},{dropdown:e.withCtx(()=>[e.createVNode(S,{"data-test-id":`${t.dataTestId}-EL-DROPDOWN-MENU-ZwOGul-${n}`},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.dropdownItems,(N,l)=>(e.openBlock(),e.createBlock(_,{key:N.key,"data-test-id":`${t.dataTestId}-EL-DROPDOWN-ITEM-QbT4TZ-${l}`},{default:e.withCtx(()=>[e.createVNode(u,{"data-test-id":`${t.dataTestId}-EL-BUTTON-B8WbcZ-${l}`,type:N.type||"primary",plain:N.plain||!1,round:N.round||!1,link:N.link||!1,size:N.size,loading:N.loading||!1,onClick:m=>N.func()},{default:e.withCtx(()=>[N.icon?(e.openBlock(),e.createBlock(i,{key:0,class:e.normalizeClass(N.icon),style:{"margin-right":"0.25rem"},"data-test-id":`${t.dataTestId}-V-ICON-lmPYuR-${l}`},null,8,["class","data-test-id"])):e.createCommentVNode("",!0),!N.circle&&N.label?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(N.label),1)],64)):e.createCommentVNode("",!0)]),_:2},1032,["data-test-id","type","plain","round","link","size","loading","onClick"])]),_:2},1032,["data-test-id"]))),128))]),_:2},1032,["data-test-id"])]),default:e.withCtx(()=>[e.createVNode(u,{type:a.type||"primary",plain:a.plain||!1,round:a.round||!1,circle:a.circle||!1,link:a.link||!1,size:a.size,"data-test-id":`${t.dataTestId}-EL-BUTTON-0bdOsM-${n}`,loading:a.loading||!1},{default:e.withCtx(()=>[a.icon?(e.openBlock(),e.createBlock(i,{key:0,class:e.normalizeClass(a.icon),style:{"margin-right":"0.5rem"},"data-test-id":`${t.dataTestId}-V-ICON-gQZNcf-${n}`},null,8,["class","data-test-id"])):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(a.label),1)]),_:2},1032,["type","plain","round","circle","link","size","data-test-id","loading"])]),_:2},1032,["data-test-id"])):(e.openBlock(),e.createBlock(u,{key:0,class:e.normalizeClass(a.link?"":"margin_right_1rem"),type:a.type||"primary",plain:a.plain||!1,round:a.round||!1,circle:a.circle||!1,link:a.link||!1,size:a.size,"data-test-id":`${t.dataTestId}-EL-BUTTON-mi1dnO-${n}`,loading:a.loading||!1,onClick:N=>a.func()},{default:e.withCtx(()=>[a.icon?(e.openBlock(),e.createBlock(i,{key:0,class:e.normalizeClass(a.icon),style:{"margin-right":"0.25rem"},"data-test-id":`${t.dataTestId}-V-ICON-GpCo9D-${n}`},null,8,["class","data-test-id"])):e.createCommentVNode("",!0),!a.circle&&a.label?(e.openBlock(),e.createElementBlock(e.Fragment,{key:1},[e.createTextVNode(e.toDisplayString(a.label),1)],64)):e.createCommentVNode("",!0)]),_:2},1032,["class","type","plain","round","circle","link","size","data-test-id","loading","onClick"]))],8,Ea))),128))],10,Ca)}}},[["__scopeId","data-v-b25d4a37"]]),Ta=t=>{const R=document.createElement("span");R.style.visibility="hidden",R.style.position="absolute",R.style.top="-9999px",R.style.whiteSpace="nowrap",R.style.fontSize="16px",R.innerText=t,document.body.appendChild(R);const o=R.offsetWidth+16;return document.body.removeChild(R),o};function Da(t,R,o,r=80){let u=o.map(y=>y[R]);u.push(t);const _=u.map(y=>{const a=y?String(y):"",n=Ta(a);return n+10>300?300:n+10}),S=Math.max(..._);return Math.max(r,S)}const Pa=["data-test-id"],Oa=["data-test-id"],Fa=["data-test-id"],Ia=["data-test-id"],wa=["data-test-id"],ka=["data-test-id"],Ra=["data-test-id"],va=["data-test-id"],Ba=["data-test-id"],Ma=["data-test-id"],Aa=["data-test-id"],Mt=pe({__name:"index",props:{tableData:{type:Array,default:()=>[]},columns:{type:Array,default:()=>[]},tableActionsWidth:{type:Number,default:120},currentPage:{type:Number,default:1},pageSize:{type:Number,default:20},loading:{type:Boolean,default:!1},showSelection:{type:Boolean,default:!0},showIndex:{type:Boolean,default:!0},actionsFixed:{type:[Boolean,String],default:"right"},columnMinWidth:{type:Number,default:200},permissionCode:{type:String,default:""},total:{type:Number,default:0},selectedNum:{type:Number,default:0},defaultSort:{type:Object,default:()=>({})},showSummary:{type:Boolean,default:!1},summaryMethod:Function,selectable:Function,pageType:Number,showPagination:{type:Boolean,default:!0},dataTestId:String},emits:["selectionChange","sortChange","cellClick","pageChange"],setup(t,{expose:R,emit:o}){const r=t,i=o,{t:u}=$e.useI18n(),_=e.ref(),S=e.ref([]),y=e.computed(()=>r.columns.filter(h=>!!h.isShown)),a=h=>(r.currentPage-1)*r.pageSize+h+1;function n(h){h.column.sortable==="custom"?i("sortChange",h):_.value.sort(h.prop,h.order)}function N(h,c){const d=c.formatter(h,c);return`
20
+ --el-link-hover-text-color: ${d.hoverColor||"#409eff"};
21
+ --el-link-text-color: ${d.color||"#606266"}
22
+ `}const l=h=>{S.value=h,i("selectionChange",h)},m=()=>{var h;(h=_.value)==null||h.clearSelection()},p=(h,c)=>{var d;(d=_.value)==null||d.toggleRowSelection(h,c)},x=h=>{i("pageChange",h)};function g(h,c){i("cellClick",{row:h,cell:c})}return R({tableRef:_,getTableRef:()=>_.value,clearSelection:m,toggleRowSelection:p,selectedRows:S}),(h,c)=>{const d=e.resolveComponent("el-table-column"),$=e.resolveComponent("el-tag"),s=e.resolveComponent("v-icon"),T=e.resolveComponent("el-tooltip"),P=e.resolveComponent("el-link"),D=e.resolveComponent("el-table"),I=e.resolveDirective("loading"),C=e.resolveDirective("shift-select");return e.openBlock(),e.createElementBlock("div",{class:"table-wrapper","data-test-id":`${t.dataTestId}-DIV-To1wh5`},[e.createElementVNode("div",{class:"table-content","data-test-id":`${t.dataTestId}-DIV-cL2A1K`},[e.withDirectives((e.openBlock(),e.createBlock(D,e.mergeProps({ref_key:"tableRef",ref:_,data:t.tableData,height:"100%",style:{width:"100%"},border:"","highlight-current-row":"","scrollbar-always-on":"",stripe:"","show-summary":t.showSummary,"summary-method":t.summaryMethod,"data-test-id":`${t.dataTestId}-EL-TABLE-YQ7at9`,"default-sort":t.defaultSort},h.$attrs,{onCellClick:g,onSelectionChange:l,onSortChange:n}),{default:e.withCtx(()=>[t.showSelection?(e.openBlock(),e.createBlock(d,{key:0,type:"selection",width:t.showSummary?60:50,selectable:t.selectable,align:"center","data-test-id":`${t.dataTestId}-EL-TABLE-COLUMN-Sc8zKF`},null,8,["width","selectable","data-test-id"])):e.createCommentVNode("",!0),t.showIndex?(e.openBlock(),e.createBlock(d,{key:1,type:"index",label:"#",width:"50",align:"center",fixed:"left","data-test-id":`${t.dataTestId}-EL-TABLE-COLUMN-vQ3j6j`},{default:e.withCtx(({$index:f})=>[e.createTextVNode(e.toDisplayString(a(f)),1)]),_:1},8,["data-test-id"])):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(y.value,(f,k)=>(e.openBlock(),e.createBlock(d,e.mergeProps({key:f.value,label:f.text,prop:String(f.value),fixed:f.isFixed?"left":!1,align:"center","show-overflow-tooltip":"",sortable:f.sortable,"min-width":f.minWidth||t.columnMinWidth||120,width:f.isCustom?e.unref(Da)(f.text,String(f.value),t.tableData,200):"auto","data-test-id":`${t.dataTestId}-EL-TABLE-COLUMN-vQ3j6j-${k}`,"sort-params":f.sortParams,ref_for:!0},f.attrs),e.createSlots({header:e.withCtx(()=>[e.createElementVNode("div",{style:{display:"inline-flex","justify-content":"center","align-items":"center"},"data-test-id":`${t.dataTestId}-DIV-asjQke`},[f.leftSlot?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(f.leftSlot),{key:0,"data-test-id":`${t.dataTestId}-COMPONENT-pgSWCu`},null,8,["data-test-id"])):e.createCommentVNode("",!0),e.createElementVNode("span",{"data-test-id":`${t.dataTestId}-SPAN-iBEcrY`},e.toDisplayString(f.text),9,Ia),f.rightSlot?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(f.rightSlot),{key:1,"data-test-id":`${t.dataTestId}-COMPONENT-WYbm6e`},null,8,["data-test-id"])):e.createCommentVNode("",!0)],8,Fa)]),_:2},[f.columntSlot?{name:"default",fn:e.withCtx(({row:F,$index:v})=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(f.columntSlot),{row:F,index:v,"data-test-id":`${t.dataTestId}-COMPONENT-24Y9n6`},null,8,["row","index","data-test-id"]))]),key:"0"}:f.formatter?{name:"default",fn:e.withCtx(({row:F})=>[f.formatterType==="tags"?(e.openBlock(),e.createBlock($,{key:0,style:e.normalizeStyle([`color:${f.formatter(F,f).bgColor}`,{"margin-left":"4px"}]),color:f.formatter(F,f).textColor,"data-test-id":`${t.dataTestId}-EL-TAG-mfRiQa`},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.formatter(F,f).text),1)]),_:2},1032,["style","color","data-test-id"])):f.formatterType==="icon"?(e.openBlock(),e.createElementBlock("div",{key:1,"data-test-id":`${t.dataTestId}-DIV-bLxOMG`},[f.formatter(F,f).text?(e.openBlock(),e.createBlock(T,{key:0,class:"box-item",effect:"dark",content:f.formatter(F,f).text,placement:"top","data-test-id":`${t.dataTestId}-EL-TOOLTIP-LsKqgG`},{default:e.withCtx(()=>[e.createVNode(s,{class:e.normalizeClass(f.formatter(F,f).icon),style:e.normalizeStyle(`color: ${f.formatter(F,f).color};`),"data-test-id":`${t.dataTestId}-V-ICON-qSsT49`},null,8,["class","style","data-test-id"])]),_:2},1032,["content","data-test-id"])):(e.openBlock(),e.createBlock(s,{key:1,class:e.normalizeClass(f.formatter(F,f).icon),style:e.normalizeStyle(`color: ${f.formatter(F,f).color};`),"data-test-id":`${t.dataTestId}-V-ICON-qSsT49`},null,8,["class","style","data-test-id"]))],8,wa)):f.formatterType==="file"?(e.openBlock(),e.createElementBlock("div",{key:2,"data-test-id":`${t.dataTestId}-DIV-6Qg7rD`},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.formatter(F,f),(v,w)=>(e.openBlock(),e.createElementBlock("div",{key:w,class:"file-name",style:e.normalizeStyle(`color: ${v.color||"#409eff"};`),"data-test-id":`${t.dataTestId}-DIV-Et2BFU-${w}`},[e.createTextVNode(e.toDisplayString(v.name||v.file||"---")+" ",1),w<f.formatter(F,f).length-1?(e.openBlock(),e.createElementBlock("span",{key:0,"data-test-id":`${t.dataTestId}-SPAN-wLZkzY`}," , ",8,va)):e.createCommentVNode("",!0)],12,Ra))),128))],8,ka)):f.formatterType==="link"?(e.openBlock(),e.createElementBlock("div",{key:3,"data-test-id":`${t.dataTestId}-DIV-54trNN`},[e.createVNode(P,{href:f.formatter(F,f).link,underline:f.formatter(F,f).underline,target:"_blank",style:e.normalizeStyle(N(F,f)),"data-test-id":`${t.dataTestId}-EL-LINK-8g2RDk`},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(f.formatter(F,f).name||f.formatter(F,f).link||"---"),1)]),_:2},1032,["href","underline","style","data-test-id"])],8,Ba)):(e.openBlock(),e.createElementBlock("span",{key:4,"data-test-id":`${t.dataTestId}-SPAN-rCQPnk`},e.toDisplayString(f.formatter(F,f)||"---"),9,Ma))]),key:"1"}:void 0]),1040,["label","prop","fixed","sortable","min-width","width","data-test-id","sort-params"]))),128)),t.tableActionsWidth>0?(e.openBlock(),e.createBlock(d,{key:2,label:e.unref(u)("action"),"min-width":t.tableActionsWidth,fixed:t.actionsFixed,align:"center","data-test-id":`${t.dataTestId}-EL-TABLE-COLUMN-gLrVJL`},{default:e.withCtx(({row:f,$index:k})=>[e.renderSlot(h.$slots,"tableActions",{row:f,index:k},void 0,!0)]),_:3},8,["label","min-width","fixed","data-test-id"])):e.createCommentVNode("",!0)]),_:3},16,["data","show-summary","summary-method","data-test-id","default-sort"])),[[I,t.loading],[C,void 0,"tableRef"]])],8,Oa),t.showPagination?(e.openBlock(),e.createElementBlock("div",{key:0,class:"pagination-content","data-test-id":`${t.dataTestId}-DIV-UYLlzi`},[e.createVNode(Me,{style:{"background-color":"transparent","padding-bottom":"0.625rem","padding-top":"1.25rem"},total:t.total,"current-page":t.currentPage,"page-size":t.pageSize,"selected-num":S.value.length,"current-count":t.tableData.length,"has-selected":!0,"permission-code":t.permissionCode,"data-test-id":`${t.dataTestId}-PAGINATION-msjXvX`,"page-type":t.pageType,onChangePage:x},null,8,["total","current-page","page-size","selected-num","current-count","permission-code","data-test-id","page-type"])],8,Aa)):e.createCommentVNode("",!0)],8,Pa)}}},[["__scopeId","data-v-eaa1639a"]]),Va=["data-test-id"],Mo=pe({__name:"index",props:{hasHeaderTabs:{type:Boolean,default:!0},hasHeaderOperation:{type:Boolean,default:!0},hasSearchContent:{type:Boolean,default:!0},hasColumnConfig:{type:Boolean,default:!0},auto:{type:Boolean,default:!0},pageLoading:{type:Boolean,default:!1},tableLoading:{type:Boolean,default:!1},total:{type:Number,default:0},tableColumns:{type:Array,default:()=>[]},permissionCode:{type:String,default:""},tableActionsWidth:{type:Number,default:120},showSelection:{type:Boolean,default:!0},showIndex:{type:Boolean,default:!0},columnMinWidth:{type:Number,default:200},showSummary:{type:Boolean,default:!1},summaryMethod:Function,selectable:Function,permissionData:{type:Object,default:()=>({})},selectOptions:{type:Object,default:()=>({})},defaultCreateTimeString:{type:String,default:"createTime"},topButtons:{type:Array,default:()=>[]},defaultSort:{type:Object,default:()=>({})},pageType:Number,showPagination:{type:Boolean,default:!0},dataTestId:String},emits:["update:modelValue","reload","sortChange","selectionChange","columnsSaveData","columnsChildSaveData","cellClick","update:permissionData"],setup(t,{expose:R,emit:o}){const r=t,i=o,u=e.ref(),_=e.ref([]),S=e.ref([]),y=e.ref(1),a=e.ref(20),n=e.computed(()=>r.total),N=e.computed(()=>({startIndex:(y.value-1)*a.value,count:a.value}));function l(s){y.value=1,i("filterSearch",s)}function m(s){_.value=s,i("update:modelValue",s)}function p(){i("reload",N.value)}const x=e.computed(()=>r.tableColumns),g=async s=>{i("columnsSaveData",s)},h=async s=>{i("columnsChildSaveData",s)},c=s=>{y.value=s.page,a.value=s.size,i("reload",N.value)};function d(s){S.value=s,i("selectionChange",s)}function $(s){y.value=1,i("update:permissionData",s)}return R({tableContentRef:u,complete:m,reload:p,getTableData:()=>_.value}),(s,T)=>{const P=e.resolveDirective("loading");return e.openBlock(),e.createElementBlock("div",{"data-test-id":`${t.dataTestId}-DIV-CHFzZk`},[e.withDirectives((e.openBlock(),e.createBlock(Qe,{"is-tab":!1,"is-view":!0,"data-test-id":`${t.dataTestId}-PAGECONTENT-izX8Nl`},{viewContent:e.withCtx(()=>[t.hasHeaderTabs?(e.openBlock(),e.createBlock(vt,{key:0,ref:"viewManagerRef","permission-data":t.permissionData,"data-test-id":`${t.dataTestId}-DIV-9lfM7M`,"select-options":t.selectOptions,"default-create-time-string":t.defaultCreateTimeString,"onUpdate:permissionData":$},null,8,["permission-data","data-test-id","select-options","default-create-time-string"])):e.createCommentVNode("",!0)]),headerContent:e.withCtx(()=>[t.hasHeaderOperation?(e.openBlock(),e.createBlock(Bt,{key:0,buttons:t.topButtons,position:"right","data-test-id":`${t.dataTestId}-HEADER-OPERATION-XO8TJP`},null,8,["buttons","data-test-id"])):e.createCommentVNode("",!0)]),searchContent:e.withCtx(()=>[t.hasSearchContent?(e.openBlock(),e.createBlock(je,{key:0,ref:"querySearchRef","can-edit-headers":x.value,"data-test-id":`${t.dataTestId}-CUSTOMFILTER-7SqxcZ`,"permission-code":t.permissionCode,"has-column-config":t.hasColumnConfig,"select-options":t.selectOptions,onFilterSearch:l,onParentSaveData:g,onChildSaveData:h},null,8,["can-edit-headers","data-test-id","permission-code","has-column-config","select-options"])):e.createCommentVNode("",!0)]),tableContent:e.withCtx(()=>[e.createVNode(Mt,e.mergeProps({ref_key:"tableContentRef",ref:u,loading:t.tableLoading,"table-data":_.value,columns:x.value,total:n.value,"current-page":y.value,"page-size":a.value,"table-actions-width":t.tableActionsWidth,"show-selection":t.showSelection,"show-index":t.showIndex,"column-min-width":t.columnMinWidth,"permission-code":t.permissionCode,"page-type":t.pageType,"show-pagination":t.showPagination,"data-test-id":`${t.dataTestId}-TABLE-CONTENT-NH3XBf`,"default-sort":t.defaultSort,"show-summary":t.showSummary,"summary-method":t.summaryMethod,selectable:t.selectable},s.$attrs,{onCellClick:T[0]||(T[0]=D=>i("cellClick",D)),onSortChange:T[1]||(T[1]=D=>i("sortChange",D)),onSelectionChange:d,onPageChange:c}),{customColumn:e.withCtx(({row:D,index:I})=>[e.renderSlot(s.$slots,"customColumn",{row:D,index:I},void 0,!0)]),tableActions:e.withCtx(({row:D,index:I})=>[e.renderSlot(s.$slots,"tableActions",{row:D,index:I},void 0,!0)]),_:3},16,["loading","table-data","columns","total","current-page","page-size","table-actions-width","show-selection","show-index","column-min-width","permission-code","page-type","show-pagination","data-test-id","default-sort","show-summary","summary-method","selectable"])]),_:3},8,["data-test-id"])),[[P,t.pageLoading]])],8,Va)}}},[["__scopeId","data-v-f41f8962"]]),La=[ze,Lt,Qe,Me,Yt,je,Ae,Kt,Xt,Le,wt,kt,Rt,Ge,Mo,vt,Bt,Mt],qa=["SynColumnConfigNext","SynDialog","SynPageContent","SynPagination","SynPopover","SynCustomFilter","SynFilterCriteria","SynFullPageGlobal","SynGlobalDialog","SynCreateView","SynViewList","SynViewRecord","SynViewTabs","SynViewFileFilterCriteria","SynMainPageContent","SynTheWholeViewContent","SynRightButtonBlockContent","SynTableContent"],At=t=>{La.forEach((R,o)=>{const r=qa[o],i=R.name||R.__name||r;i&&t.component(i,R)})};typeof window<"u"&&window.Vue&&At(window.Vue);const Wa={install:At};oe.SynColumnConfigNext=ze,oe.SynCreateView=Le,oe.SynCustomFilter=je,oe.SynDialog=Lt,oe.SynFilterCriteria=Ae,oe.SynFullPageGlobal=Kt,oe.SynGlobalDialog=Xt,oe.SynMainPageContent=Mo,oe.SynPageContent=Qe,oe.SynPagination=Me,oe.SynPopover=Yt,oe.SynRightButtonBlockContent=Bt,oe.SynTableContent=Mt,oe.SynTheWholeViewContent=vt,oe.SynViewFileFilterCriteria=Ge,oe.SynViewList=wt,oe.SynViewRecord=kt,oe.SynViewTabs=Rt,oe.default=Wa,oe.install=At,Object.defineProperties(oe,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})});
23
+ //# sourceMappingURL=syntec3-0-ui-components.umd.js.map