-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvi.csv
We can't make this file beautiful and searchable because it's too large.
8167 lines (8152 loc) · 874 KB
/
vi.csv
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
DocType: Accounting Period,Period Name,Tên kỳ
DocType: Employee,Salary Mode,Chế độ tiền lương
apps/erpnext/erpnext/public/js/hub/marketplace.js,Register,Ghi danh
apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js,Partially Received,Nhận một phần
DocType: Patient,Divorced,Đa ly dị
DocType: Support Settings,Post Route Key,Khóa tuyến đường bưu chính
DocType: Buying Settings,Allow Item to be added multiple times in a transaction,Cho phép hàng để được thêm nhiều lần trong một giao dịch
DocType: Content Question,Content Question,Nội dung câu hỏi
apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py,Cancel Material Visit {0} before cancelling this Warranty Claim,Cancel Material Visit {0} before cancelling this Warranty Claim
DocType: Customer Feedback Table,Qualitative Feedback,Phản hồi định tính
apps/erpnext/erpnext/config/education.py,Assessment Reports,Báo cáo đánh giá
DocType: Invoice Discounting,Accounts Receivable Discounted Account,Tài khoản giảm giá phải thu
apps/erpnext/erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js,Canceled,Đã hủy
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Consumer Products,Sản phẩm tiêu dùng
DocType: Supplier Scorecard,Notify Supplier,Thông báo cho Nhà cung cấp
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js,Please select Party Type first,Vui lòng chọn loại đối tác đầu tiên
DocType: Item,Customer Items,Mục khách hàng
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py,Liabilities,Nợ phải trả
DocType: Project,Costing and Billing,Chi phí và thanh toán
apps/erpnext/erpnext/hr/doctype/employee_advance/employee_advance.py,Advance account currency should be same as company currency {0},Đơn vị tiền tệ của tài khoản trước phải giống với đơn vị tiền tệ của công ty {0}
DocType: QuickBooks Migrator,Token Endpoint,Điểm cuối mã thông báo
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0}: Parent account {1} can not be a ledger,Tài khoản {0}: tài khoản mẹ {1} không thể là một sổ cái
DocType: Item,Publish Item to hub.erpnext.com,Xuất bản mẫu hàng tới hub.erpnext.com
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Cannot find active Leave Period,Không thể tìm thấy Khoảng thời gian rời khỏi hoạt động
apps/erpnext/erpnext/hr/doctype/employee/employee_dashboard.py,Evaluation,Đánh giá
DocType: Item,Default Unit of Measure,Đơn vị đo mặc định
DocType: SMS Center,All Sales Partner Contact,Tất cả Liên hệ Đối tác Bán hàng
DocType: Department,Leave Approvers,Để lại người phê duyệt
DocType: Employee,Bio / Cover Letter,Bio / Cover Letter
apps/erpnext/erpnext/public/js/hub/pages/Publish.vue,Search Items ...,Tìm kiếm mục ...
DocType: Patient Encounter,Investigations,Điều tra
DocType: Restaurant Order Entry,Click Enter To Add,Nhấp Enter để Thêm
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py,"Missing value for Password, API Key or Shopify URL","Thiếu giá trị cho Mật khẩu, Khóa API hoặc URL Shopify"
DocType: Employee,Rented,Thuê
apps/erpnext/erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js,All Accounts,Tất cả các tài khoản
apps/erpnext/erpnext/hr/doctype/employee_transfer/employee_transfer.py,Cannot transfer Employee with status Left,Không thể chuyển nhân viên có trạng thái sang trái
DocType: Vehicle Service,Mileage,Cước phí
apps/erpnext/erpnext/assets/doctype/asset/asset.js,Do you really want to scrap this asset?,Bạn có thực sự muốn tháo dỡ tài sản này?
DocType: Drug Prescription,Update Schedule,Cập nhật Lịch trình
apps/erpnext/erpnext/buying/report/quoted_item_comparison/quoted_item_comparison.js,Select Default Supplier,Chọn Mặc định Nhà cung cấp
apps/erpnext/erpnext/hr/doctype/job_offer/job_offer.js,Show Employee,Hiển thị nhân viên
DocType: Payroll Period,Standard Tax Exemption Amount,Số tiền miễn thuế tiêu chuẩn
DocType: Exchange Rate Revaluation Account,New Exchange Rate,Tỷ giá hối đoái mới
apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py,Currency is required for Price List {0},Tiền tệ là cần thiết cho Danh sách Price {0}
DocType: Sales Taxes and Charges Template,* Will be calculated in the transaction.,* Sẽ được tính toán trong giao dịch.
DocType: Delivery Trip,MAT-DT-.YYYY.-,MAT-DT-.YYYY.-
DocType: Purchase Order,Customer Contact,Liên hệ Khách hàng
DocType: Shift Type,Enable Auto Attendance,Kích hoạt tự động tham dự
apps/erpnext/erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js,Please enter Warehouse and Date,Vui lòng nhập kho và ngày
DocType: Lost Reason Detail,Opportunity Lost Reason,Cơ hội mất lý do
DocType: Patient Appointment,Check availability,Sẵn sàng kiểm tra
DocType: Retention Bonus,Bonus Payment Date,Ngày thanh toán thưởng
DocType: Employee,Job Applicant,Nộp đơn công việc
DocType: Job Card,Total Time in Mins,Tổng thời gian tính bằng phút
apps/erpnext/erpnext/buying/doctype/supplier/supplier_dashboard.py,This is based on transactions against this Supplier. See timeline below for details,Điều này được dựa trên các giao dịch với nhà cung cấp này. Xem dòng thời gian dưới đây để biết chi tiết
DocType: Manufacturing Settings,Overproduction Percentage For Work Order,Phần trăm sản xuất quá mức cho đơn đặt hàng công việc
DocType: Landed Cost Voucher,MAT-LCV-.YYYY.-,MAT-LCV-.YYYY.-
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Legal,Hợp lêk
DocType: Sales Invoice,Transport Receipt Date,Ngày nhận vận chuyển
DocType: Shopify Settings,Sales Order Series,Chuỗi đặt hàng bán hàng
DocType: Vital Signs,Tongue,Lưỡi
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Actual type tax cannot be included in Item rate in row {0},Thuế loại hình thực tế không thể được liệt kê trong định mức vật tư ở hàng {0}
DocType: Allowed To Transact With,Allowed To Transact With,Được phép giao dịch với
DocType: Bank Guarantee,Customer,Khách hàng
DocType: Purchase Receipt Item,Required By,Yêu cầu bởi
DocType: Delivery Note,Return Against Delivery Note,Trả về đối với giấy báo giao hàng
DocType: Asset Category,Finance Book Detail,Chi tiết Sách Tài chính
apps/erpnext/erpnext/assets/doctype/asset/asset.py,All the depreciations has been booked,Tất cả các khấu hao đã được đặt
DocType: Purchase Order,% Billed,% Hóa đơn đã lập
apps/erpnext/erpnext/hr/report/bank_remittance/bank_remittance.py,Payroll Number,Số biên chế
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Exchange Rate must be same as {0} {1} ({2}),Tỷ giá ngoại tệ phải được giống như {0} {1} ({2})
DocType: Employee Tax Exemption Declaration,HRA Exemption,Miễn phí HRA
DocType: Sales Invoice,Customer Name,Tên khách hàng
DocType: Vehicle,Natural Gas,Khí ga tự nhiên
DocType: Project,Message will sent to users to get their status on the project,Tin nhắn sẽ được gửi đến người dùng để có được trạng thái của họ trong dự án
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Bank account cannot be named as {0},Tài khoản ngân hàng không thể được đặt tên là {0}
DocType: Employee Tax Exemption Declaration,HRA as per Salary Structure,HRA theo cấu trúc lương
DocType: Account,Heads (or groups) against which Accounting Entries are made and balances are maintained.,Người đứng đầu (hoặc nhóm) đối với các bút toán kế toán được thực hiện và các số dư còn duy trì
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,Outstanding for {0} cannot be less than zero ({1}),Đặc biệt cho {0} không thể nhỏ hơn không ({1})
apps/erpnext/erpnext/public/js/controllers/transaction.js,Service Stop Date cannot be before Service Start Date,Ngày ngừng dịch vụ không được trước ngày bắt đầu dịch vụ
DocType: Manufacturing Settings,Default 10 mins,Mặc định 10 phút
DocType: Leave Type,Leave Type Name,Loại bỏ Tên
apps/erpnext/erpnext/templates/pages/projects.js,Show open,Hiện mở
apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py,Series Updated Successfully,Loạt Cập nhật thành công
apps/erpnext/erpnext/templates/includes/cart/cart_dropdown.html,Checkout,Kiểm tra
apps/erpnext/erpnext/controllers/accounts_controller.py,{0} in row {1},{0} trong hàng {1}
DocType: Asset Finance Book,Depreciation Start Date,Ngày bắt đầu khấu hao
DocType: Pricing Rule,Apply On,Áp dụng trên
DocType: Item Price,Multiple Item prices.,Nhiều giá mẫu hàng.
,Purchase Order Items To Be Received,Tìm mua hàng để trở nhận
DocType: SMS Center,All Supplier Contact,Tất cả Liên hệ Nhà cung cấp
DocType: Support Settings,Support Settings,Cài đặt hỗ trợ
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account {0} is added in the child company {1},Tài khoản {0} được thêm vào công ty con {1}
apps/erpnext/erpnext/erpnext_integrations/doctype/exotel_settings/exotel_settings.py,Invalid credentials,Thông tin không hợp lệ
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,ITC Available (whether in full op part),ITC Có sẵn (cho dù trong phần op đầy đủ)
DocType: Amazon MWS Settings,Amazon MWS Settings,Cài đặt MWS của Amazon
apps/erpnext/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.py,Processing Vouchers,Phiếu chế biến
apps/erpnext/erpnext/utilities/transaction_base.py,Row #{0}: Rate must be same as {1}: {2} ({3} / {4}) ,hàng # {0}: giá phải giống {1}: {2} ({3} / {4})
,Batch Item Expiry Status,Tình trạng hết lô hàng
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Bank Draft,Hối phiếu ngân hàng
DocType: Journal Entry,ACC-JV-.YYYY.-,ACC-JV-.YYYY.-
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Total Late Entries,Tổng số bài dự thi muộn
DocType: Mode of Payment Account,Mode of Payment Account,Phương thức thanh toán Tài khoản
apps/erpnext/erpnext/config/healthcare.py,Consultation,Tư vấn
DocType: Accounts Settings,Show Payment Schedule in Print,Hiển thị lịch thanh toán in
apps/erpnext/erpnext/stock/doctype/item/item.py,Item Variants updated,Mục biến thể được cập nhật
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py,Sales and Returns,Bán hàng và Trả hàng
apps/erpnext/erpnext/stock/doctype/item/item.js,Show Variants,Hiện biến thể
DocType: Academic Term,Academic Term,Thời hạn học tập
DocType: Employee Tax Exemption Sub Category,Employee Tax Exemption Sub Category,Danh mục phụ miễn thuế cho nhân viên
apps/erpnext/erpnext/regional/italy/utils.py,Please set an Address on the Company '%s',Vui lòng đặt Địa chỉ trên Công ty '% s'
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.py,Material,Vật liệu
apps/erpnext/erpnext/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,"Maximum benefit of employee {0} exceeds {1} by the sum {2} of benefit application pro-rata component\
amount and previous claimed amount",Lợi ích tối đa của nhân viên {0} vượt quá {1} bằng tổng {2} thành phần pro-rata của ứng dụng lợi ích \ số tiền và số tiền được xác nhận trước đó
DocType: Opening Invoice Creation Tool Item,Quantity,Số lượng
,Customers Without Any Sales Transactions,Khách hàng không có bất kỳ giao dịch bán hàng nào
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Accounts table cannot be blank.,Bảng tài khoản không được bỏ trống
DocType: Delivery Trip,Use Google Maps Direction API to calculate estimated arrival times,Sử dụng API chỉ đường của Google Maps để tính thời gian đến ước tính
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Loans (Liabilities),Các khoản vay (Nợ phải trả)
DocType: Patient Encounter,Encounter Time,Thời gian gặp
DocType: Staffing Plan Detail,Total Estimated Cost,Tổng chi phí ước tính
DocType: Employee Education,Year of Passing,Year of Passing
DocType: Routing,Routing Name,Tên định tuyến
DocType: Item,Country of Origin,Nước sản xuất
DocType: Soil Texture,Soil Texture Criteria,Tiêu chuẩn kết cấu đất
apps/erpnext/erpnext/templates/generators/item/item_add_to_cart.html,In Stock,Trong tồn kho
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Contact Details,Chi tiết liên hệ chính
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Open Issues,Các vấn đề mở
DocType: Production Plan Item,Production Plan Item,Kế hoạch sản xuất hàng
DocType: Leave Ledger Entry,Leave Ledger Entry,Rời khỏi sổ cái
apps/erpnext/erpnext/hr/doctype/employee/employee.py,User {0} is already assigned to Employee {1},Người sử dụng {0} đã được giao cho nhân viên {1}
DocType: Lab Test Groups,Add new line,Thêm dòng mới
apps/erpnext/erpnext/utilities/activation.py,Create Lead,Tạo khách hàng tiềm năng
DocType: Production Plan,Projected Qty Formula,Công thức Qty dự kiến
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Health Care,Chăm sóc sức khỏe
apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py,Delay in payment (Days),Chậm trễ trong thanh toán (Ngày)
DocType: Payment Terms Template Detail,Payment Terms Template Detail,Chi tiết Mẫu Điều khoản Thanh toán
DocType: Hotel Room Reservation,Guest Name,Tên khách
DocType: Delivery Note,Issue Credit Note,Phát hành ghi chú tín dụng
DocType: Lab Prescription,Lab Prescription,Lab Prescription
,Delay Days,Delay Days
apps/erpnext/erpnext/hr/report/vehicle_expenses/vehicle_expenses.py,Service Expense,Chi phí dịch vụ
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Serial Number: {0} is already referenced in Sales Invoice: {1},Số sê-ri: {0} đã được tham chiếu trong Hóa đơn bán hàng: {1}
DocType: Bank Statement Transaction Invoice Item,Invoice,Hóa đơn
DocType: Employee Tax Exemption Declaration Category,Maximum Exempted Amount,Số tiền được miễn tối đa
DocType: Purchase Invoice Item,Item Weight Details,Chi tiết Trọng lượng Chi tiết
DocType: Asset Maintenance Log,Periodicity,Tính tuần hoàn
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,Fiscal Year {0} is required,Năm tài chính {0} là cần thiết
apps/erpnext/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py,Net Profit/Loss,Lãi / lỗ ròng
DocType: Employee Group Table,ERPNext User ID,ID người dùng ERPNext
DocType: Crop Cycle,The minimum distance between rows of plants for optimum growth,Khoảng cách tối thiểu giữa các hàng cây để tăng trưởng tối ưu
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Please select Patient to get prescribed procedure,Vui lòng chọn Bệnh nhân để làm thủ tục theo quy định
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Defense,Quốc phòng
DocType: Salary Component,Abbr,Viết tắt
DocType: Appraisal Goal,Score (0-5),Điểm số (0-5)
DocType: Tally Migration,Tally Creditors Account,Tài khoản chủ nợ
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: {1} {2} does not match with {3},Dãy {0}: {1} {2} không phù hợp với {3}
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Row # {0}:,Hàng # {0}:
DocType: Timesheet,Total Costing Amount,Tổng chi phí
DocType: Sales Invoice,Vehicle No,Phương tiện số
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Please select Price List,Vui lòng chọn Bảng giá
DocType: Accounts Settings,Currency Exchange Settings,Cài đặt Exchange tiền tệ
DocType: Work Order Operation,Work In Progress,Đang trong tiến độ hoàn thành
DocType: Leave Control Panel,Branch (optional),Chi nhánh (tùy chọn)
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,Row {0}: user has not applied rule <b>{1}</b> on the item <b>{2}</b>,Hàng {0}: người dùng chưa áp dụng quy tắc <b>{1}</b> cho mục <b>{2}</b>
apps/erpnext/erpnext/education/report/absent_student_report/absent_student_report.py,Please select date,Vui lòng chọn ngày
DocType: Item Price,Minimum Qty ,Số lượng tối thiểu
DocType: Finance Book,Finance Book,Sách Tài chính
DocType: Patient Encounter,HLC-ENC-.YYYY.-,HLC-ENC-.YYYY.-
DocType: Daily Work Summary Group,Holiday List,Danh sách kỳ nghỉ
apps/erpnext/erpnext/config/quality_management.py,Review and Action,Đánh giá và hành động
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,This employee already has a log with the same timestamp.{0},Nhân viên này đã có một nhật ký với cùng dấu thời gian. {0}
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Accountant,Kế toán viên
apps/erpnext/erpnext/stock/report/item_price_stock/item_price_stock.py,Selling Price List,Bảng giá bán
DocType: Patient,Tobacco Current Use,Sử dụng thuốc lá
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Selling Rate,Giá bán
DocType: Cost Center,Stock User,Cổ khoản
DocType: Soil Analysis,(Ca+Mg)/K,(Ca + Mg) / K
DocType: Delivery Stop,Contact Information,Thông tin liên lạc
apps/erpnext/erpnext/public/js/hub/pages/Search.vue,Search for anything ...,Tìm kiếm bất cứ điều gì ...
DocType: Company,Phone No,Số điện thoại
DocType: Delivery Trip,Initial Email Notification Sent,Đã gửi Thông báo Email ban đầu
DocType: Bank Statement Settings,Statement Header Mapping,Ánh xạ tiêu đề bản sao
,Sales Partners Commission,Hoa hồng đại lý bán hàng
DocType: Soil Texture,Sandy Clay Loam,Sandy Clay Loam
DocType: Purchase Invoice,Rounding Adjustment,Điều chỉnh làm tròn
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation cannot have more than 5 characters,Tên viết tắt không thể có nhiều hơn 5 ký tự
DocType: Amazon MWS Settings,AU,AU
DocType: Payment Order,Payment Request,Yêu cầu thanh toán
apps/erpnext/erpnext/config/retail.py,To view logs of Loyalty Points assigned to a Customer.,Để xem nhật ký các Điểm khách hàng thân thiết được chỉ định cho Khách hàng.
DocType: Asset,Value After Depreciation,Giá trị Sau khi khấu hao
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,"Did not found transfered item {0} in Work Order {1}, the item not added in Stock Entry","Không tìm thấy mục đã chuyển {0} trong Lệnh làm việc {1}, mục không được thêm vào trong mục nhập kho"
DocType: Student,O+,O+
apps/erpnext/erpnext/stock/doctype/material_request/material_request_dashboard.py,Related,có liên quan
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,Attendance date can not be less than employee's joining date,ngày tham dự không thể ít hơn ngày tham gia của người lao động
DocType: Grading Scale,Grading Scale Name,Phân loại khoảng tên
DocType: Employee Training,Training Date,Ngày đào tạo
apps/erpnext/erpnext/public/js/hub/marketplace.js,Add Users to Marketplace,Thêm người dùng vào Marketplace
apps/erpnext/erpnext/accounts/doctype/account/account.js,This is a root account and cannot be edited.,Đây là một tài khoản gốc và không thể được chỉnh sửa.
DocType: POS Profile,Company Address,Địa chỉ công ty
DocType: BOM,Operations,Tác vụ
apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py,Cannot set authorization on basis of Discount for {0},Không thể thiết lập ủy quyền trên cơ sở giảm giá cho {0}
apps/erpnext/erpnext/regional/india/utils.py,e-Way Bill JSON cannot be generated for Sales Return as of now,"Hiện tại, JSON JSON không thể được tạo cho Doanh thu bán hàng"
DocType: Subscription,Subscription Start Date,Ngày bắt đầu đăng ký
DocType: Healthcare Settings,Default receivable accounts to be used if not set in Patient to book Appointment charges.,Các tài khoản phải thu được mặc định sẽ được sử dụng nếu không được đặt trong Bệnh nhân để tính các chi phí cuộc hẹn.
DocType: Rename Tool,"Attach .csv file with two columns, one for the old name and one for the new name","Đính kèm tập tin .csv với hai cột, một cho tên tuổi và một cho tên mới"
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,From Address 2,Từ địa chỉ 2
apps/erpnext/erpnext/hr/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.js,Get Details From Declaration,Nhận thông tin chi tiết từ Tuyên bố
apps/erpnext/erpnext/accounts/utils.py,{0} {1} not in any active Fiscal Year.,{0} {1} không trong bất kỳ năm tài chính có hiệu lực nào.
DocType: Packed Item,Parent Detail docname,chi tiết tên tài liệu gốc
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py,"Reference: {0}, Item Code: {1} and Customer: {2}","Tham khảo: {0}, Mã hàng: {1} và Khách hàng: {2}"
apps/erpnext/erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py,{0} {1} is not present in the parent company,{0} {1} không có mặt trong công ty mẹ
apps/erpnext/erpnext/accounts/doctype/subscription/subscription.py,Trial Period End Date Cannot be before Trial Period Start Date,Ngày kết thúc giai đoạn dùng thử không thể trước ngày bắt đầu giai đoạn dùng thử
apps/erpnext/erpnext/utilities/user_progress.py,Kg,Kg
DocType: Tax Withholding Category,Tax Withholding Category,Danh mục khấu trừ thuế
apps/erpnext/erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py,Cancel the journal entry {0} first,Hủy mục nhập nhật ký {0} trước
DocType: Purchase Invoice,ACC-PINV-.YYYY.-,ACC-PINV-.YYYY.-
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py,BOM is not specified for subcontracting item {0} at row {1},BOM không được chỉ định cho mục thầu phụ {0} tại hàng {1}
DocType: Vital Signs,Reflexes,Phản xạ
apps/erpnext/erpnext/education/doctype/assessment_result_tool/assessment_result_tool.js,{0} Result submittted,{0} Đã gửi kết quả
DocType: Item Attribute,Increment,Tăng
apps/erpnext/erpnext/templates/pages/search_help.py,Help Results for,Kết quả Trợ giúp cho
apps/erpnext/erpnext/public/js/stock_analytics.js,Select Warehouse...,Chọn nhà kho ...
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Advertising,Quảng cáo
apps/erpnext/erpnext/hr/doctype/expense_claim_type/expense_claim_type.py,Same Company is entered more than once,Cùng Công ty được nhập nhiều hơn một lần
DocType: Patient,Married,Kết hôn
apps/erpnext/erpnext/accounts/party.py,Not permitted for {0},Không được phép cho {0}
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Get items from,Lấy dữ liệu từ
DocType: Stock Entry,Send to Subcontractor,Gửi cho nhà thầu phụ
DocType: Purchase Invoice,Apply Tax Withholding Amount,Áp dụng số tiền khấu trừ thuế
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.py,Total completed qty can not be greater than for quantity,Tổng số qty hoàn thành không thể lớn hơn số lượng
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Stock cannot be updated against Delivery Note {0},Hàng tồn kho không thể được cập nhật gắn với giấy giao hàng {0}
apps/erpnext/erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py,Total Amount Credited,Tổng số tiền được ghi có
apps/erpnext/erpnext/templates/generators/item_group.html,No items listed,Không có mẫu nào được liệt kê
DocType: Asset Repair,Error Description,Mô tả lỗi
DocType: Payment Reconciliation,Reconcile,Hòa giải
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Grocery,Cửa hàng tạp hóa
DocType: Quality Inspection Reading,Reading 1,Đọc 1
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Pension Funds,Quỹ lương hưu
DocType: Exchange Rate Revaluation Account,Gain/Loss,Mất lợi
DocType: Crop,Perennial,Lâu năm
DocType: Program,Is Published,Được công bố
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Delivery Notes,Hiển thị ghi chú giao hàng
apps/erpnext/erpnext/controllers/status_updater.py,"To allow over billing, update ""Over Billing Allowance"" in Accounts Settings or the Item.","Để cho phép thanh toán quá mức, hãy cập nhật "Trợ cấp thanh toán quá mức" trong Cài đặt tài khoản hoặc Mục."
DocType: Patient Appointment,Procedure,Thủ tục
DocType: Accounts Settings,Use Custom Cash Flow Format,Sử dụng Định dạng Tiền mặt Tuỳ chỉnh
DocType: SMS Center,All Sales Person,Tất cả nhân viên kd
DocType: Monthly Distribution,**Monthly Distribution** helps you distribute the Budget/Target across months if you have seasonality in your business.,** Đóng góp hàng tháng ** giúp bạn đóng góp vào Ngân sách/Mục tiêu qua các tháng nếu việc kinh doanh của bạn có tính thời vụ
apps/erpnext/erpnext/accounts/page/pos/pos.js,Not items found,Không tìm thấy mặt hàng
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py,Salary Structure Missing,Cơ cấu tiền lương Thiếu
DocType: Lead,Person Name,Tên người
,Supplier Ledger Summary,Tóm tắt sổ cái nhà cung cấp
DocType: Sales Invoice Item,Sales Invoice Item,Hóa đơn bán hàng hàng
DocType: Quality Procedure Table,Quality Procedure Table,Bảng thủ tục chất lượng
DocType: Account,Credit,Có
DocType: POS Profile,Write Off Cost Center,Viết tắt trung tâm chi phí
apps/erpnext/erpnext/public/js/setup_wizard.js,"e.g. ""Primary School"" or ""University""",ví dụ: "Trường Tiểu học" hay "Đại học"
apps/erpnext/erpnext/config/stock.py,Stock Reports,Báo cáo hàng tồn kho
DocType: Warehouse,Warehouse Detail,Chi tiết kho
apps/erpnext/erpnext/hr/doctype/vehicle/vehicle.py,Last carbon check date cannot be a future date,Ngày kiểm tra carbon cuối cùng không thể là một ngày trong tương lai
apps/erpnext/erpnext/education/doctype/academic_term/academic_term.py,The Term End Date cannot be later than the Year End Date of the Academic Year to which the term is linked (Academic Year {}). Please correct the dates and try again.,Những ngày cuối kỳ không thể muộn hơn so với ngày cuối năm của năm học mà điều khoản này được liên kết (Năm học {}). Xin vui lòng sửa ngày và thử lại.
apps/erpnext/erpnext/stock/doctype/item/item.py,"""Is Fixed Asset"" cannot be unchecked, as Asset record exists against the item","""Là Tài Sản Cố Định"" không thể bỏ đánh dấu, vì bản ghi Tài Sản tồn tại đối nghịch với vật liệu"
DocType: Delivery Trip,Departure Time,Giờ khởi hành
DocType: Vehicle Service,Brake Oil,dầu phanh
DocType: Tax Rule,Tax Type,Loại thuế
,Completed Work Orders,Đơn đặt hàng Hoàn thành
DocType: Support Settings,Forum Posts,Bài đăng trên diễn đàn
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,"The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage","Nhiệm vụ này đã được thực hiện như một công việc nền. Trong trường hợp có bất kỳ vấn đề nào về xử lý nền, hệ thống sẽ thêm nhận xét về lỗi trên Bản hòa giải chứng khoán này và hoàn nguyên về giai đoạn Dự thảo"
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,"Sorry,coupon code validity has not started","Xin lỗi, tính hợp lệ của mã phiếu giảm giá chưa bắt đầu"
apps/erpnext/erpnext/regional/india/utils.py,Taxable Amount,Lượng nhập chịu thuế
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,You are not authorized to add or update entries before {0},Bạn không được phép thêm hoặc cập nhật bút toán trước ngày {0}
DocType: Leave Policy,Leave Policy Details,Để lại chi tiết chính sách
DocType: BOM,Item Image (if not slideshow),Hình ảnh mẫu hàng (nếu không phải là slideshow)
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}.,Hàng # {0}: Thao tác {1} chưa được hoàn thành cho {2} qty hàng thành phẩm trong Đơn hàng công việc {3}. Vui lòng cập nhật trạng thái hoạt động thông qua Thẻ công việc {4}.
DocType: Work Order Operation,(Hour Rate / 60) * Actual Operation Time,(Tỷ lệ giờ / 60) * Thời gian hoạt động thực tế
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Row #{0}: Reference Document Type must be one of Expense Claim or Journal Entry,Hàng # {0}: Loại tài liệu tham khảo phải là một trong Yêu cầu bồi thường hoặc Đăng ký tạp chí
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Select BOM,Chọn BOM
DocType: SMS Log,SMS Log,Nhật Ký Tin Nhắn
DocType: Call Log,Ringing,Tiếng chuông
apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py,Cost of Delivered Items,Chi phí của mục Delivered
apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py,The holiday on {0} is not between From Date and To Date,Các kỳ nghỉ vào {0} không ở giữa 'từ ngày' và 'tới ngày'
DocType: Inpatient Record,Admission Scheduled,Kế hoạch nhập học
DocType: Student Log,Student Log,sinh viên Đăng nhập
apps/erpnext/erpnext/config/buying.py,Templates of supplier standings.,Mẫu bảng xếp hạng nhà cung cấp.
DocType: Lead,Interested,Quan tâm
apps/erpnext/erpnext/hr/report/employee_leave_balance/employee_leave_balance.py,Opening,Mở ra
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Program: ,Chương trình:
DocType: Item,Copy From Item Group,Sao chép Từ mục Nhóm
DocType: Journal Entry,Opening Entry,Mở nhập
apps/erpnext/erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js,Account Pay Only,Tài khoản Chỉ Thanh toán
DocType: Loan,Repay Over Number of Periods,Trả Trong số kỳ
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Quantity to Produce can not be less than Zero,Số lượng sản xuất không thể ít hơn không
DocType: Stock Entry,Additional Costs,Chi phí bổ sung
apps/erpnext/erpnext/accounts/doctype/account/account.py,Account with existing transaction can not be converted to group.,Không thể chuyển đổi sang loại nhóm vì Tài khoản vẫn còn giao dịch
DocType: Lead,Product Enquiry,Đặt hàng sản phẩm
DocType: Education Settings,Validate Batch for Students in Student Group,Xác nhận tính hợp lệ cho sinh viên trong nhóm học sinh
apps/erpnext/erpnext/hr/doctype/attendance/attendance.py,No leave record found for employee {0} for {1},Không có bản ghi để lại được tìm thấy cho nhân viên {0} với {1}
DocType: Company,Unrealized Exchange Gain/Loss Account,Tài khoản Gain / Loss chưa thực hiện
apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js,Please enter company first,Vui lòng nhập công ty đầu tiên
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Please select Company first,Vui lòng chọn Công ty đầu tiên
DocType: Employee Education,Under Graduate,Chưa tốt nghiệp
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Please set default template for Leave Status Notification in HR Settings.,Vui lòng đặt mẫu mặc định cho Thông báo trạng thái rời khỏi trong Cài đặt nhân sự.
apps/erpnext/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js,Target On,Mục tiêu trên
DocType: BOM,Total Cost,Tổng chi phí
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.js,Allocation Expired!,Phân bổ hết hạn!
DocType: Soil Analysis,Ca/K,Ca / K
DocType: Leave Type,Maximum Carry Forwarded Leaves,Lá chuyển tiếp tối đa
DocType: Salary Slip,Employee Loan,nhân viên vay
DocType: Additional Salary,HR-ADS-.YY.-.MM.-,HR-ADS-.YY .-. MM.-
DocType: Fee Schedule,Send Payment Request Email,Gửi Email yêu cầu thanh toán
apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py,Item {0} does not exist in the system or has expired,Mục {0} không tồn tại trong hệ thống hoặc đã hết hạn
DocType: Supplier,Leave blank if the Supplier is blocked indefinitely,Để trống nếu Nhà cung cấp bị chặn vô thời hạn
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Real Estate,địa ốc
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.html,Statement of Account,Báo cáo cuả Tài khoản
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Pharmaceuticals,Dược phẩm
DocType: Purchase Invoice Item,Is Fixed Asset,Là cố định tài sản
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Future Payments,Hiển thị các khoản thanh toán trong tương lai
DocType: Patient,HLC-PAT-.YYYY.-,HLC-PAT-.YYYY.-
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,This bank account is already synchronized,Tài khoản ngân hàng này đã được đồng bộ hóa
DocType: Homepage,Homepage Section,Phần Trang chủ
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Work Order has been {0},Đơn đặt hàng công việc đã được {0}
DocType: Budget,Applicable on Purchase Order,Áp dụng cho đơn đặt hàng
DocType: Item,STO-ITEM-.YYYY.-,STO-ITEM-.YYYY.-
apps/erpnext/erpnext/hr/doctype/hr_settings/hr_settings.py,Password policy for Salary Slips is not set,Chính sách mật khẩu cho Phiếu lương không được đặt
apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py,Duplicate customer group found in the cutomer group table,nhóm khách hàng trùng lặp được tìm thấy trong bảng nhóm khác hàng
DocType: Location,Location Name,Tên địa phương
DocType: Quality Procedure Table,Responsible Individual,Cá nhân có trách nhiệm
DocType: Naming Series,Prefix,Tiền tố
apps/erpnext/erpnext/hr/notification/training_scheduled/training_scheduled.html,Event Location,Vị trí sự kiện
apps/erpnext/erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py,Available Stock,Cổ phiếu có sẵn
DocType: Asset Settings,Asset Settings,Cài đặt nội dung
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Consumable,Tiêu hao
DocType: Student,B-,B-
DocType: Assessment Result,Grade,Cấp
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js,Item Code > Item Group > Brand,Mã hàng> Nhóm vật phẩm> Thương hiệu
DocType: Restaurant Table,No of Seats,Số ghế
DocType: Sales Invoice,Overdue and Discounted,Quá hạn và giảm giá
apps/erpnext/erpnext/public/js/call_popup/call_popup.js,Call Disconnected,Cuộc gọi bị ngắt kết nối
DocType: Sales Invoice Item,Delivered By Supplier,Giao By Nhà cung cấp
DocType: Asset Maintenance Task,Asset Maintenance Task,Nhiệm vụ Bảo trì Tài sản
DocType: SMS Center,All Contact,Tất cả Liên hệ
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Annual Salary,Mức lương hàng năm
DocType: Daily Work Summary,Daily Work Summary,Tóm tắt công việc hàng ngày
DocType: Period Closing Voucher,Closing Fiscal Year,Đóng cửa năm tài chính
apps/erpnext/erpnext/accounts/party.py,{0} {1} is frozen,{0}{1} bị đóng băng
apps/erpnext/erpnext/setup/doctype/company/company.py,Please select Existing Company for creating Chart of Accounts,Vui lòng chọn Công ty hiện có để tạo biểu đồ của tài khoản
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Stock Expenses,Chi phí hàng tồn kho
apps/erpnext/erpnext/stock/doctype/batch/batch.js,Select Target Warehouse,Chọn Kho mục tiêu
apps/erpnext/erpnext/stock/doctype/batch/batch.js,Select Target Warehouse,Chọn Kho mục tiêu
apps/erpnext/erpnext/hr/doctype/employee/employee.js,Please enter Preferred Contact Email,Vui lòng nhập Preferred Liên hệ Email
DocType: Purchase Invoice Item,Accepted Qty,Số lượng được chấp nhận
DocType: Journal Entry,Contra Entry,Contra nhập
DocType: Journal Entry Account,Credit in Company Currency,Tín dụng tại Công ty ngoại tệ
DocType: Lab Test UOM,Lab Test UOM,Lab Test UOM
DocType: Delivery Note,Installation Status,Tình trạng cài đặt
DocType: BOM,Quality Inspection Template,Mẫu kiểm tra chất lượng
apps/erpnext/erpnext/education/doctype/student_attendance_tool/student_attendance_tool.js,"Do you want to update attendance?<br>Present: {0}\
<br>Absent: {1}",Bạn có muốn cập nhật tham dự? <br> Trình bày: {0} \ <br> Vắng mặt: {1}
apps/erpnext/erpnext/controllers/buying_controller.py,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Số lượng chấp nhận + từ chối phải bằng số lượng giao nhận {0}
DocType: Item,Supply Raw Materials for Purchase,Cung cấp nguyên liệu thô cho Purchase
DocType: Agriculture Analysis Criteria,Fertilizer,Phân bón
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,"Cannot ensure delivery by Serial No as \
Item {0} is added with and without Ensure Delivery by \
Serial No.",Không thể đảm bảo giao hàng theo Số Serial \ Mặt hàng {0} được tạo và không có thiết lập đảm bảo giao hàng đúng \ số Serial
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,At least one mode of payment is required for POS invoice.,Ít nhất một phương thức thanh toán là cần thiết cho POS hóa đơn.
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Batch no is required for batched item {0},Không có lô nào là bắt buộc đối với mục theo lô {0}
DocType: Bank Statement Transaction Invoice Item,Bank Statement Transaction Invoice Item,Mục hóa đơn giao dịch báo cáo ngân hàng
DocType: Salary Detail,Tax on flexible benefit,Thuế lợi ích linh hoạt
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} is not active or end of life has been reached,Mục {0} không hoạt động hoặc kết thúc của cuộc sống đã đạt tới
DocType: Student Admission Program,Minimum Age,Tuổi tối thiểu
apps/erpnext/erpnext/utilities/user_progress.py,Example: Basic Mathematics,Ví dụ: cơ bản Toán học
DocType: Customer,Primary Address,Địa chỉ Chính
apps/erpnext/erpnext/manufacturing/report/bom_stock_calculated/bom_stock_calculated.py,Diff Qty,Diff Qty
DocType: Production Plan,Material Request Detail,Yêu cầu Tài liệu Chi tiết
DocType: Selling Settings,Default Quotation Validity Days,Các ngày hiệu lực mặc định
apps/erpnext/erpnext/controllers/accounts_controller.py,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Bao gồm thuế hàng {0} trong tỷ lệ khoản, các loại thuế tại hàng {1} cũng phải được thêm vào"
apps/erpnext/erpnext/config/quality_management.py,Quality Procedure.,Thủ tục chất lượng.
DocType: SMS Center,SMS Center,Trung tâm nhắn tin
DocType: Payroll Entry,Validate Attendance,Xác thực tham dự
DocType: Sales Invoice,Change Amount,thay đổi Số tiền
DocType: Party Tax Withholding Config,Certificate Received,Đã nhận được chứng chỉ
DocType: GST Settings,Set Invoice Value for B2C. B2CL and B2CS calculated based on this invoice value.,Đặt Giá trị Hoá đơn cho B2C. B2CL và B2CS được tính dựa trên giá trị hóa đơn này.
DocType: BOM Update Tool,New BOM,Mới BOM
apps/erpnext/erpnext/healthcare/doctype/patient_appointment/patient_appointment.js,Prescribed Procedures,Thủ tục quy định
apps/erpnext/erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js,Show only POS,Chỉ hiển thị POS
DocType: Supplier Group,Supplier Group Name,Tên nhóm nhà cung cấp
DocType: Driver,Driving License Categories,Lái xe hạng mục
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,Please enter Delivery Date,Vui lòng nhập ngày giao hàng
DocType: Depreciation Schedule,Make Depreciation Entry,Tạo bút toán khấu hao
DocType: Closed Document,Closed Document,Tài liệu đã đóng
DocType: HR Settings,Leave Settings,Rời khỏi cài đặt
DocType: Appraisal Template Goal,KRA,KRA
DocType: Lead,Request Type,Yêu cầu Loại
DocType: Purpose of Travel,Purpose of Travel,Mục đích của du lịch
DocType: Payroll Period,Payroll Periods,Kỳ tính lương
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Broadcasting,Phát thanh truyền hình
apps/erpnext/erpnext/config/retail.py,Setup mode of POS (Online / Offline),Chế độ cài đặt POS (Trực tuyến / Ngoại tuyến)
DocType: Manufacturing Settings,Disables creation of time logs against Work Orders. Operations shall not be tracked against Work Order,Vô hiệu hóa việc tạo ra các bản ghi thời gian chống lại Đơn hàng làm việc. Các hoạt động sẽ không được theo dõi đối với Đơn đặt hàng Làm việc
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Execution,Thực hiện
apps/erpnext/erpnext/config/manufacturing.py,Details of the operations carried out.,Chi tiết về các hoạt động thực hiện.
DocType: Asset Maintenance Log,Maintenance Status,Tình trạng bảo trì
DocType: Purchase Invoice Item,Item Tax Amount Included in Value,Mục thuế Số tiền bao gồm trong giá trị
apps/erpnext/erpnext/non_profit/doctype/member/member_dashboard.py,Membership Details,Chi tiết thành viên
apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py,{0} {1}: Supplier is required against Payable account {2},{0} {1}: Nhà cung cấp được yêu cầu đối với Khoản phải trả {2}
apps/erpnext/erpnext/config/buying.py,Items and Pricing,Hàng hóa và giá cả
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.html,Total hours: {0},Tổng số giờ: {0}
apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py,From Date should be within the Fiscal Year. Assuming From Date = {0},Từ ngày phải được trong năm tài chính. Giả sử Từ ngày = {0}
DocType: Patient Medical Record,HLC-PMR-.YYYY.-,HLC-PMR-.YYYY.-
DocType: Drug Prescription,Interval,Khoảng thời gian
DocType: Pricing Rule,Promotional Scheme Id,Id chương trình khuyến mại
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Preference,Ưu tiên
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward Supplies(liable to reverse charge,Nguồn cung cấp bên trong (chịu trách nhiệm ngược phí
DocType: Supplier,Individual,cá nhân
DocType: Academic Term,Academics User,Người dùng học thuật
DocType: Cheque Print Template,Amount In Figure,Số tiền Trong hình
DocType: Loan Application,Loan Info,Thông tin cho vay
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,All Other ITC,Tất cả các ITC khác
apps/erpnext/erpnext/config/crm.py,Plan for maintenance visits.,Lập kế hoạch cho lần bảo trì.
DocType: Supplier Scorecard Period,Supplier Scorecard Period,Thời gian ghi điểm của nhà cung cấp
DocType: Support Settings,Search APIs,API tìm kiếm
DocType: Share Transfer,Share Transfer,Chuyển nhượng cổ phần
,Expiring Memberships,Thành viên hết hạn
apps/erpnext/erpnext/templates/pages/home.html,Read blog,Đọc blog
DocType: POS Profile,Customer Groups,Nhóm khách hàng
apps/erpnext/erpnext/public/js/financial_statements.js,Financial Statements,Báo cáo tài chính
DocType: Guardian,Students,Sinh viên
apps/erpnext/erpnext/config/buying.py,Rules for applying pricing and discount.,Quy tắc áp dụng giá và giảm giá.
DocType: Daily Work Summary,Daily Work Summary Group,Nhóm làm việc hằng ngày
DocType: Practitioner Schedule,Time Slots,Khe thời gian
apps/erpnext/erpnext/stock/doctype/price_list/price_list.py,Price List must be applicable for Buying or Selling,Bảng giá phải được áp dụng cho mua hàng hoặc bán hàng
DocType: Shift Assignment,Shift Request,Yêu cầu thay đổi
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Installation date cannot be before delivery date for Item {0},Ngày cài đặt không thể trước ngày giao hàng cho hàng {0}
DocType: Purchase Invoice Item,Discount on Price List Rate (%),Giảm giá Giá Tỷ lệ (%)
apps/erpnext/erpnext/public/js/utils/item_quick_entry.js,Item Template,Mẫu mục
DocType: Job Offer,Select Terms and Conditions,Chọn Điều khoản và Điều kiện
apps/erpnext/erpnext/stock/report/stock_balance/stock_balance.py,Out Value,Giá trị hiện
DocType: Bank Statement Settings Item,Bank Statement Settings Item,Mục cài đặt báo cáo ngân hàng
DocType: Woocommerce Settings,Woocommerce Settings,Cài đặt Thương mại điện tử
DocType: Leave Ledger Entry,Transaction Name,Tên giao dịch
DocType: Production Plan,Sales Orders,Đơn đặt hàng bán hàng
apps/erpnext/erpnext/selling/doctype/customer/customer.py,Multiple Loyalty Program found for the Customer. Please select manually.,Đã tìm thấy nhiều Chương trình khách hàng thân thiết cho Khách hàng. Vui lòng chọn thủ công.
DocType: Purchase Taxes and Charges,Valuation,Định giá
apps/erpnext/erpnext/selling/page/point_of_sale/point_of_sale.js,Set as Default,Set as Default
apps/erpnext/erpnext/stock/doctype/batch/batch.py,Expiry date is mandatory for selected item.,Ngày hết hạn là bắt buộc đối với mặt hàng được chọn.
,Purchase Order Trends,Xu hướng mua hàng
apps/erpnext/erpnext/utilities/user_progress.py,Go to Customers,Chuyển đến Khách hàng
DocType: Hotel Room Reservation,Late Checkin,Late Checkin
apps/erpnext/erpnext/accounts/page/bank_reconciliation/bank_reconciliation.js,Finding linked payments,Tìm các khoản thanh toán được liên kết
apps/erpnext/erpnext/templates/emails/request_for_quotation.html,The request for quotation can be accessed by clicking on the following link,Các yêu cầu báo giá có thể được truy cập bằng cách nhấp vào liên kết sau
DocType: Quiz Result,Selected Option,Tùy chọn đã chọn
DocType: SG Creation Tool Course,SG Creation Tool Course,SG học Công cụ tạo
DocType: Bank Statement Transaction Invoice Item,Payment Description,Mô tả thanh toán
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Insufficient Stock,Thiếu cổ Phiếu
DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Năng suất Disable và Thời gian theo dõi
DocType: Email Digest,New Sales Orders,Hàng đơn đặt hàng mới
DocType: Bank Account,Bank Account,Tài khoản ngân hàng
DocType: Travel Itinerary,Check-out Date,Ngày trả phòng
DocType: Leave Type,Allow Negative Balance,Cho phép cân đối tiêu cực
apps/erpnext/erpnext/projects/doctype/project_type/project_type.py,You cannot delete Project Type 'External',Bạn không thể xóa Loại Dự án 'Bên ngoài'
apps/erpnext/erpnext/public/js/utils.js,Select Alternate Item,Chọn mục thay thế
DocType: Employee,Create User,Tạo người dùng
DocType: Selling Settings,Default Territory,Địa bàn mặc định
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Television,Tivi
DocType: Work Order Operation,Updated via 'Time Log',Cập nhật thông qua 'Thời gian đăng nhập'
apps/erpnext/erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py,Select the customer or supplier.,Chọn khách hàng hoặc nhà cung cấp.
apps/erpnext/erpnext/support/doctype/service_level/service_level.py,Select only one Priority as Default.,Chỉ chọn một Ưu tiên làm Mặc định.
apps/erpnext/erpnext/controllers/taxes_and_totals.py,Advance amount cannot be greater than {0} {1},số tiền tạm ứng không có thể lớn hơn {0} {1}
apps/erpnext/erpnext/healthcare/doctype/practitioner_schedule/practitioner_schedule.js,"Time slot skiped, the slot {0} to {1} overlap exisiting slot {2} to {3}","Đã bỏ qua khe thời gian, vị trí {0} đến {1} trùng lặp vị trí hiện tại {2} thành {3}"
DocType: Naming Series,Series List for this Transaction,Danh sách loạt cho các giao dịch này
DocType: Company,Enable Perpetual Inventory,Cấp quyền vĩnh viễn cho kho
DocType: Bank Guarantee,Charges Incurred,Khoản phí phát sinh
apps/erpnext/erpnext/public/js/education/lms/quiz.js,Something went wrong while evaluating the quiz.,Đã xảy ra lỗi trong khi đánh giá bài kiểm tra.
DocType: Company,Default Payroll Payable Account,Mặc định lương Account Payable
apps/erpnext/erpnext/public/js/hub/pages/Item.vue,Edit Details,Chỉnh sửa chi tiết
apps/erpnext/erpnext/education/doctype/student_group/student_group.js,Update Email Group,Cập nhật Email Nhóm
DocType: POS Profile,Only show Customer of these Customer Groups,Chỉ hiển thị Khách hàng của các Nhóm Khách hàng này
DocType: Sales Invoice,Is Opening Entry,Được mở cửa nhập
apps/erpnext/erpnext/public/js/conf.js,Documentation,Tài liệu
DocType: Lab Test Template,"If unchecked, the item wont be appear in Sales Invoice, but can be used in group test creation. ","Nếu bỏ chọn, mục sẽ không xuất hiện trong Hóa đơn bán hàng, nhưng có thể được sử dụng trong tạo nhóm thử nghiệm."
DocType: Customer Group,Mention if non-standard receivable account applicable,Đề cập đến nếu tài khoản phải thu phi tiêu chuẩn áp dụng
DocType: Course Schedule,Instructor Name,Tên giảng viên
DocType: Company,Arrear Component,Arrear Component
apps/erpnext/erpnext/stock/doctype/pick_list/pick_list.py,Stock Entry has been already created against this Pick List,Stock Entry đã được tạo ra dựa trên Danh sách chọn này
DocType: Supplier Scorecard,Criteria Setup,Thiết lập tiêu chí
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,For Warehouse is required before Submit,Cho kho là cần thiết trước khi duyệt
apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html,Received On,Nhận được vào
DocType: Codification Table,Medical Code,Mã y tế
apps/erpnext/erpnext/config/integrations.py,Connect Amazon with ERPNext,Kết nối Amazon với ERPNext
apps/erpnext/erpnext/templates/generators/item/item_configure.html,Contact Us,Liên hệ chúng tôi
DocType: Delivery Note Item,Against Sales Invoice Item,Theo hàng hóa có hóa đơn
DocType: Agriculture Analysis Criteria,Linked Doctype,Doctype được liên kết
apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py,Net Cash from Financing,Tiền thuần từ tài chính
apps/erpnext/erpnext/accounts/page/pos/pos.js,"LocalStorage is full , did not save","Cục bộ là đầy đủ, không lưu"
DocType: Lead,Address & Contact,Địa chỉ & Liên hệ
DocType: Leave Allocation,Add unused leaves from previous allocations,Thêm lá không sử dụng từ phân bổ trước
DocType: Sales Partner,Partner website,trang web đối tác
DocType: Restaurant Order Entry,Add Item,Thêm mục
DocType: Party Tax Withholding Config,Party Tax Withholding Config,Cấu hình khấu trừ thuế bên
DocType: Lab Test,Custom Result,Kết quả Tuỳ chỉnh
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js,Bank accounts added,Đã thêm tài khoản ngân hàng
DocType: Call Log,Contact Name,Tên Liên hệ
DocType: Plaid Settings,Synchronize all accounts every hour,Đồng bộ hóa tất cả các tài khoản mỗi giờ
DocType: Course Assessment Criteria,Course Assessment Criteria,Các tiêu chí đánh giá khóa học
DocType: Pricing Rule Detail,Rule Applied,Quy tắc áp dụng
DocType: Service Level Priority,Resolution Time Period,Thời gian giải quyết
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html,Tax Id: ,Id Thuế:
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student ID: ,Thẻ học sinh:
DocType: POS Customer Group,POS Customer Group,Nhóm Khách hàng POS
DocType: Healthcare Practitioner,Practitioner Schedules,Lịch học viên
DocType: Cheque Print Template,Line spacing for amount in words,Khoảng cách dòng cho số tiền bằng chữ
DocType: Vehicle,Additional Details,Chi tiết bổ sung
apps/erpnext/erpnext/templates/generators/bom.html,No description given,Không có mô tả có sẵn
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js,Fetch Items from Warehouse,Lấy các mục từ kho
apps/erpnext/erpnext/config/buying.py,Request for purchase.,Yêu cầu để mua hàng.
DocType: POS Closing Voucher Details,Collected Amount,Số tiền đã thu
DocType: Lab Test,Submitted Date,Ngày nộp đơn
apps/erpnext/erpnext/stock/doctype/material_request/material_request.js,Company field is required,Lĩnh vực công ty là bắt buộc
apps/erpnext/erpnext/projects/doctype/project/project_dashboard.py,This is based on the Time Sheets created against this project,Điều này được dựa trên Thời gian biểu được tạo ra với dự án này
DocType: Call Log,Recording URL,Ghi lại URL
apps/erpnext/erpnext/crm/doctype/email_campaign/email_campaign.py,Start Date cannot be before the current date,Ngày bắt đầu không thể trước ngày hiện tại
,Open Work Orders,Mở đơn hàng
DocType: Healthcare Practitioner,Out Patient Consulting Charge Item,Chi phí tư vấn bệnh nhân
DocType: Payment Term,Credit Months,Tháng tín dụng
apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py,Net Pay cannot be less than 0,Tiền thực trả không thể ít hơn 0
DocType: Contract,Fulfilled,Hoàn thành
DocType: Inpatient Record,Discharge Scheduled,Discharge Scheduled
apps/erpnext/erpnext/hr/doctype/employee/employee.py,Relieving Date must be greater than Date of Joining,Giảm ngày phải lớn hơn ngày của Tham gia
DocType: POS Closing Voucher,Cashier,Thu ngân
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Leaves per Year,Các di dời mỗi năm
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Hàng {0}: Vui lòng kiểm tra 'là cấp cao' đối với tài khoản {1} nếu điều này là một bút toán cấp cao.
apps/erpnext/erpnext/stock/utils.py,Warehouse {0} does not belong to company {1},Kho {0} không thuộc về công ty {1}
DocType: Email Digest,Profit & Loss,Mất lợi nhuận
apps/erpnext/erpnext/utilities/user_progress.py,Litre,lít
DocType: Task,Total Costing Amount (via Time Sheet),Tổng chi phí (thông qua thời gian biểu)
apps/erpnext/erpnext/education/doctype/fee_schedule/fee_schedule.py,Please setup Students under Student Groups,Xin vui lòng thiết lập Sinh viên theo Nhóm sinh viên
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.js,Complete Job,Hoàn thành công việc
DocType: Item Website Specification,Item Website Specification,Mục Trang Thông số kỹ thuật
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Leave Blocked,Đã chặn việc dời đi
apps/erpnext/erpnext/stock/doctype/item/item.py,Item {0} has reached its end of life on {1},Mục {0} đã đạt đến kết thúc của sự sống trên {1}
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js,Bank Entries,Bút toán Ngân hàng
DocType: Customer,Is Internal Customer,Là khách hàng nội bộ
DocType: Crop,Annual,Hàng năm
apps/erpnext/erpnext/accounts/doctype/loyalty_program/loyalty_program.js,"If Auto Opt In is checked, then the customers will be automatically linked with the concerned Loyalty Program (on save)","Nếu chọn Tự động chọn tham gia, khi đó khách hàng sẽ tự động được liên kết với Chương trình khách hàng thân thiết (khi lưu)"
DocType: Stock Reconciliation Item,Stock Reconciliation Item,Mẫu cổ phiếu hòa giải
DocType: Stock Entry,Sales Invoice No,Hóa đơn bán hàng không
DocType: Website Filter Field,Website Filter Field,Trường bộ lọc trang web
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,Supply Type,Loại nguồn cung cấp
DocType: Material Request Item,Min Order Qty,Đặt mua tối thiểu Số lượng
DocType: Student Group Creation Tool Course,Student Group Creation Tool Course,Nhóm Sinh viên Công cụ tạo khóa học
DocType: Lead,Do Not Contact,Không Liên hệ
apps/erpnext/erpnext/utilities/user_progress.py,People who teach at your organisation,Những người giảng dạy tại các tổ chức của bạn
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Software Developer,Phần mềm phát triển
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js,Create Sample Retention Stock Entry,Tạo mẫu lưu giữ cổ phiếu
DocType: Item,Minimum Order Qty,Số lượng đặt hàng tối thiểu
DocType: Supplier,Supplier Type,Loại nhà cung cấp
DocType: Course Scheduling Tool,Course Start Date,Khóa học Ngày bắt đầu
,Student Batch-Wise Attendance,Đợt sinh viên - ĐIểm danh thông minh
DocType: POS Profile,Allow user to edit Rate,Cho phép người dùng chỉnh sửa Rate
DocType: Item,Publish in Hub,Xuất bản trong trung tâm
DocType: Student Admission,Student Admission,Nhập học sinh viên
apps/erpnext/erpnext/stock/doctype/item/item.py,Item {0} is cancelled,Mục {0} bị hủy bỏ
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Depreciation Row {0}: Depreciation Start Date is entered as past date,Hàng khấu hao {0}: Ngày bắt đầu khấu hao được nhập vào ngày hôm qua
DocType: Contract Template,Fulfilment Terms and Conditions,Điều khoản và điều kiện thực hiện
apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js,Material Request,Yêu cầu nguyên liệu
DocType: Bank Reconciliation,Update Clearance Date,Cập nhật thông quan ngày
apps/erpnext/erpnext/stock/report/product_bundle_balance/product_bundle_balance.py,Bundle Qty,Gói số lượng
,GSTR-2,GSTR-2
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Item {0} not found in 'Raw Materials Supplied' table in Purchase Order {1},Mục {0} không tìm thấy trong 'Nguyên liệu Supplied' bảng trong Purchase Order {1}
DocType: Salary Slip,Total Principal Amount,Tổng số tiền gốc
DocType: Student Guardian,Relation,Mối quan hệ
DocType: Quiz Result,Correct,Chính xác
DocType: Student Guardian,Mother,Mẹ
DocType: Restaurant Reservation,Reservation End Time,Thời gian Kết thúc Đặt phòng
DocType: Crop,Biennial,Hai năm
,BOM Variance Report,Báo cáo chênh lệch BOM
apps/erpnext/erpnext/config/selling.py,Confirmed orders from Customers.,Đơn hàng đã được khách xác nhận
DocType: Purchase Receipt Item,Rejected Quantity,Số lượng bị từ chối
apps/erpnext/erpnext/education/doctype/fees/fees.py,Payment request {0} created,Đã tạo yêu cầu thanh toán {0}
DocType: Inpatient Record,Admitted Datetime,Ngày giờ được thừa nhận
DocType: Work Order,Backflush raw materials from work-in-progress warehouse,Backflush nguyên liệu từ nhà kho làm việc trong tiến trình
apps/erpnext/erpnext/stock/report/item_variant_details/item_variant_details.py,Open Orders,Đơn đặt hàng mở
apps/erpnext/erpnext/hr/doctype/employee_benefit_claim/employee_benefit_claim.py,Unable to find Salary Component {0},Không thể tìm thấy Thành phần lương {0}
apps/erpnext/erpnext/healthcare/setup.py,Low Sensitivity,Độ nhạy thấp
apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_log/shopify_log.js,Order rescheduled for sync,Đơn đặt hàng được lên lịch lại để đồng bộ hóa
apps/erpnext/erpnext/templates/emails/training_event.html,Please confirm once you have completed your training,Vui lòng xác nhận khi bạn đã hoàn thành khóa học
DocType: Lead,Suggestions,Đề xuất
DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Thiết lập ngân sách Hướng- Nhóm cho địa bàn này. có thể bao gồm cả thiết lập phân bổ các yếu tố thời vụ
DocType: Plaid Settings,Plaid Public Key,Khóa công khai kẻ sọc
DocType: Payment Term,Payment Term Name,Tên Thuật ngữ thanh toán
DocType: Healthcare Settings,Create documents for sample collection,Tạo tài liệu để lấy mẫu
apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Thanh toán đối với {0} {1} không thể lớn hơn số tiền đang nợ {2}
apps/erpnext/erpnext/patches/v11_0/add_healthcare_service_unit_tree_root.py,All Healthcare Service Units,Tất cả các đơn vị dịch vụ y tế
apps/erpnext/erpnext/setup/default_energy_point_rules.py,On Converting Opportunity,Về cơ hội chuyển đổi
DocType: Bank Account,Address HTML,Địa chỉ HTML
DocType: Lead,Mobile No.,Số Điện thoại di động.
apps/erpnext/erpnext/selling/doctype/pos_closing_voucher/closing_voucher_details.html,Mode of Payments,Phương thức thanh toán
DocType: Maintenance Schedule,Generate Schedule,Tạo lịch trình
DocType: Purchase Invoice Item,Expense Head,Chi phí đầu
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.js,Please select Charge Type first,Vui lòng chọn Loại Charge đầu tiên
DocType: Crop,"You can define all the tasks which need to carried out for this crop here. The day field is used to mention the day on which the task needs to be carried out, 1 being the 1st day, etc.. ","Bạn có thể xác định tất cả các nhiệm vụ cần thực hiện cho vụ này ở đây. Trường ngày được sử dụng để đề cập đến ngày mà nhiệm vụ cần được thực hiện, 1 là ngày thứ nhất, v.v ..."
DocType: Student Group Student,Student Group Student,Nhóm học sinh sinh viên
apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py,Latest,Mới nhất
DocType: Asset Maintenance Task,2 Yearly,2 Hàng năm
DocType: Education Settings,Education Settings,Thiết lập miền Giáo dục
DocType: Vehicle Service,Inspection,sự kiểm tra
apps/erpnext/erpnext/regional/italy/utils.py,E-Invoicing Information Missing,Thiếu thông tin hóa đơn điện tử
DocType: Leave Allocation,HR-LAL-.YYYY.-,HR-LAL-.YYYY.-
DocType: Exchange Rate Revaluation Account,Balance In Base Currency,Số dư bằng tiền gốc
DocType: Supplier Scorecard Scoring Standing,Max Grade,Max Grade
DocType: Email Digest,New Quotations,Trích dẫn mới
apps/erpnext/erpnext/hr/doctype/attendance_request/attendance_request.py,Attendance not submitted for {0} as {1} on leave.,Khiếu nại không được gửi cho {0} là {1} khi rời đi.
DocType: Journal Entry,Payment Order,Đề nghị thanh toán
DocType: Employee Tax Exemption Declaration,Income From Other Sources,Thu nhập từ các nguồn khác
DocType: Warehouse,"If blank, parent Warehouse Account or company default will be considered","Nếu trống, Tài khoản kho mẹ hoặc mặc định của công ty sẽ được xem xét"
DocType: HR Settings,Emails salary slip to employee based on preferred email selected in Employee,trượt email lương cho nhân viên dựa trên email ưa thích lựa chọn trong nhân viên
DocType: Tax Rule,Shipping County,vận Chuyển trong quận
DocType: Currency Exchange,For Selling,Để bán
apps/erpnext/erpnext/config/desktop.py,Learn,Học
,Trial Balance (Simple),Số dư dùng thử (Đơn giản)
DocType: Purchase Invoice Item,Enable Deferred Expense,Bật chi phí hoãn lại
apps/erpnext/erpnext/templates/includes/order/order_taxes.html,Applied Coupon Code,Mã giảm giá áp dụng
DocType: Asset,Next Depreciation Date,Kỳ hạn khấu hao tiếp theo
apps/erpnext/erpnext/projects/doctype/activity_type/activity_type.js,Activity Cost per Employee,Chi phí hoạt động cho một nhân viên
DocType: Accounts Settings,Settings for Accounts,Cài đặt cho tài khoản
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py,Supplier Invoice No exists in Purchase Invoice {0},Nhà cung cấp hóa đơn Không tồn tại trong hóa đơn mua hàng {0}
apps/erpnext/erpnext/config/crm.py,Manage Sales Person Tree.,Quản lý cây người bán hàng
DocType: Job Applicant,Cover Letter,Thư xin việc
apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py,Outstanding Cheques and Deposits to clear,Séc đặc biệt và tiền gửi để xóa
DocType: Item,Synced With Hub,Đồng bộ hóa Với Hub
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Inward supplies from ISD,Nguồn cung bên trong từ ISD
DocType: Driver,Fleet Manager,Người quản lý đội xe
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Row #{0}: {1} can not be negative for item {2},Hàng # {0}: {1} không thể là số âm cho mặt hàng {2}
apps/erpnext/erpnext/setup/doctype/company/company.js,Wrong Password,Sai Mật Khẩu
DocType: POS Profile,Offline POS Settings,Cài đặt POS ngoại tuyến
DocType: Stock Entry Detail,Reference Purchase Receipt,Biên lai mua hàng tham khảo
DocType: Stock Reconciliation,MAT-RECO-.YYYY.-,MAT-RECO-.YYYY.-
apps/erpnext/erpnext/templates/includes/cart/cart_items.html,Variant Of,biến thể của
apps/erpnext/erpnext/manufacturing/doctype/work_order/work_order.py,Completed Qty can not be greater than 'Qty to Manufacture',Đã hoàn thành Số lượng không có thể lớn hơn 'SL đặt Sản xuất'
apps/erpnext/erpnext/public/js/purchase_trends_filters.js,Period based On,Thời gian dựa trên
DocType: Period Closing Voucher,Closing Account Head,Đóng Trưởng Tài khoản
DocType: Employee,External Work History,Bên ngoài Quá trình công tác
apps/erpnext/erpnext/projects/doctype/task/task.py,Circular Reference Error,Thông tư tham khảo Lỗi
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student Report Card,Thẻ Báo Cáo của Học Sinh
apps/erpnext/erpnext/regional/report/eway_bill/eway_bill.py,From Pin Code,Từ mã pin
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Show Sales Person,Hiển thị nhân viên bán hàng
DocType: Appointment Type,Is Inpatient,Là bệnh nhân nội trú
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian1 Name,Tên Guardian1
DocType: Delivery Note,In Words (Export) will be visible once you save the Delivery Note.,Trong từ (xuất khẩu) sẽ được hiển thị khi bạn lưu Giao hàng tận nơi Lưu ý.
DocType: Cheque Print Template,Distance from left edge,Khoảng cách từ cạnh trái
apps/erpnext/erpnext/utilities/bot.py,{0} units of [{1}](#Form/Item/{1}) found in [{2}](#Form/Warehouse/{2}),{0} đơn vị [{1}](#Form/Item/{1}) được tìm thấy trong [{2}](#Form/Warehouse/{2})
DocType: Lead,Industry,Ngành công nghiệp
DocType: BOM Item,Rate & Amount,Tỷ lệ & Số tiền
apps/erpnext/erpnext/config/website.py,Settings for website product listing,Cài đặt cho danh sách sản phẩm trang web
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.html,Amount of Integrated Tax,Số tiền thuế tích hợp
DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Thông báo qua email trên tạo ra các yêu cầu vật liệu tự động
DocType: Accounting Dimension,Dimension Name,Tên kích thước
apps/erpnext/erpnext/healthcare/setup.py,Resistant,Kháng cự
apps/erpnext/erpnext/hotels/doctype/hotel_room_reservation/hotel_room_reservation.py,Please set Hotel Room Rate on {},Vui lòng đặt Giá phòng khách sạn vào {}
DocType: Journal Entry,Multi Currency,Đa ngoại tệ
DocType: Bank Statement Transaction Invoice Item,Invoice Type,Loại hóa đơn
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py,Valid from date must be less than valid upto date,Có hiệu lực từ ngày phải nhỏ hơn ngày hợp lệ
apps/erpnext/erpnext/accounts/doctype/bank_statement_transaction_entry/bank_statement_transaction_entry.py,Exception occurred while reconciling {0},Ngoại lệ xảy ra trong khi điều hòa {0}
DocType: Purchase Invoice,Set Accepted Warehouse,Đặt kho được chấp nhận
DocType: Employee Benefit Claim,Expense Proof,Bằng chứng chi phí
apps/erpnext/erpnext/erpnext_integrations/doctype/quickbooks_migrator/quickbooks_migrator.py,Saving {0},Đang lưu {0}
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js,Delivery Note,Phiếu giao hàng
DocType: Patient Encounter,Encounter Impression,Gặp Ấn tượng
apps/erpnext/erpnext/config/help.py,Setting up Taxes,Thiết lập Thuế
apps/erpnext/erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py,Cost of Sold Asset,Chi phí của tài sản bán
DocType: Volunteer,Morning,Buổi sáng
apps/erpnext/erpnext/accounts/utils.py,Payment Entry has been modified after you pulled it. Please pull it again.,Bút toán thanh toán đã được sửa lại sau khi bạn kéo ra. Vui lòng kéo lại 1 lần nữa
DocType: Program Enrollment Tool,New Student Batch,Batch Student mới
apps/erpnext/erpnext/accounts/doctype/item_tax_template/item_tax_template.py,{0} entered twice in Item Tax,{0} Đã nhập hai lần vào Thuế vật tư
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Summary for this week and pending activities,Tóm tắt cho tuần này và các hoạt động cấp phát
DocType: Student Applicant,Admitted,Thừa nhận
DocType: Workstation,Rent Cost,Chi phí thuê
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Plaid transactions sync error,Lỗi đồng bộ hóa giao dịch kẻ sọc
DocType: Leave Ledger Entry,Is Expired,Hết hạn
apps/erpnext/erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py,Amount After Depreciation,Số tiền Sau khi khấu hao
apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html,Upcoming Calendar Events,Sắp tới Lịch sự kiện
apps/erpnext/erpnext/public/js/templates/item_quick_entry.html,Variant Attributes,Thuộc tính Variant
apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py,Please select month and year,Vui lòng chọn tháng và năm
DocType: Employee,Company Email,Email công ty
apps/erpnext/erpnext/accounts/doctype/pricing_rule/utils.py,User has not applied rule on the invoice {0},Người dùng chưa áp dụng quy tắc trên hóa đơn {0}
DocType: GL Entry,Debit Amount in Account Currency,Nợ Số tiền trong tài khoản ngoại tệ
DocType: Supplier Scorecard,Scoring Standings,Bảng xếp hạng
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py,Order Value,Giá trị đặt hàng
apps/erpnext/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py,Order Value,Giá trị đặt hàng
DocType: Certified Consultant,Certified Consultant,Tư vấn được chứng nhận
apps/erpnext/erpnext/config/accounting.py,Bank/Cash transactions against party or for internal transfer,Ngân hàng / Tiền giao dịch với bên đối tác hoặc chuyển giao nội bộ
DocType: Shipping Rule,Valid for Countries,Hợp lệ cho Quốc gia
apps/erpnext/erpnext/hr/doctype/training_event/training_event.py,End time cannot be before start time,Thời gian kết thúc không thể trước thời gian bắt đầu
apps/erpnext/erpnext/templates/generators/item/item_configure.js,1 exact match.,1 trận đấu chính xác.
apps/erpnext/erpnext/stock/doctype/item/item.js,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Mục này là một mẫu và không thể được sử dụng trong các giao dịch. Thuộc tính mẫu hàng sẽ được sao chép vào các biến thể trừ khi'Không sao chép' được thiết lập
DocType: Grant Application,Grant Application,Xin tài trợ
apps/erpnext/erpnext/selling/report/inactive_customers/inactive_customers.py,Total Order Considered,Tổng số đơn hàng được xem xét
DocType: Certification Application,Not Certified,"Không công nhận, không chứng nhận"
DocType: Asset Value Adjustment,New Asset Value,Giá trị nội dung mới
DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Tỷ Giá được quy đổi từ tỷ giá của khách hàng về tỷ giá khách hàng chung
DocType: Course Scheduling Tool,Course Scheduling Tool,Khóa học Lập kế hoạch cụ
apps/erpnext/erpnext/controllers/accounts_controller.py,Row #{0}: Purchase Invoice cannot be made against an existing asset {1},Hàng # {0}: Mua hóa đơn không thể được thực hiện đối với một tài sản hiện có {1}
DocType: Crop Cycle,LInked Analysis,Phân tích LInked
DocType: POS Closing Voucher,POS Closing Voucher,Phiếu đóng POS
apps/erpnext/erpnext/support/doctype/issue_priority/issue_priority.py,Issue Priority Already Exists,Vấn đề ưu tiên đã tồn tại
DocType: Invoice Discounting,Loan Start Date,Ngày bắt đầu cho vay
DocType: Contract,Lapsed,Hết hạn
DocType: Item Tax Template Detail,Tax Rate,Thuế suất
apps/erpnext/erpnext/education/doctype/course_activity/course_activity.py,Course Enrollment {0} does not exists,Ghi danh khóa học {0} không tồn tại
apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py,Application period cannot be across two allocation records,Thời gian đăng ký không thể nằm trong hai bản ghi phân bổ
apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py,{0} already allocated for Employee {1} for period {2} to {3},{0} đã được phân phối cho nhân viên {1} cho kỳ {2} đến {3}
DocType: Buying Settings,Backflush Raw Materials of Subcontract Based On,Backflush Nguyên liệu của hợp đồng phụ Dựa trên
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py,Purchase Invoice {0} is already submitted,Hóa đơn mua hàng {0} đã gửi
apps/erpnext/erpnext/controllers/sales_and_purchase_return.py,Row # {0}: Batch No must be same as {1} {2},Hàng # {0}: Số hiệu lô hàng phải giống như {1} {2}
DocType: Material Request Plan Item,Material Request Plan Item,Yêu cầu Mục Yêu cầu Vật liệu
DocType: Leave Type,Allow Encashment,Cho phép Encashment
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js,Convert to non-Group,Chuyển đổi sang non-Group
DocType: Exotel Settings,Account SID,Tài khoản SID
DocType: Bank Statement Transaction Invoice Item,Invoice Date,Hóa đơn ngày
DocType: GL Entry,Debit Amount,Số tiền ghi nợ
apps/erpnext/erpnext/accounts/party.py,There can only be 1 Account per Company in {0} {1},Chỉ có thể có 1 tài khoản cho mỗi công ty trong {0} {1}
DocType: Support Search Source,Response Result Key Path,Đường dẫn khóa kết quả phản hồi
DocType: Journal Entry,Inter Company Journal Entry,Inter Company Journal Entry
apps/erpnext/erpnext/accounts/party.py,Due Date cannot be before Posting / Supplier Invoice Date,Ngày đến hạn không thể trước ngày Đăng / Ngày hóa đơn nhà cung cấp
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,For quantity {0} should not be grater than work order quantity {1},Đối với số lượng {0} không nên vắt hơn số lượng đơn đặt hàng công việc {1}
DocType: Employee Training,Employee Training,Huấn luyện nhân viên
DocType: Quotation Item,Additional Notes,Ghi chú bổ sung
DocType: Purchase Order,% Received,% đã nhận
apps/erpnext/erpnext/education/doctype/student_group_creation_tool/student_group_creation_tool.js,Create Student Groups,Tạo Sinh viên nhóm
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,"Available quantity is {0}, you need {1}","Số lượng có sẵn là {0}, bạn cần {1}"
DocType: Volunteer,Weekends,Cuối tuần
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html,Credit Note Amount,Số lượng ghi chú tín dụng
DocType: Setup Progress Action,Action Document,Tài liệu hành động
DocType: Chapter Member,Website URL,Website URL
,Finished Goods,Hoàn thành Hàng
DocType: Delivery Note,Instructions,Hướng dẫn
DocType: Quality Inspection,Inspected By,Kiểm tra bởi
DocType: Asset,ACC-ASS-.YYYY.-,ACC-ASS-.YYYY.-
DocType: Asset Maintenance Log,Maintenance Type,Loại bảo trì
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,{0} - {1} is not enrolled in the Course {2},{0} - {1} không được ghi danh vào Khóa học {2}
apps/erpnext/erpnext/education/doctype/student_report_generation_tool/student_report_generation_tool.html,Student Name: ,Tên học sinh:
DocType: POS Closing Voucher,Difference,Sự khác biệt
DocType: Delivery Settings,Delay between Delivery Stops,Trì hoãn giữa các điểm dừng giao hàng
apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py,Serial No {0} does not belong to Delivery Note {1},Không nối tiếp {0} không thuộc về Giao hàng tận nơi Lưu ý {1}
apps/erpnext/erpnext/erpnext_integrations/doctype/gocardless_settings/gocardless_settings.py,"There seems to be an issue with the server's GoCardless configuration. Don't worry, in case of failure, the amount will get refunded to your account.","Có vẻ như có vấn đề với cấu hình GoCardless của máy chủ. Đừng lo lắng, trong trường hợp thất bại, số tiền sẽ được hoàn lại vào tài khoản của bạn."
apps/erpnext/erpnext/templates/pages/demo.html,ERPNext Demo,ERPNext Demo
apps/erpnext/erpnext/public/js/utils/item_selector.js,Add Items,Thêm mục
DocType: Item Quality Inspection Parameter,Item Quality Inspection Parameter,Kiểm tra chất lượng sản phẩm Thông số
DocType: Leave Application,Leave Approver Name,Để lại Tên Người phê duyệt
DocType: Depreciation Schedule,Schedule Date,Lịch trình ngày
DocType: Amazon MWS Settings,FR,FR
DocType: Packed Item,Packed Item,Hàng đóng gói
DocType: Job Offer Term,Job Offer Term,Thời hạn Cung cấp việc làm
apps/erpnext/erpnext/config/buying.py,Default settings for buying transactions.,Thiết lập mặc định cho giao dịch mua hàng
apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py,Activity Cost exists for Employee {0} against Activity Type - {1},Chi phí hoạt động tồn tại cho Nhân viên {0} đối với Kiểu công việc - {1}
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Get Students From,Trường bắt buộc - Lấy học sinh từ
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Get Students From,Trường bắt buộc - Lấy học sinh từ
DocType: Program Enrollment,Enrolled courses,Các khóa học đã ghi danh
DocType: Currency Exchange,Currency Exchange,Thu đổi ngoại tệ
apps/erpnext/erpnext/support/doctype/issue/issue.js,Resetting Service Level Agreement.,Đặt lại Thỏa thuận cấp độ dịch vụ.
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Item Name,Tên hàng
DocType: Authorization Rule,Approving User (above authorized value),Phê duyệt tài (trên giá trị ủy quyền)
apps/erpnext/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py,Credit Balance,Cân đối nợ
DocType: Employee,Widowed,Góa
DocType: Request for Quotation,Request for Quotation,Yêu cầu báo giá
DocType: Healthcare Settings,Require Lab Test Approval,Yêu cầu phê duyệt thử nghiệm Lab
DocType: Attendance,Working Hours,Giờ làm việc
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html,Total Outstanding,Tổng số
DocType: Naming Series,Change the starting / current sequence number of an existing series.,Thay đổi bắt đầu / hiện số thứ tự của một loạt hiện có.
DocType: Accounts Settings,Percentage you are allowed to bill more against the amount ordered. For example: If the order value is $100 for an item and tolerance is set as 10% then you are allowed to bill for $110.,Tỷ lệ phần trăm bạn được phép lập hóa đơn nhiều hơn số tiền đặt hàng. Ví dụ: Nếu giá trị đơn hàng là 100 đô la cho một mặt hàng và dung sai được đặt là 10% thì bạn được phép lập hóa đơn cho 110 đô la.
DocType: Dosage Strength,Strength,Sức mạnh
apps/erpnext/erpnext/public/js/controllers/transaction.js,Cannot find Item with this barcode,Không thể tìm thấy mục có mã vạch này
apps/erpnext/erpnext/accounts/page/pos/pos.js,Create a new Customer,Tạo một khách hàng mới
apps/erpnext/erpnext/non_profit/report/expiring_memberships/expiring_memberships.py,Expiring On,Hết hạn vào
apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js,"If multiple Pricing Rules continue to prevail, users are asked to set Priority manually to resolve conflict.","Nếu nhiều quy giá tiếp tục chiếm ưu thế, người dùng được yêu cầu để thiết lập ưu tiên bằng tay để giải quyết xung đột."
apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js,Purchase Return,Mua Quay lại
apps/erpnext/erpnext/utilities/activation.py,Create Purchase Orders,Tạo đơn đặt hàng mua
,Purchase Register,Đăng ký mua
apps/erpnext/erpnext/healthcare/doctype/patient/patient.py,Patient not found,Bệnh nhân không tìm thấy
DocType: Landed Cost Item,Applicable Charges,Phí áp dụng
DocType: Workstation,Consumable Cost,Chi phí tiêu hao
apps/erpnext/erpnext/support/doctype/service_level/service_level.py,Response Time for {0} at index {1} can't be greater than Resolution Time.,Thời gian phản hồi cho {0} tại chỉ mục {1} không thể lớn hơn Thời gian phân giải.
DocType: Purchase Receipt,Vehicle Date,Ngày của phương tiện
DocType: Campaign Email Schedule,Campaign Email Schedule,Lịch trình email chiến dịch
DocType: Student Log,Medical,Y khoa
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js,Please select Drug,Vui lòng chọn thuốc
apps/erpnext/erpnext/crm/doctype/lead/lead.py,Lead Owner cannot be same as the Lead,Người sở hữu Tiềm năng không thể trùng với Tiềm năng
DocType: Announcement,Receiver,Người nhận
DocType: Location,Area UOM,ĐVT diện tính
apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py,Workstation is closed on the following dates as per Holiday List: {0},Trạm được đóng cửa vào các ngày sau đây theo Danh sách kỳ nghỉ: {0}
apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py,Opportunities,Cơ hội
DocType: Lab Test Template,Single,DUy nhất
DocType: Compensatory Leave Request,Work From Date,Làm việc từ ngày
DocType: Salary Slip,Total Loan Repayment,Tổng số trả nợ
DocType: Project User,View attachments,Xem tệp đính kèm
DocType: Account,Cost of Goods Sold,Chi phí hàng bán
DocType: Article,Publish Date,Ngày xuất bản
apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py,Please enter Cost Center,Vui lòng nhập Bộ phận Chi phí
DocType: Drug Prescription,Dosage,Liều dùng
DocType: Journal Entry Account,Sales Order,Đơn đặt hàng
apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py,Avg. Selling Rate,Giá bán bình quân
DocType: Assessment Plan,Examiner Name,Tên người dự thi
DocType: Lab Test Template,No Result,Không kết quả
DocType: Woocommerce Settings,"The fallback series is ""SO-WOO-"".",Chuỗi dự phòng là "SO-WOO-".
DocType: Purchase Invoice Item,Quantity and Rate,Số lượng và tỷ giá
DocType: Delivery Note,% Installed,% Đã cài
apps/erpnext/erpnext/utilities/user_progress.py,Classrooms/ Laboratories etc where lectures can be scheduled.,Phòng học / phòng thí nghiệm vv nơi bài giảng có thể được sắp xếp.
apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py,Company currencies of both the companies should match for Inter Company Transactions.,Tiền công ty của cả hai công ty phải khớp với Giao dịch của Công ty Liên doanh.
apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js,Please enter company name first,Vui lòng nhập tên công ty đầu tiên
DocType: Travel Itinerary,Non-Vegetarian,Người không ăn chay
DocType: Purchase Invoice,Supplier Name,Tên nhà cung cấp
apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html,Read the ERPNext Manual,Đọc sổ tay ERPNext
DocType: HR Settings,Show Leaves Of All Department Members In Calendar,Hiển thị các lá của tất cả các thành viên của bộ phận trong lịch
DocType: Purchase Invoice,01-Sales Return,01-Trả Hàng
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Qty per BOM Line,Số lượng trên mỗi dòng BOM
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js,Temporarily on Hold,Tạm thời giữ
DocType: Account,Is Group,là Nhóm
apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py,Credit Note {0} has been created automatically,Ghi chú tín dụng {0} đã được tạo tự động
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js,Request for Raw Materials,Yêu cầu nguyên vật liệu sản xuất
DocType: Stock Settings,Automatically Set Serial Nos based on FIFO,Tự động Đặt nối tiếp Nos dựa trên FIFO
DocType: Accounts Settings,Check Supplier Invoice Number Uniqueness,Kiểm tra nhà cung cấp hóa đơn Số độc đáo
apps/erpnext/erpnext/public/js/utils/customer_quick_entry.js,Primary Address Details,Chi tiết Địa chỉ Chính
apps/erpnext/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py,Public token is missing for this bank,Mã thông báo công khai bị thiếu cho ngân hàng này
DocType: Vehicle Service,Oil Change,Thay đổi dầu
DocType: Leave Encashment,Leave Balance,Trung bình còn lại
DocType: Asset Maintenance Log,Asset Maintenance Log,Nhật ký bảo dưỡng tài sản
apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js,'To Case No.' cannot be less than 'From Case No.','Đến trường hợp số' không thể ít hơn 'Từ trường hợp số'
DocType: Certification Application,Non Profit,Không lợi nhuận
DocType: Production Plan,Not Started,Chưa Bắt Đầu
DocType: Lead,Channel Partner,Đối tác
DocType: Account,Old Parent,Cũ Chánh
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Academic Year,Trường Bắt buộc - Năm Học
apps/erpnext/erpnext/education/doctype/program_enrollment_tool/program_enrollment_tool.py,Mandatory field - Academic Year,Trường Bắt buộc - Năm Học
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,{0} {1} is not associated with {2} {3},{0} {1} không liên kết với {2} {3}
DocType: Opportunity,Converted By,Chuyển đổi bởi
apps/erpnext/erpnext/public/js/hub/components/ReviewArea.vue,You need to login as a Marketplace User before you can add any reviews.,Bạn cần đăng nhập với tư cách là Người dùng Thị trường trước khi bạn có thể thêm bất kỳ đánh giá nào.
apps/erpnext/erpnext/manufacturing/doctype/job_card/job_card.py,Row {0} : Operation is required against the raw material item {1},Hàng {0}: Hoạt động được yêu cầu đối với vật liệu thô {1}
apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py,Please set default payable account for the company {0},Vui lòng đặt tài khoản phải trả mặc định cho công ty {0}
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Transaction not allowed against stopped Work Order {0},Giao dịch không được phép đối với lệnh đặt hàng bị ngừng hoạt động {0}
DocType: Setup Progress Action,Min Doc Count,Số liệu Min Doc
apps/erpnext/erpnext/config/manufacturing.py,Global settings for all manufacturing processes.,Thiết lập chung cho tất cả quá trình sản xuất.
DocType: Accounts Settings,Accounts Frozen Upto,Đóng băng tài khoản đến ngày
apps/erpnext/erpnext/erpnext_integrations/doctype/tally_migration/tally_migration.js,Process Day Book Data,Quy trình dữ liệu sổ ngày
DocType: SMS Log,Sent On,Gửi On
apps/erpnext/erpnext/public/js/call_popup/call_popup.js,Incoming call from {0},Cuộc gọi đến từ {0}
apps/erpnext/erpnext/stock/doctype/item/item.py,Attribute {0} selected multiple times in Attributes Table,Thuộc tính {0} được chọn nhiều lần trong Thuộc tính Bảng
DocType: HR Settings,Employee record is created using selected field. ,
DocType: Sales Order,Not Applicable,Không áp dụng
DocType: Amazon MWS Settings,UK,Nước Anh
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py,Opening Invoice Item,Mở Mục Hóa Đơn
DocType: Request for Quotation Item,Required Date,Ngày yêu cầu
DocType: Accounts Settings,Billing Address,Địa chỉ thanh toán
DocType: Bank Statement Settings,Statement Headers,Tiêu đề tuyên bố
DocType: Travel Request,Costing,Chi phí
DocType: Tax Rule,Billing County,Quận Thanh toán
DocType: Purchase Taxes and Charges,"If checked, the tax amount will be considered as already included in the Print Rate / Print Amount","Nếu được chọn, số tiền thuế sẽ được coi là đã có trong giá/thành tiền khi in ra."
DocType: Request for Quotation,Message for Supplier,Tin cho Nhà cung cấp
DocType: BOM,Work Order,Trình tự công việc
DocType: Sales Invoice,Total Qty,Tổng số Số lượng
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian2 Email ID,ID Email Guardian2
apps/erpnext/erpnext/education/report/student_and_guardian_contact_details/student_and_guardian_contact_details.py,Guardian2 Email ID,ID Email Guardian2
DocType: Item,Show in Website (Variant),Hiện tại Website (Ngôn ngữ địa phương)
DocType: Employee,Health Concerns,Mối quan tâm về sức khỏe
DocType: Payroll Entry,Select Payroll Period,Chọn lương Thời gian
DocType: Purchase Invoice,Unpaid,Chưa thanh toán
apps/erpnext/erpnext/stock/page/stock_balance/stock_balance.js,Reserved for sale,Dành cho các bán
DocType: Packing Slip,From Package No.,Từ gói thầu số
apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py,Row #{0}: Payment document is required to complete the transaction,Hàng # {0}: Cần có chứng từ thanh toán để hoàn thành giao dịch
DocType: Item Attribute,To Range,để khoanh vùng
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Securities and Deposits,Chứng khoán và tiền gửi
apps/erpnext/erpnext/stock/doctype/stock_settings/stock_settings.py,"Can't change valuation method, as there are transactions against some items which does not have it's own valuation method",Không thể thay đổi phương pháp định giá vì có các giao dịch đối với một số mặt hàng không có phương pháp định giá riêng
DocType: Student Report Generation Tool,Attended by Parents,Tham dự bởi cha mẹ
apps/erpnext/erpnext/hr/doctype/shift_assignment/shift_assignment.py,Employee {0} has already applied for {1} on {2} : ,Nhân viên {0} đã đăng ký {1} vào {2}:
DocType: Inpatient Record,AB Positive,AB Tích cực
DocType: Job Opening,Description of a Job Opening,Mô tả công việc một Opening
apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py,Pending activities for today,Hoạt động cấp phát cho ngày hôm nay
DocType: Salary Structure,Salary Component for timesheet based payroll.,Phần lương cho bảng thời gian biểu dựa trên bảng lương
DocType: Driver,Applicable for external driver,Áp dụng cho trình điều khiển bên ngoài
DocType: Sales Order Item,Used for Production Plan,Sử dụng cho kế hoạch sản xuất
DocType: BOM,Total Cost (Company Currency),Tổng chi phí (Tiền tệ công ty)
DocType: Loan,Total Payment,Tổng tiền thanh toán
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Cannot cancel transaction for Completed Work Order.,Không thể hủy giao dịch cho Đơn đặt hàng công việc đã hoàn thành.
DocType: Manufacturing Settings,Time Between Operations (in mins),Thời gian giữa các thao tác (bằng phút)
apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py,PO already created for all sales order items,PO đã được tạo cho tất cả các mục đặt hàng
DocType: Healthcare Service Unit,Occupied,Chiếm
DocType: Clinical Procedure,Consumables,Vật tư tiêu hao
apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.js,Include Default Book Entries,Bao gồm các mục sách mặc định
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} {1} is cancelled so the action cannot be completed,{0} {1} đã được hủy nên thao tác không thể hoàn thành
apps/erpnext/erpnext/manufacturing/doctype/production_plan/production_plan.js,"Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured.","Số lượng kế hoạch: Số lượng, trong đó, Lệnh công việc đã được nâng lên, nhưng đang chờ xử lý để sản xuất."
DocType: Customer,Buyer of Goods and Services.,Người mua hàng hoá và dịch vụ.
apps/erpnext/erpnext/hr/doctype/employee_checkin/employee_checkin.py,'employee_field_value' and 'timestamp' are required.,'worker_field_value' và 'dấu thời gian' là bắt buộc.
DocType: Journal Entry,Accounts Payable,Tài khoản Phải trả
apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py,The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document.,Số tiền {0} được đặt trong yêu cầu thanh toán này khác với số tiền đã tính của tất cả các gói thanh toán: {1}. Đảm bảo điều này là chính xác trước khi gửi tài liệu.
DocType: Patient,Allergies,Dị ứng
apps/erpnext/erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.py,The selected BOMs are not for the same item,Các BOMs chọn không cho cùng một mục
apps/erpnext/erpnext/stock/doctype/item_variant_settings/item_variant_settings.py,Cannot set the field <b>{0}</b> for copying in variants,Không thể đặt trường <b>{0}</b> để sao chép trong các biến thể
apps/erpnext/erpnext/healthcare/doctype/clinical_procedure_template/clinical_procedure_template.js,Change Item Code,Thay đổi mã mặt hàng
DocType: Supplier Scorecard Standing,Notify Other,Thông báo khác
DocType: Vital Signs,Blood Pressure (systolic),Huyết áp (tâm thu)
apps/erpnext/erpnext/controllers/buying_controller.py,{0} {1} is {2},{0} {1} là {2}
DocType: Item Price,Valid Upto,Hợp lệ tới
DocType: Leave Type,Expire Carry Forwarded Leaves (Days),Hết hạn mang theo lá chuyển tiếp (ngày)
DocType: Training Event,Workshop,xưởng
DocType: Supplier Scorecard Scoring Standing,Warn Purchase Orders,Lệnh mua hàng cảnh báo
apps/erpnext/erpnext/utilities/user_progress.py,List a few of your customers. They could be organizations or individuals.,lên danh sách một vài khách hàng của bạn. Họ có thể là các tổ chức hoặc cá nhân
DocType: Employee Tax Exemption Proof Submission,Rented From Date,Cho thuê từ ngày
apps/erpnext/erpnext/manufacturing/report/bom_stock_report/bom_stock_report.py,Enough Parts to Build,Phần đủ để xây dựng
apps/erpnext/erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js,Please save first,Vui lòng lưu trước
DocType: POS Profile User,POS Profile User,Người dùng Hồ sơ POS
apps/erpnext/erpnext/assets/doctype/asset/asset.py,Row {0}: Depreciation Start Date is required,Hàng {0}: Ngày bắt đầu khấu hao là bắt buộc
DocType: Purchase Invoice Item,Service Start Date,Ngày bắt đầu dịch vụ
DocType: Subscription Invoice,Subscription Invoice,Hóa đơn đăng ký
apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py,Direct Income,Thu nhập trực tiếp
DocType: Patient Appointment,Date TIme,Ngày giờ
apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py,"Can not filter based on Account, if grouped by Account","Không thể lọc dựa trên tài khoản, nếu nhóm theo tài khoản"
apps/erpnext/erpnext/setup/setup_wizard/operations/install_fixtures.py,Administrative Officer,Nhân viên hành chính
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,Please select Course,Vui lòng chọn Khoá học
apps/erpnext/erpnext/education/doctype/student_group/student_group.py,Please select Course,Vui lòng chọn Khoá học
DocType: Codification Table,Codification Table,Bảng mã hoá
DocType: Timesheet Detail,Hrs,giờ
apps/erpnext/erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js,Changes in {0},Thay đổi trong {0}
DocType: Employee Skill,Employee Skill,Kỹ năng nhân viên
apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js,Difference Account,Tài khoản chênh lệch
DocType: Pricing Rule,Discount on Other Item,Giảm giá cho mặt hàng khác
DocType: Purchase Invoice,Supplier GSTIN,Mã số nhà cung cấp
apps/erpnext/erpnext/regional/doctype/gstr_3b_report/gstr_3b_report.js,View Form,Xem biểu mẫu
DocType: Work Order,Additional Operating Cost,Chi phí điều hành khác
DocType: Lab Test Template,Lab Routine,Lab Routine
apps/erpnext/erpnext/setup/setup_wizard/data/industry_type.py,Cosmetics,Mỹ phẩm
apps/erpnext/erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py,Please select Completion Date for Completed Asset Maintenance Log,Vui lòng chọn Thời điểm hoàn thành cho nhật ký bảo dưỡng tài sản đã hoàn thành
apps/erpnext/erpnext/stock/doctype/material_request/material_request.py,{0} is not the default supplier for any items.,{0} không phải là nhà cung cấp mặc định cho bất kỳ mục nào.
apps/erpnext/erpnext/stock/doctype/item/item.py,"To merge, following properties must be same for both items","Để Sáp nhập, tài sản sau đây phải giống nhau cho cả hai mục"
DocType: Supplier,Block Supplier,Nhà cung cấp khối
DocType: Shipping Rule,Net Weight,Trọng lượng tịnh
DocType: Job Opening,Planned number of Positions,Số lượng vị trí dự kiến
DocType: Employee,Emergency Phone,Điện thoại khẩn cấp
apps/erpnext/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py,{0} {1} does not exist.,{0} {1} không tồn tại.
apps/erpnext/erpnext/stock/doctype/item/item_dashboard.py,Buy,Mua
,Serial No Warranty Expiry,Nối tiếp Không có bảo hành hết hạn
DocType: Sales Invoice,Offline POS Name,Ẩn danh POS
DocType: Task,Dependencies,Phụ thuộc
apps/erpnext/erpnext/utilities/user_progress.py,Student Application,Đơn xin học
DocType: Bank Statement Transaction Payment Item,Payment Reference,Tham chiếu thanh toán
DocType: Supplier,Hold Type,Loại giữ
apps/erpnext/erpnext/education/doctype/grading_scale/grading_scale.py,Please define grade for Threshold 0%,Vui lòng xác định mức cho ngưỡng 0%
apps/erpnext/erpnext/education/doctype/grading_scale/grading_scale.py,Please define grade for Threshold 0%,Vui lòng xác định mức cho ngưỡng 0%
DocType: Bank Statement Transaction Payment Item,Bank Statement Transaction Payment Item,Mục thanh toán giao dịch trên bảng sao kê ngân hàng
DocType: Sales Order,To Deliver,Giao Hàng
DocType: Purchase Invoice Item,Item,Hạng mục
apps/erpnext/erpnext/healthcare/setup.py,High Sensitivity,Độ nhạy cao
apps/erpnext/erpnext/config/non_profit.py,Volunteer Type information.,Thông tin loại Tình nguyện viên.
DocType: Cash Flow Mapping Template,Cash Flow Mapping Template,Mẫu Bản đồ Lưu chuyển tiền tệ
DocType: Travel Request,Costing Details,Chi tiết Chi phí
apps/erpnext/erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js,Show Return Entries,Hiển thị mục nhập trả về
apps/erpnext/erpnext/accounts/page/pos/pos.js,Serial no item cannot be a fraction,Nối tiếp không có mục không thể là một phần
DocType: Journal Entry,Difference (Dr - Cr),Sự khác biệt (Dr - Cr)
DocType: Bank Guarantee,Providing,Cung cấp
DocType: Account,Profit and Loss,Báo cáo kết quả hoạt động kinh doanh
DocType: Tally Migration,Tally Migration,Di chuyển kiểm đếm
apps/erpnext/erpnext/healthcare/doctype/lab_test/lab_test.js,"Not permitted, configure Lab Test Template as required","Không được phép, cấu hình Lab Test Template theo yêu cầu"
DocType: Patient,Risk Factors,Các yếu tố rủi ro
DocType: Patient,Occupational Hazards and Environmental Factors,Các nguy cơ nghề nghiệp và các yếu tố môi trường
apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py,Stock Entries already created for Work Order ,Mục hàng đã được tạo cho Đơn hàng công việc
apps/erpnext/erpnext/templates/pages/cart.html,See past orders,Xem đơn đặt hàng trước
apps/erpnext/erpnext/public/js/hub/pages/Selling.vue,{0} conversations,{0} cuộc hội thoại
DocType: Vital Signs,Respiratory rate,Tỉ lệ hô hấp
apps/erpnext/erpnext/config/help.py,Managing Subcontracting,Quản lý Hợp đồng phụ
DocType: Vital Signs,Body Temperature,Thân nhiệt
DocType: Project,Project will be accessible on the website to these users,Dự án sẽ có thể truy cập vào các trang web tới những người sử dụng
apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py,Cannot cancel {0} {1} because Serial No {2} does not belong to the warehouse {3},Không thể hủy {0} {1} vì Serial No {2} không thuộc về nhà kho {3}
DocType: Detected Disease,Disease,dịch bệnh
DocType: Company,Default Deferred Expense Account,Tài khoản chi phí hoãn lại mặc định
apps/erpnext/erpnext/config/projects.py,Define Project type.,Xác định loại Dự án.
DocType: Supplier Scorecard,Weighting Function,Chức năng Trọng lượng
DocType: Employee Tax Exemption Proof Submission,Total Actual Amount,Tổng số tiền thực tế
DocType: Healthcare Practitioner,OP Consulting Charge,OP phí tư vấn
apps/erpnext/erpnext/utilities/user_progress.py,Setup your ,Thiết lập
DocType: Student Report Generation Tool,Show Marks,Hiển thị Nhãn hiệu
DocType: Support Settings,Get Latest Query,Truy vấn mới nhất
DocType: Quotation,Rate at which Price list currency is converted to company's base currency,Tỷ giá ở mức mà danh sách giá tiền tệ được chuyển đổi tới giá tiền tệ cơ bản của công ty
apps/erpnext/erpnext/setup/doctype/company/company.py,Account {0} does not belong to company: {1},Tài khoản {0} không thuộc về công ty: {1}
apps/erpnext/erpnext/setup/doctype/company/company.py,Abbreviation already used for another company,Bản rút gọn đã được sử dụng cho một công ty khác
DocType: Selling Settings,Default Customer Group,Nhóm khách hàng mặc định
apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.js,Payment Tems,Điều khoản thanh toán
DocType: Employee,IFSC Code,Mã IFSC
DocType: Global Defaults,"If disable, 'Rounded Total' field will not be visible in any transaction","Nếu vô hiệu hóa, trường ""Rounded Total"" sẽ không được hiển thị trong bất kỳ giao dịch"
DocType: BOM,Operating Cost,Chi phí hoạt động
DocType: Crop,Produced Items,Sản phẩm Sản phẩm
DocType: Bank Statement Transaction Entry,Match Transaction to Invoices,Giao dịch khớp với hóa đơn
apps/erpnext/erpnext/erpnext_integrations/exotel_integration.py,Error in Exotel incoming call,Lỗi trong cuộc gọi đến Exotel
DocType: Sales Order Item,Gross Profit,Lợi nhuận gộp
apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js,Unblock Invoice,Bỏ chặn hóa đơn
apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py,Increment cannot be 0,Tăng không thể là 0
DocType: Company,Delete Company Transactions,Xóa Giao dịch Công ty
DocType: Production Plan Item,Quantity and Description,Số lượng và mô tả
apps/erpnext/erpnext/accounts/doctype/payment_entry/payment_entry.py,Reference No and Reference Date is mandatory for Bank transaction,Số tham khảo và Kỳ hạn tham khảo là bắt buộc đối với giao dịch ngân hàng
DocType: Purchase Receipt,Add / Edit Taxes and Charges,Thêm / Sửa Thuế và phí
DocType: Payment Entry Reference,Supplier Invoice No,Nhà cung cấp hóa đơn Không
DocType: Territory,For reference,Để tham khảo
DocType: Healthcare Settings,Appointment Confirmation,Xác nhận cuộc hẹn
DocType: Inpatient Record,HLC-INP-.YYYY.-,HLC-INP-.YYYY.-