diff --git a/erpnext/accounts/doctype/account/account_tree.js b/erpnext/accounts/doctype/account/account_tree.js index 3b939aa3920..49d5396c0f3 100644 --- a/erpnext/accounts/doctype/account/account_tree.js +++ b/erpnext/accounts/doctype/account/account_tree.js @@ -222,7 +222,7 @@ frappe.treeview_settings["Account"] = { "General Ledger", "Balance Sheet", "Profit and Loss Statement", - "Cash Flow Statement", + "Cash Flow", "Accounts Payable", "Accounts Receivable", ]) { diff --git a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js index a1de91faad2..b15745d834c 100644 --- a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js +++ b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js @@ -59,6 +59,10 @@ frappe.ui.form.on("Bank Reconciliation Tool", { ); frm.add_custom_button(__("Auto Reconcile"), function () { + if (!frm.doc.bank_account) { + frappe.msgprint(__("Please select Bank Account")); + return; + } frappe.call({ method: "erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.auto_reconcile_vouchers", args: { diff --git a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py index 05787665a76..42b1a54dea6 100644 --- a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py +++ b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py @@ -495,12 +495,12 @@ def check_matching( bank_account, company, transaction, - document_types, - from_date, - to_date, - filter_by_reference_date, - from_reference_date, - to_reference_date, + document_types=None, + from_date=None, + to_date=None, + filter_by_reference_date=None, + from_reference_date=None, + to_reference_date=None, ): exact_match = True if "exact_match" in document_types else False @@ -540,14 +540,14 @@ def get_queries( bank_account, company, transaction, - document_types, - from_date, - to_date, - filter_by_reference_date, - from_reference_date, - to_reference_date, - exact_match, - common_filters, + document_types=None, + from_date=None, + to_date=None, + filter_by_reference_date=None, + from_reference_date=None, + to_reference_date=None, + exact_match=None, + common_filters=None, ): # get queries to get matching vouchers account_from_to = "paid_to" if transaction.deposit > 0.0 else "paid_from" @@ -580,15 +580,15 @@ def get_matching_queries( bank_account, company, transaction, - document_types, - exact_match, - account_from_to, - from_date, - to_date, - filter_by_reference_date, - from_reference_date, - to_reference_date, - common_filters, + document_types=None, + exact_match=None, + account_from_to=None, + from_date=None, + to_date=None, + filter_by_reference_date=None, + from_reference_date=None, + to_reference_date=None, + common_filters=None, ): queries = [] currency = get_account_currency(bank_account) diff --git a/erpnext/accounts/doctype/dunning/dunning.py b/erpnext/accounts/doctype/dunning/dunning.py index 2719c83ba35..ad58761e1bf 100644 --- a/erpnext/accounts/doctype/dunning/dunning.py +++ b/erpnext/accounts/doctype/dunning/dunning.py @@ -141,7 +141,19 @@ class Dunning(AccountsController): def on_cancel(self): super().on_cancel() - self.ignore_linked_doctypes = ["GL Entry"] + self.ignore_linked_doctypes = [ + "GL Entry", + "Stock Ledger Entry", + "Repost Item Valuation", + "Repost Payment Ledger", + "Repost Payment Ledger Items", + "Repost Accounting Ledger", + "Repost Accounting Ledger Items", + "Unreconcile Payment", + "Unreconcile Payment Entries", + "Payment Ledger Entry", + "Serial and Batch Bundle", + ] def resolve_dunning(doc, state): diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.json b/erpnext/accounts/doctype/payment_entry/payment_entry.json index d6ba193aa0e..6b0115d3f56 100644 --- a/erpnext/accounts/doctype/payment_entry/payment_entry.json +++ b/erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -20,6 +20,7 @@ "party", "party_name", "book_advance_payments_in_separate_party_account", + "reconcile_on_advance_payment_date", "column_break_11", "bank_account", "party_bank_account", @@ -750,6 +751,7 @@ "fieldtype": "Check", "hidden": 1, "label": "Book Advance Payments in Separate Party Account", + "no_copy": 1, "read_only": 1 }, { @@ -765,6 +767,16 @@ "label": "In Words", "print_hide": 1, "read_only": 1 + }, + { + "default": "0", + "fetch_from": "company.reconcile_on_advance_payment_date", + "fieldname": "reconcile_on_advance_payment_date", + "fieldtype": "Check", + "hidden": 1, + "label": "Reconcile on Advance Payment Date", + "no_copy": 1, + "read_only": 1 } ], "index_web_pages_for_search": 1, @@ -778,7 +790,7 @@ "table_fieldname": "payment_entries" } ], - "modified": "2024-04-11 11:25:07.366347", + "modified": "2024-05-17 10:21:11.199445", "modified_by": "Administrator", "module": "Accounts", "name": "Payment Entry", diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.py b/erpnext/accounts/doctype/payment_entry/payment_entry.py index 9f98649248d..e542ff68176 100644 --- a/erpnext/accounts/doctype/payment_entry/payment_entry.py +++ b/erpnext/accounts/doctype/payment_entry/payment_entry.py @@ -1249,13 +1249,16 @@ class PaymentEntry(AccountsController): "voucher_detail_no": invoice.name, } - date_field = "posting_date" - if invoice.reference_doctype in ["Sales Order", "Purchase Order"]: - date_field = "transaction_date" - posting_date = frappe.db.get_value(invoice.reference_doctype, invoice.reference_name, date_field) - - if getdate(posting_date) < getdate(self.posting_date): + if self.reconcile_on_advance_payment_date: posting_date = self.posting_date + else: + date_field = "posting_date" + if invoice.reference_doctype in ["Sales Order", "Purchase Order"]: + date_field = "transaction_date" + posting_date = frappe.db.get_value(invoice.reference_doctype, invoice.reference_name, date_field) + + if getdate(posting_date) < getdate(self.posting_date): + posting_date = self.posting_date dr_or_cr, account = self.get_dr_and_account_for_advances(invoice) args_dict["account"] = account diff --git a/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py b/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py index 0a3a0678084..53f69a47e75 100644 --- a/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py +++ b/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py @@ -1525,6 +1525,55 @@ class TestPaymentReconciliation(FrappeTestCase): ] self.assertEqual(pl_entries, expected_ple) + def test_advance_payment_reconciliation_date(self): + frappe.db.set_value( + "Company", + self.company, + { + "book_advance_payments_in_separate_party_account": 1, + "default_advance_paid_account": self.advance_payable_account, + "reconcile_on_advance_payment_date": 1, + }, + ) + + self.supplier = "_Test Supplier" + amount = 1500 + + pe = self.create_payment_entry(amount=amount) + pe.posting_date = add_days(nowdate(), -1) + pe.party_type = "Supplier" + pe.party = self.supplier + pe.payment_type = "Pay" + pe.paid_from = self.cash + pe.paid_to = self.advance_payable_account + pe.save().submit() + + pi = self.create_purchase_invoice(qty=10, rate=100) + self.assertNotEqual(pe.posting_date, pi.posting_date) + + pr = self.create_payment_reconciliation(party_is_customer=False) + pr.default_advance_account = self.advance_payable_account + pr.from_payment_date = pe.posting_date + pr.get_unreconciled_entries() + self.assertEqual(len(pr.invoices), 1) + self.assertEqual(len(pr.payments), 1) + invoices = [invoice.as_dict() for invoice in pr.invoices] + payments = [payment.as_dict() for payment in pr.payments] + pr.allocate_entries(frappe._dict({"invoices": invoices, "payments": payments})) + pr.reconcile() + + # Assert Ledger Entries + gl_entries = frappe.db.get_all( + "GL Entry", + filters={"voucher_no": pe.name, "is_cancelled": 0, "posting_date": pe.posting_date}, + ) + self.assertEqual(len(gl_entries), 4) + pl_entries = frappe.db.get_all( + "Payment Ledger Entry", + filters={"voucher_no": pe.name, "delinked": 0, "posting_date": pe.posting_date}, + ) + self.assertEqual(len(pl_entries), 3) + def make_customer(customer_name, currency=None): if not frappe.db.exists("Customer", customer_name): diff --git a/erpnext/accounts/doctype/pricing_rule/pricing_rule.json b/erpnext/accounts/doctype/pricing_rule/pricing_rule.json index e8e80449292..6f191c106c9 100644 --- a/erpnext/accounts/doctype/pricing_rule/pricing_rule.json +++ b/erpnext/accounts/doctype/pricing_rule/pricing_rule.json @@ -74,15 +74,21 @@ "discount_amount", "discount_percentage", "for_price_list", - "section_break_13", - "threshold_percentage", - "priority", + "dynamic_condition_tab", "condition", - "column_break_66", + "section_break_13", "apply_multiple_pricing_rules", "apply_discount_on_rate", + "column_break_66", + "threshold_percentage", + "validate_pricing_rule_section", "validate_applied_rule", + "column_break_texp", "rule_description", + "priority_section", + "has_priority", + "column_break_sayg", + "priority", "help_section", "pricing_rule_help", "reference_section", @@ -477,7 +483,7 @@ { "collapsible": 1, "fieldname": "section_break_13", - "fieldtype": "Section Break", + "fieldtype": "Tab Break", "label": "Advanced Settings" }, { @@ -487,6 +493,7 @@ "label": "Threshold for Suggestion (In Percentage)" }, { + "depends_on": "has_priority", "description": "Higher the number, higher the priority", "fieldname": "priority", "fieldtype": "Select", @@ -513,6 +520,7 @@ { "default": "0", "depends_on": "eval:doc.price_or_product_discount == 'Price'", + "description": "If enabled, then system will only validate the pricing rule and not apply automatically. User has to manually set the discount percentage / margin / free items to validate the pricing rule", "fieldname": "validate_applied_rule", "fieldtype": "Check", "label": "Validate Applied Rule" @@ -525,7 +533,8 @@ }, { "fieldname": "help_section", - "fieldtype": "Section Break", + "fieldtype": "Tab Break", + "label": "Help Article", "options": "Simple" }, { @@ -603,12 +612,42 @@ "fieldname": "apply_recursion_over", "fieldtype": "Float", "label": "Apply Recursion Over (As Per Transaction UOM)" + }, + { + "fieldname": "priority_section", + "fieldtype": "Section Break", + "label": "Priority" + }, + { + "fieldname": "dynamic_condition_tab", + "fieldtype": "Tab Break", + "label": "Dynamic Condition" + }, + { + "fieldname": "validate_pricing_rule_section", + "fieldtype": "Section Break", + "label": "Validate Pricing Rule" + }, + { + "fieldname": "column_break_texp", + "fieldtype": "Column Break" + }, + { + "fieldname": "column_break_sayg", + "fieldtype": "Column Break" + }, + { + "default": "0", + "description": "Enable this checkbox even if you want to set the zero priority", + "fieldname": "has_priority", + "fieldtype": "Check", + "label": "Has Priority" } ], "icon": "fa fa-gift", "idx": 1, "links": [], - "modified": "2023-02-14 04:53:34.887358", + "modified": "2024-05-17 13:16:34.496704", "modified_by": "Administrator", "module": "Accounts", "name": "Pricing Rule", diff --git a/erpnext/accounts/doctype/pricing_rule/pricing_rule.py b/erpnext/accounts/doctype/pricing_rule/pricing_rule.py index ee9a2137d55..420fd3bee9d 100644 --- a/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +++ b/erpnext/accounts/doctype/pricing_rule/pricing_rule.py @@ -27,9 +27,7 @@ class PricingRule(Document): from frappe.types import DF from erpnext.accounts.doctype.pricing_rule_brand.pricing_rule_brand import PricingRuleBrand - from erpnext.accounts.doctype.pricing_rule_item_code.pricing_rule_item_code import ( - PricingRuleItemCode, - ) + from erpnext.accounts.doctype.pricing_rule_item_code.pricing_rule_item_code import PricingRuleItemCode from erpnext.accounts.doctype.pricing_rule_item_group.pricing_rule_item_group import ( PricingRuleItemGroup, ) @@ -67,6 +65,7 @@ class PricingRule(Document): free_item_rate: DF.Currency free_item_uom: DF.Link | None free_qty: DF.Float + has_priority: DF.Check is_cumulative: DF.Check is_recursive: DF.Check item_groups: DF.Table[PricingRuleItemGroup] @@ -156,6 +155,12 @@ class PricingRule(Document): frappe.throw(_("Duplicate {0} found in the table").format(self.apply_on)) def validate_mandatory(self): + if self.has_priority and not self.priority: + throw(_("Priority is mandatory"), frappe.MandatoryError, _("Please Set Priority")) + + if self.priority and not self.has_priority: + self.has_priority = 1 + for apply_on, field in apply_on_dict.items(): if self.apply_on == apply_on and len(self.get(field) or []) < 1: throw(_("{0} is not added in the table").format(apply_on), frappe.MandatoryError) diff --git a/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py b/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py index 5df689e5a2b..b047898b771 100644 --- a/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py +++ b/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py @@ -1157,6 +1157,62 @@ class TestPricingRule(unittest.TestCase): frappe.delete_doc_if_exists("Pricing Rule", "_Test Pricing Rule 1") frappe.delete_doc_if_exists("Pricing Rule", "_Test Pricing Rule 2") + def test_priority_of_multiple_pricing_rules(self): + frappe.delete_doc_if_exists("Pricing Rule", "_Test Pricing Rule 1") + frappe.delete_doc_if_exists("Pricing Rule", "_Test Pricing Rule 2") + + test_record = { + "doctype": "Pricing Rule", + "title": "_Test Pricing Rule 1", + "name": "_Test Pricing Rule 1", + "apply_on": "Item Code", + "currency": "USD", + "items": [ + { + "item_code": "_Test Item", + } + ], + "selling": 1, + "price_or_product_discount": "Price", + "rate_or_discount": "Discount Percentage", + "discount_percentage": 10, + "has_priority": 1, + "priority": 1, + "company": "_Test Company", + } + + frappe.get_doc(test_record.copy()).insert() + + test_record = { + "doctype": "Pricing Rule", + "title": "_Test Pricing Rule 2", + "name": "_Test Pricing Rule 2", + "apply_on": "Item Code", + "currency": "USD", + "items": [ + { + "item_code": "_Test Item", + } + ], + "selling": 1, + "price_or_product_discount": "Price", + "rate_or_discount": "Discount Percentage", + "discount_percentage": 20, + "has_priority": 1, + "priority": 3, + "company": "_Test Company", + } + + frappe.get_doc(test_record.copy()).insert() + + so = make_sales_order(item_code="_Test Item", qty=1, price_list_rate=1000, do_not_submit=True) + self.assertEqual(so.items[0].discount_percentage, 20) + self.assertEqual(so.items[0].rate, 800) + + frappe.delete_doc_if_exists("Sales Order", so.name) + frappe.delete_doc_if_exists("Pricing Rule", "_Test Pricing Rule 1") + frappe.delete_doc_if_exists("Pricing Rule", "_Test Pricing Rule 2") + test_dependencies = ["Campaign"] @@ -1185,6 +1241,7 @@ def make_pricing_rule(**args): "priority": args.priority or 1, "discount_amount": args.discount_amount or 0.0, "apply_multiple_pricing_rules": args.apply_multiple_pricing_rules or 0, + "has_priority": args.has_priority or 0, } ) diff --git a/erpnext/accounts/doctype/pricing_rule/utils.py b/erpnext/accounts/doctype/pricing_rule/utils.py index 44f7f33a319..733c9bdfd95 100644 --- a/erpnext/accounts/doctype/pricing_rule/utils.py +++ b/erpnext/accounts/doctype/pricing_rule/utils.py @@ -33,6 +33,9 @@ def get_pricing_rules(args, doc=None): for apply_on in ["Item Code", "Item Group", "Brand"]: pricing_rules.extend(_get_pricing_rules(apply_on, args, values)) + if pricing_rules and pricing_rules[0].has_priority: + continue + if pricing_rules and not apply_multiple_pricing_rules(pricing_rules): break diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js index 957611f7858..c56a083808d 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js @@ -485,10 +485,12 @@ function hide_fields(doc) { var item_fields_stock = ["warehouse_section", "received_qty", "rejected_qty"]; - cur_frm.fields_dict["items"].grid.set_column_disp( - item_fields_stock, - cint(doc.update_stock) == 1 || cint(doc.is_return) == 1 ? true : false - ); + if (cur_frm.fields_dict["items"]) { + cur_frm.fields_dict["items"].grid.set_column_disp( + item_fields_stock, + cint(doc.update_stock) == 1 || cint(doc.is_return) == 1 ? true : false + ); + } cur_frm.refresh_fields(); } diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py index 496ffcd2648..f4d38220ae4 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -1035,10 +1035,10 @@ class PurchaseInvoice(BuyingController): if provisional_accounting_for_non_stock_items: if item.purchase_receipt: - provisional_account, pr_qty, pr_base_rate = frappe.get_cached_value( + provisional_account, pr_qty, pr_base_rate, pr_rate = frappe.get_cached_value( "Purchase Receipt Item", item.pr_detail, - ["provisional_expense_account", "qty", "base_rate"], + ["provisional_expense_account", "qty", "base_rate", "rate"], ) provisional_account = provisional_account or self.get_company_default( "default_provisional_account" @@ -1072,7 +1072,10 @@ class PurchaseInvoice(BuyingController): self.posting_date, provisional_account, reverse=1, - item_amount=(min(item.qty, pr_qty) * pr_base_rate), + item_amount=( + (min(item.qty, pr_qty) * pr_rate) + * purchase_receipt_doc.get("conversion_rate") + ), ) if not self.is_internal_transfer(): diff --git a/erpnext/accounts/report/general_ledger/general_ledger.py b/erpnext/accounts/report/general_ledger/general_ledger.py index 02de6c3aee1..2946cfa0e82 100644 --- a/erpnext/accounts/report/general_ledger/general_ledger.py +++ b/erpnext/accounts/report/general_ledger/general_ledger.py @@ -219,7 +219,8 @@ def get_conditions(filters): if filters.get("account"): filters.account = get_accounts_with_children(filters.account) - conditions.append("account in %(account)s") + if filters.account: + conditions.append("account in %(account)s") if filters.get("cost_center"): filters.cost_center = get_cost_centers_with_children(filters.cost_center) @@ -329,7 +330,7 @@ def get_accounts_with_children(accounts): else: frappe.throw(_("Account: {0} does not exist").format(d)) - return list(set(all_accounts)) + return list(set(all_accounts)) if all_accounts else None def get_data_with_opening_closing(filters, account_details, accounting_dimensions, gl_entries): diff --git a/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.js b/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.js index e3f90f29982..0e84f882b51 100644 --- a/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.js +++ b/erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.js @@ -1,8 +1,4 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -frappe.require("assets/erpnext/js/purchase_trends_filters.js", function () { - frappe.query_reports["Purchase Invoice Trends"] = { - filters: erpnext.get_purchase_trends_filters(), - }; -}); +frappe.query_reports["Purchase Invoice Trends"] = $.extend({}, erpnext.purchase_trends_filters); diff --git a/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.js b/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.js index 292d827b163..bdc39f36a8e 100644 --- a/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.js +++ b/erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.js @@ -1,8 +1,4 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -frappe.require("assets/erpnext/js/sales_trends_filters.js", function () { - frappe.query_reports["Sales Invoice Trends"] = { - filters: erpnext.get_sales_trends_filters(), - }; -}); +frappe.query_reports["Sales Invoice Trends"] = $.extend({}, erpnext.sales_trends_filters); diff --git a/erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py b/erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py index c1ea42ba020..f64e9123dc0 100644 --- a/erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py +++ b/erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py @@ -363,6 +363,16 @@ class AssetDepreciationSchedule(Document): row.depreciation_start_date, has_wdv_or_dd_non_yearly_pro_rata, ) + if flt(depreciation_amount, asset_doc.precision("gross_purchase_amount")) <= 0: + frappe.throw( + _( + "Gross Purchase Amount Too Low: {0} cannot be depreciated over {1} cycles with a frequency of {2} depreciations." + ).format( + frappe.bold(asset_doc.gross_purchase_amount), + frappe.bold(row.total_number_of_depreciations), + frappe.bold(row.frequency_of_depreciation), + ) + ) elif n == 0 and has_wdv_or_dd_non_yearly_pro_rata and self.opening_accumulated_depreciation: if not is_first_day_of_the_month(getdate(asset_doc.available_for_use_date)): from_date = get_last_day( diff --git a/erpnext/buying/report/purchase_order_trends/purchase_order_trends.js b/erpnext/buying/report/purchase_order_trends/purchase_order_trends.js index 366fff191a0..56684a8659b 100644 --- a/erpnext/buying/report/purchase_order_trends/purchase_order_trends.js +++ b/erpnext/buying/report/purchase_order_trends/purchase_order_trends.js @@ -1,8 +1,4 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -frappe.require("assets/erpnext/js/purchase_trends_filters.js", function () { - frappe.query_reports["Purchase Order Trends"] = { - filters: erpnext.get_purchase_trends_filters(), - }; -}); +frappe.query_reports["Purchase Order Trends"] = $.extend({}, erpnext.purchase_trends_filters); diff --git a/erpnext/controllers/accounts_controller.py b/erpnext/controllers/accounts_controller.py index c527a02376c..40ce8b6bc57 100644 --- a/erpnext/controllers/accounts_controller.py +++ b/erpnext/controllers/accounts_controller.py @@ -2183,10 +2183,10 @@ class AccountsController(TransactionBase): for d in self.get("payment_schedule"): if d.invoice_portion: d.payment_amount = flt( - grand_total * flt(d.invoice_portion / 100), d.precision("payment_amount") + grand_total * flt(d.invoice_portion) / 100, d.precision("payment_amount") ) d.base_payment_amount = flt( - base_grand_total * flt(d.invoice_portion / 100), d.precision("base_payment_amount") + base_grand_total * flt(d.invoice_portion) / 100, d.precision("base_payment_amount") ) d.outstanding = d.payment_amount elif not d.invoice_portion: diff --git a/erpnext/manufacturing/doctype/bom_creator/bom_creator.py b/erpnext/manufacturing/doctype/bom_creator/bom_creator.py index 0158f7c5b97..e236e7a6345 100644 --- a/erpnext/manufacturing/doctype/bom_creator/bom_creator.py +++ b/erpnext/manufacturing/doctype/bom_creator/bom_creator.py @@ -80,6 +80,18 @@ class BOMCreator(Document): if row.is_expandable and row.item_code == self.item_code: frappe.throw(_("Item {0} cannot be added as a sub-assembly of itself").format(row.item_code)) + if not row.parent_row_no and row.fg_item and row.fg_item != self.item_code: + frappe.throw( + _("At row {0}: set Parent Row No for item {1}").format(row.idx, row.item_code), + title=_("Set Parent Row No in Items Table"), + ) + + elif row.parent_row_no and row.fg_item == self.item_code: + frappe.throw( + _("At row {0}: Parent Row No cannot be set for item {1}").format(row.idx, row.item_code), + title=_("Remove Parent Row No in Items Table"), + ) + def set_status(self, save=False): self.status = { 0: "Draft", @@ -410,6 +422,10 @@ def add_sub_assembly(**kwargs): parent_row_no = item_row.idx name = "" + else: + parent_row_no = [row.idx for row in doc.items if row.name == kwargs.fg_reference_id] + if parent_row_no: + parent_row_no = parent_row_no[0] for row in bom_item.get("items"): row = frappe._dict(row) diff --git a/erpnext/manufacturing/doctype/job_card/job_card.py b/erpnext/manufacturing/doctype/job_card/job_card.py index 4fd628bbecb..abea4c86279 100644 --- a/erpnext/manufacturing/doctype/job_card/job_card.py +++ b/erpnext/manufacturing/doctype/job_card/job_card.py @@ -214,7 +214,11 @@ class JobCard(Document): if d.to_time and get_datetime(d.from_time) > get_datetime(d.to_time): frappe.throw(_("Row {0}: From time must be less than to time").format(d.idx)) - data = self.get_overlap_for(d) + open_job_cards = [] + if d.get("employee"): + open_job_cards = self.get_open_job_cards(d.get("employee")) + + data = self.get_overlap_for(d, open_job_cards=open_job_cards) if data: frappe.throw( _("Row {0}: From Time and To Time of {1} is overlapping with {2}").format( @@ -235,12 +239,12 @@ class JobCard(Document): for row in self.sub_operations: self.total_completed_qty += row.completed_qty - def get_overlap_for(self, args): + def get_overlap_for(self, args, open_job_cards=None): time_logs = [] time_logs.extend(self.get_time_logs(args, "Job Card Time Log")) - time_logs.extend(self.get_time_logs(args, "Job Card Scheduled Time")) + time_logs.extend(self.get_time_logs(args, "Job Card Scheduled Time", open_job_cards=open_job_cards)) if not time_logs: return {} @@ -304,7 +308,7 @@ class JobCard(Document): return True return overlap - def get_time_logs(self, args, doctype): + def get_time_logs(self, args, doctype, open_job_cards=None): jc = frappe.qb.DocType("Job Card") jctl = frappe.qb.DocType(doctype) @@ -341,8 +345,14 @@ class JobCard(Document): if self.workstation: query = query.where(jc.workstation == self.workstation) - if args.get("employee") and doctype == "Job Card Time Log": - query = query.where(jctl.employee == args.get("employee")) + if args.get("employee"): + if not open_job_cards and doctype == "Job Card Scheduled Time": + return [] + + if doctype == "Job Card Time Log": + query = query.where(jctl.employee == args.get("employee")) + else: + query = query.where(jc.name.isin(open_job_cards)) if doctype != "Job Card Time Log": query = query.where(jc.total_time_in_mins == 0) @@ -351,6 +361,27 @@ class JobCard(Document): return time_logs + def get_open_job_cards(self, employee): + jc = frappe.qb.DocType("Job Card") + jctl = frappe.qb.DocType("Job Card Time Log") + + query = ( + frappe.qb.from_(jc) + .left_join(jctl) + .on(jc.name == jctl.parent) + .select(jc.name) + .where( + (jctl.parent == jc.name) + & (jc.workstation == self.workstation) + & (jctl.employee == employee) + & (jc.docstatus < 1) + & (jc.name != self.name) + ) + ) + + jobs = query.run(as_dict=True) + return [job.get("name") for job in jobs] if jobs else [] + def get_workstation_based_on_available_slot(self, existing_time_logs) -> dict: workstations = get_workstations(self.workstation_type) if workstations: diff --git a/erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json b/erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json index a7102d7d237..6a86214986a 100644 --- a/erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +++ b/erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json @@ -42,8 +42,7 @@ "fieldname": "completed_qty", "fieldtype": "Float", "in_list_view": 1, - "label": "Completed Qty", - "reqd": 1 + "label": "Completed Qty" }, { "fieldname": "employee", @@ -64,7 +63,7 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2020-12-23 14:30:00.970916", + "modified": "2024-05-21 12:40:55.765860", "modified_by": "Administrator", "module": "Manufacturing", "name": "Job Card Time Log", @@ -74,4 +73,4 @@ "sort_field": "modified", "sort_order": "ASC", "track_changes": 1 -} \ No newline at end of file +} diff --git a/erpnext/manufacturing/report/bom_explorer/bom_explorer.py b/erpnext/manufacturing/report/bom_explorer/bom_explorer.py index 2aa31be0f0e..97c85502c98 100644 --- a/erpnext/manufacturing/report/bom_explorer/bom_explorer.py +++ b/erpnext/manufacturing/report/bom_explorer/bom_explorer.py @@ -21,7 +21,8 @@ def get_exploded_items(bom, data, indent=0, qty=1): exploded_items = frappe.get_all( "BOM Item", filters={"parent": bom}, - fields=["qty", "bom_no", "qty", "item_code", "item_name", "description", "uom"], + fields=["qty", "bom_no", "qty", "item_code", "item_name", "description", "uom", "idx"], + order_by="idx ASC", ) for item in exploded_items: diff --git a/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js b/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js index 23fa9ab41b0..4a34d126f88 100644 --- a/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js +++ b/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js @@ -93,4 +93,11 @@ frappe.query_reports["Exponential Smoothing Forecasting"] = { }, }, ], + formatter: function (value, row, column, data, default_formatter) { + value = default_formatter(value, row, column, data); + if (column.fieldname === "item_code" && value.includes("Total Quantity")) { + value = "" + value + ""; + } + return value; + }, }; diff --git a/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py b/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py index 85648d6b326..0f5fa959dc5 100644 --- a/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py +++ b/erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py @@ -144,7 +144,7 @@ class ForecastingReport(ExponentialSmoothingForecast): if not self.data: return - total_row = {"item_code": _(frappe.bold("Total Quantity"))} + total_row = {"item_code": _("Total Quantity")} for value in self.data: for period in self.period_list: diff --git a/erpnext/patches.txt b/erpnext/patches.txt index f2868b90d5c..2522077e9c3 100644 --- a/erpnext/patches.txt +++ b/erpnext/patches.txt @@ -364,3 +364,4 @@ erpnext.patches.v15_0.delete_orphaned_asset_movement_item_records erpnext.patches.v15_0.fix_debit_credit_in_transaction_currency erpnext.patches.v15_0.remove_cancelled_asset_capitalization_from_asset erpnext.patches.v15_0.rename_purchase_receipt_amount_to_purchase_amount +erpnext.patches.v14_0.enable_set_priority_for_pricing_rules #1 diff --git a/erpnext/patches/v13_0/create_accounting_dimensions_for_asset_repair.py b/erpnext/patches/v13_0/create_accounting_dimensions_for_asset_repair.py index 61a5c86386c..a1719fb41bb 100644 --- a/erpnext/patches/v13_0/create_accounting_dimensions_for_asset_repair.py +++ b/erpnext/patches/v13_0/create_accounting_dimensions_for_asset_repair.py @@ -13,8 +13,9 @@ def execute(): for d in accounting_dimensions: doctype = "Asset Repair" field = frappe.db.get_value("Custom Field", {"dt": doctype, "fieldname": d.fieldname}) + docfield = frappe.db.get_value("DocField", {"parent": doctype, "fieldname": d.fieldname}) - if field: + if field or docfield: continue df = { diff --git a/erpnext/patches/v14_0/enable_set_priority_for_pricing_rules.py b/erpnext/patches/v14_0/enable_set_priority_for_pricing_rules.py new file mode 100644 index 00000000000..af87eeb2727 --- /dev/null +++ b/erpnext/patches/v14_0/enable_set_priority_for_pricing_rules.py @@ -0,0 +1,10 @@ +import frappe + + +def execute(): + pr_table = frappe.qb.DocType("Pricing Rule") + ( + frappe.qb.update(pr_table) + .set(pr_table.has_priority, 1) + .where((pr_table.priority.isnotnull()) & (pr_table.priority != "")) + ).run() diff --git a/erpnext/public/js/erpnext.bundle.js b/erpnext/public/js/erpnext.bundle.js index 527d452a450..6e1097072fa 100644 --- a/erpnext/public/js/erpnext.bundle.js +++ b/erpnext/public/js/erpnext.bundle.js @@ -34,5 +34,7 @@ import "./utils/sales_common.js"; import "./controllers/buying.js"; import "./utils/demo.js"; import "./financial_statements.js"; +import "./sales_trends_filters.js"; +import "./purchase_trends_filters.js"; // import { sum } from 'frappe/public/utils/util.js' diff --git a/erpnext/public/js/purchase_trends_filters.js b/erpnext/public/js/purchase_trends_filters.js index 14ffaf82162..75428d3be25 100644 --- a/erpnext/public/js/purchase_trends_filters.js +++ b/erpnext/public/js/purchase_trends_filters.js @@ -1,8 +1,8 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -erpnext.get_purchase_trends_filters = function () { - return [ +erpnext.purchase_trends_filters = { + filters: [ { fieldname: "company", label: __("Company"), @@ -63,5 +63,5 @@ erpnext.get_purchase_trends_filters = function () { options: ["", { value: "Item", label: __("Item") }, { value: "Supplier", label: __("Supplier") }], default: "", }, - ]; + ], }; diff --git a/erpnext/public/js/sales_trends_filters.js b/erpnext/public/js/sales_trends_filters.js index 85daa01ff67..2f8e6f93c61 100644 --- a/erpnext/public/js/sales_trends_filters.js +++ b/erpnext/public/js/sales_trends_filters.js @@ -1,8 +1,8 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -erpnext.get_sales_trends_filters = function () { - return [ +erpnext.sales_trends_filters = { + filters: [ { fieldname: "period", label: __("Period"), @@ -53,5 +53,5 @@ erpnext.get_sales_trends_filters = function () { options: "Company", default: frappe.defaults.get_user_default("Company"), }, - ]; + ], }; diff --git a/erpnext/public/js/utils.js b/erpnext/public/js/utils.js index 288b2f6932d..fcb541f71a8 100755 --- a/erpnext/public/js/utils.js +++ b/erpnext/public/js/utils.js @@ -1183,4 +1183,39 @@ $.extend(erpnext.stock.utils, { const barcode_scanner = new erpnext.utils.BarcodeScanner({ frm: frm }); barcode_scanner.scan_api_call(child_row.barcode, callback); }, + + get_serial_range(range_string, separator) { + /* Return an array of serial numbers generated from a range string. + + Examples (using separator "::"): + - "1::5" => ["1", "2", "3", "4", "5"] + - "SN0009::12" => ["SN0009", "SN0010", "SN0011", "SN0012"] + - "ABC//05::8" => ["ABC//05", "ABC//06", "ABC//07", "ABC//08"] + */ + if (!range_string) { + return; + } + + const [start_str, end_str] = range_string.trim().split(separator); + + if (!start_str || !end_str) { + return; + } + + const end_int = parseInt(end_str); + const length_difference = start_str.length - end_str.length; + const start_int = parseInt(start_str.substring(length_difference)); + + if (isNaN(start_int) || isNaN(end_int)) { + return; + } + + const serial_numbers = Array(end_int - start_int + 1) + .fill(1) + .map((x, y) => x + y) + .map((x) => x + start_int - 1); + return serial_numbers.map((val) => { + return start_str.substring(0, length_difference) + val.toString().padStart(end_str.length, "0"); + }); + }, }); diff --git a/erpnext/public/js/utils/serial_no_batch_selector.js b/erpnext/public/js/utils/serial_no_batch_selector.js index 1edeca95018..3c3d90c6d4f 100644 --- a/erpnext/public/js/utils/serial_no_batch_selector.js +++ b/erpnext/public/js/utils/serial_no_batch_selector.js @@ -206,6 +206,16 @@ erpnext.SerialBatchPackageSelector = class SerialNoBatchBundleUpdate { label: __("{0} {1} Manually", [primary_label, label]), depends_on: "eval:doc.import_using_csv_file === 0", }, + { + fieldtype: "Data", + label: __("Enter Serial No Range"), + fieldname: "serial_no_range", + depends_on: "eval:doc.import_using_csv_file === 0", + description: __('Enter "ABC-001::100" for serial nos "ABC-001" to "ABC-100".'), + onchange: () => { + this.set_serial_nos_from_range(); + }, + }, { fieldtype: "Small Text", label: __("Enter Serial Nos"), @@ -255,6 +265,20 @@ erpnext.SerialBatchPackageSelector = class SerialNoBatchBundleUpdate { return fields; } + set_serial_nos_from_range() { + const serial_no_range = this.dialog.get_value("serial_no_range"); + + if (!serial_no_range) { + return; + } + + const serial_nos = erpnext.stock.utils.get_serial_range(serial_no_range, "::"); + + if (serial_nos) { + this.dialog.set_value("upload_serial_nos", serial_nos.join("\n")); + } + } + create_serial_nos() { let { upload_serial_nos } = this.dialog.get_values(); diff --git a/erpnext/selling/page/point_of_sale/pos_controller.js b/erpnext/selling/page/point_of_sale/pos_controller.js index 452019ebf4b..864ceffa8b1 100644 --- a/erpnext/selling/page/point_of_sale/pos_controller.js +++ b/erpnext/selling/page/point_of_sale/pos_controller.js @@ -684,7 +684,7 @@ erpnext.PointOfSale.Controller = class { const is_stock_item = resp[1]; frappe.dom.unfreeze(); - const bold_uom = item_row.stock_uom.bold(); + const bold_uom = item_row.uom.bold(); const bold_item_code = item_row.item_code.bold(); const bold_warehouse = warehouse.bold(); const bold_available_qty = available_qty.toString().bold(); diff --git a/erpnext/selling/report/quotation_trends/quotation_trends.js b/erpnext/selling/report/quotation_trends/quotation_trends.js index 8ffeda47b64..ff0b30847de 100644 --- a/erpnext/selling/report/quotation_trends/quotation_trends.js +++ b/erpnext/selling/report/quotation_trends/quotation_trends.js @@ -1,8 +1,4 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -frappe.require("assets/erpnext/js/sales_trends_filters.js", function () { - frappe.query_reports["Quotation Trends"] = { - filters: erpnext.get_sales_trends_filters(), - }; -}); +frappe.query_reports["Quotation Trends"] = $.extend({}, erpnext.sales_trends_filters); diff --git a/erpnext/selling/report/sales_order_trends/sales_order_trends.js b/erpnext/selling/report/sales_order_trends/sales_order_trends.js index fe38804ed45..28bd5504930 100644 --- a/erpnext/selling/report/sales_order_trends/sales_order_trends.js +++ b/erpnext/selling/report/sales_order_trends/sales_order_trends.js @@ -1,8 +1,4 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -frappe.require("assets/erpnext/js/sales_trends_filters.js", function () { - frappe.query_reports["Sales Order Trends"] = { - filters: erpnext.get_sales_trends_filters(), - }; -}); +frappe.query_reports["Sales Order Trends"] = $.extend({}, erpnext.sales_trends_filters); diff --git a/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py b/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py index 5046ec52c95..b837d67e1c0 100644 --- a/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py +++ b/erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py @@ -164,9 +164,10 @@ def prepare_data( rows = {} target_qty_amt_field = "target_qty" if filters.get("target_on") == "Quantity" else "target_amount" - qty_or_amount_field = "stock_qty" if filters.get("target_on") == "Quantity" else "base_net_amount" + item_group_parent_child_map = get_item_group_parent_child_map() + for d in sales_users_data: key = (d.parent, d.item_group) dist_data = get_periodwise_distribution_data(d.distribution_id, period_list, filters.get("period")) @@ -191,7 +192,11 @@ def prepare_data( r.get(sales_field) == d.parent and period.from_date <= r.get(date_field) and r.get(date_field) <= period.to_date - and (not sales_user_wise_item_groups.get(d.parent) or r.item_group == d.item_group) + and ( + not sales_user_wise_item_groups.get(d.parent) + or r.item_group == d.item_group + or r.item_group in item_group_parent_child_map.get(d.item_group, []) + ) ): details[p_key] += r.get(qty_or_amount_field, 0) details[variance_key] = details.get(p_key) - details.get(target_key) @@ -204,6 +209,25 @@ def prepare_data( return rows +def get_item_group_parent_child_map(): + """ + Returns a dict of all item group parents and leaf children associated with them. + """ + + item_groups = frappe.get_all( + "Item Group", fields=["name", "parent_item_group"], order_by="lft desc, rgt desc" + ) + item_group_parent_child_map = {} + + for item_group in item_groups: + children = item_group_parent_child_map.get(item_group.name, []) + if not children: + children = [item_group.name] + item_group_parent_child_map.setdefault(item_group.parent_item_group, []).extend(children) + + return item_group_parent_child_map + + def get_actual_data(filters, sales_users_or_territory_data, date_field, sales_field): fiscal_year = get_fiscal_year(fiscal_year=filters.get("fiscal_year"), as_dict=1) diff --git a/erpnext/setup/demo.py b/erpnext/setup/demo.py index f0253529c78..68d9fdfec5c 100644 --- a/erpnext/setup/demo.py +++ b/erpnext/setup/demo.py @@ -205,8 +205,11 @@ def clear_demo_record(document): if key not in valid_columns: filters.pop(key, None) - doc = frappe.get_doc(document_type, filters) - doc.delete(ignore_permissions=True) + try: + doc = frappe.get_doc(document_type, filters) + doc.delete(ignore_permissions=True) + except frappe.exceptions.DoesNotExistError: + pass def delete_company(company): diff --git a/erpnext/setup/doctype/company/company.json b/erpnext/setup/doctype/company/company.json index c222d6b96a7..674805980f5 100644 --- a/erpnext/setup/doctype/company/company.json +++ b/erpnext/setup/doctype/company/company.json @@ -67,6 +67,7 @@ "default_finance_book", "advance_payments_section", "book_advance_payments_in_separate_party_account", + "reconcile_on_advance_payment_date", "column_break_fwcf", "default_advance_received_account", "default_advance_paid_account", @@ -779,6 +780,14 @@ "fieldtype": "Tab Break", "label": "Dashboard", "show_dashboard": 1 + }, + { + "default": "0", + "depends_on": "eval: doc.book_advance_payments_in_separate_party_account", + "description": "If Enabled - Reconciliation happens on the Advance Payment posting date
\nIf Disabled - Reconciliation happens on oldest of 2 Dates: Invoice Date or the Advance Payment posting date
\n", + "fieldname": "reconcile_on_advance_payment_date", + "fieldtype": "Check", + "label": "Reconcile on Advance Payment Date" } ], "icon": "fa fa-building", @@ -786,7 +795,7 @@ "image_field": "company_logo", "is_tree": 1, "links": [], - "modified": "2024-04-23 12:38:33.173938", + "modified": "2024-05-16 12:39:54.694232", "modified_by": "Administrator", "module": "Setup", "name": "Company", diff --git a/erpnext/setup/doctype/company/company.py b/erpnext/setup/doctype/company/company.py index e330fe95cde..2a0b32ed568 100644 --- a/erpnext/setup/doctype/company/company.py +++ b/erpnext/setup/doctype/company/company.py @@ -85,6 +85,7 @@ class Company(NestedSet): parent_company: DF.Link | None payment_terms: DF.Link | None phone_no: DF.Data | None + reconcile_on_advance_payment_date: DF.Check registration_details: DF.Code | None rgt: DF.Int round_off_account: DF.Link | None diff --git a/erpnext/stock/doctype/batch/batch.js b/erpnext/stock/doctype/batch/batch.js index 3719c96c6e7..4ed428421ca 100644 --- a/erpnext/stock/doctype/batch/batch.js +++ b/erpnext/stock/doctype/batch/batch.js @@ -47,9 +47,14 @@ frappe.ui.form.on("Batch", { }, make_dashboard: (frm) => { if (!frm.is_new()) { + let for_stock_levels = 0; + if (!frm.doc.batch_qty && frm.doc.expiry_date) { + for_stock_levels = 1; + } + frappe.call({ method: "erpnext.stock.doctype.batch.batch.get_batch_qty", - args: { batch_no: frm.doc.name, item_code: frm.doc.item }, + args: { batch_no: frm.doc.name, item_code: frm.doc.item, for_stock_levels: for_stock_levels }, callback: (r) => { if (!r.message) { return; diff --git a/erpnext/stock/doctype/batch/batch.py b/erpnext/stock/doctype/batch/batch.py index 8726642cb43..77b87aa995c 100644 --- a/erpnext/stock/doctype/batch/batch.py +++ b/erpnext/stock/doctype/batch/batch.py @@ -199,6 +199,7 @@ def get_batch_qty( posting_date=None, posting_time=None, ignore_voucher_nos=None, + for_stock_levels=False, ): """Returns batch actual qty if warehouse is passed, or returns dict of qty by warehouse if warehouse is None @@ -222,6 +223,7 @@ def get_batch_qty( "posting_time": posting_time, "batch_no": batch_no, "ignore_voucher_nos": ignore_voucher_nos, + "for_stock_levels": for_stock_levels, } ) diff --git a/erpnext/stock/doctype/batch/batch_list.js b/erpnext/stock/doctype/batch/batch_list.js index 2060d6e8763..644ef131399 100644 --- a/erpnext/stock/doctype/batch/batch_list.js +++ b/erpnext/stock/doctype/batch/batch_list.js @@ -3,8 +3,6 @@ frappe.listview_settings["Batch"] = { get_indicator: (doc) => { if (doc.disabled) { return [__("Disabled"), "gray", "disabled,=,1"]; - } else if (!doc.batch_qty) { - return [__("Empty"), "gray", "batch_qty,=,0|disabled,=,0"]; } else if ( doc.expiry_date && frappe.datetime.get_diff(doc.expiry_date, frappe.datetime.nowdate()) <= 0 @@ -14,6 +12,8 @@ frappe.listview_settings["Batch"] = { "red", "expiry_date,not in,|expiry_date,<=,Today|batch_qty,>,0|disabled,=,0", ]; + } else if (!doc.batch_qty) { + return [__("Empty"), "gray", "batch_qty,=,0|disabled,=,0"]; } else { return [__("Active"), "green", "batch_qty,>,0|disabled,=,0"]; } diff --git a/erpnext/stock/doctype/item/item.py b/erpnext/stock/doctype/item/item.py index 1c43233d7c2..1ceb949d691 100644 --- a/erpnext/stock/doctype/item/item.py +++ b/erpnext/stock/doctype/item/item.py @@ -5,7 +5,7 @@ import copy import json import frappe -from frappe import _ +from frappe import _, bold from frappe.model.document import Document from frappe.query_builder import Interval from frappe.query_builder.functions import Count, CurDate, UnixTimestamp @@ -469,6 +469,13 @@ class Item(Document): def validate_warehouse_for_reorder(self): """Validate Reorder level table for duplicate and conditional mandatory""" warehouse_material_request_type: list[tuple[str, str]] = [] + + _warehouse_before_save = frappe._dict() + if not self.is_new() and self._doc_before_save: + _warehouse_before_save = { + d.name: d.warehouse for d in self._doc_before_save.get("reorder_levels") or [] + } + for d in self.get("reorder_levels"): if not d.warehouse_group: d.warehouse_group = d.warehouse @@ -485,6 +492,19 @@ class Item(Document): if d.warehouse_reorder_level and not d.warehouse_reorder_qty: frappe.throw(_("Row #{0}: Please set reorder quantity").format(d.idx)) + if d.warehouse_group and d.warehouse: + if _warehouse_before_save.get(d.name) == d.warehouse: + continue + + child_warehouses = get_child_warehouses(d.warehouse_group) + if d.warehouse not in child_warehouses: + frappe.throw( + _( + "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" + ).format(d.idx, bold(d.warehouse), bold(d.warehouse_group)), + title=_("Incorrect Check in (group) Warehouse for Reorder"), + ) + def stock_ledger_created(self): if not hasattr(self, "_stock_ledger_created"): self._stock_ledger_created = len( @@ -1360,3 +1380,10 @@ def get_asset_naming_series(): from erpnext.assets.doctype.asset.asset import get_asset_naming_series return get_asset_naming_series() + + +@frappe.request_cache +def get_child_warehouses(warehouse): + from erpnext.stock.doctype.warehouse.warehouse import get_child_warehouses + + return get_child_warehouses(warehouse) diff --git a/erpnext/stock/doctype/item/test_item.py b/erpnext/stock/doctype/item/test_item.py index 2b3d3b72a02..d5f13e62a5c 100644 --- a/erpnext/stock/doctype/item/test_item.py +++ b/erpnext/stock/doctype/item/test_item.py @@ -862,6 +862,27 @@ class TestItem(FrappeTestCase): self.assertEqual(data[0].description, item.description) self.assertTrue("description" in data[0]) + def test_group_warehouse_for_reorder_item(self): + from erpnext.stock.doctype.warehouse.test_warehouse import create_warehouse + + item_doc = make_item("_Test Group Warehouse For Reorder Item", {"is_stock_item": 1}) + warehouse = create_warehouse("_Test Warehouse - _TC") + warehouse_doc = frappe.get_doc("Warehouse", warehouse) + warehouse_doc.db_set("parent_warehouse", "") + + item_doc.append( + "reorder_levels", + { + "warehouse": warehouse, + "warehouse_reorder_level": 10, + "warehouse_reorder_qty": 100, + "material_request_type": "Purchase", + "warehouse_group": "_Test Warehouse Group - _TC", + }, + ) + + self.assertRaises(frappe.ValidationError, item_doc.save) + def set_item_variant_settings(fields): doc = frappe.get_doc("Item Variant Settings") diff --git a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py index 5f898b94268..415f882129e 100644 --- a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py @@ -923,6 +923,15 @@ class PurchaseReceipt(BuyingController): notify=True, ) + def enable_recalculate_rate_in_sles(self): + sle_table = frappe.qb.DocType("Stock Ledger Entry") + ( + frappe.qb.update(sle_table) + .set(sle_table.recalculate_rate, 1) + .where(sle_table.voucher_no == self.name) + .where(sle_table.voucher_type == "Purchase Receipt") + ).run() + def get_stock_value_difference(voucher_no, voucher_detail_no, warehouse): return frappe.db.get_value( @@ -1095,15 +1104,10 @@ def adjust_incoming_rate_for_pr(doc): for item in doc.get("items"): item.db_update() - doc.docstatus = 2 - doc.update_stock_ledger(allow_negative_stock=True, via_landed_cost_voucher=True) - doc.make_gl_entries_on_cancel() + if doc.doctype == "Purchase Receipt": + doc.enable_recalculate_rate_in_sles() - # update stock & gl entries for submit state of PR - doc.docstatus = 1 - doc.update_stock_ledger(allow_negative_stock=True, via_landed_cost_voucher=True) - doc.make_gl_entries() - doc.repost_future_sle_and_gle() + doc.repost_future_sle_and_gle(force=True) def get_item_wise_returned_qty(pr_doc): diff --git a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py index 4c9fc881986..5e16115db01 100644 --- a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py +++ b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py @@ -1865,14 +1865,14 @@ def get_available_batches(kwargs): batch_ledger.warehouse, Sum(batch_ledger.qty).as_("qty"), ) - .where( - (batch_table.disabled == 0) - & ((batch_table.expiry_date >= today()) | (batch_table.expiry_date.isnull())) - ) + .where(batch_table.disabled == 0) .where(stock_ledger_entry.is_cancelled == 0) .groupby(batch_ledger.batch_no, batch_ledger.warehouse) ) + if not kwargs.get("for_stock_levels"): + query = query.where((batch_table.expiry_date >= today()) | (batch_table.expiry_date.isnull())) + if kwargs.get("posting_date"): if kwargs.get("posting_time") is None: kwargs.posting_time = nowtime() diff --git a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py index 8585f7b1d87..319303dbbb0 100644 --- a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +++ b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py @@ -93,11 +93,15 @@ class StockLedgerEntry(Document): self.validate_with_last_transaction_posting_time() self.validate_inventory_dimension_negative_stock() - def set_posting_datetime(self): + def set_posting_datetime(self, save=False): from erpnext.stock.utils import get_combine_datetime - self.posting_datetime = get_combine_datetime(self.posting_date, self.posting_time) - self.db_set("posting_datetime", self.posting_datetime) + if save: + posting_datetime = get_combine_datetime(self.posting_date, self.posting_time) + if not self.posting_datetime or self.posting_datetime != posting_datetime: + self.db_set("posting_datetime", posting_datetime) + else: + self.posting_datetime = get_combine_datetime(self.posting_date, self.posting_time) def validate_inventory_dimension_negative_stock(self): if self.is_cancelled: @@ -169,7 +173,7 @@ class StockLedgerEntry(Document): return inv_dimension_dict def on_submit(self): - self.set_posting_datetime() + self.set_posting_datetime(save=True) self.check_stock_frozen_date() # Added to handle few test cases where serial_and_batch_bundles are not required diff --git a/erpnext/stock/report/delivery_note_trends/delivery_note_trends.js b/erpnext/stock/report/delivery_note_trends/delivery_note_trends.js index 5e7dc8b2a63..67cf0ca9c3f 100644 --- a/erpnext/stock/report/delivery_note_trends/delivery_note_trends.js +++ b/erpnext/stock/report/delivery_note_trends/delivery_note_trends.js @@ -1,8 +1,4 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -frappe.require("assets/erpnext/js/sales_trends_filters.js", function () { - frappe.query_reports["Delivery Note Trends"] = { - filters: erpnext.get_sales_trends_filters(), - }; -}); +frappe.query_reports["Delivery Note Trends"] = $.extend({}, erpnext.sales_trends_filters); diff --git a/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.js b/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.js index bddfe5d7705..8a293e659fd 100644 --- a/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.js +++ b/erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.js @@ -1,8 +1,4 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt -frappe.require("assets/erpnext/js/purchase_trends_filters.js", function () { - frappe.query_reports["Purchase Receipt Trends"] = { - filters: erpnext.get_purchase_trends_filters(), - }; -}); +frappe.query_reports["Purchase Receipt Trends"] = $.extend({}, erpnext.purchase_trends_filters); diff --git a/erpnext/stock/stock_ledger.py b/erpnext/stock/stock_ledger.py index 5c5fd83af2f..8036a3e179d 100644 --- a/erpnext/stock/stock_ledger.py +++ b/erpnext/stock/stock_ledger.py @@ -220,6 +220,7 @@ def make_entry(args, allow_negative_stock=False, via_landed_cost_voucher=False): sle.flags.ignore_permissions = 1 sle.allow_negative_stock = allow_negative_stock sle.via_landed_cost_voucher = via_landed_cost_voucher + sle.set_posting_datetime() sle.submit() # Added to handle the case when the stock ledger entry is created from the repostig diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js index d407d9c82d7..0dff297e45d 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js +++ b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js @@ -332,7 +332,7 @@ frappe.ui.form.on("Subcontracting Receipt Item", { set_missing_values(frm); }, - items_remove: (frm) => { + items_delete: (frm) => { set_missing_values(frm); }, diff --git a/erpnext/templates/print_formats/includes/total.html b/erpnext/templates/print_formats/includes/total.html index 879203bbf25..f964047bd08 100644 --- a/erpnext/templates/print_formats/includes/total.html +++ b/erpnext/templates/print_formats/includes/total.html @@ -1,14 +1,14 @@ -
+
{% if doc.flags.show_inclusive_tax_in_print %}
-
+
{{ doc.get_formatted("net_total", doc) }}
{% else %}
-
+
{{ doc.get_formatted("total", doc) }}
{% endif %} diff --git a/erpnext/translations/tr.csv b/erpnext/translations/tr.csv index e030efd6e86..f79acdbb6c6 100644 --- a/erpnext/translations/tr.csv +++ b/erpnext/translations/tr.csv @@ -46,27 +46,27 @@ Account Type,Hesap Türü, Account Type for {0} must be {1},{0} için hesap türü {1} olmalı, "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'",Bakiye alacaklı durumdaysa borçlu duruma çevrilemez., "Account balance already in Debit, you are not allowed to set 'Balance Must Be' as 'Credit'",Bakiye borçlu durumdaysa alacaklı durumuna çevrilemez., -Account number for account {0} is not available.
Please setup your Chart of Accounts correctly.,Hesap {0} için hesap numarası mevcut değil.
Lütfen Hesap Tablonuzu doğru ayarlayın., -Account with child nodes cannot be converted to ledger,Alt hesapları bulunan hesaplar muhasebe defterine dönüştürülemez., -Account with child nodes cannot be set as ledger,Alt düğümleri olan hesaplar Hesap Defteri olarak ayarlanamaz, -Account with existing transaction can not be converted to group.,İşlem görmüş hesap kartları dönüştürülemez., -Account with existing transaction can not be deleted,İşlem görmüş hesaplar silinemez., -Account with existing transaction cannot be converted to ledger,İşlem görmüş hesaplar muhasebe defterine dönüştürülemez., -Account {0} does not belong to company: {1},Hesap {0} Şirkete ait değil: {1}, -Account {0} does not belongs to company {1},Hesap {0} yapan şirkete ait değil {1}, -Account {0} does not exist,Hesap {0} yok, -Account {0} does not exists,Hesap {0} yok, -Account {0} does not match with Company {1} in Mode of Account: {2},"Hesap {0}, hesap modunda {1} şirketi ile eşleşmez: {2}", -Account {0} has been entered multiple times,Hesap {0} birden çok kez girilmiş, -Account {0} is added in the child company {1},{1} alt barındırma {0} hesabı eklendi, -Account {0} is frozen,Hesap {0} donduruldu, -Account {0} is invalid. Account Currency must be {1},Hesap {0} geçersiz. Hesap Para Birimi olmalıdır {1}, -Account {0}: Parent account {1} can not be a ledger,Hesap {0}: Ana hesap {1} bir defter olamaz, -Account {0}: Parent account {1} does not belong to company: {2},Hesap {0}: Ana hesap {1} şirkete ait değil: {2}, -Account {0}: Parent account {1} does not exist,Hesap {0}: Ana hesap {1} yok, -Account {0}: You can not assign itself as parent account,Hesap {0}: üretken bir ana hesap olarak atayamazsınız, -Account: {0} can only be updated via Stock Transactions,Hesap: {0} sadece Stok İşlemleri üzerinden güncellenebilir, -Account: {0} with currency: {1} can not be selected,Hesap: {0} para ile: {1} seçilemez, +Account number for account {0} is not available.
Please setup your Chart of Accounts correctly.,{0} hesabına ait hesap numarası mevcut değil.
Lütfen Hesap Planınızı doğru şekilde ayarlayın., +Account with child nodes cannot be converted to ledger,Alt düğümleri olan hesap genel muhasebeye dönüştürülemez, +Account with child nodes cannot be set as ledger,Alt düğümlere sahip hesap genel muhasebe olarak ayarlanamaz, +Account with existing transaction can not be converted to group.,İşlem görmüş hesap gruba dönüştürülemez., +Account with existing transaction can not be deleted,İşlem görmüş hesap silinemez., +Account with existing transaction cannot be converted to ledger,İşlem görmüş hesap muhasebe defterine dönüştürülemez., +Account {0} does not belong to company: {1},Hesap {0} şu şirkete ait değil: {1}, +Account {0} does not belongs to company {1},"Hesap {0}, {1} şirketine ait değil", +Account {0} does not exist,{0} hesabı mevcut değil, +Account {0} does not exists,{0} hesabı mevcut değil, +Account {0} does not match with Company {1} in Mode of Account: {2},"Hesap {0}, Hesap Modunda {1} Şirketi ile eşleşmiyor: {2}", +Account {0} has been entered multiple times,{0} hesabına birden çok kez girildi, +Account {0} is added in the child company {1},"{0} hesabı, {1} alt şirketine eklendi", +Account {0} is frozen,{0} hesabı donduruldu, +Account {0} is invalid. Account Currency must be {1},{0} hesabı geçersiz. Hesabın Para Birimi {1} olmalıdır, +Account {0}: Parent account {1} can not be a ledger,"Hesap {0}: Ana hesap {1}, genel muhasebe olamaz", +Account {0}: Parent account {1} does not belong to company: {2},Hesap {0}: Ana hesap {1} şu şirkete ait değil: {2}, +Account {0}: Parent account {1} does not exist,Hesap {0}: Ebeveyn hesabı {1} mevcut değil, +Account {0}: You can not assign itself as parent account,Hesap {0}: Kendini ana hesap olarak atayamazsınız, +Account: {0} can only be updated via Stock Transactions,Hesap: {0} yalnızca Hisse Senedi İşlemleri yoluyla güncellenebilir, +Account: {0} with currency: {1} can not be selected,Hesap: {0} ve para birimi: {1} seçilemez, Accountant,Muhasebeci, Accounting,Muhasebe, Accounting Entry for Asset,Varlık Muhasebe Kaydı, @@ -120,19 +120,19 @@ Add Suppliers,Tedarikçi Ekle, Add Time Slots,Zaman Dilimi Ekle, Add Timesheets,Zaman Çizelgesi Ekle, Add Timeslots,Zaman Dilimi Ekle, -Add Users to Marketplace,Kullanıcıları Pazaryerine Ekle, -Add a new address,yeni bir adres ekleyin, -Add cards or custom sections on homepage,Ana sayfaya kart veya özel bölüm ekleme, -Add more items or open full form,Daha fazla ürün ekle veya Tüm Formu aç, +Add Users to Marketplace,Marketplace Kullanıcıları Ekle, +Add a new address,Yeni bir adres ekle, +Add cards or custom sections on homepage,Ana sayfaya kart veya özel bölüm ekle, +Add more items or open full form,Daha fazla ürün ekle veya tüm formu aç, Add notes,Not Ekle, Add the rest of your organization as your users. You can also add invite Customers to your portal by adding them from Contacts,"Kuruluşunuzun geri kalanını kullanıcı olarak ekleyin. Ayrıca, müşterileri portalınıza ilave ederek, bunları kişilerden ekleyerek de ekleyebilirsiniz.", Add/Remove Recipients,Alıcıları Ekle/Kaldır, Added,Eklendi, Added {0} users,{0} kullanıcı eklendi, -Additional Salary Component Exists.,Ek Maaş Bileşeni Vardır., +Additional Salary Component Exists.,Ek Maaş Bileşeni Var., Address,Adres, Address Line 2,Adres Satırı 2, -Address Name,Adres adı, +Address Name,Adres Adı, Address Title,Adres Başlığı, Address Type,Adres Tipi, Administrative Expenses,Yönetim Giderleri, @@ -151,17 +151,17 @@ Advertising,Reklamcılık, Aerospace,Havacılık ve Uzay;, Against,Karşı, Against Account,Hesap Karşılığı, -Against Journal Entry {0} does not have any unmatched {1} entry,Journal Karşı giriş {0} herhangi eşsiz {1} girişi yok, -Against Journal Entry {0} is already adjusted against some other voucher,Journal Karşı giriş {0} zaten başka çeki karşı ayarlanır, -Against Supplier Invoice {0} dated {1},{1} tarihli {0} Tedarikçi Faturası karşılığı, +Against Journal Entry {0} does not have any unmatched {1} entry,Yevmiye Kaydına Karşı {0}'da eşleşmeyen {1} girişi yok, +Against Journal Entry {0} is already adjusted against some other voucher,Yevmiye Karşılığı {0} zaten başka bir fişe göre ayarlanmıştır, +Against Supplier Invoice {0} dated {1},{1} tarihli {0} Tedarikçi Faturasına Karşı, Against Voucher,Fiş Karşılığı, -Against Voucher Type,Fiş Tipi Karşılığı, +Against Voucher Type,Fiş Türü Karşılığı, Age,Yaş, Age (Days),Yaş (Gün), -Ageing Based On,Yaşlandırma Temeli, +Ageing Based On,Yaşlanma Dayanımı, Ageing Range 1,Yaşlanma Aralığı 1, -Ageing Range 2,Yaşlanma aralığı 2, -Ageing Range 3,Yaşlanma aralığı 3, +Ageing Range 2,Yaşlanma Aralığı 2, +Ageing Range 3,Yaşlanma Aralığı 3, Agriculture,Tarım, Agriculture (beta),Tarım (beta), Airline,Havayolu, @@ -182,57 +182,57 @@ All Supplier Groups,Tüm Tedarikçi Grupları, All Supplier scorecards.,Tüm Tedarikçi puan kartları., All Territories,Tüm Bölgeler, All Warehouses,Tüm Depolar, -All communications including and above this shall be moved into the new Issue,"Bunları içeren ve bunun üstündeki tüm iletişim, yeni sayıya taşınacaktır.", +All communications including and above this shall be moved into the new Issue,Bu dahil ve bunun üzerindeki tüm iletişimler yeni Sayıya taşınacaktır., All items have already been transferred for this Work Order.,Bu İş Emri için tüm öğeler zaten aktarıldı., -All other ITC,Diğer Tüm ITC, -All the mandatory Task for employee creation hasn't been done yet.,Çalışan yaratmak için tüm zorunlu görev henüz yapılmamış., -Allocate Payment Amount,Ödeme Tutarı Ayır, -Allocated Amount,Ayrılan Tutar, -Allocating leaves...,İzinler tahsis ediliyor ..., -Already record exists for the item {0},Zaten {0} öğesi için kayıt var, -"Already set default in pos profile {0} for user {1}, kindly disabled default","{1} kullanıcısı için {0} pos profilinde varsayılan olarak varsayılan değer ayarladınız, varsayılan olarak lütfen devre dışı bırakıldı", -Alternate Item,Alternatif Öğe, -Alternative item must not be same as item code,"Alternatif öğe, ürün koduyla aynı olmamalıdır", -Amended From,İtibaren değiştirilmiş, -Amount,Tutar, -Amount After Depreciation,Değer kaybı sonrası tutar, -Amount of Integrated Tax,Entegre Vergi Miktarı, -Amount of TDS Deducted,TDS'den Düşülen Tutar, -Amount should not be less than zero.,Miktar sıfırdan daha az olmamalıdır., -Amount to Bill,Faturalanacak Tutar, -Amount {0} {1} against {2} {3},Miktar {0} {2} yani {1} {3}, -Amount {0} {1} deducted against {2},{2}'ye karşılık düşülecek miktar {0} {1}, -Amount {0} {1} transferred from {2} to {3},{0} {1} miktarı {2}'den {3}'e aktarılacak, -Amount {0} {1} {2} {3},Miktar {0} {1} {2} {3}, +All other ITC,Diğer tüm ITC, +All the mandatory Task for employee creation hasn't been done yet.,Çalışan oluşturmaya yönelik zorunlu Görevlerin tümü henüz yapılmadı., +Allocate Payment Amount,Ödeme Tutarını Tahsis Et, +Allocated Amount,Tahsis Edilen Tutar, +Allocating leaves...,İzinler tahsis ediliyor..., +Already record exists for the item {0},{0} öğesi için zaten kayıt mevcut, +"Already set default in pos profile {0} for user {1}, kindly disabled default","{1} kullanıcısı için {0} konum profilinde zaten varsayılan ayarlandı, varsayılanı devre dışı bırakmanızı rica ederiz", +Alternate Item,Alternatif Ürün, +Alternative item must not be same as item code,"Alternatif ürün, ürün koduyla aynı olmamalıdır", +Amended From,Şu tarihten itibaren değiştirildi:, +Amount,Miktar, +Amount After Depreciation,Amortisman Sonrası Tutar, +Amount of Integrated Tax,Entegre Vergi Tutarı, +Amount of TDS Deducted,Kesilen TDS Tutarı, +Amount should not be less than zero.,Tutar sıfırdan az olmamalıdır., +Amount to Bill,Fatura Tutarı, +Amount {0} {1} against {2} {3},{2} {3}'a karşı {0} {1} tutarı, +Amount {0} {1} deducted against {2},{2} karşılığından düşülen {0} {1} tutarı, +Amount {0} {1} transferred from {2} to {3},{2}'den {3}'a aktarılan {0} {1} tutarı, +Amount {0} {1} {2} {3},Tutar {0} {1} {2} {3}, Amt,Tutar, -"An Item Group exists with same name, please change the item name or rename the item group","Bir Ürün grubu aynı isimle bulunuyorsa, lütfen Ürün veya Ürün grubu etiketine bakın", -An academic term with this 'Academic Year' {0} and 'Term Name' {1} already exists. Please modify these entries and try again.,Bu 'Akademik Yılı' ile akademik bir terim {0} ve 'Vadeli Adı' {1} zaten var. Bu girişleri değiştirin ve tekrar deneyin., +"An Item Group exists with same name, please change the item name or rename the item group","Aynı adda bir Öğe Grubu mevcut, lütfen öğe adını değiştirin veya öğe grubunu yeniden adlandırın", +An academic term with this 'Academic Year' {0} and 'Term Name' {1} already exists. Please modify these entries and try again.,Bu 'Akademik Yılı' {0} ve 'Dönem Adı' {1}'nı içeren bir akademik dönem zaten mevcut. Lütfen bu girişleri değiştirin ve tekrar deneyin., An error occurred during the update process,Güncelleme işlemi sırasında bir hata oluştu, -"An item exists with same name ({0}), please change the item group name or rename the item","Bir Ürün aynı isimle bulunuyorsa ({0}), lütfen madde grubunu veya çıldırtıcı etiketini", +"An item exists with same name ({0}), please change the item group name or rename the item","Aynı adda ({0}) bir öğe mevcut, lütfen öğe grubu adını değiştirin veya öğeyi yeniden adlandırın", Analyst,Analist, -Annual Billing: {0},Yıllık Fatura: {0}, -Another Budget record '{0}' already exists against {1} '{2}' and account '{3}' for fiscal year {4},{1} '{2}' karşı bir başka bütçe kitabı '{0}' zaten var ve {4} mali yılı için '{3}' hesap var, -Another Period Closing Entry {0} has been made after {1},{1} den sonra başka bir dönem kapatma girdisi {0} yapılmıştır, -Another Sales Person {0} exists with the same Employee id,Başka Satış Kişi {0} aynı çalışan pozisyonu ile var, +Annual Billing: {0},Yıllık Faturalandırma: {0}, +Another Budget record '{0}' already exists against {1} '{2}' and account '{3}' for fiscal year {4},{4} mali yılı için {1} '{2}' ve '{3}' hesabına karşı başka bir '{0}' Bütçe kaydı zaten mevcut, +Another Period Closing Entry {0} has been made after {1},{1} tarihinden sonra başka bir Dönem Kapanış Girişi {0} yapıldı, +Another Sales Person {0} exists with the same Employee id,Aynı Çalışan kimliğine sahip başka bir Satış Görevlisi {0} mevcut, Antibiotic,Antibiyotik, Apparel & Accessories,Giyim ve Aksesuar, -Applicable For,Uygulanabilir:, -"Applicable if the company is SpA, SApA or SRL","Şirket SpA, SApA veya SRL ise uygulanabilir", -Applicable if the company is a limited liability company,Şirket limited şirketi ise uygulanabilir, -Applicable if the company is an Individual or a Proprietorship,Şirket Birey veya Mülkiyet ise uygulanabilir, -Application of Funds (Assets),fon (varlık) çalışması, +Applicable For,Uygulanabilirlik, +"Applicable if the company is SpA, SApA or SRL","Şirketin SpA, SAPA veya SRL olması durumunda geçerlidir", +Applicable if the company is a limited liability company,Şirketin limited şirket olması halinde geçerlidir, +Applicable if the company is an Individual or a Proprietorship,Şirketin Şahıs veya Mülkiyet olması halinde geçerlidir, +Application of Funds (Assets),Fon Başvurusu (Varlıklar), Applied,Başvuruldu, Appointment Confirmation,Randevu onayı, -Appointment Duration (mins),Randevu Süresi (dk.), +Appointment Duration (mins),Randevu Süresi (dakika), Appointment Type,Randevu Türü, Appointment {0} and Sales Invoice {1} cancelled,Randevu {0} ve Satış Faturası {1} iptal edildi, Appointments and Encounters,Randevular ve Muayeneleri, Appointments and Patient Encounters,Randevular ve Hasta Muayeneleri, -Appraisal {0} created for Employee {1} in the given date range,Verilen aralıkta çalışan {1} için çalıştırılan değerlendirme {0}, -Approving Role cannot be same as role the rule is Applicable To,Onaylayan Rol kuralın geçerli olduğu rolle aynı olamaz, -Approving User cannot be same as user the rule is Applicable To,Onaylayan Kullanıcı kuralın Uygulandığı Kullanıcı ile aynı olamaz, -"Apps using current key won't be able to access, are you sure?","Geçerli anahtarı kullanan uygulamalar erişemeyecek, emin misiniz??", -Are you sure you want to cancel this appointment?,Bu randevuyu iptal etmek istediğinize emin misiniz?, +Appraisal {0} created for Employee {1} in the given date range,Belirtilen tarih aralığında Çalışan {1} için {0} değerlendirmesi oluşturuldu, +Approving Role cannot be same as role the rule is Applicable To,"Onaylanan Rol, kuralın Uygulanabileceği rolle aynı olamaz", +Approving User cannot be same as user the rule is Applicable To,"Onaylayan Kullanıcı, kuralın Uygulanacağı kullanıcıyla aynı olamaz", +"Apps using current key won't be able to access, are you sure?",Geçerli anahtarı kullanan uygulamaların erişemeyeceğinden emin misiniz?, +Are you sure you want to cancel this appointment?,Bu randevuyu iptal etmek istediğinizden emin misiniz?, Arrear,Borç/Bakiye, As Examiner,Denetmen olarak, As On Date,Tarihinde gibi, @@ -242,10 +242,10 @@ As per section 17(5),Bölüm 17'ye göre (5), Assessment,Değerlendirme, Assessment Criteria,Değerlendirme Kriterleri, Assessment Group,Değerlendirme Grubu, -Assessment Group: ,Değerlendirme Grubu:, +Assessment Group: ,Değerlendirme Grubu: , Assessment Plan,Değerlendirme Planı, Assessment Plan Name,Değerlendirme Planı Adı, -Assessment Report,değerlendirme raporu, +Assessment Report,Değerlendirme Raporu, Assessment Reports,Değerlendirme Raporları, Assessment Result,Değerlendirme Sonucu, Assessment Result record {0} already exists.,Değerlendirme Sonuç kaydı {0} zaten var., @@ -256,39 +256,39 @@ Asset Maintenance,Varlık Bakımı, Asset Movement,Varlık Hareketi, Asset Movement record {0} created,Varlık Hareket kaydı {0} oluşturuldu, Asset Name,Varlık Adı, -Asset Received But Not Billed,Alınan ancak Faturalandırılmayan Öğe, -Asset Value Adjustment,Varlık Değeri Ayarlaması, -"Asset cannot be cancelled, as it is already {0}","Varlık iptal edilemez, hala {0}", -Asset scrapped via Journal Entry {0},"Varlık, Yevmiye Kaydı {0} ile hurda edildi", -"Asset {0} cannot be scrapped, as it is already {1}","{0} varlığı hurda edilemez, {1} da var olarak gözüküyor", -Asset {0} does not belong to company {1},"Varlık {0}, {1} firmasına ait değil", -Asset {0} must be submitted,{0} ın varlığı onaylanmalı, -Assets,Aktifler, -Assign To,Ata, -Associate,Ortak, -At least one mode of payment is required for POS invoice.,Ödeme en az bir mod POS fatura için gereklidir., -Atleast one item should be entered with negative quantity in return document,En az bir öğe dönüş belgesinde negatif miktar ile girilmelidir, -Atleast one of the Selling or Buying must be selected,Satış veya Alıştan en az biri seçilmelidir, +Asset Received But Not Billed,Varlık Alındı Ancak Faturalandırılmadı, +Asset Value Adjustment,Varlık Değer Ayarlaması, +"Asset cannot be cancelled, as it is already {0}",Öğe zaten {0} olduğundan iptal edilemez, +Asset scrapped via Journal Entry {0},Varlık {0} Yevmiye Girişi yoluyla hurdaya çıkarıldı, +"Asset {0} cannot be scrapped, as it is already {1}",{0} numaralı varlık zaten {1} olduğundan hurdaya çıkarılamaz, +Asset {0} does not belong to company {1},{0} varlığı {1} şirketine ait değil, +Asset {0} must be submitted,{0} numaralı varlık gönderilmelidir, +Assets,Varlıklar, +Assign To,Atamak, +Associate,İş arkadaşı, +At least one mode of payment is required for POS invoice.,POS faturası için en az bir ödeme şekli gereklidir., +Atleast one item should be entered with negative quantity in return document,İade belgesinde en az bir ürün negatif miktarla girilmelidir, +Atleast one of the Selling or Buying must be selected,Satış veya Alış seçeneklerinden en az biri seçilmelidir, Atleast one warehouse is mandatory,En az bir depo zorunludur, Attach Logo,Logo Ekle, -Attachment,Belge Eki, -Attachments,Belge Ekleri, -Attendance can not be marked for future dates,İlerideki tarihler için katılım işaretlenemez, -Attendance date can not be less than employee's joining date,Katılım tarihi çalışanın işe giriş tarihinden önce olamaz, -Attendance for employee {0} is already marked,Çalışan {0} için devam zaten işaretlenmiştir, -Attendance has been marked successfully.,Mevcudiyet başarıyla işaretlendi, -Attendance not submitted for {0} as {1} on leave.,"Katılım, {0} için ayrılmadan önce {1} olarak gönderilmedi.", +Attachment,EK, +Attachments,Ekler, +Attendance can not be marked for future dates,Gelecek tarihler için katılım işaretlenemez, +Attendance date can not be less than employee's joining date,Devam tarihi çalışanın işe giriş tarihinden az olamaz, +Attendance for employee {0} is already marked,{0} adlı çalışanın katılımı zaten işaretlendi, +Attendance has been marked successfully.,Katılım başarıyla işaretlendi., +Attendance not submitted for {0} as {1} on leave.,{1} izinli olduğundan {0} için katılım bilgisi gönderilmedi., Attribute table is mandatory,Özellik tablosu zorunludur, -Attribute {0} selected multiple times in Attributes Table,Özellik {0} Nitelikler Tablo birden çok kez seçilmiş, -Authorized Signatory,Yetkili imza, -Auto Material Requests Generated,Otomatik Malzeme İstekler Oluşturulmuş, +Attribute {0} selected multiple times in Attributes Table,Nitelikler Tablosunda {0} özelliği birden çok kez seçildi, +Authorized Signatory,Yetkili İmza, +Auto Material Requests Generated,Otomatik Malzeme Talepleri Oluşturuldu, Auto Repeat,Otomatik Tekrarla, -Auto repeat document updated,Otomatik tekrar dokümanı güncellendi, +Auto repeat document updated,Otomatik tekrarlanan belge güncellendi, Automotive,Otomotiv, Available,Mevcut, Available Qty,Mevcut Miktar, Available Selling,Mevcut Satış, -Available for use date is required,Kullanılabilir olacağı tarih gereklidir, +Available for use date is required,Kullanıma hazır olma tarihi gerekli, Available slots,Kullanılabilir alanlar, Available {0},Mevcut {0}, Available-for-use Date should be after purchase date,"Kullanıma hazır tarih, Satınalma tarihinden sonra olmalıdır.", @@ -309,12 +309,12 @@ BOM {0} does not belong to Item {1},Ürün Ağacı {0} {1} Kalemine ait değil, BOM {0} must be active,Ürün Ağacı {0} aktif olmalıdır, BOM {0} must be submitted,Ürün Ağacı {0} devreye alınmalıdır, Balance,Bakiye, -Balance (Dr - Cr),Denge (Dr - Cr), +Balance (Dr - Cr),Bakiye (Borç - Alacak), Balance ({0}),Bakiye ({0}), -Balance Qty,Denge Adet, +Balance Qty,Bakiye Miktar, Balance Sheet,Bilanço, -Balance Value,Mevcut Maliyet, -Balance for Account {0} must always be {1},Hesap {0} her zaman dengede olmalı {1}, +Balance Value,Bakiye Değeri, +Balance for Account {0} must always be {1},{0} Hesabının Bakiyesi her zaman {1} olmalıdır, Bank,Banka, Bank Account,Banka Hesabı, Bank Accounts,Banka Hesapları, @@ -325,7 +325,7 @@ Bank Reconciliation,Banka Mutabakatı, Bank Reconciliation Statement,Banka Mutabakat Kaydı, Bank Statement,Banka Ekstresi, Bank Statement Settings,Banka Ekstre Ayarları, -Bank Statement balance as per General Ledger,Genel Muhasebe uyarınca Banka Hesap bakiyesi, +Bank Statement balance as per General Ledger,Defteri Kebire göre Hesap Ekstresi Bakiyesi, Bank account cannot be named as {0},Banka hesabı adı {0} olamaz, Bank/Cash transactions against party or for internal transfer,Cariye karşı veya iç transfer için Banka / Kasa işlemleri, Banking,Banka İşlemleri, @@ -359,7 +359,7 @@ Billing Address,Fatura Adresi, Billing Address is same as Shipping Address,"Fatura Adresi, Teslimat Adresiyle aynı", Billing Amount,Fatura Tutarı, Billing Status,Fatura Durumu, -Billing currency must be equal to either default company's currency or party account currency,"Faturalandırma para birimi, varsayılan şirketin para birimi veya Cari hesabı para birimine eşit olmalıdır", +Billing currency must be equal to either default company's currency or party account currency,"Faturalandırma para birimi, varsayılan Şirketin para birimine veya Cari hesabın para birimine eşit olmalıdır", Bills raised by Suppliers.,Tedarikçiler tarafından artırılan faturalar, Bills raised to Customers.,Müşterilere artırılan faturalar, Biotechnology,Biyoteknoloji, @@ -399,52 +399,52 @@ CWIP Account,CWIP Hesabı, Calculated Bank Statement balance,Hesaplanan Banka Hesap Bakiyesi, Campaign,Kampanya, Can be approved by {0},{0} tarafından onaylandı, -"Can not filter based on Account, if grouped by Account","Hesap, olarak gruplandırıldı ise Hesaba tabanlı yönetim yönetimi", -"Can not filter based on Voucher No, if grouped by Voucher","Dekont, olarak gruplandırıldıysa, Makbuz numarasına dayalı yönetim yönetimi", +"Can not filter based on Account, if grouped by Account",Hesaba göre gruplandırılmışsa Hesaba göre filtreleme yapılamaz, +"Can not filter based on Voucher No, if grouped by Voucher",Fişe göre gruplandırılmışsa Fiş Numarasına göre filtreleme yapılamaz, "Can not mark Inpatient Record Discharged, there are Unbilled Invoices {0}","Yatan Hasta Kaydı Taburcu Edildi olarak işaretlenemiyor, Faturalanmamış Faturalar Var {0}", -Can only make payment against unbilled {0},Sadece karşı ödeme yapamazsınız faturalanmamış {0}, -Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total',Eğer ücret tipi 'Önceki Satır Tutarında' veya 'Önceki Satır Toplamı' ise referans verebilir, -"Can't change valuation method, as there are transactions against some items which does not have it's own valuation method",Kendi değerleme yöntemine sahip olmayan bazı ürünlere karşı işlemler olduğu için değerleme kullanımı değiştiremezsiniz, -Can't create standard criteria. Please rename the criteria,Standart ölçüler oluşturulamıyor. Lütfen ölçütleri yeniden tanımlayanın, -Cancel,İptal, -Cancel Material Visit {0} before cancelling this Warranty Claim,Malzeme ziyareti {0} Bu Garanti Talebi iptal edilmeden önce iptal, -Cancel Material Visits {0} before cancelling this Maintenance Visit,Bu Bakım Ziyaretini iptal etmeden önce Malzeme Ziyareti {0} iptal edin, +Can only make payment against unbilled {0},Yalnızca faturalandırılmamış {0} karşılığında ödeme yapılabilir, +Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total',Yalnızca ücret türü 'Önceki Satırdaki Tutar' veya 'Önceki Satır Toplamı' ise satıra başvurulabilir, +"Can't change valuation method, as there are transactions against some items which does not have it's own valuation method",Kendi değerleme yöntemi olmayan bazı kalemlere karşı işlemler olduğundan değerleme yöntemi değiştirilemiyor, +Can't create standard criteria. Please rename the criteria,Standart ölçütler oluşturulamıyor. Lütfen kriterleri yeniden adlandırın, +Cancel,İptal etmek, +Cancel Material Visit {0} before cancelling this Warranty Claim,Bu Garanti Talebini iptal etmeden önce Malzeme Ziyaretini İptal Edin {0}, +Cancel Material Visits {0} before cancelling this Maintenance Visit,Bu Bakım Ziyaretini iptal etmeden önce {0} Malzeme Ziyaretlerini İptal Edin, Cancel Subscription,Aboneliği iptal et, -Cancel the journal entry {0} first,Önce {0} yevmiye kaydını iptal et, +Cancel the journal entry {0} first,Önce {0} yevmiye kaydını iptal edin, Canceled,İptal edildi, -"Cannot Submit, Employees left to mark attendance","Gönderilemiyor, çalışanlar katılmak için ayrılmış", -Cannot be a fixed asset item as Stock Ledger is created.,Stok Defteri oluşturulduğu sabit bir varlık kalemi olamaz., -Cannot cancel because submitted Stock Entry {0} exists,Sunulan Stok Giriş {0} varolduğundan iptal edilemiyor, -Cannot cancel transaction for Completed Work Order.,Tamamlanmış İş Emri için işlemi iptal edemez., -Cannot cancel {0} {1} because Serial No {2} does not belong to the warehouse {3},"{0} {1} tarihinde iptal edilemedi, çünkü Seri No {2} depoya {3} ait değil.", -Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item,Hisse senetlerini oluşturduktan sonra değiştiremezsiniz. Yeni Bir Öğe Yapın ve Stokları Yeni Öğe Taşı, -Cannot change Fiscal Year Start Date and Fiscal Year End Date once the Fiscal Year is saved.,Mali Yıl Başlangıç Tarihi ve Mali Yılı kaydedildikten sonra Mali Yıl Sonu Tarihi değiştiremezsiniz., -Cannot change Service Stop Date for item in row {0},{0} satır satırdaki öğe için Hizmet Durdurma Tarihi değiştirilemez, -Cannot change Variant properties after stock transaction. You will have to make a new Item to do this.,Stok yapıldıktan sonra Varyant özellikleri değiştirilemez. Bunu yapmak için yeni bir öğe almanız gerekir., -"Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency.","Mevcut işletimlerinden, genel genel para birimini değiştiremezsiniz. İşlemler Varsayılan para birimini değiştirmek için iptal edilmelidir.", -Cannot change status as student {0} is linked with student application {1},öğrenci olarak değiştirilemez {0} öğrenci uygulaması ile bağlantılı {1}, -Cannot convert Cost Center to ledger as it has child nodes,Çocuk düğümleri nedeniyle Maliyet Merkezi ana deftere dönüştürülemez, -Cannot covert to Group because Account Type is selected.,Hesap Türü görünümünden Grup gizli olamaz., -Cannot create Retention Bonus for left Employees,Sol çalışanlar için Tutma Bonusu oluşturamıyor, -Cannot create a Delivery Trip from Draft documents.,Taslak belgelerden Teslimat Gezisi oluşturulamaz., -Cannot deactivate or cancel BOM as it is linked with other BOMs,Devre dışı hizmet veya diğer ürün ağaçları ile bağlantılı olarak BOM iptal edilemiyor, -"Cannot declare as lost, because Quotation has been made.",Kayıp olarak Kotasyon yapıldığı için ilan edilemez., -Cannot deduct when category is for 'Valuation' or 'Valuation and Total',Kategori 'Değerleme' veya 'Toplam ve Değerleme' olduğu zaman çıkarılamaz, -Cannot deduct when category is for 'Valuation' or 'Vaulation and Total',Kategori 'Değerleme' veya 'Değerlendirme ve Toplam' için olduğunda düşülemez, -"Cannot delete Serial No {0}, as it is used in stock transactions","{0} Seri Numarası stok işlemlerinde kullanıldığından silinemiyor", -Cannot enroll more than {0} students for this student group.,Bu öğrenci grubu için {0} gelen göre daha fazla kayıt olamaz., -Cannot produce more Item {0} than Sales Order quantity {1},Satış Sipariş Miktarı {1} den fazla Ürün {0} üretilemez, -Cannot promote Employee with status Left,Çalışan durumu sata tanıtılamaz, -Cannot refer row number greater than or equal to current row number for this Charge type,Kolon sırası bu Ücret tipi için kolon numarasından büyük veya eşit olamaz, -Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row,İlk satır için ücret tipi 'Önceki satırları kullanır' veya 'Önceki satır toplamında' olarak seçilemez, -Cannot set as Lost as Sales Order is made.,Satış Siparişi verildiği için Kayıp olarak ayarlanamaz., -Cannot set authorization on basis of Discount for {0},{0} için İndirim bazında yetkilendirme ayarlanamıyor, -Cannot set multiple Item Defaults for a company.,Bir şirket için birden fazla Öğe Varsayılanı belirlenemiyor., -Cannot set quantity less than delivered quantity,Teslim edilen miktardan daha az miktar belirlenemiyor, -Cannot set quantity less than received quantity,Alınan miktardan daha az miktar ayarlanamaz, -Cannot set the field {0} for copying in variants,Değişkenlere kopyalamak için {0} alanı ayarlanamıyor, -Cannot transfer Employee with status Left,Çalışan durumu Sola aktarılamıyor, -Cannot {0} {1} {2} without any negative outstanding invoice,{0} {1} {2} olmadan herhangi bir olumsuz ödenmemiş fatura Can, +"Cannot Submit, Employees left to mark attendance","Gönderilemiyor, Çalışanların katılımı işaretlemesi bırakıldı", +Cannot be a fixed asset item as Stock Ledger is created.,Stok Defteri oluşturulduğu için sabit kıymet kalemi olamaz., +Cannot cancel because submitted Stock Entry {0} exists,Gönderilen Stok Girişi {0} mevcut olduğundan iptal edilemiyor, +Cannot cancel transaction for Completed Work Order.,Tamamlanan İş Emri için işlem iptal edilemiyor., +Cannot cancel {0} {1} because Serial No {2} does not belong to the warehouse {3},{2} Seri Numarası {3} deposuna ait olmadığından {0} {1} iptal edilemiyor, +Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item,Hisse senedi işleminden sonra Nitelikler değiştirilemez. Yeni bir Öğe oluşturun ve stoğu yeni Öğeye aktarın, +Cannot change Fiscal Year Start Date and Fiscal Year End Date once the Fiscal Year is saved.,Mali Yıl kaydedildikten sonra Mali Yıl Başlangıç Tarihi ve Mali Yıl Bitiş Tarihi değiştirilemez., +Cannot change Service Stop Date for item in row {0},{0}. satırdaki öğenin Hizmet Durdurma Tarihi değiştirilemiyor, +Cannot change Variant properties after stock transaction. You will have to make a new Item to do this.,Stok işleminden sonra Varyant özellikleri değiştirilemiyor. Bunu yapmak için yeni bir Öğe oluşturmanız gerekecek., +"Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency.",Mevcut işlemler olduğundan şirketin varsayılan para birimi değiştirilemiyor. Varsayılan para birimini değiştirmek için işlemlerin iptal edilmesi gerekir., +Cannot change status as student {0} is linked with student application {1},"{0} öğrencisi, {1} öğrenci uygulamasına bağlı olduğundan durum değiştirilemiyor", +Cannot convert Cost Center to ledger as it has child nodes,Alt düğümleri olduğundan Maliyet Merkezi genel muhasebeye dönüştürülemiyor, +Cannot covert to Group because Account Type is selected.,Hesap Türü seçili olduğundan Gruba geçiş yapılamıyor., +Cannot create Retention Bonus for left Employees,Kalan Çalışanlar için Elde Tutma İkramiyesi oluşturulamıyor, +Cannot create a Delivery Trip from Draft documents.,Taslak belgelerden Teslimat Gezisi oluşturulamıyor., +Cannot deactivate or cancel BOM as it is linked with other BOMs,Diğer Malzeme Listeleri ile bağlantılı olduğundan Malzeme Listesi devre dışı bırakılamaz veya iptal edilemez, +"Cannot declare as lost, because Quotation has been made.",Teklif verildiği için kayıp olarak beyan edilemez., +Cannot deduct when category is for 'Valuation' or 'Valuation and Total',Kategori 'Değerleme' veya 'Değerleme ve Toplam' için olduğunda düşülemez, +Cannot deduct when category is for 'Valuation' or 'Vaulation and Total',Kategori 'Değerleme' veya 'Değerleme ve Toplam' için olduğunda düşülemez, +"Cannot delete Serial No {0}, as it is used in stock transactions",{0} Seri Numarası hisse senedi işlemlerinde kullanıldığından silinemiyor, +Cannot enroll more than {0} students for this student group.,Bu öğrenci grubuna en fazla {0} öğrenci kaydedilebilir., +Cannot produce more Item {0} than Sales Order quantity {1},Satış Siparişi miktarından {1} daha fazla Ürün {0} üretilemez, +Cannot promote Employee with status Left,Durumu Sol olan Çalışan terfi ettirilemiyor, +Cannot refer row number greater than or equal to current row number for this Charge type,Bu Ücret türü için mevcut satır numarasından büyük veya bu satır numarasına eşit satır numarasına başvurulamaz, +Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row,İlk satır için masraf türü 'Önceki Satırdaki Tutar' veya 'Önceki Satırdaki Toplam' olarak seçilemiyor, +Cannot set as Lost as Sales Order is made.,Satış Siparişi yapıldığı için Kayıp olarak ayarlanamıyor., +Cannot set authorization on basis of Discount for {0},{0} için İndirim esasına göre yetkilendirme ayarlanamıyor, +Cannot set multiple Item Defaults for a company.,Bir şirket için birden fazla Öğe Varsayılanı ayarlanamaz., +Cannot set quantity less than delivered quantity,"Miktar, teslim edilen miktardan daha azına ayarlanamıyor", +Cannot set quantity less than received quantity,"Miktar, alınan miktardan daha azına ayarlanamıyor", +Cannot set the field {0} for copying in variants,Varyantlarda kopyalama için {0} alanı ayarlanamıyor, +Cannot transfer Employee with status Left,Durumu Sol olan Çalışan aktarılamıyor, +Cannot {0} {1} {2} without any negative outstanding invoice,Ödenmemiş negatif fatura olmadan {0} {1} {2} yapılamaz, Capital Equipments,Sermaye Ekipmanları, Capital Stock,Öz Sermaye, Capital Work in Progress,Sermaye Yarı Mamul, @@ -466,51 +466,51 @@ Central Tax,Merkezi Vergi, Certification,Belgeleme, Cess,Cess, Change Amount,Değişim Tutarı, -Change Item Code,Öğe Kodunu Değiştir, -Change Release Date,Yayın Tarihi Değiştir, +Change Item Code,Ürün Kodunu Değiştir, +Change Release Date,Yayın Tarihini Değiştir, Change Template Code,Şablon Kodunu Değiştir, -Changing Customer Group for the selected Customer is not allowed.,Seçilen Müşteri için Müşteri Grubunu değiştirmeye izin verilmiyor., +Changing Customer Group for the selected Customer is not allowed.,Seçilen Müşteri için Müşteri Grubunun değiştirilmesine izin verilmiyor., Chapter,Bölüm, Chapter information.,Bölüm bilgileri., -Charge of type 'Actual' in row {0} cannot be included in Item Rate,Satır {0}'daki 'Gerçek' ücret biçimi Ürün Br.Fiyatına dahil edilemez, -Chargeble,Masrafa tabi, -Charges are updated in Purchase Receipt against each item,Masraflar her kalem için Satınalma Fişinde güncellenir, -"Charges will be distributed proportionately based on item qty or amount, as per your selection","Masraflar, seçiminize göre ürün miktarına veya tutarına göre orantılı olarak dağıtılacaktır.", -Chart of Cost Centers,Maliyet Merkezlerinin Grafikleri, +Charge of type 'Actual' in row {0} cannot be included in Item Rate,{0}. satırdaki 'Gerçek' türündeki ücret Ürün Fiyatına dahil edilemez, +Chargeble,Ücretli, +Charges are updated in Purchase Receipt against each item,"Ücretler, Satın Alma Makbuzu'nda her ürüne göre güncellenir", +"Charges will be distributed proportionately based on item qty or amount, as per your selection","Ücretler, seçiminize göre ürün miktarına veya miktarına göre orantılı olarak dağıtılacaktır.", +Chart of Cost Centers,Maliyet Merkezleri Tablosu, Check all,Tümünü kontrol et, -Checkout,Çıkış yap, +Checkout,Çıkış yapmak, Chemical,Kimyasal, -Cheque,Çek, -Cheque/Reference No,Çek / Referans No, -Cheques Required,Çekler Gerekli, -Cheques and Deposits incorrectly cleared,Çekler ve Mevduat yanlış temizlendi, -Child Task exists for this Task. You can not delete this Task.,Bu Görev için Alt Görev var. Bu görevi silemezsiniz., -Child nodes can be only created under 'Group' type nodes,Çocuk düğümleri sadece 'Grup' tür düğüm altında oluşturulabilir, -Child warehouse exists for this warehouse. You can not delete this warehouse.,Bu depoya ait alt depo bulunmaktadır. Bu depoyu silemezsiniz., +Cheque,Kontrol etmek, +Cheque/Reference No,Çek/Referans No, +Cheques Required,Kontroller Gerekli, +Cheques and Deposits incorrectly cleared,Çekler ve Mevduatlar hatalı şekilde temizlendi, +Child Task exists for this Task. You can not delete this Task.,Bu Görev için Alt Görev mevcut. Bu Görevi silemezsiniz., +Child nodes can be only created under 'Group' type nodes,Alt düğümler yalnızca 'Grup' türü düğümler altında oluşturulabilir, +Child warehouse exists for this warehouse. You can not delete this warehouse.,Bu depo için alt depo mevcut. Bu depoyu silemezsiniz., Circular Reference Error,Dairesel Referans Hatası, -City,İl, -City/Town,İl / İlçe, +City,Şehir, +City/Town,Şehir/Kasaba, Clay,Kil, Clear filters,Filtreleri temizle, Clear values,Değerleri temizle, -Clearance Date,Ödeme Tarihi, -Clearance Date not mentioned,Ödeme Tarihi belirtilmedi, -Clearance Date updated,Ödeme Tarihi güncellendi, -Client,Client, -Client ID,Client ID, -Client Secret,Client Secret, -Clinical Procedure,Klinik Prosedürü, +Clearance Date,Gümrükleme Tarihi, +Clearance Date not mentioned,Gümrükleme Tarihi belirtilmedi, +Clearance Date updated,Gümrükleme Tarihi güncellendi, +Client,Müşteri, +Client ID,Müşteri Kimliği, +Client Secret,Müşteri Sırrı, +Clinical Procedure,Klinik Prosedür, Clinical Procedure Template,Klinik Prosedür Şablonu, -Close Balance Sheet and book Profit or Loss.,Bilançoyu Kapat ve Kar veya Zararı ayır., +Close Balance Sheet and book Profit or Loss.,Bilançoyu kapatın ve Kar veya Zararı kaydedin., Close Loan,Krediyi Kapat, -Close the POS,POSu kapat, -Closed,Kapandı, -Closed order cannot be cancelled. Unclose to cancel.,Kapalı sipariş iptal edilemez. İptal etmek için açın., +Close the POS,POS'u kapat, +Closed,Kapalı, +Closed order cannot be cancelled. Unclose to cancel.,Kapatılan emir iptal edilemez. İptal etmek için kapatmayı açın., Closing (Cr),Kapanış (Alacak), Closing (Dr),Kapanış (Borç), Closing (Opening + Total),Kapanış (Açılış + Toplam), Closing Account {0} must be of type Liability / Equity,"Kapanış Hesabı {0}, Borç / Özkaynak türünde olmalıdır", -Closing Balance,Kapanış bakiyesi, +Closing Balance,Kapanış Bakiyesi, Code,Kod, Collapse All,Tümünü Daralt, Color,Renk, @@ -525,7 +525,7 @@ Community Forum,Topluluk Forumu, Company (not Customer or Supplier) master.,Şirket (değil Müşteri veya alanı) usta., Company Abbreviation,Şirket Kısaltması, Company Abbreviation cannot have more than 5 characters,Şirket Kısaltması 5 karakterden uzun olamaz, -Company Name,Firma Adı, +Company Name,Şirket Adı, Company Name cannot be Company,Şirket Adı olamaz, Company currencies of both the companies should match for Inter Company Transactions.,Her iki şirketin şirket para birimleri Inter Şirket İşlemleri için eşleşmelidir., Company is manadatory for company account,Şirket hesabı için şirket, @@ -668,7 +668,7 @@ Currency is required for Price List {0},Döviz Fiyat Listesi için gereklidir {0 Currency of the Closing Account must be {0},Kapanış Hesap Dövizi olmalıdır {0}, Currency of the price list {0} must be {1} or {2},{0} fiyat listesi para birimi {1} veya {2} olmalıdır., Currency should be same as Price List Currency: {0},"Para birimi, Fiyat Listesi Para Birimi ile aynı olmalıdır: {0}", -Current Assets,Mevcut Varlıklar, +Current Assets,Dönen Varlıklar, Current BOM and New BOM can not be same,Cari BOM ve Yeni BOM aynı olamaz, Current Liabilities,Cari Borçlar/Pasif, Current Qty,Güncel Mik, @@ -779,11 +779,11 @@ Difference Account,Fark Hesabı, Difference Amount,Farklı ayrılıklar, Difference Amount must be zero,Fark Tutar sıfır olmalıdır, Different UOM for items will lead to incorrect (Total) Net Weight value. Make sure that Net Weight of each item is in the same UOM.,Ürünler için farklı Ölçü Birimi yanlış (Toplam) net değer değerine yol açacaktır. Net etki değerinin aynı olduğundan emin olun., -Direct Expenses,Doğrudan Giderler, -Direct Income,doğrudan gelir, +Direct Expenses,Direkt Giderler, +Direct Income,Direkt Gelir, Disable,Devre Dışı Bırak, Disabled template must not be default template,Engelli kalıpları varsayılan kalıpları, -Disburse Loan,Kredi Kredisi, +Disburse Loan,Kredi Ödemesi, Disbursed,Önceki dönemlerde toplananlar, Disc,İnd., Discharge,Tediye, @@ -796,7 +796,7 @@ Dispatch Notification,Sevk Bildirimi, Dispatch State,Sevk Durumu, Distance,Mesafe, Distribution,Dağıtım, -Distributor,Dağıtımcı, +Distributor,Distribütör, Dividends Paid,Ödenen Temettüler, Do you really want to restore this scrapped asset?,Eğer gerçekten bu hurdaya ait varlığın geri yüklenmesini istiyor musunuz?, Do you really want to scrap this asset?,Bu varlığı gerçekten hurdalamak istiyor musunuz?, @@ -805,7 +805,7 @@ Doc Date,Belge Tarihi, Doc Name,Belge Adı, Doc Type,Belge Türü, Docs Search,Belge Ara, -Document Name,Belge adı, +Document Name,Belge Adı, Document Type,Belge Türü, Domain,Domain, Domains,Domains, @@ -873,7 +873,7 @@ End Date can not be less than Start Date,"Bitiş Tarihi, Başlangıç Tarihinden End Date cannot be before Start Date.,"Bitiş Tarihi, Başlangıç Tarihi'nden önce olamaz.", End Year,bitiş yılı, End Year cannot be before Start Year,Yıl Sonu Başlangıç Yıl önce olamaz, -End on,Bitiş tarihi, +End on,Bitiş Tarihi, Ends On date cannot be before Next Contact Date.,"Bitiş Tarihi, Sonraki İletişim Tarihi'nden önce olamaz.", Energy,Enerji, Engineer,Mühendis, @@ -956,8 +956,8 @@ Financial Services,Finansal Hizmetler, Financial Statements,Finansal Tablolar, Financial Year,Mali Yıl, Finish,Bitiş, -Finished Good,Mamul Ürün, -Finished Good Item Code,Mamul Ürün Kodu, +Finished Good,Mamül Ürün, +Finished Good Item Code,Mamül Ürün Kodu, Finished Goods,Mamüller, Finished Item {0} must be entered for Manufacture type entry,Öğe sonlandırıldı {0} imalat tipi giriş için girilmelidir, Finished product quantity {0} and For Quantity {1} cannot be different,Bitmiş ürün miktarı {0} ve Miktar {1} için farklı olamaz, @@ -1005,13 +1005,13 @@ From Date cannot be greater than To Date,Tarihten bugüne kadardan ileride olama From Date must be before To Date,Tarihten itibaren bugüne kadardan önce olmalıdır, From Date should be within the Fiscal Year. Assuming From Date = {0},Tarihten Mali'den yıl içinde olmalıdır Tarihten itibaren = {0} varsayılır, From Datetime,Başlama Zamanı, -From Delivery Note,Baş. Satış İrsaliyesi, +From Delivery Note,Satış İrsaliyesinden Al, From Fiscal Year,Baş. Mali Yılı, From GSTIN,GSTIN'den, From Party Name,Baş. Cari Adı, From Pin Code,Baş. Pin Kodu, From Place,Baş. Yeri, -From Range has to be less than To Range,Menzil az olmak zorundadır Kimden daha Range için, +From Range has to be less than To Range,Menzilden Hedef Aralığa kadar olan değerden küçük olmalıdır, From State,Başlangıç Durumu, From Time,Başlama Tarihi, From Time Should Be Less Than To Time,Zaman Zamandan Daha Az Olmalı, @@ -1020,13 +1020,13 @@ From Time cannot be greater than To Time.,Zaman zaman daha büyük olamaz., From and To dates required,tarih aralığı gerekli, From value must be less than to value in row {0},"Değerden, {0} bilgisindeki değerden az olmalıdır", From {0} | {1} {2},Gönderen {0} | {1} {2}, -Fulfillment,Yerine Getirme, +Fulfillment,Gereksinim, Full Name,Tam Adı, Fully Depreciated,Tamamen Amortismanlı, Furnitures and Fixtures,Döşeme ve demirbaşlar, -"Further accounts can be made under Groups, but entries can be made against non-Groups","Ek hesaplar Gruplar altında yapılabilir, ancak girişler olmayan Gruplar karşı yapılabilir", -Further cost centers can be made under Groups but entries can be made against non-Groups,"Daha fazla masraf Gruplar altında yapılabilir, ancak girişleri olmayan Gruplar karşı yapılabilir", -Further nodes can be only created under 'Group' type nodes,Ek kısımlar ancak 'Grup' tipi kısımlar altında oluşturulabilir, +"Further accounts can be made under Groups, but entries can be made against non-Groups","Gruplar altında başka hesaplar da açılabilir, ancak Grup olmayanlara karşı da giriş yapılabilir", +Further cost centers can be made under Groups but entries can be made against non-Groups,Gruplar altında daha fazla masraf yerleri yapılabilir ancak Grup dışı kişilere karşı da giriş yapılabilir, +Further nodes can be only created under 'Group' type nodes,Daha fazla düğüm yalnızca 'Grup' tipi düğümler altında oluşturulabilir, GSTIN,GSTIN, GSTR3B-Form,GSTR3B-Formu, Gain/Loss on Asset Disposal,Varlık Bertaraf Kâr / Zarar, @@ -1058,7 +1058,7 @@ GoCardless payment gateway settings,GoCardless ödeme ağ özellikleri ayarları Goal and Procedure,Hedef ve Prosedür, Goals cannot be empty,Hedefler boş olamaz, Goods In Transit,Transit Ürünler, -Goods Transferred,Edilen Mallar'ı transfer et, +Goods Transferred,Edilen Mallar'ı Transfer et, Goods and Services Tax (GST India),Mal ve Hizmet Vergisi (GST Hindistan), Goods are already received against the outward entry {0},{0} dış girişine karşı ürünler zaten alınmış, Government,Kamu / Devlet, @@ -1153,11 +1153,11 @@ In Value,Giriş Maliyeti, "In the case of multi-tier program, Customers will be auto assigned to the concerned tier as per their spent","Çok katmanlı program söz konusu olduğunda, Müşteriler harcanan esasa göre ilgili kademeye otomatik olarak atanacaktır.", Inactive,Pasif, Incentives,Teşvikler, -Include Default FB Entries,Varsayılan Defter Girişlerini Dahil et, +Include Default FB Entries,Vars. Defter Girişleri Dahil, Include Exploded Items,Patlatılmış Öğeleri Dahil et, Include POS Transactions,POS İşlemlerini Dahil et, Include UOM,Birimi Dahil et, -Included in Gross Profit,Brüt Kâr Dahil, +Included in Gross Profit,Brüt Kâra Dahil, Income,Gelir, Income Account,Gelir Hesabı, Income Tax,Gelir Vergisi, @@ -1175,7 +1175,7 @@ Inpatient Record,Yatan Hasta Kaydı, Installation Note,Kurulum Notları, Installation Note {0} has already been submitted,Kurulum Notu {0} zaten gönderildi, Installation date cannot be before delivery date for Item {0},Kurulum tarih Ürün için teslim tarihinden önce olamaz {0}, -Installing presets,Önayarları yükleniyor, +Installing presets,Ön ayarlar yükleniyor, Institute Abbreviation,Enstitü Kısaltma, Institute Name,Kurum İsmi, Instructor,Eğitmen, @@ -1317,7 +1317,7 @@ Lead Owner,Aday Sahibi, Lead Owner cannot be same as the Lead,Müşteri Aday Kaydı Sahibi Müşteri Adayı olamaz, Lead Time Days,Teslim zamanı Günü, Lead to Quotation,Müşteri Adayından Teklif Oluştur, -"Leads help you get business, add all your contacts and more as your leads","Potansiyel müşteriler iş almanıza, tüm kişilerinizi ve daha fazlasını potansiyel müşteri adayı olarak eklemenize yardımcı olur", +"Leads help you get business, add all your contacts and more as your leads","Potansiyel müşteriler iş almanıza, tüm kişilerinizi eklemenize ve daha fazlasını potansiyel müşterileriniz olarak eklemenize yardımcı olur", Learn,Öğren, Leave Management,İzin Yönetimi, Leave and Attendance,Puantaj ve İzin, @@ -1341,7 +1341,7 @@ Loan Start Date and Loan Period are mandatory to save the Invoice Discounting,Fa Loans (Liabilities),Krediler (Borçlar), Loans and Advances (Assets),Krediler ve Avanslar (Varlıklar), Local,Yerel, -Logs for maintaining sms delivery status,Sms teslim durumunu korumak için günlükleri, +Logs for maintaining sms delivery status,SMS teslim durumunu korumaya yönelik log kayıtları, Lost,Kaybedildi, Lost Reasons,Kayıp Nedenleri, Low,Düşük, @@ -1362,7 +1362,7 @@ Maintenance Schedule is not generated for all the items. Please click on 'Genera Maintenance Schedule {0} exists against {1},{1} ile ilgili Bakım Çizelgesi {0} var, Maintenance Schedule {0} must be cancelled before cancelling this Sales Order,Bakım Programı {0} bu Satış Emri iptal edilmeden önce iptal edilmelidir, Maintenance Status has to be Cancelled or Completed to Submit,Bakım Durumu İptal Edildi veya Gönderilmesi Tamamlandı, -Maintenance User,Bakımcı Kullanıcı, +Maintenance User,Bakım Kullanıcısı, Maintenance Visit,Bakım Ziyareti, Maintenance Visit {0} must be cancelled before cancelling this Sales Order,Bakım Ziyareti {0} bu Satış Emri iptal edilmeden önce iptal edilmelidir, Maintenance start date can not be before delivery date for Serial No {0},Seri No {0} için bakım başlangıç tarihi teslim tarihinden önce olamaz, @@ -1421,10 +1421,10 @@ Max: {0},Maks: {0}, Maximum Samples - {0} can be retained for Batch {1} and Item {2}.,"Maksimum Örnekler - {0}, Toplu İş {1} ve Madde {2} için tutulabilir.", Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}.,"Maksimum Örnekler - {0}, Toplu İş {1} ve Öğe {2} için Toplu İş Alma İşlemi {3} içinde zaten tutulmuştur.", Maximum discount for Item {0} is {1}%,{0} Öğesi için maksimum indirim %{1}, -Medical Code,Tıbbi kod, +Medical Code,Tıbbi Kod, Medical Code Standard,Tıbbi Kod Standardı, Medical Department,Tıbbi Bölüm, -Medical Record,Tıbbi kayıt, +Medical Record,Tıbbi Kayıt, Medium,Orta, Member Activity,Üye Etkinliği, Member ID,Üye ID, @@ -1452,7 +1452,7 @@ Minimum Lead Age (Days),Minimum Müşteri Aday Kayı Yaşı (Gün), Miscellaneous Expenses,Çeşitli Giderler, Missing Currency Exchange Rates for {0},Eksik Döviz Kurları {0}, Missing email template for dispatch. Please set one in Delivery Settings.,Sevk için e-posta şablonu eksik. Lütfen Teslimat Ayarları'nda bir tane ayarlayın., -"Missing value for Password, API Key or Shopify URL","Şifre, API Anahtarı veya Shopify URL için eksik değer", +"Missing value for Password, API Key or Shopify URL","Şifre, API Key veya Shopify URL için eksik değer", Mode of Payment,Ödeme Şekli, Mode of Payments,Ödemeler Şekli, Mode of Transport,Ulaşım Şekli, @@ -1484,7 +1484,7 @@ Needs Analysis,İhtiyaç Analizi, Negative Quantity is not allowed,Negatif Miktara izin verilmez, Negative Valuation Rate is not allowed,Negatif Değerleme Oranına izin verilmez, Negotiation/Review,Müzakere / İnceleme, -Net Asset value as on,Net Aktif değeri olarak, +Net Asset value as on,Net Varlık değeri şu şekildedir:, Net Cash from Financing,Finansmandan Gelen Net Nakit, Net Cash from Investing,Yatırımdan Gelen Net Nakit, Net Cash from Operations,Faaliyetlerden Gelen Net Nakit, @@ -1509,7 +1509,7 @@ New Customers,Yeni Müşteriler, New Department,Yeni Departman, New Employee,Yeni Çalışan, New Location,Yeni Konum, -New Quality Procedure,Yeni Kalite hükümleri, +New Quality Procedure,Yeni Kalite Prosedürü, New Sales Invoice,Yeni Satış Faturası, New Sales Person Name,Yeni Satış Kişi Adı, New Serial No cannot have Warehouse. Warehouse must be set by Stock Entry or Purchase Receipt,Yeni Seri Deposuz olamaz. Depo Stok Hareketi ile veya alım makbuzuyla ayarlanmalıdır, @@ -1522,9 +1522,9 @@ Next,Sonraki, Next Contact By cannot be same as the Lead Email Address,Sonraki İletişim Sorumlusu Müşteri Aday Kaydının E-posta Adresi ile aynı olamaz, Next Contact Date cannot be in the past,Sonraki İletişim Tarihi olamaz, Next Steps,Sonraki Adımlar, -No Action,İşlem yok, +No Action,İşlem Yok, No Customers yet!,Henüz Müşteri yok!, -No Data,Hiç Veri yok, +No Data,Veri Yok, No Delivery Note selected for Customer {},Müşteri için {} dağıtım Notu çalıştırmadı, No Item with Barcode {0},Barkodlu Ürün Yok {0}, No Item with Serial No {0},Seri Numaralı Ürün Yok {0}, @@ -1534,16 +1534,16 @@ No Items to pack,Ambalaj Ürün Yok Olacak, No Items with Bill of Materials to Manufacture,Malzeme Listesine Öğe Yok İmalat için, No Items with Bill of Materials.,Malzeme Listesi ile Öğe Yok., No Permission,İzin yok, -No Remarks,Remark yok, +No Remarks,Açıklama yok, No Result to submit,Gönderilecek Sonuç Yok, -No Student Groups created.,Hiçbir Öğrenci Grupları mevcut., -No Students in,İçinde öğrenci yok, -No Tax Withholding data found for the current Fiscal Year.,Mevcut Mali Yılı için Vergi Stopajı verileri bulunamadı., +No Student Groups created.,Hiçbir Öğrenci Grubu oluşturulmadı., +No Students in,Öğrenci Yok, +No Tax Withholding data found for the current Fiscal Year.,Mevcut Mali Yıl için Vergi Stopajı verisi bulunamadı., No Work Orders created,İş emri oluşturulmadı, -No accounting entries for the following warehouses,Şu depolar için muhasebe girdisi yok, -No contacts with email IDs found.,E-posta kimlikleri olan hiç kişi bulunamadı., -No data for this period,Bu süre için veri yok, -No description given,Açıklama verilmemiştir, +No accounting entries for the following warehouses,Aşağıdaki depolar için muhasebe girişi yok, +No contacts with email IDs found.,E-posta kimliğine sahip kişi bulunamadı., +No data for this period,Bu dönem için veri yok, +No description given,Açıklama verilmedi, No employees for the mentioned criteria,Sözü edilen ölçütler için çalışan yok, No gain or loss in the exchange rate,Döviz kurunda kazanç veya kayıp yok, No items listed,Listelenen öğe yok, @@ -1647,8 +1647,8 @@ Opportunities by lead source,Aday kaynağına göre fırsatlar, Opportunity,Fırsat, Opportunity Amount,Fırsat Tutarı, "Optional. Sets company's default currency, if not specified.","İsteğe bağlı. Eğer belirtilmemişse, şirketin genel para birimini belirler.", -Optional. This setting will be used to filter in various transactions.,İsteğe bağlı. Bu çeşitli ayar işlemlerini yapmak için kullanmaktır, -Options,Sepetler, +Optional. This setting will be used to filter in various transactions.,İsteğe bağlı. Bu ayar çeşitli işlemlerde filtreleme yapmak için kullanılacaktır., +Options,Seçenekler, Order Count,Sipariş Sayısı, Order Entry,Sipariş Kaydı, Order Value,Sipariş Değeri, @@ -1685,8 +1685,8 @@ POS Profile is required to use Point-of-Sale,"POS Profili, Satış Noktasını K POS Profile required to make POS Entry,POS Profil POS Girişi yapmak için gerekli, POS Settings,POS Ayarları, Packed quantity must equal quantity for Item {0} in row {1},{1} Paketli miktar satır {1} deki Ürün {0} a eşit olmalıdır, -Packing Slip,Paketleme Fişi, -Packing Slip(s) cancelled,Paketleme Fişi iptal edildi, +Packing Slip,Çeki Listesi, +Packing Slip(s) cancelled,Çeki Listesi iptal edildi, Paid,Ödendi, Paid Amount,Ödenen Tutar, Paid Amount cannot be greater than total negative outstanding amount {0},"Ödenen Tutar, toplam negatif ödenmemiş miktardan daha fazla olamaz {0}", @@ -1726,7 +1726,7 @@ Payment Failed. Please check your GoCardless Account for more details,Ödeme ba Payment Gateway,Ödeme Ağ Geçidi, "Payment Gateway Account not created, please create one manually.","Ödeme Ağ Geçidi Hesabı oluşturulmaz, bir tane oluşturun lütfen.", Payment Gateway Name,Ödeme Ağ Geçidi Adı, -Payment Mode,Ödeme Modu, +Payment Mode,Ödeme Şekli, Payment Receipt Note,Ödeme Makbuzu Dekontu, Payment Request,Ödeme Talebi, Payment Request for {0},{0} için Ödeme İsteği, @@ -1943,12 +1943,12 @@ Prescription Duration,Reçete Süresi, Prescriptions,Reçeteler, Prev,Önceki, Preview,Önizleme, -Previous Financial Year is not closed,Geçmiş Mali Yıl kapatılmamış, +Previous Financial Year is not closed,Önceki Mali Yıl kapatılmamış, Price,Fiyat, Price List,Fiyat Listesi, -Price List Currency not selected,Fiyat Listesi para birimini seçmiş, +Price List Currency not selected,Fiyat Listesi Para Birimi seçilmedi, Price List Rate,Fiyat Listesi Oranı, -Price List master.,Fiyat Listesi ustası., +Price List master.,Fiyat Listesi master., Price List must be applicable for Buying or Selling,Fiyat Listesi Alış veya Satış için geçerli olmalıdır, Price List {0} is disabled or does not exist,Fiyat Listesi {0} devre dışı veya yok, Price or product discount slabs are required,Fiyat veya ürün indirimi levhaları gereklidir, @@ -1966,8 +1966,8 @@ Print Report Card,Kartı Rapor Yazdır, Print Settings,Yazdırma Ayarları, Print and Stationery,Baskı ve Kırtasiye, Print settings updated in respective print format,"Yazdırma ayarları, ilgili baskı ağırlığı güncellendi", -Print taxes with zero amount,Sıfır etkileme vergileri yazdırın, -Printing and Branding,Baskı ve Markalaşma, +Print taxes with zero amount,Vergileri sıfır tutarla yazdır, +Printing and Branding,Yazdırma ve Markalaşma, Private Equity,Özel Sermaye, Procedure,Prosedür, Process Day Book Data,Günlük Defter Verisini İşle, @@ -2021,7 +2021,7 @@ Purchase Date,Satınalma Tarihi, Purchase Invoice,Satınalma Faturası, Purchase Invoice {0} is already submitted,Satınalma Faturası {0} zaten teslim edildi, Purchase Manager,Satınalma Yöneticisi, -Purchase Master Manager,Satınalma Ana Yöneticisi, +Purchase Master Manager,Satınalma Master Yönetici, Purchase Order,Satınalma Siparişi, Purchase Order Amount,Satınalma Siparişi Tutarı, Purchase Order Amount(Company Currency),Satınalma Siparişi Tutarı (Şirket Para Birimi), @@ -2158,9 +2158,9 @@ Request for Quotations,Teklif Talepleri, Request for Raw Materials,Hammadde Talebi, Request for purchase.,Satınalma Talebi, Request for quotation.,Teklif Talebi., -Requested Qty,İstenen Miktar, +Requested Qty,Talep Miktarı, "Requested Qty: Quantity requested for purchase, but not ordered.","İstenen Miktar: Satın almak için istenen, ancak sipariş edilmeyen miktar", -Requesting Site,Site Talep ediyor, +Requesting Site,Talep eden Site, Requesting payment against {0} {1} for amount {2},"karşı ödeme talep {0}, {1} miktarda {2}", Requestor,Talep eden, Required On,İhtiyaç Tarihi, @@ -2259,7 +2259,7 @@ Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2},S Row {0}: Debit entry can not be linked with a {1},Satır {0}: Banka girişi ile bağlantılı olamaz bir {1}, Row {0}: Depreciation Start Date is required,Satır {0}: Amortisman Başlangıç Tarihi gerekli, Row {0}: Enter location for the asset item {1},Satır {0}: {1} varlık varlığı için yer girin, -Row {0}: Exchange Rate is mandatory,Satır {0}: Döviz Kuru cezaları, +Row {0}: Exchange Rate is mandatory,Satır {0}: Döviz Kuru zorunludur, Row {0}: Expected Value After Useful Life must be less than Gross Purchase Amount,Satır {0}: Faydalı Ömürden Sonra Beklenen Değer Brüt Alım Tutarından daha az olmalıdır, Row {0}: From Time and To Time is mandatory.,Satır {0}: From Time ve Zaman için bakımları., Row {0}: From Time and To Time of {1} is overlapping with {2},Satır {0}: Zaman ve zaman {1} ile örtüşen {2}, @@ -2271,9 +2271,9 @@ Row {0}: Party Type and Party is required for Receivable / Payable account {1},S Row {0}: Payment against Sales/Purchase Order should always be marked as advance,Satır {0}: Satış / Satınalma Siparişi karşı Ödeme hep avans olarak işaretlenmiş olmalıdır, Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,Satır {0}: Kontrol edin Hesabı karşı 'Advance mı' {1} Bu bir avans girişi ise., Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges,{0} Satırı: Lütfen Satış Vergileri ve Masraflarında Vergi Muafiyeti Nedeni ayarını yapın, -Row {0}: Please set the Mode of Payment in Payment Schedule,{0} Satırı: Lütfen Ödeme Planında Ödeme Modu ayarı, -Row {0}: Please set the correct code on Mode of Payment {1},{0} Satırı: Lütfen {1} Ödeme Modunda doğru kodu ayarı, -Row {0}: Qty is mandatory,Satır {0}: Miktar cezaları, +Row {0}: Please set the Mode of Payment in Payment Schedule,Satır {0} : Lütfen Ödeme Planında Ödeme Şeklini ayarlayın, +Row {0}: Please set the correct code on Mode of Payment {1},Satır {0} : Lütfen {1} Ödeme Şeklinde doğru kodu ayarlayın, +Row {0}: Qty is mandatory,Satır {0}: Miktar zorunludur, Row {0}: Quality Inspection rejected for item {1},{0} Satırı: {1} kalem için Kalite Denetimi reddedildi, Row {0}: UOM Conversion Factor is mandatory,Satır {0}: Ölçü Birimi Dönüşüm Faktörü Hizmetleri, Row {0}: select the workstation against the operation {1},{0} bilgisi: {1} işlemine karşı iş istasyonunu seçin, @@ -2301,9 +2301,9 @@ Sales Invoice {0} must be cancelled before cancelling this Sales Order,Satış F Sales Manager,Satış Yöneticisi, Sales Master Manager,Satış Master Yönetici, Sales Order,Satış Siparişi, -Sales Order Item,Sipariş Satış Kalemi, -Sales Order required for Item {0},Ürün {0}için Satış Sipariş gerekli, -Sales Order to Payment,Ödeme Satış Sipariş, +Sales Order Item,Satış Siparişi Kalemi, +Sales Order required for Item {0},{0} ürünü için Satış Siparişi gerekli, +Sales Order to Payment,Satış Siparişinden Ödemeye, Sales Order {0} is not submitted,Satış Sipariş {0} teslim edilmedi, Sales Order {0} is not valid,Satış Sipariş {0} geçerli değildir, Sales Order {0} is {1},Satış Sipariş {0} {1}, @@ -2406,7 +2406,7 @@ Send mass SMS to your contacts,Kişilerinize toplu SMS Gönder, Sensitivity,Hassasiyet, Sent,Gönderildi, Serial No and Batch,Seri No ve Parti (Batch), -Serial No is mandatory for Item {0},Ürün {0} için Seri no cezaları, +Serial No is mandatory for Item {0},Ürün {0} için Seri no zorunludur, Serial No {0} does not belong to Batch {1},"{0} Seri Numarası, {1} Batch'a ait değil", Serial No {0} does not belong to Delivery Note {1},Seri No {0} İrsaliye {1} e ait değil, Serial No {0} does not belong to Item {1},Seri No {0} Ürün {1} e ait değil, @@ -2536,7 +2536,7 @@ Start Year,Başlangıç yılı, Start date should be less than end date for Item {0},Başlangıç tarihi Ürün {0} için bitiş çizgisi daha az olmalıdır, Start date should be less than end date for task {0},{0} görevi için başlangıç tarihi bitiş süreleri daha az olmalıdır, Start day is greater than end day in task '{0}',"Başlangıç gününde, '{0}' Görev bitiş tarihinden daha büyük", -Start on,Başla, +Start on,Başlama tarihi, State,Eyalet, State/UT Tax,Eyalet / UT Vergisi, Statement of Account,Hesap Beyanı, @@ -2563,7 +2563,7 @@ Stock Received But Not Billed,Stok Alındı Ancak Faturalandırılmadı, Stock Reports,Stok Raporları, Stock Summary,Stok Özeti, Stock Transactions,Stok İşlemleri, -Stock UOM,Stok Ölçü Birimi, +Stock UOM,Stok Birimi, Stock Value,Stok Değeri, Stock balance in Batch {0} will become negative {1} for Item {2} at Warehouse {3},Toplu stok bakiyesi {0} olacak olumsuz {1} Warehouse Ürün {2} için {3}, Stock cannot be updated against Delivery Note {0},Stok İrsaliye {0} karşısı güncellenmez, @@ -2586,8 +2586,8 @@ Student Group,Çğrenci grubu, Student Group Strength,Öğrenci Grubu Gücü, Student Group is already updated.,Öğrenci Grubu zaten güncellendi., Student Group: ,Öğrenci Grubu: , -Student ID,Öğrenci Kimliği, -Student ID: ,Öğrenci Kimliği:, +Student ID,Öğrenci No, +Student ID: ,Öğrenci No: , Student LMS Activity,Öğrenci LMS Etkinliği, Student Mobile No.,Öğrenci Cep No, Student Name,Öğrenci Adı, @@ -2623,7 +2623,7 @@ Sunday,Pazar, Suplier,Tedarikçi, Supplier,Tedarikçi, Supplier Group,Tedarikçi Grubu, -Supplier Group master.,Tedarikçi Grubu yöneticisi., +Supplier Group master.,Tedarikçi Grubu ustası., Supplier Id,Tedarikçi kimliği, Supplier Invoice Date cannot be greater than Posting Date,"Tedarikçi Fatura Tarihi, postalama tarihinden büyük olamaz", Supplier Invoice No,Tedarikçi Fatura No, @@ -2656,7 +2656,7 @@ Target,Hedef, Target ({}),Hedef ({}), Target On,Hedef yeri, Target Warehouse,Hedef Depo, -Target warehouse is mandatory for row {0},Satır {0} için hedef depo cezaları, +Target warehouse is mandatory for row {0},Satır {0} için hedef depo zorunludur, Task,Görev, Tasks,Görevler, Tasks have been created for managing the {0} disease (on row {1}),{0} hastalığını izlemek için yazışmalar (satır {1}), @@ -2666,7 +2666,7 @@ Tax Category,Vergi Kategorisi, Tax Category for overriding tax rates.,Vergi oranlarını geçersiz kılmak için Vergi Kategorisi., "Tax Category has been changed to ""Total"" because all the Items are non-stock items","Tüm Maddeler stokta bulunmayan maddeler olduklarında, Vergi Kategorisi "Toplam" olarak değiştirildi", Tax ID,Vergi Numarası, -Tax Id: ,Vergi numarası:, +Tax Id: ,Vergi Numarası:, Tax Rate,Vergi Oranı, Tax Rule Conflicts with {0},Vergi Kural Çatışmalar {0}, Tax Rule for transactions.,Işlemler için vergi hesaplama kuralı., @@ -2737,7 +2737,7 @@ This Month's Summary,Bu Ayın Özeti, This Week's Summary,Bu Haftanın Özeti, This action will stop future billing. Are you sure you want to cancel this subscription?,"Bu işlemi, faturalandırmayı durduracak. Bu aboneliği iptal etmek istediğinizden emin misiniz?", This covers all scorecards tied to this Setup,"Bu, bu Kurulum ile bağlantılı tüm puan kartlarını kapsayan", -This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,Bu belge ile sınırı üzerinde {0} {1} öğe için {4}. aynı karşı başka {3} {2}?, +This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?,"Bu belge, {4} öğesi için sınırı {0} {1} kadar aştı. Aynı {2}'ye karşı başka bir {3} mı yapıyorsunuz?", This is a root account and cannot be edited.,Bu bir kök hesabıdır ve düzenlenemez., This is a root customer group and cannot be edited.,Bu bir kök müşteri grubudur ve düzenlenemez., This is a root department and cannot be edited.,Bu bir kök devlettir ve düzenlenemez., @@ -2751,7 +2751,7 @@ This is based on logs against this Vehicle. See timeline below for details,"Bu, This is based on stock movement. See {0} for details,Bu stok hareketleri devam ediyor. Bkz. {0} ayrıntılar için, This is based on the Time Sheets created against this project,"Bu, bu projeye karşı potansiyel Zaman postalarını yönlendiriyor", This is based on the attendance of this Student,"Bu, bu Öğrencinin katılımıyla artar", -This is based on transactions against this Customer. See timeline below for details,"Bu, bu Müşteriye karşı işlemlere ayrılmıştır. Ayrıntılar için aşağıdaki zaman geçişini bakın", +This is based on transactions against this Customer. See timeline below for details,"Bu, bu Müşteri ile ilgili işlemlere dayanmaktadır. Ayrıntılar için zaman hattına bakın", This is based on transactions against this Healthcare Practitioner.,"Bu, bu Sağlık Personeline yapılan işlemlere bağlıdır.", This is based on transactions against this Patient. See timeline below for details,"Bu, bu Hastaya karşı işlemlere göre yapılır. Ayrıntılar için aşağıdaki zaman aralarına bakın", This is based on transactions against this Sales Person. See timeline below for details,"Bu, bu Satış Kişisine karşı yapılan işlemlere göre yapılır. Ayrıntılar için aşağıdaki zaman aralarına bakın", @@ -2775,16 +2775,16 @@ To Address 1,Adres 1'ye, To Address 2,Adres 2'ye, To Bill,Faturalanacak, To Date,Bitiş Tarihi, -To Date cannot be before From Date,Bitiş tarihi başlatma cezaları önce bitirme, -To Date cannot be less than From Date,"Tarihe, Başlangıç Tarihinden daha az olamaz", -To Date must be greater than From Date,"Tarihe, Tarihten büyük olmalı", -To Date should be within the Fiscal Year. Assuming To Date = {0},Tarih Mali Yıl içinde olmalıdır. İlgili Tarih = {0}, -To Datetime,DateTime için, +To Date cannot be before From Date,Bitiş Tarihi Başlangıç Tarihinden önce olamaz, +To Date cannot be less than From Date,Bitiş Tarihi Başlangıç Tarihinden küçük olamaz, +To Date must be greater than From Date,Bitiş Tarihi Başlangıç Tarihinden büyük olmalıdır, +To Date should be within the Fiscal Year. Assuming To Date = {0},Bitiş Tarihi Mali Yıl içinde olmalıdır. Varsayalım Bitiş Tarihi = {0}, +To Datetime,Bitiş TarihZaman, To Deliver,Teslim edilecek, To Deliver and Bill,Teslim edilecek ve Faturalanacak, -To Fiscal Year,Mali Yıl, +To Fiscal Year,Bitiş Mali Yılı, To GSTIN,GSTIN'e, -To Party Name,Cari Adı bitişi, +To Party Name,Cari Adı Bitişi, To Pin Code,PIN Koduna, To Place,Yerleştirilecek, To Receive,Alınacak, @@ -2917,7 +2917,7 @@ Update stock must be enable for the purchase invoice {0},Satınalma faturası {0 Updating Variants...,Varyantlar Güncelleniyor..., Upload your letter head and logo. (you can edit them later).,Mektup baş ve logo yükleyin. (Daha sonra bunları düzenleyebilirsiniz)., Upper Income,Üst Gelir, -Use Sandbox,Kullanım Sandbox, +Use Sandbox,Sandbox Kullan, User,Kullanıcı, User ID,Kullanıcı ID, User ID not set for Employee {0},Çalışan {0} için kullanıcı sıfatı ayarlanmamış, @@ -3076,7 +3076,7 @@ disabled user,kullanıcı devredışı, "e.g. Bank, Cash, Credit Card","Örnek: Banka, Nakit, Kredi Kartı", hidden,gizli, modified,düzenlendi, -old_parent,eski_ebeveyn, +old_parent,old_parent, on,üzerinde, {0} '{1}' is disabled,{0} '{1}' devre dışı, {0} '{1}' not in Fiscal Year {2},{0} '{1}' mali yıl {2} içinde değil, @@ -3109,17 +3109,17 @@ on,üzerinde, {0} hours,{0} saat, {0} in row {1},{1} bilgisinde {0}, {0} is blocked so this transaction cannot proceed,"{0} engellendi, bu işleme devam edilemiyor", -{0} is mandatory,{0} yaşam alanı, -{0} is mandatory for Item {1},{0} Ürün {1} için cezalar, -{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} yaptırımlar. {1} ve {2} için Döviz kaydı oluşturulabilir., +{0} is mandatory,{0} zorunludur, +{0} is mandatory for Item {1},{0} ögesi {1} için zorunludur, +{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} zorunludur. Belki {1} ile {2} arasında Döviz Değişim kaydı oluşturulmamıştır., {0} is not a stock Item,{0} bir stok ürünü değildir., -{0} is not a valid Batch Number for Item {1},{0} Ürün {1} için geçerli bir parti numarası değildir, +{0} is not a valid Batch Number for Item {1},{{0} {1} Öğesi için geçerli bir Parti Numarası değil, {0} is not added in the table,Tabloya {0} eklenmedi, -{0} is now the default Fiscal Year. Please refresh your browser for the change to take effect.,{0} varsayılan Mali Yıldır. değiştirmek için tarayıcınızı yenileyiniz, +{0} is now the default Fiscal Year. Please refresh your browser for the change to take effect.,{0} varsayılan Mali Yıldır. Değiştirmek için tarayıcınızı yenileyiniz, {0} is on hold till {1},"{0}, {1} geçen zamana kadar beklemede", {0} item found.,{0} öğe bulundu., {0} items found.,{0} öğe bulundu., -{0} items in progress,{0} ürün devam ediyor, +{0} items in progress,{0} öge işlemde, {0} items produced,{0} ürün üretildi, {0} must appear only once,{0} sadece bir kez yer almalıdır, {0} must be negative in return document,{0} iade belgesinde negatif olmalı, @@ -3161,7 +3161,7 @@ on,üzerinde, {0} {1}: Cost Center is required for 'Profit and Loss' account {2}. Please set up a default Cost Center for the Company.,{0} {1}: Kar/zarar hesabı {2} için Masraf Merkezi tanımlanmalıdır. Lütfen aktif şirket için kapsamlı bir Masraf Merkezi tanımlayın., {0} {1}: Cost Center {2} does not belong to Company {3},{0} {1}: Maliyet Merkezi {2} Şirkete ait olmayan {3}, {0} {1}: Customer is required against Receivable account {2},{0} {1}: Alacak hesabı {2} için müşteri tanımlanmalıdır., -{0} {1}: Either debit or credit amount is required for {2},{0} {1}: {2} için borç ya da alacak alacaklısı girilmelidir, +{0} {1}: Either debit or credit amount is required for {2},{0} {1}: {2} için borç veya alacak tutarı gerekiyor, {0} {1}: Supplier is required against Payable account {2},{0} {1}: Borç hesabı {2} için tedarikçi tanımlanmalıdır, {0}% Billed,%{0} Faturalandırıldı, {0}% Delivered,{0}% Teslim Edildi, @@ -3187,7 +3187,7 @@ Likes,Beğeniler, Merge with existing,Varolan ile Birleştir, Orientation,Oryantasyon, Parent,Ana Kalem, -Payment Failed,Ödeme başarısız, +Payment Failed,Ödeme Başarısız, Personal,Kişisel, Post,Gönder, Postal Code,Posta Kodu, @@ -3232,10 +3232,10 @@ From Date,Başlama Tarihi, Group By,Gruplama Ölçütü, Invalid URL,Geçersiz URL, Landscape,Landscape, -Naming Series,Adlandırma Serisi, +Naming Series,Seri Numarası, No data to export,Verilecek veri yok, Portrait,Portrait, -Print Heading,Baskı Başlığı, +Print Heading,Yazdırma Başlığı, Scheduler Inactive,Zamanlayıcı Etkin Değil, Scheduler is inactive. Cannot import data.,Zamanlayıcı etkin değil. Veri alınamıyor., Show Document,Belgeyi Göster, @@ -3283,7 +3283,7 @@ Asset Id,Varlık Kimliği, Asset Value,Varlık Değeri, Asset Value Adjustment cannot be posted before Asset's purchase date {0}.,"Varlık Değer Ayarlaması, Varlığın satınalma yollarından önce {0} yayınlanamaz .", Asset {0} does not belongs to the custodian {1},"{0} varlık, {1} saklama deposuna ait değil", -Asset {0} does not belongs to the location {1},"{0} öğesi, {1} sunumu ait değil", +Asset {0} does not belongs to the location {1},"{0} öğesi, {1} konumuna ait değil", At least one of the Applicable Modules should be selected,Uygulanabilir Modüllerden en az biri seçilmelidir, Atleast one asset has to be selected.,En az bir varlık seçilmelidir., Authentication Failed,Kimlik doğrulaması başarısız oldu, @@ -3380,7 +3380,7 @@ Doctype,BelgeTipi, Document {0} successfully uncleared,{0} dokümanı başarıyla temizlendi, Download Template,Şablonu İndir, Dr,Borç, -Due Date,Bitiş tarihi, +Due Date,Vade Tarihi, Duplicate,Kopyala, Duplicate Project with Tasks,Projeyi Görev ile Çoğalt, Duplicate project has been created,Yinelenen proje oluşturuldu, @@ -3414,7 +3414,7 @@ Expired,Süresi Bitti, Export,Dışarı Aktar, Export not allowed. You need {0} role to export.,İhracata izin verilmiyor. Vermek {0} rolü gerekir., Failed to add Domain,Etki alanı eklenemedi, -Fetch Items from Warehouse,Depodan Eşya Al, +Fetch Items from Warehouse,Depodan Ürünleri Getir, Fetching...,Getiriliyor..., Field,Alan, Filters,Filtreler, @@ -3591,7 +3591,7 @@ Purchase Invoices,Satınalma Faturaları, Purchase Orders,Satınalma Siparişleri, Purchase Receipt doesn't have any Item for which Retain Sample is enabled.,"Satınalma Fişinde, Örneği Tut'un etkinleştirildiği bir Öğe yoktur.", Purchase Return,Satınalma İadesi, -Qty of Finished Goods Item,Mamul Mal Miktarı, +Qty of Finished Goods Item,Mamül Kalem Miktarı, Quality Inspection required for Item {0} to submit,{0} Ürününün gönderilmesi için Kalite Kontrol gerekli, Quantity to Manufacture,Üretim Miktarı, Quantity to Manufacture can not be zero for the operation {0},{0} işlemi için Üretim Miktarı sıfır olamaz, @@ -3679,8 +3679,8 @@ Show Stock Ageing Data,Stok Yaşlandırmayı Göster, Show Warehouse-wise Stock,Depo bazında Stoğu Göster, Size,Boyut, Something went wrong while evaluating the quiz.,Sınavı değerlendirirken bir şey ters gitti., -Sr,Sr, -Start,Başlangıç, +Sr,No, +Start,Başlat, Start Date cannot be before the current date,"Başlangıç Tarihi, geçerli karşılaştırma önce olamaz", Start Time,Başlangıç Zamanı, Status,Durumu, @@ -3754,7 +3754,7 @@ Vendor Name,Satıcı Adı, Verify Email,E-mail'i dogrula, View,Göster, View all issues from {0},{0} 'daki tüm sorunları görüntüle, -View call log,Arama gününü görüntüle, +View call log,Arama günlüğünü görüntüle, Warehouse,Depo, Warehouse not found against the account {0},{0} hesabına karşı depo bulunamadı, Welcome to {0},Hoşgeldiniz {0}, @@ -3802,8 +3802,8 @@ Clear,Açık, Comments,Yorumlar, DocType,Belge Türü, Download,İndir, -Left,Ayrıldı, -Link,Bağlantı, +Left,Sol, +Link,Link, New,Yeni, Print,Yazdır, Reference Name,Referans Adı, @@ -3820,7 +3820,7 @@ No students Found,Öğrenci Bulunamadı, Not in Stock,Stokta yok, Please select a Customer,Lütfen bir müşteri seçin, Received From,Alındığı Yer, -Sales Person,Satış Elemanı, +Sales Person,Satış Temsilcisi, To date cannot be before From date,Bitiş tarihi başlatma cezaları önce bitirme, Write Off,Şüpheli Alacak, {0} Created,{0} Oluşturuldu, @@ -3876,7 +3876,7 @@ Cards,Kartlar, Percentage,Yüzde, Failed to setup defaults for country {0}. Please contact support@erpnext.com,{0} ülke için varsayılanlar ayarlanamadı. Lütfen support@erpnext.com ile iletişim geçin, Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it.,Satır # {0}: {1} öğe bir Seri / Toplu İş Öğesi değil. Seri No / Parti No'ya karşı olamaz., -Please set {0},Lütfen {0} ayarınız, +Cancelled,İptal edildi, Please setup Instructor Naming System in Education > Education Settings,Lütfen Eğitim> Eğitim Yönetimi bölümü Eğitmen Adlandırma Sistemini kurun, Please set Naming Series for {0} via Setup > Settings > Naming Series,Lütfen Kurulum> Ayarlar> Adlandırma Serisi aracılığıyla {0} için Adlandırma Serisini ayarlayın, UOM Conversion factor ({0} -> {1}) not found for item: {2},{2} bileşeni için UOM Dönüşüm faktörü ({0} -> {1}) bulunamadı., @@ -4095,7 +4095,7 @@ Over Billing Allowance (%),Fazla Fatura Ödeneği (%), Credit Controller,Kredi Kontrolü, Check Supplier Invoice Number Uniqueness,Tedarikçi Fatura Numarasının Benzersizliğini Kontrol et, Make Payment via Journal Entry,Devmiye Kayıtları yoluyla Ödeme Yap, -Unlink Payment on Cancellation of Invoice,Fatura İptaline İlişkin Ödeme süresini kaldır, +Unlink Payment on Cancellation of Invoice,Fatura İptalinde Ödeme Bağlantısını Kaldır, Book Asset Depreciation Entry Automatically,Varlık Amortisman Kaydını Otomatik olarak Kaydet, Automatically Add Taxes and Charges from Item Tax Template,Öğe Vergisi Şablonundan Otomatik Olarak Vergi ve Masraf Ekleme, Automatically Fetch Payment Terms,Ödeme Şifrelerini Otomatik Olarak Al, @@ -4156,7 +4156,7 @@ Statement Header Mapping,Deyim Üstbilgisi Eşlemesi, Statement Headers,Bildirim Başlıkları, Transaction Data Mapping,İşlem Verileri Eşlemesi, Mapped Items,Eşleştirilmiş Öğeler, -Bank Statement Settings Item,Banka Ekstrem ayar öğesi, +Bank Statement Settings Item,Banka Ekstresi Ayarları Ögesi, Mapped Header,Eşlenen Üstbilgi, Bank Header,Banka Başlığı, Bank Statement Transaction Entry,Banka ekstresi işlem girişi, @@ -4166,9 +4166,9 @@ Match Transaction to Invoices,İşlemlerin Faturalara Eşleştirilmesi, Create New Payment/Journal Entry,Yeni Ödeme / Yevmiye Kaydı Oluştur, Submit/Reconcile Payments,Ödemeleri Gönderme / Mutabakat, Matching Invoices,Eşleşen Faturalar, -Payment Invoice Items,Ödeme Faturası Öğeleri, +Payment Invoice Items,Ödeme Faturası Kalemleri, Reconciled Transactions,Mutabık Kılınan İşlemler, -Bank Statement Transaction Invoice Item,Banka Ekstrem İşlem Fatura Öğesi, +Bank Statement Transaction Invoice Item,Banka Ekstresi İşlem Fatura Kalemi, Payment Description,Ödeme Açıklaması, Invoice Date,Fatura Tarihi, invoice,Fatura, @@ -4181,7 +4181,7 @@ Mapped Data Type,Eşlenen Veri Türü, Mapped Data,Eşlenmiş Veri, Bank Transaction,banka işlemi, ACC-BTN-.YYYY.-,ACC-BTN-.YYYY.-, -Transaction ID,İşlem Kimliği, +Transaction ID,İşlem ID, Unallocated Amount,Ayrılmamış Tutar, Field in Bank Transaction,Banka İşlemindeki Alan, Column in Bank File,Banka Dosyasındaki Sütün, @@ -4263,25 +4263,25 @@ Closed Document,Kapalı Belge, Track separate Income and Expense for product verticals or divisions.,Ayrı Gelir izlemek ve ürün dikey veya bölüm için Gider., Cost Center Name,Maliyet Merkezi Adı, Parent Cost Center,Ana Maliyet Merkezi, -lft,lft, -rgt,rgt, +lft,sol, +rgt,sağ, Coupon Code,Kupon Kodu, Coupon Name,Kupon Adı, "e.g. ""Summer Holiday 2019 Offer 20""",veya. "Yaz Tatili 2019 Teklifi 20", Coupon Type,Kupon Türü, -Promotional,tanıtım, -Gift Card,hediye kartı, +Promotional,Promosyonel, +Gift Card,Hediye Kartı, unique e.g. SAVE20 To be used to get discount,Örnek örnekleme SAVE20 İndirim almak için kullanmak, Validity and Usage,Kullanım ve Kullanım, -Valid From,Başlangıç Tarihi, -Valid Upto,Şu tarihe kadar geçerli, -Maximum Use,Maksimum kullanım, +Valid From,Geçerlilik Başlangıcı, +Valid Upto,Geçerlilik Bitişi, +Maximum Use,Maksimum Kullan, Used,Kullanılmış, -Coupon Description,Kupon çevirisi, +Coupon Description,Kupon Açıklaması, Discounted Invoice,İndirimli Fatura, -Debit to,Şuraya borçlandır, +Debit to,Şuna borçlandır, Exchange Rate Revaluation,Döviz Kuru Yeniden Değerleme, -Get Entries,Girişleri Alın, +Get Entries,Kayıtları Getir, Exchange Rate Revaluation Account,Döviz Kuru Yeniden Değerleme Hesabı, Total Gain/Loss,Toplam Kazanç / Zarar, Balance In Account Currency,Hesap Döviz Bakiyesi, @@ -4300,9 +4300,9 @@ Auto Created,Otomatik Yapılandırıldı, Stock User,Stok Kullanıcısı, Fiscal Year Company,Mali Yıl Şirketi, Debit Amount,Borç Tutarı, -Credit Amount,Kredi Tutarı, -Debit Amount in Account Currency,Hesap Para Bankamatik Tutarı, -Credit Amount in Account Currency,Hesap Para Birimi Kredi Tutarı, +Credit Amount,Alacak Tutarı, +Debit Amount in Account Currency,Hesap Para Birimine göre Borç Tutarı, +Credit Amount in Account Currency,Hesap Para Birimine göre Alacak Tutarı, Voucher Detail No,Fiş Detay No, Is Opening,Açılış mı, Is Advance,Avans mı, @@ -4327,7 +4327,7 @@ Item Tax Template Detail,Öğe Vergisi Şablon Ayrıntısı, Entry Type,Kayıt Türü, Inter Company Journal Entry,Inter Şirket Yevmiye Kaydı, Bank Entry,Banka Kaydı, -Cash Entry,Nakit Kaydı, +Cash Entry,Kasa Kaydı, Credit Card Entry,Kredi Kartı Kaydı, Contra Entry,Ters Kayıt, Excise Entry,Tüketim Kaydı, @@ -4397,13 +4397,13 @@ Monthly Distribution Percentages,Aylık Dağılımı Yüzdeler, Monthly Distribution Percentage,Aylık Dağılımı Yüzde, Percentage Allocation,Yüzde Tahsisi, Create Missing Party,Eksik Cariyi Oluştur, -Create missing customer or supplier.,Kayıp müşteri veya tedarikçi koruması., +Create missing customer or supplier.,Eksik müşteri veya tedarikçi oluşturun., Opening Invoice Creation Tool Item,Fatura Oluşturma Aracı Öğesini Açma, Temporary Opening Account,Geçici Açılış Hesabı, Party Account,Cari Hesap, Type of Payment,Ödeme Türü, ACC-PAY-.YYYY.-,ACC-PAY-.YYYY.-, -Receive,Tahsilat yap, +Receive,Tahsilat, Internal Transfer,İç transfer, Payment Order Status,Ödeme Emri Durumu, Payment Ordered,Ödeme Siparişi, @@ -4417,7 +4417,7 @@ Received Amount,alınan Tutar, Received Amount (Company Currency),alınan Tutar (Şirket Para Birimi), Get Outstanding Invoice,Öden Faturalamamış Alın, Payment References,Ödeme Referansları, -Writeoff,Hurdaya çıkarmak, +Writeoff,Gider kaydı, Total Allocated Amount,Toplam Ayrılan Tutar, Total Allocated Amount (Company Currency),Toplam Ayrılan Tutar (Şirket Para Birimi), Set Exchange Gain / Loss,Değişim Kazanç Seti / Zarar, @@ -4444,10 +4444,10 @@ To Invoice Date,Bitiş Fatura Tarihi, Minimum Invoice Amount,Asgari Fatura Tutarı, Maximum Invoice Amount,Maksimum Fatura Tutarı, System will fetch all the entries if limit value is zero.,"Eğer limit değeri sıfırsa, sistem tüm kayıtlarını alır.", -Get Unreconciled Entries,Mutabık olmayan girdileri alın, +Get Unreconciled Entries,Mutabakatı Yapılmamış Girişleri Alın, Unreconciled Payment Details,Mutabakatı Yapılmamış Ödeme Ayrıntıları, Invoice/Journal Entry Details,Fatura / Yevmiye Kaydı Detayları, -Payment Reconciliation Invoice,Ödeme Mutabakat Faturası, +Payment Reconciliation Invoice,Fatura Ödeme Mutabakatı, Invoice Number,Fatura Numarası, Payment Reconciliation Payment,Ödeme Mutabakat Ödemesi, Reference Row,Referans Satır, @@ -4477,8 +4477,8 @@ Day(s) after the end of the invoice month,Fatura ayının bitiminden sonra kaç Month(s) after the end of the invoice month,Fatura ayının bitiminden sonra kaç ay, Credit Days,Alacak Günü, Credit Months,Alacak Ayı, -Allocate Payment Based On Payment Terms,Ödeme Hücrelerine Göre Ödemeyi Tahsis Et, -"If this checkbox is checked, paid amount will be splitted and allocated as per the amounts in payment schedule against each payment term","Bu onay kutusu işaretlenirse, kiracıları bölünecek ve her ödeme süresine göre ödeme planındaki tutarlara göre tahsis edilecektir.", +Allocate Payment Based On Payment Terms,Ödeme Vadesine göre Ödeme Tahsisi Yap, +"If this checkbox is checked, paid amount will be splitted and allocated as per the amounts in payment schedule against each payment term","Bu kutucuğun işaretlenmesi durumunda ödenen tutar, her ödeme dönemine göre ödeme planındaki tutarlara göre bölünerek tahsis edilecektir.", Payment Terms Template Detail,Ödeme Protokolleri Şablon Ayrıntısı, Closing Fiscal Year,Mali Yılı Kapanış, Closing Account Head,Kapanış Hesap Başkanı, @@ -4487,7 +4487,7 @@ POS Customer Group,POS Müşteri Grubu, POS Field,POS Alanı, POS Item Group,POS Ürün Grubu, Company Address,Şirket Adresi, -Update Stock,Stok Güncelle, +Update Stock,Stoğu Güncelle, Ignore Pricing Rule,Fiyatlandırma Kuralını Yoksay, Applicable for Users,Kullanıcılar için geçerlidir, Sales Invoice Payment,Satış Fatura Ödeme, @@ -4500,7 +4500,7 @@ Write Off Cost Center,Şüpheli Alacak Maliyet Merkezi, Account for Change Amount,Değişim Miktarı Hesabı, Taxes and Charges,Vergi ve Harçlar, Apply Discount On,İndirim buna göre Uygula, -POS Profile User,POS Profil Kullanıcıları, +POS Profile User,POS Profil Kullanıcısı, Apply On,Buna Uygula, Price or Product Discount,Fiyat veya Ürün İndirimi, Apply Rule On Item Code,Ürün Koduna Kural Uygula, @@ -4550,14 +4550,14 @@ Price Discount Slabs,Fiyat İndirim Levhaları, Promotional Scheme Price Discount,Promosyon Şeması Fiyat İndirimi, Product Discount Slabs,Ürün İndirimli Döşeme, Promotional Scheme Product Discount,Promosyon Programı Ürün İndirimi, -Min Amount,Min Miktarı, -Max Amount,Maksimum Tutar, +Min Amount,Min Tutar, +Max Amount,Max Tutar, Discount Type,İndirim Türü, ACC-PINV-.YYYY.-,ACC-PINV-.YYYY.-, Tax Withholding Category,Vergi Stopajı Kategorisi, Edit Posting Date and Time,İşlem Tarihi ve Saatini Düzenle, Is Paid,Ödendi mi, -Is Return (Debit Note),Iade mi (Borç dekontu), +Is Return (Debit Note),Iade mi (Borç Dekontu), Apply Tax Withholding Amount,Vergi Stopaj Tutarını Uygula, Accounting Dimensions ,Muhasebe Boyutları, Supplier Invoice Details,Tedarikçi Fatura Ayrıntıları, @@ -4569,7 +4569,7 @@ Select Shipping Address,Teslimat Adresi Seç, Currency and Price List,Fiyat Listesi ve Para Birimi, Price List Currency,Fiyat Listesi Para Birimi, Price List Exchange Rate,Fiyat Listesi Döviz Kuru, -Set Accepted Warehouse,Kabül edilen Depoyu Ayarla, +Set Accepted Warehouse,Kabul Edilen Depoyu Ayarla, Rejected Warehouse,Reddedilen Depo, Warehouse where you are maintaining stock of rejected items,Reddetilen Ürün stoklarını muhafaza ettiği depo, Raw Materials Supplied,Tedarik edilen Hammaddeler, @@ -4622,7 +4622,7 @@ Start date of current invoice's period,Cari dönem faturanın Başlangıç tarih End date of current invoice's period,Cari dönem faturanın bitiş tarihi, Update Auto Repeat Reference,Otomatik Tekrar Referansı Güncelle, Purchase Invoice Advance,Satınalma Faturası Avansı, -Purchase Invoice Item,Satınalma Faturası Ürünleri, +Purchase Invoice Item,Satınalma Faturası Kalemi, Quantity and Rate,Miktarı ve Oranı, Received Qty,Alınan Miktar, Accepted Qty,Kabul edilen Miktar, @@ -4660,7 +4660,7 @@ Purchase Receipt Detail,Satınalma Makbuzu Ayrıntısı, Item Weight Details,Öğe Ağırlık Ayrıntıları, Weight Per Unit,Birim Ağırlık, Total Weight,Toplam Ağırlık, -Weight UOM,Ağırlık Ölçü Birimi, +Weight UOM,Ağırlık Birimi, Page Break,Sayfa Sonu, Consider Tax or Charge for,Vergi veya Ücret, Valuation and Total,Değerleme ve Toplam, @@ -4687,7 +4687,7 @@ Customer PO Details,Müşteri Satınalma Siparişi Ayrıntıları, Customer's Purchase Order,Müşterinin Satınalma Siparişi, Customer's Purchase Order Date,Müşterinin Satınalma Sipariş Tarihi, Customer Address,Müşteri Adresi, -Shipping Address Name,Teslimat Adresi İsmi, +Shipping Address Name,Teslimat Adresi Adı, Company Address Name,Şirket Adresi Adı, Rate at which Customer Currency is converted to customer's base currency,Müşteri Para Biriminin Müşterinin temel birimine dönüştürme oranı, Rate at which Price list currency is converted to customer's base currency,Fiyat listesi para biriminin temel verileri para birimine dönüştürme oranı, @@ -4723,7 +4723,7 @@ Sales Team1,Satış Ekibi1, Against Income Account,Karşılık Gelir Hesabı, Sales Invoice Advance,Satış Fatura Avansı, Advance amount,Avans Tutarı, -Sales Invoice Item,Satış Faturası Ürünü, +Sales Invoice Item,Satış Faturası Kalemi, Customer's Item Code,Müşterinin Ürün Kodu, Brand Name,Marka Adı, Qty as per Stock UOM,Stok Birimi için Miktar, @@ -4739,7 +4739,7 @@ Stock Details,Stok Detayları, Customer Warehouse (Optional),Müşteri Deposu (İsteğe bağlı), Available Batch Qty at Warehouse,Depodaki Mevcut Parti Miktarı, Available Qty at Warehouse,Depodaki mevcut miktar, -Delivery Note Item,İrsaliye Ürünleri, +Delivery Note Item,İrsaliye Kalemi, Base Amount (Company Currency),Esas Tutar (Şirket Para Birimi), Sales Invoice Timesheet,Satış Faturası Çizelgesi, Time Sheet,Mesai Kartı, @@ -4975,7 +4975,7 @@ Written Down Value,Yazılı Değer, Expected Value After Useful Life,Kullanım süresi sonunda beklenen değer, Rate of Depreciation,Amortisman Oranı, In Percentage,yüzde olarak, -Maintenance Team,bakım ekibi, +Maintenance Team,Bakım Ekibi, Maintenance Manager Name,Bakım Yöneticisi Adı, Maintenance Tasks,Bakım Görevleri, Manufacturing User,Üretim Kullanıcısı, @@ -5001,7 +5001,7 @@ Maintenance Team Name,Bakım Takım Adı, Maintenance Team Members,Bakım Ekibi Üyeleri, Purpose,Amaç, Stock Manager,Stok Yöneticisi, -Asset Movement Item,Varlık Hareketi Öğesi, +Asset Movement Item,Varlık Hareket Kalemi, Source Location,Kaynak Konum, From Employee,Talep eden Personel, Target Location,Hedef Konum, @@ -5073,7 +5073,7 @@ Blanket Order Rate,Açık Sipariş Oranı, Returned Qty,İade edilen Miktar, Purchase Order Item Supplied,Tedarik Edilen Satınalma Siparişi Ürünü, BOM Detail No,BOM Detay yok, -Stock Uom,Stok Ölçü Birimi, +Stock Uom,Stok Birimi, Raw Material Item Code,Hammadde Malzeme Kodu, Supplied Qty,verilen Adet, Purchase Receipt Item Supplied,Tedarik edilen satınalma makbuzu ürünü, @@ -5093,7 +5093,7 @@ Name and Type,Adı ve Türü, SUP-.YYYY.-,SUP-.YYYY.-, Default Bank Account,Varsayılan Banka Hesabı, Is Transporter,Nakliyeci mi, -Represents Company,Şirketi Temsil Ediyor, +Represents Company,Firmayı Temsil Ediyor, Supplier Type,Tedarikçi Türü, Allow Purchase Invoice Creation Without Purchase Order,Satınalma Siparişi olmadan Satınalma Faturası Oluşturmaya İzin Ver, Allow Purchase Invoice Creation Without Purchase Receipt,Satınalma İrsaliye olmadan Satınalma Faturası Oluşturmaya İzin Ver, @@ -5114,7 +5114,7 @@ Statutory info and other general information about your Supplier,Tedarikçiniz h PUR-SQTN-.YYYY.-,PUR-SQTN-.YYYY.-, Supplier Address,Tedarikçi Adresi, Link to material requests,Malzeme taleplerine bağlantı, -Rounding Adjustment (Company Currency,Yuvarlama Ayarı (Şirket Kuru, +Rounding Adjustment (Company Currency,Yuvarlama Ayarı (Firma Kuru, Auto Repeat Section,Otomatik Tekrar Bölümü, Is Subcontracted,Taşerona verildi, Lead Time in days,Teslimat Süresi gün olarak, @@ -5185,7 +5185,7 @@ Timeslots,Zaman dilimleri, Communication Medium Timeslot,İletişim Orta Zaman Çizelgesi, Employee Group,Personel Grubu, Appointment,Randevu, -Scheduled Time,Planlanmış Zaman, +Scheduled Time,Planlanan Süre, Unverified,Doğrulanmamış, Customer Details,Müşteri Detayları, Phone Number,Telefon Numarası, @@ -5265,7 +5265,7 @@ Request for Information,Bilgi Talebi, Suggestions,Öneriler, Blog Subscriber,Blog Abonesi, LinkedIn Settings,LinkedIn Ayarları, -Company ID,Şirket ID, +Company ID,Firma ID, OAuth Credentials,OAuth Kimlik Bilgileri, Consumer Key,Consumer Key, Consumer Secret,Consumer Secret, @@ -5304,11 +5304,11 @@ Twitter Post Id,Twitter Gönderim Kimliği, LinkedIn Post Id,LinkedIn Gönderim Kimliği, Tweet,Tweet, Twitter Settings,Twitter Ayarları, -API Secret Key,API Gizli Anahtarı, +API Secret Key,API Secret Key, Term Name,Dönem Adı, Term Start Date,Dönem Başlangıç Tarihi, Term End Date,Dönem Bitiş Tarihi, -Academics User,Akademik Kullanıcı, +Academics User,Akademi Kullanıcısı, Academic Year Name,Akademik Yıl Adı, Article,Makale, LMS User,LMS Kullanıcısı, @@ -5414,7 +5414,7 @@ EDU-INS-.YYYY.-,EDU-INS-.YYYY.-, Instructor Log,Eğitmen Günlüğü, Other details,Diğer Detaylar, Option,Seçenek, -Is Correct,Doğru, +Is Correct,Doğru mu, Program Name,Programın Adı, Program Abbreviation,Program Kısaltma, Courses,Dersler, @@ -5446,11 +5446,11 @@ New Academic Term,Yeni Akademik Dönem, Program Enrollment Tool Student,Programı Kaydı Öğrenci Aracı, Student Batch Name,Öğrenci Toplu Adı, Program Fee,Program Ücreti, -Question,soru, +Question,Soru, Single Correct Answer,Tek Doğru Cevap, Multiple Correct Answer,Çokluk Doğru Cevap, Quiz Configuration,Sınav Yapılandırması, -Passing Score,Geçme puanı, +Passing Score,Geçme Puanı, Score out of 100,100 üzerinden puan, Max Attempts,Max Girişimleri, Enter 0 to waive limit,Sınırdan feragat etmek için 0 girin, @@ -5467,7 +5467,7 @@ Correct,Doğru, Wrong,Yanlış, Room Name,Oda Adı, Room Number,Oda Numarası, -Seating Capacity,oturma kapasitesi, +Seating Capacity,Oturma Kapasitesi, House Name,Evin Adı, EDU-STU-.YYYY.-,EDU-STU-.YYYY.-, Student Mobile Number,Öğrenci Cep Numarası, @@ -5476,11 +5476,11 @@ A+,A+, A-,A-, B+,B+, B-,B-, -O+,0+, -O-,0-, +O+,0 RH+, +O-,0 RH-, AB+,AB+, AB-,AB-, -Nationality,Milliyet, +Nationality,Uyruğu, Home Address,Ev Adresi, Guardian Details,Veli Detayları, Guardians,Veliler, @@ -5508,18 +5508,18 @@ Students HTML,Öğrenciler HTML, Group Based on,Ona Dayalı Grup, Student Group Name,Öğrenci Grubu Adı, Max Strength,Maksimum Güç, -Set 0 for no limit,hiçbir sınırı 0 olarak ayarlamak, -Instructors,ders, +Set 0 for no limit,Sınırsız için 0'ı ayarlayın, +Instructors,Eğitmenler, Student Group Creation Tool,Öğrenci Grubu Oluşturma Aracı, Leave blank if you make students groups per year,Öğrenci gruplarını yılda bir kere boş bırakın., -Get Courses,Kursları alın, +Get Courses,Kursları Getir, Separate course based Group for every Batch,Her Toplu İş için Ayrılmış Kurs Tabanlı Grup, Leave unchecked if you don't want to consider batch while making course based groups. ,"Kurs temelli gruplar yaparken toplu düşünmeyi sonlandırın, gecen.", Student Group Creation Tool Course,Öğrenci Grubu Oluşturma Aracı Kursu, -Course Code,Kurs kodu, +Course Code,Kurs Kodu, Student Group Instructor,Öğrenci Grubu Eğitimi, Student Group Student,Öğrenci Öğrenci Grubu, -Group Roll Number,Grup Rulosu Numarası, +Group Roll Number,Grup Kayıt Numarası, Student Guardian,Öğrenci Velisi, Relation,İlişki, Mother,Anne, @@ -5601,7 +5601,7 @@ Scope,Kapsam, Authorization Settings,Yetkilendirme Ayarları, Authorization Endpoint,Yetkilendirme Bitiş Noktası, Authorization URL,Yetkilendirme URL'si, -Quickbooks Company ID,Quickbooks Şirket Kimliği, +Quickbooks Company ID,Quickbooks Firma ID, Company Settings,Firma Ayarları, Default Shipping Account,Varsayılan Kargo Hesabı, Default Warehouse,Varsayılan Depo, @@ -5621,7 +5621,7 @@ Webhooks,Webhooks, Customer Settings,Müşteri Ayarları, Default Customer,Varsayılan Müşteri, Customer Group will set to selected group while syncing customers from Shopify,"Müşteri Grubu, Shopify'tan müşteriler senkronize iken seçilmiş grup ayarlanacak", -For Company,Şirket için, +For Company,Firma için, Cash Account will used for Sales Invoice creation,Satış Faturası oluşturmak için Nakit Hesabı kullanımtır, Update Price from Shopify To ERPNext Price List,ERPNext Fiyat Listesinden Shopify Güncelleme Fiyatı, Default Warehouse to to create Sales Order and Delivery Note,Satış Siparişi ve İrsaliye Oluşturma İçin Varsayılan Depo, @@ -5649,7 +5649,7 @@ Company Name as per Imported Tally Data,İçe Aktarılan Tally Verilerine göre Default UOM,varsayılan ölçü birimi, UOM in case unspecified in imported data,İçe aktarılan bilgilerde belirtilmemiş olması durumunda UOM, ERPNext Company,ERPNext Şirketi, -Your Company set in ERPNext,Şirketiniz ERPNext'te ayarlandı, +Your Company set in ERPNext,Firmanız ERPNext'te ayarlandı, Processed Files,İşlenmiş Dosyalar, Parties,Taraflar, UOMs,Ölçü Birimleri, @@ -5667,16 +5667,16 @@ API consumer key,API işletim anahtarı, API consumer secret,API şifreleme sırrı, Tax Account,Vergi Hesabı, Freight and Forwarding Account,Yük ve Nakliyat Hesabı, -Creation User,Yaratıcı Kullanıcısı, +Creation User,Kullanıcısı Oluşturma, "The user that will be used to create Customers, Items and Sales Orders. This user should have the relevant permissions.","Müşteriler, Öğeler ve Satış Siparişleri oluşturmak için kullanıcı. Bu kullanıcı ilgili izinlere sahip olmalıdır.", "This warehouse will be used to create Sales Orders. The fallback warehouse is ""Stores"".",Bu depo Müşteri Siparişlerini oluşturmak için kullanmaktır. Yedek depo "Mağazalar" dir., "The fallback series is ""SO-WOO-"".",Geri dönüş serisi "SO-WOO-", -This company will be used to create Sales Orders.,Bu şirket Satış Siparişlerini oluşturmak için kullanmaktır., +This company will be used to create Sales Orders.,Bu Firma Satış Siparişlerini oluşturmak için kullanılacaktır., Delivery After (Days),Teslimat Sonrası (Gün), This is the default offset (days) for the Delivery Date in Sales Orders. The fallback offset is 7 days from the order placement date.,"Bu, Müşteri Siparişlerindeki Teslim Tarihi için varsayılan ofsettir (gün). Yedek ofset, sipariş yerleşim servisleri 7 dosyadan itibaren.", "This is the default UOM used for items and Sales orders. The fallback UOM is ""Nos"".","Bu, sunucu ve Satış siparişleri için kullanılan varsayılan UOM'dir. Geri dönüş UOM'si ""Nos"".", -Endpoints,uç noktalar, -Endpoint,son nokta, +Endpoints,Endpoints, +Endpoint,Endpoint, Antibiotic Name,Antibiyotik adı, Healthcare Administrator,Sağlık Yöneticisi, Laboratory User,Laboratuar Kullanıcısı, @@ -5688,20 +5688,20 @@ HLC-CPR-.YYYY.-,HLC-CPR-.YYYY.-, Procedure Template,gözenek şablonu, Procedure Prescription,Cezalar Reçete, Service Unit,Servis Ünitesi, -Consumables,sarf, -Consume Stock,Stok tüketimi, +Consumables,Sarf Malzeme, +Consume Stock,Stok Tüket, Invoice Consumables Separately,Fatura Sarf Malzemelerini Ayrı Ayrı, Consumption Invoiced,Faturalandırılan Tüketim, Consumable Total Amount,Sarf Malzemesi Toplam Miktarı, Consumption Details,Tüketim Ayrıntıları, -Nursing User,hemşirelik kullanıcı, -Clinical Procedure Item,Klinik görüntü öğesi, +Nursing User,Hemşire Kullanıcısı, +Clinical Procedure Item,Klinik Prosedür Öğesi, Invoice Separately as Consumables,Sarf Malzemeleri Olarak Ayrı Olarak Fatura, Transfer Qty,Miktarı Aktar, Actual Qty (at source/target),Fiili Miktar (kaynak / hedef), Is Billable,Faturalandırılabilir mi, Allow Stock Consumption,Stok Tüketimine İzin Ver, -Sample UOM,Örnek UOM, +Sample UOM,Örnek Birim, Collection Details,Koleksiyon Ayrıntıları, Change In Item,Öğede Değişim, Codification Table,Kodlama Tablosu, @@ -5966,7 +5966,7 @@ Hotel Room,Otel Odası, Hotel Room Type,Otel Oda Tipi, Capacity,Kapasite, Extra Bed Capacity,Ekstra Yatak Kapasitesi, -Hotel Manager,otel yöneticisi, +Hotel Manager,Otel Yöneticisi, Hotel Room Amenity,Otel Odası İmkanları, Billable,Faturalandırılabilir, Hotel Room Package,Otel Oda Paketi, @@ -6194,13 +6194,13 @@ Against Document No,Karşılık Belge No., Against Document Detail No,Karşılık Belge Detay No., MFG-BLR-.YYYY.-,MFG-BLR-.YYYY.-, Order Type,Sipariş Türü, -Blanket Order Item,Battaniye sipariş öğesi, +Blanket Order Item,Açık Sipariş Kalemi, Ordered Quantity,Sipariş Miktarı, Item to be manufactured or repacked,Üretilecek veya yeniden paketlenecek Ürün, Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Belirli miktarlarda ham maddeden üretim / yeniden paketleme sonrasında elde edilen ürün miktarı, Set rate of sub-assembly item based on BOM,BOM'a dayalı alt montaj malzemesinin ayarlarını ayarlama, Allow Alternative Item,Alternatif Öğeye İzin Ver, -Item UOM,Ürün Ölçü Birimi, +Item UOM,Stok Birimi, Conversion Rate,Dönüşüm Oranı, Rate Of Materials Based On,Malzeme Fiyatı Şuna göre, With Operations,Operasyonlar ile, @@ -6268,8 +6268,8 @@ Started Time,Başlangıç Zamanı, Current Time,Şimdiki Zaman, Job Card Item,İş Kartı Öğesi, Job Card Time Log,İş Kartı Zaman günlüğü, -Time In Mins,Süre dakika, -Completed Qty,Tamamlanan Adet, +Time In Mins,Süre (dakika), +Completed Qty,Tamamlanan Miktar, Manufacturing Settings,Üretim Ayarları, Raw Materials Consumption,Hammadde Tüketimi, Allow Multiple Material Consumption,Çoklu Malzeme Tüketimine İzin Ver, @@ -6281,8 +6281,8 @@ Allow Overtime,Fazla Mesaiye izin ver, Allow Production on Holidays,Tatilde Üretime izin ver, Capacity Planning For (Days),Kapasite Planlama (Gün), Default Warehouses for Production,Varsayılan Üretim Depoları, -Default Work In Progress Warehouse,Varsayılan Yarı Mamul Deposu, -Default Finished Goods Warehouse,Varsayılan Mamul Deposu, +Default Work In Progress Warehouse,Varsayılan Yarı Mamül Deposu, +Default Finished Goods Warehouse,Varsayılan Mamül Deposu, Default Scrap Warehouse,Varsayılan Hurda Deposu, Overproduction Percentage For Sales Order,Satış Siparişi İçin Fazla Üretim Yüzdesi, Overproduction Percentage For Work Order,İş Emri İçin Fazla Üretim Yüzdesi, @@ -6296,7 +6296,7 @@ Minimum Order Quantity,Minimum Sipariş Miktarı, Default Workstation,Varsayılan İş İstasyonu, Production Plan,Üretim Planı, MFG-PP-.YYYY.-,MFG-PP-.YYYY.-, -Get Items From,Öğeleri Al, +Get Items From,Öğeleri Burdan Al, Get Sales Orders,Satış Şiparişlerini Getir, Material Request Detail,Malzeme Talep Ayrıntısı, Get Material Request,Malzeme Talebini Getir, @@ -6329,7 +6329,7 @@ Material Transferred for Manufacturing,Üretim için Aktarılan Malzeme, Manufactured Qty,Üretilen Miktar, Use Multi-Level BOM,Çok Seviyeli BOM Kullan, Plan material for sub-assemblies,Alt-montaj için Malzeme Planla, -Skip Material Transfer to WIP Warehouse,Yarı Mamul Deposuna Malzeme Transferini Atla, +Skip Material Transfer to WIP Warehouse,Yarı Mamül Deposuna Malzeme Transferini Atla, Check if material transfer entry is not required,Malzeme transfer girişinin gerekli olup olmadığını kontrol et, Backflush Raw Materials From Work-in-Progress Warehouse,Devam eden depodaki hammaddelerin geri bilgileri, Update Consumed Material Cost In Project,Projede Tüketilen Malzeme Maliyetini Güncelle, @@ -6355,7 +6355,7 @@ Available Qty at Source Warehouse,Kaynak Depodaki Mevcut Miktar, Available Qty at WIP Warehouse,WIP Ambarında Mevcut Miktar, Work Order Operation,İş Emri Operasyonu, Operation Description,Operasyon Tanımı, -Operation completed for how many finished goods?,Kaç mamul için operasyon tamamlandı?, +Operation completed for how many finished goods?,Kaç Mamül için operasyon tamamlandı?, Work in Progress,Devam ediyor, Estimated Time and Cost,Tahmini Süre ve Maliyet, Planned Start Time,Planlanan Başlangıç Zamanı, @@ -6392,15 +6392,15 @@ Name of Consultant,Danışmanın Adı, Certification Validity,Belgelendirme geçerliliği, Discuss ID,Kimliği tartışmak, GitHub ID,GitHub Kimliği, -Non Profit Manager,Kâr Dışı Müdür, -Chapter Head,Bölüm Başkanı, +Non Profit Manager,Vakıf / Dernek Yöneticisi, +Chapter Head,Bölüm Başlığı, Meetup Embed HTML,Tanışma HTML Göm, chapters/chapter_name\nleave blank automatically set after saving chapter.,bölüm kaydedildikten sonra bölüm otomatik olarak ayarlanır., Chapter Members,Bölüm Üyeleri, Members,Üyeler, Chapter Member,Bölüm Üyesi, Website URL,Web Sitesi URL'si, -Leave Reason,Nedenini Bırak, +Leave Reason,İzin Nedeni, Donor Name,Donör Adı, Donor Type,Donör Türü, Withdrawn,Çekilmiş, @@ -6411,7 +6411,7 @@ Has any past Grant Record,Geçmiş Hibe Kayıtları var mı, Show on Website,Web sitesinde göster, Assessment Mark (Out of 10),Değerlendirme Markası (10''), Assessment Manager,Değerlendirme Yöneticisi, -Email Notification Sent,Gönderilen E-posta Bildirimi, +Email Notification Sent,E-posta Bildirimi Gönderildi, NPO-MEM-.YYYY.-,NPO-MEM-.YYYY.-, Membership Expiry Date,Üyelik Sona Erme Tarihi, Razorpay Details,Razorpay Ayrıntıları, @@ -6483,7 +6483,7 @@ Activity Cost,Faaliyet Maliyeti, Billing Rate,Fatura Oranı, Costing Rate,Maliyet Oranı, title,Başlık, -Projects User,Projeler Kullanıcısı, +Projects User,Proje Kullanıcısı, Default Costing Rate,Varsayılan Maliyetlendirme Oranı, Default Billing Rate,Varsayılan Fatura Oranı, Dependent Task,Bağımlı Görev, @@ -6496,7 +6496,6 @@ From Template,Proje Şablonundan, Project will be accessible on the website to these users,Şu kullanıcılar projeye web sitesinden erişebilecek, Copied From,Şurdan Kopyalanacak, Start and End Dates,Başlangıç ve Tarihler Sonu, -Actual Time in Hours (via Timesheet),Gerçek Zaman (Saat olarak), Costing and Billing,Maliyet ve Faturalandırma, Total Costing Amount (via Timesheet),Toplam Maliyetleme Tutarı (Çalışma Sayfası Tablosu Üzerinden), Total Expense Claim (via Expense Claim),Toplam Gider İddiası (Gider Talepleri yoluyla), @@ -6537,11 +6536,12 @@ Is Milestone,Kilometre taşı, Task Description,Görev Tanımı, Dependencies,Bağımlılıklar, Dependent Tasks,Bağımlı Görevler, -Depends on Tasks,Görevler bağlıdır, +Depends on Tasks,Görevlere Bağlı, Actual Start Date (via Timesheet),Gerçek başlangış tarihi (Zaman Tablosu'ndan), +Actual Time in Hours (via Timesheet),Gerçek Zaman (Saat olarak), Actual End Date (via Timesheet),Gerçek bitiş tarihi (Zaman Tablosu'ndan), Total Expense Claim (via Expense Claim),(Gider İstem yoluyla) Toplam Gider İddiası, -Review Date,inceleme tarihi, +Review Date,İnceleme Tarihi, Closing Date,Kapanış Tarihi, Task Depends On,Görev Bağlıdır, Task Type,Görev Türü, @@ -6553,12 +6553,13 @@ Total Billed Hours,Toplam Faturalı Saat, Total Costing Amount,Toplam Maliyet Tutarı, Total Billable Amount,Toplam Faturalandırılabilir Tutar, Total Billed Amount,Toplam Faturalı Tutar, -% Amount Billed,% Faturalanan Tutar, +% Amount Billed,Faturalandırma Oranı, +% Returned,İade Oranı, Hrs,Saat, Costing Amount,Maliyet Tutarı, Corrective/Preventive,Önleyici / Düzeltici, Corrective,Düzeltici, -Preventive,koruyucu, +Preventive,Koruyucu, Resolution,Karar, Resolutions,Kararlar, Quality Action Resolution,Kalite Eylem Çözünürlüğü, @@ -6571,7 +6572,7 @@ Objectives,Hedefler, Quality Goal Objective,Kalite Hedef Amaç, Objective,Amaç, Agenda,Gündem, -Minutes,Dakikalar, +Minutes,Dakika, Quality Meeting Agenda,Kalite Toplantı Gündemi, Quality Meeting Minutes,Kalite Toplantı Tutanakları, Minute,Dakika, @@ -6630,15 +6631,15 @@ Rate Of TDS As Per Certificate,Sertifikaya Göre TDS Oranı, Certificate Limit,Sertifika Limiti, Invoice Series Prefix,Fatura Serisi Öneki, Active Menu,Aktif Menü, -Restaurant Menu,Restoran menüsü, +Restaurant Menu,Restoran Menüsü, Price List (Auto created),Fiyat Listesi (Otomatik kaydı), -Restaurant Manager,restoran yöneticisi, -Restaurant Menu Item,Restaurant Menü Öğesi, -Restaurant Order Entry,Restoran Siparişi Girişi, +Restaurant Manager,Restoran Yöneticisi, +Restaurant Menu Item,Restoran Menü Öğesi, +Restaurant Order Entry,Restoran Sipariş Kaydı, Restaurant Table,Restoran Masası, -Click Enter To Add,Ekle Gir'i tıklayın, +Click Enter To Add,Eklemek için Enter'a tıklayın, Last Sales Invoice,Son Satış Faturası, -Current Order,Tamamlayıcı Sipariş, +Current Order,Mevcut Sipariş, Restaurant Order Entry Item,Restaurant Sipariş Girişi Maddesi, Served,teslim, Restaurant Reservation,Restoran Rezervasyonu, @@ -6667,7 +6668,7 @@ Customer Primary Contact,Müşteri Birincil İletişim, Customer Primary Address,Müşteri Birincil Adres, "Reselect, if the chosen address is edited after save",Seçilen adres kaydedildikten sonra düzenlenirse yeniden seçin, Primary Address,Birincil Adres, -Mention if non-standard receivable account ,Varsayılan dışı alacak hesabı varsa belirtiniz, +Mention if non-standard receivable account,Standart dışı alacak hesabı varsa belirtin, Credit Limit and Payment Terms,Kredi Limiti ve Ödeme Vadeleri, Additional information regarding the customer.,Müşteri ile ilgili ek bilgi., Sales Partner and Commission,Satış Ortağı ve Komisyon, @@ -6704,12 +6705,12 @@ Rate at which Price list currency is converted to company's base currency,Fiyat Additional Discount and Coupon Code,Ek İndirim ve Kupon Kodu, Referral Sales Partner,Referans Satış Ortağı, In Words will be visible once you save the Quotation.,fiyat tekliflerini saklayacağınızda görünür olacaktır, -Term Details,Dönem Ayrıntıları, +Term Details,Koşul ve Hükümler, Quotation Item,Teklif Kalemi, Against Doctype,Belge Türüne Karşı, Against Docname,Belge Adına Karşı, Additional Notes,Ek Notlar, -SAL-ORD-.YYYY.-,SAL-ORD-.YYYY.-, +SAL-ORD-.YYYY.-,SAT-SİP-.YYYY.-, Skip Delivery Note,Teslim Notunu Atlası, In Words will be visible once you save the Sales Order.,Satış emrini saklayacağınızda görünür olacaktır., Track this Sales Order against any Project,Bu satış emrini bütün Projelere karşı takip et, @@ -6718,7 +6719,7 @@ Not Delivered,Teslim Edilmedi, Fully Delivered,Tamamen Teslim Edildi, Partly Delivered,Kısmen Teslim Edildi, Not Applicable,Uygulanamaz, -% Delivered,% Teslim Edildi, +% Delivered,Teslimat Oranı, % of materials delivered against this Sales Order,% malzeme bu satış emri karşılığında teslim edildi, % of materials billed against this Sales Order,% malzemenin faturası bu Satış Emri karşılığında oluşturuldu, Not Billed,Faturalanmamış, @@ -6754,7 +6755,7 @@ All Supplier Contact,Tüm Tedarikçi İrtibatları, All Sales Partner Contact,Tüm Satış Ortağı İrtibatları, All Lead (Open),Tüm Müşteri Adayları (Açık), All Employee (Active),Tüm Çalışanlar (Aktif), -All Sales Person,Bütün Satıcılar, +All Sales Person,Tüm Satıcılar, Create Receiver List,Alıcı Listesi Oluştur, Receiver List,Alıcı Listesi, Messages greater than 160 characters will be split into multiple messages,160 karakterden daha büyük mesajlar birden fazla mesaja bölünecektir, @@ -6768,10 +6769,10 @@ Itemwise Discount,Ürün İndirimi, Customer or Item,Müşteri veya Ürün, Customer / Item Name,Müşteri / Ürün Adı, Authorized Value,Yetkilendirilmiş Değer, -Applicable To (Role),(Role) uygulanabilir, -Applicable To (Employee),(Çalışana) uygulanabilir, +Applicable To (Role),(Role) Uygulanabilir, +Applicable To (Employee),(Personele) Uygulanabilir, Applicable To (User),(Kullanıcıya) Uygulanabilir, -Applicable To (Designation),(Görev) için uygulanabilir, +Applicable To (Designation),(Göreve) Uygulanabilir, Approving Role (above authorized value),(Yetkili değerin üstünde) Rolü onaylanması, Approving User (above authorized value),(Yetkili değerin üstünde) Kullanıcı onaylanması, Brand Defaults,Marka Varsayılanları, @@ -6818,7 +6819,7 @@ Series for Asset Depreciation Entry (Journal Entry),Varlık Amortisman Girişi S Gain/Loss Account on Asset Disposal,Varlık Elden Çıkarma Kazanç/Zarar Hesabı, Asset Depreciation Cost Center,Varlık Değer Kaybı Maliyet Merkezi, Budget Detail,Bütçe Detayı, -Exception Budget Approver Role,İstisna Bütçe Onaylayan Rolü, +Exception Budget Approver Role,İstisna Bütçesi Onaylayıcı Rolü, Company Info,Şirket Bilgisi, For reference only.,Yalnız Referans için., Company Logo,Şirket Logosu, @@ -6830,7 +6831,7 @@ Registration Details,Kayıt Detayları, Company registration numbers for your reference. Tax numbers etc.,Referans için şirket kayıt numaraları. vergi numaraları vb., Delete Company Transactions,Şirket İşlemleri Sil, Currency Exchange,Döviz Kuru, -Specify Exchange Rate to convert one currency into another,Döviz Kuru içine başka bir para birimini kullandığınız, +Specify Exchange Rate to convert one currency into another,Bir para birimini diğerine dönüştürmek için Döviz Kurunu belirtin, From Currency,Para Biriminden, To Currency,Para Birimine, For Buying,Alış için, @@ -6935,7 +6936,7 @@ Website Item Group,Web Sitesi Ürün Grubu, Cross Listing of Item in multiple groups,Öğenin birden çok grupta Çapraz Listelenmesi, Default settings for Shopping Cart,Alışveriş Sepeti Varsayılan ayarları, Enable Shopping Cart,Alışveriş Sepeti etkinleştirin, -Display Settings,Görüntü Ayarları, +Display Settings,Ekran Ayarları, Show Public Attachments,Genel Ekleri Göster, Show Price,Fiyatı Göster, Show Stock Availability,Stok Uygunluğunu Göster, @@ -7017,15 +7018,15 @@ Delivery Details,Teslim Bilgileri, Driver Email,Sürücü E-postası, Driver Address,Sürücü Adresi, Total Estimated Distance,Toplam Tahmini Mesafe, -Distance UOM,uzak UOM, -Departure Time,hareket saati, +Distance UOM,Mesafe Birimi, +Departure Time,Hareket Saati, Delivery Stops,Teslimat Durakları, Calculate Estimated Arrival Times,Tahmini Varış Sürelerini Hesaplayın, Use Google Maps Direction API to calculate estimated arrival times,Tahmini tahmini kullanım kullanımlarını hesaplamak için Google Haritalar Yönü API'sini kullanın, Optimize Route,Rotayı Optimize Et, Use Google Maps Direction API to optimize route,Rotayı optimize etmek için Google Haritalar Yönü API'sini kullanın, -In Transit,transit olarak, -Fulfillment User,Yerine getirme kullanıcı, +In Transit,Transit olarak, +Fulfillment User,Fulfillment Kullanıcısı, "A Product or a Service that is bought, sold or kept in stock.","Bir Ürün veya satın alınan, satılan veya stokta verileri bir hizmet.", STO-ITEM-.YYYY.-,STO-MADDE-.YYYY.-, Variant Of,Varyantı, @@ -7064,7 +7065,7 @@ Serial Number Series,Seri Numarası Serisi, "Example: ABCD.#####\nIf series is set and Serial No is not mentioned in transactions, then automatic serial number will be created based on this series. If you always want to explicitly mention Serial Nos for this item. leave this blank.","Örnek:. Seri ayarladı ve Seri No belirtilen istenen ABCD ##### \n, daha sonra otomatik seri numarası bu seriye dayalı olarak oluşturulur. Her zaman geniş bu öğe için seri No konuşmak istiyorum. Bu boş bırakın.", Variants,Varyantlar, Has Variants,Varyanta Sahip, -"If this item has variants, then it cannot be selected in sales orders etc.","Bu ürünün varyantları varsa satış siparişlerinde vb. seçilemez.", +"If this item has variants, then it cannot be selected in sales orders etc.",Bu ürünün varyantları varsa satış siparişlerinde vb. seçilemez., Variant Based On,Varyant Tabanlı, Item Attribute,Ürün Özelliği, "Sales, Purchase, Accounting Defaults","Satış, Satınalma, Muhasebe Varsayılanları", @@ -7081,7 +7082,7 @@ Supplier Items,Tedarikçi Öğeleri, Foreign Trade Details,Dış Ticaret Detayları, Country of Origin,Menşei ülke, Sales Details,Satış Ayrıntıları, -Default Sales Unit of Measure,Varsayılan Öğe Satış Birimi, +Default Sales Unit of Measure,Varsayılan Satış Birimi, Is Sales Item,Satış Kalemi mi, Max Discount (%),Maksimum İndirim (%), No of Months,Ay Sayısı, @@ -7192,24 +7193,24 @@ To Warehouse (Optional),Depo (İsteğe bağlı), Actual Batch Quantity,Gerçek Parti Miktarı, Prevdoc DocType,Önceki Doküman, Parent Detail docname,Ana Detay belgesi adı, -"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Teslim edilecek paketler için Paketleme Fişi oluşturun. Paket numarasını, paket içeriğini ve ağırlığını bildirmek için kullanılır.", +"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Teslim edilecek paketler için Çeki Listesi oluşturun. Paket numarasını, paket içeriğini ve ağırlığını bildirmek için kullanılır.", Indicates that the package is a part of this delivery (Only Draft),Paketin bu teslimatın bir parçası olduğunu belirtir (Yalnızca Taslak), MAT-PAC-.YYYY.-,MAT-PAC-.YYYY.-, -From Package No.,Başlangıç Paket No., +From Package No.,Baş. Paket No., Identification of the package for the delivery (for print),Teslimat için paketin tanımlanması (baskı için), To Package No.,Bitiş Paket No., If more than one package of the same type (for print),Aynı türden birden fazla paket varsa (baskı için), Package Weight Details,Paket Ağırlığı Detayları, The net weight of this package. (calculated automatically as sum of net weight of items),Bu paketin net ağırlığı (Ürünlerin net toplamından otomatik olarak çıkarılması), -Net Weight UOM,Net Ağırlık Ölçü Birimi, +Net Weight UOM,Net Ağırlık Birimi, Gross Weight,Brüt Ağırlık, The gross weight of the package. Usually net weight + packaging material weight. (for print),Paketin brüt ağırlığı. Genellikle net ağırlık + ambalaj malzemesi ağırlığı. (baskı için), Gross Weight UOM,Brüt Ağırlık Birimi, -Packing Slip Item,Paketleme Fişi Kalemi, +Packing Slip Item,Çeki Listesi Kalemi, DN Detail,DN Detay, STO-PICK-.YYYY.-,STO-PICK-.YYYY.-, Material Transfer for Manufacture,Üretim için Malzeme Transferi, -Qty of raw materials will be decided based on the qty of the Finished Goods Item,"Hammadde miktarına, Mamul Madde miktarına göre karar verecek.", +Qty of raw materials will be decided based on the qty of the Finished Goods Item,"Hammadde miktarına, Mamül Kalem miktarına göre karar verecek.", Parent Warehouse,Ana Depo, Items under this warehouse will be suggested,Bu depodaki ürünler önerilecek, Get Item Locations,Malzeme Konumlarını Getir, @@ -7329,8 +7330,8 @@ Actual Qty After Transaction,İşlem sonrası gerçek Adet, Stock Value Difference,Stok Değer Farkı, Stock Queue (FIFO),Stok Kuyruğu (FIFO), Is Cancelled,İptal edildi mi, -Stock Reconciliation,Stok Mutabakatı, -This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Bu araç, güncellemek veya sistem stok miktarı ve değerleme düzeltmeleri için yardımcı olur. Genellikle sistem değerleri ve ne aslında depolarda var eşitlemek için kullanılır.", +Stock Reconciliation,Stok Sayımı, +This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Bu araç, sistemdeki stok miktarını ve değerlemesini güncellemenize veya düzeltmenize yardımcı olur. Genellikle sistem değerlerini ve depolarınızda gerçekte var olanları senkronize etmek için kullanılır.", MAT-RECO-.YYYY.-,MAT-Reco-.YYYY.-, Reconciliation JSON,Mutabakat JSON, Stock Reconciliation Item,Stok Mutabakat Kalemi, @@ -7450,7 +7451,7 @@ Absent Student Report,Öğrenci Devamsızlık Raporu, Assessment Plan Status,Değerlendirme Planı Durumu, Asset Depreciation Ledger,Varlık Değer Kaybı Defteri, Asset Depreciations and Balances,Varlık Değer Kayıpları ve Hesapları, -Available Stock for Packing Items,Ambalajlama Ürünleri İçin Kullanılabilir Stok, +Available Stock for Packing Items,Packing Kalemleri İçin Kullanılabilir Stok, Bank Clearance Summary,Banka Gümrükleme Özeti, Batch Item Expiry Status,Parti Öğesi Süre Sonu Durumu, Batch-Wise Balance History,Parti bazlı Bakiye Geçmişi, @@ -7522,7 +7523,7 @@ Material Requests for which Supplier Quotations are not created,Tedarikçi Tekli Open Work Orders,İş Emirlerini Aç, Qty to Deliver,Teslim Edilecek Miktar, Patient Appointment Analytics,Hasta Randevu Analizi, -Payment Period Based On Invoice Date,Fatura Tarihine göre Ödeme Dönemi, +Payment Period Based On Invoice Date,Fatura Tarihine Göre Ödeme Dönemi, Pending SO Items For Purchase Request,Satınalma Talebi Bekleyen PO Ürünleri, Procurement Tracker,Tedarik Takibi, Product Bundle Balance,Ürün Bundle Bakiyesi, @@ -7669,7 +7670,7 @@ ACC-PSINV-.YYYY.-,ACC-PSTERS-.YYYY.-, Consolidated Sales Invoice,Konsolide Satış Faturası, Return Against POS Invoice,POS Fatura Karşılığı İadesi, Consolidated,konsolide, -POS Invoice Item,POS Fatura Öğesi, +POS Invoice Item,POS Fatura Kalemi, POS Invoice Merge Log,POS Fatura Birleştirme Günlüğü, POS Invoices,POS Faturaları, Consolidated Credit Note,Konsolide Alacak Dekontu, @@ -7827,8 +7828,8 @@ Sandbox Mode,Korumalı Alan Modu, Enable Tax Calculation,Vergi Hesaplamasını Etkinleştir, Create TaxJar Transaction,TaxJar İşlemi Oluşturma, Credentials,Kimlik Bilgileri, -Live API Key,Canlı API Anahtarı, -Sandbox API Key,Sandbox API Anahtarı, +Live API Key,Canlı API Key, +Sandbox API Key,Sandbox API Key, Configuration,Yapılandırma, Tax Account Head,Vergi Hesap Başkanı, Shipping Account Head,Sevkiyat Hesap Başkanı, @@ -7838,6 +7839,8 @@ Set the Item Code which will be used for billing the Clinical Procedure.,Klinik Select an Item Group for the Clinical Procedure Item.,Klinik göz Öğesi için bir Öğe Grubu seçin., Clinical Procedure Rate,Klinik çevre Oranı, Check this if the Clinical Procedure is billable and also set the rate.,Klinik bölümlerin faturalandırılabilir olup olmadığı kontrol edin ve maliyet de ayarı., +Check this if the Clinical Procedure utilises consumables. Click ,Klinik çevre sarf malzemelerini kullanansa bunu kontrol edin. Daha fazlasını öğrenmek için tıklayın, + to know more,daha fazlasını bilmek, "You can also set the Medical Department for the template. After saving the document, an Item will automatically be created for billing this Clinical Procedure. You can then use this template while creating Clinical Procedures for Patients. Templates save you from filling up redundant data every single time. You can also create templates for other operations like Lab Tests, Therapy Sessions, etc.","Ayrıca şablon için Tıp Departmanını da ayarlayabilirsiniz. Belgeyi kaydettikten sonra, bu Klinik davanın faturalandırılması için otomatik olarak bir Öğe oluşturulacaktır. Daha sonra Hastalar için Klinik gözlemler oluştururken bu şablonu kullanabilirsiniz. Şablonlar sizi her fırsatta gereksiz verileri doldurmaktan kurtarır. Ayrıca Laboratuar Testleri, Terapi Oturumları vb. Gibi diğer yapılar için şablonlar oluşturabilirsiniz.", Descriptive Test Result,Tanımlayıcı Test Sonucu, Allow Blank,Boşluğa İzin Ver, @@ -7922,7 +7925,7 @@ Tobacco Consumption (Past),Tütün Tüketimi (Geçmiş), Tobacco Consumption (Present),Tütün Tüketimi (Günümüzde), Alcohol Consumption (Past),Alkol Tüketimi (Geçmiş), Alcohol Consumption (Present),Alkol Tüketimi (Günümüzde), -Billing Item,Fatura Öğesi, +Billing Item,Fatura Kalemi, Medical Codes,Tıbbi Kodlar, Clinical Procedures,Klinik Prosedürleri, Order Admission,Sipariş Kabulü, @@ -7953,7 +7956,7 @@ Select variant item code for the template item {0},{0} kalıp öğeleri için d Downtime Entry,Kesinti/Arıza Süresi Girişi, DT-,DT-, Workstation / Machine,İş İstasyonu / Makine, -Operator,Şebeke, +Operator,Operatör, In Mins,Dakika, Downtime Reason,Kesinti Nedeni, Stop Reason,Nedeni Durdur, @@ -7967,10 +7970,10 @@ Operation Row Number,Operasyon Satır Numarası, Operation {0} added multiple times in the work order {1},"Operasyon {0}, iş emrine birden çok kez eklendi {1}", "If ticked, multiple materials can be used for a single Work Order. This is useful if one or more time consuming products are being manufactured.","İşaretliyse, tek bir İş Emri için birden fazla malzeme kullanılabilir. Bu, bir veya daha fazla zaman alan ürün üretiliyorsa kullanışlıdır.", Backflush Raw Materials,Ters Yıkamalı Hammaddeler, -"The Stock Entry of type 'Manufacture' is known as backflush. Raw materials being consumed to manufacture finished goods is known as backflushing.

When creating Manufacture Entry, raw-material items are backflushed based on BOM of production item. If you want raw-material items to be backflushed based on Material Transfer entry made against that Work Order instead, then you can set it under this field.","'Üretim' türündeki Stok Hareketi, ters yıkama olarak bilinir. Mamul malları üretmek için tüketilen hammaddeler, ters yıkama olarak bilinir.

Üretim Girişi yaratılırken, hammadde kalemleri, üretim defterinin ürün reçetelerine göre ters yıkanır. Hammadde kalemlerinin bunun yerine o İş Emrine karşı Yapılan Malzeme Transferi girişine göre yıkanmış tersini istiyorsanız bu alan altında ayarlayabilirsiniz.", +"The Stock Entry of type 'Manufacture' is known as backflush. Raw materials being consumed to manufacture finished goods is known as backflushing.

When creating Manufacture Entry, raw-material items are backflushed based on BOM of production item. If you want raw-material items to be backflushed based on Material Transfer entry made against that Work Order instead, then you can set it under this field.","'Üretim' türündeki Stok Hareketi, ters yıkama olarak bilinir. Mamül kalemleri üretmek için tüketilen hammaddeler, ters yıkama olarak bilinir.

Üretim Girişi yaratılırken, hammadde kalemleri, üretim defterinin ürün reçetelerine göre ters yıkanır. Hammadde kalemlerinin bunun yerine o İş Emrine karşı Yapılan Malzeme Transferi girişine göre yıkanmış tersini istiyorsanız bu alan altında ayarlayabilirsiniz.", Work In Progress Warehouse,Devam Eden Çalışma Deposu, This Warehouse will be auto-updated in the Work In Progress Warehouse field of Work Orders.,"Bu Depo, İş Emirlerinin Devam Eden İşler Deposu alanında otomatik olarak güncellenecektir.", -Finished Goods Warehouse,Mamul Mal Deposu, +Finished Goods Warehouse,Mamül Mal Deposu, This Warehouse will be auto-updated in the Target Warehouse field of Work Order.,"Bu Depo, İş Emrinin Hedef Depo alanında otomatik olarak güncellenecektir.", "If ticked, the BOM cost will be automatically updated based on Valuation Rate / Price List Rate / last purchase rate of raw materials.","İşaretlenirse, ürün reçetesi maliyeti, Değerleme Oranı / Fiyat Listesi Oranı / hammaddelerin son satınalma oranlarına göre otomatik olarak güncellenecektir.", Source Warehouses (Optional),Kaynak Depolar (Opsiyonel), @@ -8026,7 +8029,7 @@ Choose between FIFO and Moving Average Valuation Methods. Click ,FIFO ve Hareket to know more about them.,Onlar hakkında daha fazla bilgi edinmek için., Show 'Scan Barcode' field above every child table to insert Items with ease.,Öğeleri bulmak için her alt tablonun üzerinde 'Barkod Tara' yaklaşmak., "Serial numbers for stock will be set automatically based on the Items entered based on first in first out in transactions like Purchase/Sales Invoices, Delivery Notes, etc.","Stok seri numaraları, Satınalma / Satış Faturaları, Sevk irsaliyeleri vb. İşlemlerde ilk giren ilk çıkarma esas tesisi girilen Kalemlere göre otomatik olarak ayarlanacaktır.", -"If blank, parent Warehouse Account or company default will be considered in transactions","Boş ise, işlemlerde ana Depo Hesabı veya şirket temerrüdü dikkate alınmalıdır.", +"If blank, parent Warehouse Account or company default will be considered in transactions",Boş bırakılırsa işlemlerde ana Depo Hesabı veya şirket temerrüdü dikkate alınacaktır., Service Level Agreement Details,Hizmet Seviyesi Sözleşme Ayrıntıları, Service Level Agreement Status,Hizmet Seviyesi Sözleşme Şartları, On Hold Since,O zaman beri beklemede, @@ -8337,7 +8340,7 @@ Material Requests Required,Gerekli Malzeme Talepleri, Items to Manufacture are required to pull the Raw Materials associated with it.,Üretilecek Öğelerin yanında bulunan ilk madde ve malzemeleri çekmesi gerekir., Items Required,Gerekli Öğeler, Operation {0} does not belong to the work order {1},"{0} işlemi, {1} iş emrine ait değil", -Print UOM after Quantity,Miktardan Sonra Birimi Yazdır, +Print UOM after Quantity,Birimi Miktardan Sonra Yazdır, Set default {0} account for perpetual inventory for non stock items,Stokta olmayan sunucular için kalıcı envanter için yerleşik {0} hesabını ayarladı, Row #{0}: Child Item should not be a Product Bundle. Please remove Item {1} and Save,"Satır # {0}: Alt Öğe, Ürün Paketi paketi. Lütfen {1} Öğesini yükleme ve Kaydedin", Credit limit reached for customer {0},{0} müşterisi için kredi limitine ulaşıldı, @@ -8376,7 +8379,7 @@ Email Sent to Supplier {0},Tedarikçiye Gönderilen E-posta {0}, "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings.",Portaldan Teklif İsteğine Erişim Devre Dışı Bırakıldı. Erişime İzin Vermek için Portal Ayarlarında etkinleştirin., Supplier Quotation {0} Created,tedarikçi Teklifi {0} Oluşturuldu, Valid till Date cannot be before Transaction Date,Tarihe kadar geçerli İşlem Tarihinden önce olamaz, -Unlink Advance Payment on Cancellation of Order,Sipariş İptali Üzerine Peşin Ödeme Bağlantısını Kaldır, +Unlink Advance Payment on Cancellation of Order,Sipariş İptalinde Avans Ödeme Bağlantısını Kaldır, "Simple Python Expression, Example: territory != 'All Territories'","Basit Python ifadesi, Örnek: bölge! = 'Tüm Bölgeler'", Sales Contributions and Incentives,Satış Katkıları ve Teşvikler, Sourced by Supplier,tedarikçi Kaynaklı, @@ -8412,8 +8415,8 @@ Enrollment Date cannot be before the Start Date of the Academic Year {0},"Kayıt Enrollment Date cannot be after the End Date of the Academic Term {0},Kayıt Tarihi Akademik Dönemin Bitiş Tarihinden sonra olamaz {0}, Enrollment Date cannot be before the Start Date of the Academic Term {0},"Kayıt Tarihi, Akademik Dönemin Başlangıç Tarihinden önce olamaz {0}", Future Posting Not Allowed,Hayatına Göndermeye İzin Verilmiyor, -"To enable Capital Work in Progress Accounting, ","Yarı Mamul Muhasebesini etkinleştirmek için,", -you must select Capital Work in Progress Account in accounts table,hesaplarda Sermaye Yarı Mamul Hesabını seçmelisiniz, +"To enable Capital Work in Progress Accounting, ","Yarı Mamül Muhasebesini etkinleştirmek için,", +you must select Capital Work in Progress Account in accounts table,hesaplar tablosunda Sermaye Devam Eden İş Hesabı'nı seçmelisiniz, You can also set default CWIP account in Company {},"Ayrıca, Şirket içinde genel CWIP hesabı da ayarlayabilirsiniz {}", The Request for Quotation can be accessed by clicking on the following button,Teklif Talebine aşağıdaki butona tıklanarak erişim sağlanır., Please click on the following button to set your new password,Yeni şifrenizi belirlemek için lütfen aşağıdaki düğmeyi tıklayın, @@ -8503,8 +8506,8 @@ Is Delivery Note Required for Sales Invoice Creation?,Satış Faturası Oluştur How often should Project and Company be updated based on Sales Transactions?,Satış İşlemlerine göre Proje ve Şirket hangi sıklıkta güncellenmelidir?, Allow User to Edit Price List Rate in Transactions,Kullanıcının İşlemlerde Fiyat Listesi Oranını Düzenlemesine İzin Ver, Allow Item to Be Added Multiple Times in a Transaction,Bir İşlemde Öğenin Birden Fazla Kez Eklenmesi İzin Ver, -Allow Multiple Sales Orders Against a Customer's Purchase Order,Müşterinin Satınalma Siparişine Karşı Birden Fazla Satış Siparişine İzin Ver, -Validate Selling Price for Item Against Purchase Rate or Valuation Rate,Öğenin Satış Fiyatını Satınalma Oranına veya Değerleme Oranına Karşı Doğrula, +Allow Multiple Sales Orders Against a Customer's Purchase Order,Müşterinin Satınalma Siparişine karşın birden fazla Satış Siparişine izin ver, +Validate Selling Price for Item Against Purchase Rate or Valuation Rate,Öğenin Satış Fiyatını Satınalma veya Değerleme Oranına Karşı Doğrula, Hide Customer's Tax ID from Sales Transactions,Müşterinin Vergi Numarasını Satış İşlemlerinden Gizle, "The percentage you are allowed to receive or deliver more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed to receive 110 units.","Sipariş edilen miktara göre daha fazla alma veya teslimat yapmanıza izin verilen yüzde. Örneğin, 100 birim sipariş ettiyseniz ve Ödeneğiniz %10 ise, 110 birim almanıza izin verilir.", Action If Quality Inspection Is Not Submitted,Kalite Denetimi Gönderilmezse Yapılacak İşlem, @@ -8635,8 +8638,8 @@ Row #{}: Serial No. {} has already been transacted into another POS Invoice. Ple Row #{}: Serial Nos. {} has already been transacted into another POS Invoice. Please select valid serial no.,Satır # {}: Seri Numaraları {} zaten başka bir POS Faturasına dönüştürüldü. Lütfen geçerli bir seri numarası seçin., Item Unavailable,Öğe Mevcut Değil, Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {},Satır # {}: Orijinal faturada işlem görmediğinden Seri Numarası {} iade etmeyen {}, -Please set default Cash or Bank account in Mode of Payment {},Lütfen Ödeme Modunda varsayılan Nakit veya Banka hesabını ayarlayın {}, -Please set default Cash or Bank account in Mode of Payments {},Lütfen Ödeme Modu'nda varsayılan Nakit veya Banka hesabını ayarlayın {}, +Please set default Cash or Bank account in Mode of Payment {},Lütfen Ödeme Şeklinde varsayılan Kasa veya Banka hesabını ayarlayın {}, +Please set default Cash or Bank account in Mode of Payments {},Lütfen Ödeme Şeklinde varsayılan Kasa veya Banka hesabını ayarlayın {}, Please ensure {} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account.,Lütfen {} hesabının bir Bilanço hesabı olduğundan emin olun. Ana hesabı bir Bilanço hesabı olarak dağıtma veya farklı bir hesaptan çalıştırma., Please ensure {} account is a Payable account. Change the account type to Payable or select a different account.,Lütfen {} hesabının Alacaklı bir hesabı olduğundan emin olun. Hesap açma Borçlu olarak taşıma veya farklı bir hesap seçin., Row {}: Expense Head changed to {} ,Satır {}: Gider Başlığı {} olarak değiştirilir, @@ -8706,7 +8709,7 @@ Qualified on,Yeterlilik Tarihi, Qualification Status,Yeterlilik Durumu, Is Template,Şablon mu, Price List Defaults,Fiyat Listesi Varsayılanları, -Auto Insert Item Price If Missing,Eksikse Öğe Fiyatını Otomatik Ekle, +Auto Insert Item Price If Missing,Eksikse Ürün Fiyatını Otomatik Ekle, Update Existing Price List Rate,Mevcut Fiyat Listesi Oranını Güncelle, Stock Transactions Settings,Stok İşlem Ayarları, Role Allowed to Over Deliver/Receive,Aşırı Teslim Etmeye/Almaya İzin Verilen Rol, @@ -8714,7 +8717,7 @@ Let's Set Up the Assets Module.,Varlık Modülünü Kuralım!, "Assets, Depreciations, Repairs, and more.","Varlıklar, Amortismanlar, Onarımlar ve daha fazlası.", Review Fixed Asset Accounts,Sabit Kıymet Hesaplarını İnceleyin, Define Asset Category,Varlık Kategorisini Tanımla, -Create an Asset Item,Bir Varlık Öğesi Oluşturun, +Create an Asset Item,Bir Varlık Öğesi Oluştur, Purchase an Asset,Bir Varlık Satın Alın, Add an Existing Asset,Mevcut Bir Varlık Ekle, Settings & Configurations,Ayarlar ve Yapılandırmalar, @@ -8723,7 +8726,7 @@ Let's Set Up the Selling Module.,Haydi Satış Modülünü Kuralım!, Let's Set Up the Buying Module.,Haydi Satınalma Modülünü Kuralım!, "Products, Purchases, Analysis, and more.","Ürünler, Satın Almalar, Analizler ve daha fazlası.", Track Material Request,Malzeme Talebini Takip et, -Create first Purchase Order,İlk Satınalma Siparişini oluşturun, +Create first Purchase Order,İlk Satınalma Siparişini Oluştur, Opening & Closing,Açılış & Kapanış, Connections,Bağlantılar, Items & Pricing,Ürünler & Fiyatlandırma, @@ -8852,8 +8855,8 @@ Action If Same Rate is Not Maintained,Aynı Oran Sağlanmazsa Yapılacak İşlem Calculate Product Bundle Price based on Child Items' Rates,Bundle Ürün Fiyatını Alt Öğelerin Oranlarına Göre Hesapla, Transaction Settings,İşlem Ayarları, Sales Update Frequency in Company and Project,Şirket ve Projede Satış Güncelleme Sıklığı, -Allow Item to be Added Multiple Times in a Transaction,Bir İşlemde Birden Fazla Öğe Eklenmesine İzin Ver, -Enable Discount Accounting for Selling,Satış için İskonto Muhasebesini Etkinleştirin, +Allow Item to be Added Multiple Times in a Transaction,Bir İşlemde Öğenin birden çok kez eklenmesine izin ver, +Enable Discount Accounting for Selling,Satış için İskonto Muhasebesini Etkinleştir, "If enabled, additional ledger entries will be made for discounts in a separate Discount Account","Etkinleştirilirse, indirimler için ayrı bir İndirim Hesabında ek defter girişleri yapılır", Setting the account as a Company Account is necessary for Bank Reconciliation,Hesabın Şirket Hesabı olarak ayarlanması Banka Mutabakatı için gereklidir, Is Finished Item,Bitmiş Ürün mü, @@ -8881,7 +8884,7 @@ Item Reference,Öğe Referansı, Bank Reconciliation Tool,Banka Uzlaştırma Aracı, Sales Order Reference,Satış Siparişi Referansı, Contact & Address,İletişim ve Adres, -FG Warehouse,Mamul Deposu, +FG Warehouse,Mamül Deposu, Tax Detail,Vergi Detayı, Other Info,Diğer Bilgiler, Transit Entry,Transit Kaydı, @@ -8892,12 +8895,12 @@ Stock Closing,Stok Kapanışı, Stock Validations,Stok Doğrulamaları, Serial & Batch Item,Seri ve Parti Öğesi, Picked Qty (in Stock UOM),Toplanan Mik (Stok Birimi), -Inter Transfer Reference,Inter Transfer Referansı, +Inter Transfer Reference,Transferler Arası Referansı, Update Rate as per Last Purchase,Son Alışa göre Fiyatı Güncelle, Create Job Card based on Batch Size,Parti Büyüklüğüne göre İş Kartı Oluştur, Is Corrective Operation,Düzeltici İşlem mi, Sub Operations,Alt Operasyonlar, -Sales Order Status,Satış Sipariş Durumu, +Sales Order Status,Satış Siparişi Durumu, Order Status,Sipariş Durumu, Terms & Conditions,Vade & Koşullar, From Delivery Date,Teslimat Tarihi Baş. , @@ -8976,7 +8979,7 @@ Chart Of Accounts,Hesap Planı, Permitted Data Type,İzin Verilen Veri Türü, Reports & Masters,Raporlar & Ana Veriler, Masters & Reports,Ana Veriler ve Raporlar, -"ERPNext sets up a simple chart of accounts for each Company you create, but you can modify it according to business and legal requirements.","ERPNext, oluşturduğunuz her Şirket için basit bir hesap planı oluşturur, ancak bunu ticari ve yasal gereksinimlere göre değiştirebilirsiniz." +"ERPNext sets up a simple chart of accounts for each Company you create, but you can modify it according to business and legal requirements.","ERPNext, oluşturduğunuz her Şirket için basit bir hesap planı oluşturur, ancak bunu ticari ve yasal gereksinimlere göre değiştirebilirsiniz.", Watch Tutorial,Eğitimi izleyin, "An individual who works and is recognized for his rights and duties in your company is your Employee. You can manage the Employee master. It captures the demographic, personal and professional details, joining and leave details, etc.","Şirketinizde çalışan, hakları ve görevleri ile tanınan bir kişi Çalışanınızdır. Çalışan yöneticisini yönetebilirsiniz. Demografik, kişisel ve mesleki ayrıntıları, katılma ve ayrılma ayrıntılarını vb. yakalar.", Payroll,Bordro, @@ -9027,11 +9030,11 @@ Clinical Procedures Status,Klinik Prosedür Durumu, Let's Set Up the Healthcare Module.,Haydi Sağlık Modülünü Kuralım., "Patients, Practitioner Schedules, Settings, and more.","Hastalar, Pratisyen Programları, Ayarlar ve daha fazlası.", Create Patient,Hasta Oluştur, -Create Practitioner Schedule,Pratisyen Programı Oluşturun, +Create Practitioner Schedule,Pratisyen Hekim Programı Oluştur, Introduction to Healthcare Practitioner,Sağlık Personeline Giriş, -Create Healthcare Practitioner,Sağlık Personeli Oluşturun, -Explore Healthcare Settings,Sağlık Hizmeti Ayarlarını Keşfedin, -Explore Clinical Procedure Templates,Klinik Prosedür Şablonlarını Keşfedin, +Create Healthcare Practitioner,Sağlık Personeli Oluştur, +Explore Healthcare Settings,Sağlık Hizmeti Ayarlarını Keşfet, +Explore Clinical Procedure Templates,Klinik Prosedür Şablonlarını Keşfet, Show Hasta List,{0} Listesini Göster, Total Patients,Toplam Hasta, Total Patients Admitted,Kabul Edilen Toplam Hasta, @@ -9065,7 +9068,7 @@ Items Catalogue,Ürün Kataloğu, Get Started,Başlarken, Visit LMS Portal,LMS Portalını ziyaret edin, Create a Course,Kurs Oluştur, -Setup a Home Page,Bir Ana Sayfa Oluşturun, +Setup a Home Page,Bir Ana Sayfa Oluştur, LMS Setting,LMS Ayarları, Documentation,Dokümantasyon, Video Tutorials,Video Eğitimleri, @@ -9087,10 +9090,12 @@ Evaluation Request,Değerlendirme Talebi, Quiz Submission,Sınav Gönderimi, Let's begin your journey with ERPNext,Haydi ERPNext ile yolculuğa başlayalım!, "Item, Customer, Supplier and Quotation","Ürün, Müşteri, Tedarikçi ve Teklif", -Create an Item,Bir Öğe Oluşturun, -Create a new Item ,Bir Öğe Oluşturun, -Create a Customer,Müşteri Oluşturun, +Create an Item,Ürün Oluştur, +Create a new Item ,Yeni Ürün Oluştur , +Create a Customer,Müşteri Oluştur, Create Your First Sales Invoice ,İlk Satış Faturanızı Oluşturun, +"Item is a product or a service offered by your company, or something you buy as a part of your supplies or raw materials.","Ürün/Malzeme, şirketiniz tarafından sunulan bir ürün veya hizmettir ya da malzeme veya hammaddelerinizin bir parçası olarak satın aldığınız bir şeydir.", +"# Create an Item\n\nItem is a product or a service offered by your company, or something you buy as a part of your supplies or raw materials.\n\nItems are integral to everything you do in ERPNext - from billing, purchasing to managing inventory. Everything you buy or sell, whether it is a physical product or a service is an Item. Items can be stock, non-stock, variants, serialized, batched, assets, etc.\n","# Bir Öğe Oluşturun\n\nÖğe, şirketiniz tarafından sunulan bir ürün veya hizmettir ya da sarf malzemelerinizin veya hammaddelerinizin bir parçası olarak satın aldığınız bir şeydir.\n\nÖğeler, faturalandırmadan, faturalandırmaya, ERPNext'te yaptığınız her şeyin ayrılmaz bir parçasıdır. satın almadan envanteri yönetmeye kadar satın aldığınız veya sattığınız her şey, ister fiziksel bir ürün ister bir hizmet olsun, Öğeler stok, stok dışı, varyantlar, serileştirilmiş, toplu, varlıklar vb. olabilir.\n", Check Stock Ledger,Stok Defterini Kontrol Edin, Learn Project Management,Proje Yönetimini Öğren, Users List,Kullanıcı Listesi, @@ -9099,7 +9104,7 @@ Partnership,Ortaklık, Proprietorship,Sahiplik, Internal Customer,Dahili Müşteri, Allowed Items,İzin Verilen Öğeler, -Party Specific Item,Partiye Özel Öğe, +Party Specific Item,Cariye Özel Ürün, Portal Users,Portal Kullanıcıları, Customer Portal Users,Müşteri Portalı Kullanıcıları, Show Title in Link Fields,Bağlantı Alanlarında Başlığı Göster, @@ -9117,10 +9122,10 @@ Set Operating Cost / Scrape Items From Sub-assemblies,İşletim Maliyetini Ayarl Create and send emails to a specific group of subscribers periodically.,Belirli aralıklarla belirli bir abone grubuna e-posta oluşturun ve gönderin., Enable Provisional Accounting For Non Stock Items,Stok Dışı Kalemler için Geçici Muhasebeyi Etkinleştir, Book Advance Payments in Separate Party Account,Avans Ödemelerini Ayrı Taraf Hesabında Ayırın, -"Enabling this option will allow you to record -

1. Advances Received in a Liability Account instead of the Asset Account

2. Advances Paid in an Asset Account instead of the Liability Account","Bu seçeneğin etkinleştirilmesi aşağıdakileri kaydetmenize olanak tanır -

1. Varlık Hesabı yerine Pasif Hesabından Alınan Avanslar

2. Pasif Hesabı yerine Varlık Hesabına Ödenen Avanslar", -"# Buying Settings\n\n\nBuying module\u2019s features are highly configurable as per your business needs. Buying Settings is the place where you can set your preferences for:\n\n- Supplier naming and default values\n- Billing and shipping preference in buying transactions\n\n\n","Satın Alma Ayarları\n\n\nSatın Alma modülünün özellikleri iş ihtiyaçlarınıza göre son derece yapılandırılabilir. Satın Alma Ayarları, aşağıdaki tercihlerinizi ayarlayabileceğiniz yerdir:\n\n- Tedarikçi adı ve varsayılan değerler\n- Faturalandırma ve satınalma işlemlerinde gönderim tercihi\n\n\n", +Enabling this option will allow you to record -

1. Advances Received in a Liability Account instead of the Asset Account

2. Advances Paid in an Asset Account instead of the Liability Account,Bu seçeneğin etkinleştirilmesi aşağıdakileri kaydetmenize olanak tanır -

1. Varlık Hesabı yerine Pasif Hesabından Alınan Avanslar

2. Pasif Hesabı yerine Varlık Hesabına Ödenen Avanslar, +# Buying Settings\n\n\nBuying module\u2019s features are highly configurable as per your business needs. Buying Settings is the place where you can set your preferences for:\n\n- Supplier naming and default values\n- Billing and shipping preference in buying transactions\n\n\n,"Satın Alma Ayarları\n\n\nSatın Alma modülünün özellikleri iş ihtiyaçlarınıza göre son derece yapılandırılabilir. Satın Alma Ayarları, aşağıdaki tercihlerinizi ayarlayabileceğiniz yerdir:\n\n- Tedarikçi adı ve varsayılan değerler\n- Faturalandırma ve satınalma işlemlerinde gönderim tercihi\n\n\n", Create a new Item,Yeni bir Ürün Oluştur, -"# Create an Item\n\nItem is a product or a service offered by your company, or something you buy as a part of your supplies or raw materials.\n\nItems are integral to everything you do in ERPNext - from billing, purchasing to managing inventory. Everything you buy or sell, whether it is a physical product or a service is an Item. Items can be stock, non-stock, variants, serialized, batched, assets, etc.\n","Bir Öğe Oluşturun\n\nÖğe, şirketiniz tarafından sunulan bir ürün veya hizmettir ya da sarf malzemelerinizin veya hammaddelerinizin bir parçası olarak satın aldığınız bir şeydir.\n\nÖğeler, faturalandırmadan satın alma işlemine kadar ERPNext'te yaptığınız her şeyin ayrılmaz bir parçasıdır. envanteri yönetmek. İster fiziksel bir ürün ister hizmet olsun, satın aldığınız veya sattığınız her şey bir Öğedir. Öğeler stok, stok dışı, varyantlar, serileştirilmiş, toplu, varlıklar vb. olabilir.\n" +"# Create an Item\n\nItem is a product or a service offered by your company, or something you buy as a part of your supplies or raw materials.\n\nItems are integral to everything you do in ERPNext - from billing, purchasing to managing inventory. Everything you buy or sell, whether it is a physical product or a service is an Item. Items can be stock, non-stock, variants, serialized, batched, assets, etc.\n","Bir Öğe Oluşturun\n\nÖğe, şirketiniz tarafından sunulan bir ürün veya hizmettir ya da sarf malzemelerinizin veya hammaddelerinizin bir parçası olarak satın aldığınız bir şeydir.\n\nÖğeler, faturalandırmadan satın alma işlemine kadar ERPNext'te yaptığınız her şeyin ayrılmaz bir parçasıdır. envanteri yönetmek. İster fiziksel bir ürün ister hizmet olsun, satın aldığınız veya sattığınız her şey bir Öğedir. Öğeler stok, stok dışı, varyantlar, serileştirilmiş, toplu, varlıklar vb. olabilir.\n", Exchange Rate Revaluation Settings,Döviz Kuru Yeniden Değerleme Ayarları, Add Columns in Transaction Currency,İşlem Para Biriminde Sütun Ekle, Ignore Exchange Rate Revaluation Journals,Döviz Kuru Yeniden Değerleme Günlüklerini Yoksay, @@ -9190,8 +9195,8 @@ Is setup complete,Kurulum tamamlandı mı, Is name setup skipped,Ad kurulumu atlandı mı, Service Level Name,Hizmet Seviyesi Adı, enabled,etkinleştirildi, -Assignment Conditions,Atama Koşulları -Default SLA,Varsayılan SLA +Assignment Conditions,Atama Koşulları, +Default SLA,Varsayılan SLA, "Simple Python Expression, Example: doc.status == 'Open' and doc.ticket_type == 'Bug'","Basit Python İfadesi, Örnek: doc.status == 'Aç' ve doc.ticket_type =='Bug'", condition,koşul, Response and Resolution,Yanıt ve Çözüm, @@ -9230,10 +9235,10 @@ leave application,İzin Uygulaması, Leave Application,İzin Uygulaması, Compensatory Leave Request,Telafi İzin Talebi, Employee Grade,Personel Derecesi, -Create Holiday List,Tatil Listesi Oluşturun, +Create Holiday List,Tatil Listesi Oluştur, Create Leave Type,İzin Türü Oluştur, -Create Leave Allocation,İzin Tahsisi Oluşturun, -Create Leave Application,İzin Başvurusu Oluşturun, +Create Leave Allocation,İzin Tahsisi Oluştur, +Create Leave Application,İzin Başvurusu Oluştur, Monthly Attendance Sheet,Aylık Devam Tablosu, Recruitment Analytics,İşe Alım Analitiği, Employee Advance Summary,Personel Avansı Özeti, @@ -9271,15 +9276,15 @@ Customer Service Representative,Müşteri Hizmetleri Temsilcisi, Executive Assistant,Yönetici Asistanı, Finance Manager,Finans Yöneticisi, Managing Director,Genel Müdür, -Marketing Manager,Pazarlama Müdürü, +Marketing Manager,Pazarlama Yöneticisi, Marketing Specialist,Pazarlama Uzmanı, President,Başkan, -Product Manager,Ürün Müdürü, +Product Manager,Ürün Yöneticisi, Sales Representative,Satış Temsilcisi, Vice President,Başkan Vekili, Attendance & Leaves,Devam ve İzinler, Joining,Katılma, -Log Type,Kayıt Türü, +Log Type,Log Türü, Location / Device ID,Konum / Cihaz Kimliği, Skip Auto Attendance,Otomatik Katılımı Atla, Cost to Company (CTC),Şirkete Maliyeti (CTC), @@ -9291,7 +9296,7 @@ Education Details,Eğitim detayları, Institution Name,Kurum Adı, Degree Type,Derece Türü, Field of Major/Study,Anadal/Çalışma Alanı, -Work Experience Details,İş tecrübesi detayları +Work Experience Details,İş tecrübesi detayları, Work Experience,İş deneyimi, Hide my Private Information from others,Özel Bilgilerimi başkalarından gizle, Private Information includes your Grade and Work Environment Preferences,Özel Bilgiler Notunuzu ve Çalışma Ortamı Tercihlerinizi içerir, @@ -9312,11 +9317,11 @@ Casual Wear,Rahat kıyafet, Formal Wear,Resmi Kıyafet, Collaboration Preference,İşbirliği Tercihi, collaboration,işbirliği, -Role Preference,Rol Tercihi +Role Preference,Rol Tercihi, Clearly Defined Role,Açıkça Tanımlanmış Rol, Location Preference,Konum Tercihi, Travel,Seyahat, -Individual Work,Bireysel Çalışma +Individual Work,Bireysel Çalışma, Team Work,Takım Çalışması, Both Individual and Team Work,Hem Bireysel Hem Takım Çalışması, Unstructured Role,Yapılandırılmamış Rol, @@ -9375,9 +9380,8 @@ Expense Taxes and Charges,Masraf Vergileri ve Harçları, Sanctioned Amount,Onaylanan Tutar, Expenses & Advances,Masraflar ve Avanslar, Unclaimed Amount,Talep Edilmeyen Tutar, -Employee Settings,Çalışan Ayarları, -Employee Naming By,Çalışan İsimlendirmesi, -Adlandırma Serisi,Adlandırma Serisi, +Employee Settings,Personel Ayarları, +Employee Naming By,Personel Adlandırma, Employee records are created using the selected option,Seçilen seçenek kullanılarak çalışan kayıtları oluşturulur, Standard Working Hours,Standart Çalışma Saatleri, Retirement Age (In Years),Emeklilik Yaşı (Yıl Olarak), @@ -9406,7 +9410,7 @@ Leave Type Name,İzin Türü Adı, Maximum Leave Allocation Allowed,İzin Verilen Maksimum İzin Tahsisi, Applicable After (Working Days),Şu Süreden Sonra Geçerlidir (İş Günleri), Maximum Consecutive Leaves Allowed,İzin Verilen Maksimum Ardışık İzinler, -Attendance for the following dates will be skipped/overwritten on submission, +Attendance for the following dates will be skipped/overwritten on submission,, Attendance Warnings,Katılım Uyarıları, Action on Submission,Teslim Edildiğinde Yapılacak İşlem, Existing Record,Mevcut Kayıt, @@ -9432,7 +9436,7 @@ Blanket Order Allowance (%),Blanket Sipariş Ödeneği (%), Update frequency of Project,Projenin güncelleme sıklığı, Use Transaction Date Exchange Rate,İşlem Tarihi Döviz Kurunu Kullanın, "While making Purchase Invoice from Purchase Order, use Exchange Rate on Invoice's transaction date rather than inheriting it from Purchase Order. Only applies for Purchase Invoice.","Satınalma Siparişinden Satınalma Faturası oluştururken, Satın Alma Siparişinden devralmak yerine, Faturanın işlem tarihindeki Döviz Kurunu kullanın. Yalnızca Satınalma Faturası için geçerlidir.", -How often should Project be updated of Total Purchase Cost ?,Projenin Toplam Satınalma Maliyeti ne sıklıkta güncellenmeli? +How often should Project be updated of Total Purchase Cost ?,Projenin Toplam Satınalma Maliyeti ne sıklıkta güncellenmeli?, Delete Accounting and Stock Ledger Entries on deletion of Transaction,İşlem silinirken Muhasebe ve Stok Kayıtlarını da Sil, Invoicing Features,Faturalama Özellikleri, Enabling ensure each Purchase Invoice has a unique value in Supplier Invoice No. field,Tedarikçi Fatura No alanında her Satınalma Faturasının benzersiz bir değere sahip olmasını sağla, @@ -9453,7 +9457,7 @@ Tax Amount will be rounded on a row(items) level,Vergi Tutarı satır (öğeler) Invoice and Billing,Fatura ve Faturalandırma, Credit Limit Settings,Kredi Limiti Ayarları, Role Allowed to Over Bill ,Fazla Faturalandırmaya İzin Verilen Rol, -Users with this role are allowed to over bill above the allowance percentage,Bu role sahip kullanıcıların tahsisat yüzdesinin üzerinde fazla faturalandırma yapmasına izin verilir. +Users with this role are allowed to over bill above the allowance percentage,Bu role sahip kullanıcıların tahsisat yüzdesinin üzerinde fazla faturalandırma yapmasına izin verilir., Role allowed to bypass Credit Limit,Kredi Limitini Aşmasına İzin verilen Rol, POS Setting,POS Ayarları, Create Ledger Entries for Change Amount,Değişiklik Tutarı için Defter Girişlerini Oluştur, @@ -9505,7 +9509,7 @@ Deduction Reports,Kesinti Raporları, Income Tax Deductions,Gelir Vergisi Kesintileri, Accounting Reports,Muhasebe Raporları, Employee Incentive,Personel Teşviki, -Retention Bonus,Elde Tutma Bonusu, +Retention Bonus,Birikim Bonusu, Transactions & Reports,İşlemler & Raporlar, Salary Payout,Maaş Ödemesi, Tax & Benefits,Vergi ve Avantajlar, @@ -9513,7 +9517,7 @@ Benefits,Faydalar, Employee Benefit Application,Personellere Sağlanan Fayda Uygulaması, Employee Benefit Claim,Personellere Sağlanan Fayda Talebi, Exemption,Muafiyet, -Employee Tax Exemption Declaration,Personel Vergi Muafiyeti Beyannamesi +Employee Tax Exemption Declaration,Personel Vergi Muafiyeti Beyannamesi, Employee Tax Exemption Proof Submission,Personel Vergi Muafiyeti Belgesinin İbrazı, Tax Setup,Vergi Kurulumu, Employee Tax Exemption Sub Category,Personel Vergi Muafiyeti Alt Kategorisi, @@ -9569,13 +9573,13 @@ Appointment Letter Template,Randevu Mektubu Şablonu, Appointment Letter,Randevu Mektubu, Appraisal,Değerlendirme, Appraisal Overview,Değerlendirmeye Genel Bakış, -Appraisal Cycle,Değerlendirme Döngüsü +Appraisal Cycle,Değerlendirme Döngüsü, Employee Performance Feedback,Çalışan Performans Geri Bildirimi, Employee Feedback Criteria,Çalışan Geri Bildirim Kriterleri, Promotion,Promosyon, Summarized View,Özet Görünüm, Trainings (This Week),Eğitimler (Bu Hafta), -Interviews (This Week),Mülakatlar (Bu Hafta) +Interviews (This Week),Mülakatlar (Bu Hafta), Exits (This Month),Çıkışlar (Bu Ay), New Hires (This Month),Yeni Alımlar (Bu Ay), Onboardings (This Month),İşe Alımlar (Bu Ay), @@ -9587,8 +9591,8 @@ Y-O-Y Transfers,Y-O-Y Transferler, Y-O-Y Promotions,Y-O-Y Promosyonlar, Trainer Name,Eğitmen Adı, Trainer Email,Eğitmen E-postası, -Contact Number,İletişim numarası, -Event Name,Etkinlik adı, +Contact Number,İletişim Numarası, +Event Name,Etkinlik Adı, Event Status,Etkinlik Durumu, Has Certificate,Sertifikası Var, Attendees,Katılımcılar, @@ -9625,3 +9629,64 @@ Dec,Aralık, Advance,Peşinat, Advanced,Gelişmiş, Reference No,Referans No, +Card Links,Kart Linkleri, +Edit Links,Linkleri Düzenle, +Link Type,Link Tipi, +Hidden,Gizli, +Activity Duration,Faaliyet Süresi, +Task DocType,Görev Belge Tipi, +Acceptance for Terms and/or Policies,Şartların ve/veya Politikaların Kabulü, +Expected Time Required (In Mins),Gerekli Beklenen Süre (Dakika), +Actual Time,Fiili Süre, +Delivery Note Packed Item,İrsaliye Paketlenen Kalemi, +Stock Reservation Entry,Stok Rezervasyon Kaydı, +Skip Available Sub Assembly Items,Mevcut Alt Montaj Öğelerini Atla, +Sub Assembly Warehouse,Alt Montaj Deposu, +Is Group Warehouse,Grup Deposu, +Is Rejected Warehouse,Reddedilen Depo, +Item cannot be added to its own descendants,Öğe kendi alt öğelerine eklenemez, +"If yes, then this warehouse will be used to store rejected materials","Cevabınız evet ise bu depo, reddedilen malzemeleri depolamak için kullanılacaktır", +"By default, the Item Name is set as per the Item Code entered. If you want Items to be named by a Naming Series choose the 'Naming Series' option.","Varsayılan olarak Ürün Adı, girilen Ürün Koduna göre ayarlanır. Öğelerin bir Adlandırma Serisine göre adlandırılmasını istiyorsanız 'Adlandırma Serisi' seçeneğini seçin.", +Set a Default Warehouse for Inventory Transactions. This will be fetched into the Default Warehouse in the Item master.,Envanter İşlemleri için Varsayılan Depo Ayarlayın. Bu Öge yöneticisindeki Varsayılan Depoya getirilecektir., +"If this checkbox is enabled, then the system won’t run the MRP for the available sub-assembly items.","Bu onay kutusu etkinleştirilirse, sistem mevcut alt montaj öğeleri için MİP'yi çalıştırmaz.", +"When a parent warehouse is chosen, the system conducts stock checks against the associated child warehouses","Bir ana depo seçildiğinde sistem, ilgili alt depolara karşı stok kontrolleri gerçekleştirir", +Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions.,Şirket ile ilgili işlemler zaten mevcut! Hesap Planı yalnızca işlem yapmayan bir Şirket için içe aktarılabilir., +Try the new Print Format Builder,Yeni Yazdırma Formatı Oluşturucu'yu Deneyin, +Consider Minimum Order Qty,Minimum Sipariş Miktarını Dikkate al, +Ignore Available Stock,Mevcut Stokları Yoksay, +"If enabled the system will create material requests even if the stock exists in the 'Raw Materials Warehouse'.","Etkinleştirildiğinde 'Hammadde Deposu'nda stok mevcut olsa bile sistem malzeme talepleri oluşturacaktır.", +No {0} found with matching filters. Clear filters to see all {0}.,Eşleşen filtrelerle {0} bulunamadı. {0} öğesinin tamamını görmek için filtreleri temizleyin., +Invalid date,Geçersiz Tarih, +Setup Series for transactions,İşlemler için Kurulum Serisi, +Set Naming Series options on your transactions.,İşlemlerinizde Seri Adlandırma seçeneklerini ayarlayın., +Update Series Counter,Seri Sayacı Güncelle, +Amended Documents,Değiştirilen Belgeler, +Workspace Manager,Workspace Yöneticisi, +Operation & Workstation,Operasyon ve İş İstasyonu, +Serial and Batch Bundle,Seri ve Toplu Bundle, +Delivery Term,Teslimat Koşulları, +Proforma Date,Proforma Tarihi, +Price Description,Fiyat Açıklaması, +Shipping Description,Nakliye Açıklaması, +Is Shipping Included,Nakliye Dahil mi, +Is Tax Included,Vergi Dahil mi, +HR & Payroll,İK ve Bordro, +HR & Payroll Settings,İK ve Bordro Ayarları, +UnReconcile,Mutabakatı Kaldır, +Sistem Notifications,System Bildirimleri, +Quality Inspection(s),Kalite Kontrol, +Named Place,Adlandırılmış Yer, +VAT %20,KDV %20, +Disables auto-fetching of existing quantity,Mevcut miktarın otomatik olarak getirilmesini devre dışı bırakır, +Scan Mode,Tarama Modu, +Unreconcile Payment,Ödemeyi Uzlaştırma, +Unreconcile Payment Entries,Ödeme Girişlerinin Uzlaştırma, +Job Card Scheduled Time,İş Kartının Planlanan Zamanı, +Document Naming Settings,Belge Adlandırma Ayarları, +Asset Depreciation Schedule,Varlık Amortisman Planı, +Try a Naming Series,Bir Adlandırma Serisini Deneyin, +Get a preview of generated names with a series.,Bir seriyle oluşturulan adların önizlemesini alın., +Default Amendment Naming,Varsayılan Değişikliğin Adlandırılması, +Update Amendment Naming,Değişiklik Adlandırmasını Güncelle, +Default Naming,Varsayılan Adlandırma, +Amend Counter,Sayacı Değiştir,