廖井涛
2 天以前 1eb971719567447ea691337e6a4a7439a3bef866
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
export  default {
    login:{
        userErr:'Please enter your user id',
        pwErr:'Please enter your password',
        loginSuccessful:'User login successful',
        loginErr:'The account or password is incorrect',
        connectErr:'Login timed out, please login again',
        user:'User',
        password:'Pass',
        SysName:'North Glass ERP System',
        login:'Login',
        register:'Register',
    },
    main:{
        connectErr:'The server connection is abnormal. Please try again later',
        titleFirst:"Welcome ",
        titleLast:' to use North Glass ERP system!'
    },
    error:{
        Code_401:'The user does not have this permission',
        Code_402:'Login timed out, please login again'
    },
    basicData:{
        create:'New Order',
        review:"Review",
        cancelReview:"Reset",
        save:'Save',
        add:'Add',
        delete:'Delete',
        edit:'Edit',
        cancel:'cancel',
        restore:'restore',
        selectSame:'Select same',
        sameAfterwards:'Same afterwards',
        clearSelection:'Clear selection',
        calculateAmount:'Calculate amount',
        Number:'No.',
        remarks:'Remarks',
        total:'Total',
        check:'Check',
        operate:'Operate',
        search:'Search',
        startDate:'Start Date',
        endDate:'End Date',
        reportData:'Report Data',
 
        confirmButtonText:'Verify',
        cancelButtonText:'Cancel',
        creationTime:'Creation time',
        insert:'New added',
        update:'Edit',
        number:'Serial number',
        otherAmounts:'Other amount',
        errorSettlementArea:'Error settlement area',
        sizeReview:'Size audit',
        reportForms:'Report',
        print:'Print',
        export:'Derive',
        empty:'Clear',
 
        incrementalAll:'Increase successively after selecting',
        incrementalChecked:'Selected and increased successively',
        true:'Yes',
        false:'No',
        computedSize:'Scientific counting',
        paste:'Paste',
 
        selected:'selected',
        partiallySelected:'partially selected',
        unchecked :'unchecked',
        copy:'Copy',
        msg:{
            max255:"The value contains a maximum of 255 characters",
            range99999Dec2:
                "Please enter a number between 0 and 99999 with a maximum of two decimals",
            range99999Dec3:
                "Please enter a number between 0 and 99999 with a maximum of three decimals",
            range999999Dec2:
                "Please enter a number between 0 and 999999 with a maximum of two decimals",
            greater0:"Please enter an integer greater than 0",
            checkoutLose:'Check fail',
            saveSuccess:'save successfully',
            saveFail:'Save fail',
            cancelReviewSuccess:'Cancel review successfully',
            ReviewSuccess:'Review successfully',
 
            ServerConnectionError:'Server connection error',
            deleteSuccess:'Deletion success',
            deleteFail:'Deletion failure',
            cancelReviewFail:'Review failure',
            cancelReviewFailWork:'Counter-audit failed please check whether to report',
            reviewFail:'Audit failure',
            noProductDataInTheTable:'There is no product data in the table',
            tableDataExceedsMaximumLimit:'The table data exceeds the maximum limit',
            range9999Dec: "Please enter a four digit integer",
            quantityError: "Quantity Error",
            dataDoesNotExist: "Data Does Not Exist",
        }
    },
    product:{
        page:{
            selectProduct:'Product home page',
            createProduct:'Creat',
        },
        coloredGlaze:'Coloured glaze',
        frostedSand:'Frosted glass',
        coating:'Coating film',
        filmApplication:'Pad pasting',
        sandblasting:'Sandblast',
        edgeGrinding:'Edging',
        productName:'Name',
        typeName:'Category',
        query:'Quick query',
        creator:'Creator',
 
        usingAbbreviations:'Using abbreviations',
        msg:{
            productLength:'Please add product details',
            lastGlass:' The last item of product details is not glass, please complete',
            glassType:'Please select a product category',
            saveSuccess:'Successful creation',
            operateSuccess:'Successful operation',
            operateFail:'Operation failure',
            glassReview:'Please enter product material attributes and process attributes',
            glassRepeat:'Please select spacer first',
            HollowReview:'Please select all hollow spacers drop-down box',
            firstGlass:'Please select the product first',
            InterlayerReview:'Please select all hollow spacers drop-down box',
            glassTypeTitle:'Material property',
            thickness:'* Thickness',
            color:'* Color',
            craft:'* Process attributes',
            location:'* Location',
            lowELocation:'The LOW-E surface',
            processAttribute:'Process attribute',
            hollowThickness:'* Hollow thickness',
            hollowGasType:'* Inflation mode',
            hollowType:'* Sealing compound',
            hollowGlueDepth:'Default glue depth',
            hollow:'Hollow spacer',
            hollowUpdate:'Hollow spacers modified',
            interlayerThickness:'*Lamination thickness',
            interlayerType:'* Type',
            interlayerColor:'* Color',
            interlayer:'Lamination  spacer',
            interlayerUpdate:'Lamination  spacer modified',
            glassAttribute:'Monolithic glass properties',
            reset:'Reset',
            processFlowAttribute:'Process attribute',
            sure:'Verify',
            update:'edit',
            quickSearch:'Quick query',
            weightThickness:'Weight thickness',
            allThickness:'Thickness',
            remarks:'Remark',
            product:'Product name',
            updateGlass:'Modified glass',
            updateHollow:'Modified hollow',
            updateInterlayer:'Modified interlayer',
            delete:'Delete',
            create:'Dound',
            review:'Examine',
            cancelReview:'Review',
            theProductHasBeenReviewedAndCannotBeDeleted:'The product has been reviewed and cannot be removed',
 
            productAbbreviation:'Product abbreviation',
            productDuplication:'Product repetition',
        }
    },
    order:{
        page:{
            selectOrder:'Order Home Page',
            createOrder:'Create',
            orderReport:'Order Detail Report',
            orderSummaryReport:'Order Summary Report',
            orderDetailsSummary:'Order Detail Summary',
            updateOrderCraft:'Update Order Craft'
        },
        project:'Project',
        orderId:'Order ID',
        money:'Total Amount',
        customers:"Customers",
        deliveryDate:"Delivery Date",
        contractId:'ContractId',
        orderType:'Order Type',
        batch:'Batch',
        customerBatch:'Customer Batch',
        orderClassify:'Order Classify',
        calculateType:'Calculate Type',
        contacts:'Contacts',
        icon:'Trademark',
        salesman:'Salesman',
        contactNumber:'Contact Number',
        packType:'Package Type ',
        alType:'Aluminum Type',
        deliveryAddress:'Delivery Address',
        processingNote:'Processing Note',
        technology:'Technology',
        amountReset:'Amount Reset',
        OrderNum:'Order Number',
        productId:'Product ID',
        product:'Product',
        price:'Price',
        quantity:'Quantity',
        grossAmount:'Gross Amount',
        width:'Width',
        height:'Height',
        area:'Area',
        trueArea:'True Area',
        trueGrossArea:'True Gross Area',
        computeArea:'Compute Area',
        computeGrossArea:'Compute Gross Area',
        shape:'Shape',
        bendRadius:'Bend Radius',
        edgingType:'Edging Type',
        import:'Import',
        template:'Template',
 
        universalShape:'Ordinary shape glass',
        alien:'Shaped Glass',
        areaAmountPerPiece:'Area amount (single piece)',
        areaAmountAge:'Area amount (total area)',
        errorValue:'Error value',
 
        details:'Details',
        workmanship:'Technology',
        processCard:'Flow card',
        processingNotes:'Master machining requirement',
        perimeter:'Perimeter',
        grossArea:'Gross area',
        creator:'Document maker',
        totalThickness:'Thickness',
        levelOne:'Product category',
        levelTwo:'Product subclass',
        orderDetailsReport:'Order detail report',
        orderDetailsSummaryReport:'Order details summary report',
        buildingNumber:'Floor number',
        saveHeader:'Save header',
 
        orderNotApproved:'Order not reviewed',
        orderHasBeenReceived:'The order is in stock',
        printingNumber:'Print times',
        processingOrder:'Processing sheet',
        sheet2:'Horizontal - multi-layer details',
        sheet4:'Production and processing of single vertical plate',
        sheet3:'View shipping information',
        sheet5:'Production and processing of single curved glass (single sheet)',
        oneClickStorage:'One-click completion',
        oneClickReturn:'一键退回',
 
        quantityMount:'Quantity and Amount',
        allAmount:'面积金额(总金额)',
        orderTransfer:'订单报工转移',
 
        msg:{
            productCheck:'Please select a product',
            tableLengthNot:'No table data',
            amountReset:'Please open the right click menu to recalculate the amount and then save',
            projectCheck: 'Please enter a project name',
            customerCheck: 'Please select Customer',
            salasManCheck: 'Please select Sales',
            calculateTypeCheck: 'Please select a calculation method',
            tableLengthMax:'The table data has reached the maximum value. Procedure',
            productStateCheck:'The product has not yet been reviewed',
            importMaxCheckFailFirst:'Import ',
            importMaxCheckFailMid:' the data can not exceed ',
            importMaxCheckFailLast:' pieces, please import in multiple orders',
            updateAmountSuccessfully:'Updated amount successfully',
            updateOrderState:'Order status update succeeded',
 
            calculationAreaPrompt1:'Exist',
            calculationAreaPrompt2:'The area of each settlement sheet is less than',
            calculationAreaPrompt3:'Whether according to',
            calculationAreaPrompt4:'Calculate',
            warning:'Tips',
            calculationAreaPrompt5:'Do you want to continue creating duplicate orders',
 
            pleaseCancelTheFilteringFirst:'Please cancel the selection first.',
            grossAreaIsNot0:'There is an actual total area equal to0',
            differentSize:'此订单含有手动修改大小片,反审修改订单后请重新重置大小片!是否反审?',
            updateOrderIdErrorGtMaxId:'输入订单号不能大于最大订单号',
            updateOrderIdErrorIsExist:'输入订单号已存在',
            updateOrderIdErrorIsSame:'输入订单号相同',
            updateOrderIdErrorDiscrepancyInLength:'输入订单号长度不符',
            updateOrderIdErrorInputNumber:'请输入数字',
            updateOrderIdErrorNotNo1:'不能修改第一个单子',
        }
 
    },
    searchOrder:{
        createOrder:'Create',
        production:'Production',
        process:'Process',
        storage:'Storage',
        delivery:'Delivery',
        inventoryNum:'InventoryNum',
        perimeter:'Perimeter',
        regularOrders:'Regular Orders',
        cancelledOrders:'Cancelled Orders',
        allOrders:'All Orders',
        msg:'Please select a piece of data',
        msgDelete:'Reviewed orders cannot be deleted',
        msgDeleteFail:'Fail to delete',
        msgDeleteSuccess:'Successfully delete',
        deleteConfirm:'Confirm order deletion?',
        orderType:'Order Type',
        processFlows:'Process flows:',
        copy:'Copy',
        copyTitle:'Copy Title',
        msgList:{
            checkOrder:'No order information is found. Please click Order first',
            isOptimize:'此订单已转优化,回退失败!',
            isReportingWork:'此订单已报工,回退失败!',
            isStorage:'此订单已入库,回退失败!',
            BackSure:"确定一键退回相应流程?"
        },
        updateOrderId:"修改订单号",
        reportingTransfer:'报工转移'
    },
    craft:{
        glassAddress:'Glass Address',
        glassChild:'GlassChild',
        width:'Width',
        height:'Height',
        totalArea:'TotalArea',
        childWidth:'Child Width',
        childHeight:'Child Height',
        arc:'arc',
        area:'Area',
        process:'Process',
        orderDetail:'Order Detail',
        updateCraft:'Update Process',
        technologicalProcess:'Technological Process',
        processAttribute:'Process Attribute',
        oldProcess:'Old Process',
        newProcess:'New Process',
        reset:'Reset',
        sure:'Confirm',
        upperLeft:'Upper left',
        upperRight:'Upper right',
        lowLeft:'Lower left',
        lowRight:'Lower right',
        TrademarkAttribute:'Trademark parameter',
        TrademarkOptions:'Trademark option',
        xImage:'X-axis image',
        yImage:'Y-axis image',
        modifyTrademark:'Amendment of trademark',
        tag:'Marking is enabled',
        tag2:'QR Code printing1',
        tag3:'QR Code printing2',
        xMargin:'X axis margin',
        yMargin:'Y-axis margin',
        location:'Trademark position',
        sort:'玻璃反弯'
 
    },
 
    workOrder:{
        page:{
            selectWorkOrder:'Work order',
            addWorkOrder:'Forward production order'
        },
        productionId:'Production Order Number',
        convert:'Convert',
        unConverted:'UnConverted',
        deleteOk:'Delete Successful',
        transferOrder:'Transfer Order',
        perimeter:'perimeter',
        deleteNo:'Delete failed Check whether the shelf has been splited',
        msg:'Please select all data',
        msgSelect:'请选择订单号'
 
    },
    processCard:{
        page:{
            selectProcessCard:'Process Card',
            selectAddProcess:'Rack Allocation',
            productionScheduling:'Production Scheduling',
            selectPrintProject:'Engineering Printing',
            selectPrintFlowCard:"print",
            splittingDetails:"Frame query",
            addProcessCard:"Split-frame addition",
            printFlowCard:"Process card printing",
            selectDetailProcessCard:"Process card details query"
        },
        processId:'Process Card Number',
        founder:'Divider',
        layoutStatus:'Type Setting',
        splitFrame:'Rack Allocation',
        processCardManagement:'Process Card Management',
        smallPieceOrder:'Monolithic Sequence',
        quantityToDivided:'Quantity To Be Divided',
        areaToDivided:'Area To Be Divided',
        totalThickness:'Total Thickness',
        glassThickness:'Glass Thickness',
        weight:'Weight',
        selectedQuantity:'Select Quantity',
        establishProcessCards:'Add',
        createBySequenceNumber:'By Sequence Number',
        return:'Return',
        ProductionSchedulingOk:'Scheduled Production',
        ProductionSchedulingNo:'Unscheduled Production',
        orderQuantity:'Order Quantity',
        orderArea:'Order Area',
        productionSchedulingQuantity:'Production Scheduling Quantity',
        quantityToScheduled:'Quantity To Be Scheduled',
        areaToScheduled:'Pending Production Area',
        plannedProductionQuantity:'Produced Quantity',
        plannedProductionArea:'Produced Area',
        reviewedState:'Review Status',
        reviewed:'Reviewer',
        schedulingId:'Production Scheduling Number',
        scheduling:'Production Scheduling',
        schedulingOk:'Please select the data on the right first',
        schedulingNo:'Please enter a positive integer',
        schedulingQuantity:'Please enter a number less than or equal to the number available',
        schedulingArea:'Please select the data on the left first',
        schedulingTime:'Please select the data on the left first',
        schedulingTimeOk:'Please enter a number less than or equal to the number to be divided',
        schedulingTimeNo:'Please select the data to save first',
        schedulingTimeQuantity:'Create a flow card for all the data on the right and save it',
        checkProductionScheduling:'Please select scheduling data',
        saveCorrespondingValues:'Please fill in the corresponding value before saving',
        selectProductionSchedulingProcess:'Please select the scheduling process',
        deleteThisData:'You are sure you want to delete the data',
        schedulingQuantityNoQuantityScheduled:'The number of scheduled production cannot be greater than the number to be scheduled',
        typesettingSuccess:'Typesetting Success',
        modifySuccessfully:'Modify Successfully',
        composing:'composing',
        composingOk:'Can Be Typesetter',
        composingNo:'Non Typesetting',
        typesetter:'typesetter',
        revoke:'撤销可排版',
        scheduledStartTime:'Scheduled Start Time',
        planEndTime:'Plan End Time',
        customerId:'Customer Id',
        customerName:'Customer',
        technologyNumber:'Chip Sequence',
        otherRemarks:'Original Film Requirement',
 
        pleaseSelectTheSavedDataFirst:'Please select the data to save first',
        pleaseFirstCreateAProcessCardForAllTheDataOnTheRightSideAndSaveIt:'Create a flow card for all the data on the right and save it',
        glassAddress:'Small glass marking',
        splitFrameTime:'Rack allocation time',
        print:'Print flow card',
        printLabel:'Print label',
        printSetup:'Label setting',
        specificationQuantity:'Specification quantity',
        singlePieceProductName:'Single product name',
        productType:'Product type',
        whetherToScheduleProduction:'Schedule or not',
        deleteNo:'Failed to delete Check whether the flow card has been reported (feedback)',
        deleteNoProcedure:'Delete failed Check whether the next operation has been reported',
        pleaseCheckTheRequiredData:'Please check the required data',
        notSelectTheOptionData:'请勿勾选已排版数据',
        landingSequence:'Landing sequence',
 
        labelStyle:'Label Style',
        detailPrinting:'Detail Printing',
        detailsPrintedSeparately:'Details Printed Separately',
        customLabelPrinting:'Custom label printing',
        labelPrinting:'Lable Printing',
        sortingSuccessful:'Sorting successful',
        sorting:'Sorting',
        pleaseSelect:'Please select',
        processCardDetails:'Process Card Details',
        thisIsTheIndoorSurface:'This is the indoor surface',
        thisSideIsOutsideTheRoom:'This side is outside the room',
        finishedProductLabel:'Finished product label',
        halfProductLabel:'Half-finished product label',
        pleaseSelectCustomPrintLabelStyle:'Please select a custom print label style',
        mergePrinting:'Merge printing',
        printStatus:'Print times',
        labelPrinting2:'Label printing 2',
        finishedProductPrinting2:'Finished Product Printing2',
        editablePrinting:'Editable Printing',
        invertSelection:'Invert Selection',
        sortSummary:'Sort Summary',
        addAutomatically:'Auto fill',
        selectFill:'Selected fill',
        engineeringPrinting:'Engineering Printing',
        pleaseSelectProject:'Please Select Project',
 
 
        mergeState:'Merge State',
        merge:'Merge',
        printQuantity:'Print Quantity',
        printWarn1:'The print quantity cannot be greater than the order quantity'
    },
    reportingWorks:{
        page:{
            selectReportingWorks:"Work Reporting Management",
            addReportingWork:"New Work Reporting",
            qualityInspectionReview:"Quality Inspection Review",
        },
        glassNumber:'Code',
        glassAddress:'Glass Address',
        WorkReportingManagement:'Work Reporting Management ',
        addReportingWorks:'New Work Reporting',
        qualityInspectionReview:'Quality Inspection Review',
        early:'Morning Shift ',
        nightShift:'Night Shift',
        numberProcessCards:'Number Of Process Cards',
        reportableQuantityOk:'Quantity Work available',
        completedQuantity:'Completed Quantity',
        quantityBroken:'Damage Quantity',
        completed:'Completed',
        onceBroken:'Damaged',
        available:'Available',
        returnProcess:'Return Process',
        breakageType:'Damage Type',
        breakageReason:'Damage Reason',
        responsibleProcess:'Responsible Process',
        responsibleEquipment:'Equipment',
        responsibleTeam:'Team',
        responsiblePersonnel:'Personnel',
        increase:'Add',
        lossCount:'Loss Number',
        completedNumber:'Completed Quantity',
        sumOf:'Sum Of',
        greaterThanNo:'Cannot be greater than',
        selectProcessCardData:'Please select process card data',
        selectWorkReportingEquipment:'Please select a reporting device',
        atLeastOneFinishedAndWornEligible:'Please fill in at least one loss number and completion number greater than 0',
        successfulJobApplication:'Report Success',
        actualQuantity:'Actual Reporting Quantity',
        thisProcessQuantity:'Completed Quantity',
        reReportingWork:'Please refresh the interface and report again',
        correctFormatProcessCard:'Please enter the correct format process card',
        processCardCorrectNumberDigits:'Please enter the correct number of process cards',
        selectProcess:'Please select process',
        firstProcessNotReview:'The first process does not need to be audited',
        thisProcessNotProcessCard:'This procedure does not belong to the process card',
        noDataThisProcessCard:'This process card data is not queried',
        serialNumber:'The number of serial number',
        quantityNotPreviousProcessNum:'Cannot be greater than the number of the previous operation',
        enterTheSerialNumber:'Please enter serial number',
        correctQuantity:'Correct number of completions or breakdowns',
        processCardArea:'Process Card Area',
        deviceType:'Reporting Equipment',
        pleaseDevice:'Please select a device',
        previousProcess:'Previous Process',
        numberReported:'Quantity Work Available',
        teamsType:'Reporting Team',
        selectTeam:'Please select a team',
        classes:'Shift',
        selectClasses:'Please select flight',
        nextProcess:'Next Process',
        reportingWorkTime:'Date Of Work Application',
        damageList:'Damage List',
        qualityInspector:'Quality Inspector',
        qualityInsStatus:'Quality Inspection Status',
        previousProcessQuantity:'Previous Process Quantity',
        selectBreakageType:'Please select the secondary break type',
        selectBreakageReason:'Please select the reason for the second break',
        selectResponsibleProcess:'Please select the responsible process',
        selectResponsibleEquipment:'Please select the responsible device',
        availableOkReturnProcess:'Use already selected, please select return process',
        enterIntegerGreaterThan:'Enter an integer greater than 0',
        enterIntegerGreaterThanEqualTo:'Please enter an integer that is greater than or equal to 0\n',
        saveAndReview:'Save Andf Review',
        reportingWorkId:'Reporting Work Number',
        reportingProcess:'Reporting Process',
        glassChild:'Glass Child',
        thisCompletedQuantity:'This Completed Quantity',
        thisWornQuantity:'This Worn Quantity',
        passAudit:'Pass The Audit',
        patchCondition:'Patch Condition',
        changeFailed:'修改失败,请检查是否为报工转移订单',
 
        selectResponsibleTeam:'Please select a responsible team',
        selectWorkReportingTeam:'Please select a responsible team',
        successfulModificationOfWorkApplication:'Report modification succeeded',
        theProcessCardNumberCannotBeEmpty:'The process card number cannot be empty',
        unqualified:'Not inspected',
        qualified:'Inspected',
        thisProcess:'This process',
        qualityInsTime:'Quality inspection time',
        completedArea:'Finished area',
        wornArea:' Breakage area',
        pleaseGreaterThanOrEqual1:'Please enter greater than or equal to',
        pleaseGreaterThanOrEqual2:'X number',
        lossCount1:'Loss number',
        lossCount2:'Cannot be greater than',
        pleaseCheckTheOrderNumber1:'Please check the order number',
        pleaseCheckTheOrderNumber2:'Whether the number of reported work is the same',
        pleaseNumber1:'Serial number',
        pleaseNumber2:'Small glass sequence',
        pleaseNumber3:'Actual reporting quantity',
        pleaseNumber4:'Quantity reported',
        pleaseNumber5:'Please refresh the interface and report again',
        pleaseNumber6:'Serial number',
        pleaseNumber7:'The quantity cannot be greater than the quantity of the previous process',
        pleaseNumber8:'Please enter serial number',
        pleaseNumber9:'Correct number of completions or breakdowns',
        pleaseNumber10:'The number of completions cannot be greater than the number of process cards',
 
    },
    productStock:{
        page:{
            productStockList:"Stock Inquiry",
            createProductStock:"Finished product Into Stock",
            storageRecord:"Entry and exit records",
            orderAllocation:'Order Allocation',
            finishedProductOut:'Finished Product Out Of Stock',
            finishedGoodsIssue:'Finished Goods Delivery',
            transferRecord:'Mutual Exchange Records',
            takeOutRecord:'Take Out Records'
        },
        inventoryQuery:'Stock Inquiry',
        finishedProductWarehousing:"Finished product Into Stock ",
        finishedProductOutbound:'Finished Product Out Of Stock',
        finishedProductOrderReturn:"Return Finished Order ",
        reportForms:"Report Forms",
        remarks:"Remarks",
        outbound:'Outbound',
        orderTransfer:'Order Allocation',
        finishedProductPickup:"Finished Goods Delivery ",
        finishedProductRework:"Finished Goods Reprocessing ",
        pleaseEnterTheStorageLocation:'Please input stock no',
        pleaseEnterANote:"Please input remarks ",
        completedQuantity:'Finished Quantity',
        finishedProductInventory:"Finished Product Stock ",
        confirmOutbound:'Delivery Confirmation',
        confirmReceiptOfGoods:'Warehousing Confirmation',
        quantityToBeStockedIn:'Quantity To Be Stocked In',
        return:'Return',
        reverseReviewList:'Reverse Review List',
        receivedSuccessfully:'Successfully entered the warehouse',
        deliverySuccessful:"Successfully transferred out of warehouse ",
        successfullyRetrieved:'Successfully claimed',
        reworkSuccessful:'Successfully rework',
        transferSuccessful:'Successfully mutual exchange',
        reviewSuccessful:'Successfully review ',
        invalidSuccessfully:'Successfully cancel',
        reverseReviewSuccessful:'Successfully re-audit',
        confirmWithdrawal:'Take Out Confirmation',
        pickingOutRecords:'Take Out Records',
        confirmTransfer:'Mutual Exchange Confirmation',
        transferRecords:'Mutual Exchange Records',
        reworkConfirmation:'Rework Confirmation',
        reworkRecords:'Rework Records',
        warehousingRecords:'Warehousing Records',
        outboundRecords:'Outbound Records',
        pleaseSelectTheTypeOfWithdrawal:'Please select the type of withdrawal',
        pleaseSelectTheTypeOfRework:'Please select the type of rework',
        receivedQuantity:'Received Quantity',
        reworkQuantity:'Rework Quantity',
        transferQuantity:'Mutual Exchange Quantity',
        receivedReworkedQuantity:'Received/Reworked Quantity',
        inventoryQuantity:'Inventory Quantity',
        availableQuantity:'Available Quantity',
        newOrderNumber:'New Order Number',
        newOrderId:'New Order Id',
        transferOrderNumber:'Mutual Exchange Order Number',
        operationOrderNumber:'Operation Order Number',
        inventoryArea:'Inventory Location',
        dataVerificationFailed:'Fail data check',
        unselectedData:'No data selected',
        pleaseEnterAPositiveInteger:'Please enter a positive integer',
        pleaseEnterTheOrderIdForTheTransfer:'Please enter the order id for the transfer',
        pleaseEnterTheOrderNumberForTheTransfer:'Please enter the order number for the transfer',
        theTransferQuantityCannotBeGreaterThanTheOrderQuantity:'The quantity of mutual exchange cannot be greater than the number of orders',
        transferQuantityCannotBeEmptyOr0:'The quantity of mutual exchange cannot be empty or 0',
        theClaimedQuantityCannotBeGreaterThanTheOrderQuantity:'The claimed quantity cannot be greater than the number of orders',
        claimedQuantityCannotBeEmptyOr0:'The claimed quantity cannot be empty or 0',
        theReworkQuantityCannotBeGreaterThanTheOrderQuantity:'The quantity of rework cannot be greater than the number of orders',
        reworkQuantityCannotBeEmptyOr0:'Rework quantity cannot be empty or 0',
        storageTime:'Warehouse Entry Time',
        outboundTime:'Time Of Leaving The Warehouse',
        modificationTime:'modification Time',
        productionDate:'Production Date',
        statementDate:'Statement Date',
        approvedDate:'Approved Date',
        creator:'Document Making Staff',
        reviewed:'Audit Staff',
        documentStatus:'Document Status',
        status:'Status',
        totalNumberOfOrders :'Total Number Of Orders',
        quantityAlreadyInStock:'Quantity Already In Stock',
        totalArea:'Total Area',
        singlePieceArea:'Single Piece Area',
        perimeter:'Perimeter',
        returnToWarehouse:'Return To Warehouse',
        entryFailure:'Put in storage failure',
        entry:'Put in storage',
        failedToRetrieve:'Take out failure',
        deliveryFailed:'Delivery failure',
        reworkFailed:'Rework failure',
        transferFailed:'Transfer failure',
        approved:'Audited',
        notPassed:'Not pass',
        cancellationFailed:'The reverse nullification failed',
        voidFailed:'Fail to cancel',
        staterOperationOrderNumber:'Transfer the sales order number',
        endOperationOrderNumber:'Transfer sequence number',
        typeClaim:'Take out type',
        pleaseEnterTheBoxNumber:'Please enter the box number',
 
        boxNumber:'Case number',
        msg1:'The invoice is out of the warehouse. Please refresh the interface',
        msg2:'Invoice inventory number does not exist',
        msg3:'The quantity of incoming orders shall not exceed the total number of orders'
    },
    customer:{
        page:{
            selectCustomer:'Customer Homepage',
            createCustomer:'Increase Customers',
            selectCustomerOrder:'Customer Order'
        },
        pleaseEnterTheCustomerName:'Please enter the customer name',
        pleaseEnterCustomerLevel:"Please enter customer level ",
        pleaseEnterTheAmountOfFunds:'Please enter the amount of funds',
        pleaseEnterTheContactAddress:"Please enter the contact address ",
        pleaseEnterTheContactPerson:"Please enter the contact person ",
        pleaseEnterTheContactPhoneNumber:"Please enter the contact phone number",
        customerGrade:'Customer Grade',
        moneyLimit:"Money Limit ",
        address:"Address ",
        contacts:'Contacts',
        telephone:"Telephone ",
        customerNumber:'Customer Id',
        customerName:"Customer",
        resetting:'Revoke',
        customerOrders:'Customer order',
        orderAmount:'Order amount',
 
        customerAbbreviation:'Customer abbreviation',
        pleaseEnterTheCustomerAbbreviation:'Please enter the customers abbreviation',
        msgList:{
            notCustomerInfo:'未查询到客户信息',
        }
    },
    delivery:{
        page:{
            selectDelivery:'Shipping Homepage',
            selectOrderList:"Order Shipment",
            shipmentDetailsReport:"Delivery detail report  ",
            shipmentProductClassificationReport:"Category report of shipped products ",
            createDelivery:'Create delivery',
            deliveryReport:'Delivery report',
 
        },
        delivery:'Delivery',
        place :'Place',
        technology:'Technology',
        produce:'Produce',
        traveler:'Traveler',
        warehousing:'Warehousing',
        unpaidQuantity:"Quantity not shipped",
        availableStock:'Available Stock',
        deliveryQuantity:'Delivery Quantity',
        pleaseEnterTheAmountOfFunds:'Please enter the project name',
        pleaseSelectPaymentTerms:"Please select payment terms ",
        pleaseEnterThePaymentMethod:"Please enter the payment method ",
        pleaseSelectTheSameCustomerOrder:'Please select the same customer order',
        deliveryNoteSubmittedSuccessfully:"Delivery note submitted successfully",
        pleaseEnterANumericalValueGreaterThanOrEqualTo0:'Please enter a numerical value greater than or equal to 0',
        theShipmentQuantityCannotBeGreaterThanTheInventoryQuantity:"The shipment quantity cannot be greater than the inventory quantity ",
        theShipmentQuantityCannotBeEmptyOr0:"The shipment quantity cannot be empty or 0 ",
        paymentTerms:'Payment Terms',
        paymentDate:"Payment Date ",
        selectDate:'Select Date',
        paymentMethod:"Payment Method ",
        shippingAddress:'Shipping Address',
        deliveryReportDate:'Delivery Report Date',
        shipper:"Shipper ",
        deliveryNoteId:'Delivery Note Id',
        deliveryNoteNumber:'Delivery Note Number',
        deliveryDate:"Delivery Date ",
        contacts:'Contact person',
        contactNumber:'Contact number',
        salesman:'Salesman',
        money:'Amount',
 
        pleaseSelectTheSameCustomerProject:'Please select the project for the same customer',
        noMoney:'No money',
        freightPrice:'Freight Price',
        freightQuantity:'Freight Quantity',
        freight:'Freight Money',
        pleaseMsg1:'There are other amounts in the order and the unit price is not filled in',
 
    },
    replenish:{
        page:{
            selectReplenish:"Patch Management",
            addReplenish:"Add Patches",
            printReplenishFlowCard:"Print Patches"
        },
        patchManagement:'Patch Management',
        addPatches:"Add Patches ",
        printPatches:'Print Patches',
        patchNumber:'Patch Number',
        mark:'Mark',
        sliceMarking:'Slice Marking',
 
    },
    rework:{
        page:{
            selectRework:"Rework Management",
            addRework:"Add Rework",
            printReworkFlowCard:"Print Rework"
        },
        reworkManagement:'Rework Management',
        addRework:"Add Rework ",
        printRework:'Print Rework',
        reworkNumber:'Rework Number',
        reworkTeam:'Rework Team',
        reasonForRework:"Reason For Rework ",
        reworkProcess:'Rework Process',
        reworkType:'Rework Type',
        reworkArea:'Rework Area',
        responsibilityInformation:'responsibility Information',
        PleaseSelectAReworkTeam:'Please select a rework team',
        TheReworkQuantityCannotBeGreaterThanTheSecondBreakQuantity:'The rework quantity cannot be greater than the second break quantity',
        reworkQuantityCannotBeEmptyOr0:'Rework quantity cannot be empty or 0',
    },
 
 
    role:{
        page:{
            roleList:'Role Home',
        },
        id:'ID',
        characterHomepage:'Role Home',
        role:'Character',
        roleAdd:'Role addition',
        menu:'Menu',
        page1:'Page',
        permission:'Limits of authority',
        rolePermissions:'Role authority',
        permissionSelection:'Permission selection',
        ConfirmModifyingRolePermissions:'Are you sure you want to modify the role rights?',
        PleaseEnterANewRole:'Please enter a new role',
        AddANewRole:'New role',
        CannotBeEmptyAndTheLengthCannotExceed255:'The value cannot be empty and cannot exceed 255 characters',
    },
    user:{
        page:{
            userList:'User home page',
        },
        userId:'User ID',
        user:'User',
        setUpRoles:'Set a role',
        changePassword:'Change password',
        OldPassword:'Old password',
        TheNewPassword:'New password',
        ConfirmPassword:'Confirm password',
        OldPasswordCannotBeEmpty:'The old password cannot be empty',
        TheNewPasswordCannotBeEmpty:'The new password cannot be empty',
        ThePasswordLengthCannotBeLessThan6OrMoreThan16:'The password cannot be less than 6 or more than 16 characters',
        ConfirmPasswordCannotBeEmpty:'Confirm that the password cannot be empty',
        TheTwoPasswordsAreNotTheSame:'Two different passwords',
        OldPasswordError:'Old password error',
        roleSelection:'Role Selection',
 
        userName:'User name',
        changeUserName:'Modifying a user name',
        userNameCannotBeEmpty:'The user name cannot be empty',
    },
    orderBasicData:{
        page:{
            searchOrderBasicData:'Base type',
            searchGlassType:'Type of glass',
        },
        glassCategory:'Type of glass',
        order:'Order',
        orderType:'Order type',
        orderClassify:'Order classification',
        icon:'Trademark option',
        packType:'Packing method',
        alType:'Aluminum strip system',
        saleMan:'Sales',
        product:'Product',
        stuffThickness:'Material thickness',
        stuffColor:'Material color',
        stuffCraft:'Process attribute',
        stuffPosition:'Glass position',
        stuffLowE:'lowe',
        InterlayerThickness:'Lamination thickness',
        InterlayerType:'Type of glue',
        InterlayerColor:'Lamination color',
        process:'Process flow',
        hollowThickness:'IGU thickness',
        hollowGasType:'Aeration mode',
        hollowType:'Sealing compound',
        hollowGlueDepth:'Default glue depth',
        paymentTerms:'Payment terms',
        payMethod:'Payment method',
        delivery:'Deliver goods',
        name:'Name',
        level:'Class level',
        firstLevel:'Primary class',
        towLevel:'Secondary class',
        alias:'alias',
        msg1:'Upload picture size can not exceed 5MB!',
        msg2:'Upload picture can only be JPG or PNG format!',
        selectFile:'Selecting file',
        msg3:'Only jpg/png files can be uploaded and the size does not exceed 5 MB',
        commonProcess:'普通工序',
        laminatingProcessA:'夹胶后合片工序',
        laminatingProcessB:'中空后合片工序',
        laminatingProcessC:'夹胶工序',
        laminatingProcessD:'中空工序',
    },
    machine:{
        page:{
            selectMachine:'Equipment management',
            addMachine:"Device addition",
            maintenanceAndRepair:"Maintenance and repair",
            addMaintenanceAndRepair:"Maintenance and repair added"
        },
        basicId:'Equipment number',
        basicName:'Device name',
        basicCategory:'Working procedure',
        type:'Type',
        faultTime:'Failure date',
        faultReason:'Fault cause',
        maintenanceTime:'Maintenance date',
        maintenanceIllustrate:'Maintenance instructions',
        startTime:'Repair/maintenance start time',
        stopTime:'Repair/maintenance end time',
        process:'Working procedure',
        personnel:'Repair/maintenance personnel',
        cost:'Expense',
        equipmentSituation:'Equipment condition',
        equipmentAddition:'Device addition',
        maintenanceAndRepair:'Maintenance and repair',
        maintenanceAndRepairAddition:'Maintenance and repair added',
        maintenanceAndRepairEdit:'Maintenance and repair editor',
        service:'Repair',
        maintain:'upkeep',
        faultCount:'Maintenance frequency',
        maintenanceCount:'Maintenance times',
        faultLastTime:'Last maintenance time',
        maintenanceLastTime:'Last maintenance time',
        faultCost:'Fixing cost',
        maintenanceCost:'Maintenance cost',
        deviceEditing:'Device editing',
        standardName:'Standard name',
        purchaseTime:'Purchase time',
        installationTime:'Installation time',
        maintenanceCycle:'Maintenance cycle',
        cutting:'Cutting',
        edgeGrinding:'Edging',
        tempering:'Tempering',
    },
    report:{
        page:{
            productionReport:'Production report',
            workInProgress:'Product in process report',
            processToBeCompleted:'Process to be completed report',
            productionSchedule:'Production and delivery progress report',
            processCardProgress:'Flow card progress report',
            orderPlanDecomposition:'Flow card progress report',
            damageReport:'Breakage statement',
            crossProcessBreaking:'Cross process breakage report',
            teamOutput:'Team production report',
            splittingDetailsOutside:'Separate frame detail report',
            taskCompletionStatus:'Task completion report',
            rawMaterialRequisition:'Raw material requisition report',
            qualityReport:'Quality statement',
            productionScheduling:'Production scheduling report',
            yield:'Yield report',
            finishedProductReport :'Finished product report',
        },
        productionReport:'Production report',
        workInProgressReport:'Product in process report',
        processToBeCompleted:'Process to be completed report',
        productionAndShippingProgress:'Production and delivery progress report',
        processCardProgress:'Flow card progress report',
        orderPlanDecomposition:'Order plan breakdown report',
        secondaryBrokenReport:' Breakage statement',
        crossProcessBreakdown:'Cross process breakage report',
        teamOutput:'Team production report',
        splittingDetails:'Separate frame detail report',
        TaskCompletionStatus:'Task completion report',
        rawMaterialRequisition:'Raw material requisition report',
        qualityReport:'Quality statement',
        productionScheduling:'Production scheduling report',
        yieldReport:'Yield report',
        workingProcedure:'Process',
        inventoryArea:'Stock area(m²)',
        pleaseSelectADateFirst:'Please select the date first',
        pleaseSelectAProcessFirst:'Please select the process first',
        theFilteringTimeForExportCannotExceed180Days:'The export filtering period cannot exceed 180 days',
        orderTime :'Order time',
        deliveryDate:'Delivery date',
        completedQuantity:'Quantity completed',
        completedArea:'Finished area',
        unfinishedQuantity :'Unfinished quantity',
        unfinishedArea:'Unfinished area',
        inventoryNum:'Quantity in storage',
        shippedQuantity :'Quantity delivered',
        area:'Delivery area',
        noDataFoundForThisOrder:'This order data is not found',
        startTime:'Cutting start time',
        daysDifference :'Days of production',
        accomplish:'Yes or no list',
        receivedNo:'Quantity not in storage',
        projectNo :'Project number',
        quantityClaimed :'Quantity received',
        areaClaimed :'Received area',
        dateClaimed :'Received date',
        quantityMax :'Input quantity',
        patchNum :'Patch number',
        finished :'Rate of finished product',
        finishedProductReport :'Finished product report',
        workProcessName:'在制品名称',
    },
    productionBasicData:{
        page:{
            selectProductionBasicData:"Basic data query",
            addBreakageType:"New secondary break type",
            addBreakageReason:"Secondary failure cause added",
            addTeamGroup:"Group Added Added"
        },
        basicDataQuery :'Basic data query',
        newTypeOfSecondaryDamageAdded :'New secondary break type',
        reasonForSecondaryFailureAdded :'Secondary failure cause added',
        teamAdditionAndAddition :'Group Added Added',
        id:'id',
        basicName:'category',
        basicDataEdit:'Basic data modification',
        teamName:'Squad name',
        processInvolved:'Working procedure',
    },
    ingredients:{
        page:{
            selectIngredients:"Material data",
            createIngredients:"Material addition"
        },
        materialInformation :'Material data',
        materialAddition :'Material addition',
        originalFilm :'Original glass',
        accessories :'Accessory',
        materialCode :'Material code',
        pleaseSelectACategory :'Please select category',
        films :'Coating Type',
        pleaseEnterData :'Please enter data',
        pleaseEnter :'Please enter',
        msg1 :'This material is already in stock and cannot be deleted',
        unit :'unit',
    },
    ingredientsStock:{
        page:{
            selectIngredientsStock:"Material inventory",
            materialOutbound:"Material delivery",
            returnToStorage:"Return to the warehouse",
            selectSurplusMaterials:"Waste material management",
            createOutbound:'New material delivery',
            returnToStorageCreate:'Returned warehouse addition'
        },
        materialName :'Material name',
        producer :'Place of origin',
        dateOfManufacture :'Production date',
        selectIngredientsStock :'Material inventory',
        materialOutbound :'Material delivery',
        returnToStorage :'Return to the warehouse',
        inventory :'Inventory',
        engineering :'Engineering',
        inventoryOrganization :'Inventory organization',
        id :'Stock number',
        projectNo :'Project number',
        planQuantity :'Planned quantity',
        qualityGuaranteePeriod :'Shelf life',
        pleaseSelectInventoryOrganization :'Please select an inventory organization',
        pleaseEnterTheQuantity :'Please enter quantity',
        pleaseDateOfManufacture :'Please select a production date',
        materialOutboundId :'The invoice number',
        materialRequisitionPersonnel :'Material handler',
        materialRequisitionTeam :'Material requisition team',
        outboundType :'Outbound type',
        warehouseManager :'Warehouse keeper',
        materialRequisitionDate :'Material claim date',
        reviewed :'Auditor',
        reviewedTime :'Audit time',
        outboundQuantity :'Out of stock quantity',
        materialOutboundType :'Type of material out of storage',
        pleaseOutboundType :'Please select an out stock type',
        pleaseMaterialRequisitionPersonnel :'Please enter material handler',
        pleaseMaterialRequisitionTeam :'Please enter the material collection team',
        pleaseOrderId :'Please enter the sales order number',
        theOutboundQuantityCannotBeGreaterThanTheAvailableQuantity :'The outbound quantity cannot be greater than the available quantity',
        theOutboundQuantityCannotBeEmptyOrEqualTo0 :'The quantity of out of stock cannot be empty or equal to 0',
        theReturnQuantityCannotBeEmptyOrEqualTo0 :'The number of returned repositories cannot be empty or equal to 0',
        returningId :'Return receipt number',
        returningType :'Returned warehouse type',
        returningAdd :'Returned warehouse addition',
        returnQuantity :'Quantity returned to storage',
        materialReturnType :'Material return type',
        createTime :'Returned warehouse date',
 
        surplusMaterialManagement :'Waste material management',
        additionOfSurplusMaterials :'Surplus addition',
        excessMaterialOutflow :'Residual materials out of storage',
        pleaseSelectTheTypeOfReturnToStock:'Please select a return type'
    },
    warehouseBasicData:{
        page:{
            warehouseSearchBasicData:"Warehouse Basic Data"
        },
        BasicData :'Basic data',
        operateTypeName :'Name',
        operateType :'Another name',
        type :'Type',
        takeOut :'Take out',
    },
    stockReport:{
        page:{
            warehouseReport:"Warehouse Basic Data",
            finishedProductReport:"Finished product report",
            materialReport:"Material statement",
 
        },
        finishedProductInventoryReport:"Finished product receipt report",
        finishedProductOutboundReport:"Finished product delivery report",
        finishedProductTransferReport:"Finished product transfer report",
        finishedProductDeliveryReport:"Finished product take-out report",
        materialAdditionReport:"Material addition report",
        materialOutboundReport:"Material delivery report",
        materialReturnReport:"Material return report",
        optimizeOutboundReport:"优化出库报表",
        optimizeQuantity:"优化使用数量",
    },
    components:{
        addNewSignature :'Add label name',
        addColumnNames :'New column name',
        message :'Please enter a non-empty character with a maximum of 20 characters',
        activeName :'Tag list',
        orderHeader :'Order header',
        finishedProduct :'Finished product',
        semiFinishedProducts :'Semi-finished product',
        pleaseClickToSelectARowFirst :'Click the select row first',
        otherProcessing :'Other processing',
        inconsistentParameters :'The required parameters are inconsistent',
        strip :'Piece',
        exportSelected :'Export selected',
    },
 
    menu:{
        "1" :'Sales and Distribution',
        "2" :'Production Planning',
        "3" :'Material Manage',
        "4" :'User Manage',
 
        product :'Product',
        order :'Order',
        delivery :'Delivery',
        returns :'Returns',
        customer :'Customer',
        workOrder :'Work Order',
        processCard :'Process Card',
        reportingWorks :'Report for work',
        rework :'Rework',
        replenish :'Replenish',
        machine :'Machine',
        BOM :'BOM',
        report :'Report',
        productStock :'Product Stock',
        ingredientsStock :'Ingredients Stock',
        ingredients :'Ingredients',
        trader :'Trader',
        stockReport :'Stock Report',
        purchaseOrder :'Purchase Order',
        purchaseStorage :'Purchase Storage',
        purchaseReturn :'Purchase Return',
        orderBasicData :'Order Basic Data',
        productionBasicData :'Production Basic Data',
        warehouseBasicData :'Warehouse Basic Data',
        user :'User',
        role :'Role',
        userPassWord :'User Pass Word',
        glassPrice:'Glass Price',
        glassOptimize:'玻璃优化'
    },
 
    glassPrice:{
        glassPriceComputed:'Glass quotation',
        priceSet:'Price setting',
        priceList:'Price list',
        msg:{
            error1:'Please select all parameters',
            error2:'This membrane system already exists, please re-select',
            success:'Data saved successfully',
            addProduce:'Please add the product first'
        },
        glass:'glass',
        interlayer:'gum',
        hollow:'hollow',
        process:'process',
        addProduce:'Select product',
        reorder:'reorder'
    }
 
 
}