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.
- package/README.md +5 -0
- package/dist/S3_0UC_main.csv +4 -0
- package/dist/S3_0UC_sub.csv +2 -0
- package/dist/globalVariableS3_0UC.json +1 -0
- package/dist/style.css +1 -0
- package/dist/syntec3-0-ui-components.es.js +19518 -0
- package/dist/syntec3-0-ui-components.es.js.map +1 -0
- package/dist/syntec3-0-ui-components.umd.js +23 -0
- package/dist/syntec3-0-ui-components.umd.js.map +1 -0
- package/dist/vite.svg +1 -0
- package/dist/web.config +17 -0
- package/package.json +137 -0
- package/src/App.vue +31 -0
- package/src/assets/fonts/genYoGothicTW-normal.js +7 -0
- package/src/assets/image/defaultImage.png +0 -0
- package/src/assets/vue.svg +1 -0
- package/src/components/Layout/modules/fullPageGlobal.vue +113 -0
- package/src/components/Layout/modules/viewFile/config.js +65 -0
- package/src/components/Layout/modules/viewFile/createView.vue +1000 -0
- package/src/components/Layout/modules/viewFile/filterCriteria.vue +816 -0
- package/src/components/Layout/modules/viewFile/viewList.vue +291 -0
- package/src/components/Layout/modules/viewFile/viewManageTool.js +271 -0
- package/src/components/Layout/modules/viewFile/viewRecord.vue +472 -0
- package/src/components/Layout/modules/viewFile/viewTabs.vue +542 -0
- package/src/components/Layout/tools/GlobalDialog.vue +115 -0
- package/src/components/Pagination.vue +139 -0
- package/src/components/columnConfigNext.vue +273 -0
- package/src/components/customFilter/customFilter.vue +492 -0
- package/src/components/customFilter/filterCriteria.vue +769 -0
- package/src/components/customTable/components/headerOperation/index.vue +136 -0
- package/src/components/customTable/components/headerTabs/index.vue +171 -0
- package/src/components/customTable/components/tableContent/index.vue +440 -0
- package/src/components/customTable/index.vue +305 -0
- package/src/components/dialog.vue +85 -0
- package/src/components/pageContent.vue +48 -0
- package/src/components/popover.vue +402 -0
- package/src/configFiles/apiFile/baseApiList.json +11 -0
- package/src/configFiles/apiFile/coreApiList.json +24 -0
- package/src/configFiles/apiFile/mesApiList.json +4 -0
- package/src/configFiles/apiFile/mmsApiList.json +3 -0
- package/src/configFiles/errorCode.json +291 -0
- package/src/configFiles/version.js +2 -0
- package/src/i18n/lang/en-us.json +2060 -0
- package/src/i18n/lang/errorCodeTranslate.mjs +847 -0
- package/src/i18n/lang/zh-cn.json +2062 -0
- package/src/i18n/lang/zh-tw.json +2059 -0
- package/src/index.js +115 -0
- package/src/main.js +51 -0
- package/src/plugins/excel.js +88 -0
- package/src/router/index.js +41 -0
- package/src/scriptFiles/apiConfig/baseApis.js +10 -0
- package/src/scriptFiles/apiConfig/mesApis.js +10 -0
- package/src/scriptFiles/apiConfig/mmsApis.js +10 -0
- package/src/scriptFiles/apiConfig/privateCloudCoreApis.js +13 -0
- package/src/scriptFiles/apiConfig/serviceRoute.js +23 -0
- package/src/scriptFiles/apis/baseApiFunction.js +63 -0
- package/src/scriptFiles/apis/mesApiFunction.js +15 -0
- package/src/scriptFiles/apis/mmsApiFunction.js +9 -0
- package/src/scriptFiles/apis/privateCloudCoreApiFunction.js +101 -0
- package/src/scriptFiles/backendApiFunction.js +11 -0
- package/src/scriptFiles/checkApiErrorMechanism.js +137 -0
- package/src/scriptFiles/common/objectDataProcessing.js +65 -0
- package/src/scss/base/commom.scss +1068 -0
- package/src/scss/base/dialog.scss +45 -0
- package/src/scss/base/index.scss +3 -0
- package/src/scss/base/table.scss +28 -0
- package/src/store/index.js +25 -0
- package/src/store/module/langStore.js +116 -0
- package/src/style.css +52 -0
- package/src/utils/excel.js +86 -0
- package/src/utils/formula.js +69 -0
- package/src/utils/https.js +13 -0
- package/src/utils/i18n.js +42 -0
- package/src/utils/shiftSelect.js +164 -0
- package/src/utils/summation.js +77 -0
- package/src/utils/tableWidth.js +29 -0
- package/src/utils/toolFun.js +93 -0
- package/src/views/productionWorkOrder/components/columnConfig.vue +242 -0
- package/src/views/productionWorkOrder/components/docCustomFieldForm.vue +739 -0
- package/src/views/productionWorkOrder/components/filePreview.vue +148 -0
- package/src/views/productionWorkOrder/components/querySearch.vue +363 -0
- package/src/views/productionWorkOrder/configFiles/excelImportErrorCode.json +94 -0
- package/src/views/productionWorkOrder/configFiles/pdfDefaultConfig.js +933 -0
- package/src/views/productionWorkOrder/configFiles/planMakingScript.js +600 -0
- package/src/views/productionWorkOrder/configFiles/productionRelatedScript.js +368 -0
- package/src/views/productionWorkOrder/configFiles/rulse.js +23 -0
- package/src/views/productionWorkOrder/configFiles/status.js +50 -0
- package/src/views/productionWorkOrder/index.vue +2174 -0
- package/src/views/productionWorkOrder/productionFlowLabel/component/addCirculationLabel.vue +394 -0
- package/src/views/productionWorkOrder/productionFlowLabel/component/circulationLabelTable.vue +124 -0
- package/src/views/productionWorkOrder/productionFlowLabel/component/materialPartFilePreview.vue +167 -0
- package/src/views/productionWorkOrder/productionFlowLabel/component/workOrderInformation.vue +28 -0
- package/src/views/productionWorkOrder/productionFlowLabel/index.vue +604 -0
- package/src/views/production_work_order/components/priorityTooltip.vue +53 -0
- package/src/views/production_work_order/index.vue +1307 -0
- package/src/views/review_record/components/materialInfo.vue +50 -0
- package/src/views/review_record/components/rootCause.vue +42 -0
- package/src/views/review_record/components/workDetail.vue +115 -0
- package/src/views/review_record/index.vue +884 -0
|
@@ -0,0 +1,847 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
'zh-tw': {
|
|
3
|
+
System_Error: '系統錯誤',
|
|
4
|
+
Service_Unavailable: '系統服務暫停',
|
|
5
|
+
Remote_Service_Error: '遠端連線錯誤',
|
|
6
|
+
IP_Limit: 'IP限制不能請求該資源',
|
|
7
|
+
Illegal_Request: '非法請求',
|
|
8
|
+
Token_Missing: '缺少source (token) 參數',
|
|
9
|
+
Unsupport_Mediatype: '不支援的MediaType',
|
|
10
|
+
Param_Error: '參數錯誤,您回傳的資料內容或代碼數量不符規範',
|
|
11
|
+
System_Busy: '系統過載',
|
|
12
|
+
Job_Expired: '執行超時',
|
|
13
|
+
RPC_Error: 'RPC錯誤',
|
|
14
|
+
Partial_Data_Error: '部分資料錯誤',
|
|
15
|
+
Time_Out: '連線逾時',
|
|
16
|
+
Mail_Failed: '寄信功能異常',
|
|
17
|
+
Decode_Failed: '解密功能異常',
|
|
18
|
+
WeChat_GetOpenID_Error: '微信取OpenID功能異常',
|
|
19
|
+
SDK_Unsupport_Function: 'SDK不支援此功能',
|
|
20
|
+
API_Internet_Error: '連線其他API失敗',
|
|
21
|
+
SMS_Failed: '簡訊發送異常,請檢查國碼及手機號碼是否輸入正確',
|
|
22
|
+
Insert_Problem_Type_Wrong: '插入錯誤之參數型態不正確',
|
|
23
|
+
Insert_Problem_KeyColumn_Exist: '已存在相同主鍵欄位',
|
|
24
|
+
Update_Problem_Type_Wrong: '更新錯誤之參數型態不正確',
|
|
25
|
+
Update_Problem_KeyColumn_Miss: '缺少主鍵',
|
|
26
|
+
Select_Problem_No_Data: '查無資料',
|
|
27
|
+
Update_Error: '更新錯誤',
|
|
28
|
+
Insert_Error: '插入失敗',
|
|
29
|
+
Upsert_Error: '更新插入失敗',
|
|
30
|
+
Delete_Error: '刪除失敗',
|
|
31
|
+
DBRelated_Error: '資料庫相關系統錯誤',
|
|
32
|
+
Data_Duplicate: '資料重複',
|
|
33
|
+
Password_Wrong: '密碼錯誤',
|
|
34
|
+
ProcessOrder_Duplicate: '工序子工單重複',
|
|
35
|
+
No_Right_to_Access: '權限不足',
|
|
36
|
+
UserID_UnExist: '帳號不存在',
|
|
37
|
+
Account_Quit: '帳號停用',
|
|
38
|
+
Verify_Fail: '驗證錯誤',
|
|
39
|
+
ID_SameAs_Password: '帳號等同於密碼',
|
|
40
|
+
Auth_Error: '帳號認證錯誤',
|
|
41
|
+
Machine_Number_Limit: '機台授權數量限制',
|
|
42
|
+
Token_Expired: '權證時效過期,請重新整理或重新提交表單',
|
|
43
|
+
Password_Need_Change: '密碼必須更改(忘記密碼時)',
|
|
44
|
+
Cookie_Error: 'Cookie驗證錯誤,您的登入時限可能過期,請重新登入',
|
|
45
|
+
WeChat_First_Login: '微信首次登入',
|
|
46
|
+
Token_Verify_Fail: 'Token驗證失敗',
|
|
47
|
+
Option_Right_Invalid: '選配功能權限不足',
|
|
48
|
+
No_Right_to_Access_CNC: '對控制器權限不足',
|
|
49
|
+
Mail_Verify_Fail: '信箱尚未驗證',
|
|
50
|
+
No_Right_to_Access_Equipment: '對其他設備權限不足',
|
|
51
|
+
Equipment_Name_Duplicate: '其他設備名稱重複',
|
|
52
|
+
Software_Serial_Number_Valid: '軟體序號非法,直聯網用之序號不得拿來使用SMB軟體序號相關 API',
|
|
53
|
+
Input_Type_Wrong: '參數型態不正確',
|
|
54
|
+
Input_Size_Exceeded: '輸入參數過多',
|
|
55
|
+
File_Not_Exist: '檔案不存在',
|
|
56
|
+
File_Using_Conflict: '檔案使用衝突',
|
|
57
|
+
File_Not_ExistInRequest: '檔案不存在於參數中',
|
|
58
|
+
File_Upload_Number_Limit: '檔案上傳數量問題',
|
|
59
|
+
Oss_Upload_Fail: '上傳到OSS失敗',
|
|
60
|
+
File_Size_Exceeded: '單一檔案大小超過上限',
|
|
61
|
+
Folder_Size_Exceeded: '單一資料夾檔案大小超過上限',
|
|
62
|
+
File_Extension_Invalid: '非法的副檔名',
|
|
63
|
+
File_Delete_Fail: '刪除檔案失敗',
|
|
64
|
+
File_Related_Error: '檔案相關錯誤',
|
|
65
|
+
File_InUse_Error: '檔案正在使用中',
|
|
66
|
+
Folder_Not_Exist: '資料夾不存在',
|
|
67
|
+
Folder_InUse_Error: '資料夾正在使用中',
|
|
68
|
+
Folder_Error: '通用資料夾錯誤訊息',
|
|
69
|
+
Partial_File_Fail: '部分檔案失敗',
|
|
70
|
+
OSS_Error: 'OSS通用錯誤訊息',
|
|
71
|
+
Connect_Broker_Failed: '連線Broker失敗',
|
|
72
|
+
Subscribe_Topic_Failed: '訂閱topic失敗',
|
|
73
|
+
Publish_Topic_Failed: '發布topic失敗',
|
|
74
|
+
Duplicate_Subscribe_Topic: '重複訂閱topic',
|
|
75
|
+
Not_Subscribe_Topic_Yet: '尚未訂閱此Topic',
|
|
76
|
+
Unsubscribe_Topic_Failed: '取消訂閱topic失敗',
|
|
77
|
+
DisConnect_Broker_Failed: '斷線Broker失敗',
|
|
78
|
+
CNC_MQTT_Error: '通用控制器MQTT相關錯誤',
|
|
79
|
+
CNC_Offline: '控制器離線',
|
|
80
|
+
CNC_Busy: '控制器忙碌中',
|
|
81
|
+
CNC_Busy_MQTT: '控制器因為MQTT指令忙碌中',
|
|
82
|
+
SMB_MQTT_Error: '通用 SMB MQTT 相關錯誤',
|
|
83
|
+
SMB_Offline: 'SMB離線',
|
|
84
|
+
SMB_Busy: 'SMB忙碌中',
|
|
85
|
+
SMB_Busy_MQTT: 'SMB 因為MQTT忙碌中',
|
|
86
|
+
Client_Already_Connect: '已經有相同資訊的Client連線中',
|
|
87
|
+
CNC_Error: '控制器通用錯誤碼',
|
|
88
|
+
CNC_Not_Regist: '控制器沒有註冊過',
|
|
89
|
+
CNC_Already_Decode: '該控制器對應的檢查碼已經解密成功了',
|
|
90
|
+
CNC_Already_Bind_SynFactory: '該控制器已經被註冊綁定給其他終端使用者',
|
|
91
|
+
CNC_Name_Duplicate: '終端使用者的控制器名稱重複',
|
|
92
|
+
CNC_Connection_Full: '終端使用者的連線數量已達上限',
|
|
93
|
+
CNC_Not_Binding: '控制器並沒有被任何終端綁定',
|
|
94
|
+
CNC_Disk_Not_Enough: '控制器磁碟未足夠',
|
|
95
|
+
CNC_Dispatch_Type: '控制器派送類型問題(例如:參數不對)',
|
|
96
|
+
CNC_Busy_FileRelated: '控制器忙碌處理檔案相關事宜',
|
|
97
|
+
Robot_CNC_Direct_Dispatch_Deny: '機器人控制器不允許接收派工',
|
|
98
|
+
CNC_Busy_LogBackup: '控制器忙碌處理Log備份相關事宜',
|
|
99
|
+
CNC_Disconnected: '控制器離線中,無法交握',
|
|
100
|
+
CNC_Invalid_BindingType: '控制器綁定類型不適用,如部分功能只有直聯網機台能使用',
|
|
101
|
+
CNC_Invalid_Brand: '控制器廠牌不適用,如部分功能只有新代廠牌能使用',
|
|
102
|
+
CNC_Busy_ReportWorkRelated: '控制器忙碌無法修改報工方式',
|
|
103
|
+
CNC_Check_Connection: '控制器不合法或連線問題',
|
|
104
|
+
Decode_Error: '序號或檢查代碼輸入錯誤',
|
|
105
|
+
Decode_Illegal: '此檢查代碼或解密行為異常,請聯繫新代進一步確認',
|
|
106
|
+
Subaccount_Auth_Illegal: '您沒有權限,請洽您的機械廠管理者',
|
|
107
|
+
VerifyCode_Illegal: '檢查代碼異常',
|
|
108
|
+
SN_Not_Found: '資料庫查無此筆序號',
|
|
109
|
+
Decode_DataBase_Action_Error: '解密資料庫操作錯誤,請聯繫新代進一步確認',
|
|
110
|
+
Remote_Decode_Error: '遠距解密失敗',
|
|
111
|
+
CNCType_Model_Not_Found: '查無控制器機型或控制器類別',
|
|
112
|
+
SubAccount_Multi_Wechat_Bind: '子帳號存在多組微信綁定',
|
|
113
|
+
MotherAccount_Multi_Wechat_Bind: '母帳號存在多組微信綁定',
|
|
114
|
+
Production_Plan_Error: '生產計劃管理通用錯誤碼',
|
|
115
|
+
Production_Order_Duplicate: '工單重複',
|
|
116
|
+
Order_Duplicate: '訂單重複或訂單資料不一致',
|
|
117
|
+
InValid_WorkOrderID: '工令ID 不合法 (不屬於該使用者或者不存在)',
|
|
118
|
+
InValid_CNC_ID: '不合法的控制器ID (可能不屬於當前使用者 或者根本不存在)',
|
|
119
|
+
InValid_ExceptedStartTime_Parameter: '工單起始時間有誤',
|
|
120
|
+
Out_Of_Number: '取號碼系統發現 規格內可用號碼用鑿',
|
|
121
|
+
Production_Order_Not_Same_Order: '工單已存在,對應到不同訂單號錯誤',
|
|
122
|
+
Work_Order_Inconsistency: '子工單已存在,機台ID、工序相同 但其他欄位(如需求工件數)不同',
|
|
123
|
+
PLM_Data_Inconsistent: '與工藝包資料不一致',
|
|
124
|
+
Work_Order_Comes_From_OT: '子工單來源是OT的錯誤碼',
|
|
125
|
+
InValid_ProductionOrderID: '工單ID不合法(不屬於該使用者或不存在)',
|
|
126
|
+
PLM_CraftPath_Info_Inconsistent: '與工藝包的工藝路徑資料不符',
|
|
127
|
+
PLM_ProdctionProcess_Info_Inconsistent: '與工藝包的工序資料不符',
|
|
128
|
+
PLM_Machine_Info_Inconsistent: '與工藝包的機台資料不符',
|
|
129
|
+
InValid_Shift_ID: '不合法的班別ID',
|
|
130
|
+
InValid_Emp_ID: '不合法的職員ID',
|
|
131
|
+
Part_Serial_Number_In_Use: '序號已經被使用',
|
|
132
|
+
Part_Serial_Number_Process_Lock: '已有人正在取序號',
|
|
133
|
+
Serial_Number_Count_Setting_Conflict: '取號數量和設定不符',
|
|
134
|
+
Insufficient_Number: '剩餘號碼數量不足',
|
|
135
|
+
Work_Order_Status_Error: '子工單狀態有誤',
|
|
136
|
+
Part_Serial_Number_Length_Limit: '序號長度過長',
|
|
137
|
+
Duplicate_SN_List: '清單號碼內序號重複',
|
|
138
|
+
Work_Order_Duplicate_Start: '子工單在一分鐘內重複開工',
|
|
139
|
+
Work_Order_Start_Fail: '子工單開工失敗',
|
|
140
|
+
Work_Order_Suspend_Fail: '子工單暫停加工失敗',
|
|
141
|
+
Work_Order_Close_Fail_But_Suspend_Success: '子工單關閉失敗,但是暫停加工成功',
|
|
142
|
+
Work_Order_Part_Count_Not_Fulfill: '子工單需求數尚未完成,無法完工',
|
|
143
|
+
Work_Order_Start_Switch_Fail: '子工單開工時換單失敗',
|
|
144
|
+
Duplicate_Production_Order_List: '清單內工單重複',
|
|
145
|
+
Work_order_Can_not_Direct_Start_work: '子工單無法直接開工',
|
|
146
|
+
Unbind_Part_Serial_Number_When_Start_work: '加工中的工單不能執行解綁',
|
|
147
|
+
InValid_Part_Serial_Number: '不合法的序號',
|
|
148
|
+
Machine_Send_File_When_Start_Work: '機台正在開工傳檔中,無法執行開工',
|
|
149
|
+
Serial_Number_Bind_Different_Part_Number: '序號綁定到不同料號',
|
|
150
|
+
Need_Part_Serial_Number_Export_Time: '已有出站時間的序號,更新後需要有序號的出站時間',
|
|
151
|
+
Shift_Error: '班別錯誤',
|
|
152
|
+
Employee_Error: '人員錯誤',
|
|
153
|
+
Shift_Pattern_Not_Exist: '班制模式不存在',
|
|
154
|
+
Same_Pattern_System_Exist: '已存在相同班制模式的實際班制',
|
|
155
|
+
Pattern_Shift_Number_Conflict: '欲新增的班別數量與班制模式不符',
|
|
156
|
+
Shift_Time_Overlap: '班別時間重疊',
|
|
157
|
+
Shift_Time_Sum_Exceed: '班制時間區間超過上限(一天)',
|
|
158
|
+
Shift_Start_End_Time_Conflict: '班別開始時間大於等於結束時間',
|
|
159
|
+
Shift_System_Not_Exist: '實際班制不存在',
|
|
160
|
+
Shift_ID_Shift_System_Conflict: '該班別不屬於此實際班制',
|
|
161
|
+
Duplicate_Dept: '部門名稱重複',
|
|
162
|
+
Success: '成功',
|
|
163
|
+
Work_Report_Review_Error: '審核失敗',
|
|
164
|
+
Wrong_Work_Quantity: '報工數量數量錯誤,數量被卡控',
|
|
165
|
+
Field_Count_Max: '自定義字段數量過多',
|
|
166
|
+
Field_Name_Repeat: '自定義字段名稱重復',
|
|
167
|
+
Break_Time_Out_Of_Range: '有休息時間超出該輪班區間',
|
|
168
|
+
FileDispatch_Error: '檔案派送通用錯誤碼',
|
|
169
|
+
TakeEvent_ID_Error: '取事件代碼錯誤',
|
|
170
|
+
Service_Original_Connect_Error: '串接原生SynFactory API錯誤',
|
|
171
|
+
IsProxyCheck_Error: '確認是否為代理時發生錯誤',
|
|
172
|
+
IsCNCIdentityValid_Check_Error: '確認CNC認證資訊是否正確時發生錯誤',
|
|
173
|
+
CanSNAccessEquipment_Check_Error: '確認軟體序號是否可使用設備時發生錯誤',
|
|
174
|
+
SNCanNotAccessEquipment: '該序號不能使用該設備',
|
|
175
|
+
GetTriggerHistory_Error: '呼叫取派送記錄API時發生錯誤',
|
|
176
|
+
Duplicate_Setting_Data: '預設路徑設定重複',
|
|
177
|
+
Setting_Number_Limit_Exceed: '預設路徑設定 數量 達到設定上限',
|
|
178
|
+
None_Data_Delete: '沒有資料被刪除',
|
|
179
|
+
Material_Error: '物料通用錯誤碼',
|
|
180
|
+
MaterialPartNumber_Invalid: '物料編號不合法',
|
|
181
|
+
MaterialPartNumber_Duplicated: '物料編號重複',
|
|
182
|
+
MaterialType_Duplicated: '物料類型重複',
|
|
183
|
+
MaterialPartNumber_Not_Found: '物料編號不存在',
|
|
184
|
+
MaterialBOM_Exist: '物料BOM表已存在',
|
|
185
|
+
MaterialBOM_Child_Relation_Invalid: '物料BOM表子項非法',
|
|
186
|
+
MaterialBOM_RelationShip_Invalid: '不能存在其他BOM表有父子料相反的關係',
|
|
187
|
+
MaterialBOM_Self_Contained: '父項物料與子項物料不能相同',
|
|
188
|
+
MaterialBOM_Not_Exist: '物料BOM表不存在',
|
|
189
|
+
MaterialBOM_Bulk_Insert_Exceed: '超出批量匯入數量',
|
|
190
|
+
MaterialBOM_Version_Not_Exist: '料號BOM版本不存在',
|
|
191
|
+
Material_Sync_To_PDM_Fail: '料號同步到PDM失敗',
|
|
192
|
+
Material_Do_Not_Have_BatchNumber_Setting: '料號沒有批次號設定',
|
|
193
|
+
MaterialPartNumber_Status_Disable: '料號狀態停用',
|
|
194
|
+
Response_Fomat_Error: '格式不正確',
|
|
195
|
+
Equipmnet_Craft_Bind_Error: '設備工藝綁定錯誤',
|
|
196
|
+
Template_Format_Error: '刀具模板格式錯誤',
|
|
197
|
+
Craft_NO_ToolLIfeTemplate: '該設備對應工序無刀具壽命資料',
|
|
198
|
+
Tool_Axis_Error: '系統(軸群)錯誤',
|
|
199
|
+
Specification_Update_Error: '規範更新錯誤',
|
|
200
|
+
Equip_Monitor_Setting_Name_Existed: '監控設定名稱已存在',
|
|
201
|
+
Equip_In_Monitor_Setting_Has_Existed_In_Same_Indicator_And_Immediate_Noti: '設備在該監控指標下已設定過即時通知',
|
|
202
|
+
Equip_ID_Not_Exist: '設備ID不存在',
|
|
203
|
+
Equip_Monitor_Setting_ID_Not_Existed: '監控設定ID不存在',
|
|
204
|
+
CVUS_Error: '通用客製變數系統錯誤',
|
|
205
|
+
CVUS_Setting_Not_Exist: '客製變數設定不存在',
|
|
206
|
+
CVUS_Parameter_Validation_Fail: 'CVUS通用參數驗證失敗',
|
|
207
|
+
CVUS_SETTING_COUNT_LIMIT: '達到CVUS 設定數量上限',
|
|
208
|
+
CVUS_VARTYPE_LENGTH_LIMIT: 'vartype 參數超過長度限制',
|
|
209
|
+
CVUS_Map_Diff_Set_Result: '不同設定結果',
|
|
210
|
+
CVUS_Map_Error_Busy: '設備忙碌,無法設定',
|
|
211
|
+
CVUS_Map_When_Get_Setting: '當取得設定時發生錯誤',
|
|
212
|
+
CVUS_Map_Unsup_Var: '不支援的變數',
|
|
213
|
+
CVUS_Map_Var_Addr: '不支援的變數指向',
|
|
214
|
+
CVUS_Map_Unsup_Var_Tp: '不支援的變數類型',
|
|
215
|
+
CVUS_Map_Unsup_Freq: '不支援的上傳頻率',
|
|
216
|
+
CVUS_EventID_Not_Exist: '該派送事件不存在',
|
|
217
|
+
CVM_Parameter_Validation_Fail: '客製變數修改參數驗證失敗',
|
|
218
|
+
CVM_SETTING_COUNT_LIMIT: '達到CVM設定數量上限',
|
|
219
|
+
CVM_VARTYPE_LENGTH_LIMIT: 'CVM vartype 參數超過長度限制',
|
|
220
|
+
CVM_Take_Event_ID: 'CVM 服務取得派送ID錯誤',
|
|
221
|
+
CVM_Different_Result: 'CVM 有不同修改結果',
|
|
222
|
+
CVM_Busy_Var_Modifying: 'CVM執行失敗,忙碌中,正在變更變數數值',
|
|
223
|
+
CVM_Error_DataType_Trans_Error: 'CVM執行失敗,資料型別轉型失敗',
|
|
224
|
+
CVM_Error_Unsupport_VarType: 'CVM執行失敗,不支援的變數類別',
|
|
225
|
+
CVM_Error_Wrong_Var_Address: 'CVM執行失敗,變數位址不合法',
|
|
226
|
+
CVM_Error_Unsupport_DataType: 'CVM執行失敗,不支援的型別代碼',
|
|
227
|
+
CVUS_Error_GroupSub_NotExist: '該群組相關資料不存在,有可能是設備ID不存在,有可能是該設備名稱或者ID不存在',
|
|
228
|
+
CVUS_Equip_Not_Support: '設備不支援群組訂閱功能',
|
|
229
|
+
CVUS_Error_DataType_Inconsistent: '資料型態不一致',
|
|
230
|
+
CVUS_Error_Unsupport_DataType: '不支援的資料型態',
|
|
231
|
+
CVUS_PLC_Setting_Count_Limit: 'PLC設備達數量設定上限',
|
|
232
|
+
Data_Already_Exists: '數據已存在',
|
|
233
|
+
Data_Count_Few: '資料筆數過少',
|
|
234
|
+
APP_Service_Common: 'APP服務通用錯誤',
|
|
235
|
+
APP_Not_Exist: 'APP不存在',
|
|
236
|
+
APP_Duplicate_MQ_Connection: 'APP已經連線到MQTT',
|
|
237
|
+
Part_Serial_Number_Error: '料件序號通用錯誤',
|
|
238
|
+
Part_Serial_Number_Already_Bind_Part_Number: '料件序號已經綁在料號上了',
|
|
239
|
+
Part_Serial_Number_Not_Found: '找不到該料件序號',
|
|
240
|
+
Part_Serial_Number_Do_Not_Bind_Part_Number: '料件序號沒有綁定的料號',
|
|
241
|
+
Operation_Uuid_Already_Bind_Other_Part_Number: '該操作記錄已經綁定在其他料號上了',
|
|
242
|
+
Custom_Parameter_Already_Used_By_Part_Serial_Number_Setting: '序號自定義參數已經被序號設定所使用',
|
|
243
|
+
Serial_Number_Rule_Setting_Name_Duplicate: '序號規則設定的名稱重複',
|
|
244
|
+
Serial_Number_Interval_Setting_Error: '流水號區間設定錯誤',
|
|
245
|
+
Machine_Type_Exit_Error: '機台類別已存在',
|
|
246
|
+
Cnc_Already_Bound: '控制器已绑定',
|
|
247
|
+
Batch_Number_Error: '批次號通用錯誤',
|
|
248
|
+
Batch_Number_Setting_Name_Duplicate: '批次號設定名稱重複',
|
|
249
|
+
Batch_Number_Setting_ID_Not_Exist: '批次號設定ID不存在',
|
|
250
|
+
Batch_Number_Setting_Not_Enable: '批次號設定未啟用',
|
|
251
|
+
Batch_Number_Insufficient: '批次號數量不足',
|
|
252
|
+
Batch_Number_Already_Bind_Other_Production_Order: '批次號已經綁定在其他工單上',
|
|
253
|
+
Illegal_Batch_Number: '不合法的批次號',
|
|
254
|
+
Batch_Number_Setting_Exceed_Max_Digit: '批次號設定超過最大位數',
|
|
255
|
+
Message_Push_Error: '推播服務通用錯誤',
|
|
256
|
+
Message_Push_Server_Not_Initialized: '推播服務尚未與伺服器做初始化連線設定',
|
|
257
|
+
Message_Push_Mobile_Message_Excced: '推播服務手機提醒訊息達到上限',
|
|
258
|
+
Message_Push_Server_Connect_Fail: '推播服務與推播伺服器連線失敗',
|
|
259
|
+
Message_Push_Emp_Not_Bind_APP: '推播服務要發送訊息的人員尚未綁定APP',
|
|
260
|
+
Message_Push_Message_Setting_Not_Initialized: '推播服務手機提醒訊息設定尚未初始化開通',
|
|
261
|
+
Tag_Over_Count: '超出工單可綁定標簽數量',
|
|
262
|
+
Data_Not_Exists: '數據不存在',
|
|
263
|
+
Encoding_Exceeds_Upper_Limit: '編碼會超過系統設定上限,請至工廠建模中的編號規則設定',
|
|
264
|
+
No_Beat_Point: '請先至工廠建模_產品工藝設定該路徑節拍點',
|
|
265
|
+
Last_Process: '最後一道工序,不能删除',
|
|
266
|
+
MaterialUnit_Not_Exist: '單位不存在',
|
|
267
|
+
Production_Order_Not_In_NotDispatch: '非未派工的工單不可刪除',
|
|
268
|
+
Production_Order_Has_Source_Document_Association: '生產工單存在源單關聯',
|
|
269
|
+
Production_Order_Tag_Number_Released: '生產工單已發行標簽',
|
|
270
|
+
Out_Storage_Not_Exit: '出庫倉庫不存在',
|
|
271
|
+
Out_Stock_Space_Not_Exit: '出庫倉位不存在',
|
|
272
|
+
In_Storage_Not_Exit: '入库仓库不存在',
|
|
273
|
+
In_Stock_Space_Not_Exit: '入库仓位不存在',
|
|
274
|
+
Def_In_Storage_Not_Exit: '不良入库仓库不存在',
|
|
275
|
+
Def_In_Stock_Space_Not_Exit: '不良入庫倉庫不存在',
|
|
276
|
+
Purchase_In_Storage_Not_Exit: '采购入库仓库不存在',
|
|
277
|
+
Purchase_In_Stock_Space_Not_Exit: '採購入庫倉位不存在',
|
|
278
|
+
},
|
|
279
|
+
'zh-cn': {
|
|
280
|
+
System_Error: '系统错误',
|
|
281
|
+
Service_Unavailable: '系统服务暂停',
|
|
282
|
+
Remote_Service_Error: '远端连线错误',
|
|
283
|
+
ProcessOrder_Duplicate: '工序子工单重复',
|
|
284
|
+
IP_Limit: 'IP限制不能请求该资源',
|
|
285
|
+
Illegal_Request: '非法请求',
|
|
286
|
+
Token_Missing: '缺少source (token) 参数',
|
|
287
|
+
Unsupport_Mediatype: '不支援的MediaType',
|
|
288
|
+
Param_Error: '参数错误,您回传的资料内容或代码数量不符规范',
|
|
289
|
+
System_Busy: '系统过载',
|
|
290
|
+
Job_Expired: '执行超时',
|
|
291
|
+
RPC_Error: 'RPC错误',
|
|
292
|
+
Partial_Data_Error: '部分资料错误',
|
|
293
|
+
Time_Out: '连线逾时',
|
|
294
|
+
Mail_Failed: '寄信功能异常',
|
|
295
|
+
Decode_Failed: '解密功能异常',
|
|
296
|
+
WeChat_GetOpenID_Error: '微信取OpenID功能异常',
|
|
297
|
+
SDK_Unsupport_Function: 'SDK不支援此功能',
|
|
298
|
+
API_Internet_Error: '连线其他API失败',
|
|
299
|
+
SMS_Failed: '简讯发送异常,请检查国码及手机号码是否输入正确',
|
|
300
|
+
Insert_Problem_Type_Wrong: '插入错误之参数型态不正确',
|
|
301
|
+
Insert_Problem_KeyColumn_Exist: '已存在相同主键栏位',
|
|
302
|
+
Update_Problem_Type_Wrong: '更新错误之参数型态不正确',
|
|
303
|
+
Update_Problem_KeyColumn_Miss: '缺少主键',
|
|
304
|
+
Select_Problem_No_Data: '查无资料',
|
|
305
|
+
Update_Error: '更新错误',
|
|
306
|
+
Insert_Error: '插入失败',
|
|
307
|
+
Upsert_Error: '更新插入失败',
|
|
308
|
+
Delete_Error: '删除失败',
|
|
309
|
+
DBRelated_Error: '资料库相关系统错误',
|
|
310
|
+
Data_Duplicate: '资料重复',
|
|
311
|
+
Password_Wrong: '密码错误',
|
|
312
|
+
No_Right_to_Access: '权限不足',
|
|
313
|
+
UserID_UnExist: '帐号不存在',
|
|
314
|
+
Account_Quit: '帐号停用',
|
|
315
|
+
Verify_Fail: '验证错误',
|
|
316
|
+
ID_SameAs_Password: '帐号等同于密码',
|
|
317
|
+
Auth_Error: '帐号认证错误',
|
|
318
|
+
Machine_Number_Limit: '机台授权数量限制',
|
|
319
|
+
Token_Expired: '权证时效过期,请重新整理或重新提交表单',
|
|
320
|
+
Password_Need_Change: '密码必须更改(忘记密码时)',
|
|
321
|
+
Cookie_Error: 'Cookie验证错误,您的登入时限可能过期,请重新登入',
|
|
322
|
+
WeChat_First_Login: '微信首次登入',
|
|
323
|
+
Token_Verify_Fail: 'Token验证失败',
|
|
324
|
+
Option_Right_Invalid: '选配功能权限不足',
|
|
325
|
+
No_Right_to_Access_CNC: '对控制器权限不足',
|
|
326
|
+
Mail_Verify_Fail: '信箱尚未验证',
|
|
327
|
+
No_Right_to_Access_Equipment: '对其他设备权限不足',
|
|
328
|
+
Equipment_Name_Duplicate: '其他设备名称重复',
|
|
329
|
+
Software_Serial_Number_Valid: '软体序号非法,直联网用之序号不得拿来使用SMB软体序号相关 API',
|
|
330
|
+
Input_Type_Wrong: '参数型态不正确',
|
|
331
|
+
Input_Size_Exceeded: '输入参数过多',
|
|
332
|
+
File_Not_Exist: '档案不存在',
|
|
333
|
+
File_Using_Conflict: '档案使用冲突',
|
|
334
|
+
File_Not_ExistInRequest: '档案不存在于参数中',
|
|
335
|
+
File_Upload_Number_Limit: '档案上传数量问题',
|
|
336
|
+
Oss_Upload_Fail: '上传到OSS失败',
|
|
337
|
+
File_Size_Exceeded: '单一档案大小超过上限',
|
|
338
|
+
Folder_Size_Exceeded: '单一资料夹档案大小超过上限',
|
|
339
|
+
File_Extension_Invalid: '非法的副档名',
|
|
340
|
+
File_Delete_Fail: '删除档案失败',
|
|
341
|
+
File_Related_Error: '档案相关错误',
|
|
342
|
+
File_InUse_Error: '档案正在使用中',
|
|
343
|
+
Folder_Not_Exist: '资料夹不存在',
|
|
344
|
+
Folder_InUse_Error: '资料夹正在使用中',
|
|
345
|
+
Folder_Error: '通用资料夹错误讯息',
|
|
346
|
+
Partial_File_Fail: '部分档案失败',
|
|
347
|
+
OSS_Error: 'OSS通用错误讯息',
|
|
348
|
+
Connect_Broker_Failed: '连线Broker失败',
|
|
349
|
+
Subscribe_Topic_Failed: '订阅topic失败',
|
|
350
|
+
Publish_Topic_Failed: '发布topic失败',
|
|
351
|
+
Duplicate_Subscribe_Topic: '重复订阅topic',
|
|
352
|
+
Not_Subscribe_Topic_Yet: '尚未订阅此Topic',
|
|
353
|
+
Unsubscribe_Topic_Failed: '取消订阅topic失败',
|
|
354
|
+
DisConnect_Broker_Failed: '断线Broker失败',
|
|
355
|
+
CNC_MQTT_Error: '通用控制器MQTT相关错误',
|
|
356
|
+
CNC_Offline: '控制器离线',
|
|
357
|
+
CNC_Busy: '控制器忙碌中',
|
|
358
|
+
CNC_Busy_MQTT: '控制器因为MQTT指令忙碌中',
|
|
359
|
+
SMB_MQTT_Error: '通用 SMB MQTT 相关错误',
|
|
360
|
+
SMB_Offline: 'SMB离线',
|
|
361
|
+
SMB_Busy: 'SMB忙碌中',
|
|
362
|
+
SMB_Busy_MQTT: 'SMB 因为MQTT忙碌中',
|
|
363
|
+
Client_Already_Connect: '已经有相同资讯的Client连线中',
|
|
364
|
+
CNC_Error: '控制器通用错误码',
|
|
365
|
+
CNC_Not_Regist: '控制器没有注册过',
|
|
366
|
+
CNC_Already_Decode: '该控制器对应的检查码已经解密成功了',
|
|
367
|
+
CNC_Already_Bind_SynFactory: '该控制器已经被注册绑定给其他终端使用者',
|
|
368
|
+
CNC_Name_Duplicate: '终端使用者的控制器名称重复',
|
|
369
|
+
CNC_Connection_Full: '终端使用者的连线数量已达上限',
|
|
370
|
+
CNC_Not_Binding: '控制器并没有被任何终端绑定',
|
|
371
|
+
CNC_Disk_Not_Enough: '控制器磁碟未足够',
|
|
372
|
+
CNC_Dispatch_Type: '控制器派送类型问题(例如:参数不对)',
|
|
373
|
+
CNC_Busy_FileRelated: '控制器忙碌处理档案相关事宜',
|
|
374
|
+
Robot_CNC_Direct_Dispatch_Deny: '机器人控制器不允许接收派工',
|
|
375
|
+
CNC_Busy_LogBackup: '控制器忙碌处理Log备份相关事宜',
|
|
376
|
+
CNC_Disconnected: '控制器离线中,无法交握',
|
|
377
|
+
CNC_Invalid_BindingType: '控制器绑定类型不适用,如部分功能只有直联网机台能使用',
|
|
378
|
+
CNC_Invalid_Brand: '控制器厂牌不适用,如部分功能只有新代厂牌能使用',
|
|
379
|
+
CNC_Busy_ReportWorkRelated: '控制器忙碌无法修改报工方式',
|
|
380
|
+
CNC_Check_Connection: '控制器不合法或连线问题',
|
|
381
|
+
Decode_Error: '序号或检查代码输入错误',
|
|
382
|
+
Decode_Illegal: '此检查代码或解密行为异常,请联系新代进一步确认',
|
|
383
|
+
Subaccount_Auth_Illegal: '您没有权限,请洽您的机械厂管理者',
|
|
384
|
+
VerifyCode_Illegal: '检查代码异常',
|
|
385
|
+
SN_Not_Found: '资料库查无此笔序号',
|
|
386
|
+
Decode_DataBase_Action_Error: '解密资料库操作错误,请联系新代进一步确认',
|
|
387
|
+
Remote_Decode_Error: '远距解密失败',
|
|
388
|
+
CNCType_Model_Not_Found: '查无控制器机型或控制器类别',
|
|
389
|
+
Wechat_Error: '微信错误通用错误码',
|
|
390
|
+
SubAccount_Multi_Wechat_Bind: '子帐号存在多组微信绑定',
|
|
391
|
+
MotherAccount_Multi_Wechat_Bind: '母帐号存在多组为信绑定',
|
|
392
|
+
Production_Plan_Error: '生产计划管理通用错误码',
|
|
393
|
+
Production_Order_Duplicate: '工单重复',
|
|
394
|
+
Order_Duplicate: '订单重复或订单资料不一致',
|
|
395
|
+
InValid_WorkOrderID: '工令ID 不合法 (不属于该使用者或者不存在)',
|
|
396
|
+
InValid_CNC_ID: '不合法的控制器ID (可能不属于当前使用者 或者根本不存在)',
|
|
397
|
+
InValid_ExceptedStartTime_Parameter: '工单起始时间有误',
|
|
398
|
+
Out_Of_Number: '取号码系统发现 规格内可用号码用凿',
|
|
399
|
+
Production_Order_Not_Same_Order: '工单已存在,对应到不同订单号错误',
|
|
400
|
+
Work_Order_Inconsistency: '子工单已存在,机台ID、工序相同 但其他栏位(如需求工件数)不同',
|
|
401
|
+
PLM_Data_Inconsistent: '与工艺包资料不一致',
|
|
402
|
+
Work_Order_Comes_From_OT: '子工单来源是OT的错误码',
|
|
403
|
+
InValid_ProductionOrderID: '工单ID不合法(不属于该使用者或不存在)',
|
|
404
|
+
PLM_CraftPath_Info_Inconsistent: '与工艺包的工艺路径资料不符',
|
|
405
|
+
PLM_ProdctionProcess_Info_Inconsistent: '与工艺包的工序资料不符',
|
|
406
|
+
PLM_Machine_Info_Inconsistent: '与工艺包的机台资料不符',
|
|
407
|
+
InValid_Shift_ID: '不合法的班别ID',
|
|
408
|
+
InValid_Emp_ID: '不合法的职员ID',
|
|
409
|
+
Part_Serial_Number_In_Use: '序号已经被使用',
|
|
410
|
+
Part_Serial_Number_Process_Lock: '已有人正在取序号',
|
|
411
|
+
Serial_Number_Count_Setting_Conflict: '取号数量和设定不符',
|
|
412
|
+
Insufficient_Number: '剩余号码数量不足',
|
|
413
|
+
Work_Order_Status_Error: '子工单状态有误',
|
|
414
|
+
Part_Serial_Number_Length_Limit: '序号长度过长',
|
|
415
|
+
Duplicate_SN_List: '清单号码内序号重复',
|
|
416
|
+
Work_Order_Duplicate_Start: '子工单在一分钟内重复开工',
|
|
417
|
+
Work_Order_Start_Fail: '子工单开工失败',
|
|
418
|
+
Work_Order_Suspend_Fail: '子工单暂停加工失败',
|
|
419
|
+
Work_Order_Close_Fail_But_Suspend_Success: '子工单关闭失败,但是暂停加工成功',
|
|
420
|
+
Work_Order_Part_Count_Not_Fulfill: '子工单需求数尚未完成,无法完工',
|
|
421
|
+
Work_Order_Start_Switch_Fail: '子工单开工时换单失败',
|
|
422
|
+
Duplicate_Production_Order_List: '清单内工单重复',
|
|
423
|
+
Work_order_Can_not_Direct_Start_work: '子工单无法直接开工',
|
|
424
|
+
Unbind_Part_Serial_Number_When_Start_work: '加工中的工单不能执行解绑',
|
|
425
|
+
InValid_Part_Serial_Number: '不合法的序号',
|
|
426
|
+
Machine_Send_File_When_Start_Work: '机台正在开工传档中,无法执行开工',
|
|
427
|
+
Serial_Number_Bind_Different_Part_Number: '序号绑定到不同料号',
|
|
428
|
+
Need_Part_Serial_Number_Export_Time: '已有出站时间的序号,更新后需要有序号的出站时间',
|
|
429
|
+
Shift_Error: '班别错误',
|
|
430
|
+
Employee_Error: '人员错误',
|
|
431
|
+
Shift_Pattern_Not_Exist: '班制模式不存在',
|
|
432
|
+
Same_Pattern_System_Exist: '已存在相同班制模式的实际班制',
|
|
433
|
+
Pattern_Shift_Number_Conflict: '欲新增的班别数量与班制模式不符',
|
|
434
|
+
Shift_Time_Overlap: '班别时间重叠',
|
|
435
|
+
Shift_Time_Sum_Exceed: '班制时间区间超过上限(一天)',
|
|
436
|
+
Shift_Start_End_Time_Conflict: '班别开始时间大于等于结束时间',
|
|
437
|
+
Shift_System_Not_Exist: '实际班制不存在',
|
|
438
|
+
Shift_ID_Shift_System_Conflict: '该班别不属于此实际班制',
|
|
439
|
+
Duplicate_Dept: '部门名称重复',
|
|
440
|
+
Success: '成功',
|
|
441
|
+
Work_Report_Review_Error: '审核失败',
|
|
442
|
+
Wrong_Work_Quantity: '报工数量数量错误,数量被卡控',
|
|
443
|
+
Field_Count_Max: '自定义字段数量过多',
|
|
444
|
+
Field_Name_Repeat: '自定义字段名称重复',
|
|
445
|
+
Break_Time_Out_Of_Range: '有休息时间超出该轮班区间',
|
|
446
|
+
FileDispatch_Error: '档案派送通用错误码',
|
|
447
|
+
TakeEvent_ID_Error: '取事件代码错误',
|
|
448
|
+
Service_Original_Connect_Error: '串接原生SynFactory API错误',
|
|
449
|
+
IsProxyCheck_Error: '确认是否为代理时发生错误',
|
|
450
|
+
IsCNCIdentityValid_Check_Error: '确认CNC认证资讯是否正确时发生错误',
|
|
451
|
+
CanSNAccessEquipment_Check_Error: '确认软体序号是否可使用设备时发生错误',
|
|
452
|
+
SNCanNotAccessEquipment: '该序号不能使用该设备',
|
|
453
|
+
GetTriggerHistory_Error: '呼叫取派送记录API时发生错误',
|
|
454
|
+
Duplicate_Setting_Data: '预设路径设定重复',
|
|
455
|
+
Setting_Number_Limit_Exceed: '预设路径设定 数量 达到设定上限',
|
|
456
|
+
None_Data_Delete: '没有资料被删除',
|
|
457
|
+
Material_Error: '物料通用错误码',
|
|
458
|
+
MaterialPartNumber_Invalid: '物料编号不合法',
|
|
459
|
+
MaterialPartNumber_Duplicated: '物料编号重复',
|
|
460
|
+
MaterialType_Duplicated: '物料类型重复',
|
|
461
|
+
MaterialPartNumber_Not_Found: '物料编号不存在',
|
|
462
|
+
MaterialBOM_Exist: '物料BOM表已存在',
|
|
463
|
+
MaterialBOM_Child_Relation_Invalid: '物料BOM表子项非法',
|
|
464
|
+
MaterialBOM_RelationShip_Invalid: '不能存在其他BOM表有父子料相反的关系',
|
|
465
|
+
MaterialBOM_Self_Contained: '父项物料与子项物料不能相同',
|
|
466
|
+
MaterialBOM_Not_Exist: '物料BOM表不存在',
|
|
467
|
+
MaterialBOM_Bulk_Insert_Exceed: '超出批量汇入数量',
|
|
468
|
+
MaterialBOM_Version_Not_Exist: '料号BOM版本不存在',
|
|
469
|
+
Material_Sync_To_PDM_Fail: '料号同步到PDM失败',
|
|
470
|
+
Material_Do_Not_Have_BatchNumber_Setting: '料号没有批次号设定',
|
|
471
|
+
MaterialPartNumber_Status_Disable: '料号状态停用',
|
|
472
|
+
Response_Fomat_Error: '格式不正确',
|
|
473
|
+
Equipmnet_Craft_Bind_Error: '设备工艺绑定错误',
|
|
474
|
+
Template_Format_Error: '刀具模板格式错误',
|
|
475
|
+
Craft_NO_ToolLIfeTemplate: '该设备对应工序无刀具寿命资料',
|
|
476
|
+
Tool_Axis_Error: '系统(轴群)错误',
|
|
477
|
+
Specification_Update_Error: '规范更新错误',
|
|
478
|
+
Equip_Monitor_Setting_Name_Existed: '监控设定名称已存在',
|
|
479
|
+
Equip_In_Monitor_Setting_Has_Existed_In_Same_Indicator_And_Immediate_Noti: '设备在该监控指标下已设定过即时通知',
|
|
480
|
+
Equip_ID_Not_Exist: '设备ID不存在',
|
|
481
|
+
Equip_Monitor_Setting_ID_Not_Existed: '监控设定ID不存在',
|
|
482
|
+
CVUS_Error: '通用客制变数系统错误',
|
|
483
|
+
CVUS_Setting_Not_Exist: '客制变数设定不存在',
|
|
484
|
+
CVUS_Parameter_Validation_Fail: 'CVUS通用参数验证失败',
|
|
485
|
+
CVUS_SETTING_COUNT_LIMIT: '达到CVUS 设定数量上限',
|
|
486
|
+
CVUS_VARTYPE_LENGTH_LIMIT: 'vartype 参数超过长度限制',
|
|
487
|
+
CVUS_Map_Diff_Set_Result: '不同设定结果',
|
|
488
|
+
CVUS_Map_Error_Busy: '设备忙碌,无法设定',
|
|
489
|
+
CVUS_Map_When_Get_Setting: '当取得设定时发生错误',
|
|
490
|
+
CVUS_Map_Unsup_Var: '不支援的变数',
|
|
491
|
+
CVUS_Map_Var_Addr: '不支援的变数指向',
|
|
492
|
+
CVUS_Map_Unsup_Var_Tp: '不支援的变数类型',
|
|
493
|
+
CVUS_Map_Unsup_Freq: '不支援的上传频率',
|
|
494
|
+
CVUS_EventID_Not_Exist: '该派送事件不存在',
|
|
495
|
+
CVM_Parameter_Validation_Fail: '客制变数修改参数验证失败',
|
|
496
|
+
CVM_SETTING_COUNT_LIMIT: '达到CVM设定数量上限',
|
|
497
|
+
CVM_VARTYPE_LENGTH_LIMIT: 'CVM vartype 参数超过长度限制',
|
|
498
|
+
CVM_Take_Event_ID: 'CVM 服务取得派送ID错误',
|
|
499
|
+
CVM_Different_Result: 'CVM 有不同修改结果',
|
|
500
|
+
CVM_Busy_Var_Modifying: 'CVM执行失败,忙碌中,正在变更变数数值',
|
|
501
|
+
CVM_Error_DataType_Trans_Error: 'CVM执行失败,资料型别转型失败',
|
|
502
|
+
CVM_Error_Unsupport_VarType: 'CVM执行失败,不支援的变数类别',
|
|
503
|
+
CVM_Error_Wrong_Var_Address: 'CVM执行失败,变数位址不合法',
|
|
504
|
+
CVM_Error_Unsupport_DataType: 'CVM执行失败,不支援的型别代码',
|
|
505
|
+
CVUS_Error_GroupSub_NotExist: '该群组相关资料不存在,有可能是设备ID不存在,有可能是该设备名称或者ID不存在',
|
|
506
|
+
CVUS_Equip_Not_Support: '设备不支援群组订阅功能',
|
|
507
|
+
CVUS_Error_DataType_Inconsistent: '资料型态不一致',
|
|
508
|
+
CVUS_Error_Unsupport_DataType: '资料型态不支援',
|
|
509
|
+
CVUS_PLC_Setting_Count_Limit: 'PLC设备达数量设定上限',
|
|
510
|
+
Part_Serial_Number_Error: '料件序号通用错误',
|
|
511
|
+
Part_Serial_Number_Already_Bind_Part_Number: '料件序号已经绑在料号上了',
|
|
512
|
+
Part_Serial_Number_Not_Found: '找不到该料件序号',
|
|
513
|
+
Part_Serial_Number_Do_Not_Bind_Part_Number: '料件序号没有绑定的料号',
|
|
514
|
+
Operation_Uuid_Already_Bind_Other_Part_Number: '该操作记录已经绑定在其他料号上了',
|
|
515
|
+
Custom_Parameter_Already_Used_By_Part_Serial_Number_Setting: '序号自定义参数已经被序号设定所使用',
|
|
516
|
+
Serial_Number_Rule_Setting_Name_Duplicate: '序号规则设定的名称重复',
|
|
517
|
+
Serial_Number_Interval_Setting_Error: '流水号区间设定错误',
|
|
518
|
+
Machine_Type_Exit_Error: '机台类别已存在',
|
|
519
|
+
Cnc_Already_Bound: '控制器已绑定',
|
|
520
|
+
Batch_Number_Error: '批次号通用错误',
|
|
521
|
+
Batch_Number_Setting_Name_Duplicate: '批次号设定名称重复',
|
|
522
|
+
Batch_Number_Setting_ID_Not_Exist: '批次号设定ID不存在',
|
|
523
|
+
Batch_Number_Setting_Not_Enable: '批次号设定未启用',
|
|
524
|
+
Batch_Number_Insufficient: '批次号数量不足',
|
|
525
|
+
Batch_Number_Already_Bind_Other_Production_Order: '批次号已经绑定在其他工单上',
|
|
526
|
+
Illegal_Batch_Number: '不合法的批次号',
|
|
527
|
+
Batch_Number_Setting_Exceed_Max_Digit: '批次号设定超过最大位数',
|
|
528
|
+
Message_Push_Error: '推播服务通用错误',
|
|
529
|
+
Message_Push_Server_Not_Initialized: '推播服务尚未与伺服器做初始化连线设定',
|
|
530
|
+
Message_Push_Mobile_Message_Excced: '推播服务手机提醒讯息达到上限',
|
|
531
|
+
Message_Push_Server_Connect_Fail: '推播服务与推播伺服器连线失败',
|
|
532
|
+
Message_Push_Emp_Not_Bind_APP: '推播服务要发送讯息的人员尚未绑定APP',
|
|
533
|
+
Message_Push_Message_Setting_Not_Initialized: '推播服务手机提醒讯息设定尚未初始化开通',
|
|
534
|
+
Tag_Over_Count: '超出工单可绑定标签数量',
|
|
535
|
+
Data_Not_Exists: '数据不存在',
|
|
536
|
+
Encoding_Exceeds_Upper_Limit: '编码会超过系统设定上限,请至工厂建模中的编号规则设定',
|
|
537
|
+
No_Beat_Point: '请先至工厂建模_产品工艺设定该路径节拍点',
|
|
538
|
+
Last_Process: '最后一道工序,不能删除',
|
|
539
|
+
MaterialUnit_Not_Exist: '单位不存在',
|
|
540
|
+
Production_Order_Not_In_NotDispatch: '非未派工的工单不可删除',
|
|
541
|
+
Production_Order_Has_Source_Document_Association: '生产工单存在源单关联',
|
|
542
|
+
Production_Order_Tag_Number_Released: '生产工单已发行标签',
|
|
543
|
+
Out_Storage_Not_Exit: '出库仓库不存在',
|
|
544
|
+
Out_Stock_Space_Not_Exit: '出库仓位不存在',
|
|
545
|
+
In_Storage_Not_Exit: '入库仓库不存在',
|
|
546
|
+
In_Stock_Space_Not_Exit: '入库仓位不存在',
|
|
547
|
+
Def_In_Storage_Not_Exit: '不良入库仓库不存在',
|
|
548
|
+
Def_In_Stock_Space_Not_Exit: '不良入库仓库不存在',
|
|
549
|
+
Purchase_In_Storage_Not_Exit: '采购入库仓库不存在',
|
|
550
|
+
Purchase_In_Stock_Space_Not_Exit: '采购入库仓位不存在',
|
|
551
|
+
},
|
|
552
|
+
en: {
|
|
553
|
+
System_Error: 'System Error.',
|
|
554
|
+
Service_Unavailable: 'System service is suspended.',
|
|
555
|
+
Remote_Service_Error: 'Remote connection error.',
|
|
556
|
+
IP_Limit: 'IP limit cannot request this resource.',
|
|
557
|
+
Illegal_Request: 'Illegal request.',
|
|
558
|
+
Token_Missing: 'The source (token) parameter is missing.',
|
|
559
|
+
Unsupport_Mediatype: 'Unsupported MediaType.',
|
|
560
|
+
Param_Error:
|
|
561
|
+
'Parameter error, the content of the data or the number of codes you returned does not meet the specifications.',
|
|
562
|
+
System_Busy: 'System overload.',
|
|
563
|
+
Job_Expired: 'Execution timed out.',
|
|
564
|
+
RPC_Error: 'RPC error.',
|
|
565
|
+
Partial_Data_Error: 'Partial data error.',
|
|
566
|
+
Time_Out: 'Connection timed out.',
|
|
567
|
+
Mail_Failed: 'The mailing function is abnormal.',
|
|
568
|
+
Decode_Failed: 'Decryption function is abnormal.',
|
|
569
|
+
WeChat_GetOpenID_Error: 'WeChat get OpenID function abnormal.',
|
|
570
|
+
SDK_Unsupport_Function: 'SDK unsupport function.',
|
|
571
|
+
API_Internet_Error: 'Failed to connect to other API.',
|
|
572
|
+
SMS_Failed:
|
|
573
|
+
'SMS sending is abnormal. Please check whether the country code and phone number are entered correctly.',
|
|
574
|
+
Insert_Problem_Type_Wrong: 'Insert Error. The parameter type is incorrect.',
|
|
575
|
+
Insert_Problem_KeyColumn_Exist: 'The same primary key column already exists.',
|
|
576
|
+
Update_Problem_Type_Wrong: 'Update Error. The parameter type is incorrect.',
|
|
577
|
+
Update_Problem_KeyColumn_Miss: 'Missing primary key.',
|
|
578
|
+
Select_Problem_No_Data: 'Check no data.',
|
|
579
|
+
Update_Error: 'Update error.',
|
|
580
|
+
Insert_Error: 'Insert failed.',
|
|
581
|
+
Upsert_Error: 'Update insert failed.',
|
|
582
|
+
Delete_Error: 'Delete failed.',
|
|
583
|
+
DBRelated_Error: 'DB Related Error.',
|
|
584
|
+
Password_Wrong: 'Password Wrong.',
|
|
585
|
+
No_Right_to_Access: 'Insufficient permissions.',
|
|
586
|
+
UserID_UnExist: 'Account does not exist.',
|
|
587
|
+
Account_Quit: 'Account is disabled.',
|
|
588
|
+
Verify_Fail: 'Verification error.',
|
|
589
|
+
ProcessOrder_Duplicate: 'The process sub-work order is repeated',
|
|
590
|
+
ID_SameAs_Password: 'Account is equivalent to password.',
|
|
591
|
+
Auth_Error: 'Account authentication error.',
|
|
592
|
+
Machine_Number_Limit: 'Machine authorized number limit.',
|
|
593
|
+
Token_Expired: 'Login time limit expired, please refresh or resubmit the form.',
|
|
594
|
+
Password_Need_Change: 'The password must be changed (when the password is forgotten).',
|
|
595
|
+
Cookie_Error: 'Cookie verification error. Your login time limit may have expired, please login again.',
|
|
596
|
+
WeChat_First_Login: 'WeChat first login.',
|
|
597
|
+
Token_Verify_Fail: 'Token verification failed.',
|
|
598
|
+
Option_Right_Invalid: 'Insufficient Option right.',
|
|
599
|
+
No_Right_to_Access_CNC: 'No right to access CNC.',
|
|
600
|
+
Mail_Verify_Fail: 'The mail has not been verified.',
|
|
601
|
+
No_Right_to_Access_Equipment: 'Insufficient permission to other devices.',
|
|
602
|
+
Equipment_Name_Duplicate: 'Other equipment names are duplicated.',
|
|
603
|
+
Software_Serial_Number_Valid:
|
|
604
|
+
'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.',
|
|
605
|
+
Input_Type_Wrong: 'The parameter type is incorrect.',
|
|
606
|
+
File_Not_Exist: 'File does not exist.',
|
|
607
|
+
File_Using_Conflict: 'File usage conflict.',
|
|
608
|
+
File_Not_ExistInRequest: 'File does not exist in the parameter.',
|
|
609
|
+
File_Upload_Number_Limit: 'File upload number problem.',
|
|
610
|
+
Oss_Upload_Fail: 'Upload to OSS failed.',
|
|
611
|
+
File_Size_Exceeded: 'Single file size exceeds the upper limit.',
|
|
612
|
+
Folder_Size_Exceeded: 'The file size of a single folder exceeds the upper limit.',
|
|
613
|
+
File_Extension_Invalid: 'Illegal extension.',
|
|
614
|
+
File_Delete_Fail: 'Failed to delete file.',
|
|
615
|
+
File_Related_Error: 'File related error.',
|
|
616
|
+
File_InUse_Error: 'File is in use.',
|
|
617
|
+
Folder_Not_Exist: 'Folder does not exist.',
|
|
618
|
+
Folder_InUse_Error: 'Folder is in use.',
|
|
619
|
+
Folder_Error: 'Generic folder error message.',
|
|
620
|
+
Partial_File_Fail: 'Partial file failed.',
|
|
621
|
+
OSS_Error: 'OSS general error.',
|
|
622
|
+
Connect_Broker_Failed: 'Failed to connect to Broker.',
|
|
623
|
+
Subscribe_Topic_Failed: 'Subscription to topic failed.',
|
|
624
|
+
Publish_Topic_Failed: 'Publish topic failed.',
|
|
625
|
+
Duplicate_Subscribe_Topic: 'Duplicate subscription topic.',
|
|
626
|
+
Not_Subscribe_Topic_Yet: 'Not yet subscribed to this topic.',
|
|
627
|
+
Unsubscribe_Topic_Failed: 'Unsubscribe topic failed.',
|
|
628
|
+
DisConnect_Broker_Failed: 'Broker failed to disconnect.',
|
|
629
|
+
CNC_MQTT_Error: 'General controller MQTT related error.',
|
|
630
|
+
CNC_Offline: 'Controller is offline.',
|
|
631
|
+
CNC_Busy: 'The controller is busy.',
|
|
632
|
+
CNC_Busy_MQTT: 'The controller is busy due to MQTT instructions.',
|
|
633
|
+
SMB_MQTT_Error: 'General SMB MQTT related errors.',
|
|
634
|
+
SMB_Offline: 'SMB offline.',
|
|
635
|
+
SMB_Busy: 'SMB is busy.',
|
|
636
|
+
SMB_Busy_MQTT: 'SMB is busy because of MQTT.',
|
|
637
|
+
Client_Already_Connect: 'A client with the same information is already connected',
|
|
638
|
+
CNC_Error: 'controller general error code.',
|
|
639
|
+
CNC_Not_Regist: 'The controller has not been registered.',
|
|
640
|
+
CNC_Already_Decode: 'The check code corresponding to this controller has been successfully decrypted.',
|
|
641
|
+
CNC_Already_Bind_SynFactory: 'The controller has been registered and bound to other user.',
|
|
642
|
+
CNC_Name_Duplicate: 'The controller name of the end user is duplicated.',
|
|
643
|
+
CNC_Connection_Full: 'The number of connections for the end user has reached the upper limit.',
|
|
644
|
+
CNC_Not_Binding: 'The controller is not bound by any terminal.',
|
|
645
|
+
CNC_Disk_Not_Enough: 'Not enough CNC disk',
|
|
646
|
+
CNC_Dispatch_Type: 'The CNC dispatch type problem (for example: the parameter is incorrect)',
|
|
647
|
+
CNC_Busy_FileRelated: 'The CNC is busy with file related matters',
|
|
648
|
+
Robot_CNC_Direct_Dispatch_Deny: 'Robot CNC is not allowed to receive dispatches',
|
|
649
|
+
CNC_Busy_LogBackup: 'The controller is busy with log backup related matters',
|
|
650
|
+
CNC_Disconnected: 'The controller is offline, unable to shake hands',
|
|
651
|
+
CNC_Invalid_BindingType:
|
|
652
|
+
'The controller binding type is not applicable, such as some functions can only be used by directly connected machines',
|
|
653
|
+
CNC_Busy_ReportWorkRelated: 'The controller is busy and cannot modify the reporting method',
|
|
654
|
+
CNC_Invalid_Brand:
|
|
655
|
+
'The controller brand is not applicable, such as some functions can only be used by the new generation brand',
|
|
656
|
+
CNC_Check_Connection: 'Invalid controller or connection problem',
|
|
657
|
+
Decode_Error: 'Serial number or check code input error.',
|
|
658
|
+
Decode_Illegal:
|
|
659
|
+
'This check code or decryption behavior is abnormal, please contact the new generation for further confirmation.',
|
|
660
|
+
Subaccount_Auth_Illegal: 'You do not have permission, please contact your machine factory manager.',
|
|
661
|
+
VerifyCode_Illegal: 'Check code exception.',
|
|
662
|
+
SN_Not_Found: 'No such serial number found in the database.',
|
|
663
|
+
Decode_DataBase_Action_Error:
|
|
664
|
+
'Decode database operation error, please contact New Generation for further confirmation.',
|
|
665
|
+
Remote_Decode_Error: 'Remote decryption failed.',
|
|
666
|
+
CNCType_Model_Not_Found: 'Check without controller model or controller type.',
|
|
667
|
+
Wechat_Error: 'Wechat error.',
|
|
668
|
+
SubAccount_Multi_Wechat_Bind: 'There are multiple WeChat bindings for sub-accounts.',
|
|
669
|
+
MotherAccount_Multi_Wechat_Bind: 'The parent account has multiple groups for WeChat binding.',
|
|
670
|
+
Production_Plan_Error: 'Production plan management error.',
|
|
671
|
+
Production_Order_Duplicate: 'Production order number duplicate.',
|
|
672
|
+
Order_Duplicate: 'Order duplicate or inconsistent order Number information.',
|
|
673
|
+
InValid_WorkOrderID:
|
|
674
|
+
'The sub production order number is invalid. (It does not belong to the account or does not exist)',
|
|
675
|
+
InValid_CNC_ID: 'Invalid CNC ID (It may not belong to the account or does not exist at all)',
|
|
676
|
+
InValid_ExceptedStartTime_Parameter: 'The start time of the production order number is incorrect',
|
|
677
|
+
Out_Of_Number: 'The number system found that the available numbers in the specification are used up',
|
|
678
|
+
Production_Order_Not_Same_Order:
|
|
679
|
+
'Production order number already exists, corresponding to a different order number error.',
|
|
680
|
+
Work_Order_Inconsistency:
|
|
681
|
+
'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',
|
|
682
|
+
PLM_Data_Inconsistent: 'Inconsistent with the PLM data',
|
|
683
|
+
Work_Order_Comes_From_OT: 'The source of the sub-work order is the error code of OT',
|
|
684
|
+
InValid_ProductionOrderID: 'The work order ID is invalid (does not belong to the user or does not exist)',
|
|
685
|
+
PLM_CraftPath_Info_Inconsistent: 'Inconsistent with the craft path information of the craft package',
|
|
686
|
+
PLM_ProdctionProcess_Info_Inconsistent: 'Inconsistent with the process information of the process package',
|
|
687
|
+
PLM_Machine_Info_Inconsistent: 'Inconsistent with the machine information of the craft package',
|
|
688
|
+
InValid_Shift_ID: 'Invalid shift ID',
|
|
689
|
+
InValid_Emp_ID: 'Invalid employee ID',
|
|
690
|
+
Part_Serial_Number_In_Use: 'The serial number has been used',
|
|
691
|
+
Part_Serial_Number_Process_Lock: 'Someone is accessing the serial number',
|
|
692
|
+
Serial_Number_Count_Setting_Conflict: 'Number of SN to be taken does not match the setting',
|
|
693
|
+
Insufficient_Number: 'Insufficient number of remaining numbers',
|
|
694
|
+
Work_Order_Status_Error: 'Work order status error',
|
|
695
|
+
Part_Serial_Number_Length_Limit: 'The length of the serial number is too long',
|
|
696
|
+
Duplicate_SN_List: 'The serial number in the list number is repeated',
|
|
697
|
+
Work_Order_Duplicate_Start: 'The sub-work order starts repeatedly within one minute',
|
|
698
|
+
Work_Order_Start_Fail: 'Failed to start sub-work order',
|
|
699
|
+
Work_Order_Suspend_Fail: 'The sub-work order suspend processing failed',
|
|
700
|
+
Work_Order_Close_Fail_But_Suspend_Success:
|
|
701
|
+
'Failed to close the sub-work order, but suspend processing successfully',
|
|
702
|
+
Work_Order_Part_Count_Not_Fulfill:
|
|
703
|
+
'The sub-work order partCountRequired has not been completed and cannot be completed',
|
|
704
|
+
Work_Order_Start_Switch_Fail: 'Failed to change the order when the sub-work order started',
|
|
705
|
+
Duplicate_Production_Order_List: 'Duplicate work orders in the list',
|
|
706
|
+
Work_order_Can_not_Direct_Start_work: 'The sub-work order cannot start directly',
|
|
707
|
+
Unbind_Part_Serial_Number_When_Start_work: 'The work order in processing cannot be unbind',
|
|
708
|
+
InValid_Part_Serial_Number: 'Invalid serial number',
|
|
709
|
+
Machine_Send_File_When_Start_Work: 'The machine is in the process of starting work, unable to start work',
|
|
710
|
+
Serial_Number_Bind_Different_Part_Number: 'The serial number is bound to a different part number',
|
|
711
|
+
Need_Part_Serial_Number_Export_Time:
|
|
712
|
+
'The serial number of the export time already exists, and the export time of the serial number is required after the update',
|
|
713
|
+
Shift_Error: 'Shift error',
|
|
714
|
+
Employee_Error: 'Employee error',
|
|
715
|
+
Shift_Pattern_Not_Exist: 'Shift pattern does not exist',
|
|
716
|
+
Same_Pattern_System_Exist: 'The shift with the same shift pattern already exists',
|
|
717
|
+
Pattern_Shift_Number_Conflict: 'The number of shifts does not match the shift pattern',
|
|
718
|
+
Shift_Time_Overlap: 'Shift time overlap',
|
|
719
|
+
Shift_Time_Sum_Exceed: 'The shift time interval exceeds the upper limit (one day)',
|
|
720
|
+
Shift_Start_End_Time_Conflict: 'The shift start time is greater than or equal to the end time',
|
|
721
|
+
Shift_System_Not_Exist: 'The actual shift system does not exist',
|
|
722
|
+
Shift_ID_Shift_System_Conflict: 'This shift name does not belong to this actual shift',
|
|
723
|
+
Duplicate_Dept: 'Duplicate department name',
|
|
724
|
+
Success: 'Success',
|
|
725
|
+
Work_Report_Review_Error: 'Review failed',
|
|
726
|
+
Wrong_Work_Quantity: 'The number of work reports is incorrect, and the quantity is stuck',
|
|
727
|
+
Field_Count_Max: 'Too many custom fields',
|
|
728
|
+
Field_Name_Repeat: 'Duplicate custom field names',
|
|
729
|
+
Break_Time_Out_Of_Range: 'This break time beyond the shift interval',
|
|
730
|
+
FileDispatch_Error: 'File delivery general error code',
|
|
731
|
+
TakeEvent_ID_Error: 'Error taking event code',
|
|
732
|
+
Service_Original_Connect_Error: 'Error in connecting native SynFactory API',
|
|
733
|
+
IsProxyCheck_Error: 'An error occurred while confirming whether it is a proxy',
|
|
734
|
+
IsCNCIdentityValid_Check_Error:
|
|
735
|
+
'An error occurred while confirming whether the CNC certification information is correct',
|
|
736
|
+
CanSNAccessEquipment_Check_Error:
|
|
737
|
+
'An error occurred while confirming whether the software serial number can use the device',
|
|
738
|
+
SNCanNotAccessEquipment: 'This serial number cannot use this device',
|
|
739
|
+
GetTriggerHistory_Error: 'An error occurred while calling the API to get the dispatch record',
|
|
740
|
+
Duplicate_Setting_Data: 'Duplicate default path settings',
|
|
741
|
+
Setting_Number_Limit_Exceed: 'The number of default path settings has reached the setting upper limit',
|
|
742
|
+
None_Data_Delete: 'No data was deleted',
|
|
743
|
+
Material_Error: 'Material general error code',
|
|
744
|
+
MaterialPartNumber_Invalid: 'The material number is illegal',
|
|
745
|
+
MaterialPartNumber_Duplicated: 'Duplicate material number',
|
|
746
|
+
MaterialType_Duplicated: 'Duplicated material type',
|
|
747
|
+
MaterialPartNumber_Not_Found: 'The material number does not exist',
|
|
748
|
+
MaterialBOM_Exist: 'Material BOM already exists',
|
|
749
|
+
MaterialBOM_Child_Relation_Invalid: 'Illegal material BOM child item',
|
|
750
|
+
MaterialBOM_RelationShip_Invalid:
|
|
751
|
+
'There cannot be any other BOM table with an opposite relationship between parent and child materials',
|
|
752
|
+
MaterialBOM_Self_Contained: 'Parent and child materials cannot be the same',
|
|
753
|
+
MaterialBOM_Not_Exist: 'Material BOM table does not exist',
|
|
754
|
+
MaterialBOM_Bulk_Insert_Exceed: 'Exceeded batch import quantity',
|
|
755
|
+
MaterialBOM_Version_Not_Exist: 'The material number BOM version does not exist',
|
|
756
|
+
Material_Sync_To_PDM_Fail: 'Failed to synchronize material number to PDM',
|
|
757
|
+
Material_Do_Not_Have_BatchNumber_Setting: 'The material number does not have a batch number setting',
|
|
758
|
+
MaterialPartNumber_Status_Disable: 'Material number status disabled',
|
|
759
|
+
Response_Fomat_Error: 'Incorrect format',
|
|
760
|
+
Equipmnet_Craft_Bind_Error: 'Equipment craft binding error',
|
|
761
|
+
Template_Format_Error: 'Tool template format error',
|
|
762
|
+
Craft_NO_ToolLIfeTemplate: 'There is no tool life data for the corresponding process of this equipment',
|
|
763
|
+
Tool_Axis_Error: 'System (axis group) error',
|
|
764
|
+
Specification_Update_Error: 'Specification update error',
|
|
765
|
+
Equip_Monitor_Setting_Name_Existed: 'Monitoring setting name already exists',
|
|
766
|
+
Equip_In_Monitor_Setting_Has_Existed_In_Same_Indicator_And_Immediate_Noti:
|
|
767
|
+
'The device has set up real-time notification under this monitoring indicator',
|
|
768
|
+
Equip_ID_Not_Exist: 'Device ID does not exist',
|
|
769
|
+
Equip_Monitor_Setting_ID_Not_Existed: 'Monitoring setting ID does not exist',
|
|
770
|
+
CVUS_Error: 'General custom variable system error',
|
|
771
|
+
CVUS_Setting_Not_Exist: 'Custom variable setting does not exist',
|
|
772
|
+
CVUS_Parameter_Validation_Fail: 'CVUS general parameter validation failed',
|
|
773
|
+
CVUS_SETTING_COUNT_LIMIT: 'CVUS setting limit reached',
|
|
774
|
+
CVUS_VARTYPE_LENGTH_LIMIT: 'The vartype parameter exceeds the length limit',
|
|
775
|
+
CVUS_Map_Diff_Set_Result: 'Different setting results',
|
|
776
|
+
CVUS_Map_Error_Busy: 'The device is busy and cannot be set',
|
|
777
|
+
CVUS_Map_When_Get_Setting: 'An error occurred when getting the setting',
|
|
778
|
+
CVUS_Map_Unsup_Var: 'Unsupported variable',
|
|
779
|
+
CVUS_Map_Var_Addr: 'Unsupported variable pointer',
|
|
780
|
+
CVUS_Map_Unsup_Var_Tp: 'Unsupported variable type',
|
|
781
|
+
CVUS_Map_Unsup_Freq: 'Unsupported upload frequency',
|
|
782
|
+
CVUS_EventID_Not_Exist: 'The dispatch event does not exist',
|
|
783
|
+
CVM_Parameter_Validation_Fail: 'Custom variable modification parameter validation failed',
|
|
784
|
+
CVM_SETTING_COUNT_LIMIT: 'The upper limit of the number of CVM settings has been reached',
|
|
785
|
+
CVM_VARTYPE_LENGTH_LIMIT: 'CVM vartype parameter exceeds length limit',
|
|
786
|
+
CVM_Take_Event_ID: 'The CVM service got a delivery ID error',
|
|
787
|
+
CVM_Different_Result: 'CVM has different modification results',
|
|
788
|
+
CVM_Busy_Var_Modifying: 'CVM execution failed, busy, changing variable value',
|
|
789
|
+
CVM_Error_DataType_Trans_Error: 'CVM execution failed, data type transformation failed',
|
|
790
|
+
CVM_Error_Unsupport_VarType: 'CVM execution failed, unsupported variable type',
|
|
791
|
+
CVM_Error_Wrong_Var_Address: 'CVM execution failed, the variable address is invalid',
|
|
792
|
+
CVM_Error_Unsupport_DataType: 'CVM execution failed, unsupported type code',
|
|
793
|
+
CVUS_Error_GroupSub_NotExist:
|
|
794
|
+
'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',
|
|
795
|
+
CVUS_Equip_Not_Support: 'The device does not support the group subscription function',
|
|
796
|
+
CVUS_Error_DataType_Inconsistent: 'Data type is inconsistent',
|
|
797
|
+
CVUS_Error_Unsupport_DataType: 'Unsupported data type',
|
|
798
|
+
CVUS_PLC_Setting_Count_Limit: 'PLC device reaches the setting upper limit',
|
|
799
|
+
Part_Serial_Number_Error: 'General error of material serial number',
|
|
800
|
+
Part_Serial_Number_Already_Bind_Part_Number:
|
|
801
|
+
'The serial number of the material has been bound to the material number',
|
|
802
|
+
Part_Serial_Number_Not_Found: 'The part serial number cannot be found',
|
|
803
|
+
Part_Serial_Number_Do_Not_Bind_Part_Number: 'The material part serial number does not have a bound material number',
|
|
804
|
+
Operation_Uuid_Already_Bind_Other_Part_Number: 'This operation record has been bound to other material numbers',
|
|
805
|
+
Custom_Parameter_Already_Used_By_Part_Serial_Number_Setting:
|
|
806
|
+
'The serial number custom parameter has been used by the serial number setting',
|
|
807
|
+
Serial_Number_Rule_Setting_Name_Duplicate: 'The name of the serial number rule setting is duplicated',
|
|
808
|
+
Serial_Number_Interval_Setting_Error: 'Serial number interval setting error',
|
|
809
|
+
Machine_Type_Exit_Error: 'Machine type already exists',
|
|
810
|
+
Cnc_Already_Bound: 'Controller is bound',
|
|
811
|
+
Batch_Number_Error: 'Batch number error.',
|
|
812
|
+
Batch_Number_Setting_Name_Duplicate: 'Duplicate batch number setting name.',
|
|
813
|
+
Batch_Number_Setting_ID_Not_Exist: 'The batch number setting ID does not exist.',
|
|
814
|
+
Batch_Number_Setting_Not_Enable: 'Batch number setting is not enabled.',
|
|
815
|
+
Batch_Number_Insufficient: 'Insufficient batch number.',
|
|
816
|
+
Batch_Number_Already_Bind_Other_Production_Order: 'The batch number has been bound to other work orders.',
|
|
817
|
+
Illegal_Batch_Number: 'Illegal batch number',
|
|
818
|
+
Batch_Number_Setting_Exceed_Max_Digit: 'The batch number setting exceeds the maximum number of digits.',
|
|
819
|
+
Message_Push_Error: 'Push service general error',
|
|
820
|
+
Message_Push_Server_Not_Initialized:
|
|
821
|
+
'The push service has not yet initialized the connection settings with the server',
|
|
822
|
+
Message_Push_Mobile_Message_Excced: 'The push service mobile phone reminder message has reached the upper limit',
|
|
823
|
+
Message_Push_Server_Connect_Fail: 'The connection between push service and push server failed',
|
|
824
|
+
Message_Push_Emp_Not_Bind_APP:
|
|
825
|
+
'The person to whom the push service wants to send messages has not been bound to the APP',
|
|
826
|
+
Message_Push_Message_Setting_Not_Initialized:
|
|
827
|
+
'The push service mobile phone reminder message setting has not been initialized and activated',
|
|
828
|
+
Tag_Over_Count: 'Exceeding the number of tags that can be bound to the work order',
|
|
829
|
+
Data_Not_Exists: 'Data does not exist',
|
|
830
|
+
Encoding_Exceeds_Upper_Limit:
|
|
831
|
+
'The coding will exceed the upper limit set by the system. Please go to the numbering rule setting in the factory modeling',
|
|
832
|
+
No_Beat_Point: 'Please first go to the factory to model the product process and set the beat point for this path',
|
|
833
|
+
Last_Process: 'The last process cannot be deleted',
|
|
834
|
+
MaterialUnit_Not_Exist: 'Unit does not exist',
|
|
835
|
+
Production_Order_Not_In_NotDispatch: 'Non-assigned work orders cannot be deleted',
|
|
836
|
+
Production_Order_Has_Source_Document_Association: 'The production order has a source order association',
|
|
837
|
+
Production_Order_Tag_Number_Released: 'Production Work Order Issued Label',
|
|
838
|
+
Out_Storage_Not_Exit: 'The outbound storage does not exist',
|
|
839
|
+
Out_Stock_Space_Not_Exit: 'Outbound storage location does not exist',
|
|
840
|
+
In_Storage_Not_Exit: 'The storage warehouse does not exist',
|
|
841
|
+
In_Stock_Space_Not_Exit: 'The inbound storage location does not exist',
|
|
842
|
+
Def_In_Storage_Not_Exit: 'The defective product storage warehouse does not exist',
|
|
843
|
+
Def_In_Stock_Space_Not_Exit: 'The defective product storage warehouse does not exist',
|
|
844
|
+
Purchase_In_Storage_Not_Exit: 'The purchase inbound warehouse does not exist',
|
|
845
|
+
Purchase_In_Stock_Space_Not_Exit: 'The purchase inbound storage location does not exist',
|
|
846
|
+
},
|
|
847
|
+
};
|