From f210f1f359c840a5c98b9823e2ec20ded1d35b48 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Feb 2013 14:47:51 +0530 Subject: [PATCH 001/982] added html5 header --- website/templates/html/base.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/website/templates/html/base.html b/website/templates/html/base.html index 2724e578ed..fa01f8aad7 100644 --- a/website/templates/html/base.html +++ b/website/templates/html/base.html @@ -1,6 +1,8 @@ + + {{ title }} @@ -24,4 +26,5 @@ {% block body %} {% endblock %} - \ No newline at end of file + + \ No newline at end of file From 9082fad99431c5e3d2a09014de51f8d5226a2c91 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 21 Feb 2013 14:49:44 +0530 Subject: [PATCH 002/982] testcases for reserved qty --- selling/doctype/sales_order/sales_order.py | 2 +- .../doctype/sales_order/test_sales_order.py | 84 +++++++++++++++++++ .../delivery_note/test_delivery_note.py | 36 ++++++++ 3 files changed, 121 insertions(+), 1 deletion(-) create mode 100644 selling/doctype/sales_order/test_sales_order.py create mode 100644 stock/doctype/delivery_note/test_delivery_note.py diff --git a/selling/doctype/sales_order/sales_order.py b/selling/doctype/sales_order/sales_order.py index 868608123e..7e637cc0c7 100644 --- a/selling/doctype/sales_order/sales_order.py +++ b/selling/doctype/sales_order/sales_order.py @@ -338,7 +338,7 @@ class DocType(SellingController): if not d['reserved_warehouse']: msgprint("""Please enter Reserved Warehouse for item %s as it is stock Item""" % d['item_code'], raise_exception=1) - + args = { "item_code": d['item_code'], "reserved_qty": flt(update_stock) * flt(d['qty']), diff --git a/selling/doctype/sales_order/test_sales_order.py b/selling/doctype/sales_order/test_sales_order.py new file mode 100644 index 0000000000..f1a159a9c5 --- /dev/null +++ b/selling/doctype/sales_order/test_sales_order.py @@ -0,0 +1,84 @@ +import webnotes +from webnotes.utils import flt +import unittest + +class TestSalesOrder(unittest.TestCase): + def make(self): + w = webnotes.model_wrapper(webnotes.copy_doclist(test_records[0])) + w.insert() + w.submit() + return w + + def get_bin_reserved_qty(self, item_code, warehouse): + return flt(webnotes.conn.get_value("Bin", {"item_code": item_code, "warehouse": warehouse}, + "reserved_qty")) + + def test_reserved_qty_so_submit_cancel(self): + # submit + so = self.make() + print self.get_bin_reserved_qty(so.doclist[1].item_code, + so.doclist[1].reserved_warehouse) + + reserved_qty = self.get_bin_reserved_qty(so.doclist[1].item_code, + so.doclist[1].reserved_warehouse) + self.assertEqual(reserved_qty, 10.0) + # cancel + so.cancel() + reserved_qty = self.get_bin_reserved_qty(so.doclist[1].item_code, + so.doclist[1].reserved_warehouse) + self.assertEqual(reserved_qty, 0.0) + + def test_reserved_qty_dn_submit_cancel(self): + so = self.make() + + # allow negative stock + webnotes.conn.set_default("allow_negative_stock", 1) + + # dn submit (against so) + from stock.doctype.delivery_note.test_delivery_note import test_records as dn_test_records + dn = webnotes.model_wrapper(webnotes.copy_doclist(dn_test_records[0])) + dn.doclist[1].prevdoc_doctype = "Sales Order" + dn.doclist[1].prevdoc_docname = so.doc.name + dn.doclist[1].prevdoc_detail_docname = so.doclist[1].name + dn.insert() + dn.submit() + + reserved_qty = self.get_bin_reserved_qty(so.doclist[1].item_code, + so.doclist[1].reserved_warehouse) + self.assertEqual(reserved_qty, 6.0) + +test_records = [ + [ + { + "company": "_Test Company", + "conversion_rate": 1.0, + "currency": "INR", + "customer": "_Test Customer", + "customer_name": "_Test Customer", + "customer_group": "_Test Customer Group", + "doctype": "Sales Order", + "fiscal_year": "_Test Fiscal Year 2013", + "order_type": "Sales", + "delivery_date": "2013-02-23", + "plc_conversion_rate": 1.0, + "price_list_currency": "INR", + "price_list_name": "_Test Price List", + "territory": "_Test Territory", + "transaction_date": "2013-02-21", + "grand_total": 500.0, + "grand_total_export": 500.0, + }, + { + "description": "CPU", + "doctype": "Sales Order Item", + "item_code": "_Test Item Home Desktop 100", + "item_name": "CPU", + "parentfield": "sales_order_details", + "qty": 10.0, + "basic_rate": 50.0, + "export_rate": 50.0, + "amount": 500.0, + "reserved_warehouse": "_Test Warehouse", + } + ] +] \ No newline at end of file diff --git a/stock/doctype/delivery_note/test_delivery_note.py b/stock/doctype/delivery_note/test_delivery_note.py new file mode 100644 index 0000000000..4666360e79 --- /dev/null +++ b/stock/doctype/delivery_note/test_delivery_note.py @@ -0,0 +1,36 @@ +test_records = [ + [ + { + "company": "_Test Company", + "conversion_rate": 1.0, + "currency": "INR", + "customer": "_Test Customer", + "customer_name": "_Test Customer", + "doctype": "Delivery Note", + "fiscal_year": "_Test Fiscal Year 2013", + "plc_conversion_rate": 1.0, + "posting_date": "2013-02-21", + "posting_time": "9:00:00", + "price_list_currency": "INR", + "price_list_name": "_Test Price List", + "status": "Draft", + "territory": "_Test Territory", + "grand_total": 500.0, + "grand_total_export": 500.0, + }, + { + "description": "CPU", + "doctype": "Delivery Note Item", + "item_code": "_Test Item Home Desktop 100", + "item_name": "CPU", + "parentfield": "delivery_note_details", + "qty": 4.0, + "basic_rate": 50.0, + "export_rate": 50.0, + "amount": 500.0, + "warehouse": "_Test Warehouse", + "stock_uom": "No." + } + ] + +] \ No newline at end of file From 90762fcb2d6aef7bb08655ca51f31a1ea89bd3f3 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Feb 2013 14:56:44 +0530 Subject: [PATCH 003/982] added html5 header --- website/templates/html/outer.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/website/templates/html/outer.html b/website/templates/html/outer.html index a8b73ad122..de961227b3 100644 --- a/website/templates/html/outer.html +++ b/website/templates/html/outer.html @@ -1,7 +1,3 @@ -{# - requires, brand_html, top_bar_items, footer_items, copyright, content, address -#} - {% extends "html/base.html" %} {% block body %} From d0db70507c8b3aefac3d6b2c95c6312b0cdc90d0 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Feb 2013 14:58:48 +0530 Subject: [PATCH 004/982] added html5 header --- website/templates/html/base.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/templates/html/base.html b/website/templates/html/base.html index 2724e578ed..d2545cb99d 100644 --- a/website/templates/html/base.html +++ b/website/templates/html/base.html @@ -1,4 +1,5 @@ + {{ title }} @@ -24,4 +25,5 @@ {% block body %} {% endblock %} - \ No newline at end of file + + \ No newline at end of file From 6f27d024aabe042a66fbccb975b846d7b3d1e8f0 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Feb 2013 15:01:55 +0530 Subject: [PATCH 005/982] added html5 header --- website/templates/html/base.html | 1 + 1 file changed, 1 insertion(+) diff --git a/website/templates/html/base.html b/website/templates/html/base.html index d2545cb99d..fa01f8aad7 100644 --- a/website/templates/html/base.html +++ b/website/templates/html/base.html @@ -2,6 +2,7 @@ + {{ title }} From fb3158571fe33bc1f6ae6bde4ab65cd40a2ff73b Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Feb 2013 15:23:36 +0530 Subject: [PATCH 006/982] max height in product_in_list --- website/templates/html/product_in_list.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/website/templates/html/product_in_list.html b/website/templates/html/product_in_list.html index c3cb6bf3ca..2ce9e9b31a 100644 --- a/website/templates/html/product_in_list.html +++ b/website/templates/html/product_in_list.html @@ -6,6 +6,8 @@ {% include 'html/product_missing_image.html' %} {% endif %} -

{{ item_name }}

-

Item Code: {{ name }}

+
+

{{ item_name }}

+

Item Code: {{ name }}

+
\ No newline at end of file From 2be3a115c670a0f1b322fc7226347d00ae96f5f3 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Feb 2013 15:25:54 +0530 Subject: [PATCH 007/982] max height in product_in_list --- website/templates/html/product_in_list.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/templates/html/product_in_list.html b/website/templates/html/product_in_list.html index 2ce9e9b31a..5daa44e167 100644 --- a/website/templates/html/product_in_list.html +++ b/website/templates/html/product_in_list.html @@ -6,8 +6,8 @@ {% include 'html/product_missing_image.html' %} {% endif %} -
-

{{ item_name }}

+
+

{{ item_name }}

Item Code: {{ name }}

\ No newline at end of file From 1678f6d4ae77ff79649cb2add3517b734655bfd4 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 21 Feb 2013 16:55:14 +0530 Subject: [PATCH 008/982] update requested quantity in bin for both Purchase as well as Transfer type material request --- startup/report_data_map.py | 3 +- stock/doctype/bin/bin.py | 8 ++- .../material_request/material_request.py | 62 ++++++++++-------- .../material_request/test_material_request.py | 63 +++++++++++++++---- stock/doctype/stock_entry/stock_entry.py | 2 +- stock/doctype/warehouse/warehouse.py | 1 + 6 files changed, 95 insertions(+), 44 deletions(-) diff --git a/startup/report_data_map.py b/startup/report_data_map.py index c2e4023e9d..93995a9922 100644 --- a/startup/report_data_map.py +++ b/startup/report_data_map.py @@ -117,8 +117,7 @@ data_map = { "(ifnull(qty, 0) - ifnull(ordered_qty, 0)) as qty"], "from": "`tabMaterial Request Item` item, `tabMaterial Request` main", "conditions": ["item.parent = main.name", "main.docstatus=1", "main.status != 'Stopped'", - "material_request_type = 'Purchase'", "ifnull(warehouse, '')!=''", - "ifnull(qty, 0) > ifnull(ordered_qty, 0)"], + "ifnull(warehouse, '')!=''", "ifnull(qty, 0) > ifnull(ordered_qty, 0)"], "links": { "item_code": ["Item", "name"], "warehouse": ["Warehouse", "name"] diff --git a/stock/doctype/bin/bin.py b/stock/doctype/bin/bin.py index 56d116064b..37ecf85d2c 100644 --- a/stock/doctype/bin/bin.py +++ b/stock/doctype/bin/bin.py @@ -87,7 +87,7 @@ class DocType: if (flt(args.get("actual_qty")) < 0 or flt(args.get("reserved_qty")) > 0) \ and args.get("is_cancelled") == 'No' and args.get("is_amended")=='No': self.reorder_item(args.get("voucher_type"), args.get("voucher_no")) - + def get_first_sle(self): sle = sql(""" select * from `tabStock Ledger Entry` @@ -122,7 +122,8 @@ class DocType: self.create_material_request(doc_type, doc_name, reorder_level, reorder_qty, material_request_type) - def create_material_request(self, doc_type, doc_name, reorder_level, reorder_qty, material_request_type): + def create_material_request(self, doc_type, doc_name, reorder_level, reorder_qty, + material_request_type): """ Create indent on reaching reorder level """ defaults = webnotes.defaults.get_defaults() item = webnotes.doc("Item", self.doc.item_code) @@ -175,4 +176,5 @@ class DocType: formatdate(), doc_type, doc_name, bean.doc.doctype, get_url_to_form(bean.doc.doctype, bean.doc.name)) - sendmail(email_list, subject='Auto Material Request Generation Notification', msg = msg) + sendmail(email_list, subject='Auto Material Request Generation Notification', msg = msg) + diff --git a/stock/doctype/material_request/material_request.py b/stock/doctype/material_request/material_request.py index e476aa4743..708700d512 100644 --- a/stock/doctype/material_request/material_request.py +++ b/stock/doctype/material_request/material_request.py @@ -7,7 +7,7 @@ import webnotes from webnotes.utils import cstr, flt from webnotes.model.bean import getlist from webnotes.model.code import get_obj -from webnotes import msgprint +from webnotes import msgprint, _ from controllers.buying_controller import BuyingController class DocType(BuyingController): @@ -119,23 +119,22 @@ class DocType(BuyingController): def update_bin(self, is_submit, is_stopped): """ Update Quantity Requested for Purchase in Bin for Material Request of type 'Purchase'""" - if self.doc.material_request_type == "Purchase": - for d in getlist(self.doclist, 'indent_details'): - if webnotes.conn.get_value("Item", d.item_code, "is_stock_item") == "Yes": - if not d.warehouse: - msgprint("Please Enter Warehouse for Item %s as it is stock item" - % cstr(d.item_code), raise_exception=1) - - qty =flt(d.qty) - if is_stopped: - qty = (d.qty > d.ordered_qty) and flt(flt(d.qty) - flt(d.ordered_qty)) or 0 - - args = { - "item_code": d.item_code, - "indented_qty": (is_submit and 1 or -1) * flt(qty), - "posting_date": self.doc.transaction_date - } - get_obj('Warehouse', d.warehouse).update_bin(args) + for d in getlist(self.doclist, 'indent_details'): + if webnotes.conn.get_value("Item", d.item_code, "is_stock_item") == "Yes": + if not d.warehouse: + msgprint("Please Enter Warehouse for Item %s as it is stock item" + % cstr(d.item_code), raise_exception=1) + + qty =flt(d.qty) + if is_stopped: + qty = (d.qty > d.ordered_qty) and flt(flt(d.qty) - flt(d.ordered_qty)) or 0 + + args = { + "item_code": d.item_code, + "indented_qty": (is_submit and 1 or -1) * flt(qty), + "posting_date": self.doc.transaction_date + } + get_obj('Warehouse', d.warehouse).update_bin(args) def on_submit(self): purchase_controller = webnotes.get_obj("Purchase Common") @@ -196,7 +195,7 @@ class DocType(BuyingController): and material_request_item = %s and docstatus = 1""", (self.doc.name, d.name))[0][0]) webnotes.conn.set_value(d.doctype, d.name, "ordered_qty", d.ordered_qty) - + # note: if qty is 0, its row is still counted in len(item_doclist) # hence adding 1 to per_ordered if (d.ordered_qty > d.qty) or not d.qty: @@ -204,11 +203,9 @@ class DocType(BuyingController): elif d.qty > 0: per_ordered += flt(d.ordered_qty / flt(d.qty)) - if per_ordered: - self.doc.per_ordered = flt((per_ordered / flt(len(item_doclist))) * 100.0, 2) - webnotes.conn.set_value(self.doc.doctype, self.doc.name, "per_ordered", self.doc.per_ordered) - - + self.doc.per_ordered = flt((per_ordered / flt(len(item_doclist))) * 100.0, 2) + webnotes.conn.set_value(self.doc.doctype, self.doc.name, "per_ordered", self.doc.per_ordered) + def update_completed_qty(controller, caller_method): if controller.doc.doctype == "Stock Entry": material_request_map = {} @@ -218,7 +215,18 @@ def update_completed_qty(controller, caller_method): if d.material_request not in material_request_map: material_request_map[d.material_request] = [] material_request_map[d.material_request].append(d.material_request_item) - + webnotes.get_obj("Warehouse", d.t_warehouse).update_bin({ + "item_code": d.item_code, + "indented_qty": (d.docstatus==2 and 1 or -1) * d.transfer_qty, + "posting_date": controller.doc.posting_date, + }) + for mr_name, mr_items in material_request_map.items(): - webnotes.get_obj("Material Request", mr_name, with_children=1).update_completed_qty(mr_items) - \ No newline at end of file + mr_obj = webnotes.get_obj("Material Request", mr_name, with_children=1) + mr_doctype = webnotes.get_doctype("Material Request") + if mr_obj.doc.status in ["Stopped", "Cancelled"]: + msgprint(_("Material Request") + ": %s, " % mr_obj.doc.name + + _(mr_doctype.get_label("status")) + " = %s. " % _(mr_obj.doc.status) + + _("Cannot continue."), raise_exception=True) + + mr_obj.update_completed_qty(mr_items) \ No newline at end of file diff --git a/stock/doctype/material_request/test_material_request.py b/stock/doctype/material_request/test_material_request.py index 1fa1a9f458..3c2f421e95 100644 --- a/stock/doctype/material_request/test_material_request.py +++ b/stock/doctype/material_request/test_material_request.py @@ -10,7 +10,15 @@ class TestMaterialRequest(unittest.TestCase): for fieldname, val in expected.items(): self.assertEquals(val, doclist[i].fields.get(fieldname)) + def _test_requested_qty(self, qty1, qty2): + self.assertEqual(webnotes.conn.get_value("Bin", {"item_code": "_Test Item Home Desktop 100", + "warehouse": "_Test Warehouse"}, "indented_qty"), qty1) + self.assertEqual(webnotes.conn.get_value("Bin", {"item_code": "_Test Item Home Desktop 200", + "warehouse": "_Test Warehouse"}, "indented_qty"), qty2) + def test_completed_qty_for_purchase(self): + webnotes.conn.sql("""delete from `tabBin`""") + # submit material request of type Purchase mr = webnotes.bean(copy=test_records[0]) mr.insert() @@ -19,11 +27,12 @@ class TestMaterialRequest(unittest.TestCase): # check if per complete is None self._test_expected(mr.doclist, [{"per_ordered": None}, {"ordered_qty": None}, {"ordered_qty": None}]) + self._test_requested_qty(54.0, 3.0) + # map a purchase order - po = webnotes.map_doclist([["Material Request", "Purchase Order"], + po_doclist = webnotes.map_doclist([["Material Request", "Purchase Order"], ["Material Request Item", "Purchase Order Item"]], mr.doc.name) - po = webnotes.bean(po) - po.doc.fields.update({ + po_doclist[0].fields.update({ "supplier": "_Test Supplier", "supplier_name": "_Test Supplier", "transaction_date": mr.doc.transaction_date, @@ -32,21 +41,35 @@ class TestMaterialRequest(unittest.TestCase): "conversion_rate": 1.0, "grand_total_import": 0.0 }) - po.doclist[1].qty = 27.0 - po.doclist[2].qty = 1.5 + po_doclist[1].qty = 27.0 + po_doclist[2].qty = 1.5 + + # check for stopped status of Material Request + po = webnotes.bean(copy=po_doclist) + po.insert() + mr.obj.update_status('Stopped') + self.assertRaises(webnotes.ValidationError, po.submit) + self.assertRaises(webnotes.ValidationError, po.cancel) + + mr.obj.update_status('Submitted') + po = webnotes.bean(copy=po_doclist) po.insert() po.submit() # check if per complete is as expected mr.load_from_db() self._test_expected(mr.doclist, [{"per_ordered": 50}, {"ordered_qty": 27.0}, {"ordered_qty": 1.5}]) + self._test_requested_qty(27.0, 1.5) po.cancel() # check if per complete is as expected mr.load_from_db() self._test_expected(mr.doclist, [{"per_ordered": 0}, {"ordered_qty": 0}, {"ordered_qty": 0}]) + self._test_requested_qty(54.0, 3.0) def test_completed_qty_for_transfer(self): + webnotes.conn.sql("""delete from `tabBin`""") + # submit material request of type Purchase mr = webnotes.bean(copy=test_records[0]) mr.doc.material_request_type = "Transfer" @@ -56,33 +79,51 @@ class TestMaterialRequest(unittest.TestCase): # check if per complete is None self._test_expected(mr.doclist, [{"per_ordered": None}, {"ordered_qty": None}, {"ordered_qty": None}]) + self._test_requested_qty(54.0, 3.0) + # map a stock entry - se = webnotes.map_doclist([["Material Request", "Stock Entry"], + se_doclist = webnotes.map_doclist([["Material Request", "Stock Entry"], ["Material Request Item", "Stock Entry Detail"]], mr.doc.name) - se = webnotes.bean(se) - se.doc.fields.update({ + se_doclist[0].fields.update({ "posting_date": "2013-03-01", "posting_time": "00:00" }) - se.doclist[1].fields.update({ + se_doclist[1].fields.update({ "qty": 27.0, "transfer_qty": 27.0, "s_warehouse": "_Test Warehouse 1", "incoming_rate": 1.0 }) - se.doclist[2].fields.update({ + se_doclist[2].fields.update({ "qty": 1.5, "transfer_qty": 1.5, "s_warehouse": "_Test Warehouse 1", "incoming_rate": 1.0 }) + + # check for stopped status of Material Request + se = webnotes.bean(copy=se_doclist) + se.insert() + mr.obj.update_status('Stopped') + self.assertRaises(webnotes.ValidationError, se.submit) + self.assertRaises(webnotes.ValidationError, se.cancel) + + mr.obj.update_status('Submitted') + se = webnotes.bean(copy=se_doclist) se.insert() se.submit() # check if per complete is as expected mr.load_from_db() self._test_expected(mr.doclist, [{"per_ordered": 50}, {"ordered_qty": 27.0}, {"ordered_qty": 1.5}]) - + self._test_requested_qty(27.0, 1.5) + + # check if per complete is as expected for Stock Entry cancelled + se.cancel() + mr.load_from_db() + self._test_expected(mr.doclist, [{"per_ordered": 0}, {"ordered_qty": 0}, {"ordered_qty": 0}]) + self._test_requested_qty(54.0, 3.0) + test_records = [ [ { diff --git a/stock/doctype/stock_entry/stock_entry.py b/stock/doctype/stock_entry/stock_entry.py index 342cd6b3ed..78d06ce910 100644 --- a/stock/doctype/stock_entry/stock_entry.py +++ b/stock/doctype/stock_entry/stock_entry.py @@ -63,7 +63,7 @@ class DocType(TransactionBase): self.update_stock_ledger(1) # update Production Order self.update_production_order(0) - + def validate_purpose(self): valid_purposes = ["Material Issue", "Material Receipt", "Material Transfer", "Manufacture/Repack", "Subcontract", "Sales Return", "Purchase Return"] diff --git a/stock/doctype/warehouse/warehouse.py b/stock/doctype/warehouse/warehouse.py index a7fc1853ce..dc8bfea0a9 100644 --- a/stock/doctype/warehouse/warehouse.py +++ b/stock/doctype/warehouse/warehouse.py @@ -207,3 +207,4 @@ class DocType: exists for this warehouse.""", raise_exception=1) else: sql("delete from `tabStock Ledger Entry` where warehouse = %s", self.doc.name) + From f41dd392860013820e3448a8b810326e9a86de48 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Feb 2013 16:57:54 +0530 Subject: [PATCH 009/982] added language --- accounts/doctype/account/locale/th-doc.json | 41 + .../bank_reconciliation/locale/th-doc.json | 13 + .../locale/th-doc.json | 13 + .../doctype/budget_control/locale/th-doc.json | 4 + .../doctype/budget_detail/locale/th-doc.json | 8 + .../budget_distribution/locale/th-doc.json | 10 + .../locale/th-doc.json | 6 + accounts/doctype/c_form/locale/th-doc.json | 22 + .../c_form_invoice_detail/locale/th-doc.json | 9 + .../doctype/cost_center/locale/th-doc.json | 22 + .../doctype/fiscal_year/locale/th-doc.json | 14 + .../doctype/fiscal_year/locale/th-py.json | 3 + .../doctype/gl_control/locale/th-doc.json | 4 + accounts/doctype/gl_entry/locale/th-doc.json | 29 + accounts/doctype/gl_entry/locale/th-py.json | 16 + .../journal_voucher/locale/th-doc.json | 57 + .../journal_voucher_detail/locale/th-doc.json | 16 + .../doctype/mis_control/locale/th-doc.json | 4 + .../mode_of_payment/locale/th-doc.json | 7 + .../locale/th-doc.json | 5 + .../locale/th-doc.json | 25 + .../locale/th-doc.json | 12 + .../period_closing_voucher/locale/th-doc.json | 14 + .../doctype/pos_setting/locale/th-doc.json | 20 + .../purchase_invoice/locale/th-doc.json | 84 + .../purchase_invoice/locale/th-py.json | 3 + .../locale/th-doc.json | 9 + .../purchase_invoice_item/locale/th-doc.json | 29 + .../locale/th-doc.json | 27 + .../locale/th-doc.json | 9 + .../doctype/sales_invoice/locale/th-doc.json | 143 ++ .../doctype/sales_invoice/locale/th-py.json | 5 + .../sales_invoice_advance/locale/th-doc.json | 9 + .../sales_invoice_item/locale/th-doc.json | 34 + .../locale/th-doc.json | 23 + .../locale/th-doc.json | 9 + .../trend_analyzer_control/locale/th-doc.json | 4 + accounts/locale/th-py.json | 4 + .../module_def/accounts/locale/th-doc.json | 17 + accounts/page/accounts_home/locale/th-js.json | 46 + .../purchase_common/locale/th-doc.json | 4 + .../doctype/purchase_common/locale/th-py.json | 3 + .../doctype/purchase_order/locale/th-doc.json | 92 + .../purchase_order_item/locale/th-doc.json | 37 + .../locale/th-doc.json | 13 + .../locale/th-doc.json | 16 + .../locale/_messages_doc.json | 41 + .../purchase_request/locale/th-doc.json | 41 + .../locale/_messages_doc.json | 19 + .../purchase_request_item/locale/th-doc.json | 19 + .../quality_inspection/locale/th-doc.json | 27 + .../locale/th-doc.json | 19 + buying/doctype/supplier/locale/th-doc.json | 27 + buying/doctype/supplier/locale/th-py.json | 5 + .../supplier_quotation/locale/th-doc.json | 78 + .../locale/th-doc.json | 29 + buying/module_def/buying/locale/th-doc.json | 5 + buying/page/buying_home/locale/th-js.json | 33 + controllers/locale/th-py.json | 6 + .../company_control/locale/th-doc.json | 4 + home/doctype/feed/locale/th-doc.json | 10 + home/doctype/home_control/locale/th-doc.json | 4 + home/module_def/home/locale/th-doc.json | 9 + hr/doctype/appraisal/locale/th-doc.json | 28 + hr/doctype/appraisal_goal/locale/th-doc.json | 9 + .../appraisal_template/locale/th-doc.json | 8 + .../appraisal_template/locale/th-py.json | 4 + .../locale/th-doc.json | 7 + hr/doctype/attendance/locale/th-doc.json | 20 + .../locale/th-doc.json | 24 + hr/doctype/branch/locale/th-doc.json | 5 + hr/doctype/deduction_type/locale/th-doc.json | 7 + hr/doctype/department/locale/th-doc.json | 7 + hr/doctype/designation/locale/th-doc.json | 5 + hr/doctype/earning_type/locale/th-doc.json | 11 + hr/doctype/employee/locale/th-doc.json | 117 + .../employee_education/locale/th-doc.json | 13 + .../locale/th-doc.json | 10 + .../locale/th-doc.json | 10 + .../employee_training/locale/th-doc.json | 9 + hr/doctype/employment_type/locale/th-doc.json | 5 + hr/doctype/expense_claim/locale/th-doc.json | 22 + .../expense_claim_detail/locale/th-doc.json | 9 + .../expense_claim_type/locale/th-doc.json | 5 + hr/doctype/grade/locale/th-doc.json | 5 + hr/doctype/holiday/locale/th-doc.json | 6 + .../locale/_messages_doc.json | 16 + .../holiday_block_list/locale/th-doc.json | 16 + .../locale/_messages_doc.json | 5 + .../locale/th-doc.json | 5 + .../locale/_messages_doc.json | 6 + .../locale/th-doc.json | 6 + hr/doctype/holiday_list/locale/th-doc.json | 19 + hr/doctype/job_applicant/locale/th-doc.json | 15 + hr/doctype/job_opening/locale/th-doc.json | 11 + .../leave_allocation/locale/th-doc.json | 17 + .../leave_application/locale/th-doc.json | 28 + .../leave_application/locale/th-py.json | 11 + .../leave_block_list/locale/th-doc.json | 16 + hr/doctype/leave_block_list/locale/th-py.json | 4 + .../leave_block_list_allow/locale/th-doc.json | 5 + .../leave_block_list_date/locale/th-doc.json | 6 + .../leave_control_panel/locale/th-doc.json | 20 + hr/doctype/leave_type/locale/th-doc.json | 10 + .../other_income_detail/locale/th-doc.json | 10 + hr/doctype/salary_manager/locale/th-doc.json | 33 + hr/doctype/salary_slip/locale/th-doc.json | 51 + .../salary_slip_deduction/locale/th-doc.json | 8 + .../salary_slip_earning/locale/th-doc.json | 8 + .../salary_structure/locale/th-doc.json | 27 + .../locale/th-doc.json | 7 + .../locale/th-doc.json | 7 + hr/module_def/hr/locale/th-doc.json | 7 + hr/page/hr_home/locale/th-js.json | 57 + manufacturing/doctype/bom/locale/th-doc.json | 29 + manufacturing/doctype/bom/locale/th-py.json | 9 + .../bom_explosion_item/locale/th-doc.json | 13 + .../doctype/bom_item/locale/th-doc.json | 14 + .../doctype/bom_operation/locale/th-doc.json | 10 + .../bom_replace_tool/locale/th-doc.json | 10 + .../bom_replace_tool/locale/th-py.json | 3 + .../production_order/locale/th-doc.json | 30 + .../production_plan_item/locale/th-doc.json | 11 + .../locale/th-doc.json | 8 + .../locale/th-doc.json | 30 + .../update_delivery_date/locale/th-doc.json | 13 + .../doctype/workstation/locale/th-doc.json | 19 + .../manufacturing/locale/th-doc.json | 4 + .../page/manufacturing_home/locale/th-js.json | 18 + .../bom_replace_tool/locale/th-doc.json | 10 + .../doctype/activity_type/locale/th-doc.json | 4 + projects/doctype/project/locale/th-doc.json | 53 + .../project_activity/locale/th-doc.json | 35 + .../locale/th-doc.json | 7 + .../project_control/locale/th-doc.json | 4 + .../project_milestone/locale/th-doc.json | 9 + projects/doctype/task/locale/th-doc.json | 34 + projects/doctype/timesheet/locale/th-doc.json | 14 + .../timesheet_detail/locale/th-doc.json | 13 + .../module_def/projects/locale/th-doc.json | 4 + projects/page/projects_home/locale/th-js.json | 15 + public/js/locale/_messages_js.json | 6 +- public/js/locale/th-js.json | 317 +++ selling/doctype/campaign/locale/th-doc.json | 8 + .../communication_log/locale/th-doc.json | 13 + selling/doctype/customer/locale/th-doc.json | 40 + selling/doctype/customer/locale/th-py.json | 3 + .../doctype/industry_type/locale/th-doc.json | 5 + .../installation_note/locale/th-doc.json | 34 + .../installation_note_item/locale/th-doc.json | 12 + selling/doctype/lead/locale/th-doc.json | 81 + selling/doctype/lead/locale/th-py.json | 3 + .../doctype/opportunity/locale/th-doc.json | 67 + .../opportunity_item/locale/th-doc.json | 12 + selling/doctype/quotation/locale/th-doc.json | 96 + .../doctype/quotation_item/locale/th-doc.json | 23 + .../locale/th-doc.json | 13 + .../doctype/sales_common/locale/th-doc.json | 4 + .../doctype/sales_common/locale/th-py.json | 3 + .../doctype/sales_order/locale/th-doc.json | 124 + .../sales_order_item/locale/th-doc.json | 32 + selling/doctype/sales_team/locale/th-doc.json | 11 + .../shipping_address/locale/th-doc.json | 13 + selling/doctype/sms_center/locale/th-doc.json | 21 + selling/module_def/selling/locale/th-doc.json | 11 + selling/page/selling_home/locale/th-js.json | 52 + .../authorization_control/locale/th-doc.json | 4 + .../authorization_rule/locale/th-doc.json | 30 + setup/doctype/brand/locale/th-doc.json | 6 + setup/doctype/company/locale/th-doc.json | 32 + .../contact_control/locale/th-doc.json | 7 + setup/doctype/country/locale/th-doc.json | 7 + setup/doctype/currency/locale/th-doc.json | 22 + .../doctype/customer_group/locale/th-doc.json | 16 + setup/doctype/email_digest/locale/th-doc.json | 49 + setup/doctype/email_digest/locale/th-py.json | 3 + .../doctype/email_settings/locale/th-doc.json | 34 + .../doctype/features_setup/locale/th-doc.json | 48 + .../global_defaults/locale/_messages_doc.json | 2 + .../global_defaults/locale/th-doc.json | 87 + setup/doctype/item_group/locale/th-doc.json | 23 + .../jobs_email_settings/locale/th-doc.json | 16 + .../jobs_email_settings/locale/th-js.json | 4 + .../jobs_email_settings/locale/th-py.json | 3 + .../doctype/market_segment/locale/th-doc.json | 7 + .../doctype/naming_series/locale/th-doc.json | 18 + .../naming_series_options/locale/th-doc.json | 6 + .../notification_control/locale/th-doc.json | 31 + .../permission_control/locale/th-doc.json | 4 + setup/doctype/price_list/locale/th-doc.json | 8 + .../doctype/print_heading/locale/th-doc.json | 6 + .../quotation_lost_reason/locale/th-doc.json | 5 + .../sales_browser_control/locale/th-doc.json | 4 + .../sales_email_settings/locale/th-doc.json | 15 + .../sales_email_settings/locale/th-js.json | 4 + .../sales_email_settings/locale/th-py.json | 3 + .../doctype/sales_partner/locale/th-doc.json | 27 + setup/doctype/sales_person/locale/th-doc.json | 21 + .../doctype/series_detail/locale/th-doc.json | 6 + .../doctype/setup_control/locale/th-doc.json | 4 + .../doctype/sms_parameter/locale/th-doc.json | 6 + setup/doctype/sms_settings/locale/th-doc.json | 13 + setup/doctype/state/locale/th-doc.json | 6 + .../doctype/supplier_type/locale/th-doc.json | 5 + .../doctype/target_detail/locale/th-doc.json | 8 + .../terms_and_conditions/locale/th-doc.json | 7 + setup/doctype/territory/locale/th-doc.json | 22 + setup/doctype/uom/locale/th-doc.json | 7 + .../doctype/warehouse_type/locale/th-doc.json | 5 + .../workflow_action_detail/locale/th-doc.json | 6 + .../workflow_engine/locale/th-doc.json | 4 + .../doctype/workflow_rule/locale/th-doc.json | 23 + .../workflow_rule_detail/locale/th-doc.json | 19 + setup/locale/th-py.json | 3 + setup/module_def/setup/locale/th-doc.json | 20 + setup/page/setup/locale/th-js.json | 61 + startup/__init__.py | 3 +- stock/doctype/batch/locale/th-doc.json | 11 + stock/doctype/bin/locale/_messages_js.json | 1 + stock/doctype/bin/locale/_messages_py.json | 4 + stock/doctype/bin/locale/th-doc.json | 18 + stock/doctype/bin/locale/th-py.json | 4 + .../doctype/delivery_note/locale/th-doc.json | 122 + .../delivery_note_item/locale/th-doc.json | 33 + .../locale/th-doc.json | 18 + .../doctype/featured_item/locale/th-doc.json | 6 + stock/doctype/item/locale/_messages_doc.json | 1 + stock/doctype/item/locale/th-doc.json | 117 + .../item_customer_detail/locale/th-doc.json | 7 + stock/doctype/item_price/locale/th-doc.json | 11 + .../locale/th-doc.json | 6 + stock/doctype/item_reorder/locale/th-doc.json | 10 + .../doctype/item_supplier/locale/th-doc.json | 6 + stock/doctype/item_tax/locale/th-doc.json | 6 + .../locale/th-doc.json | 7 + .../landed_cost_item/locale/th-doc.json | 7 + .../locale/th-doc.json | 6 + .../landed_cost_wizard/locale/th-doc.json | 12 + .../locale/_messages_doc.json | 23 +- .../material_request/locale/th-doc.json | 45 + .../locale/_messages_doc.json | 4 +- .../material_request_item/locale/th-doc.json | 19 + stock/doctype/packing_slip/locale/th-doc.json | 27 + .../packing_slip_item/locale/th-doc.json | 11 + .../purchase_receipt/locale/th-doc.json | 104 + .../purchase_receipt_item/locale/th-doc.json | 42 + .../locale/th-doc.json | 21 + stock/doctype/sales_bom/locale/th-doc.json | 11 + .../doctype/sales_bom_item/locale/th-doc.json | 9 + stock/doctype/serial_no/locale/th-doc.json | 59 + stock/doctype/stock_entry/locale/th-doc.json | 48 + stock/doctype/stock_entry/locale/th-py.json | 24 + .../locale/_messages_doc.json | 3 + .../stock_entry_detail/locale/th-doc.json | 23 + stock/doctype/stock_ledger/locale/th-doc.json | 4 + .../stock_ledger_entry/locale/th-doc.json | 27 + .../stock_ledger_entry/locale/th-py.json | 3 + .../stock_reconciliation/locale/th-doc.json | 12 + .../stock_reconciliation/locale/th-py.json | 10 + .../locale/th-doc.json | 9 + .../uom_conversion_detail/locale/th-doc.json | 6 + .../valuation_control/locale/th-doc.json | 4 + stock/doctype/warehouse/locale/th-doc.json | 25 + .../doctype/warehouse_user/locale/th-doc.json | 5 + stock/locale/th-py.json | 7 + stock/module_def/stock/locale/th-doc.json | 23 + .../page/stock_home/locale/_messages_js.json | 2 + stock/page/stock_home/locale/th-js.json | 60 + .../doctype/customer_issue/locale/th-doc.json | 50 + .../maintenance_schedule/locale/th-doc.json | 30 + .../locale/th-doc.json | 10 + .../locale/th-doc.json | 20 + .../maintenance_visit/locale/th-doc.json | 38 + .../locale/th-doc.json | 13 + support/doctype/newsletter/locale/th-doc.json | 32 + support/doctype/newsletter/locale/th-py.json | 4 + .../doctype/support_ticket/locale/th-doc.json | 28 + support/module_def/support/locale/th-doc.json | 5 + support/page/support_home/locale/th-js.json | 23 + translations/th.csv | 2009 ++++++++++++++++- utilities/doctype/address/locale/th-doc.json | 28 + utilities/doctype/answer/locale/th-doc.json | 7 + utilities/doctype/contact/locale/th-doc.json | 26 + .../doctype/gl_mapper/locale/th-doc.json | 6 + .../gl_mapper_detail/locale/th-doc.json | 24 + .../profile_control/locale/th-doc.json | 4 + utilities/doctype/question/locale/th-doc.json | 9 + .../doctype/rename_tool/locale/th-doc.json | 17 + .../doctype/sms_control/locale/th-doc.json | 4 + utilities/doctype/sms_log/locale/th-doc.json | 10 + .../doctype/sms_receiver/locale/th-doc.json | 7 + .../doctype/trash_control/locale/th-doc.json | 4 + utilities/locale/th-py.json | 3 + .../module_def/utilities/locale/th-doc.json | 10 + website/css/website.css | 44 +- .../about_us_settings/locale/th-doc.json | 16 + .../about_us_team_member/locale/th-doc.json | 5 + website/doctype/blog/blog.txt | 11 +- website/doctype/blog/locale/th-doc.json | 10 + .../blog_subscriber/locale/th-doc.json | 4 + .../company_history/locale/th-doc.json | 6 + .../contact_us_settings.txt | 55 +- .../contact_us_settings/locale/th-doc.json | 12 + .../cross_list_item_group/locale/th-doc.json | 6 + .../doctype/product_group/locale/th-doc.json | 6 + .../product_settings/locale/th-doc.json | 13 + .../products_settings/locale/th-doc.json | 6 + .../doctype/related_page/locale/th-doc.json | 5 + .../doctype/style_settings/locale/th-doc.json | 31 + .../doctype/top_bar_item/locale/th-doc.json | 9 + website/doctype/web_page/locale/th-doc.json | 28 + .../website_item_group/locale/th-doc.json | 6 + .../locale/th-doc.json | 13 + .../doctype/website_script/locale/th-doc.json | 6 + .../locale/_messages_doc.json | 9 + .../website_settings/locale/th-doc.json | 41 + .../website_slideshow/locale/th-doc.json | 10 + .../website_slideshow_item/locale/th-doc.json | 8 + website/module_def/website/locale/th-doc.json | 13 + website/page/website_home/locale/th-js.json | 24 + website/templates/pages/about.html | 9 +- website/templates/pages/contact.html | 11 +- 322 files changed, 8219 insertions(+), 56 deletions(-) create mode 100644 accounts/doctype/account/locale/th-doc.json create mode 100644 accounts/doctype/bank_reconciliation/locale/th-doc.json create mode 100644 accounts/doctype/bank_reconciliation_detail/locale/th-doc.json create mode 100644 accounts/doctype/budget_control/locale/th-doc.json create mode 100644 accounts/doctype/budget_detail/locale/th-doc.json create mode 100644 accounts/doctype/budget_distribution/locale/th-doc.json create mode 100644 accounts/doctype/budget_distribution_detail/locale/th-doc.json create mode 100644 accounts/doctype/c_form/locale/th-doc.json create mode 100644 accounts/doctype/c_form_invoice_detail/locale/th-doc.json create mode 100644 accounts/doctype/cost_center/locale/th-doc.json create mode 100644 accounts/doctype/fiscal_year/locale/th-doc.json create mode 100644 accounts/doctype/fiscal_year/locale/th-py.json create mode 100644 accounts/doctype/gl_control/locale/th-doc.json create mode 100644 accounts/doctype/gl_entry/locale/th-doc.json create mode 100644 accounts/doctype/gl_entry/locale/th-py.json create mode 100644 accounts/doctype/journal_voucher/locale/th-doc.json create mode 100644 accounts/doctype/journal_voucher_detail/locale/th-doc.json create mode 100644 accounts/doctype/mis_control/locale/th-doc.json create mode 100644 accounts/doctype/mode_of_payment/locale/th-doc.json create mode 100644 accounts/doctype/multi_ledger_report_detail/locale/th-doc.json create mode 100644 accounts/doctype/payment_to_invoice_matching_tool/locale/th-doc.json create mode 100644 accounts/doctype/payment_to_invoice_matching_tool_detail/locale/th-doc.json create mode 100644 accounts/doctype/period_closing_voucher/locale/th-doc.json create mode 100644 accounts/doctype/pos_setting/locale/th-doc.json create mode 100644 accounts/doctype/purchase_invoice/locale/th-doc.json create mode 100644 accounts/doctype/purchase_invoice/locale/th-py.json create mode 100644 accounts/doctype/purchase_invoice_advance/locale/th-doc.json create mode 100644 accounts/doctype/purchase_invoice_item/locale/th-doc.json create mode 100644 accounts/doctype/purchase_taxes_and_charges/locale/th-doc.json create mode 100644 accounts/doctype/purchase_taxes_and_charges_master/locale/th-doc.json create mode 100644 accounts/doctype/sales_invoice/locale/th-doc.json create mode 100644 accounts/doctype/sales_invoice/locale/th-py.json create mode 100644 accounts/doctype/sales_invoice_advance/locale/th-doc.json create mode 100644 accounts/doctype/sales_invoice_item/locale/th-doc.json create mode 100644 accounts/doctype/sales_taxes_and_charges/locale/th-doc.json create mode 100644 accounts/doctype/sales_taxes_and_charges_master/locale/th-doc.json create mode 100644 accounts/doctype/trend_analyzer_control/locale/th-doc.json create mode 100644 accounts/locale/th-py.json create mode 100644 accounts/module_def/accounts/locale/th-doc.json create mode 100644 accounts/page/accounts_home/locale/th-js.json create mode 100644 buying/doctype/purchase_common/locale/th-doc.json create mode 100644 buying/doctype/purchase_common/locale/th-py.json create mode 100644 buying/doctype/purchase_order/locale/th-doc.json create mode 100644 buying/doctype/purchase_order_item/locale/th-doc.json create mode 100644 buying/doctype/purchase_order_item_supplied/locale/th-doc.json create mode 100644 buying/doctype/purchase_receipt_item_supplied/locale/th-doc.json create mode 100644 buying/doctype/purchase_request/locale/_messages_doc.json create mode 100644 buying/doctype/purchase_request/locale/th-doc.json create mode 100644 buying/doctype/purchase_request_item/locale/_messages_doc.json create mode 100644 buying/doctype/purchase_request_item/locale/th-doc.json create mode 100644 buying/doctype/quality_inspection/locale/th-doc.json create mode 100644 buying/doctype/quality_inspection_reading/locale/th-doc.json create mode 100644 buying/doctype/supplier/locale/th-doc.json create mode 100644 buying/doctype/supplier/locale/th-py.json create mode 100644 buying/doctype/supplier_quotation/locale/th-doc.json create mode 100644 buying/doctype/supplier_quotation_item/locale/th-doc.json create mode 100644 buying/module_def/buying/locale/th-doc.json create mode 100644 buying/page/buying_home/locale/th-js.json create mode 100644 controllers/locale/th-py.json create mode 100644 home/doctype/company_control/locale/th-doc.json create mode 100644 home/doctype/feed/locale/th-doc.json create mode 100644 home/doctype/home_control/locale/th-doc.json create mode 100644 home/module_def/home/locale/th-doc.json create mode 100644 hr/doctype/appraisal/locale/th-doc.json create mode 100644 hr/doctype/appraisal_goal/locale/th-doc.json create mode 100644 hr/doctype/appraisal_template/locale/th-doc.json create mode 100644 hr/doctype/appraisal_template/locale/th-py.json create mode 100644 hr/doctype/appraisal_template_goal/locale/th-doc.json create mode 100644 hr/doctype/attendance/locale/th-doc.json create mode 100644 hr/doctype/attendance_control_panel/locale/th-doc.json create mode 100644 hr/doctype/branch/locale/th-doc.json create mode 100644 hr/doctype/deduction_type/locale/th-doc.json create mode 100644 hr/doctype/department/locale/th-doc.json create mode 100644 hr/doctype/designation/locale/th-doc.json create mode 100644 hr/doctype/earning_type/locale/th-doc.json create mode 100644 hr/doctype/employee/locale/th-doc.json create mode 100644 hr/doctype/employee_education/locale/th-doc.json create mode 100644 hr/doctype/employee_external_work_history/locale/th-doc.json create mode 100644 hr/doctype/employee_internal_work_history/locale/th-doc.json create mode 100644 hr/doctype/employee_training/locale/th-doc.json create mode 100644 hr/doctype/employment_type/locale/th-doc.json create mode 100644 hr/doctype/expense_claim/locale/th-doc.json create mode 100644 hr/doctype/expense_claim_detail/locale/th-doc.json create mode 100644 hr/doctype/expense_claim_type/locale/th-doc.json create mode 100644 hr/doctype/grade/locale/th-doc.json create mode 100644 hr/doctype/holiday/locale/th-doc.json create mode 100644 hr/doctype/holiday_block_list/locale/_messages_doc.json create mode 100644 hr/doctype/holiday_block_list/locale/th-doc.json create mode 100644 hr/doctype/holiday_block_list_allow/locale/_messages_doc.json create mode 100644 hr/doctype/holiday_block_list_allow/locale/th-doc.json create mode 100644 hr/doctype/holiday_block_list_date/locale/_messages_doc.json create mode 100644 hr/doctype/holiday_block_list_date/locale/th-doc.json create mode 100644 hr/doctype/holiday_list/locale/th-doc.json create mode 100644 hr/doctype/job_applicant/locale/th-doc.json create mode 100644 hr/doctype/job_opening/locale/th-doc.json create mode 100644 hr/doctype/leave_allocation/locale/th-doc.json create mode 100644 hr/doctype/leave_application/locale/th-doc.json create mode 100644 hr/doctype/leave_application/locale/th-py.json create mode 100644 hr/doctype/leave_block_list/locale/th-doc.json create mode 100644 hr/doctype/leave_block_list/locale/th-py.json create mode 100644 hr/doctype/leave_block_list_allow/locale/th-doc.json create mode 100644 hr/doctype/leave_block_list_date/locale/th-doc.json create mode 100644 hr/doctype/leave_control_panel/locale/th-doc.json create mode 100644 hr/doctype/leave_type/locale/th-doc.json create mode 100644 hr/doctype/other_income_detail/locale/th-doc.json create mode 100644 hr/doctype/salary_manager/locale/th-doc.json create mode 100644 hr/doctype/salary_slip/locale/th-doc.json create mode 100644 hr/doctype/salary_slip_deduction/locale/th-doc.json create mode 100644 hr/doctype/salary_slip_earning/locale/th-doc.json create mode 100644 hr/doctype/salary_structure/locale/th-doc.json create mode 100644 hr/doctype/salary_structure_deduction/locale/th-doc.json create mode 100644 hr/doctype/salary_structure_earning/locale/th-doc.json create mode 100644 hr/module_def/hr/locale/th-doc.json create mode 100644 hr/page/hr_home/locale/th-js.json create mode 100644 manufacturing/doctype/bom/locale/th-doc.json create mode 100644 manufacturing/doctype/bom/locale/th-py.json create mode 100644 manufacturing/doctype/bom_explosion_item/locale/th-doc.json create mode 100644 manufacturing/doctype/bom_item/locale/th-doc.json create mode 100644 manufacturing/doctype/bom_operation/locale/th-doc.json create mode 100644 manufacturing/doctype/bom_replace_tool/locale/th-doc.json create mode 100644 manufacturing/doctype/bom_replace_tool/locale/th-py.json create mode 100644 manufacturing/doctype/production_order/locale/th-doc.json create mode 100644 manufacturing/doctype/production_plan_item/locale/th-doc.json create mode 100644 manufacturing/doctype/production_plan_sales_order/locale/th-doc.json create mode 100644 manufacturing/doctype/production_planning_tool/locale/th-doc.json create mode 100644 manufacturing/doctype/update_delivery_date/locale/th-doc.json create mode 100644 manufacturing/doctype/workstation/locale/th-doc.json create mode 100644 manufacturing/module_def/manufacturing/locale/th-doc.json create mode 100644 manufacturing/page/manufacturing_home/locale/th-js.json create mode 100644 production/doctype/bom_replace_tool/locale/th-doc.json create mode 100644 projects/doctype/activity_type/locale/th-doc.json create mode 100644 projects/doctype/project/locale/th-doc.json create mode 100644 projects/doctype/project_activity/locale/th-doc.json create mode 100644 projects/doctype/project_activity_update/locale/th-doc.json create mode 100644 projects/doctype/project_control/locale/th-doc.json create mode 100644 projects/doctype/project_milestone/locale/th-doc.json create mode 100644 projects/doctype/task/locale/th-doc.json create mode 100644 projects/doctype/timesheet/locale/th-doc.json create mode 100644 projects/doctype/timesheet_detail/locale/th-doc.json create mode 100644 projects/module_def/projects/locale/th-doc.json create mode 100644 projects/page/projects_home/locale/th-js.json create mode 100644 public/js/locale/th-js.json create mode 100644 selling/doctype/campaign/locale/th-doc.json create mode 100644 selling/doctype/communication_log/locale/th-doc.json create mode 100644 selling/doctype/customer/locale/th-doc.json create mode 100644 selling/doctype/customer/locale/th-py.json create mode 100644 selling/doctype/industry_type/locale/th-doc.json create mode 100644 selling/doctype/installation_note/locale/th-doc.json create mode 100644 selling/doctype/installation_note_item/locale/th-doc.json create mode 100644 selling/doctype/lead/locale/th-doc.json create mode 100644 selling/doctype/lead/locale/th-py.json create mode 100644 selling/doctype/opportunity/locale/th-doc.json create mode 100644 selling/doctype/opportunity_item/locale/th-doc.json create mode 100644 selling/doctype/quotation/locale/th-doc.json create mode 100644 selling/doctype/quotation_item/locale/th-doc.json create mode 100644 selling/doctype/sales_and_purchase_return_item/locale/th-doc.json create mode 100644 selling/doctype/sales_common/locale/th-doc.json create mode 100644 selling/doctype/sales_common/locale/th-py.json create mode 100644 selling/doctype/sales_order/locale/th-doc.json create mode 100644 selling/doctype/sales_order_item/locale/th-doc.json create mode 100644 selling/doctype/sales_team/locale/th-doc.json create mode 100644 selling/doctype/shipping_address/locale/th-doc.json create mode 100644 selling/doctype/sms_center/locale/th-doc.json create mode 100644 selling/module_def/selling/locale/th-doc.json create mode 100644 selling/page/selling_home/locale/th-js.json create mode 100644 setup/doctype/authorization_control/locale/th-doc.json create mode 100644 setup/doctype/authorization_rule/locale/th-doc.json create mode 100644 setup/doctype/brand/locale/th-doc.json create mode 100644 setup/doctype/company/locale/th-doc.json create mode 100644 setup/doctype/contact_control/locale/th-doc.json create mode 100644 setup/doctype/country/locale/th-doc.json create mode 100644 setup/doctype/currency/locale/th-doc.json create mode 100644 setup/doctype/customer_group/locale/th-doc.json create mode 100644 setup/doctype/email_digest/locale/th-doc.json create mode 100644 setup/doctype/email_digest/locale/th-py.json create mode 100644 setup/doctype/email_settings/locale/th-doc.json create mode 100644 setup/doctype/features_setup/locale/th-doc.json create mode 100644 setup/doctype/global_defaults/locale/th-doc.json create mode 100644 setup/doctype/item_group/locale/th-doc.json create mode 100644 setup/doctype/jobs_email_settings/locale/th-doc.json create mode 100644 setup/doctype/jobs_email_settings/locale/th-js.json create mode 100644 setup/doctype/jobs_email_settings/locale/th-py.json create mode 100644 setup/doctype/market_segment/locale/th-doc.json create mode 100644 setup/doctype/naming_series/locale/th-doc.json create mode 100644 setup/doctype/naming_series_options/locale/th-doc.json create mode 100644 setup/doctype/notification_control/locale/th-doc.json create mode 100644 setup/doctype/permission_control/locale/th-doc.json create mode 100644 setup/doctype/price_list/locale/th-doc.json create mode 100644 setup/doctype/print_heading/locale/th-doc.json create mode 100644 setup/doctype/quotation_lost_reason/locale/th-doc.json create mode 100644 setup/doctype/sales_browser_control/locale/th-doc.json create mode 100644 setup/doctype/sales_email_settings/locale/th-doc.json create mode 100644 setup/doctype/sales_email_settings/locale/th-js.json create mode 100644 setup/doctype/sales_email_settings/locale/th-py.json create mode 100644 setup/doctype/sales_partner/locale/th-doc.json create mode 100644 setup/doctype/sales_person/locale/th-doc.json create mode 100644 setup/doctype/series_detail/locale/th-doc.json create mode 100644 setup/doctype/setup_control/locale/th-doc.json create mode 100644 setup/doctype/sms_parameter/locale/th-doc.json create mode 100644 setup/doctype/sms_settings/locale/th-doc.json create mode 100644 setup/doctype/state/locale/th-doc.json create mode 100644 setup/doctype/supplier_type/locale/th-doc.json create mode 100644 setup/doctype/target_detail/locale/th-doc.json create mode 100644 setup/doctype/terms_and_conditions/locale/th-doc.json create mode 100644 setup/doctype/territory/locale/th-doc.json create mode 100644 setup/doctype/uom/locale/th-doc.json create mode 100644 setup/doctype/warehouse_type/locale/th-doc.json create mode 100644 setup/doctype/workflow_action_detail/locale/th-doc.json create mode 100644 setup/doctype/workflow_engine/locale/th-doc.json create mode 100644 setup/doctype/workflow_rule/locale/th-doc.json create mode 100644 setup/doctype/workflow_rule_detail/locale/th-doc.json create mode 100644 setup/locale/th-py.json create mode 100644 setup/module_def/setup/locale/th-doc.json create mode 100644 setup/page/setup/locale/th-js.json create mode 100644 stock/doctype/batch/locale/th-doc.json create mode 100644 stock/doctype/bin/locale/_messages_js.json create mode 100644 stock/doctype/bin/locale/_messages_py.json create mode 100644 stock/doctype/bin/locale/th-doc.json create mode 100644 stock/doctype/bin/locale/th-py.json create mode 100644 stock/doctype/delivery_note/locale/th-doc.json create mode 100644 stock/doctype/delivery_note_item/locale/th-doc.json create mode 100644 stock/doctype/delivery_note_packing_item/locale/th-doc.json create mode 100644 stock/doctype/featured_item/locale/th-doc.json create mode 100644 stock/doctype/item/locale/th-doc.json create mode 100644 stock/doctype/item_customer_detail/locale/th-doc.json create mode 100644 stock/doctype/item_price/locale/th-doc.json create mode 100644 stock/doctype/item_quality_inspection_parameter/locale/th-doc.json create mode 100644 stock/doctype/item_reorder/locale/th-doc.json create mode 100644 stock/doctype/item_supplier/locale/th-doc.json create mode 100644 stock/doctype/item_tax/locale/th-doc.json create mode 100644 stock/doctype/item_website_specification/locale/th-doc.json create mode 100644 stock/doctype/landed_cost_item/locale/th-doc.json create mode 100644 stock/doctype/landed_cost_purchase_receipt/locale/th-doc.json create mode 100644 stock/doctype/landed_cost_wizard/locale/th-doc.json create mode 100644 stock/doctype/material_request/locale/th-doc.json create mode 100644 stock/doctype/material_request_item/locale/th-doc.json create mode 100644 stock/doctype/packing_slip/locale/th-doc.json create mode 100644 stock/doctype/packing_slip_item/locale/th-doc.json create mode 100644 stock/doctype/purchase_receipt/locale/th-doc.json create mode 100644 stock/doctype/purchase_receipt_item/locale/th-doc.json create mode 100644 stock/doctype/sales_and_purchase_return_tool/locale/th-doc.json create mode 100644 stock/doctype/sales_bom/locale/th-doc.json create mode 100644 stock/doctype/sales_bom_item/locale/th-doc.json create mode 100644 stock/doctype/serial_no/locale/th-doc.json create mode 100644 stock/doctype/stock_entry/locale/th-doc.json create mode 100644 stock/doctype/stock_entry/locale/th-py.json create mode 100644 stock/doctype/stock_entry_detail/locale/th-doc.json create mode 100644 stock/doctype/stock_ledger/locale/th-doc.json create mode 100644 stock/doctype/stock_ledger_entry/locale/th-doc.json create mode 100644 stock/doctype/stock_ledger_entry/locale/th-py.json create mode 100644 stock/doctype/stock_reconciliation/locale/th-doc.json create mode 100644 stock/doctype/stock_reconciliation/locale/th-py.json create mode 100644 stock/doctype/stock_uom_replace_utility/locale/th-doc.json create mode 100644 stock/doctype/uom_conversion_detail/locale/th-doc.json create mode 100644 stock/doctype/valuation_control/locale/th-doc.json create mode 100644 stock/doctype/warehouse/locale/th-doc.json create mode 100644 stock/doctype/warehouse_user/locale/th-doc.json create mode 100644 stock/locale/th-py.json create mode 100644 stock/module_def/stock/locale/th-doc.json create mode 100644 stock/page/stock_home/locale/th-js.json create mode 100644 support/doctype/customer_issue/locale/th-doc.json create mode 100644 support/doctype/maintenance_schedule/locale/th-doc.json create mode 100644 support/doctype/maintenance_schedule_detail/locale/th-doc.json create mode 100644 support/doctype/maintenance_schedule_item/locale/th-doc.json create mode 100644 support/doctype/maintenance_visit/locale/th-doc.json create mode 100644 support/doctype/maintenance_visit_purpose/locale/th-doc.json create mode 100644 support/doctype/newsletter/locale/th-doc.json create mode 100644 support/doctype/newsletter/locale/th-py.json create mode 100644 support/doctype/support_ticket/locale/th-doc.json create mode 100644 support/module_def/support/locale/th-doc.json create mode 100644 support/page/support_home/locale/th-js.json create mode 100644 utilities/doctype/address/locale/th-doc.json create mode 100644 utilities/doctype/answer/locale/th-doc.json create mode 100644 utilities/doctype/contact/locale/th-doc.json create mode 100644 utilities/doctype/gl_mapper/locale/th-doc.json create mode 100644 utilities/doctype/gl_mapper_detail/locale/th-doc.json create mode 100644 utilities/doctype/profile_control/locale/th-doc.json create mode 100644 utilities/doctype/question/locale/th-doc.json create mode 100644 utilities/doctype/rename_tool/locale/th-doc.json create mode 100644 utilities/doctype/sms_control/locale/th-doc.json create mode 100644 utilities/doctype/sms_log/locale/th-doc.json create mode 100644 utilities/doctype/sms_receiver/locale/th-doc.json create mode 100644 utilities/doctype/trash_control/locale/th-doc.json create mode 100644 utilities/locale/th-py.json create mode 100644 utilities/module_def/utilities/locale/th-doc.json create mode 100644 website/doctype/about_us_settings/locale/th-doc.json create mode 100644 website/doctype/about_us_team_member/locale/th-doc.json create mode 100644 website/doctype/blog/locale/th-doc.json create mode 100644 website/doctype/blog_subscriber/locale/th-doc.json create mode 100644 website/doctype/company_history/locale/th-doc.json create mode 100644 website/doctype/contact_us_settings/locale/th-doc.json create mode 100644 website/doctype/cross_list_item_group/locale/th-doc.json create mode 100644 website/doctype/product_group/locale/th-doc.json create mode 100644 website/doctype/product_settings/locale/th-doc.json create mode 100644 website/doctype/products_settings/locale/th-doc.json create mode 100644 website/doctype/related_page/locale/th-doc.json create mode 100644 website/doctype/style_settings/locale/th-doc.json create mode 100644 website/doctype/top_bar_item/locale/th-doc.json create mode 100644 website/doctype/web_page/locale/th-doc.json create mode 100644 website/doctype/website_item_group/locale/th-doc.json create mode 100644 website/doctype/website_product_category/locale/th-doc.json create mode 100644 website/doctype/website_script/locale/th-doc.json create mode 100644 website/doctype/website_settings/locale/th-doc.json create mode 100644 website/doctype/website_slideshow/locale/th-doc.json create mode 100644 website/doctype/website_slideshow_item/locale/th-doc.json create mode 100644 website/module_def/website/locale/th-doc.json create mode 100644 website/page/website_home/locale/th-js.json diff --git a/accounts/doctype/account/locale/th-doc.json b/accounts/doctype/account/locale/th-doc.json new file mode 100644 index 0000000000..0a9e444c1f --- /dev/null +++ b/accounts/doctype/account/locale/th-doc.json @@ -0,0 +1,41 @@ +{ + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Account Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Account Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Account Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Allow Negative Balance": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e15\u0e34\u0e14\u0e25\u0e1a", + "Bank or Cash": "\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14", + "Chargeable": "\u0e23\u0e31\u0e1a\u0e1c\u0e34\u0e14\u0e0a\u0e2d\u0e1a", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Credit Days": "\u0e27\u0e31\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Credit Limit": "\u0e27\u0e07\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e34\u0e19\u0e40\u0e0a\u0e37\u0e48\u0e2d", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Debit or Credit": "\u0e40\u0e14\u0e1a\u0e34\u0e15\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Expense Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Fixed Asset Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e2a\u0e34\u0e19\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e4c\u0e16\u0e32\u0e27\u0e23", + "Frozen": "\u0e41\u0e0a\u0e48\u0e41\u0e02\u0e47\u0e07", + "Group": "\u0e01\u0e25\u0e38\u0e48\u0e21", + "Group or Ledger": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Heads (or groups) against which Accounting Entries are made and balances are maintained.": "\u0e2b\u0e31\u0e27 (\u0e2b\u0e23\u0e37\u0e2d\u0e01\u0e25\u0e38\u0e48\u0e21) \u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e08\u0e30\u0e17\u0e33\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e25\u0e30\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e08\u0e30\u0e23\u0e31\u0e01\u0e29\u0e32", + "If the account is frozen, entries are allowed for the \"Account Manager\" only.": "\u0e2b\u0e32\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e16\u0e39\u0e01\u0e41\u0e0a\u0e48\u0e41\u0e02\u0e47\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49 "Account Manager" \u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19", + "If this Account represents a Customer, Supplier or Employee, set it here.": "\u0e2b\u0e32\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e2b\u0e23\u0e37\u0e2d\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "Income Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Is PL Account": "\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e31\u0e0d\u200b\u200b\u0e0a\u0e35 PL", + "Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Level": "\u0e0a\u0e31\u0e49\u0e19", + "Lft": "lft", + "Master Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17", + "Master Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2b\u0e25\u0e31\u0e01", + "No": "\u0e44\u0e21\u0e48", + "Old Parent": "\u0e1c\u0e39\u0e49\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07\u0e40\u0e01\u0e48\u0e32", + "Parent Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e1c\u0e39\u0e49\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Rate at which this tax is applied": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e43\u0e0a\u0e49", + "Rgt": "RGT", + "Setting Account Type helps in selecting this Account in transactions.": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e19\u0e35\u0e49\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Tax": "\u0e20\u0e32\u0e29\u0e35", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/accounts/doctype/bank_reconciliation/locale/th-doc.json b/accounts/doctype/bank_reconciliation/locale/th-doc.json new file mode 100644 index 0000000000..2ce0940993 --- /dev/null +++ b/accounts/doctype/bank_reconciliation/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Bank Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e40\u0e07\u0e34\u0e19\u0e1d\u0e32\u0e01", + "Bank Reconciliation": "\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Entries": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c", + "From Date": "\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Get Non Reconciled Entries": "\u0e23\u0e31\u0e1a\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e04\u0e37\u0e19\u0e14\u0e35\u0e44\u0e21\u0e48", + "Select account head of the bank where cheque was deposited.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e31\u0e27\u0e17\u0e35\u0e48\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e02\u0e2d\u0e07\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23\u0e17\u0e35\u0e48\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e16\u0e39\u0e01\u0e27\u0e32\u0e07", + "To Date": "\u0e19\u0e31\u0e14", + "Total Amount": "\u0e23\u0e27\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19", + "Update Clearance Date": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 Clearance" +} \ No newline at end of file diff --git a/accounts/doctype/bank_reconciliation_detail/locale/th-doc.json b/accounts/doctype/bank_reconciliation_detail/locale/th-doc.json new file mode 100644 index 0000000000..ffa5d24516 --- /dev/null +++ b/accounts/doctype/bank_reconciliation_detail/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Against Account": "\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Bank Reconciliation Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Cheque Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e0a\u0e47\u0e04", + "Cheque Number": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e0a\u0e47\u0e04", + "Clearance Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e01\u0e27\u0e32\u0e14\u0e25\u0e49\u0e32\u0e07", + "Credit": "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Debit": "\u0e2b\u0e31\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "Voucher ID": "ID \u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25" +} \ No newline at end of file diff --git a/accounts/doctype/budget_control/locale/th-doc.json b/accounts/doctype/budget_control/locale/th-doc.json new file mode 100644 index 0000000000..32842a11ca --- /dev/null +++ b/accounts/doctype/budget_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Budget Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13" +} \ No newline at end of file diff --git a/accounts/doctype/budget_detail/locale/th-doc.json b/accounts/doctype/budget_detail/locale/th-doc.json new file mode 100644 index 0000000000..8956c8e5c0 --- /dev/null +++ b/accounts/doctype/budget_detail/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Actual": "\u0e15\u0e32\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e23\u0e34\u0e07", + "Budget Allocated": "\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Budget Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13" +} \ No newline at end of file diff --git a/accounts/doctype/budget_distribution/locale/th-doc.json b/accounts/doctype/budget_distribution/locale/th-doc.json new file mode 100644 index 0000000000..18a7ccf808 --- /dev/null +++ b/accounts/doctype/budget_distribution/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.To distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**": "\u0e01\u0e32\u0e23\u0e41\u0e1e\u0e23\u0e48\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 ** ** \u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e17\u0e31\u0e48\u0e27\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e24\u0e14\u0e39\u0e01\u0e32\u0e25\u0e43\u0e19 business.To \u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e19\u0e35\u0e49\u0e0a\u0e38\u0e14\u0e19\u0e35\u0e49\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 ** ** ** \u0e43\u0e19\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19 **", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Budget Distribution": "\u0e01\u0e32\u0e23\u0e41\u0e1e\u0e23\u0e48\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Budget Distribution Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Distribution Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e41\u0e08\u0e01\u0e08\u0e48\u0e32\u0e22", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Name of the Budget Distribution": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/accounts/doctype/budget_distribution_detail/locale/th-doc.json b/accounts/doctype/budget_distribution_detail/locale/th-doc.json new file mode 100644 index 0000000000..fb0c5d70eb --- /dev/null +++ b/accounts/doctype/budget_distribution_detail/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Budget Distribution Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Month": "\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Percentage Allocation": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23\u0e23\u0e49\u0e2d\u0e22\u0e25\u0e30" +} \ No newline at end of file diff --git a/accounts/doctype/c_form/locale/th-doc.json b/accounts/doctype/c_form/locale/th-doc.json new file mode 100644 index 0000000000..1f4e500706 --- /dev/null +++ b/accounts/doctype/c_form/locale/th-doc.json @@ -0,0 +1,22 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "C-FORM/": "C-form /", + "C-Form": "C-Form", + "C-Form No": "C-Form \u0e44\u0e21\u0e48\u0e21\u0e35", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "I": "\u0e1c\u0e21", + "II": "\u0e04\u0e23\u0e31\u0e49\u0e07\u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e07", + "III": "III", + "IV": "IV", + "Invoice Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Quarter": "\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e43\u0e19\u0e2a\u0e35\u0e48", + "Received Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a", + "Series": "\u0e0a\u0e38\u0e14", + "State": "\u0e23\u0e31\u0e10", + "Total Amount": "\u0e23\u0e27\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19", + "Total Invoiced Amount": "\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e23\u0e27\u0e21" +} \ No newline at end of file diff --git a/accounts/doctype/c_form_invoice_detail/locale/th-doc.json b/accounts/doctype/c_form_invoice_detail/locale/th-doc.json new file mode 100644 index 0000000000..4f7f5ff54c --- /dev/null +++ b/accounts/doctype/c_form_invoice_detail/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "C-Form Invoice Detail": "C-Form \u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Invoice Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e2d\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Invoice No": "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e21\u0e35", + "Net Total": "\u0e2a\u0e38\u0e17\u0e18\u0e34", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15" +} \ No newline at end of file diff --git a/accounts/doctype/cost_center/locale/th-doc.json b/accounts/doctype/cost_center/locale/th-doc.json new file mode 100644 index 0000000000..f8bc441f06 --- /dev/null +++ b/accounts/doctype/cost_center/locale/th-doc.json @@ -0,0 +1,22 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Add rows to set annual budgets on Accounts.": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e16\u0e27\u0e15\u0e31\u0e49\u0e07\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e1b\u0e35\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Budget": "\u0e07\u0e1a", + "Budget Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Cost Center Details": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e28\u0e39\u0e19\u0e22\u0e4c", + "Cost Center Name": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e28\u0e39\u0e19\u0e22\u0e4c", + "Define Budget for this Cost Center. To set budget action, see Company Master": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e19\u0e35\u0e49 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e31\u0e49\u0e07\u0e01\u0e23\u0e30\u0e17\u0e33\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e40\u0e2b\u0e47\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e21\u0e32\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c", + "Distribution Id": "\u0e23\u0e2b\u0e31\u0e2a\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22", + "Group": "\u0e01\u0e25\u0e38\u0e48\u0e21", + "Group or Ledger": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Parent Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e1c\u0e39\u0e49\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07", + "Select Budget Distribution, if you want to track based on seasonality.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e08\u0e32\u0e01\u0e24\u0e14\u0e39\u0e01\u0e32\u0e25", + "Track separate Income and Expense for product verticals or divisions.": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e41\u0e22\u0e01\u0e15\u0e48\u0e32\u0e07\u0e2b\u0e32\u0e01\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e19\u0e27\u0e14\u0e34\u0e48\u0e07\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e07\u0e32\u0e19", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "RGT" +} \ No newline at end of file diff --git a/accounts/doctype/fiscal_year/locale/th-doc.json b/accounts/doctype/fiscal_year/locale/th-doc.json new file mode 100644 index 0000000000..9dda6f00fe --- /dev/null +++ b/accounts/doctype/fiscal_year/locale/th-doc.json @@ -0,0 +1,14 @@ +{ + "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.": "** ** \u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e41\u0e2a\u0e14\u0e07\u0e23\u0e2d\u0e1a\u0e1b\u0e35\u0e1a\u0e31\u0e0d\u0e0a\u0e35 \u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e08\u0e30\u0e21\u0e35\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e01\u0e31\u0e1a\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 ** **", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Entries are not allowed against this Fiscal Year if the year is closed.": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e01\u0e31\u0e1a\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e19\u0e35\u0e49\u0e2b\u0e32\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e34\u0e14\u0e1b\u0e35", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Fiscal Year Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "For e.g. 2012, 2012-13": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e0a\u0e48\u0e19 2012, 2012-13", + "No": "\u0e44\u0e21\u0e48", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Year Closed": "\u0e1b\u0e35\u0e17\u0e35\u0e48\u0e1b\u0e34\u0e14", + "Year Name": "\u0e1b\u0e35\u0e0a\u0e37\u0e48\u0e2d", + "Year Start Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e1b\u0e35", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/accounts/doctype/fiscal_year/locale/th-py.json b/accounts/doctype/fiscal_year/locale/th-py.json new file mode 100644 index 0000000000..17d888b06a --- /dev/null +++ b/accounts/doctype/fiscal_year/locale/th-py.json @@ -0,0 +1,3 @@ +{ + " is now the default Fiscal Year. \\\t\t\tPlease refresh your browser for the change to take effect.": "\u0e04\u0e37\u0e2d\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 \\ \u0e42\u0e1b\u0e23\u0e14\u0e23\u0e35\u0e40\u0e1f\u0e23\u0e0a\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e17\u0e35\u0e48\u0e08\u0e30\u0e21\u0e35\u0e1c\u0e25" +} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/th-doc.json b/accounts/doctype/gl_control/locale/th-doc.json new file mode 100644 index 0000000000..74d66fdbbe --- /dev/null +++ b/accounts/doctype/gl_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "GL Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21 GL" +} \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/th-doc.json b/accounts/doctype/gl_entry/locale/th-doc.json new file mode 100644 index 0000000000..6bf8414eed --- /dev/null +++ b/accounts/doctype/gl_entry/locale/th-doc.json @@ -0,0 +1,29 @@ +{ + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Against": "\u0e01\u0e31\u0e1a", + "Against Voucher": "\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25", + "Against Voucher Type": "\u0e01\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e15\u0e23", + "Aging Date": "Aging \u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Credit Amt": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Debit Amt": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e14\u0e1a\u0e34\u0e15", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "GL Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 GL", + "Is Advance": "\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Is Cancelled": "\u0e40\u0e1b\u0e47\u0e19\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Is Opening": "\u0e04\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14", + "Journal Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "No": "\u0e44\u0e21\u0e48", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Purchase Invoice": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "Transaction Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Voucher No": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e44\u0e21\u0e48\u0e21\u0e35", + "Voucher Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/th-py.json b/accounts/doctype/gl_entry/locale/th-py.json new file mode 100644 index 0000000000..ca49a769bd --- /dev/null +++ b/accounts/doctype/gl_entry/locale/th-py.json @@ -0,0 +1,16 @@ +{ + " does not belong to the company: ": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 :", + " has been freezed. \\\t\t\t\tOnly Accounts Manager can do transaction against this account": "\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23 freezed \\ \u0e40\u0e09\u0e1e\u0e32\u0e30\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e19\u0e35\u0e49", + " is mandatory for GL Entry": "\u0e21\u0e35\u0e1c\u0e25\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e43\u0e0a\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 GL", + " is not a ledger": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e31\u0e0d\u200b\u200b\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + " is not active": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + " will become ": "\u0e08\u0e30\u0e01\u0e25\u0e32\u0e22\u0e40\u0e1b\u0e47\u0e19", + "Account: ": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35:", + "Cost Center must be specified for PL Account: ": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e23\u0e30\u0e1a\u0e38\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35 PL:", + "For opening balance entry account can not be a PL account": "\u0e40\u0e1b\u0e34\u0e14\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e21\u0e14\u0e38\u0e25\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1a\u0e31\u0e0d\u0e0a\u0e35 PL", + "GL Entry: Debit or Credit amount is mandatory for ": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 GL: \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e14\u0e1a\u0e34\u0e15\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a", + "Negative balance is not allowed for account ": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e21\u0e14\u0e38\u0e25\u0e40\u0e0a\u0e34\u0e07\u0e25\u0e1a\u0e08\u0e30\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Outstanding cannot be less than zero. \\\t\t\t\t \tPlease match exact outstanding.": "\u0e17\u0e35\u0e48\u0e42\u0e14\u0e14\u0e40\u0e14\u0e48\u0e19\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e49\u0e2d\u0e22\u0e01\u0e27\u0e48\u0e32\u0e28\u0e39\u0e19\u0e22\u0e4c \\ \u0e01\u0e23\u0e38\u0e13\u0e32\u0e15\u0e23\u0e07\u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e41\u0e19\u0e48\u0e19\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e42\u0e14\u0e14\u0e40\u0e14\u0e48\u0e19", + "Outstanding for Voucher ": "\u0e17\u0e35\u0e48\u0e42\u0e14\u0e14\u0e40\u0e14\u0e48\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25", + "You are not authorized to do/modify back dated entries before ": "\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e17\u0e33 / \u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e01\u0e25\u0e31\u0e1a\u0e25\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e01\u0e48\u0e2d\u0e19" +} \ No newline at end of file diff --git a/accounts/doctype/journal_voucher/locale/th-doc.json b/accounts/doctype/journal_voucher/locale/th-doc.json new file mode 100644 index 0000000000..5e2be98742 --- /dev/null +++ b/accounts/doctype/journal_voucher/locale/th-doc.json @@ -0,0 +1,57 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts Payable": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e40\u0e08\u0e49\u0e32\u0e2b\u0e19\u0e35\u0e49", + "Accounts Receivable": "\u0e25\u0e39\u0e01\u0e2b\u0e19\u0e35\u0e49", + "Aging Date": "Aging \u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Bank Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Bill Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e1a\u0e34\u0e25", + "Bill No": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1a\u0e34\u0e25", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cash Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14", + "Clearance Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e01\u0e27\u0e32\u0e14\u0e25\u0e49\u0e32\u0e07", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contra Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e15\u0e49\u0e32\u0e19", + "Credit Card Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e0a\u0e33\u0e23\u0e30\u0e14\u0e49\u0e27\u0e22\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Credit Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Debit Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e40\u0e14\u0e1a\u0e34\u0e15", + "Difference": "\u0e02\u0e49\u0e2d\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07", + "Due Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e04\u0e23\u0e1a\u0e01\u0e33\u0e2b\u0e19\u0e14", + "Entries": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c", + "Excise Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e2a\u0e23\u0e23\u0e1e\u0e2a\u0e32\u0e21\u0e34\u0e15", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "For opening invoice entry, this date will reflect in the period-wise aging report.": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e2a\u0e30\u0e17\u0e49\u0e2d\u0e19\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e47\u0e19\u0e16\u0e36\u0e07\u0e43\u0e19\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19 aging \u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e17\u0e35\u0e48\u0e0a\u0e32\u0e0d\u0e09\u0e25\u0e32\u0e14", + "Get Outstanding Invoices": "\u0e23\u0e31\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e04\u0e49\u0e32\u0e07", + "Is Opening": "\u0e04\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14", + "JV": "JV", + "Journal Entries": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Journal Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Journal Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Make Difference Entry": "\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "No": "\u0e44\u0e21\u0e48", + "Pay To / Recd From": "\u0e08\u0e48\u0e32\u0e22\u0e43\u0e2b\u0e49 Recd / \u0e08\u0e32\u0e01", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Reference": "\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Reference Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Reference Number": "\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Remark": "\u0e04\u0e33\u0e1e\u0e39\u0e14", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Series": "\u0e0a\u0e38\u0e14", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Total Amount": "\u0e23\u0e27\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19", + "Total Amount in Words": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e43\u0e19\u0e04\u0e33", + "Total Credit": "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15\u0e23\u0e27\u0e21", + "Total Debit": "\u0e40\u0e14\u0e1a\u0e34\u0e15\u0e23\u0e27\u0e21", + "User Remark": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "User Remark will be added to Auto Remark": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b\u0e43\u0e19\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", + "Voucher Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25", + "Write Off Amount <=": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e17\u0e31\u0e19\u0e17\u0e35\u0e08\u0e33\u0e19\u0e27\u0e19 <=", + "Write Off Based On": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e1b\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a", + "Write Off Voucher": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e17\u0e31\u0e19\u0e17\u0e35\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25", + "Yes": "\u0e43\u0e0a\u0e48", + "eg. Cheque Number": "\u0e40\u0e0a\u0e48\u0e19 \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e0a\u0e47\u0e04" +} \ No newline at end of file diff --git a/accounts/doctype/journal_voucher_detail/locale/th-doc.json b/accounts/doctype/journal_voucher_detail/locale/th-doc.json new file mode 100644 index 0000000000..ec5bec5b95 --- /dev/null +++ b/accounts/doctype/journal_voucher_detail/locale/th-doc.json @@ -0,0 +1,16 @@ +{ + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Account Balance": "\u0e22\u0e2d\u0e14\u0e40\u0e07\u0e34\u0e19\u0e43\u0e19\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Against Account": "\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Against Journal Voucher": "\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Against Purchase Invoice": "\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e01\u0e33\u0e01\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d", + "Against Sales Invoice": "\u0e01\u0e31\u0e1a\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Credit": "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Debit": "\u0e2b\u0e31\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Is Advance": "\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Journal Voucher Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "No": "\u0e44\u0e21\u0e48", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/accounts/doctype/mis_control/locale/th-doc.json b/accounts/doctype/mis_control/locale/th-doc.json new file mode 100644 index 0000000000..bb3f10bd5d --- /dev/null +++ b/accounts/doctype/mis_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "MIS Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e23\u0e30\u0e1a\u0e1a\u0e2a\u0e32\u0e23\u0e2a\u0e19\u0e40\u0e17\u0e28" +} \ No newline at end of file diff --git a/accounts/doctype/mode_of_payment/locale/th-doc.json b/accounts/doctype/mode_of_payment/locale/th-doc.json new file mode 100644 index 0000000000..d25bb13e27 --- /dev/null +++ b/accounts/doctype/mode_of_payment/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Default Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Bank / Cash account will be automatically updated in POS Invoice when this mode is selected.": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23 / \u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14\u0e08\u0e30\u0e16\u0e39\u0e01\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 POS \u0e40\u0e21\u0e37\u0e48\u0e2d\u0e42\u0e2b\u0e21\u0e14\u0e19\u0e35\u0e49\u0e16\u0e39\u0e01\u0e40\u0e25\u0e37\u0e2d\u0e01", + "Mode of Payment": "\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19" +} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/th-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/th-doc.json new file mode 100644 index 0000000000..b4d286967a --- /dev/null +++ b/accounts/doctype/multi_ledger_report_detail/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Multi Ledger Report Detail": "\u0e2b\u0e25\u0e32\u0e22\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17" +} \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool/locale/th-doc.json b/accounts/doctype/payment_to_invoice_matching_tool/locale/th-doc.json new file mode 100644 index 0000000000..35536090fc --- /dev/null +++ b/accounts/doctype/payment_to_invoice_matching_tool/locale/th-doc.json @@ -0,0 +1,25 @@ +{ + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Account Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Allocate": "\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Amount <=": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48 <=", + "Amount >=": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48> =", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Filter By Amount": "\u0e01\u0e23\u0e2d\u0e07\u0e15\u0e32\u0e21\u0e08\u0e4d\u0e32\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Filter By Date": "\u0e01\u0e23\u0e2d\u0e07\u0e15\u0e32\u0e21\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "From Date": "\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Help HTML": "\u0e27\u0e34\u0e18\u0e35\u0e43\u0e0a\u0e49 HTML", + "Journal Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Outstanding Amount": "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e04\u0e49\u0e32\u0e07", + "Payment Entries": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Payment to Invoice Matching Tool": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e08\u0e31\u0e1a\u0e04\u0e39\u0e48\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Pull Payment Entries": "\u0e14\u0e36\u0e07\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Purchase Invoice": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "To Date": "\u0e19\u0e31\u0e14", + "Total Amount": "\u0e23\u0e27\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19", + "Update allocated amount in the above table and then click \"Allocate\" button": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e02\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19\u0e41\u0e25\u0e49\u0e27\u0e04\u0e25\u0e34\u0e01\u0e1b\u0e38\u0e48\u0e21 "\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23"", + "Voucher No": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e44\u0e21\u0e48\u0e21\u0e35", + "Voucher Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25" +} \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/th-doc.json b/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/th-doc.json new file mode 100644 index 0000000000..22123defd2 --- /dev/null +++ b/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/th-doc.json @@ -0,0 +1,12 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Against Account": "\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Allocated Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Payment to Invoice Matching Tool Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e08\u0e31\u0e1a\u0e04\u0e39\u0e48\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Total Amount": "\u0e23\u0e27\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19", + "Unmatched Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e1b\u0e23\u0e35\u0e22\u0e1a", + "Voucher Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e44\u0e21\u0e48\u0e21\u0e35", + "Voucher No": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e44\u0e21\u0e48\u0e21\u0e35" +} \ No newline at end of file diff --git a/accounts/doctype/period_closing_voucher/locale/th-doc.json b/accounts/doctype/period_closing_voucher/locale/th-doc.json new file mode 100644 index 0000000000..2c41c83b2d --- /dev/null +++ b/accounts/doctype/period_closing_voucher/locale/th-doc.json @@ -0,0 +1,14 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Closing Account Head": "\u0e1b\u0e34\u0e14\u0e2b\u0e31\u0e27\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Closing Fiscal Year": "\u0e1b\u0e34\u0e14\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "CoA Help": "\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d CoA", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Period Closing Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e1b\u0e34\u0e14\u0e07\u0e27\u0e14", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Transaction Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/accounts/doctype/pos_setting/locale/th-doc.json b/accounts/doctype/pos_setting/locale/th-doc.json new file mode 100644 index 0000000000..946f11feb9 --- /dev/null +++ b/accounts/doctype/pos_setting/locale/th-doc.json @@ -0,0 +1,20 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Cash/Bank Account": "\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14 / \u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Charge": "\u0e23\u0e31\u0e1a\u0e1c\u0e34\u0e14\u0e0a\u0e2d\u0e1a", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Conversion Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Customer Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Income Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "POS Setting": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 POS", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Series": "\u0e0a\u0e38\u0e14", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "User": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/locale/th-doc.json b/accounts/doctype/purchase_invoice/locale/th-doc.json new file mode 100644 index 0000000000..26a6d4023b --- /dev/null +++ b/accounts/doctype/purchase_invoice/locale/th-doc.json @@ -0,0 +1,84 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Add / Edit Taxes and Charges": "\u0e40\u0e1e\u0e34\u0e48\u0e21 / \u0e41\u0e01\u0e49\u0e44\u0e02\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Advances": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e49\u0e32\u0e27\u0e2b\u0e19\u0e49\u0e32", + "Against Expense Account": "\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Aging Date": "Aging \u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "BILL": "BILL", + "BILLJ": "BILLJ", + "Bill Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e1a\u0e34\u0e25", + "Bill No": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1a\u0e34\u0e25", + "Calculate Tax": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e31\u0e15\u0e23\u0e32 (\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e17\u0e35\u0e48\u0e21\u0e35 "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d" \u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1b\u0e47\u0e19)", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Credit To": "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Currency & Price List": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e30\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Due Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e04\u0e23\u0e1a\u0e01\u0e33\u0e2b\u0e19\u0e14", + "Entries": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c", + "Exchange Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Advances Paid": "\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e17\u0e14\u0e23\u0e2d\u0e07\u0e08\u0e48\u0e32\u0e22", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Get Tax Detail": "\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Grand Total (Import)": "\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "If not applicable please enter: NA": "\u0e16\u0e49\u0e32\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e0a\u0e49\u0e44\u0e14\u0e49\u0e42\u0e1b\u0e23\u0e14\u0e1b\u0e49\u0e2d\u0e19: NA", + "In Words": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07", + "In Words (Import)": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "In Words will be visible once you save the Purchase Invoice.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e01\u0e33\u0e01\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d", + "Is Opening": "\u0e04\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Mode of Payment": "\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "Net Total": "\u0e2a\u0e38\u0e17\u0e18\u0e34", + "Net Total (Import)": "\u0e23\u0e27\u0e21\u0e2a\u0e38\u0e17\u0e18\u0e34 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "No": "\u0e44\u0e21\u0e48", + "Outstanding Amount": "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e04\u0e49\u0e32\u0e07", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Exchange Rate": "\u0e23\u0e32\u0e04\u0e32\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d", + "Purchase Invoice": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Purchase Invoice Advances": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e07\u0e34\u0e19\u0e17\u0e14\u0e23\u0e2d\u0e07", + "Purchase Order": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Purchase Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Recalculate": "\u0e04\u0e33\u0e19\u0e27\u0e13", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Select Items from Purchase Order": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e32\u0e01\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Select Items from Purchase Receipt": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e32\u0e01\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Series": "\u0e0a\u0e38\u0e14", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Tax Calculation": "\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35", + "Taxes": "\u0e20\u0e32\u0e29\u0e35", + "Taxes and Charges Added": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21", + "Taxes and Charges Added (Import)": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Taxes and Charges Deducted": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01", + "Taxes and Charges Deducted (Import)": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "The account to which you will pay (have paid) the money to.": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e08\u0e30\u0e08\u0e48\u0e32\u0e22 (\u0e44\u0e14\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19) \u0e40\u0e07\u0e34\u0e19\u0e44\u0e1b", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "The rate at which Bill Currency is converted into company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e1a\u0e34\u0e25\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Total Advance": "\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e23\u0e27\u0e21", + "Total Amount To Pay": "\u0e23\u0e27\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Total Tax": "\u0e20\u0e32\u0e29\u0e35\u0e23\u0e27\u0e21", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Will be calculated automatically when you enter the details": "\u0e08\u0e30\u0e16\u0e39\u0e01\u0e04\u0e33\u0e19\u0e27\u0e13\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1b\u0e49\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Write Off Account": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e17\u0e31\u0e19\u0e17\u0e35\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Write Off Amount": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e17\u0e31\u0e19\u0e17\u0e35\u0e08\u0e33\u0e19\u0e27\u0e19", + "Write Off Cost Center": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e1b\u0e34\u0e14\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/locale/th-py.json b/accounts/doctype/purchase_invoice/locale/th-py.json new file mode 100644 index 0000000000..69ab3c7ba3 --- /dev/null +++ b/accounts/doctype/purchase_invoice/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "Please enter Bill Date": "\u0e01\u0e23\u0e38\u0e13\u0e32\u0e01\u0e23\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e1a\u0e34\u0e25" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_advance/locale/th-doc.json b/accounts/doctype/purchase_invoice_advance/locale/th-doc.json new file mode 100644 index 0000000000..f5711d5f98 --- /dev/null +++ b/accounts/doctype/purchase_invoice_advance/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Advance Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Allocated Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Journal Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Journal Voucher Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23\u0e44\u0e21\u0e48\u0e21\u0e35", + "Purchase Invoice Advance": "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_item/locale/th-doc.json b/accounts/doctype/purchase_invoice_item/locale/th-doc.json new file mode 100644 index 0000000000..4a50e115e1 --- /dev/null +++ b/accounts/doctype/purchase_invoice_item/locale/th-doc.json @@ -0,0 +1,29 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Amount*": "* \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Discount %": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14%", + "Expense Head": "\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e20\u0e32\u0e29\u0e35\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "PR Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e2a\u0e31\u0e21\u0e1e\u0e31\u0e19\u0e18\u0e4c", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Pur Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d Pur", + "Pur Receipt": "\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19 Pur", + "Purchase Invoice Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Purchase Order Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Rate ": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32", + "Ref Rate ": "\u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Ref Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e08\u0e32\u0e01\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e15\u0e23\u0e34\u0e07\u0e41\u0e25\u0e30\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e43\u0e19 field.Used \u0e19\u0e35\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "UOM": "UOM" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_taxes_and_charges/locale/th-doc.json b/accounts/doctype/purchase_taxes_and_charges/locale/th-doc.json new file mode 100644 index 0000000000..915143c553 --- /dev/null +++ b/accounts/doctype/purchase_taxes_and_charges/locale/th-doc.json @@ -0,0 +1,27 @@ +{ + "Account Head": "\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Actual": "\u0e15\u0e32\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e23\u0e34\u0e07", + "Add": "\u0e40\u0e1e\u0e34\u0e48\u0e21", + "Add or Deduct": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e31\u0e01", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Cheating FieldPlease do not delete ": "\u0e42\u0e01\u0e07 FieldPlease \u0e44\u0e21\u0e48\u0e25\u0e1a", + "Consider Tax or Charge for": "\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e34\u0e14\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Deduct": "\u0e2b\u0e31\u0e01", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Enter Row": "\u0e43\u0e2a\u0e48\u0e41\u0e16\u0e27", + "Item Wise Tax Detail ": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e09\u0e25\u0e32\u0e14", + "On Net Total": "\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e27\u0e21\u0e2a\u0e38\u0e17\u0e18\u0e34", + "On Previous Row Amount": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32", + "On Previous Row Total": "\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e27\u0e21\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32", + "Parenttype": "Parenttype", + "Purchase Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Tax Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e20\u0e32\u0e29\u0e35", + "Total": "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Total +Tax": "\u0e23\u0e27\u0e21 + \u0e20\u0e32\u0e29\u0e35", + "Type": "\u0e0a\u0e19\u0e34\u0e14", + "Valuation": "\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19\u0e04\u0e48\u0e32", + "Valuation and Total": "\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19\u0e41\u0e25\u0e30\u0e23\u0e27\u0e21" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_taxes_and_charges_master/locale/th-doc.json b/accounts/doctype/purchase_taxes_and_charges_master/locale/th-doc.json new file mode 100644 index 0000000000..a63bb0b751 --- /dev/null +++ b/accounts/doctype/purchase_taxes_and_charges_master/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Default": "\u0e1c\u0e34\u0e14\u0e19\u0e31\u0e14", + "Purchase Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Purchase Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32", + "Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.10. Add or Deduct: Whether you want to add or deduct the tax.": "\u0e41\u0e21\u0e48\u0e20\u0e32\u0e29\u0e35\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e0b\u0e37\u0e49\u0e2d \u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e2b\u0e31\u0e27\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e22\u0e31\u0e07\u0e2b\u0e31\u0e27\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e40\u0e0a\u0e48\u0e19 "\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", "\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22", "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23" \u0e2f\u0e25\u0e2f \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35 # # # # \u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e04\u0e38\u0e13\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** . \u0e16\u0e49\u0e32\u0e21\u0e35\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 ** ** \u0e15\u0e32\u0e23\u0e32\u0e07\u0e43\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e2b\u0e25\u0e31\u0e01. # # # # \u0e08\u0e32\u0e01 Columns1 \u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13: - \u0e19\u0e35\u0e49\u0e2d\u0e32\u0e08\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e19\u0e2a\u0e38\u0e17\u0e18\u0e34 ** ** (\u0e19\u0e31\u0e48\u0e19\u0e04\u0e37\u0e2d\u0e1c\u0e25\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19) - ** \u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e23\u0e27\u0e21 / ** \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19 (\u0e20\u0e32\u0e29\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e30\u0e2a\u0e21) \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49\u0e20\u0e32\u0e29\u0e35\u0e08\u0e30\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e47\u0e19\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32 (\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e20\u0e32\u0e29\u0e35) \u0e08\u0e33\u0e19\u0e27\u0e19\u0e23\u0e27\u0e21 - ** \u0e08\u0e23\u0e34\u0e07 ** (\u0e14\u0e31\u0e07\u0e01\u0e25\u0e48\u0e32\u0e27) 0.2 \u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35: \u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e08\u0e30 booked3 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19: \u0e16\u0e49\u0e32\u0e20\u0e32\u0e29\u0e35 / \u0e04\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49 (\u0e40\u0e0a\u0e48\u0e19\u0e04\u0e48\u0e32\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07) \u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e08\u0e2d\u0e07\u0e01\u0e31\u0e1a Center.4 \u0e15\u0e49\u0e19\u0e17\u0e38\u0e19 \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22: \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e20\u0e32\u0e29\u0e35 (\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 / \u0e23\u0e32\u0e04\u0e32) 0.5 \u0e43\u0e2b\u0e49\u0e04\u0e30\u0e41\u0e19\u0e19: rate.6 \u0e20\u0e32\u0e29\u0e35 \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19: amount.7 \u0e20\u0e32\u0e29\u0e35 \u0e23\u0e27\u0e21\u0e2a\u0e30\u0e2a\u0e21\u0e19\u0e35\u0e49 point.8: Total \u0e43\u0e2a\u0e48\u0e41\u0e16\u0e27: \u0e16\u0e49\u0e32\u0e1a\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e02\u0e2d\u0e07 "\u0e23\u0e27\u0e21\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49" \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e08\u0e33\u0e19\u0e27\u0e19\u0e41\u0e16\u0e27\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e10\u0e32\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e19\u0e35\u0e49 (\u0e04\u0e48\u0e32\u0e1b\u0e01\u0e15\u0e34\u0e04\u0e37\u0e2d\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32) 0.9 \u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e34\u0e14\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a: \u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e19\u0e35\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e23\u0e30\u0e1a\u0e38\u0e2b\u0e32\u0e01\u0e20\u0e32\u0e29\u0e35 / \u0e04\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1e\u0e35\u0e22\u0e07\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32 (\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e08\u0e32\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14) \u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e27\u0e21 (\u0e44\u0e21\u0e48\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32) \u0e2b\u0e23\u0e37\u0e2d both.10 \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e31\u0e01\u0e44\u0e21\u0e48\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e31\u0e01\u0e20\u0e32\u0e29\u0e35", + "Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/locale/th-doc.json b/accounts/doctype/sales_invoice/locale/th-doc.json new file mode 100644 index 0000000000..f0ab1b3554 --- /dev/null +++ b/accounts/doctype/sales_invoice/locale/th-doc.json @@ -0,0 +1,143 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Advances": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e49\u0e32\u0e27\u0e2b\u0e19\u0e49\u0e32", + "Advertisement": "\u0e01\u0e32\u0e23\u0e42\u0e06\u0e29\u0e13\u0e32", + "Against Income Account": "\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Aging Date": "Aging \u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Basic Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "C-Form Applicable": "C-Form \u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e44\u0e14\u0e49", + "C-Form No": "C-Form \u0e44\u0e21\u0e48\u0e21\u0e35", + "Calculate Taxes and Charges": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cash/Bank Account": "\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14 / \u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Check if recurring invoice, uncheck to stop recurring or put proper End Date": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e27\u0e48\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e43\u0e2b\u0e49\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e2b\u0e22\u0e38\u0e14\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e2b\u0e23\u0e37\u0e2d\u0e43\u0e2a\u0e48\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14\u0e17\u0e35\u0e48\u0e40\u0e2b\u0e21\u0e32\u0e30\u0e2a\u0e21", + "Cold Calling": "\u0e42\u0e17\u0e23\u0e40\u0e22\u0e47\u0e19", + "Commission Rate (%)": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e04\u0e48\u0e32\u0e04\u0e2d\u0e21\u0e21\u0e34\u0e0a\u0e0a\u0e31\u0e48\u0e19 (%)", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Conversion Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Convert into Recurring Invoice": "\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer's Vendor": "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Debit To": "\u0e40\u0e14\u0e1a\u0e34\u0e15\u0e40\u0e1e\u0e37\u0e48\u0e2d", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Due Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e04\u0e23\u0e1a\u0e01\u0e33\u0e2b\u0e19\u0e14", + "End Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14", + "End date of current invoice's period": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14\u0e02\u0e2d\u0e07\u0e23\u0e2d\u0e1a\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Enter email id separated by commas, invoice will be mailed automatically on particular date": "\u0e43\u0e2a\u0e48\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e04\u0e31\u0e48\u0e19\u0e14\u0e49\u0e27\u0e22\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e08\u0e38\u0e25\u0e20\u0e32\u0e04\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e43\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e08\u0e32\u0e30\u0e08\u0e07", + "Enter the date by which payments from customer is expected against this invoice.": "\u0e1b\u0e49\u0e2d\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e42\u0e14\u0e22\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e08\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e27\u0e48\u0e32\u0e08\u0e30\u0e15\u0e48\u0e2d\u0e15\u0e49\u0e32\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e19\u0e35\u0e49", + "Entries": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c", + "Exhibition": "\u0e07\u0e32\u0e19\u0e21\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Existing Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Advances Received": "\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e23\u0e31\u0e1a\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Get Taxes and Charges": "\u0e23\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Grand Total (Export)": "\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "Gross Profit": "\u0e01\u0e33\u0e44\u0e23\u0e02\u0e31\u0e49\u0e19\u0e15\u0e49\u0e19", + "Gross Profit (%)": "\u0e01\u0e33\u0e44\u0e23\u0e02\u0e31\u0e49\u0e19\u0e15\u0e49\u0e19 (%)", + "Half-yearly": "\u0e23\u0e32\u0e22\u0e2b\u0e01\u0e40\u0e14\u0e37\u0e2d\u0e19", + "INV": "INV", + "INV/10-11/": "INV/10-11 /", + "In Words": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07", + "In Words (Export)": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "In Words will be visible once you save the Sales Invoice.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Invoice Period From Date": "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e2d\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Invoice Period To Date": "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Is Opening": "\u0e04\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14", + "Is POS": "POS \u0e40\u0e1b\u0e47\u0e19", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Mass Mailing": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e21\u0e27\u0e25", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Mode of Payment": "\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Monthly": "\u0e23\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "Net Total*": "* \u0e2a\u0e38\u0e17\u0e18\u0e34", + "Next Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e16\u0e31\u0e14\u0e44\u0e1b", + "No": "\u0e44\u0e21\u0e48", + "Notification Email Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19", + "Outstanding Amount": "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e04\u0e49\u0e32\u0e07", + "Packing Details": "\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Packing List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e23\u0e08\u0e38", + "Paid Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e0a\u0e33\u0e23\u0e30", + "Payments": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Posting Time": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e40\u0e27\u0e25\u0e32", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Currency Conversion Rate": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Price List and Currency": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e41\u0e25\u0e30\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Quarterly": "\u0e17\u0e38\u0e01\u0e2a\u0e32\u0e21\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Rate at which Customer Currency is converted to customer's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e08\u0e30\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Rate at which Price list currency is converted to customer's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Re-Calculate Values": "\u0e04\u0e48\u0e32\u0e04\u0e33\u0e19\u0e27\u0e13\u0e43\u0e2b\u0e21\u0e48", + "Recurring Id": "\u0e23\u0e2b\u0e31\u0e2a\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19", + "Recurring Invoice": "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", + "Recurring Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19", + "Reference": "\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Repeat on Day of Month": "\u0e17\u0e33\u0e0b\u0e49\u0e33\u0e43\u0e19\u0e27\u0e31\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Rounded Total": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21", + "Rounded Total (Export)": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "Sales BOM Help": "\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d BOM \u0e02\u0e32\u0e22", + "Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Sales Invoice Advance": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Team": "\u0e17\u0e35\u0e21\u0e02\u0e32\u0e22", + "Sales Team1": "\u0e02\u0e32\u0e22 Team1", + "Select Items from Delivery Note": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e32\u0e01\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a", + "Select Items from Sales Order": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e32\u0e01\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e02\u0e32\u0e22", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the currency in which price list is maintained": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e22\u0e31\u0e07\u0e04\u0e07", + "Select the period when the invoice will be generated automatically": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", + "Series": "\u0e0a\u0e38\u0e14", + "Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07", + "Start date of current invoice's period": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e02\u0e2d\u0e07\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e01\u0e32\u0e23\u0e2d\u0e2d\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Supplier Reference": "\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Taxes and Charges Calculation": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Taxes and Charges1": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30 Charges1", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions Details": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Terms and Conditions HTML": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02 HTML", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "The account to which you will pay (have paid) the money to.": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e08\u0e30\u0e08\u0e48\u0e32\u0e22 (\u0e44\u0e14\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e07\u0e34\u0e19) \u0e40\u0e07\u0e34\u0e19\u0e44\u0e1b", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "The date on which next invoice will be generated. It is generated on submit.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e2d\u0e01\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19 \u0e21\u0e31\u0e19\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e1a\u0e19\u0e2a\u0e48\u0e07", + "The date on which recurring invoice will be stop": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2b\u0e22\u0e38\u0e14", + "The day of the month on which auto invoice will be generated e.g. 05, 28 etc ": "\u0e27\u0e31\u0e19\u0e02\u0e2d\u0e07\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e40\u0e0a\u0e48\u0e19 05, 28 \u0e2f\u0e25\u0e2f", + "The unique id for tracking all recurring invoices.\u00a0It is generated on submit.": "id \u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e0b\u0e49\u0e33\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14 \u0e21\u0e31\u0e19\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e1a\u0e19\u0e2a\u0e48\u0e07", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Total Advance": "\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e23\u0e27\u0e21", + "Total Commission": "\u0e04\u0e13\u0e30\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e23\u0e27\u0e21", + "Total Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e23\u0e27\u0e21", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Track this Sales Invoice against any Project": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e19\u0e35\u0e49\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e31\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e43\u0e14 \u0e46", + "Update Stock": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Will be calculated automatically when you enter the details": "\u0e08\u0e30\u0e16\u0e39\u0e01\u0e04\u0e33\u0e19\u0e27\u0e13\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1b\u0e49\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Write Off Account": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e17\u0e31\u0e19\u0e17\u0e35\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Write Off Amount": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e17\u0e31\u0e19\u0e17\u0e35\u0e08\u0e33\u0e19\u0e27\u0e19", + "Write Off Cost Center": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e1b\u0e34\u0e14\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Write Off Outstanding Amount": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e1b\u0e34\u0e14\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e04\u0e49\u0e32\u0e07", + "Yearly": "\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e1b\u0e35", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/locale/th-py.json b/accounts/doctype/sales_invoice/locale/th-py.json new file mode 100644 index 0000000000..0be99ad229 --- /dev/null +++ b/accounts/doctype/sales_invoice/locale/th-py.json @@ -0,0 +1,5 @@ +{ + ": Mandatory for a Recurring Invoice.": ": \u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", + "Invalid Email Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07", + "Please select: ": "\u0e01\u0e23\u0e38\u0e13\u0e32\u0e40\u0e25\u0e37\u0e2d\u0e01:" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_advance/locale/th-doc.json b/accounts/doctype/sales_invoice_advance/locale/th-doc.json new file mode 100644 index 0000000000..3c1fcf738e --- /dev/null +++ b/accounts/doctype/sales_invoice_advance/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Advance amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Allocated amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Journal Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Journal Voucher Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23\u0e44\u0e21\u0e48\u0e21\u0e35", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Sales Invoice Advance": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_item/locale/th-doc.json b/accounts/doctype/sales_invoice_item/locale/th-doc.json new file mode 100644 index 0000000000..8965ef6b4d --- /dev/null +++ b/accounts/doctype/sales_invoice_item/locale/th-doc.json @@ -0,0 +1,34 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Amount*": "* \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Available Qty at Warehouse": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Barcode": "\u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14", + "Basic Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "Basic Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "Batch No": "\u0e0a\u0e38\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35", + "Brand Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Clear Pending": "\u0e25\u0e49\u0e32\u0e07 Pending", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Customer's Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "DN Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 DN", + "Delivered Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e48\u0e07", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Discount (%)": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14 (%)", + "Income Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Price List Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Price List Rate*": "\u0e23\u0e32\u0e04\u0e32 * \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "SO Detail ": "\u0e14\u0e31\u0e07\u0e19\u0e31\u0e49\u0e19\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Sales Invoice Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "UOM": "UOM", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges/locale/th-doc.json b/accounts/doctype/sales_taxes_and_charges/locale/th-doc.json new file mode 100644 index 0000000000..8da98da5b3 --- /dev/null +++ b/accounts/doctype/sales_taxes_and_charges/locale/th-doc.json @@ -0,0 +1,23 @@ +{ + "Account Head": "\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Actual": "\u0e15\u0e32\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e23\u0e34\u0e07", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Cheating FieldPlease do not delete ": "\u0e42\u0e01\u0e07 FieldPlease \u0e44\u0e21\u0e48\u0e25\u0e1a", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Enter Row": "\u0e43\u0e2a\u0e48\u0e41\u0e16\u0e27", + "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount": "\u0e2b\u0e32\u0e01\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e20\u0e32\u0e29\u0e35\u0e08\u0e30\u0e16\u0e37\u0e2d\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e27\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e1e\u0e34\u0e21\u0e1e\u0e4c / \u0e08\u0e33\u0e19\u0e27\u0e19\u0e1e\u0e34\u0e21\u0e1e\u0e4c", + "Is this Tax included in Basic Rate?": "\u0e04\u0e37\u0e2d\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e23\u0e27\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19?", + "Item Wise Tax Detail ": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e09\u0e25\u0e32\u0e14", + "On Net Total": "\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e27\u0e21\u0e2a\u0e38\u0e17\u0e18\u0e34", + "On Previous Row Amount": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32", + "On Previous Row Total": "\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e27\u0e21\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32", + "Parenttype": "Parenttype", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Sales Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Total": "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Total Amount": "\u0e23\u0e27\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19", + "Total Tax Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e20\u0e32\u0e29\u0e35\u0e23\u0e27\u0e21", + "Type": "\u0e0a\u0e19\u0e34\u0e14" +} \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges_master/locale/th-doc.json b/accounts/doctype/sales_taxes_and_charges_master/locale/th-doc.json new file mode 100644 index 0000000000..9e9a8e6fda --- /dev/null +++ b/accounts/doctype/sales_taxes_and_charges_master/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "* Will be calculated in the transaction.": "* \u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Default": "\u0e1c\u0e34\u0e14\u0e19\u0e31\u0e14", + "Sales Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17", + "Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.": "\u0e41\u0e21\u0e48\u0e20\u0e32\u0e29\u0e35\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22 \u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e2b\u0e31\u0e27\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e22\u0e31\u0e07\u0e2b\u0e31\u0e27 / \u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e40\u0e0a\u0e48\u0e19 "\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", "\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22", "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23" \u0e2f\u0e25\u0e2f \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35 # # # # \u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e04\u0e38\u0e13\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e16\u0e49\u0e32\u0e21\u0e35\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 ** ** \u0e15\u0e32\u0e23\u0e32\u0e07\u0e43\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e2b\u0e25\u0e31\u0e01. # # # # \u0e08\u0e32\u0e01 Columns1 \u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13: - \u0e19\u0e35\u0e49\u0e2d\u0e32\u0e08\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e19\u0e2a\u0e38\u0e17\u0e18\u0e34 ** ** (\u0e19\u0e31\u0e48\u0e19\u0e04\u0e37\u0e2d\u0e1c\u0e25\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19) - ** \u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e23\u0e27\u0e21 / ** \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19 (\u0e20\u0e32\u0e29\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e30\u0e2a\u0e21) \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49\u0e20\u0e32\u0e29\u0e35\u0e08\u0e30\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e47\u0e19\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32 (\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e20\u0e32\u0e29\u0e35) \u0e08\u0e33\u0e19\u0e27\u0e19\u0e23\u0e27\u0e21 - ** \u0e08\u0e23\u0e34\u0e07 ** (\u0e14\u0e31\u0e07\u0e01\u0e25\u0e48\u0e32\u0e27) 0.2 \u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35: \u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e08\u0e30 booked3 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19: \u0e16\u0e49\u0e32\u0e20\u0e32\u0e29\u0e35 / \u0e04\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49 (\u0e40\u0e0a\u0e48\u0e19\u0e04\u0e48\u0e32\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07) \u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e08\u0e2d\u0e07\u0e01\u0e31\u0e1a Center.4 \u0e15\u0e49\u0e19\u0e17\u0e38\u0e19 \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22: \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e20\u0e32\u0e29\u0e35 (\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 / \u0e23\u0e32\u0e04\u0e32) 0.5 \u0e43\u0e2b\u0e49\u0e04\u0e30\u0e41\u0e19\u0e19: rate.6 \u0e20\u0e32\u0e29\u0e35 \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19: amount.7 \u0e20\u0e32\u0e29\u0e35 \u0e23\u0e27\u0e21\u0e2a\u0e30\u0e2a\u0e21\u0e19\u0e35\u0e49 point.8: Total \u0e43\u0e2a\u0e48\u0e41\u0e16\u0e27: \u0e16\u0e49\u0e32\u0e1a\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e02\u0e2d\u0e07 "\u0e23\u0e27\u0e21\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49" \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e08\u0e33\u0e19\u0e27\u0e19\u0e41\u0e16\u0e27\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e10\u0e32\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e19\u0e35\u0e49 (\u0e04\u0e48\u0e32\u0e1b\u0e01\u0e15\u0e34\u0e04\u0e37\u0e2d\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32) 0.9 \u0e04\u0e37\u0e2d\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e23\u0e27\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19: \u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e19\u0e35\u0e49\u0e01\u0e47\u0e2b\u0e21\u0e32\u0e22\u0e04\u0e27\u0e32\u0e21\u0e27\u0e48\u0e32\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e08\u0e30\u0e44\u0e21\u0e48\u0e41\u0e2a\u0e14\u0e07\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 \u0e41\u0e15\u0e48\u0e08\u0e30\u0e23\u0e27\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 \u0e19\u0e35\u0e49\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e0a\u0e19\u0e4c\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e04\u0e32\u0e41\u0e1a\u0e19 (\u0e23\u0e27\u0e21\u0e20\u0e32\u0e29\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14) \u0e23\u0e32\u0e04\u0e32\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07" +} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/th-doc.json b/accounts/doctype/trend_analyzer_control/locale/th-doc.json new file mode 100644 index 0000000000..23eaa1a863 --- /dev/null +++ b/accounts/doctype/trend_analyzer_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Trend Analyzer Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e41\u0e19\u0e27\u0e42\u0e19\u0e49\u0e21" +} \ No newline at end of file diff --git a/accounts/locale/th-py.json b/accounts/locale/th-py.json new file mode 100644 index 0000000000..24b9fa3830 --- /dev/null +++ b/accounts/locale/th-py.json @@ -0,0 +1,4 @@ +{ + "Payment Entry has been modified after you pulled it. \t\t\tPlease pull it again.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e14\u0e36\u0e07\u0e21\u0e31\u0e19 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e14\u0e36\u0e07\u0e21\u0e31\u0e19\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07", + "not within Fiscal Year": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13" +} \ No newline at end of file diff --git a/accounts/module_def/accounts/locale/th-doc.json b/accounts/module_def/accounts/locale/th-doc.json new file mode 100644 index 0000000000..ab8f3152ed --- /dev/null +++ b/accounts/module_def/accounts/locale/th-doc.json @@ -0,0 +1,17 @@ +{ + "**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.To distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**": "\u0e01\u0e32\u0e23\u0e41\u0e1e\u0e23\u0e48\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 ** ** \u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e17\u0e31\u0e48\u0e27\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e24\u0e14\u0e39\u0e01\u0e32\u0e25\u0e43\u0e19 business.To \u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e19\u0e35\u0e49\u0e0a\u0e38\u0e14\u0e19\u0e35\u0e49\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 ** ** ** \u0e43\u0e19\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19 **", + "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.": "** ** \u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e41\u0e2a\u0e14\u0e07\u0e23\u0e2d\u0e1a\u0e1b\u0e35\u0e1a\u0e31\u0e0d\u0e0a\u0e35 \u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e08\u0e30\u0e21\u0e35\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e01\u0e31\u0e1a\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13 ** **", + "Accounts Browser": "\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts Home": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Delivered Items To Be Billed": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e08\u0e30\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Financial Analytics": "Analytics \u0e01\u0e32\u0e23\u0e40\u0e07\u0e34\u0e19", + "Financial Statements": "\u0e07\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e07\u0e34\u0e19", + "General Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", + "Heads (or groups) against which Accounting Entries are made and balances are maintained.": "\u0e2b\u0e31\u0e27 (\u0e2b\u0e23\u0e37\u0e2d\u0e01\u0e25\u0e38\u0e48\u0e21) \u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e08\u0e30\u0e17\u0e33\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e25\u0e30\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e08\u0e30\u0e23\u0e31\u0e01\u0e29\u0e32", + "Ordered Items To Be Billed": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.10. Add or Deduct: Whether you want to add or deduct the tax.": "\u0e41\u0e21\u0e48\u0e20\u0e32\u0e29\u0e35\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e0b\u0e37\u0e49\u0e2d \u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e2b\u0e31\u0e27\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e22\u0e31\u0e07\u0e2b\u0e31\u0e27\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e40\u0e0a\u0e48\u0e19 "\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", "\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22", "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23" \u0e2f\u0e25\u0e2f \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35 # # # # \u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e04\u0e38\u0e13\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** . \u0e16\u0e49\u0e32\u0e21\u0e35\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 ** ** \u0e15\u0e32\u0e23\u0e32\u0e07\u0e43\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e2b\u0e25\u0e31\u0e01. # # # # \u0e08\u0e32\u0e01 Columns1 \u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13: - \u0e19\u0e35\u0e49\u0e2d\u0e32\u0e08\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e19\u0e2a\u0e38\u0e17\u0e18\u0e34 ** ** (\u0e19\u0e31\u0e48\u0e19\u0e04\u0e37\u0e2d\u0e1c\u0e25\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19) - ** \u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e23\u0e27\u0e21 / ** \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19 (\u0e20\u0e32\u0e29\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e30\u0e2a\u0e21) \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49\u0e20\u0e32\u0e29\u0e35\u0e08\u0e30\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e47\u0e19\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32 (\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e20\u0e32\u0e29\u0e35) \u0e08\u0e33\u0e19\u0e27\u0e19\u0e23\u0e27\u0e21 - ** \u0e08\u0e23\u0e34\u0e07 ** (\u0e14\u0e31\u0e07\u0e01\u0e25\u0e48\u0e32\u0e27) 0.2 \u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35: \u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e08\u0e30 booked3 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19: \u0e16\u0e49\u0e32\u0e20\u0e32\u0e29\u0e35 / \u0e04\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49 (\u0e40\u0e0a\u0e48\u0e19\u0e04\u0e48\u0e32\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07) \u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e08\u0e2d\u0e07\u0e01\u0e31\u0e1a Center.4 \u0e15\u0e49\u0e19\u0e17\u0e38\u0e19 \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22: \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e20\u0e32\u0e29\u0e35 (\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 / \u0e23\u0e32\u0e04\u0e32) 0.5 \u0e43\u0e2b\u0e49\u0e04\u0e30\u0e41\u0e19\u0e19: rate.6 \u0e20\u0e32\u0e29\u0e35 \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19: amount.7 \u0e20\u0e32\u0e29\u0e35 \u0e23\u0e27\u0e21\u0e2a\u0e30\u0e2a\u0e21\u0e19\u0e35\u0e49 point.8: Total \u0e43\u0e2a\u0e48\u0e41\u0e16\u0e27: \u0e16\u0e49\u0e32\u0e1a\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e02\u0e2d\u0e07 "\u0e23\u0e27\u0e21\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49" \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e08\u0e33\u0e19\u0e27\u0e19\u0e41\u0e16\u0e27\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e10\u0e32\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e19\u0e35\u0e49 (\u0e04\u0e48\u0e32\u0e1b\u0e01\u0e15\u0e34\u0e04\u0e37\u0e2d\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32) 0.9 \u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e34\u0e14\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a: \u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e19\u0e35\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e23\u0e30\u0e1a\u0e38\u0e2b\u0e32\u0e01\u0e20\u0e32\u0e29\u0e35 / \u0e04\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1e\u0e35\u0e22\u0e07\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32 (\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e08\u0e32\u0e01\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14) \u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e27\u0e21 (\u0e44\u0e21\u0e48\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32) \u0e2b\u0e23\u0e37\u0e2d both.10 \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e31\u0e01\u0e44\u0e21\u0e48\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e31\u0e01\u0e20\u0e32\u0e29\u0e35", + "Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.": "\u0e41\u0e21\u0e48\u0e20\u0e32\u0e29\u0e35\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22 \u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e2b\u0e31\u0e27\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e22\u0e31\u0e07\u0e2b\u0e31\u0e27 / \u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e40\u0e0a\u0e48\u0e19 "\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", "\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e20\u0e31\u0e22", "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23" \u0e2f\u0e25\u0e2f \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35 # # # # \u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e04\u0e38\u0e13\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e16\u0e49\u0e32\u0e21\u0e35\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e16\u0e39\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 ** ** \u0e15\u0e32\u0e23\u0e32\u0e07\u0e43\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e2b\u0e25\u0e31\u0e01. # # # # \u0e08\u0e32\u0e01 Columns1 \u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13: - \u0e19\u0e35\u0e49\u0e2d\u0e32\u0e08\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e19\u0e2a\u0e38\u0e17\u0e18\u0e34 ** ** (\u0e19\u0e31\u0e48\u0e19\u0e04\u0e37\u0e2d\u0e1c\u0e25\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19) - ** \u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e23\u0e27\u0e21 / ** \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19 (\u0e20\u0e32\u0e29\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e30\u0e2a\u0e21) \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49\u0e20\u0e32\u0e29\u0e35\u0e08\u0e30\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e47\u0e19\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32 (\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e20\u0e32\u0e29\u0e35) \u0e08\u0e33\u0e19\u0e27\u0e19\u0e23\u0e27\u0e21 - ** \u0e08\u0e23\u0e34\u0e07 ** (\u0e14\u0e31\u0e07\u0e01\u0e25\u0e48\u0e32\u0e27) 0.2 \u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35: \u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e08\u0e30 booked3 \u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19: \u0e16\u0e49\u0e32\u0e20\u0e32\u0e29\u0e35 / \u0e04\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49 (\u0e40\u0e0a\u0e48\u0e19\u0e04\u0e48\u0e32\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07) \u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e08\u0e2d\u0e07\u0e01\u0e31\u0e1a Center.4 \u0e15\u0e49\u0e19\u0e17\u0e38\u0e19 \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22: \u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e20\u0e32\u0e29\u0e35 (\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e43\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49 / \u0e23\u0e32\u0e04\u0e32) 0.5 \u0e43\u0e2b\u0e49\u0e04\u0e30\u0e41\u0e19\u0e19: rate.6 \u0e20\u0e32\u0e29\u0e35 \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19: amount.7 \u0e20\u0e32\u0e29\u0e35 \u0e23\u0e27\u0e21\u0e2a\u0e30\u0e2a\u0e21\u0e19\u0e35\u0e49 point.8: Total \u0e43\u0e2a\u0e48\u0e41\u0e16\u0e27: \u0e16\u0e49\u0e32\u0e1a\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e02\u0e2d\u0e07 "\u0e23\u0e27\u0e21\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49" \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e08\u0e33\u0e19\u0e27\u0e19\u0e41\u0e16\u0e27\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e10\u0e32\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e19\u0e35\u0e49 (\u0e04\u0e48\u0e32\u0e1b\u0e01\u0e15\u0e34\u0e04\u0e37\u0e2d\u0e41\u0e16\u0e27\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32) 0.9 \u0e04\u0e37\u0e2d\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e23\u0e27\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19: \u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e19\u0e35\u0e49\u0e01\u0e47\u0e2b\u0e21\u0e32\u0e22\u0e04\u0e27\u0e32\u0e21\u0e27\u0e48\u0e32\u0e20\u0e32\u0e29\u0e35\u0e19\u0e35\u0e49\u0e08\u0e30\u0e44\u0e21\u0e48\u0e41\u0e2a\u0e14\u0e07\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 \u0e41\u0e15\u0e48\u0e08\u0e30\u0e23\u0e27\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 \u0e19\u0e35\u0e49\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e0a\u0e19\u0e4c\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e04\u0e32\u0e41\u0e1a\u0e19 (\u0e23\u0e27\u0e21\u0e20\u0e32\u0e29\u0e35\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14) \u0e23\u0e32\u0e04\u0e32\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Track separate Income and Expense for product verticals or divisions.": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e41\u0e22\u0e01\u0e15\u0e48\u0e32\u0e07\u0e2b\u0e32\u0e01\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e19\u0e27\u0e14\u0e34\u0e48\u0e07\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e07\u0e32\u0e19", + "Trial Balance": "\u0e07\u0e1a\u0e17\u0e14\u0e25\u0e2d\u0e07", + "Voucher Import Tool": "\u0e41\u0e25\u0e30\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25" +} \ No newline at end of file diff --git a/accounts/page/accounts_home/locale/th-js.json b/accounts/page/accounts_home/locale/th-js.json new file mode 100644 index 0000000000..10fe24501c --- /dev/null +++ b/accounts/page/accounts_home/locale/th-js.json @@ -0,0 +1,46 @@ +{ + "Accounting journal entries.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Analytics": "Analytics", + "Bank Reconciliation": "\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Bills raised by Suppliers.": "\u0e15\u0e31\u0e4b\u0e27\u0e40\u0e07\u0e34\u0e19\u0e22\u0e01\u0e42\u0e14\u0e22\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c", + "Bills raised to Customers.": "\u0e15\u0e31\u0e4b\u0e27\u0e40\u0e07\u0e34\u0e19\u0e22\u0e01\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Budget Distribution": "\u0e01\u0e32\u0e23\u0e41\u0e1e\u0e23\u0e48\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "C-Form": "C-Form", + "Chart of Accounts": "\u0e1c\u0e31\u0e07\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Chart of Cost Centers": "\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34\u0e02\u0e2d\u0e07\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Delivered Items To Be Billed": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e08\u0e30\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Documents": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Financial Analytics": "Analytics \u0e01\u0e32\u0e23\u0e40\u0e07\u0e34\u0e19", + "Financial Statements": "\u0e07\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e07\u0e34\u0e19", + "General Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", + "Journal Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Main Reports": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e2b\u0e25\u0e31\u0e01", + "Manage sales or purchase returns": "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Masters": "\u0e42\u0e17", + "Match non-linked Invoices and Payments.": "\u0e15\u0e23\u0e07\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Mode of Payment": "\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Ordered Items To Be Billed": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Payment Reconciliation": "\u0e2a\u0e2d\u0e1a\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Period Closing Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e1b\u0e34\u0e14\u0e07\u0e27\u0e14", + "Point-of-Sale Setting": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 point-of-Sale", + "Purchase Invoice": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Purchase Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32", + "Reports": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", + "Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Sales Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17", + "Sales and Purchase Return Tool": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a", + "Seasonality for setting budgets.": "\u0e24\u0e14\u0e39\u0e01\u0e32\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Structure cost centers for budgeting.": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e17\u0e33\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Structure of books of accounts.": "\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e02\u0e2d\u0e07\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Tax Template for Purchase": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d", + "Tax Template for Sales": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Template of terms or contract.": "\u0e41\u0e21\u0e48\u0e02\u0e2d\u0e07\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e2a\u0e31\u0e0d\u0e0d\u0e32", + "Terms and Conditions Template": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e02\u0e2d\u0e07\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", + "Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", + "Trend Analyzer": "\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e41\u0e19\u0e27\u0e42\u0e19\u0e49\u0e21", + "Trial Balance": "\u0e07\u0e1a\u0e17\u0e14\u0e25\u0e2d\u0e07", + "Update bank payment dates with journals.": "\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Voucher Import Tool": "\u0e41\u0e25\u0e30\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25", + "e.g. Bank, Cash, Credit Card": "\u0e40\u0e0a\u0e48\u0e19\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23, \u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14, \u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15" +} \ No newline at end of file diff --git a/buying/doctype/purchase_common/locale/th-doc.json b/buying/doctype/purchase_common/locale/th-doc.json new file mode 100644 index 0000000000..9b85048a23 --- /dev/null +++ b/buying/doctype/purchase_common/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Common": "\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e32\u0e21\u0e31\u0e0d" +} \ No newline at end of file diff --git a/buying/doctype/purchase_common/locale/th-py.json b/buying/doctype/purchase_common/locale/th-py.json new file mode 100644 index 0000000000..b2471b6d30 --- /dev/null +++ b/buying/doctype/purchase_common/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "Hey there! You need to put at least one item in \\\t\t\t\tthe item table.": "Hey there! \u0e04\u0e38\u0e13\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e43\u0e2a\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19 \\ \u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/buying/doctype/purchase_order/locale/th-doc.json b/buying/doctype/purchase_order/locale/th-doc.json new file mode 100644 index 0000000000..9352c20429 --- /dev/null +++ b/buying/doctype/purchase_order/locale/th-doc.json @@ -0,0 +1,92 @@ +{ + "% Billed": "\u0e08\u0e33\u0e19\u0e27\u0e19%", + "% Received": "\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a%", + "% of materials billed against this Purchase Order.": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e19\u0e35\u0e49", + "% of materials received against this Purchase Order": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e19\u0e35\u0e49", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Calculate Tax": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e31\u0e15\u0e23\u0e32 (\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e17\u0e35\u0e48\u0e21\u0e35 "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d" \u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1b\u0e47\u0e19)", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Currency & Price List": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e30\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Exchange Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Get Last Purchase Rate": "\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e2b\u0e49\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Get Tax Detail": "\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Grand Total (Import)": "\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e43\u0e19\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", + "In Words": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07", + "In Words will be visible once you save the Purchase Order.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "In Words(Import)": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Instructions": "\u0e04\u0e33\u0e41\u0e19\u0e30\u0e19\u0e33", + "Is Subcontracted": "\u0e40\u0e2b\u0e21\u0e32", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "Net Total (Import)": "\u0e23\u0e27\u0e21\u0e2a\u0e38\u0e17\u0e18\u0e34 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Net Total*": "* \u0e2a\u0e38\u0e17\u0e18\u0e34", + "No": "\u0e44\u0e21\u0e48", + "PO": "PO", + "Payment Terms": "\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Exchange Rate": "\u0e23\u0e32\u0e04\u0e32\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d", + "Purchase Order": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order Date": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order Items": "\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order Items Supplied": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Purchase Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Rate at which supplier's currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Raw Material Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a", + "Re-Calculate Values": "\u0e04\u0e48\u0e32\u0e04\u0e33\u0e19\u0e27\u0e13\u0e43\u0e2b\u0e21\u0e48", + "Ref SQ": "SQ Ref", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Required raw materials issued to the supplier for producing a sub - contracted item.": "\u0e15\u0e49\u0e2d\u0e07\u0e2d\u0e2d\u0e01\u0e27\u0e31\u0e15\u0e16\u200b\u200b\u0e38\u0e14\u0e34\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e22\u0e48\u0e2d\u0e22 - \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e0d\u0e0d\u0e32", + "Rounded Total": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21", + "Select Material Request": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Select Supplier Quotation": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the relevant company name if you have multiple companies": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Series": "\u0e0a\u0e38\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stopped": "\u0e2b\u0e22\u0e38\u0e14", + "Submitted": "Submitted", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier (vendor) name as entered in supplier master": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d (\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22) \u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e43\u0e19\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a", + "Supplier Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier's currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c", + "Tax Calculation": "\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35", + "Taxes": "\u0e20\u0e32\u0e29\u0e35", + "Taxes and Charges Added": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21", + "Taxes and Charges Added (Import)": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Taxes and Charges Deducted": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01", + "Taxes and Charges Deducted (Import)": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions HTML": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02 HTML", + "Terms and Conditions1": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30 Conditions1", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Total Tax*": "* \u0e20\u0e32\u0e29\u0e35\u0e23\u0e27\u0e21", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Yes": "\u0e43\u0e0a\u0e48", + "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.": "\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e2b\u0e25\u0e32\u0e22 \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e02\u0e2d\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e42\u0e14\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", + "You can make a purchase order from multiple Supplier Quotations. Select Supplier Quotations one by one and click on the button below.": "\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e32\u0e01\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c\u0e2b\u0e25\u0e32\u0e22\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e42\u0e14\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07" +} \ No newline at end of file diff --git a/buying/doctype/purchase_order_item/locale/th-doc.json b/buying/doctype/purchase_order_item/locale/th-doc.json new file mode 100644 index 0000000000..1f271beed7 --- /dev/null +++ b/buying/doctype/purchase_order_item/locale/th-doc.json @@ -0,0 +1,37 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Amount*": "* \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Billed Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Discount %": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14%", + "If Supplier Part Number exists for given Item, it gets stored here": "\u0e2b\u0e32\u0e01\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Material Request Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Material Request Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e44\u0e21\u0e48\u0e21\u0e35", + "Material Request No": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e44\u0e21\u0e48\u0e21\u0e35", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Prevdoc DocType": "DocType Prevdoc", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Purchase Order Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Rate ": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32", + "Received Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a", + "Ref Rate ": "\u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Ref Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Reqd By Date": "reqd \u0e42\u0e14\u0e22\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Stock Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2b\u0e38\u0e49\u0e19", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Supplier Part Number": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e0a\u0e34\u0e49\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Quotation Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e08\u0e32\u0e01\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e15\u0e23\u0e34\u0e07\u0e41\u0e25\u0e30\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e43\u0e19 field.Used \u0e19\u0e35\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "UOM": "UOM", + "UOM Conversion Factor": "\u0e1b\u0e31\u0e08\u0e08\u0e31\u0e22\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07 UOM", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/buying/doctype/purchase_order_item_supplied/locale/th-doc.json b/buying/doctype/purchase_order_item_supplied/locale/th-doc.json new file mode 100644 index 0000000000..5a66533f8e --- /dev/null +++ b/buying/doctype/purchase_order_item_supplied/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "BOM Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 BOM \u0e44\u0e21\u0e48\u0e21\u0e35", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Conversion Factor": "\u0e1b\u0e31\u0e08\u0e08\u0e31\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Purchase Order Item Supplied": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Raw Material Item Code": "\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e14\u0e34\u0e1a\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Reference Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Required Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23", + "Stock Uom": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01" +} \ No newline at end of file diff --git a/buying/doctype/purchase_receipt_item_supplied/locale/th-doc.json b/buying/doctype/purchase_receipt_item_supplied/locale/th-doc.json new file mode 100644 index 0000000000..9de008fbb8 --- /dev/null +++ b/buying/doctype/purchase_receipt_item_supplied/locale/th-doc.json @@ -0,0 +1,16 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "BOM Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 BOM \u0e44\u0e21\u0e48\u0e21\u0e35", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Consumed Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e42\u0e20\u0e04", + "Conversion Factor": "\u0e1b\u0e31\u0e08\u0e08\u0e31\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07", + "Current Stock": "\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Purchase Receipt Item Supplied": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Raw Material Item Code": "\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e14\u0e34\u0e1a\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Reference Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Required Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23", + "Stock Uom": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01" +} \ No newline at end of file diff --git a/buying/doctype/purchase_request/locale/_messages_doc.json b/buying/doctype/purchase_request/locale/_messages_doc.json new file mode 100644 index 0000000000..16b7f31187 --- /dev/null +++ b/buying/doctype/purchase_request/locale/_messages_doc.json @@ -0,0 +1,41 @@ +[ + "% Ordered", + "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template", + "IDT", + "Select Terms and Conditions", + "Draft", + "Name of the entity who has requested for the Purchase Requisition", + "Status", + "Purchase Request", + "Cancel Reason", + "Terms and Conditions", + "Get Terms and Conditions", + "Company", + "Requested By", + "Amended From", + "File List", + "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field", + "Remarks", + "Sales Order No", + "Buying", + "To manage multiple series please go to Setup > Manage Series", + "Items", + "Pull Sales Order Items", + "Submitted", + "Fiscal Year", + "Stopped", + "Cancelled", + "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.", + "Letter Head", + "Amendment Date", + "The date at which current entry is made in system.", + "Transaction Date", + "Select the relevant company name if you have multiple companies", + "Series", + "The date at which current entry is corrected in the system.", + "Purchase Requisition Details", + "More Info", + "One or multiple Sales Order no which generated this Purchase Requisition", + "Terms and Conditions Content", + "% of materials ordered against this Purchase Requisition" +] \ No newline at end of file diff --git a/buying/doctype/purchase_request/locale/th-doc.json b/buying/doctype/purchase_request/locale/th-doc.json new file mode 100644 index 0000000000..5b604e8ebd --- /dev/null +++ b/buying/doctype/purchase_request/locale/th-doc.json @@ -0,0 +1,41 @@ +{ + "% Ordered": "\u0e2a\u0e31\u0e48\u0e07%", + "% of materials ordered against this Purchase Requisition": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e40\u0e1a\u0e34\u0e01\u0e19\u0e35\u0e49", + "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e1a\u0e34\u0e01\u0e0b\u0e37\u0e49\u0e2d \u0e19\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e19\u0e35\u0e49\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e15\u0e23\u0e35\u0e22\u0e21\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e41\u0e25\u0e30\u0e43\u0e0a\u0e49\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", + "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field": "\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e40\u0e1a\u0e34\u0e01\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e42\u0e15\u0e49\u0e15\u0e2d\u0e1a\u0e08\u0e30\u0e02\u0e2d\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e0b\u0e36\u0e48\u0e07\u0e08\u0e30\u0e2a\u0e30\u0e17\u0e49\u0e2d\u0e19\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e47\u0e19\u0e43\u0e19\u0e14\u0e49\u0e32\u0e19\u0e19\u0e35\u0e49", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.": "\u0e22\u0e37\u0e48\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e02\u0e2d\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "IDT": "IDT", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name of the entity who has requested for the Purchase Requisition": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e1a\u0e34\u0e01\u0e0b\u0e37\u0e49\u0e2d", + "One or multiple Sales Order no which generated this Purchase Requisition": "\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e25\u0e32\u0e22 no \u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e0b\u0e36\u0e48\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e02\u0e2d\u0e0b\u0e37\u0e49\u0e2d\u0e19\u0e35\u0e49", + "Pull Sales Order Items": "\u0e14\u0e36\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Purchase Request": "\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e2d", + "Purchase Requisition Details": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e43\u0e1a\u0e40\u0e1a\u0e34\u0e01", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Requested By": "\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e08\u0e32\u0e01", + "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the relevant company name if you have multiple companies": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Series": "\u0e0a\u0e38\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stopped": "\u0e2b\u0e22\u0e38\u0e14", + "Submitted": "Submitted", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions Content": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Transaction Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/_messages_doc.json b/buying/doctype/purchase_request_item/locale/_messages_doc.json new file mode 100644 index 0000000000..a8706dc070 --- /dev/null +++ b/buying/doctype/purchase_request_item/locale/_messages_doc.json @@ -0,0 +1,19 @@ +[ + "Item Name", + "Description", + "Required Date", + "Lead Time Date", + "Brand", + "Ordered Qty", + "Page Break", + "Stock UOM", + "Item Group", + "Min Order Qty", + "Purchase Request Item", + "Warehouse", + "Projected Qty", + "Sales Order No", + "Item Code", + "Buying", + "Quantity" +] \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/th-doc.json b/buying/doctype/purchase_request_item/locale/th-doc.json new file mode 100644 index 0000000000..2165e830cb --- /dev/null +++ b/buying/doctype/purchase_request_item/locale/th-doc.json @@ -0,0 +1,19 @@ +{ + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Lead Time Date": "\u0e19\u0e33\u0e27\u0e31\u0e19\u0e40\u0e27\u0e25\u0e32", + "Min Order Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e31\u0e49\u0e19\u0e15\u0e48\u0e33", + "Ordered Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e31\u0e48\u0e07", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Projected Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e44\u0e27\u0e49", + "Purchase Request Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Required Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23", + "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/buying/doctype/quality_inspection/locale/th-doc.json b/buying/doctype/quality_inspection/locale/th-doc.json new file mode 100644 index 0000000000..91dd2d377d --- /dev/null +++ b/buying/doctype/quality_inspection/locale/th-doc.json @@ -0,0 +1,27 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Batch No": "\u0e0a\u0e38\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Delivery Note No": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Get Specification Details": "\u0e14\u0e39\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e40\u0e1b\u0e04", + "In Process": "\u0e43\u0e19\u0e01\u0e23\u0e30\u0e1a\u0e27\u0e19\u0e01\u0e32\u0e23", + "Incoming": "\u0e02\u0e32\u0e40\u0e02\u0e49\u0e32", + "Inspected By": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e42\u0e14\u0e22", + "Inspection Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Serial No": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 Serial \u0e44\u0e21\u0e48\u0e21\u0e35", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Outgoing": "\u0e02\u0e32\u0e2d\u0e2d\u0e01", + "Purchase Receipt No": "\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e0b\u0e37\u0e49\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "QA Inspection": "QA \u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a", + "QAI/11-12/": "QAI/11-12 /", + "Quality Inspection": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e", + "Quality Inspection Readings": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e\u0e01\u0e32\u0e23\u0e2d\u0e48\u0e32\u0e19", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Report Date": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Sample Size": "\u0e02\u0e19\u0e32\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e25\u0e38\u0e48\u0e21\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", + "Specification Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e40\u0e1b\u0e04", + "Verified By": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e42\u0e14\u0e22" +} \ No newline at end of file diff --git a/buying/doctype/quality_inspection_reading/locale/th-doc.json b/buying/doctype/quality_inspection_reading/locale/th-doc.json new file mode 100644 index 0000000000..5b981aa97c --- /dev/null +++ b/buying/doctype/quality_inspection_reading/locale/th-doc.json @@ -0,0 +1,19 @@ +{ + "Acceptance Criteria": "\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e01\u0e32\u0e23\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a", + "Accepted": "\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Parameter": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c", + "Quality Inspection Reading": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e\u0e01\u0e32\u0e23\u0e2d\u0e48\u0e32\u0e19", + "Reading 1": "Reading 1", + "Reading 10": "\u0e2d\u0e48\u0e32\u0e19 10", + "Reading 2": "Reading 2", + "Reading 3": "Reading 3", + "Reading 4": "Reading 4", + "Reading 5": "Reading 5", + "Reading 6": "Reading 6", + "Reading 7": "\u0e2d\u0e48\u0e32\u0e19 7", + "Reading 8": "\u0e2d\u0e48\u0e32\u0e19 8", + "Reading 9": "\u0e2d\u0e48\u0e32\u0e19 9", + "Rejected": "\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30" +} \ No newline at end of file diff --git a/buying/doctype/supplier/locale/th-doc.json b/buying/doctype/supplier/locale/th-doc.json new file mode 100644 index 0000000000..de858bab22 --- /dev/null +++ b/buying/doctype/supplier/locale/th-doc.json @@ -0,0 +1,27 @@ +{ + "Address & Contacts": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d &", + "Address Desc": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Address HTML": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48 HTML", + "Basic Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Communication HTML": "HTML \u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact Desc": "Desc \u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact HTML": "HTML \u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Credit Days": "\u0e27\u0e31\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Default Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Enter the company name under which Account Head will be created for this Supplier": "\u0e1b\u0e49\u0e2d\u0e19\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e20\u0e32\u0e22\u0e43\u0e15\u0e49\u0e0b\u0e36\u0e48\u0e07\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e19\u0e35\u0e49", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2b\u0e25\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "SUPP": "SUPP", + "SUPP/10-11/": "SUPP/10-11 /", + "Series": "\u0e0a\u0e38\u0e14", + "Statutory info and other general information about your Supplier": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e15\u0e32\u0e21\u0e01\u0e0e\u0e2b\u0e21\u0e32\u0e22\u0e41\u0e25\u0e30\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier of Goods or Services.": "\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "This currency will get fetched in Purchase transactions of this supplier": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e2b\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e19\u0e35\u0e49", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/buying/doctype/supplier/locale/th-py.json b/buying/doctype/supplier/locale/th-py.json new file mode 100644 index 0000000000..7932e50f5f --- /dev/null +++ b/buying/doctype/supplier/locale/th-py.json @@ -0,0 +1,5 @@ +{ + "A Customer exists with same name": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e35\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19", + "Created Account Head: ": "\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e44\u0e27\u0e49:", + "Created Group ": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e44\u0e27\u0e49" +} \ No newline at end of file diff --git a/buying/doctype/supplier_quotation/locale/th-doc.json b/buying/doctype/supplier_quotation/locale/th-doc.json new file mode 100644 index 0000000000..df553c7db8 --- /dev/null +++ b/buying/doctype/supplier_quotation/locale/th-doc.json @@ -0,0 +1,78 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Calculate Tax": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e31\u0e15\u0e23\u0e32 (\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e17\u0e35\u0e48\u0e21\u0e35 "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d" \u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1b\u0e47\u0e19)", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Currency & Price List": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e30\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Exchange Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Get Tax Detail": "\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Grand Total (Import)": "\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e43\u0e19\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", + "In Words": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07", + "In Words will be visible once you save the Purchase Order.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "In Words(Import)": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Is Subcontracted": "\u0e40\u0e2b\u0e21\u0e32", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "Net Total (Import)": "\u0e23\u0e27\u0e21\u0e2a\u0e38\u0e17\u0e18\u0e34 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Net Total*": "* \u0e2a\u0e38\u0e17\u0e18\u0e34", + "No": "\u0e44\u0e21\u0e48", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Exchange Rate": "\u0e23\u0e32\u0e04\u0e32\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d", + "Purchase Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Quotation Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotation Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Rate at which supplier's currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Re-Calculate Values": "\u0e04\u0e48\u0e32\u0e04\u0e33\u0e19\u0e27\u0e13\u0e43\u0e2b\u0e21\u0e48", + "Rounded Total": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21", + "SQTN": "SQTN", + "Select Material Request": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the relevant company name if you have multiple companies": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Series": "\u0e0a\u0e38\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stopped": "\u0e2b\u0e22\u0e38\u0e14", + "Submitted": "Submitted", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier (vendor) name as entered in supplier master": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d (\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22) \u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e43\u0e19\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a", + "Supplier Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier's currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c", + "Tax Calculation": "\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35", + "Taxes": "\u0e20\u0e32\u0e29\u0e35", + "Taxes and Charges Added": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21", + "Taxes and Charges Added (Import)": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Taxes and Charges Deducted": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01", + "Taxes and Charges Deducted (Import)": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions HTML": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02 HTML", + "Terms and Conditions1": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30 Conditions1", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Total Tax*": "* \u0e20\u0e32\u0e29\u0e35\u0e23\u0e27\u0e21", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Yes": "\u0e43\u0e0a\u0e48", + "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.": "\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e2b\u0e25\u0e32\u0e22 \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e02\u0e2d\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e42\u0e14\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07" +} \ No newline at end of file diff --git a/buying/doctype/supplier_quotation_item/locale/th-doc.json b/buying/doctype/supplier_quotation_item/locale/th-doc.json new file mode 100644 index 0000000000..62e143b34b --- /dev/null +++ b/buying/doctype/supplier_quotation_item/locale/th-doc.json @@ -0,0 +1,29 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Amount*": "* \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Discount %": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14%", + "If Supplier Part Number exists for given Item, it gets stored here": "\u0e2b\u0e32\u0e01\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Material Request Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Material Request Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e44\u0e21\u0e48\u0e21\u0e35", + "Material Request No": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e44\u0e21\u0e48\u0e21\u0e35", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Prevdoc DocType": "DocType Prevdoc", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Rate ": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32", + "Ref Rate ": "\u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Ref Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Supplier Part Number": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e0a\u0e34\u0e49\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Quotation Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e08\u0e32\u0e01\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e15\u0e23\u0e34\u0e07\u0e41\u0e25\u0e30\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e43\u0e19 field.Used \u0e19\u0e35\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "UOM": "UOM", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/buying/module_def/buying/locale/th-doc.json b/buying/module_def/buying/locale/th-doc.json new file mode 100644 index 0000000000..b448526c5b --- /dev/null +++ b/buying/module_def/buying/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Buying Home": "\u0e0b\u0e37\u0e49\u0e2d\u0e1a\u0e49\u0e32\u0e19", + "Purchase Analytics": "Analytics \u0e0b\u0e37\u0e49\u0e2d", + "Supplier of Goods or Services.": "\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/buying/page/buying_home/locale/th-js.json b/buying/page/buying_home/locale/th-js.json new file mode 100644 index 0000000000..ff77984cea --- /dev/null +++ b/buying/page/buying_home/locale/th-js.json @@ -0,0 +1,33 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "All Addresses.": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Contacts.": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Products or Services.": "\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Analytics": "Analytics", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Documents": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Helper for managing return of goods (sales or purchase)": "\u0e1c\u0e39\u0e49\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e19\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e2b\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e32\u0e23\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e02\u0e2d\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 (\u0e02\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e0b\u0e37\u0e49\u0e2d)", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Masters": "\u0e42\u0e17", + "Material Request": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Purchase Analytics": "Analytics \u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Orders given to Suppliers.": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e0b\u0e37\u0e49\u0e2d\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22", + "Purchase Returns": "\u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32", + "Request for purchase.": "\u0e02\u0e2d\u0e0b\u0e37\u0e49\u0e2d", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier classification.": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier database.": "\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Tax Template for Purchase": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d", + "Template of terms or contract.": "\u0e41\u0e21\u0e48\u0e02\u0e2d\u0e07\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e2a\u0e31\u0e0d\u0e0d\u0e32", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", + "Track Quotations received from Suppliers.": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e08\u0e32\u0e01\u0e1c\u0e39\u0e49\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Tree of item classification": "\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Trend Analyzer": "\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e41\u0e19\u0e27\u0e42\u0e19\u0e49\u0e21" +} \ No newline at end of file diff --git a/controllers/locale/th-py.json b/controllers/locale/th-py.json new file mode 100644 index 0000000000..29c5f96b14 --- /dev/null +++ b/controllers/locale/th-py.json @@ -0,0 +1,6 @@ +{ + " cannot be 0": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e1b\u0e47\u0e19 0", + "Please enter valid ": "\u0e01\u0e23\u0e38\u0e13\u0e32\u0e01\u0e23\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07", + "Please specify a valid": "\u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07", + "Row": "\u0e41\u0e16\u0e27" +} \ No newline at end of file diff --git a/home/doctype/company_control/locale/th-doc.json b/home/doctype/company_control/locale/th-doc.json new file mode 100644 index 0000000000..885d0f94ef --- /dev/null +++ b/home/doctype/company_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Company Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Home": "\u0e1a\u0e49\u0e32\u0e19" +} \ No newline at end of file diff --git a/home/doctype/feed/locale/th-doc.json b/home/doctype/feed/locale/th-doc.json new file mode 100644 index 0000000000..0d2bf1730d --- /dev/null +++ b/home/doctype/feed/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Color": "\u0e2a\u0e35", + "Doc Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e2b\u0e21\u0e2d", + "Doc Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17 Doc", + "Feed": "\u0e01\u0e34\u0e19", + "Feed Type": "\u0e1f\u0e35\u0e14\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Full Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e15\u0e47\u0e21", + "Home": "\u0e1a\u0e49\u0e32\u0e19", + "Subject": "\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07" +} \ No newline at end of file diff --git a/home/doctype/home_control/locale/th-doc.json b/home/doctype/home_control/locale/th-doc.json new file mode 100644 index 0000000000..3fce0b9f07 --- /dev/null +++ b/home/doctype/home_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Home": "\u0e1a\u0e49\u0e32\u0e19", + "Home Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01" +} \ No newline at end of file diff --git a/home/module_def/home/locale/th-doc.json b/home/module_def/home/locale/th-doc.json new file mode 100644 index 0000000000..85f2bac1e6 --- /dev/null +++ b/home/module_def/home/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Activity": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", + "Attributions": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Desktop": "\u0e2a\u0e01\u0e4c\u0e17\u0e47\u0e2d\u0e1b", + "Event Updates": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c", + "Latest Updates": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "My Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e02\u0e2d\u0e07\u0e09\u0e31\u0e19", + "dashboard": "\u0e2b\u0e19\u0e49\u0e32\u0e1b\u0e31\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/appraisal/locale/th-doc.json b/hr/doctype/appraisal/locale/th-doc.json new file mode 100644 index 0000000000..30a0796ee5 --- /dev/null +++ b/hr/doctype/appraisal/locale/th-doc.json @@ -0,0 +1,28 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Any other comments, noteworthy effort that should go in the records.": "\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e04\u0e27\u0e32\u0e21\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21\u0e17\u0e35\u0e48\u0e19\u0e48\u0e32\u0e2a\u0e31\u0e07\u0e40\u0e01\u0e15\u0e27\u0e48\u0e32\u0e04\u0e27\u0e23\u0e08\u0e30\u0e44\u0e1b\u0e43\u0e19\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01", + "Appraisal": "\u0e01\u0e32\u0e23\u0e15\u0e35\u0e23\u0e32\u0e04\u0e32", + "Appraisal Goals": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Appraisal Template": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Calculate Total Score": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e04\u0e30\u0e41\u0e19\u0e19\u0e23\u0e27\u0e21", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Comments": "\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Completed": "\u0e40\u0e2a\u0e23\u0e47\u0e08", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Employee Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "End Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "For Employee": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "For Employee Name": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Goals": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Other Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Select template from which you want to get the Goals": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Select the Employee for whom you are creating the Appraisal.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e19\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Start Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Submitted": "Submitted", + "Total Score (Out of 5)": "\u0e04\u0e30\u0e41\u0e19\u0e19\u0e23\u0e27\u0e21 (out of 5)" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_goal/locale/th-doc.json b/hr/doctype/appraisal_goal/locale/th-doc.json new file mode 100644 index 0000000000..e5a3357c9d --- /dev/null +++ b/hr/doctype/appraisal_goal/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Appraisal Goal": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Goal": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Key Responsibility Area": "\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e1a\u0e1c\u0e34\u0e14\u0e0a\u0e2d\u0e1a\u0e2b\u0e25\u0e31\u0e01", + "Score (0-5)": "\u0e04\u0e30\u0e41\u0e19\u0e19 (0-5)", + "Score Earned": "\u0e04\u0e30\u0e41\u0e19\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a", + "Weightage (%)": "weightage (%)" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template/locale/th-doc.json b/hr/doctype/appraisal_template/locale/th-doc.json new file mode 100644 index 0000000000..62780f478f --- /dev/null +++ b/hr/doctype/appraisal_template/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "Appraisal Template": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Appraisal Template Goal": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e17\u0e21\u0e40\u0e1e\u0e25\u0e17\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Appraisal Template Title": "\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Total Points": "\u0e04\u0e30\u0e41\u0e19\u0e19\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template/locale/th-py.json b/hr/doctype/appraisal_template/locale/th-py.json new file mode 100644 index 0000000000..2df9538678 --- /dev/null +++ b/hr/doctype/appraisal_template/locale/th-py.json @@ -0,0 +1,4 @@ +{ + "Not": "\u0e44\u0e21\u0e48", + "Total (sum of) points distribution for all goals should be 100.": "\u0e23\u0e27\u0e21 (\u0e1c\u0e25\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07) \u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e04\u0e30\u0e41\u0e19\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e04\u0e27\u0e23\u0e08\u0e30 100" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template_goal/locale/th-doc.json b/hr/doctype/appraisal_template_goal/locale/th-doc.json new file mode 100644 index 0000000000..c8a8f888de --- /dev/null +++ b/hr/doctype/appraisal_template_goal/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Appraisal Template Goal": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e17\u0e21\u0e40\u0e1e\u0e25\u0e17\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "KRA": "KRA", + "Key Performance Area": "\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19\u0e2b\u0e25\u0e31\u0e01", + "Weightage (%)": "weightage (%)" +} \ No newline at end of file diff --git a/hr/doctype/attendance/locale/th-doc.json b/hr/doctype/attendance/locale/th-doc.json new file mode 100644 index 0000000000..8bfb83ed21 --- /dev/null +++ b/hr/doctype/attendance/locale/th-doc.json @@ -0,0 +1,20 @@ +{ + "ATT": "ATT", + "Absent": "\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Attendance": "\u0e01\u0e32\u0e23\u0e14\u0e39\u0e41\u0e25\u0e23\u0e31\u0e01\u0e29\u0e32", + "Attendance Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21", + "Attendance Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Employee Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Half Day": "\u0e04\u0e23\u0e36\u0e48\u0e07\u0e27\u0e31\u0e19", + "Leave Type": "\u0e1d\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Present": "\u0e19\u0e33\u0e40\u0e2a\u0e19\u0e2d", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a" +} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/th-doc.json b/hr/doctype/attendance_control_panel/locale/th-doc.json new file mode 100644 index 0000000000..89225f7ce4 --- /dev/null +++ b/hr/doctype/attendance_control_panel/locale/th-doc.json @@ -0,0 +1,24 @@ +{ + "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e27\u0e31\u0e19 inbetween \u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e25\u0e30\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e08\u0e30\u0e21\u0e32\u0e43\u0e19\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e21\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Attendance Control Panel": "\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21", + "Attendance From Date": "\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Attendance To Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e40\u0e1e\u0e37\u0e48\u0e2d", + "Download Template": "\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Get Template": "\u0e23\u0e31\u0e1a\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", + "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "\u0e23\u0e31\u0e1a\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a CSV (\u0e04\u0e48\u0e32\u0e41\u0e22\u0e01\u0e08\u0e38\u0e25\u0e20\u0e32\u0e04) \u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25 format.Fill \u0e43\u0e19\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a \u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21 CSV format.All \u0e27\u0e31\u0e19 '\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48' inbetween \u0e41\u0e25\u0e30 '\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e19\u0e31\u0e14' \u0e08\u0e30\u0e21\u0e32\u0e43\u0e19\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e21\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Import": "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32", + "Import Date Format ": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32", + "Import Log": "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a", + "Import Log1": "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32 Log1", + "Overwrite": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e17\u0e31\u0e1a", + "Selected Attendance date will comes in the attendance template.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e21\u0e32\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e41\u0e21\u0e48", + "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e43\u0e2b\u0e49\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e21 "\u0e40\u0e1e\u0e34\u0e48\u0e21" \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e44\u0e1f\u0e25\u0e4c CSV \u0e17\u0e35\u0e48\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e44\u0e27\u0e49\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48 "\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14". \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e43\u0e19 CSV file.Click \u0e17\u0e35\u0e48 "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32"", + "Upload Attendance Data": "Upload \u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21", + "dd-mm-yyyy": "dd-mm-yyyy", + "dd/mm/yyyy": "\u0e27\u0e31\u0e19 / \u0e40\u0e14\u0e37\u0e2d\u0e19 / \u0e1b\u0e35", + "mm/dd/yy": "dd / mm / yyyy", + "mm/dd/yyyy": "dd / mm / \u0e1b\u0e35", + "yyyy-mm-dd": "YYYY-MM-DD" +} \ No newline at end of file diff --git a/hr/doctype/branch/locale/th-doc.json b/hr/doctype/branch/locale/th-doc.json new file mode 100644 index 0000000000..267529bc2a --- /dev/null +++ b/hr/doctype/branch/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/hr/doctype/deduction_type/locale/th-doc.json b/hr/doctype/deduction_type/locale/th-doc.json new file mode 100644 index 0000000000..d28aa03601 --- /dev/null +++ b/hr/doctype/deduction_type/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Deduction Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2b\u0e31\u0e01", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/hr/doctype/department/locale/th-doc.json b/hr/doctype/department/locale/th-doc.json new file mode 100644 index 0000000000..acbd47d776 --- /dev/null +++ b/hr/doctype/department/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Days for which Holidays are blocked for this department.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e08\u0e30\u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e1c\u0e19\u0e01\u0e19\u0e35\u0e49", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Leave Block List": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/hr/doctype/designation/locale/th-doc.json b/hr/doctype/designation/locale/th-doc.json new file mode 100644 index 0000000000..d82a0d787c --- /dev/null +++ b/hr/doctype/designation/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/hr/doctype/earning_type/locale/th-doc.json b/hr/doctype/earning_type/locale/th-doc.json new file mode 100644 index 0000000000..0bd9de158c --- /dev/null +++ b/hr/doctype/earning_type/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Earning Type": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Exemption Limit": "\u0e27\u0e07\u0e40\u0e07\u0e34\u0e19\u0e02\u0e49\u0e2d\u0e22\u0e01\u0e40\u0e27\u0e49\u0e19", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "No": "\u0e44\u0e21\u0e48", + "Taxable": "\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e2a\u0e35\u0e22\u0e20\u0e32\u0e29\u0e35", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/hr/doctype/employee/locale/th-doc.json b/hr/doctype/employee/locale/th-doc.json new file mode 100644 index 0000000000..0f6078f542 --- /dev/null +++ b/hr/doctype/employee/locale/th-doc.json @@ -0,0 +1,117 @@ +{ + "To setup, please go to Setup > Naming Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "A+": "+", + "A-": "-", + "AB+": "AB +", + "AB-": "AB-", + "Active": "\u0e04\u0e25\u0e48\u0e2d\u0e07\u0e41\u0e04\u0e25\u0e48\u0e27", + "Applicable Holiday List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a", + "B+": "B +", + "B-": "B-", + "Bank": "\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Bank A/C No.": "\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23 / \u0e40\u0e25\u0e02\u0e17\u0e35\u0e48 C", + "Bank Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Basic Information": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "Better Prospects": "\u0e2d\u0e19\u0e32\u0e04\u0e15\u0e17\u0e35\u0e48\u0e14\u0e35\u0e01\u0e27\u0e48\u0e32", + "Bio": "\u0e44\u0e1a\u0e42\u0e2d", + "Blood Group": "\u0e01\u0e23\u0e38\u0e4a\u0e1b\u0e40\u0e25\u0e37\u0e2d\u0e14", + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "Career History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19", + "Cash": "\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14", + "Cell Number": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e0b\u0e25\u0e25\u0e4c", + "Cheque": "\u0e40\u0e0a\u0e47\u0e04", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contract End Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14\u0e2a\u0e31\u0e0d\u0e0d\u0e32", + "Current Accommodation Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e02\u0e2d\u0e07\u0e17\u0e35\u0e48\u0e1e\u0e31\u0e01\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Current Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Date Of Retirement": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e01\u0e29\u0e35\u0e22\u0e13\u0e2d\u0e32\u0e22\u0e38", + "Date of Birth": "\u0e27\u0e31\u0e19\u0e40\u0e01\u0e34\u0e14", + "Date of Issue": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e2d\u0e01", + "Date of Joining": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Divorced": "\u0e2b\u0e22\u0e48\u0e32\u0e23\u0e49\u0e32\u0e07", + "EMP/": "EMP /", + "ESIC CARD No": "CARD ESIC \u0e44\u0e21\u0e48\u0e21\u0e35", + "Educational Qualification": "\u0e27\u0e38\u0e12\u0e34\u0e01\u0e32\u0e23\u0e28\u0e36\u0e01\u0e29\u0e32", + "Educational Qualification Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e38\u200b\u200b\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e28\u0e36\u0e01\u0e29\u0e32", + "Email (By company)": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c (\u0e42\u0e14\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 )", + "Emergency Contact Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e43\u0e19\u0e01\u0e23\u0e13\u0e35\u0e09\u0e38\u0e01\u0e40\u0e09\u0e34\u0e19", + "Emergency Phone Number": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c\u0e09\u0e38\u0e01\u0e40\u0e09\u0e34\u0e19", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Employee External Work History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01", + "Employee Internal Work Historys": "Historys \u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e20\u0e32\u0e22\u0e43\u0e19", + "Employee Number": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employment Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e08\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19", + "Employment Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e08\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19", + "Encashment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14", + "Exit": "\u0e17\u0e32\u0e07\u0e2d\u0e2d\u0e01", + "Exit Interview Details": "\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e21\u0e20\u0e32\u0e29\u0e13\u0e4c", + "Family Background": "\u0e20\u0e39\u0e21\u0e34\u0e2b\u0e25\u0e31\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e23\u0e2d\u0e1a\u0e04\u0e23\u0e31\u0e27", + "Feedback": "\u0e02\u0e49\u0e2d\u0e40\u0e2a\u0e19\u0e2d\u0e41\u0e19\u0e30", + "Female": "\u0e2b\u0e0d\u0e34\u0e07", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Final Confirmation Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e04\u0e23\u0e31\u0e49\u0e07\u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22", + "Full Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e15\u0e47\u0e21", + "Gender": "\u0e40\u0e1e\u0e28", + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "Gratuity LIC ID": "ID LIC \u0e1a\u0e33\u0e40\u0e2b\u0e19\u0e47\u0e08", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Health Concerns": "\u0e04\u0e27\u0e32\u0e21\u0e01\u0e31\u0e07\u0e27\u0e25\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2a\u0e38\u0e02\u0e20\u0e32\u0e1e", + "Health Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e38\u0e02\u0e20\u0e32\u0e1e", + "Held On": "\u0e08\u0e31\u0e14\u0e02\u0e36\u0e49\u0e19\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Here you can maintain family details like name and occupation of parent, spouse and children": "\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e23\u0e31\u0e01\u0e29\u0e32\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e0a\u0e48\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e04\u0e23\u0e2d\u0e1a\u0e04\u0e23\u0e31\u0e27\u0e41\u0e25\u0e30\u0e2d\u0e32\u0e0a\u0e35\u0e1e\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07\u0e04\u0e39\u0e48\u0e2a\u0e21\u0e23\u0e2a\u0e41\u0e25\u0e30\u0e40\u0e14\u0e47\u0e01", + "Here you can maintain height, weight, allergies, medical concerns etc": "\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e23\u0e31\u0e01\u0e29\u0e32\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e39\u0e07\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01, \u0e20\u0e39\u0e21\u0e34\u0e41\u0e1e\u0e49, \u0e2f\u0e25\u0e2f \u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e14\u0e49\u0e32\u0e19\u0e01\u0e32\u0e23\u0e41\u0e1e\u0e17\u0e22\u0e4c", + "History In Company": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e43\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Holiday List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Image": "\u0e20\u0e32\u0e1e", + "Image View": "\u0e14\u0e39\u0e20\u0e32\u0e1e", + "Job Profile": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e07\u0e32\u0e19", + "Leave Encashed?": "\u0e1d\u0e32\u0e01 Encashed?", + "Left": "\u0e0b\u0e49\u0e32\u0e22", + "Male": "\u0e0a\u0e32\u0e22", + "Marital Status": "\u0e2a\u0e16\u0e32\u0e19\u0e20\u0e32\u0e1e\u0e01\u0e32\u0e23\u0e2a\u0e21\u0e23\u0e2a", + "Married": "\u0e41\u0e15\u0e48\u0e07\u0e07\u0e32\u0e19", + "Mr": "\u0e19\u0e32\u0e22", + "Ms": "ms", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "New Workplace": "\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19\u0e43\u0e2b\u0e21\u0e48", + "No": "\u0e44\u0e21\u0e48", + "Notice - Number of Days": "\u0e40\u0e27\u0e1b\u0e44\u0e0b\u0e14\u0e4c - \u0e08\u0e33\u0e19\u0e27\u0e19\u0e27\u0e31\u0e19", + "O+": "+ O", + "O-": "O-", + "Owned": "\u0e40\u0e08\u0e49\u0e32\u0e02\u0e2d\u0e07", + "PAN Number": "\u0e08\u0e33\u0e19\u0e27\u0e19 PAN", + "PF Number": "\u0e08\u0e33\u0e19\u0e27\u0e19 PF", + "Passport Number": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07", + "Permanent Accommodation Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e17\u0e35\u0e48\u0e1e\u0e31\u0e01\u0e2d\u0e32\u0e28\u0e31\u0e22\u0e16\u0e32\u0e27\u0e23", + "Permanent Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e16\u0e32\u0e27\u0e23", + "Person To Be Contacted": "\u0e04\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Personal Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e48\u0e27\u0e19\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Personal Email": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27", + "Place of Issue": "\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e23\u0e2d\u0e07", + "Previous Work Experience": "\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32", + "Provide email id registered in company": "\u0e43\u0e2b\u0e49 ID \u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e25\u0e07\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e43\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Reason for Leaving": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e17\u0e35\u0e48\u0e25\u0e32\u0e2d\u0e2d\u0e01", + "Reason for Resignation": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e43\u0e19\u0e01\u0e32\u0e23\u0e25\u0e32\u0e2d\u0e2d\u0e01", + "Relation": "\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e31\u0e21\u0e1e\u0e31\u0e19\u0e18\u0e4c", + "Relieving Date": "\u0e1a\u0e23\u0e23\u0e40\u0e17\u0e32\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Rented": "\u0e40\u0e0a\u0e48\u0e32", + "Reports to": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e44\u0e1b\u0e22\u0e31\u0e07", + "Resignation Letter Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e25\u0e32\u0e2d\u0e2d\u0e01", + "Salary Information": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salary Mode": "\u0e42\u0e2b\u0e21\u0e14\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salutation": "\u0e1b\u0e23\u0e30\u0e13\u0e21", + "Scheduled Confirmation Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e01\u0e33\u0e2b\u0e19\u0e14", + "Short biography for website and other publications.": "\u0e0a\u0e35\u0e27\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e2a\u0e31\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e41\u0e25\u0e30\u0e2a\u0e34\u0e48\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Single": "\u0e40\u0e14\u0e35\u0e22\u0e27", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "System User (login) ID. If set, it will become default for all HR forms.": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e23\u0e30\u0e1a\u0e1a (login) ID \u0e16\u0e49\u0e32\u0e0a\u0e38\u0e14\u0e01\u0e47\u0e08\u0e30\u0e01\u0e25\u0e32\u0e22\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "User ID": "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "Valid Upto": "\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e40\u0e01\u0e34\u0e19", + "Widowed": "\u0e40\u0e1b\u0e47\u0e19\u0e21\u0e48\u0e32\u0e22", + "Yes": "\u0e43\u0e0a\u0e48", + "You can enter any date manually": "\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e49\u0e2d\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e43\u0e14 \u0e46 \u0e14\u0e49\u0e27\u0e22\u0e15\u0e19\u0e40\u0e2d\u0e07" +} \ No newline at end of file diff --git a/hr/doctype/employee_education/locale/th-doc.json b/hr/doctype/employee_education/locale/th-doc.json new file mode 100644 index 0000000000..8f2edf1afc --- /dev/null +++ b/hr/doctype/employee_education/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Class / Percentage": "\u0e23\u0e30\u0e14\u0e31\u0e1a / \u0e23\u0e49\u0e2d\u0e22\u0e25\u0e30", + "Employee Education": "\u0e01\u0e32\u0e23\u0e28\u0e36\u0e01\u0e29\u0e32\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Graduate": "\u0e08\u0e1a\u0e01\u0e32\u0e23\u0e28\u0e36\u0e01\u0e29\u0e32", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Level": "\u0e0a\u0e31\u0e49\u0e19", + "Major/Optional Subjects": "\u0e27\u0e34\u0e0a\u0e32\u0e40\u0e2d\u0e01 / \u0e40\u0e2a\u0e23\u0e34\u0e21", + "Post Graduate": "\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e1a\u0e01\u0e32\u0e23\u0e28\u0e36\u0e01\u0e29\u0e32", + "Qualification": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34", + "School/University": "\u0e42\u0e23\u0e07\u0e40\u0e23\u0e35\u0e22\u0e19 / \u0e21\u0e2b\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e25\u0e31\u0e22", + "Under Graduate": "\u0e20\u0e32\u0e22\u0e43\u0e15\u0e49\u0e1a\u0e31\u0e13\u0e11\u0e34\u0e15", + "Year of Passing": "\u0e1b\u0e35\u0e17\u0e35\u0e48\u0e1c\u0e48\u0e32\u0e19" +} \ No newline at end of file diff --git a/hr/doctype/employee_external_work_history/locale/th-doc.json b/hr/doctype/employee_external_work_history/locale/th-doc.json new file mode 100644 index 0000000000..ef8a46a0fc --- /dev/null +++ b/hr/doctype/employee_external_work_history/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Employee External Work History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Salary": "\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Total Experience": "\u0e1b\u0e23\u0e30\u0e2a\u0e1a\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e23\u0e27\u0e21" +} \ No newline at end of file diff --git a/hr/doctype/employee_internal_work_history/locale/th-doc.json b/hr/doctype/employee_internal_work_history/locale/th-doc.json new file mode 100644 index 0000000000..54ef82246e --- /dev/null +++ b/hr/doctype/employee_internal_work_history/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Employee Internal Work History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e20\u0e32\u0e22\u0e43\u0e19", + "From Date": "\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "To Date": "\u0e19\u0e31\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/th-doc.json b/hr/doctype/employee_training/locale/th-doc.json new file mode 100644 index 0000000000..423b367c4f --- /dev/null +++ b/hr/doctype/employee_training/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Certificate": "\u0e43\u0e1a\u0e23\u0e31\u0e1a\u0e23\u0e2d\u0e07", + "Duration": "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32", + "Employee Training": "\u0e01\u0e32\u0e23\u0e1d\u0e36\u0e01\u0e2d\u0e1a\u0e23\u0e21\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Institute / Conducted By": "\u0e2a\u0e16\u0e32\u0e1a\u0e31\u0e19\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23 / \u0e42\u0e14\u0e22", + "Location": "\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48", + "Program / Seminar Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e1b\u0e23\u0e41\u0e01\u0e23\u0e21 / \u0e2a\u0e31\u0e21\u0e21\u0e19\u0e32" +} \ No newline at end of file diff --git a/hr/doctype/employment_type/locale/th-doc.json b/hr/doctype/employment_type/locale/th-doc.json new file mode 100644 index 0000000000..0d3fefe027 --- /dev/null +++ b/hr/doctype/employment_type/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Employment Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e08\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim/locale/th-doc.json b/hr/doctype/expense_claim/locale/th-doc.json new file mode 100644 index 0000000000..60bf79b1ed --- /dev/null +++ b/hr/doctype/expense_claim/locale/th-doc.json @@ -0,0 +1,22 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Approval Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", + "Approved": "\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", + "Approver": "\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Employee Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employees Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Expense Claim": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Expense Claim Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e34\u0e19\u0e44\u0e2b\u0e21", + "Expense Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "From Employee": "\u0e08\u0e32\u0e01\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Rejected": "\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Remark": "\u0e04\u0e33\u0e1e\u0e39\u0e14", + "Total Claimed Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e23\u0e27\u0e21\u0e2d\u0e49\u0e32\u0e07", + "Total Sanctioned Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e23\u0e27\u0e21\u0e15\u0e32\u0e21\u0e17\u0e33\u0e19\u0e2d\u0e07\u0e04\u0e25\u0e2d\u0e07\u0e18\u0e23\u0e23\u0e21" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim_detail/locale/th-doc.json b/hr/doctype/expense_claim_detail/locale/th-doc.json new file mode 100644 index 0000000000..efb67d53c0 --- /dev/null +++ b/hr/doctype/expense_claim_detail/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Claim Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Expense Claim Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e34\u0e19\u0e44\u0e2b\u0e21", + "Expense Claim Type": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Expense Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Sanctioned Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e15\u0e32\u0e21\u0e17\u0e33\u0e19\u0e2d\u0e07\u0e04\u0e25\u0e2d\u0e07\u0e18\u0e23\u0e23\u0e21" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim_type/locale/th-doc.json b/hr/doctype/expense_claim_type/locale/th-doc.json new file mode 100644 index 0000000000..0706a9a1cd --- /dev/null +++ b/hr/doctype/expense_claim_type/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Expense Claim Type": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25" +} \ No newline at end of file diff --git a/hr/doctype/grade/locale/th-doc.json b/hr/doctype/grade/locale/th-doc.json new file mode 100644 index 0000000000..fd685ca9a5 --- /dev/null +++ b/hr/doctype/grade/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/hr/doctype/holiday/locale/th-doc.json b/hr/doctype/holiday/locale/th-doc.json new file mode 100644 index 0000000000..51f20b7fa8 --- /dev/null +++ b/hr/doctype/holiday/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Holiday": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/_messages_doc.json b/hr/doctype/holiday_block_list/locale/_messages_doc.json new file mode 100644 index 0000000000..e521830510 --- /dev/null +++ b/hr/doctype/holiday_block_list/locale/_messages_doc.json @@ -0,0 +1,16 @@ +[ + "Allow Users", + "Block Holidays on important days.", + "Block Days", + "HR", + "Company", + "Holiday Block List Allowed", + "Holiday Block List Dates", + "Holiday Block List", + "Stop users from making Leave Applications on following days.", + "Applies to Company", + "Holiday Block List Name", + "Year", + "If not checked, the list will have to be added to each Department where it has to be applied.", + "Allow the following users to make Leave Applications for block days." +] \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/th-doc.json b/hr/doctype/holiday_block_list/locale/th-doc.json new file mode 100644 index 0000000000..30e3ba09c6 --- /dev/null +++ b/hr/doctype/holiday_block_list/locale/th-doc.json @@ -0,0 +1,16 @@ +{ + "Allow Users": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Allow the following users to make Leave Applications for block days.": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e08\u0e30\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Applies to Company": "\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e01\u0e31\u0e1a \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Block Days": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Block Holidays on important days.": "\u0e1b\u0e34\u0e14\u0e01\u0e31\u0e49\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e43\u0e19\u0e27\u0e31\u0e19\u0e2a\u0e33\u0e04\u0e31\u0e0d", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Holiday Block List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Holiday Block List Allowed": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01 Holiday \u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e19\u0e33", + "Holiday Block List Dates": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e27\u0e31\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Holiday Block List Name": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "If not checked, the list will have to be added to each Department where it has to be applied.": "\u0e16\u0e49\u0e32\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e15\u0e48\u0e25\u0e30\u0e41\u0e1c\u0e19\u0e01\u0e17\u0e35\u0e48\u0e21\u0e31\u0e19\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49", + "Stop users from making Leave Applications on following days.": "\u0e2b\u0e22\u0e38\u0e14\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e17\u0e33\u0e41\u0e2d\u0e1e\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e17\u0e35\u0e48\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07\u0e43\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e14\u0e31\u0e07\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49", + "Year": "\u0e1b\u0e35" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_allow/locale/_messages_doc.json b/hr/doctype/holiday_block_list_allow/locale/_messages_doc.json new file mode 100644 index 0000000000..ac1046f409 --- /dev/null +++ b/hr/doctype/holiday_block_list_allow/locale/_messages_doc.json @@ -0,0 +1,5 @@ +[ + "HR", + "Allow User", + "Holiday Block List Allow" +] \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_allow/locale/th-doc.json b/hr/doctype/holiday_block_list_allow/locale/th-doc.json new file mode 100644 index 0000000000..1b1b4b18b7 --- /dev/null +++ b/hr/doctype/holiday_block_list_allow/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Allow User": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Holiday Block List Allow": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01 Holiday \u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/_messages_doc.json b/hr/doctype/holiday_block_list_date/locale/_messages_doc.json new file mode 100644 index 0000000000..4a98b98159 --- /dev/null +++ b/hr/doctype/holiday_block_list_date/locale/_messages_doc.json @@ -0,0 +1,6 @@ +[ + "HR", + "Reason", + "Holiday Block List Date", + "Block Date" +] \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/th-doc.json b/hr/doctype/holiday_block_list_date/locale/th-doc.json new file mode 100644 index 0000000000..35f09a93c8 --- /dev/null +++ b/hr/doctype/holiday_block_list_date/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Block Date": "\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Holiday Block List Date": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25" +} \ No newline at end of file diff --git a/hr/doctype/holiday_list/locale/th-doc.json b/hr/doctype/holiday_list/locale/th-doc.json new file mode 100644 index 0000000000..677ace0ffc --- /dev/null +++ b/hr/doctype/holiday_list/locale/th-doc.json @@ -0,0 +1,19 @@ +{ + "Clear Table": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e17\u0e35\u0e48\u0e0a\u0e31\u0e14\u0e40\u0e08\u0e19", + "Default": "\u0e1c\u0e34\u0e14\u0e19\u0e31\u0e14", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Friday": "\u0e27\u0e31\u0e19\u0e28\u0e38\u0e01\u0e23\u0e4c", + "Get Weekly Off Dates": "\u0e23\u0e31\u0e1a\u0e27\u0e31\u0e19\u0e1b\u0e34\u0e14\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Holiday List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Holiday List Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Holidays": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Monday": "\u0e27\u0e31\u0e19\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c", + "Saturday": "\u0e27\u0e31\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c", + "Sunday": "\u0e27\u0e31\u0e19\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c", + "Thursday": "\u0e27\u0e31\u0e19\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e1a\u0e14\u0e35", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Tuesday": "\u0e27\u0e31\u0e19\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23", + "Wednesday": "\u0e27\u0e31\u0e19\u0e1e\u0e38\u0e18", + "Weekly Off": "\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c\u0e1b\u0e34\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/job_applicant/locale/th-doc.json b/hr/doctype/job_applicant/locale/th-doc.json new file mode 100644 index 0000000000..3aab564d0f --- /dev/null +++ b/hr/doctype/job_applicant/locale/th-doc.json @@ -0,0 +1,15 @@ +{ + "Applicant Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e22\u0e37\u0e48\u0e19\u0e04\u0e33\u0e02\u0e2d", + "Applicant for a Job": "\u0e02\u0e2d\u0e23\u0e31\u0e1a\u0e07\u0e32\u0e19", + "Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Hold": "\u0e16\u0e37\u0e2d", + "Job Applicant": "\u0e1c\u0e39\u0e49\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e07\u0e32\u0e19", + "Job Opening": "\u0e40\u0e1b\u0e34\u0e14\u0e07\u0e32\u0e19", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Rejected": "\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Replied": "Replied", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Thread HTML": "HTML \u0e01\u0e23\u0e30\u0e17\u0e39\u0e49" +} \ No newline at end of file diff --git a/hr/doctype/job_opening/locale/th-doc.json b/hr/doctype/job_opening/locale/th-doc.json new file mode 100644 index 0000000000..c70f1e408c --- /dev/null +++ b/hr/doctype/job_opening/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "Closed": "\u0e1b\u0e34\u0e14", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Description of a Job Opening": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14\u0e07\u0e32\u0e19", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Job Opening": "\u0e40\u0e1b\u0e34\u0e14\u0e07\u0e32\u0e19", + "Job Title": "\u0e15\u0e33\u0e41\u0e2b\u0e19\u0e48\u0e07\u0e07\u0e32\u0e19", + "Job profile, qualifications required etc.": "\u0e07\u0e32\u0e19\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19 \u0e2f\u0e25\u0e2f", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30" +} \ No newline at end of file diff --git a/hr/doctype/leave_allocation/locale/th-doc.json b/hr/doctype/leave_allocation/locale/th-doc.json new file mode 100644 index 0000000000..e6a6961142 --- /dev/null +++ b/hr/doctype/leave_allocation/locale/th-doc.json @@ -0,0 +1,17 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Carry Forward": "Carry Forward", + "Carry Forwarded Leaves": "Carry \u0e43\u0e1a Forwarded", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Employee Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Leave Allocation": "\u0e1d\u0e32\u0e01\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Leave Type": "\u0e1d\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "New Leaves Allocated": "\u0e43\u0e2b\u0e21\u0e48\u0e43\u0e1a\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "Total Leaves Allocated": "\u0e43\u0e1a\u0e23\u0e27\u0e21\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23" +} \ No newline at end of file diff --git a/hr/doctype/leave_application/locale/th-doc.json b/hr/doctype/leave_application/locale/th-doc.json new file mode 100644 index 0000000000..0298ed249f --- /dev/null +++ b/hr/doctype/leave_application/locale/th-doc.json @@ -0,0 +1,28 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Apply / Approve Leaves": "\u0e43\u0e0a\u0e49 / \u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e43\u0e1a", + "Approved": "\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Employee Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Follow via Email": "\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e15\u0e32\u0e21", + "From Date": "\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Half Day": "\u0e04\u0e23\u0e36\u0e48\u0e07\u0e27\u0e31\u0e19", + "Leave Application": "\u0e1d\u0e32\u0e01\u0e41\u0e2d\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e0a\u0e31\u0e19", + "Leave Approver": "\u0e1d\u0e32\u0e01\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", + "Leave Balance Before Application": "\u0e1d\u0e32\u0e01\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e01\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e42\u0e1b\u0e23\u0e41\u0e01\u0e23\u0e21\u0e1b\u0e23\u0e30\u0e22\u0e38\u0e01\u0e15\u0e4c", + "Leave Type": "\u0e1d\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Leave can be approved by users with Role, \"Leave Approver\"": "\u0e1d\u0e32\u0e01\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e42\u0e14\u0e22\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1a\u0e17\u0e1a\u0e32\u0e17 "\u0e1d\u0e32\u0e01\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34"", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Rejected": "\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "To Date": "\u0e19\u0e31\u0e14", + "Total Leave Days": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/leave_application/locale/th-py.json b/hr/doctype/leave_application/locale/th-py.json new file mode 100644 index 0000000000..147f518257 --- /dev/null +++ b/hr/doctype/leave_application/locale/th-py.json @@ -0,0 +1,11 @@ +{ + " (Half Day)": "(\u0e04\u0e23\u0e36\u0e48\u0e07\u0e27\u0e31\u0e19)", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Following dates are blocked for Leave": "\u0e27\u0e31\u0e19\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2d\u0e2d\u0e01", + "Holiday": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Hurray! The day(s) on which you are applying for leave \\\t\t\t\t\tcoincide with holiday(s). You need not apply for leave.": "! Hurray \u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 (s) \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e43\u0e0a\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2d\u0e2d\u0e01 \\ \u0e15\u0e23\u0e07\u0e01\u0e31\u0e1a\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14 (s) \u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e43\u0e0a\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e2d\u0e01", + "Leave Application": "\u0e1d\u0e32\u0e01\u0e41\u0e2d\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e0a\u0e31\u0e19", + "Leave Blocked": "\u0e1d\u0e32\u0e01\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Leave by": "\u0e1d\u0e32\u0e01\u0e15\u0e32\u0e21", + "New Leave Application": "\u0e41\u0e2d\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e0a\u0e31\u0e19\u0e2d\u0e2d\u0e01\u0e43\u0e2b\u0e21\u0e48" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list/locale/th-doc.json b/hr/doctype/leave_block_list/locale/th-doc.json new file mode 100644 index 0000000000..29bf5de07e --- /dev/null +++ b/hr/doctype/leave_block_list/locale/th-doc.json @@ -0,0 +1,16 @@ +{ + "Allow Users": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Allow the following users to approve Leave Applications for block days.": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Applies to Company": "\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e01\u0e31\u0e1a \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Block Days": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Block Holidays on important days.": "\u0e1b\u0e34\u0e14\u0e01\u0e31\u0e49\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e43\u0e19\u0e27\u0e31\u0e19\u0e2a\u0e33\u0e04\u0e31\u0e0d", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "If not checked, the list will have to be added to each Department where it has to be applied.": "\u0e16\u0e49\u0e32\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e15\u0e48\u0e25\u0e30\u0e41\u0e1c\u0e19\u0e01\u0e17\u0e35\u0e48\u0e21\u0e31\u0e19\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49", + "Leave Block List": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Leave Block List Allowed": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e19\u0e33", + "Leave Block List Dates": "\u0e44\u0e21\u0e48\u0e23\u0e30\u0e1a\u0e38\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Leave Block List Name": "\u0e1d\u0e32\u0e01\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Stop users from making Leave Applications on following days.": "\u0e2b\u0e22\u0e38\u0e14\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e17\u0e33\u0e41\u0e2d\u0e1e\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e17\u0e35\u0e48\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07\u0e43\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e14\u0e31\u0e07\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49", + "Year": "\u0e1b\u0e35" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list/locale/th-py.json b/hr/doctype/leave_block_list/locale/th-py.json new file mode 100644 index 0000000000..b9248f571a --- /dev/null +++ b/hr/doctype/leave_block_list/locale/th-py.json @@ -0,0 +1,4 @@ +{ + "Block Date": "\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Date is repeated": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e0b\u0e49\u0e33\u0e41\u0e25\u0e49\u0e27\u0e0b\u0e49\u0e33\u0e2d\u0e35\u0e01" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list_allow/locale/th-doc.json b/hr/doctype/leave_block_list_allow/locale/th-doc.json new file mode 100644 index 0000000000..c58858712a --- /dev/null +++ b/hr/doctype/leave_block_list_allow/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Allow User": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Leave Block List Allow": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list_date/locale/th-doc.json b/hr/doctype/leave_block_list_date/locale/th-doc.json new file mode 100644 index 0000000000..72a39fe0d1 --- /dev/null +++ b/hr/doctype/leave_block_list_date/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Block Date": "\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Leave Block List Date": "\u0e1d\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25" +} \ No newline at end of file diff --git a/hr/doctype/leave_control_panel/locale/th-doc.json b/hr/doctype/leave_control_panel/locale/th-doc.json new file mode 100644 index 0000000000..d20d60fec3 --- /dev/null +++ b/hr/doctype/leave_control_panel/locale/th-doc.json @@ -0,0 +1,20 @@ +{ + "Allocate": "\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "Carry Forward": "Carry Forward", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Employee Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Leave Control Panel": "\u0e1d\u0e32\u0e01\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21", + "Leave Type": "\u0e1d\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Leave blank if considered for all branches": "\u0e40\u0e27\u0e49\u0e19\u0e44\u0e27\u0e49\u0e2b\u0e32\u0e01\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e2a\u0e32\u0e02\u0e32", + "Leave blank if considered for all departments": "\u0e40\u0e27\u0e49\u0e19\u0e44\u0e27\u0e49\u0e2b\u0e32\u0e01\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e43\u0e2b\u0e49\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e07\u0e32\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Leave blank if considered for all designations": "\u0e40\u0e27\u0e49\u0e19\u0e44\u0e27\u0e49\u0e2b\u0e32\u0e01\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Leave blank if considered for all employee types": "\u0e40\u0e27\u0e49\u0e19\u0e44\u0e27\u0e49\u0e2b\u0e32\u0e01\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e43\u0e2b\u0e49\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e17\u0e38\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Leave blank if considered for all grades": "\u0e40\u0e27\u0e49\u0e19\u0e44\u0e27\u0e49\u0e2b\u0e32\u0e01\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e43\u0e2b\u0e49\u0e40\u0e01\u0e23\u0e14\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "New Leaves Allocated (In Days)": "\u0e43\u0e1a\u0e43\u0e2b\u0e21\u0e48\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23 (\u0e43\u0e19\u0e27\u0e31\u0e19)", + "Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e23\u0e27\u0e21\u0e16\u0e36\u0e07\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e21\u0e14\u0e38\u0e25\u0e43\u0e19\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49\u0e2d\u0e2d\u0e01\u0e44\u0e1b\u0e43\u0e19\u0e1b\u0e35\u0e07\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e07\u0e34\u0e19" +} \ No newline at end of file diff --git a/hr/doctype/leave_type/locale/th-doc.json b/hr/doctype/leave_type/locale/th-doc.json new file mode 100644 index 0000000000..2e31f86215 --- /dev/null +++ b/hr/doctype/leave_type/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Is Carry Forward": "\u0e40\u0e1b\u0e47\u0e19 Carry Forward", + "Is Encash": "\u0e40\u0e1b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14", + "Is LWP": "LWP \u0e40\u0e1b\u0e47\u0e19", + "Leave Type": "\u0e1d\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Leave Type Name": "\u0e1d\u0e32\u0e01\u0e0a\u0e37\u0e48\u0e2d\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Max Days Leave Allowed": "\u0e27\u0e31\u0e19\u0e41\u0e21\u0e47\u0e01\u0e0b\u0e4c\u0e1d\u0e32\u0e01\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e19\u0e33", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/th-doc.json b/hr/doctype/other_income_detail/locale/th-doc.json new file mode 100644 index 0000000000..4a54cc5734 --- /dev/null +++ b/hr/doctype/other_income_detail/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Actual Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e41\u0e17\u0e49\u0e08\u0e23\u0e34\u0e07", + "Eligible Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Max. Limit": "\u0e41\u0e21\u0e47\u0e01\u0e0b\u0e4c \u0e08\u0e33\u0e01\u0e31\u0e14", + "Modified Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02", + "Other Income Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e23\u0e32\u0e22\u200b\u200b\u0e44\u0e14\u0e49\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Particulars": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Under Section": "\u0e15\u0e32\u0e21\u0e21\u0e32\u0e15\u0e23\u0e32" +} \ No newline at end of file diff --git a/hr/doctype/salary_manager/locale/th-doc.json b/hr/doctype/salary_manager/locale/th-doc.json new file mode 100644 index 0000000000..1edfadfc76 --- /dev/null +++ b/hr/doctype/salary_manager/locale/th-doc.json @@ -0,0 +1,33 @@ +{ + "01": "01", + "02": "02", + "03": "03", + "04": "04", + "05": "05", + "06": "06", + "07": "07", + "08": "08", + "09": "09", + "10": "10", + "11": "11", + "12": "12", + "Activity Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "Check if you want to send salary slip in mail to each employee while submitting salary slip": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e27\u0e48\u0e32\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e43\u0e19 mail \u0e43\u0e2b\u0e49\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e41\u0e15\u0e48\u0e25\u0e30\u0e04\u0e19\u0e43\u0e19\u0e02\u0e13\u0e30\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Create Bank Voucher for the total salary paid for the above selected criteria": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e23\u0e27\u0e21\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19", + "Create Salary Slip": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Creates salary slip for above mentioned criteria.": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e14\u0e31\u0e07\u0e01\u0e25\u0e48\u0e32\u0e27\u0e02\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Document Description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Make Bank Voucher": "\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e1a\u0e31\u0e15\u0e23\u0e02\u0e2d\u0e07\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Month": "\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salary Manager": "Manager \u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23", + "Send Email": "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Submit Salary Slip": "\u0e2a\u0e48\u0e07\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Submit all salary slips for the above selected criteria": "\u0e2a\u0e48\u0e07\u0e1a\u0e34\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip/locale/th-doc.json b/hr/doctype/salary_slip/locale/th-doc.json new file mode 100644 index 0000000000..e3e2e81ef4 --- /dev/null +++ b/hr/doctype/salary_slip/locale/th-doc.json @@ -0,0 +1,51 @@ +{ + "01": "01", + "02": "02", + "03": "03", + "04": "04", + "05": "05", + "06": "06", + "07": "07", + "08": "08", + "09": "09", + "10": "10", + "11": "11", + "12": "12", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Arrear Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19 Arrear", + "Bank Account No.": "\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Bank Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Deduction": "\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01", + "Deductions": "\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01\u0e40\u0e07\u0e34\u0e19", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "ESIC No.": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02 ESIC", + "Earning": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Earning & Deduction": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01", + "Email": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Employee Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "Gross Pay": "\u0e08\u0e48\u0e32\u0e22\u0e02\u0e31\u0e49\u0e19\u0e15\u0e49\u0e19", + "Gross Pay + Arrear Amount +Encashment Amount - Total Deduction": "\u0e08\u0e48\u0e32\u0e22\u0e02\u0e31\u0e49\u0e19\u0e15\u0e49\u0e19 + \u0e08\u0e33\u0e19\u0e27\u0e19 Arrear + \u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14 - \u0e2b\u0e31\u0e01\u0e23\u0e27\u0e21", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Leave Encashment Amount": "\u0e1d\u0e32\u0e01\u0e40\u0e07\u0e34\u0e19\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e14", + "Leave Without Pay": "\u0e1d\u0e32\u0e01\u0e42\u0e14\u0e22\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e08\u0e48\u0e32\u0e22", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Month": "\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Net Pay": "\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e38\u0e17\u0e18\u0e34", + "Net Pay (in words) will be visible once you save the Salary Slip.": "\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e38\u0e17\u0e18\u0e34 (\u0e04\u0e33) \u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "PF No.": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02 PF", + "Payment days": "\u0e27\u0e31\u0e19\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Rounded Total": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21", + "Salary Slip": "\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salary Structure Earnings": "\u0e01\u0e33\u0e44\u0e23\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Total Deduction": "\u0e2b\u0e31\u0e01\u0e23\u0e27\u0e21", + "Total days in month": "\u0e27\u0e31\u0e19\u0e23\u0e27\u0e21\u0e43\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Total in words": "\u0e23\u0e27\u0e21\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip_deduction/locale/th-doc.json b/hr/doctype/salary_slip_deduction/locale/th-doc.json new file mode 100644 index 0000000000..54b0f8176e --- /dev/null +++ b/hr/doctype/salary_slip_deduction/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Depends on LWP": "\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a LWP", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Modified Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02", + "Salary Slip Deduction": "\u0e2b\u0e31\u0e01\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e2a\u0e25\u0e34\u0e1b", + "Type": "\u0e0a\u0e19\u0e34\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip_earning/locale/th-doc.json b/hr/doctype/salary_slip_earning/locale/th-doc.json new file mode 100644 index 0000000000..065985036c --- /dev/null +++ b/hr/doctype/salary_slip_earning/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Depends on LWP": "\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a LWP", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Modified Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02", + "Salary Slip Earning": "\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Type": "\u0e0a\u0e19\u0e34\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure/locale/th-doc.json b/hr/doctype/salary_structure/locale/th-doc.json new file mode 100644 index 0000000000..e2965a3c76 --- /dev/null +++ b/hr/doctype/salary_structure/locale/th-doc.json @@ -0,0 +1,27 @@ +{ + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "CTC": "CTC", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Cost to Company": "\u0e40\u0e2a\u0e35\u0e22\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Deduction": "\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01", + "Deduction1": "Deduction1", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Earning": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Earning & Deduction": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01", + "Earning1": "Earning1", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Employee Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "From Date": "\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Is Active": "\u0e21\u0e35\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Net Pay": "\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e38\u0e17\u0e18\u0e34", + "No": "\u0e44\u0e21\u0e48", + "Salary Structure": "\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "To Date": "\u0e19\u0e31\u0e14", + "Total Deduction": "\u0e2b\u0e31\u0e01\u0e23\u0e27\u0e21", + "Total Earning": "\u0e01\u0e33\u0e44\u0e23\u0e23\u0e27\u0e21", + "Yes": "\u0e43\u0e0a\u0e48", + "You can create more earning and deduction type from Setup --> HR": "\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e21\u0e32\u0e01\u0e02\u0e36\u0e49\u0e19\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07 -> HR" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure_deduction/locale/th-doc.json b/hr/doctype/salary_structure_deduction/locale/th-doc.json new file mode 100644 index 0000000000..a317250967 --- /dev/null +++ b/hr/doctype/salary_structure_deduction/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Depend on LWP": "\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a LWP", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Salary Structure Deduction": "\u0e2b\u0e31\u0e01\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Type": "\u0e0a\u0e19\u0e34\u0e14" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure_earning/locale/th-doc.json b/hr/doctype/salary_structure_earning/locale/th-doc.json new file mode 100644 index 0000000000..aa58b355e2 --- /dev/null +++ b/hr/doctype/salary_structure_earning/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Depend on LWP": "\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a LWP", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Salary Structure Earning": "\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Type": "\u0e0a\u0e19\u0e34\u0e14" +} \ No newline at end of file diff --git a/hr/module_def/hr/locale/th-doc.json b/hr/module_def/hr/locale/th-doc.json new file mode 100644 index 0000000000..6ae7f9542f --- /dev/null +++ b/hr/module_def/hr/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Applicant for a Job": "\u0e02\u0e2d\u0e23\u0e31\u0e1a\u0e07\u0e32\u0e19", + "Apply / Approve Leaves": "\u0e43\u0e0a\u0e49 / \u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e43\u0e1a", + "Block Holidays on important days.": "\u0e1b\u0e34\u0e14\u0e01\u0e31\u0e49\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e43\u0e19\u0e27\u0e31\u0e19\u0e2a\u0e33\u0e04\u0e31\u0e0d", + "Description of a Job Opening": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14\u0e07\u0e32\u0e19", + "Human Resources Home": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01" +} \ No newline at end of file diff --git a/hr/page/hr_home/locale/th-js.json b/hr/page/hr_home/locale/th-js.json new file mode 100644 index 0000000000..f494bea1b3 --- /dev/null +++ b/hr/page/hr_home/locale/th-js.json @@ -0,0 +1,57 @@ +{ + "Allocate leaves for the year.": "\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23\u0e43\u0e1a\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1b\u0e35", + "Applicant for a Job (extracted from jobs email).": "\u0e1c\u0e39\u0e49\u0e02\u0e2d\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19 (\u0e2a\u0e01\u0e31\u0e14\u0e08\u0e32\u0e01\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e07\u0e32\u0e19)", + "Applications for leave.": "\u0e42\u0e1b\u0e23\u0e41\u0e01\u0e23\u0e21\u0e1b\u0e23\u0e30\u0e22\u0e38\u0e01\u0e15\u0e4c\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e25\u0e32", + "Appraisal": "\u0e01\u0e32\u0e23\u0e15\u0e35\u0e23\u0e32\u0e04\u0e32", + "Appraisal Template": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Attendance": "\u0e01\u0e32\u0e23\u0e14\u0e39\u0e41\u0e25\u0e23\u0e31\u0e01\u0e29\u0e32", + "Attendance record.": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21", + "Block leave applications by department.": "\u0e1b\u0e34\u0e14\u0e01\u0e31\u0e49\u0e19\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e2d\u0e01\u0e42\u0e14\u0e22\u0e01\u0e23\u0e21", + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "Claims for expenses made on behalf of the organization.": "\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e17\u0e33\u0e43\u0e19\u0e19\u0e32\u0e21\u0e02\u0e2d\u0e07\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e23", + "Company branches.": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e32\u0e02\u0e32", + "Company departments.": "\u0e41\u0e1c\u0e19\u0e01\u0e15\u0e48\u0e32\u0e07\u0e46\u0e43\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Deduction Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2b\u0e31\u0e01", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Documents": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Earning Type": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Employee Designation.": "\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employee Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employee grades": "\u0e40\u0e01\u0e23\u0e14\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employee records.": "\u0e23\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employment Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e08\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19", + "Expense Claim": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Expense Claim Type": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Generate Salary Slips": "\u0e2a\u0e23\u0e49\u0e32\u0e07 Slips \u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "Holiday List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Job Applicant": "\u0e1c\u0e39\u0e49\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e07\u0e32\u0e19", + "Job Opening": "\u0e40\u0e1b\u0e34\u0e14\u0e07\u0e32\u0e19", + "Leave Allocation": "\u0e1d\u0e32\u0e01\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Leave Allocation Tool": "\u0e1d\u0e32\u0e01\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Leave Application": "\u0e1d\u0e32\u0e01\u0e41\u0e2d\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e0a\u0e31\u0e19", + "Leave Block List": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Leave Setup": "\u0e1d\u0e32\u0e01\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Leave Type": "\u0e1d\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Leave allocations.": "\u0e1d\u0e32\u0e01\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "List of holidays.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Masters": "\u0e42\u0e17", + "Monthly salary statement.": "\u0e07\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Monthly salary template.": "\u0e41\u0e21\u0e48\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Opening for a Job.": "\u0e40\u0e1b\u0e34\u0e14\u0e07\u0e32\u0e19", + "Payroll Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Performance appraisal.": "\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19\u0e1c\u0e25\u0e01\u0e32\u0e23\u0e1b\u0e0f\u0e34\u0e1a\u0e31\u0e15\u0e34", + "Process Payroll": "\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e1a\u0e27\u0e19\u0e01\u0e32\u0e23", + "Salary Slip": "\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salary Structure": "\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salary components.": "\u0e2a\u0e48\u0e27\u0e19\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Tax and other salary deductions.": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e2b\u0e31\u0e01\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Template for employee performance appraisals.": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19\u0e1c\u0e25\u0e01\u0e32\u0e23\u0e1b\u0e0f\u0e34\u0e1a\u0e31\u0e15\u0e34\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Type of employment master.": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e08\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e40\u0e08\u0e49\u0e32\u0e19\u0e32\u0e22", + "Type of leaves like casual, sick etc.": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e02\u0e2d\u0e07\u0e43\u0e1a\u0e40\u0e0a\u0e48\u0e19\u0e25\u0e33\u0e25\u0e2d\u0e07 \u0e2f\u0e25\u0e2f \u0e1b\u0e48\u0e27\u0e22", + "Types of Expense Claim.": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Upload attendance": "\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21", + "Upload attendance from a .csv file": "\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e01\u0e32\u0e23\u0e14\u0e39\u0e41\u0e25\u0e23\u0e31\u0e01\u0e29\u0e32\u0e08\u0e32\u0e01. csv \u0e17\u0e35\u0e48" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom/locale/th-doc.json b/manufacturing/doctype/bom/locale/th-doc.json new file mode 100644 index 0000000000..543af29dab --- /dev/null +++ b/manufacturing/doctype/bom/locale/th-doc.json @@ -0,0 +1,29 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "BOM": "BOM", + "BOM Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM", + "BOM Operations": "\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19 BOM", + "Costing": "\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Is Active": "\u0e21\u0e35\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Is Default": "\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item Desription": "Desription \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item UOM": "UOM \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item to be manufactured or repacked": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e1c\u0e25\u0e34\u0e15\u0e2b\u0e23\u0e37\u0e2d repacked", + "Last Purchase Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e0b\u0e37\u0e49\u0e2d\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Manage cost of operations": "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e19\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Materials": "\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Materials Required (Exploded)": "\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a (\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14)", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Operations": "\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Quantity of item obtained after manufacturing / repacking from given quantities of raw materials": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15 / repacking \u0e08\u0e32\u0e01\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e02\u0e2d\u0e07\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a", + "Rate Of Materials Based On": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e15\u0e32\u0e21", + "Total Cost": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e23\u0e27\u0e21", + "Total Operating Cost": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19\u0e23\u0e27\u0e21", + "Total Raw Material Cost": "\u0e04\u0e48\u0e32\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e14\u0e34\u0e1a\u0e23\u0e27\u0e21", + "Valuation Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "With Operations": "\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom/locale/th-py.json b/manufacturing/doctype/bom/locale/th-py.json new file mode 100644 index 0000000000..2a2f383952 --- /dev/null +++ b/manufacturing/doctype/bom/locale/th-py.json @@ -0,0 +1,9 @@ +{ + " against same operation": "\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19", + ": It is linked to other active BOM(s)": ": \u0e21\u0e31\u0e19\u0e08\u0e30\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e01\u0e31\u0e1a BOM \u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e37\u0e48\u0e19 \u0e46 (s)", + "Cannot ": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "cancel": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "deactivate": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "has been entered atleast twice": "\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e19 atleast \u0e2a\u0e2d\u0e07" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_explosion_item/locale/th-doc.json b/manufacturing/doctype/bom_explosion_item/locale/th-doc.json new file mode 100644 index 0000000000..be4cde42dc --- /dev/null +++ b/manufacturing/doctype/bom_explosion_item/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "BOM Explosion Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14 BOM", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Mat Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 Mat \u0e44\u0e21\u0e48\u0e21\u0e35", + "Parent BOM": "BOM \u0e41\u0e21\u0e48", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Qty Consumed Per Unit": "Consumed \u0e08\u0e33\u0e19\u0e27\u0e19\u0e15\u0e48\u0e2d\u0e2b\u0e19\u0e48\u0e27\u0e22", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_item/locale/th-doc.json b/manufacturing/doctype/bom_item/locale/th-doc.json new file mode 100644 index 0000000000..90ecb47d16 --- /dev/null +++ b/manufacturing/doctype/bom_item/locale/th-doc.json @@ -0,0 +1,14 @@ +{ + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "BOM Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM", + "BOM No": "BOM \u0e44\u0e21\u0e48\u0e21\u0e35", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Description": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Operation No": "\u0e44\u0e21\u0e48\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Qty Consumed Per Unit": "Consumed \u0e08\u0e33\u0e19\u0e27\u0e19\u0e15\u0e48\u0e2d\u0e2b\u0e19\u0e48\u0e27\u0e22", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Scrap %": "\u0e40\u0e28\u0e29%", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_operation/locale/th-doc.json b/manufacturing/doctype/bom_operation/locale/th-doc.json new file mode 100644 index 0000000000..0b5f7ed0e3 --- /dev/null +++ b/manufacturing/doctype/bom_operation/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "BOM Operation": "\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19 BOM", + "Hour Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Operating Cost": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e19\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19", + "Operation Description": "\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22", + "Operation No": "\u0e44\u0e21\u0e48\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23", + "Operation Time (mins)": "\u0e40\u0e27\u0e25\u0e32\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19 (\u0e19\u0e32\u0e17\u0e35)", + "Workstation": "\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e04\u0e2a\u0e40\u0e15\u0e0a\u0e31\u0e48" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_replace_tool/locale/th-doc.json b/manufacturing/doctype/bom_replace_tool/locale/th-doc.json new file mode 100644 index 0000000000..7a57a8c183 --- /dev/null +++ b/manufacturing/doctype/bom_replace_tool/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "BOM Replace Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM", + "Current BOM": "BOM \u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "New BOM": "BOM \u0e43\u0e2b\u0e21\u0e48", + "Replace": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM \u0e42\u0e14\u0e22\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e43\u0e19 BOMs \u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49 \u0e21\u0e31\u0e19\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07 BOM \u0e40\u0e01\u0e48\u0e32\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e41\u0e25\u0e30\u0e43\u0e2b\u0e49\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e43\u0e2b\u0e21\u0e48 "\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM" \u0e15\u0e32\u0e23\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e48\u0e2d\u0e43\u0e2b\u0e21\u0e48 BOM", + "The BOM which will be replaced": "BOM \u0e0b\u0e36\u0e48\u0e07\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", + "The new BOM after replacement": "BOM \u0e43\u0e2b\u0e21\u0e48\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_replace_tool/locale/th-py.json b/manufacturing/doctype/bom_replace_tool/locale/th-py.json new file mode 100644 index 0000000000..68a598c08e --- /dev/null +++ b/manufacturing/doctype/bom_replace_tool/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "BOM replaced": "BOM \u0e41\u0e17\u0e19\u0e17\u0e35\u0e48" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_order/locale/th-doc.json b/manufacturing/doctype/production_order/locale/th-doc.json new file mode 100644 index 0000000000..4047bdbad0 --- /dev/null +++ b/manufacturing/doctype/production_order/locale/th-doc.json @@ -0,0 +1,30 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Automatically updated via Stock Entry of type Manufacture/Repack": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17 / Repack", + "BOM No": "BOM \u0e44\u0e21\u0e48\u0e21\u0e35", + "Bill of Material to be considered for manufacturing": "\u0e1a\u0e34\u0e25\u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Completed": "\u0e40\u0e2a\u0e23\u0e47\u0e08", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "For Warehouse": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e42\u0e01\u0e14\u0e31\u0e07", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "\u0e2b\u0e32\u0e01\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e48\u0e2d\u0e22\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a \u0e21\u0e34\u0e09\u0e30\u0e19\u0e31\u0e49\u0e19\u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e48\u0e2d\u0e22\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e0f\u0e34\u0e1a\u0e31\u0e15\u0e34\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a", + "In Process": "\u0e43\u0e19\u0e01\u0e23\u0e30\u0e1a\u0e27\u0e19\u0e01\u0e32\u0e23", + "Item To Manufacture": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e1c\u0e25\u0e34\u0e15", + "Manufacture against Sales Order": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Manufactured Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Manufactured quantity will be updated in this warehouse": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e08\u0e30\u0e21\u0e35\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e43\u0e19\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e19\u0e35\u0e49", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "PRO": "PRO", + "Production Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Qty To Manufacture": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Series": "\u0e0a\u0e38\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stopped": "\u0e2b\u0e22\u0e38\u0e14", + "Submitted": "Submitted", + "Use Multi-Level BOM": "\u0e43\u0e0a\u0e49 BOM \u0e2b\u0e25\u0e32\u0e22\u0e23\u0e30\u0e14\u0e31\u0e1a" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_plan_item/locale/th-doc.json b/manufacturing/doctype/production_plan_item/locale/th-doc.json new file mode 100644 index 0000000000..62376f0188 --- /dev/null +++ b/manufacturing/doctype/production_plan_item/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "BOM No": "BOM \u0e44\u0e21\u0e48\u0e21\u0e35", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Planned Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19", + "Production Plan Item": "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "SO Pending Qty": "\u0e14\u0e31\u0e07\u0e19\u0e31\u0e49\u0e19\u0e23\u0e2d\u0e08\u0e33\u0e19\u0e27\u0e19", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "UOM": "UOM" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_plan_sales_order/locale/th-doc.json b/manufacturing/doctype/production_plan_sales_order/locale/th-doc.json new file mode 100644 index 0000000000..cb8cc57cf3 --- /dev/null +++ b/manufacturing/doctype/production_plan_sales_order/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Production Plan Sales Order": "\u0e41\u0e1c\u0e19\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "SO Date": "\u0e14\u0e31\u0e07\u0e19\u0e31\u0e49\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_planning_tool/locale/th-doc.json b/manufacturing/doctype/production_planning_tool/locale/th-doc.json new file mode 100644 index 0000000000..8b7f5c10d6 --- /dev/null +++ b/manufacturing/doctype/production_planning_tool/locale/th-doc.json @@ -0,0 +1,30 @@ +{ + "Clear Table": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e17\u0e35\u0e48\u0e0a\u0e31\u0e14\u0e40\u0e08\u0e19", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Create Production Orders": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Download Materials Required": "\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19", + "Download a report containing all raw materials with their latest inventory status": "\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e04\u0e07\u0e04\u0e25\u0e31\u0e07\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Enter items and planned qty for which you want to raise production orders or download raw materials for analysis.": "\u0e1b\u0e49\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e25\u0e30\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19\u0e44\u0e27\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e22\u0e01\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e1c\u0e25\u0e34\u0e15\u0e2b\u0e23\u0e37\u0e2d\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c", + "Filter based on customer": "\u0e01\u0e23\u0e2d\u0e07\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Filter based on item": "\u0e01\u0e23\u0e2d\u0e07\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "From Date": "\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Get Sales Orders": "\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "\u0e2b\u0e32\u0e01\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e48\u0e2d\u0e22\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a \u0e21\u0e34\u0e09\u0e30\u0e19\u0e31\u0e49\u0e19\u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e48\u0e2d\u0e22\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e0f\u0e34\u0e1a\u0e31\u0e15\u0e34\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a", + "Items to be requested which are \"Out of Stock\" considering all warehouses based on projected qty and minimum order qty": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e0b\u0e36\u0e48\u0e07\u0e40\u0e1b\u0e47\u0e19 "\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e2a\u0e15\u0e47\u0e2d\u0e01" \u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e42\u0e01\u0e14\u0e31\u0e07\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e44\u0e27\u0e49\u0e41\u0e25\u0e30\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e31\u0e49\u0e19\u0e15\u0e48\u0e33", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Material Request For Warehouse": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Materials Requirement Planning (MRP)": "\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19\u0e04\u0e27\u0e32\u0e21\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38 (MRP)", + "Production Plan Items": "\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Production Plan Sales Orders": "\u0e1c\u0e25\u0e34\u0e15\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e02\u0e32\u0e22\u0e41\u0e1c\u0e19", + "Production Planning Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Pull items from Sales Order mentioned in the above table.": "\u0e14\u0e36\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e32\u0e01\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e01\u0e25\u0e48\u0e32\u0e27\u0e16\u0e36\u0e07\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e02\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19", + "Pull sales orders (pending to deliver) based on the above criteria": "\u0e14\u0e36\u0e07\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22 (\u0e23\u0e2d\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a) \u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e15\u0e32\u0e21\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e14\u0e31\u0e07\u0e01\u0e25\u0e48\u0e32\u0e27\u0e02\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19", + "Raise Material Request": "\u0e22\u0e01\u0e04\u0e33\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Raise Production Order": "\u0e22\u0e01\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Select Sales Orders": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Select Sales Orders from which you want to create Production Orders.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Separate production order will be created for each finished good item.": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e1c\u0e25\u0e34\u0e15\u0e41\u0e22\u0e01\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e14\u0e35\u0e43\u0e19\u0e41\u0e15\u0e48\u0e25\u0e30\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e23\u0e39\u0e1b", + "To Date": "\u0e19\u0e31\u0e14", + "Use Multi-Level BOM": "\u0e43\u0e0a\u0e49 BOM \u0e2b\u0e25\u0e32\u0e22\u0e23\u0e30\u0e14\u0e31\u0e1a" +} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/th-doc.json b/manufacturing/doctype/update_delivery_date/locale/th-doc.json new file mode 100644 index 0000000000..799fec149f --- /dev/null +++ b/manufacturing/doctype/update_delivery_date/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Entries": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c", + "From Date": "\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Get Open Sales Order": "\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e40\u0e1b\u0e34\u0e14", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "To Date": "\u0e19\u0e31\u0e14", + "Update Delivery Date": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07", + "Update Sales Order": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22" +} \ No newline at end of file diff --git a/manufacturing/doctype/workstation/locale/th-doc.json b/manufacturing/doctype/workstation/locale/th-doc.json new file mode 100644 index 0000000000..b2fb464a1c --- /dev/null +++ b/manufacturing/doctype/workstation/locale/th-doc.json @@ -0,0 +1,19 @@ +{ + "Capacity": "\u0e04\u0e27\u0e32\u0e21\u0e08\u0e38", + "Capacity Units": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e08\u0e38", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Hour Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Hour Rate Consumable": "\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e34\u0e49\u0e19\u0e40\u0e1b\u0e25\u0e37\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Hour Rate Electricity": "\u0e01\u0e32\u0e23\u0e44\u0e1f\u0e1f\u0e49\u0e32\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Hour Rate Labour": "\u0e41\u0e23\u0e07\u0e07\u0e32\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Hour Rate Rent": "\u0e23\u0e32\u0e04\u0e32\u0e40\u0e0a\u0e48\u0e32\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Over Heads": "\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e2b\u0e31\u0e27", + "Overhead": "\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e28\u0e35\u0e23\u0e29\u0e30", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Units/Hour": "\u0e2b\u0e19\u0e48\u0e27\u0e22 / \u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Units/Shifts": "\u0e2b\u0e19\u0e48\u0e27\u0e22 / \u0e01\u0e30", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Workstation": "\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e04\u0e2a\u0e40\u0e15\u0e0a\u0e31\u0e48", + "Workstation Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e2a\u0e40\u0e15\u0e0a\u0e31\u0e19" +} \ No newline at end of file diff --git a/manufacturing/module_def/manufacturing/locale/th-doc.json b/manufacturing/module_def/manufacturing/locale/th-doc.json new file mode 100644 index 0000000000..82b626ef69 --- /dev/null +++ b/manufacturing/module_def/manufacturing/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Manufacturing Home": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM \u0e42\u0e14\u0e22\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e43\u0e19 BOMs \u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49 \u0e21\u0e31\u0e19\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07 BOM \u0e40\u0e01\u0e48\u0e32\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e41\u0e25\u0e30\u0e43\u0e2b\u0e49\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e43\u0e2b\u0e21\u0e48 "\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM" \u0e15\u0e32\u0e23\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e48\u0e2d\u0e43\u0e2b\u0e21\u0e48 BOM" +} \ No newline at end of file diff --git a/manufacturing/page/manufacturing_home/locale/th-js.json b/manufacturing/page/manufacturing_home/locale/th-js.json new file mode 100644 index 0000000000..ea60a9d60c --- /dev/null +++ b/manufacturing/page/manufacturing_home/locale/th-js.json @@ -0,0 +1,18 @@ +{ + "All Products or Services.": "\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "BOM Replace Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM", + "Bill of Materials": "\u0e1a\u0e34\u0e25\u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Bill of Materials (BOM)": "\u0e1a\u0e34\u0e25\u0e27\u0e31\u0e2a\u0e14\u0e38 (BOM)", + "Documents": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Generate Material Requests (MRP) and Production Orders.": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e33\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38 (MRP) \u0e41\u0e25\u0e30\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Masters": "\u0e42\u0e17", + "Orders released for production.": "\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Production Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Production Planning (MRP)": "\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15 (MRP)", + "Production Planning Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Replace Item / BOM in all BOMs": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 / BOM \u0e43\u0e19 BOMs \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Utility": "\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e0a\u0e19\u0e4c", + "Where manufacturing operations are carried out.": "\u0e17\u0e35\u0e48\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e08\u0e30\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23", + "Workstation": "\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e04\u0e2a\u0e40\u0e15\u0e0a\u0e31\u0e48" +} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/th-doc.json b/production/doctype/bom_replace_tool/locale/th-doc.json new file mode 100644 index 0000000000..c699223fda --- /dev/null +++ b/production/doctype/bom_replace_tool/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "BOM Replace Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM", + "Current BOM": "BOM \u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "New BOM": "BOM \u0e43\u0e2b\u0e21\u0e48", + "Production": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Replace": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM \u0e42\u0e14\u0e22\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e43\u0e19 BOMs \u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49 \u0e21\u0e31\u0e19\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07 BOM \u0e40\u0e01\u0e48\u0e32\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e41\u0e25\u0e30\u0e43\u0e2b\u0e49\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e43\u0e2b\u0e21\u0e48 "\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM" \u0e15\u0e32\u0e23\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e48\u0e2d\u0e43\u0e2b\u0e21\u0e48 BOM", + "The BOM which will be replaced": "BOM \u0e0b\u0e36\u0e48\u0e07\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", + "The new BOM after replacement": "BOM \u0e43\u0e2b\u0e21\u0e48\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19" +} \ No newline at end of file diff --git a/projects/doctype/activity_type/locale/th-doc.json b/projects/doctype/activity_type/locale/th-doc.json new file mode 100644 index 0000000000..02ee9dfa77 --- /dev/null +++ b/projects/doctype/activity_type/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Activity Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/projects/doctype/project/locale/th-doc.json b/projects/doctype/project/locale/th-doc.json new file mode 100644 index 0000000000..8154ab4984 --- /dev/null +++ b/projects/doctype/project/locale/th-doc.json @@ -0,0 +1,53 @@ +{ + "Actual Completion Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c\u0e08\u0e23\u0e34\u0e07", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Completed": "\u0e40\u0e2a\u0e23\u0e47\u0e08", + "Completion Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c", + "Contact No": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Contact Person": "Contact Person", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Dates": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a", + "Estimated Material Cost": "\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "External": "\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Gross Margin %": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e33\u0e44\u0e23\u0e02\u0e31\u0e49\u0e19\u0e15\u0e49\u0e19%", + "Gross Margin Value": "\u0e04\u0e48\u0e32\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e33\u0e44\u0e23\u0e02\u0e31\u0e49\u0e19\u0e15\u0e49\u0e19", + "High": "\u0e2a\u0e39\u0e07", + "Important dates and commitments in your project life cycle": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e41\u0e25\u0e30\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e21\u0e38\u0e48\u0e07\u0e21\u0e31\u0e48\u0e19\u0e43\u0e19\u0e27\u0e07\u0e08\u0e23\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e02\u0e2d\u0e07\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Internal": "\u0e20\u0e32\u0e22\u0e43\u0e19", + "Is Active": "\u0e21\u0e35\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Low": "\u0e15\u0e48\u0e33", + "Margin": "\u0e02\u0e2d\u0e1a", + "Medium": "\u0e01\u0e25\u0e32\u0e07", + "Milestones": "\u0e04\u0e27\u0e32\u0e21\u0e04\u0e37\u0e1a\u0e2b\u0e19\u0e49\u0e32", + "Milestones will be added as Events in the Calendar": "\u0e04\u0e27\u0e32\u0e21\u0e04\u0e37\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e08\u0e30\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e43\u0e19\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19", + "No": "\u0e44\u0e21\u0e48", + "Notes": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Other": "\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Priority": "\u0e1a\u0e38\u0e23\u0e34\u0e21\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c", + "Project": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Costing": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Project Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e07\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Milestones": "\u0e04\u0e27\u0e32\u0e21\u0e04\u0e37\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Start Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Tasks": "\u0e07\u0e32\u0e19\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Value": "\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project will get saved and will be searchable with project name given": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e44\u0e27\u0e49\u0e41\u0e25\u0e30\u0e08\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Select name of Customer to whom project belongs": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e0b\u0e36\u0e48\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Tasks": "\u0e07\u0e32\u0e19", + "Tasks belonging to this Project.": "\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/th-doc.json b/projects/doctype/project_activity/locale/th-doc.json new file mode 100644 index 0000000000..7df17c6015 --- /dev/null +++ b/projects/doctype/project_activity/locale/th-doc.json @@ -0,0 +1,35 @@ +{ + "0": "0", + "10": "10", + "100": "100", + "15": "15", + "20": "20", + "25": "25", + "30": "30", + "35": "35", + "40": "40", + "45": "45", + "5": "5", + "50": "50", + "55": "55", + "60": "60", + "65": "65", + "70": "70", + "75": "75", + "80": "80", + "85": "85", + "90": "90", + "95": "95", + "Activity Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", + "Add": "\u0e40\u0e1e\u0e34\u0e48\u0e21", + "Hours": "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Last Update": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Last Update By": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14\u0e42\u0e14\u0e22", + "New Update": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e43\u0e2b\u0e21\u0e48", + "Percent Complete": "\u0e23\u0e49\u0e2d\u0e22\u0e25\u0e30\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c", + "Project": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Activity": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Updates": "\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07", + "Updates HTML": "HTML \u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07" +} \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/th-doc.json b/projects/doctype/project_activity_update/locale/th-doc.json new file mode 100644 index 0000000000..02b72b9cf4 --- /dev/null +++ b/projects/doctype/project_activity_update/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Hours": "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07", + "Project Activity Update": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Update": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17", + "e.g. 0.5, 2.5 etc": "\u0e40\u0e0a\u0e48\u0e19 0.5, 2.5 \u0e2f\u0e25\u0e2f" +} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/th-doc.json b/projects/doctype/project_control/locale/th-doc.json new file mode 100644 index 0000000000..2989328676 --- /dev/null +++ b/projects/doctype/project_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Project Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/projects/doctype/project_milestone/locale/th-doc.json b/projects/doctype/project_milestone/locale/th-doc.json new file mode 100644 index 0000000000..efbeb6b5d0 --- /dev/null +++ b/projects/doctype/project_milestone/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Completed": "\u0e40\u0e2a\u0e23\u0e47\u0e08", + "Milestone": "\u0e02\u0e31\u0e49\u0e19", + "Milestone Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 Milestone", + "Pending": "\u0e04\u0e32\u0e23\u0e32\u0e04\u0e32\u0e0b\u0e31\u0e07", + "Project Milestone": "Milestone \u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30" +} \ No newline at end of file diff --git a/projects/doctype/task/locale/th-doc.json b/projects/doctype/task/locale/th-doc.json new file mode 100644 index 0000000000..10a94afe10 --- /dev/null +++ b/projects/doctype/task/locale/th-doc.json @@ -0,0 +1,34 @@ +{ + "Actual": "\u0e15\u0e32\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e23\u0e34\u0e07", + "Actual Budget": "\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07", + "Actual End Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14\u0e08\u0e23\u0e34\u0e07", + "Actual Start Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07", + "Allocated Budget": "\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Closed": "\u0e1b\u0e34\u0e14", + "Closing Date": "\u0e1b\u0e34\u0e14\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Expected": "\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e2b\u0e27\u0e31\u0e07", + "Expected End Date": "\u0e04\u0e32\u0e14\u0e27\u0e48\u0e32\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14", + "Expected Start Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e04\u0e32\u0e14\u0e27\u0e48\u0e32", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "High": "\u0e2a\u0e39\u0e07", + "Low": "\u0e15\u0e48\u0e33", + "Medium": "\u0e01\u0e25\u0e32\u0e07", + "More Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Pending Review": "\u0e23\u0e2d\u0e15\u0e23\u0e27\u0e08\u0e17\u0e32\u0e19", + "Priority": "\u0e1a\u0e38\u0e23\u0e34\u0e21\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c", + "Project": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Review Date": "\u0e17\u0e1a\u0e17\u0e27\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Subject": "\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Task": "\u0e07\u0e32\u0e19", + "Task Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e07\u0e32\u0e19", + "Time and Budget": "\u0e40\u0e27\u0e25\u0e32\u0e41\u0e25\u0e30\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Total Hours (Expected)": "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07\u0e23\u0e27\u0e21 (\u0e04\u0e32\u0e14\u0e27\u0e48\u0e32)", + "Urgent": "\u0e14\u0e48\u0e27\u0e19", + "Working": "\u0e17\u0e33\u0e07\u0e32\u0e19" +} \ No newline at end of file diff --git a/projects/doctype/timesheet/locale/th-doc.json b/projects/doctype/timesheet/locale/th-doc.json new file mode 100644 index 0000000000..6003a4c1d2 --- /dev/null +++ b/projects/doctype/timesheet/locale/th-doc.json @@ -0,0 +1,14 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Notes": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Submitted": "Submitted", + "Timesheet": "timesheet", + "Timesheet By": "timesheet \u0e42\u0e14\u0e22", + "Timesheet Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 timesheet", + "Timesheet Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 Timesheet" +} \ No newline at end of file diff --git a/projects/doctype/timesheet_detail/locale/th-doc.json b/projects/doctype/timesheet_detail/locale/th-doc.json new file mode 100644 index 0000000000..197e90f789 --- /dev/null +++ b/projects/doctype/timesheet_detail/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Activity Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", + "Actual End Time": "\u0e40\u0e27\u0e25\u0e32\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14\u0e08\u0e23\u0e34\u0e07", + "Actual Start Time": "\u0e40\u0e27\u0e25\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07", + "Additional Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Project": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Task Id": "\u0e23\u0e2b\u0e31\u0e2a\u0e07\u0e32\u0e19", + "Task Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e07\u0e32\u0e19", + "Timesheet Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 Timesheet", + "Total Hours (Actual)": "\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07\u0e23\u0e27\u0e21 (\u0e08\u0e23\u0e34\u0e07)" +} \ No newline at end of file diff --git a/projects/module_def/projects/locale/th-doc.json b/projects/module_def/projects/locale/th-doc.json new file mode 100644 index 0000000000..17d8bfa457 --- /dev/null +++ b/projects/module_def/projects/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Projects Home": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/projects/page/projects_home/locale/th-js.json b/projects/page/projects_home/locale/th-js.json new file mode 100644 index 0000000000..f224786e56 --- /dev/null +++ b/projects/page/projects_home/locale/th-js.json @@ -0,0 +1,15 @@ +{ + "Activity Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", + "Documents": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Gantt Chart": "\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34\u0e41\u0e01\u0e19\u0e15\u0e4c", + "Gantt chart of all tasks.": "\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34 Gantt \u0e02\u0e2d\u0e07\u0e07\u0e32\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Masters": "\u0e42\u0e17", + "Project": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project activity / task.": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23 / \u0e07\u0e32\u0e19", + "Project master.": "\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Task": "\u0e07\u0e32\u0e19", + "Timesheet": "timesheet", + "Timesheet for tasks.": "timesheet \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e07\u0e32\u0e19", + "Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", + "Types of activities for Time Sheets": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e02\u0e2d\u0e07\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e1c\u0e48\u0e19\u0e40\u0e27\u0e25\u0e32" +} \ No newline at end of file diff --git a/public/js/locale/_messages_js.json b/public/js/locale/_messages_js.json index 0e410a5aeb..4e6cc39577 100644 --- a/public/js/locale/_messages_js.json +++ b/public/js/locale/_messages_js.json @@ -81,7 +81,6 @@ "Sales Order", "Email Digest", "Event", - "Plot Control", "Leave Allocation", "Supplier Quotation Item", "SMS Receiver", @@ -137,6 +136,7 @@ "Project Activity", "Documentation", "Purchase Order Item Supplied", + "Purchase Request", "Quotation Lost Reason", "Event Role", "Contact", @@ -173,7 +173,7 @@ "Holiday Block List", "Delivery Note Item", "Company Control", - "Website Settings", + "Purchase Request Item", "Answer", "Email Settings", "Holiday", @@ -261,7 +261,6 @@ "Stock", "Profile", "Authorization Control", - "Product", "Item Quality Inspection Parameter", "MIS Control", "Leave Block List Allow", @@ -276,7 +275,6 @@ "Stock Reconciliation", "Purchase Receipt", "Address", - "test", "About Us Settings", "Job Applicant", "Manufacturing", diff --git a/public/js/locale/th-js.json b/public/js/locale/th-js.json new file mode 100644 index 0000000000..cc2bb08459 --- /dev/null +++ b/public/js/locale/th-js.json @@ -0,0 +1,317 @@ +{ + "About Us Settings": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e23\u0e32", + "About Us Team Member": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e43\u0e19\u0e17\u0e35\u0e21\u0e40\u0e23\u0e32", + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Activity": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", + "Activity Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Answer": "\u0e15\u0e2d\u0e1a", + "Appraisal": "\u0e01\u0e32\u0e23\u0e15\u0e35\u0e23\u0e32\u0e04\u0e32", + "Appraisal Goal": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Appraisal Template": "\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Appraisal Template Goal": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e17\u0e21\u0e40\u0e1e\u0e25\u0e17\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Attendance": "\u0e01\u0e32\u0e23\u0e14\u0e39\u0e41\u0e25\u0e23\u0e31\u0e01\u0e29\u0e32", + "Attendance Control Panel": "\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21", + "Authorization Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", + "Authorization Rule": "\u0e01\u0e0e\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", + "BOM": "BOM", + "BOM Explosion Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14 BOM", + "BOM Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM", + "BOM Operation": "\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19 BOM", + "BOM Replace Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM", + "Bank Reconciliation": "\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Bank Reconciliation Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23", + "Batch": "\u0e0a\u0e38\u0e14", + "Bin": "\u0e16\u0e31\u0e07", + "Blog": "\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Blog Subscriber": "\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Budget Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Budget Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Budget Distribution": "\u0e01\u0e32\u0e23\u0e41\u0e1e\u0e23\u0e48\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Budget Distribution Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Bulk Email": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e02\u0e22\u0e30", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "C-Form": "C-Form", + "C-Form Invoice Detail": "C-Form \u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Calendar": "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19", + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Comment": "\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e47\u0e19", + "Communication": "\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Communication Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Company Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Company History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Control": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21", + "Contact Us Settings": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32", + "Control Panel": "\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21", + "Core": "\u0e41\u0e01\u0e19", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Country": "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Custom Field": "\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", + "Custom Script": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Issue": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customize Form": "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", + "Customize Form Field": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e02\u0e15\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1f\u0e2d\u0e23\u0e4c\u0e21", + "Deduction Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2b\u0e31\u0e01", + "Default Home Page": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "DefaultValue": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Delivery Note Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Delivery Note Packing Item": "\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "DocField": "DocField", + "DocPerm": "DocPerm", + "DocType": "DOCTYPE", + "DocType Label": "\u0e1b\u0e49\u0e32\u0e22 DocType", + "DocType Mapper": "Mapper DocType", + "Documentation": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Earning Type": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Email Digest": "\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Email Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Employee Education": "\u0e01\u0e32\u0e23\u0e28\u0e36\u0e01\u0e29\u0e32\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employee External Work History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e20\u0e32\u0e22\u0e19\u0e2d\u0e01", + "Employee Internal Work History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e20\u0e32\u0e22\u0e43\u0e19", + "Employee Training": "\u0e01\u0e32\u0e23\u0e1d\u0e36\u0e01\u0e2d\u0e1a\u0e23\u0e21\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employment Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e08\u0e49\u0e32\u0e07\u0e07\u0e32\u0e19", + "Event": "\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c", + "Event Role": "\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c", + "Event User": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Expense Claim": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Expense Claim Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e2a\u0e34\u0e19\u0e44\u0e2b\u0e21", + "Expense Claim Type": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Featured Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e14\u0e48\u0e19", + "Features Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e2d\u0e33\u0e19\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e30\u0e14\u0e27\u0e01", + "Feed": "\u0e01\u0e34\u0e19", + "Field Mapper Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e19\u0e32\u0e21\u0e41\u0e21\u0e1b\u0e40\u0e1b\u0e2d\u0e23\u0e4c", + "File Data": "\u0e41\u0e1f\u0e49\u0e21\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Forum": "\u0e1f\u0e2d\u0e23\u0e31\u0e48\u0e21", + "GL Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21 GL", + "GL Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 GL", + "GL Mapper": "Mapper GL", + "GL Mapper Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 Mapper GL", + "Global Defaults": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e17\u0e31\u0e48\u0e27\u0e42\u0e25\u0e01", + "Grade": "\u0e40\u0e01\u0e23\u0e14", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Help": "\u0e0a\u0e48\u0e27\u0e22", + "Holiday": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Holiday Block List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Holiday Block List Allow": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01 Holiday \u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49", + "Holiday Block List Date": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Holiday List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", + "Home": "\u0e1a\u0e49\u0e32\u0e19", + "Home Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01", + "Human Resources": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c", + "Industry Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2d\u0e38\u0e15\u0e2a\u0e32\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Installation Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Installation Note Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item Customer Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Price": "\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Quality Inspection Parameter": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e", + "Item Reorder": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 Reorder", + "Item Supplier": "\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax": "\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Website Specification": "\u0e2a\u0e40\u0e1b\u0e01\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Job Applicant": "\u0e1c\u0e39\u0e49\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e07\u0e32\u0e19", + "Job Opening": "\u0e40\u0e1b\u0e34\u0e14\u0e07\u0e32\u0e19", + "Jobs Email Settings": "\u0e07\u0e32\u0e19\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Journal Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Journal Voucher Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e27\u0e32\u0e23\u0e2a\u0e32\u0e23", + "Knowledge Base": "\u0e10\u0e32\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49", + "Landed Cost Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e25\u0e07", + "Landed Cost Purchase Receipt": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e25\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Landed Cost Wizard": "\u0e15\u0e31\u0e27\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e17\u0e35\u0e48\u0e14\u0e34\u0e19", + "Lead": "\u0e19\u0e33", + "Leave Allocation": "\u0e1d\u0e32\u0e01\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Leave Application": "\u0e1d\u0e32\u0e01\u0e41\u0e2d\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e0a\u0e31\u0e19", + "Leave Block List": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Leave Block List Allow": "\u0e1d\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49", + "Leave Block List Date": "\u0e1d\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Leave Control Panel": "\u0e1d\u0e32\u0e01\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21", + "Leave Type": "\u0e1d\u0e32\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Live Chat": "Live Chat", + "MIS Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e23\u0e30\u0e1a\u0e1a\u0e2a\u0e32\u0e23\u0e2a\u0e19\u0e40\u0e17\u0e28", + "Maintenance Schedule": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Schedule Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Schedule Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Visit": "\u0e0a\u0e21\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Visit Purpose": "\u0e27\u0e31\u0e15\u0e16\u0e38\u0e1b\u0e23\u0e30\u0e2a\u0e07\u0e04\u0e4c\u0e0a\u0e21\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Market Segment": "\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e25\u0e32\u0e14", + "Material Request": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Material Request Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e02\u0e2d", + "Messages": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Mode of Payment": "\u0e42\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Module Def": "Def \u0e42\u0e21\u0e14\u0e39\u0e25", + "Modules": "\u0e42\u0e21\u0e14\u0e39\u0e25", + "Multi Ledger Report Detail": "\u0e2b\u0e25\u0e32\u0e22\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "My Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e02\u0e2d\u0e07\u0e09\u0e31\u0e19", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Naming Series Options": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e38\u0e14", + "Newsletter": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27", + "Notification Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19", + "Opportunity": "\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Opportunity Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Other Income Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e23\u0e32\u0e22\u200b\u200b\u0e44\u0e14\u0e49\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "POS Setting": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 POS", + "Packing Slip": "\u0e2a\u0e25\u0e34\u0e1b", + "Packing Slip Item": "\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e25\u0e34\u0e1b", + "Page": "\u0e2b\u0e19\u0e49\u0e32", + "Page Role": "\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e2b\u0e19\u0e49\u0e32\u0e17\u0e35\u0e48", + "Patch Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e41\u0e1e\u0e17\u0e0a\u0e4c", + "Payment to Invoice Matching Tool": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e08\u0e31\u0e1a\u0e04\u0e39\u0e48\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Payment to Invoice Matching Tool Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e32\u0e23\u0e08\u0e31\u0e1a\u0e04\u0e39\u0e48\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Period Closing Voucher": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e1b\u0e34\u0e14\u0e07\u0e27\u0e14", + "Permission Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Print Format": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", + "Print Heading": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Product Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Product Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", + "Production Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Production Plan Item": "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Production Plan Sales Order": "\u0e41\u0e1c\u0e19\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Production Planning Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Products Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", + "Profile": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Profile Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Project": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Activity": "\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Activity Update": "\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Project Milestone": "Milestone \u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Property Setter": "\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23 Setter", + "Purchase Common": "\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e32\u0e21\u0e31\u0e0d", + "Purchase Invoice": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Purchase Invoice Advance": "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Purchase Invoice Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Purchase Order": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order Item Supplied": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Purchase Receipt Item": "\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Purchase Receipt Item Supplied": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Purchase Request": "\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e2d", + "Purchase Request Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d", + "Purchase Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Purchase Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32", + "Quality Inspection": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e", + "Quality Inspection Reading": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e\u0e01\u0e32\u0e23\u0e2d\u0e48\u0e32\u0e19", + "Question": "\u0e04\u0e33\u0e16\u0e32\u0e21", + "Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotation Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotation Lost Reason": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 Lost \u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Related Page": "\u0e40\u0e1e\u0e08\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07", + "Rename Tool": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", + "Report": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", + "Role": "\u0e1a\u0e17\u0e1a\u0e32\u0e17", + "SMS Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c SMS", + "SMS Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07 SMS", + "SMS Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a SMS", + "SMS Parameter": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c SMS", + "SMS Receiver": "\u0e23\u0e31\u0e1a SMS", + "SMS Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 SMS", + "Salary Manager": "Manager \u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23", + "Salary Slip": "\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salary Slip Deduction": "\u0e2b\u0e31\u0e01\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e2a\u0e25\u0e34\u0e1b", + "Salary Slip Earning": "\u0e2a\u0e25\u0e34\u0e1b\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Salary Structure": "\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salary Structure Deduction": "\u0e2b\u0e31\u0e01\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Salary Structure Earning": "\u0e42\u0e04\u0e23\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e40\u0e07\u0e34\u0e19\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49", + "Sales BOM": "BOM \u0e02\u0e32\u0e22", + "Sales BOM Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM \u0e02\u0e32\u0e22", + "Sales Browser Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Sales Common": "\u0e02\u0e32\u0e22\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", + "Sales Email Settings": "\u0e02\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Sales Invoice Advance": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Sales Invoice Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Sales Order Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Person": "\u0e04\u0e19\u0e02\u0e32\u0e22", + "Sales Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Sales Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17", + "Sales Team": "\u0e17\u0e35\u0e21\u0e02\u0e32\u0e22", + "Sales and Purchase Return Item": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e01\u0e25\u0e31\u0e1a", + "Sales and Purchase Return Tool": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a", + "Sandbox": "sandbox", + "Scheduler Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e15\u0e32\u0e23\u0e32\u0e07\u0e40\u0e27\u0e25\u0e32", + "Search Criteria": "\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e01\u0e32\u0e23\u0e04\u0e49\u0e19\u0e2b\u0e32", + "Selling": "\u0e02\u0e32\u0e22", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Series Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e0a\u0e38\u0e14", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Setup Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Shipping Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", + "State": "\u0e23\u0e31\u0e10", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Entry Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e23\u0e32\u0e22\u200b\u200b\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Ledger Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Stock Reconciliation": "\u0e2a\u0e21\u0e32\u0e19\u0e09\u0e31\u0e19\u0e17\u0e4c\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock UOM Replace Utility": "\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 UOM", + "Style Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Quotation Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Support Ticket": "\u0e15\u0e31\u0e4b\u0e27\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "System Console": "\u0e23\u0e30\u0e1a\u0e1a\u0e04\u0e2d\u0e19\u0e42\u0e0b\u0e25", + "Table Mapper Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e15\u0e32\u0e23\u0e32\u0e07\u0e41\u0e21\u0e1b\u0e40\u0e1b\u0e2d\u0e23\u0e4c", + "Tag": "\u0e41\u0e17\u0e47\u0e01", + "Target Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Task": "\u0e07\u0e32\u0e19", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "Timesheet": "timesheet", + "Timesheet Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 Timesheet", + "To Do": "\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e17\u0e48\u0e2d\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27", + "ToDo": "\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e17\u0e33", + "Top Bar Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 Bar \u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e22\u0e2d\u0e14", + "Trash Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Trend Analyzer Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e41\u0e19\u0e27\u0e42\u0e19\u0e49\u0e21", + "UOM": "UOM", + "UOM Conversion Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07 UOM", + "Unread Messages": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e48\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Update Delivery Date": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07", + "UserRole": "UserRole", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49", + "Valuation Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse User": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Web Page": "\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Product Category": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Script": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Slideshow": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Slideshow Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Workflow": "\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workflow Action": "\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e33\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workflow Action Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e02\u0e31\u0e49\u0e19\u0e15\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19", + "Workflow Document State": "\u0e23\u0e31\u0e10\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workflow Engine": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e22\u0e19\u0e15\u0e4c\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workflow Rule": "\u0e01\u0e0e\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workflow Rule Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e0e\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workflow State": "\u0e23\u0e31\u0e10\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workflow Transition": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workstation": "\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e04\u0e2a\u0e40\u0e15\u0e0a\u0e31\u0e48" +} \ No newline at end of file diff --git a/selling/doctype/campaign/locale/th-doc.json b/selling/doctype/campaign/locale/th-doc.json new file mode 100644 index 0000000000..0f5295fa67 --- /dev/null +++ b/selling/doctype/campaign/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Campaign Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22 \u0e15\u0e34\u0e14\u0e15\u0e32\u0e21 Leads, \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32, \u0e2f\u0e25\u0e2f \u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e08\u0e32\u0e01\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e27\u0e31\u0e14\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e25\u0e07\u0e17\u0e38\u0e19", + "Selling": "\u0e02\u0e32\u0e22", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/th-doc.json b/selling/doctype/communication_log/locale/th-doc.json new file mode 100644 index 0000000000..1942a9f02b --- /dev/null +++ b/selling/doctype/communication_log/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Communication Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Communication by": "\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23\u0e42\u0e14\u0e22", + "Communication type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Email": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Notes": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Other": "\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Phone": "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c", + "SMS": "SMS", + "Selling": "\u0e02\u0e32\u0e22", + "Visit": "\u0e40\u0e22\u0e35\u0e48\u0e22\u0e21" +} \ No newline at end of file diff --git a/selling/doctype/customer/locale/th-doc.json b/selling/doctype/customer/locale/th-doc.json new file mode 100644 index 0000000000..f8f1819e7d --- /dev/null +++ b/selling/doctype/customer/locale/th-doc.json @@ -0,0 +1,40 @@ +{ + "To manage Customer Groups, click here": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "To manage Territory, click here": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "Address & Contacts": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d &", + "Address Desc": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Address HTML": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48 HTML", + "Basic Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "Buyer of Goods and Services.": "\u0e1c\u0e39\u0e49\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "CUST": "cust", + "CUSTMUM": "CUSTMUM", + "Communication HTML": "HTML \u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact Desc": "Desc \u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact HTML": "HTML \u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Credit Days": "\u0e27\u0e31\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Credit Limit": "\u0e27\u0e07\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e34\u0e19\u0e40\u0e0a\u0e37\u0e48\u0e2d", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Default Commission Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e04\u0e48\u0e32\u0e04\u0e2d\u0e21\u0e21\u0e34\u0e0a\u0e0a\u0e31\u0e48\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Price List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Sales Partner": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e02\u0e32\u0e22\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23", + "Fetch lead which will be converted into customer.": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e15\u0e30\u0e01\u0e31\u0e48\u0e27\u0e0b\u0e36\u0e48\u0e07\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Individual": "\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Lead Ref": "\u0e19\u0e33 Ref", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2b\u0e25\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Sales Team": "\u0e17\u0e35\u0e21\u0e02\u0e32\u0e22", + "Sales Team Details": "\u0e02\u0e32\u0e22\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e17\u0e35\u0e21", + "Selling": "\u0e02\u0e32\u0e22", + "Series": "\u0e0a\u0e38\u0e14", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "This currency will get fetched in Sales transactions of this customer": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "To create an Account Head under a different company, select the company and save customer.": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e17\u0e35\u0e48\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07\u0e01\u0e31\u0e19\u0e20\u0e32\u0e22\u0e43\u0e15\u0e49 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e25\u0e37\u0e2d\u0e01 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e41\u0e25\u0e30\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Your Customer's TAX registration numbers (if applicable) or any general information": "\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e20\u0e32\u0e29\u0e35 (\u0e16\u0e49\u0e32\u0e21\u0e35) \u0e2b\u0e23\u0e37\u0e2d\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b" +} \ No newline at end of file diff --git a/selling/doctype/customer/locale/th-py.json b/selling/doctype/customer/locale/th-py.json new file mode 100644 index 0000000000..54756a0e8d --- /dev/null +++ b/selling/doctype/customer/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "A Supplier exists with same name": "\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e35\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19" +} \ No newline at end of file diff --git a/selling/doctype/industry_type/locale/th-doc.json b/selling/doctype/industry_type/locale/th-doc.json new file mode 100644 index 0000000000..2b40806c10 --- /dev/null +++ b/selling/doctype/industry_type/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Industry": "\u0e2d\u0e38\u0e15\u0e2a\u0e32\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Industry Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2d\u0e38\u0e15\u0e2a\u0e32\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Selling": "\u0e02\u0e32\u0e22" +} \ No newline at end of file diff --git a/selling/doctype/installation_note/locale/th-doc.json b/selling/doctype/installation_note/locale/th-doc.json new file mode 100644 index 0000000000..2a1a567df1 --- /dev/null +++ b/selling/doctype/installation_note/locale/th-doc.json @@ -0,0 +1,34 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Person": "Contact Person", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Delivery Note No": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "IN": "\u0e43\u0e19", + "Installation Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Installation Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Installation Note Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Installation Time": "\u0e40\u0e27\u0e25\u0e32\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Item Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Select the relevant company name if you have multiple companies.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Selling": "\u0e02\u0e32\u0e22", + "Series": "\u0e0a\u0e38\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Submitted": "Submitted", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a" +} \ No newline at end of file diff --git a/selling/doctype/installation_note_item/locale/th-doc.json b/selling/doctype/installation_note_item/locale/th-doc.json new file mode 100644 index 0000000000..bd9a10da0d --- /dev/null +++ b/selling/doctype/installation_note_item/locale/th-doc.json @@ -0,0 +1,12 @@ +{ + "Against Document Detail No": "\u0e01\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e44\u0e21\u0e48\u0e21\u0e35", + "Against Document No": "\u0e01\u0e31\u0e1a\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e44\u0e21\u0e48\u0e21\u0e35", + "Delivery Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Document Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Installation Note Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Installed Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Selling": "\u0e02\u0e32\u0e22", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35" +} \ No newline at end of file diff --git a/selling/doctype/lead/locale/th-doc.json b/selling/doctype/lead/locale/th-doc.json new file mode 100644 index 0000000000..0450f1c830 --- /dev/null +++ b/selling/doctype/lead/locale/th-doc.json @@ -0,0 +1,81 @@ +{ + "To manage Territory, click here": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "Address Line 1": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e17\u0e35\u0e48 1", + "Address Line 2": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e17\u0e35\u0e48 2", + "Advertisement": "\u0e01\u0e32\u0e23\u0e42\u0e06\u0e29\u0e13\u0e32", + "Attempted to Contact": "\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Blog": "\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Blog Subscriber": "\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Call": "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c", + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Campaign Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d", + "Channel Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e0a\u0e48\u0e2d\u0e07\u0e17\u0e32\u0e07", + "City": "\u0e40\u0e21\u0e37\u0e2d\u0e07", + "Client": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Communication HTML": "HTML \u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Company Name": "\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Consultant": "\u0e1c\u0e39\u0e49\u0e43\u0e2b\u0e49\u0e04\u0e33\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact in Future": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e43\u0e19\u0e2d\u0e19\u0e32\u0e04\u0e15", + "Contacted": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Converted": "\u0e41\u0e1b\u0e25\u0e07", + "Country": "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Date on which the lead was last contacted": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e19\u0e33\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Email": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a", + "Enter campaign name if the source of lead is campaign.": "\u0e1b\u0e49\u0e2d\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d\u0e2b\u0e32\u0e01\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e02\u0e2d\u0e07\u0e2a\u0e32\u0e23\u0e15\u0e30\u0e01\u0e31\u0e48\u0e27\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d", + "Exhibition": "\u0e07\u0e32\u0e19\u0e21\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Fax": "\u0e41\u0e1f\u0e01\u0e0b\u0e4c", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "From Customer": "\u0e08\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Industry": "\u0e2d\u0e38\u0e15\u0e2a\u0e32\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Interested": "\u0e2a\u0e19\u0e43\u0e08", + "LEAD": "LEAD", + "LEAD/10-11/": "LEAD/10-11 /", + "LEAD/MUMBAI/": "LEAD / \u0e21\u0e38\u0e21\u0e44\u0e1a /", + "Last Contact Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Lead": "\u0e19\u0e33", + "Lead Details": "\u0e19\u0e33\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Lead Lost": "\u0e19\u0e33 Lost", + "Lead Owner": "\u0e19\u0e33\u0e40\u0e08\u0e49\u0e32\u0e02\u0e2d\u0e07", + "Lead Type": "\u0e19\u0e33\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Lost Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e17\u0e35\u0e48\u0e2b\u0e32\u0e22\u0e44\u0e1b", + "Lower Income": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e15\u0e48\u0e33", + "Market Segment": "\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e25\u0e32\u0e14", + "Middle Income": "\u0e21\u0e35\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e32\u0e19\u0e01\u0e25\u0e32\u0e07", + "Mobile No.": "\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name of organization from where lead has come": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e23\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e19\u0e33\u0e21\u0e32", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Next Contact By": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e16\u0e31\u0e14\u0e44\u0e1b", + "Next Contact Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e16\u0e31\u0e14\u0e44\u0e1b\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Not interested": "\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e43\u0e08", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Other": "\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Phone": "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c", + "Pin Code": "\u0e23\u0e2b\u0e31\u0e2a PIN", + "Product Enquiry": "\u0e2a\u0e2d\u0e1a\u0e16\u0e32\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Remark": "\u0e04\u0e33\u0e1e\u0e39\u0e14", + "Replied": "Replied", + "Request Type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d", + "Request for Information": "\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", + "Selling": "\u0e02\u0e32\u0e22", + "Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07", + "Source of th": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e02\u0e2d\u0e07 th", + "Source of the lead. If via a campaign, select \"Campaign\"": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e02\u0e2d\u0e07\u0e2a\u0e32\u0e23\u0e15\u0e30\u0e01\u0e31\u0e48\u0e27 \u0e16\u0e49\u0e32\u0e1c\u0e48\u0e32\u0e19\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d"", + "State": "\u0e23\u0e31\u0e10", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Suggestions": "\u0e02\u0e49\u0e2d\u0e40\u0e2a\u0e19\u0e2d\u0e41\u0e19\u0e30", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Unsubscribed": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e2a\u0e21\u0e31\u0e04\u0e23", + "Upper Income": "\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e1a\u0e19", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Your sales person who will contact the lead in future": "\u0e04\u0e19\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e19\u0e33\u0e43\u0e19\u0e2d\u0e19\u0e32\u0e04\u0e15", + "Your sales person will get a reminder on this date to contact the lead": "\u0e04\u0e19\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e08\u0e30\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e43\u0e19\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e19\u0e33" +} \ No newline at end of file diff --git a/selling/doctype/lead/locale/th-py.json b/selling/doctype/lead/locale/th-py.json new file mode 100644 index 0000000000..9eac19f7f1 --- /dev/null +++ b/selling/doctype/lead/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "Email Id must be unique, already exists for: ": "Email \u0e23\u0e2b\u0e31\u0e2a\u0e15\u0e49\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e0b\u0e49\u0e33\u0e01\u0e31\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a:" +} \ No newline at end of file diff --git a/selling/doctype/opportunity/locale/th-doc.json b/selling/doctype/opportunity/locale/th-doc.json new file mode 100644 index 0000000000..7b96960440 --- /dev/null +++ b/selling/doctype/opportunity/locale/th-doc.json @@ -0,0 +1,67 @@ +{ + "To manage Territory, click here": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "To manage Territory, click here": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Advertisement": "\u0e01\u0e32\u0e23\u0e42\u0e06\u0e29\u0e13\u0e32", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Cold Calling": "\u0e42\u0e17\u0e23\u0e40\u0e22\u0e47\u0e19", + "Communication HTML": "HTML \u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Mobile No": "\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Contact Person": "Contact Person", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer's Vendor": "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Date on which the lead was last contacted": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e19\u0e33\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Enter name of campaign if source of enquiry is campaign": "\u0e1b\u0e49\u0e2d\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d\u0e2b\u0e32\u0e01\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c\u0e2a\u0e2d\u0e1a\u0e16\u0e32\u0e21\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Exhibition": "\u0e07\u0e32\u0e19\u0e21\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Existing Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48", + "Filing in Additional Information about the Opportunity will help you analyze your data better.": "\u0e22\u0e37\u0e48\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e17\u0e35\u0e48\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Items which do not exist in Item master can also be entered on customer's request": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e25\u0e31\u0e01\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e02\u0e49\u0e32\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Keep a track of communication related to this enquiry which will help for future reference.": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e1a\u0e2a\u0e27\u0e19\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e19\u0e35\u0e49\u0e0b\u0e36\u0e48\u0e07\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e43\u0e19\u0e2d\u0e19\u0e32\u0e04\u0e15", + "Last Contact Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Lead": "\u0e19\u0e33", + "Maintenance": "\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Mass Mailing": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e21\u0e27\u0e25", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Next Contact By": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e16\u0e31\u0e14\u0e44\u0e1b", + "Next Contact Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e16\u0e31\u0e14\u0e44\u0e1b\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "OPPT": "OPPT", + "Opportunity": "\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Opportunity Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Opportunity From": "\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e08\u0e32\u0e01", + "Opportunity Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Opportunity Lost": "\u0e2a\u0e39\u0e0d\u0e40\u0e2a\u0e35\u0e22\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Opportunity Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Order Confirmed": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19", + "Potential Sales Deal": "Deal \u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e21\u0e35\u0e28\u0e31\u0e01\u0e22\u0e20\u0e32\u0e1e", + "Quotation Lost Reason": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 Lost \u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Quotation Sent": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e48\u0e07", + "Reference": "\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Sales": "\u0e02\u0e32\u0e22", + "Selling": "\u0e02\u0e32\u0e22", + "Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Submitted": "Submitted", + "Supplier Reference": "\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "To Discuss": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2b\u0e32\u0e23\u0e37\u0e2d\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Walk In": "Walk In", + "Your sales person who will contact the customer in future": "\u0e04\u0e19\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e43\u0e19\u0e2d\u0e19\u0e32\u0e04\u0e15", + "Your sales person will get a reminder on this date to contact the customer": "\u0e04\u0e19\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e08\u0e30\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e43\u0e19\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/selling/doctype/opportunity_item/locale/th-doc.json b/selling/doctype/opportunity_item/locale/th-doc.json new file mode 100644 index 0000000000..e33bd5df96 --- /dev/null +++ b/selling/doctype/opportunity_item/locale/th-doc.json @@ -0,0 +1,12 @@ +{ + "Basic Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Opportunity Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Selling": "\u0e02\u0e32\u0e22", + "UOM": "UOM" +} \ No newline at end of file diff --git a/selling/doctype/quotation/locale/th-doc.json b/selling/doctype/quotation/locale/th-doc.json new file mode 100644 index 0000000000..6637d02113 --- /dev/null +++ b/selling/doctype/quotation/locale/th-doc.json @@ -0,0 +1,96 @@ +{ + "Add Terms and Conditions for the Quotation like Payment Terms, Validity of Offer etc. You can also prepare a Terms and Conditions Master and use the Template": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e0a\u0e48\u0e19\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e07\u0e02\u0e49\u0e2d\u0e40\u0e2a\u0e19\u0e2d\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13 \u0e2f\u0e25\u0e2f \u0e19\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e19\u0e35\u0e49\u0e22\u0e31\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e15\u0e23\u0e35\u0e22\u0e21\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e41\u0e25\u0e30\u0e43\u0e0a\u0e49\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Advertisement": "\u0e01\u0e32\u0e23\u0e42\u0e06\u0e29\u0e13\u0e32", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Calculate Taxes and Charges": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Cold Calling": "\u0e42\u0e17\u0e23\u0e40\u0e22\u0e47\u0e19", + "Communication HTML": "HTML \u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Communication History": "\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Conversion Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer's Vendor": "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer's currency - If you want to select a currency that is not the default currency, then you must also specify the Currency Conversion Rate.": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32 - \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e41\u0e25\u0e49\u0e27\u0e04\u0e38\u0e13\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e23\u0e30\u0e1a\u0e38\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Exhibition": "\u0e07\u0e32\u0e19\u0e21\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Existing Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Filling in additional information about the Quotation will help you analyze your data better.": "\u0e01\u0e23\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Taxes and Charges": "\u0e23\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Grand Total*": "* \u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21", + "In Words": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07", + "In Words will be visible once you save the Quotation.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Keep a track on communications regarding this Quotation. This will help you remember earlier communications in case the Customer comes back again": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49 \u0e19\u0e35\u0e49\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e08\u0e33\u0e44\u0e27\u0e49\u0e01\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23\u0e43\u0e19\u0e01\u0e23\u0e13\u0e35\u0e17\u0e35\u0e48\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07", + "Lead": "\u0e19\u0e33", + "Lead Name": "\u0e19\u0e33\u0e0a\u0e37\u0e48\u0e2d", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Maintenance": "\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Mass Mailing": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e21\u0e27\u0e25", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Net Total*": "* \u0e2a\u0e38\u0e17\u0e18\u0e34", + "Opportunity Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Opportunity No": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e17\u0e35\u0e48", + "Order Confirmed": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19", + "Order Lost": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e2b\u0e32\u0e22\u0e44\u0e1b", + "Order Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Organization": "\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e23", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Currency Conversion Rate": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Price List and Currency": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e41\u0e25\u0e30\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", + "Pull Opportunity Detail": "\u0e14\u0e36\u0e07\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "QTN": "QTN", + "Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotation Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotation Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotation Lost Reason": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 Lost \u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Quotation To": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e40\u0e1e\u0e37\u0e48\u0e2d", + "Rate at which Price list currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Rate at which customer's currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Re-Calculate Values": "\u0e04\u0e48\u0e32\u0e04\u0e33\u0e19\u0e27\u0e13\u0e43\u0e2b\u0e21\u0e48", + "Reference": "\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Rounded Total": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21", + "Sales": "\u0e02\u0e32\u0e22", + "Sales Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the currency in which price list is maintained": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e22\u0e31\u0e07\u0e04\u0e07", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e1b\u0e49\u0e2d\u0e19\u0e43\u0e19 "\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" \u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a \u0e19\u0e35\u0e49\u0e08\u0e30\u0e14\u0e36\u0e07\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e27\u0e49\u0e43\u0e19 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" \u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a", + "Select the relevant company name if you have multiple companies.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Selling": "\u0e02\u0e32\u0e22", + "Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Submitted": "Submitted", + "Supplier Reference": "\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Taxes": "\u0e20\u0e32\u0e29\u0e35", + "Taxes and Charges Calculation": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Taxes and Charges Total*": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e23\u0e27\u0e21 *", + "Term Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e33", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions HTML": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02 HTML", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "To create Quotation against Opportunity, Select Opportunity No. and click on 'Pull Opportunity Details' ": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e01\u0e31\u0e1a\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48 '\u0e14\u0e36\u0e07\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e42\u0e2d\u0e01\u0e32\u0e2a'", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Will be fetched from Customer": "\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e23\u0e35\u0e22\u0e01\u0e08\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/selling/doctype/quotation_item/locale/th-doc.json b/selling/doctype/quotation_item/locale/th-doc.json new file mode 100644 index 0000000000..7f4c0c9990 --- /dev/null +++ b/selling/doctype/quotation_item/locale/th-doc.json @@ -0,0 +1,23 @@ +{ + "Against Docname": "\u0e01\u0e31\u0e1a Docname", + "Against Doctype": "\u0e01\u0e31\u0e1a Doctype", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Amount*": "* \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Basic Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Customer's Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Discount (%)": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14 (%)", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Price List Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Price List Rate*": "\u0e23\u0e32\u0e04\u0e32 * \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Quotation Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Selling": "\u0e02\u0e32\u0e22", + "UOM": "UOM" +} \ No newline at end of file diff --git a/selling/doctype/sales_and_purchase_return_item/locale/th-doc.json b/selling/doctype/sales_and_purchase_return_item/locale/th-doc.json new file mode 100644 index 0000000000..b47f740a3a --- /dev/null +++ b/selling/doctype/sales_and_purchase_return_item/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Batch No": "\u0e0a\u0e38\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Detail Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Returned Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e25\u0e31\u0e1a", + "Sales and Purchase Return Item": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e01\u0e25\u0e31\u0e1a", + "Selling": "\u0e02\u0e32\u0e22", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "UOM": "UOM" +} \ No newline at end of file diff --git a/selling/doctype/sales_common/locale/th-doc.json b/selling/doctype/sales_common/locale/th-doc.json new file mode 100644 index 0000000000..c21ef9e9fa --- /dev/null +++ b/selling/doctype/sales_common/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Sales Common": "\u0e02\u0e32\u0e22\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", + "Selling": "\u0e02\u0e32\u0e22" +} \ No newline at end of file diff --git a/selling/doctype/sales_common/locale/th-py.json b/selling/doctype/sales_common/locale/th-py.json new file mode 100644 index 0000000000..23de80b99c --- /dev/null +++ b/selling/doctype/sales_common/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "not within Fiscal Year": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13" +} \ No newline at end of file diff --git a/selling/doctype/sales_order/locale/th-doc.json b/selling/doctype/sales_order/locale/th-doc.json new file mode 100644 index 0000000000..c3231c553a --- /dev/null +++ b/selling/doctype/sales_order/locale/th-doc.json @@ -0,0 +1,124 @@ +{ + "% Delivered": "\u0e2a\u0e48\u0e07%", + "% Amount Billed": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19% \u0e08\u0e33\u0e19\u0e27\u0e19", + "% of materials billed against this Sales Order": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e19\u0e35\u0e49\u0e02\u0e32\u0e22", + "% of materials delivered against this Sales Order": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e15\u0e48\u0e2d\u0e19\u0e35\u0e49\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Advertisement": "\u0e01\u0e32\u0e23\u0e42\u0e06\u0e29\u0e13\u0e32", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Billed": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Billing Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Calculate Taxes and Charges": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Category of customer as entered in Customer master": "\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e1b\u0e49\u0e2d\u0e19\u0e44\u0e27\u0e49\u0e43\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Closed": "\u0e1b\u0e34\u0e14", + "Cold Calling": "\u0e42\u0e17\u0e23\u0e40\u0e22\u0e47\u0e19", + "Commission Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e04\u0e48\u0e32\u0e04\u0e2d\u0e21\u0e21\u0e34\u0e0a\u0e0a\u0e31\u0e48\u0e19", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Conversion Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer's Vendor": "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer's currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Delivered": "\u0e2a\u0e48\u0e07", + "Delivery Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Display all the individual items delivered with the main items": "\u0e41\u0e2a\u0e14\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e41\u0e15\u0e48\u0e25\u0e30\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e21\u0e32\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e01\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e25\u0e31\u0e01", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Exhibition": "\u0e07\u0e32\u0e19\u0e21\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Existing Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48", + "Expected Delivery Date": "\u0e04\u0e32\u0e14\u0e27\u0e48\u0e32\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Filling in additional information about the Sales Order will help you analyze your data better.": "\u0e01\u0e23\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Taxes and Charges": "\u0e23\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Grand Total (Export)": "\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "Grand Total*": "* \u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21", + "In Words": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07", + "In Words (Export)": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "In Words will be visible once you save the Sales Order.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Maintenance": "\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Mass Mailing": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e21\u0e27\u0e25", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name": "\u0e0a\u0e37\u0e48\u0e2d", + "Name as entered in Sales Partner master": "\u0e0a\u0e37\u0e48\u0e2d\u0e17\u0e35\u0e48\u0e1b\u0e49\u0e2d\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e43\u0e19\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Net Total*": "* \u0e2a\u0e38\u0e17\u0e18\u0e34", + "Not Applicable": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Not Billed": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a", + "Not Delivered": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2a\u0e48\u0e07", + "Order Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "P.O. Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 PO", + "P.O. No": "\u0e44\u0e21\u0e48\u0e21\u0e35 PO", + "PI/2011/": "PI/2011 /", + "Packing Details": "\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Packing List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e23\u0e08\u0e38", + "Partly Billed": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e21\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e43\u0e2b\u0e0d\u0e48", + "Partly Delivered": "\u0e2a\u0e48\u0e07\u0e1a\u0e32\u0e07\u0e2a\u0e48\u0e27\u0e19", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Currency Conversion Rate": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Price List and Currency": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e41\u0e25\u0e30\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Pull Quotation Items": "\u0e14\u0e36\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Purchase Order sent by customer": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e21\u0e32\u0e08\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Quotation Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotation No": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35", + "Quotation no against which this Sales Order is made ": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e19\u0e35\u0e49\u0e08\u0e30\u0e17\u0e33", + "Rate at which Price list currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Rate at which customer's currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Re-Calculate Values": "\u0e04\u0e48\u0e32\u0e04\u0e33\u0e19\u0e27\u0e13\u0e43\u0e2b\u0e21\u0e48", + "Reference": "\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Rounded Total": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21", + "Rounded Total (Export)": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "SO": "\u0e14\u0e31\u0e07\u0e19\u0e31\u0e49\u0e19", + "SO/10-11/": "SO/10-11 /", + "SO1112": "SO1112", + "Sales": "\u0e02\u0e32\u0e22", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Sales Order Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Sales Order Items": "\u0e02\u0e32\u0e22\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Sales Team": "\u0e17\u0e35\u0e21\u0e02\u0e32\u0e22", + "Sales Team1": "\u0e02\u0e32\u0e22 Team1", + "Select Customer": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the currency in which price list is maintained": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e22\u0e31\u0e07\u0e04\u0e07", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e1b\u0e49\u0e2d\u0e19\u0e43\u0e19 "\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" \u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a \u0e19\u0e35\u0e49\u0e08\u0e30\u0e14\u0e36\u0e07\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e27\u0e49\u0e43\u0e19 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" \u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a", + "Select the relevant company name if you have multiple companies.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Selling": "\u0e02\u0e32\u0e22", + "Series": "\u0e0a\u0e38\u0e14", + "Shipping Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", + "Shipping Address Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", + "Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stopped": "\u0e2b\u0e22\u0e38\u0e14", + "Submitted": "Submitted", + "Supplier Reference": "\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Taxes": "\u0e20\u0e32\u0e29\u0e35", + "Taxes and Charges Calculation": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Taxes and Charges Total*": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e23\u0e27\u0e21 *", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions Details": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Terms and Conditions HTML": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02 HTML", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Total Commission": "\u0e04\u0e13\u0e30\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e23\u0e27\u0e21", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Track this Sales Order against any Project": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e19\u0e35\u0e49\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22\u0e01\u0e31\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e43\u0e14 \u0e46" +} \ No newline at end of file diff --git a/selling/doctype/sales_order_item/locale/th-doc.json b/selling/doctype/sales_order_item/locale/th-doc.json new file mode 100644 index 0000000000..4b6a87a999 --- /dev/null +++ b/selling/doctype/sales_order_item/locale/th-doc.json @@ -0,0 +1,32 @@ +{ + "Actual Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Amount*": "* \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Basic Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e02\u0e31\u0e49\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19", + "Billed Amt": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e08\u0e33\u0e19\u0e27\u0e19\u0e21\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14", + "Brand Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Customer's Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Delivered Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e48\u0e07", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Discount(%)": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14 (%)", + "For Production": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Planned Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19", + "Price List Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Price List Rate*": "\u0e23\u0e32\u0e04\u0e32 * \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d", + "Produced Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e1c\u0e25\u0e34\u0e15", + "Projected Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e44\u0e27\u0e49", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Quotation No.": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Reserved Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e07\u0e27\u0e19", + "Sales Order Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Sales Order Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Selling": "\u0e02\u0e32\u0e22", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "UOM": "UOM" +} \ No newline at end of file diff --git a/selling/doctype/sales_team/locale/th-doc.json b/selling/doctype/sales_team/locale/th-doc.json new file mode 100644 index 0000000000..74c4b8ac7b --- /dev/null +++ b/selling/doctype/sales_team/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "Allocated (%)": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23 (%)", + "Allocated Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e23\u0e23", + "Contact No.": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Incentives": "\u0e41\u0e23\u0e07\u0e08\u0e39\u0e07\u0e43\u0e08", + "Parenttype": "Parenttype", + "Sales Person": "\u0e04\u0e19\u0e02\u0e32\u0e22", + "Sales Team": "\u0e17\u0e35\u0e21\u0e02\u0e32\u0e22", + "Selling": "\u0e02\u0e32\u0e22" +} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/th-doc.json b/selling/doctype/shipping_address/locale/th-doc.json new file mode 100644 index 0000000000..1ada6757a5 --- /dev/null +++ b/selling/doctype/shipping_address/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Is Primary Address": "\u0e40\u0e1b\u0e47\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2b\u0e25\u0e31\u0e01", + "No": "\u0e44\u0e21\u0e48", + "Selling": "\u0e02\u0e32\u0e22", + "Ship To": "\u0e40\u0e23\u0e37\u0e2d", + "Shipping Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", + "Shipping Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/selling/doctype/sms_center/locale/th-doc.json b/selling/doctype/sms_center/locale/th-doc.json new file mode 100644 index 0000000000..4120dfa026 --- /dev/null +++ b/selling/doctype/sms_center/locale/th-doc.json @@ -0,0 +1,21 @@ +{ + "All Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Customer Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Employee (Active)": "\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19 (Active) \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Lead (Open)": "\u0e15\u0e30\u0e01\u0e31\u0e48\u0e27 (\u0e40\u0e1b\u0e34\u0e14) \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Sales Partner Contact": "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "All Sales Person": "\u0e04\u0e19\u0e02\u0e32\u0e22\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Supplier Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Branch": "\u0e2a\u0e32\u0e02\u0e32", + "Create Receiver List": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Message": "\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23", + "Message greater than 160 character will be splitted into multiple mesage": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e21\u0e32\u0e01\u0e02\u0e36\u0e49\u0e19\u0e01\u0e27\u0e48\u0e32 160 \u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e25\u0e07 splitted mesage \u0e2b\u0e25\u0e32\u0e22", + "Receiver List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e23\u0e31\u0e1a", + "SMS Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c SMS", + "Selling": "\u0e02\u0e32\u0e22", + "Send SMS": "\u0e2a\u0e48\u0e07 SMS", + "Send To": "\u0e2a\u0e48\u0e07\u0e43\u0e2b\u0e49", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22" +} \ No newline at end of file diff --git a/selling/module_def/selling/locale/th-doc.json b/selling/module_def/selling/locale/th-doc.json new file mode 100644 index 0000000000..8e794bca37 --- /dev/null +++ b/selling/module_def/selling/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "Buyer of Goods and Services.": "\u0e1c\u0e39\u0e49\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Customer Addresses And Contacts": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22 \u0e15\u0e34\u0e14\u0e15\u0e32\u0e21 Leads, \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32, \u0e2f\u0e25\u0e2f \u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e08\u0e32\u0e01\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e27\u0e31\u0e14\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e25\u0e07\u0e17\u0e38\u0e19", + "Potential Sales Deal": "Deal \u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e21\u0e35\u0e28\u0e31\u0e01\u0e22\u0e20\u0e32\u0e1e", + "Sales Analytics": "Analytics \u0e02\u0e32\u0e22", + "Sales Browser": "\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Sales Dashboard": "\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Orders Pending To Be Delivered": "\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e23\u0e2d\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a", + "Selling Home": "\u0e02\u0e32\u0e22\u0e1a\u0e49\u0e32\u0e19" +} \ No newline at end of file diff --git a/selling/page/selling_home/locale/th-js.json b/selling/page/selling_home/locale/th-js.json new file mode 100644 index 0000000000..146d0f85cb --- /dev/null +++ b/selling/page/selling_home/locale/th-js.json @@ -0,0 +1,52 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "All Addresses.": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Contacts.": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "All Products or Services.": "\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Analytics": "Analytics", + "Bundle items at time of sale.": "\u0e01\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e40\u0e27\u0e25\u0e32\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Commission partners and targets": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e04\u0e13\u0e30\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e41\u0e25\u0e30\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Confirmed orders from Customers.": "\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e22\u0e37\u0e19\u0e22\u0e31\u0e19\u0e08\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Addresses And Contacts": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer classification tree.": "\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e08\u0e33\u0e41\u0e19\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer database.": "\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Database of potential customers.": "\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e28\u0e31\u0e01\u0e22\u0e20\u0e32\u0e1e", + "Documents": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Helper for managing return of goods (sales or purchase)": "\u0e1c\u0e39\u0e49\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e19\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e2b\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e32\u0e23\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e02\u0e2d\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 (\u0e02\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e0b\u0e37\u0e49\u0e2d)", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Lead": "\u0e19\u0e33", + "Masters": "\u0e42\u0e17", + "Mupltiple Item prices.": "\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 Mupltiple", + "Opportunity": "\u0e42\u0e2d\u0e01\u0e32\u0e2a", + "Potential opportunities for selling.": "\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e17\u0e35\u0e48\u0e21\u0e35\u0e28\u0e31\u0e01\u0e22\u0e20\u0e32\u0e1e\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotes to Leads or Customers.": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e33\u0e44\u0e1b\u0e2a\u0e39\u0e48\u200b\u200b\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e2b\u0e23\u0e37\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Reports": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", + "SMS Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c SMS", + "Sales Analytics": "Analytics \u0e02\u0e32\u0e22", + "Sales BOM": "BOM \u0e02\u0e32\u0e22", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Sales Orders Pending to be Delivered": "\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e23\u0e2d\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a", + "Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Person": "\u0e04\u0e19\u0e02\u0e32\u0e22", + "Sales Returns": "\u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e02\u0e32\u0e22", + "Sales Taxes and Charges Master": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17", + "Sales campaigns": "\u0e41\u0e04\u0e21\u0e40\u0e1b\u0e0d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales persons and targets": "\u0e04\u0e19\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Sales taxes template.": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e21\u0e48", + "Sales territories.": "\u0e40\u0e02\u0e15\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Send mass SMS to your contacts": "\u0e2a\u0e48\u0e07 SMS \u0e21\u0e27\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Template of terms or contract.": "\u0e41\u0e21\u0e48\u0e02\u0e2d\u0e07\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e2a\u0e31\u0e0d\u0e0d\u0e32", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", + "Tree of item classification": "\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Trend Analyzer": "\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e41\u0e19\u0e27\u0e42\u0e19\u0e49\u0e21" +} \ No newline at end of file diff --git a/setup/doctype/authorization_control/locale/th-doc.json b/setup/doctype/authorization_control/locale/th-doc.json new file mode 100644 index 0000000000..b57ced060b --- /dev/null +++ b/setup/doctype/authorization_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Authorization Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/authorization_rule/locale/th-doc.json b/setup/doctype/authorization_rule/locale/th-doc.json new file mode 100644 index 0000000000..d53bc2c574 --- /dev/null +++ b/setup/doctype/authorization_rule/locale/th-doc.json @@ -0,0 +1,30 @@ +{ + "Above Value": "\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32\u0e04\u0e48\u0e32", + "Applicable To (Designation)": "\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e01\u0e31\u0e1a (\u0e08\u0e38\u0e14)", + "Applicable To (Employee)": "\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e01\u0e31\u0e1a (\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19)", + "Applicable To (Role)": "\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e01\u0e31\u0e1a (Role)", + "Applicable To (User)": "\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e01\u0e31\u0e1a (User)", + "Appraisal": "\u0e01\u0e32\u0e23\u0e15\u0e35\u0e23\u0e32\u0e04\u0e32", + "Approving Role": "\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e1a\u0e17\u0e1a\u0e32\u0e17", + "Approving User": "\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "Authorization Rule": "\u0e01\u0e0e\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", + "Average Discount": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22", + "Based On": "\u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Customer / Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32 / \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Customerwise Discount": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14 Customerwise", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Itemwise Discount": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14 Itemwise", + "Not Applicable": "\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Purchase Invoice": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Purchase Order": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "This will be used for setting rule in HR module": "\u0e19\u0e35\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e43\u0e0a\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e0e\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e43\u0e19\u0e42\u0e21\u0e14\u0e39\u0e25\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Transaction": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/setup/doctype/brand/locale/th-doc.json b/setup/doctype/brand/locale/th-doc.json new file mode 100644 index 0000000000..76e5579458 --- /dev/null +++ b/setup/doctype/brand/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Brand Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/company/locale/th-doc.json b/setup/doctype/company/locale/th-doc.json new file mode 100644 index 0000000000..05cb635ffc --- /dev/null +++ b/setup/doctype/company/locale/th-doc.json @@ -0,0 +1,32 @@ +{ + "Abbr": "abbr", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Company Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Company Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Company registration numbers for your reference. Example: VAT Registration Numbers etc.": "\u0e40\u0e25\u0e02\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 \u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07: \u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e20\u0e32\u0e29\u0e35\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e19", + "Company registration numbers for your reference. Tax numbers etc.": "\u0e40\u0e25\u0e02\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 \u0e15\u0e31\u0e27\u0e40\u0e25\u0e02\u0e20\u0e32\u0e29\u0e35 \u0e2f\u0e25\u0e2f", + "Credit Days": "\u0e27\u0e31\u0e19\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Credit Limit": "\u0e27\u0e07\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e34\u0e19\u0e40\u0e0a\u0e37\u0e48\u0e2d", + "Default Bank Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Settings": "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Email": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Fax": "\u0e41\u0e1f\u0e01\u0e0b\u0e4c", + "For reference only.": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19", + "If Monthly Budget Exceeded": "\u0e2b\u0e32\u0e01\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e23\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e19", + "If Yearly Budget Exceeded": "\u0e16\u0e49\u0e32\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e1b\u0e35\u0e40\u0e01\u0e34\u0e19", + "Ignore": "\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e43\u0e08", + "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.": "\u0e19\u0e34\u0e15\u0e34\u0e1a\u0e38\u0e04\u0e04\u0e25 / \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e22\u0e48\u0e2d\u0e22\u0e14\u0e49\u0e27\u0e22\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34\u0e17\u0e35\u0e48\u0e41\u0e22\u0e01\u0e15\u0e48\u0e32\u0e07\u0e2b\u0e32\u0e01\u0e08\u0e32\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e32\u0e23", + "Payables Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e40\u0e08\u0e49\u0e32\u0e2b\u0e19\u0e35\u0e49", + "Phone No": "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c\u0e44\u0e21\u0e48\u0e21\u0e35", + "Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.": "\u0e01\u0e23\u0e38\u0e13\u0e32\u0e43\u0e2a\u0e48\u0e0a\u0e37\u0e48\u0e2d\u0e22\u0e48\u0e2d\u0e2b\u0e23\u0e37\u0e2d\u0e0a\u0e37\u0e48\u0e2d\u0e2a\u0e31\u0e49\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e32\u0e21\u0e01\u0e47\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e33\u0e15\u0e48\u0e2d\u0e17\u0e49\u0e32\u0e22\u0e17\u0e38\u0e01\u0e2b\u0e31\u0e27\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Receivables Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e2b\u0e19\u0e35\u0e49", + "Registration Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e25\u0e07\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19", + "Registration Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e25\u0e07\u0e17\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Stop": "\u0e2b\u0e22\u0e38\u0e14", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Warn": "\u0e40\u0e15\u0e37\u0e2d\u0e19", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/setup/doctype/contact_control/locale/th-doc.json b/setup/doctype/contact_control/locale/th-doc.json new file mode 100644 index 0000000000..312a4cfb12 --- /dev/null +++ b/setup/doctype/contact_control/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Contact Control": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21", + "Customer Intro": "\u0e41\u0e19\u0e30\u0e19\u0e33\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Header": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Supplier Intro": "\u0e41\u0e19\u0e30\u0e19\u0e33\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15" +} \ No newline at end of file diff --git a/setup/doctype/country/locale/th-doc.json b/setup/doctype/country/locale/th-doc.json new file mode 100644 index 0000000000..99ea2e5cea --- /dev/null +++ b/setup/doctype/country/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Country": "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", + "Country Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", + "Date Format": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Time Zones": "\u0e40\u0e02\u0e15\u0e40\u0e27\u0e25\u0e32" +} \ No newline at end of file diff --git a/setup/doctype/currency/locale/th-doc.json b/setup/doctype/currency/locale/th-doc.json new file mode 100644 index 0000000000..a7fedf9bb7 --- /dev/null +++ b/setup/doctype/currency/locale/th-doc.json @@ -0,0 +1,22 @@ +{ + "# ###.##": "# # # #. # #", + "#,###": "# # # #", + "#,###.##": "# # # #. # #", + "#,###.###": "# # # #. # # #", + "#,##,###.##": "# # # # # #. # #", + "#.###": "#. # # #", + "#.###,##": "#. # # # # #", + "**Currency** Master": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19 ** ** \u0e42\u0e17", + "1 Currency = [?] FractionFor e.g. 1 USD = 100 Cent": "1 \u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19 = [?] FractionFor \u0e40\u0e0a\u0e48\u0e19 1 USD = 100 Cent", + "A symbol for this currency. For e.g. $": "\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e19\u0e35\u0e49 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e0a\u0e48\u0e19 $", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Currency Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e2a\u0e01\u0e38\u0e25", + "Enabled": "\u0e40\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Fraction": "\u0e40\u0e28\u0e29", + "Fraction Units": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e40\u0e28\u0e29", + "How should this currency be formatted? If not set, will use system defaults": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e04\u0e27\u0e23\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e08\u0e31\u0e14\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a? \u0e16\u0e49\u0e32\u0e44\u0e21\u0e48\u0e15\u0e31\u0e49\u0e07\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e02\u0e2d\u0e07\u0e23\u0e30\u0e1a\u0e1a", + "Number Format": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Sub-currency. For e.g. \"Cent\"": "\u0e22\u0e48\u0e2d\u0e22\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19 \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a "\u0e23\u0e49\u0e2d\u0e22" \u0e40\u0e0a\u0e48\u0e19", + "Symbol": "\u0e2a\u0e31\u0e0d\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c" +} \ No newline at end of file diff --git a/setup/doctype/customer_group/locale/th-doc.json b/setup/doctype/customer_group/locale/th-doc.json new file mode 100644 index 0000000000..efa4e03d09 --- /dev/null +++ b/setup/doctype/customer_group/locale/th-doc.json @@ -0,0 +1,16 @@ +{ + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Default Price List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Has Child Node": "\u0e21\u0e35\u0e42\u0e2b\u0e19\u0e14\u0e25\u0e39\u0e01", + "No": "\u0e44\u0e21\u0e48", + "Only leaf nodes are allowed in transaction": "\u0e42\u0e2b\u0e19\u0e14\u0e43\u0e1a\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21", + "Parent Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e1c\u0e39\u0e49\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "This Price List will be selected as default for all Customers under this Group.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e20\u0e32\u0e22\u0e43\u0e15\u0e49\u0e01\u0e25\u0e38\u0e48\u0e21\u0e19\u0e35\u0e49", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Yes": "\u0e43\u0e0a\u0e48", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "RGT" +} \ No newline at end of file diff --git a/setup/doctype/email_digest/locale/th-doc.json b/setup/doctype/email_digest/locale/th-doc.json new file mode 100644 index 0000000000..55a2bcaef9 --- /dev/null +++ b/setup/doctype/email_digest/locale/th-doc.json @@ -0,0 +1,49 @@ +{ + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Add/Remove Recipients": "Add / Remove \u0e1c\u0e39\u0e49\u0e23\u0e31\u0e1a", + "Bank Balance": "\u0e41\u0e25\u0e30\u0e2b\u0e19\u0e35\u0e49\u0e2a\u0e34\u0e19\u0e18\u0e19\u0e32\u0e04\u0e32\u0e23\u0e41\u0e2b\u0e48\u0e07", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Calendar Events": "\u0e1b\u0e0f\u0e34\u0e17\u0e34\u0e19\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e13\u0e4c", + "Check all the items below that you want to send in this digest.": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e22\u0e48\u0e2d\u0e22\u0e19\u0e35\u0e49", + "Collections": "\u0e04\u0e2d\u0e25\u0e40\u0e25\u0e01\u0e0a\u0e31\u0e19", + "Daily": "\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e27\u0e31\u0e19", + "Email Digest": "\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Email Digest Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e40\u0e14\u0e48\u0e19", + "Enabled": "\u0e40\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Expenses Booked": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e19 Booked", + "For Company": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "General": "\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", + "How frequently?": "\u0e27\u0e34\u0e18\u0e35\u0e1a\u0e48\u0e2d\u0e22?", + "Income": "\u0e40\u0e07\u0e34\u0e19\u0e44\u0e14\u0e49", + "Income Year to Date": "\u0e1b\u0e35\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Monthly": "\u0e23\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19", + "New Communications": "\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48", + "New Delivery Notes": "\u0e43\u0e1a\u0e19\u0e33\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e2b\u0e21\u0e48", + "New Enquiries": "\u0e43\u0e2b\u0e21\u0e48\u0e2a\u0e2d\u0e1a\u0e16\u0e32\u0e21", + "New Leads": "\u0e43\u0e2b\u0e21\u0e48\u0e19\u0e33", + "New Material Requests": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e43\u0e2b\u0e21\u0e48", + "New Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e21\u0e48", + "New Purchase Orders": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e2b\u0e21\u0e48", + "New Purchase Receipts": "\u0e23\u0e32\u0e22\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e2b\u0e21\u0e48", + "New Quotations": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e43\u0e2b\u0e21\u0e48", + "New Sales Orders": "\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e02\u0e32\u0e22\u0e43\u0e2b\u0e21\u0e48", + "New Stock Entries": "\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e19\u0e15\u0e4c\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e43\u0e2b\u0e21\u0e48", + "New Supplier Quotations": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e43\u0e2b\u0e21\u0e48", + "New Support Tickets": "\u0e15\u0e31\u0e4b\u0e27\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e43\u0e2b\u0e21\u0e48", + "Next email will be sent on:": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e16\u0e31\u0e14\u0e44\u0e1b\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07\u0e40\u0e21\u0e37\u0e48\u0e2d:", + "Note: Email will not be sent to disabled users": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e08\u0e30\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e04\u0e19\u0e1e\u0e34\u0e01\u0e32\u0e23", + "Open Tickets": "\u0e15\u0e31\u0e4b\u0e27\u0e40\u0e1b\u0e34\u0e14", + "Payables": "\u0e40\u0e08\u0e49\u0e32\u0e2b\u0e19\u0e35\u0e49", + "Payments": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Receivables": "\u0e25\u0e39\u0e01\u0e2b\u0e19\u0e35\u0e49", + "Recipients": "\u0e1c\u0e39\u0e49\u0e23\u0e31\u0e1a", + "Select Digest Content": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e2a\u0e33\u0e04\u0e31\u0e0d", + "Selling": "\u0e02\u0e32\u0e22", + "Send regular summary reports via Email.": "\u0e2a\u0e48\u0e07\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e2a\u0e23\u0e38\u0e1b\u0e1b\u0e01\u0e15\u0e34\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "To Do List": "To Do List", + "Weekly": "\u0e23\u0e32\u0e22\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c" +} \ No newline at end of file diff --git a/setup/doctype/email_digest/locale/th-py.json b/setup/doctype/email_digest/locale/th-py.json new file mode 100644 index 0000000000..919dc154f6 --- /dev/null +++ b/setup/doctype/email_digest/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "All Day": "\u0e27\u0e31\u0e19\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14" +} \ No newline at end of file diff --git a/setup/doctype/email_settings/locale/th-doc.json b/setup/doctype/email_settings/locale/th-doc.json new file mode 100644 index 0000000000..d225a4b818 --- /dev/null +++ b/setup/doctype/email_settings/locale/th-doc.json @@ -0,0 +1,34 @@ +{ + "Auto Email Id": "\u0e23\u0e2b\u0e31\u0e2a\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34", + "Autoreply when a new mail is received": "autoreply \u0e40\u0e21\u0e37\u0e48\u0e2d\u0e21\u0e35\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e2b\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a", + "Check this to pull emails from your mailbox": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e19\u0e35\u0e49\u0e08\u0e30\u0e14\u0e36\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e08\u0e32\u0e01\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Custom Autoreply Message": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e15\u0e2d\u0e1a\u0e01\u0e25\u0e31\u0e1a\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", + "Email Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Email Settings for Outgoing and Incoming Emails.": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e32\u0e2d\u0e2d\u0e01\u0e41\u0e25\u0e30\u0e02\u0e32\u0e40\u0e02\u0e49\u0e32", + "If non standard port (e.g. 587)": "\u0e16\u0e49\u0e32\u0e1e\u0e2d\u0e23\u0e4c\u0e15\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e44\u0e21\u0e48 (\u0e40\u0e0a\u0e48\u0e19 587)", + "Incoming Mail Setting": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e32\u0e40\u0e02\u0e49\u0e32", + "Login Id": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e23\u0e2b\u0e31\u0e2a", + "Mail Password": "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Mail Port": "\u0e1e\u0e2d\u0e23\u0e4c\u0e15\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Outgoing Mail Server": "\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e32\u0e2d\u0e2d\u0e01", + "Outgoing Mails": "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e2d\u0e2d\u0e01", + "POP3 Mail Server": "\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22 POP3", + "POP3 mail server (e.g. pop.gmail.com)": "\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e2d\u0e35\u0e40\u0e21\u0e25 POP3 (\u0e40\u0e0a\u0e48\u0e19 pop.gmail.com)", + "SMTP Server (e.g. smtp.gmail.com)": "SMTP Server (smtp.gmail.com \u0e40\u0e0a\u0e48\u0e19)", + "Send Autoreply": "\u0e2a\u0e48\u0e07 autoreply", + "Set Login and Password if authentication is required.": "\u0e15\u0e31\u0e49\u0e07\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a\u0e41\u0e25\u0e30\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e2b\u0e32\u0e01\u0e15\u0e23\u200b\u200b\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07", + "Set the POP3 email settings to pull emails directly from a mailbox and create Support Tickets": "\u0e15\u0e31\u0e49\u0e07\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25 POP3 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e14\u0e36\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e42\u0e14\u0e22\u0e15\u0e23\u0e07\u0e08\u0e32\u0e01\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e41\u0e25\u0e30\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e15\u0e31\u0e4b\u0e27\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.": "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2d\u0e35\u0e40\u0e21\u0e25 SMTP \u0e02\u0e32\u0e2d\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48 \u0e23\u0e30\u0e1a\u0e1a\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e08\u0e30\u0e44\u0e1b\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e19\u0e35\u0e49 \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e41\u0e19\u0e48\u0e43\u0e08\u0e27\u0e48\u0e32\u0e40\u0e27\u0e49\u0e19\u0e27\u0e48\u0e32\u0e07\u0e44\u0e27\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e0a\u0e49\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c ERPNext (\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e08\u0e30\u0e22\u0e31\u0e07\u0e04\u0e07\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07\u0e08\u0e32\u0e01 id \u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13) \u0e2b\u0e23\u0e37\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Signature": "\u0e25\u0e32\u0e22\u0e40\u0e0b\u0e47\u0e19", + "Signature to be appended at the end of every email": "\u0e25\u0e32\u0e22\u0e40\u0e0b\u0e47\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e15\u0e48\u0e2d\u0e17\u0e49\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e38\u0e01", + "Support Email": "\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Support Password": "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Support Ticket Mail Settings": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e15\u0e31\u0e4b\u0e27", + "Sync Support Mails": "\u0e0b\u0e34\u0e07\u0e04\u0e4c\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "System generated mails will be sent from this email id.": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e23\u0e30\u0e1a\u0e1a\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07\u0e21\u0e32\u0e08\u0e32\u0e01 id \u0e2d\u0e35\u0e40\u0e21\u0e25\u0e19\u0e35\u0e49", + "To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.": "\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e15\u0e31\u0e4b\u0e27\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e08\u0e32\u0e01\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 POP3 \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48 \u0e04\u0e38\u0e13\u0e19\u0e36\u0e01\u0e04\u0e34\u0e14\u0e15\u0e49\u0e2d\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07 id \u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e41\u0e22\u0e01\u0e15\u0e48\u0e32\u0e07\u0e2b\u0e32\u0e01\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e30\u0e1a\u0e1a ERP \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e08\u0e30\u0e16\u0e39\u0e01\u0e0b\u0e34\u0e07\u0e04\u0e4c\u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a\u0e08\u0e32\u0e01 ID mail \u0e17\u0e35\u0e48 \u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e41\u0e19\u0e48\u0e43\u0e08\u0e27\u0e48\u0e32\u0e42\u0e1b\u0e23\u0e14\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Use SSL": "\u0e43\u0e0a\u0e49 SSL", + "User Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "Your support email id - must be a valid email - this is where your emails will come!": "id \u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19 - \u0e15\u0e49\u0e2d\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07 - \u0e19\u0e35\u0e48\u0e04\u0e37\u0e2d\u0e17\u0e35\u0e48\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e08\u0e30\u0e21\u0e32!" +} \ No newline at end of file diff --git a/setup/doctype/features_setup/locale/th-doc.json b/setup/doctype/features_setup/locale/th-doc.json new file mode 100644 index 0000000000..3b25014284 --- /dev/null +++ b/setup/doctype/features_setup/locale/th-doc.json @@ -0,0 +1,48 @@ +{ + "1. To maintain the customer wise item code and to make them searchable based on their code use this option": "1 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e23\u0e31\u0e01\u0e29\u0e32\u0e23\u0e2b\u0e31\u0e2a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e09\u0e25\u0e32\u0e14\u0e41\u0e25\u0e30\u0e08\u0e30\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e15\u0e32\u0e21\u0e23\u0e2b\u0e31\u0e2a\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e43\u0e0a\u0e49\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e19\u0e35\u0e49", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "After Sale Installations": "\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e02\u0e32\u0e22", + "All export related fields like currency, conversion rate, export total, export grand total etc are available in
Delivery Note, POS, Quotation, Sales Invoice, Sales Order etc.": "\u0e2a\u0e32\u0e02\u0e32\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07\u0e23\u0e27\u0e21\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01 \u0e2f\u0e25\u0e2f \u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19
\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32, POS, \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32, \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22, \u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22 \u0e2f\u0e25\u0e2f", + "All import related fields like currency, conversion rate, import total, import grand total etc are available in
Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.": "\u0e2a\u0e32\u0e02\u0e32\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e40\u0e0a\u0e48\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07\u0e23\u0e27\u0e21\u0e01\u0e32\u0e23\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e41\u0e25\u0e30\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19
\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d, \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15, \u0e43\u0e1a\u0e01\u0e33\u0e01\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d, \u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d \u0e2f\u0e25\u0e2f", + "Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet": "\u0e17\u0e35\u0e48\u0e21\u0e35\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e43\u0e19 BOM, \u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d, \u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d, \u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49, \u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e15\u0e47\u0e2d\u0e01, Timesheet", + "Brands": "\u0e41\u0e1a\u0e23\u0e19\u0e14\u0e4c", + "Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e27\u0e48\u0e32\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34 \u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e2a\u0e48\u0e07\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e43\u0e14 \u0e46 \u0e02\u0e32\u0e22\u0e2a\u0e48\u0e27\u0e19\u0e01\u0e34\u0e08\u0e27\u0e31\u0e15\u0e23\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19", + "Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice": "\u0e17\u0e38\u0e48\u0e07\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e0a\u0e49\u0e44\u0e14\u0e49\u0e43\u0e19\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d, \u0e43\u0e1a\u0e01\u0e33\u0e01\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d", + "Enables More Info. in all documents": "\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21. \u0e43\u0e19\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Exports": "\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01", + "Features Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e2d\u0e33\u0e19\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e30\u0e14\u0e27\u0e01", + "Field available in Delivery Note, Quotation, Sales Invoice, Sales Order": "\u0e2a\u0e19\u0e32\u0e21\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e2a\u0e48\u0e07\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32, \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22, \u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "If Sale BOM is defined, the actual BOM of the Pack is displayed as table.Available in Delivery Note and Sales Order": "\u0e16\u0e49\u0e32 BOM \u0e02\u0e32\u0e22\u0e16\u0e39\u0e01\u0e01\u0e33\u0e2b\u0e19\u0e14 BOM \u0e17\u0e35\u0e48\u0e41\u0e17\u0e49\u0e08\u0e23\u0e34\u0e07\u0e02\u0e2d\u0e07\u0e41\u0e1e\u0e47\u0e04\u0e08\u0e30\u0e1b\u0e23\u0e32\u0e01\u0e0f\u0e40\u0e1b\u0e47\u0e19 table.Available \u0e43\u0e19\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "If you follow Quality Inspection
Enables item QA Required and QA No in Purchase Receipt": "\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e17\u0e33\u0e15\u0e32\u0e21\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e
\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e41\u0e25\u0e30 QA QA \u0e43\u0e19\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e0b\u0e37\u0e49\u0e2d", + "If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity": "\u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e21\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e17\u0e35\u0e21\u0e2b\u0e38\u0e49\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e32\u0e22 (\u0e15\u0e31\u0e27\u0e41\u0e17\u0e19\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22) \u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e41\u0e25\u0e30\u0e23\u0e31\u0e01\u0e29\u0e32\u0e1c\u0e25\u0e07\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32\u0e43\u0e19\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "If you have long print formats, this feature can be used to split the page to be printed on multiple pages with all headers and footers on each page": "\u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e22\u0e32\u0e27\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e01\u0e32\u0e23\u0e41\u0e22\u0e01\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e17\u0e35\u0e48\u0e08\u0e30\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e1a\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e2b\u0e19\u0e49\u0e32\u0e01\u0e31\u0e1a\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27\u0e41\u0e25\u0e30\u0e17\u0e49\u0e32\u0e22\u0e01\u0e23\u0e30\u0e14\u0e32\u0e29\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e43\u0e19\u0e41\u0e15\u0e48\u0e25\u0e30\u0e2b\u0e19\u0e49\u0e32", + "If you involve in manufacturing activity
Enables item Is Manufactured": "\u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2a\u0e48\u0e27\u0e19\u0e23\u0e48\u0e27\u0e21\u0e43\u0e19\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15
\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e1c\u0e25\u0e34\u0e15", + "Imports": "\u0e01\u0e32\u0e23\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32", + "Item Advanced": "\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Barcode": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2d\u0e48\u0e32\u0e19\u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Batch Nos": "Nos Batch \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Groups in Details": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Item Serial Nos": "Nos \u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Materials": "\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Miscelleneous": "\u0e40\u0e1a\u0e47\u0e14\u0e40\u0e15\u0e25\u0e47\u0e14", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Packing Detials": "detials \u0e1a\u0e23\u0e23\u0e08\u0e38", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Point of Sale": "\u0e08\u0e38\u0e14\u0e02\u0e32\u0e22", + "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Purchase Discounts": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Quality": "\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e", + "Recurring Invoice": "\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e1b\u0e23\u0e30\u0e08\u0e33", + "Sales Discounts": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Extras": "\u0e1e\u0e34\u0e40\u0e28\u0e29\u0e02\u0e32\u0e22", + "Sales and Purchase": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "To enable Point of Sale features": "\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e08\u0e38\u0e14\u0e02\u0e32\u0e22", + "To get Item Group in details table": "\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e19\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "To track any installation or commissioning related work after sales": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e43\u0e14 \u0e46 \u0e2b\u0e23\u0e37\u0e2d\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e27\u0e48\u0e32\u0e08\u0e49\u0e32\u0e07\u0e2b\u0e25\u0e31\u0e07\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "To track brand name in the following documents
Delivery Note, Enuiry, Material Request, Item, Purchase Order, Purchase Voucher, Purchaser Receipt, Quotation, Sales Invoice, Sales BOM, Sales Order, Serial No": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e0a\u0e37\u0e48\u0e2d\u0e41\u0e1a\u0e23\u0e19\u0e14\u0e4c\u0e43\u0e19\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e14\u0e31\u0e07\u0e15\u0e48\u0e2d\u0e44\u0e1b
\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07 Enuiry, \u0e01\u0e32\u0e23\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e0b\u0e37\u0e49\u0e2d, \u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32, \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22, BOM \u0e02\u0e32\u0e22\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e02\u0e32\u0e22, Serial \u0e44\u0e21\u0e48\u0e21\u0e35", + "To track item in sales and purchase documents based on their serial nos. This is can also used to track warranty details of the product.": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e32\u0e01 Nos \u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32 \u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e02\u0e2d\u0e07\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", + "To track items in sales and purchase documents with batch nos
Preferred Industry: Chemicals etc": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e14\u0e49\u0e27\u0e22 Nos \u0e0a\u0e38\u0e14
\u0e2d\u0e38\u0e15\u0e2a\u0e32\u0e2b\u0e01\u0e23\u0e23\u0e21\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23: \u0e2f\u0e25\u0e2f \u0e2a\u0e32\u0e23\u0e40\u0e04\u0e21\u0e35", + "To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14 \u0e04\u0e38\u0e13\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e49\u0e2d\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e42\u0e14\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e41\u0e01\u0e19\u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/setup/doctype/global_defaults/locale/_messages_doc.json b/setup/doctype/global_defaults/locale/_messages_doc.json index ce466a64b4..259e7b464d 100644 --- a/setup/doctype/global_defaults/locale/_messages_doc.json +++ b/setup/doctype/global_defaults/locale/_messages_doc.json @@ -44,6 +44,7 @@ "Accounting entry frozen up to this date, nobody can do / modify entry except authorized person", "Supplier Master created by ", "#.###,##", + "If disable, 'Rounded Total' field will not be visible in any transaction", "Credit Controller", "SMS Sender Name", "IGHelp", @@ -53,6 +54,7 @@ "Setup", "6", "Stock Frozen Upto", + "Disable Rounded Total", "Hide Currency Symbol", "Customer Name", "FIFO", diff --git a/setup/doctype/global_defaults/locale/th-doc.json b/setup/doctype/global_defaults/locale/th-doc.json new file mode 100644 index 0000000000..8e4d0df51f --- /dev/null +++ b/setup/doctype/global_defaults/locale/th-doc.json @@ -0,0 +1,87 @@ +{ + "# ###.##": "# # # #. # #", + "#,###": "# # # #", + "#,###.##": "# # # #. # #", + "#,###.###": "# # # #. # # #", + "#,##,###.##": "# # # # # #. # #", + "#.###": "#. # # #", + "#.###,##": "#. # # # # #", + "2": "2", + "3": "3", + "4": "4", + "5": "5", + "6": "6", + "Account Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounting entry frozen up to this date, nobody can do / modify entry except authorized person": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e0a\u0e48\u0e41\u0e02\u0e47\u0e07\u0e16\u0e36\u0e07\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e21\u0e35\u0e43\u0e04\u0e23\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33 / \u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e27\u0e49\u0e19\u0e1c\u0e39\u0e49\u0e21\u0e35\u0e2d\u0e33\u0e19\u0e32\u0e08", + "Accounts": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Accounts Frozen Upto": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35 Frozen \u0e40\u0e01\u0e34\u0e19", + "Allow Negative Stock": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e40\u0e0a\u0e34\u0e07\u0e25\u0e1a", + "Allowance Percent": "\u0e23\u0e49\u0e2d\u0e22\u0e25\u0e30\u0e04\u0e48\u0e32\u0e40\u0e1c\u0e37\u0e48\u0e2d", + "Applicable only if valuation method is moving average": "\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e44\u0e14\u0e49\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e43\u0e19\u0e01\u0e23\u0e13\u0e35\u0e17\u0e35\u0e48\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e48\u0e32\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48", + "Authorized Role (Frozen Entry)": "\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e2d\u0e33\u0e19\u0e32\u0e08 (Entry \u0e41\u0e0a\u0e48\u0e41\u0e02\u0e47\u0e07)", + "Authourized Role (Frozen Entry)": "\u0e1a\u0e17\u0e1a\u0e32\u0e17 Authourized (Entry \u0e41\u0e0a\u0e48\u0e41\u0e02\u0e47\u0e07)", + "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "CGHelp": "CGHelp", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Credit Controller": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Current Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Customer Master created by ": "\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Date Format": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Default Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Price List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Price List Currency": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Default Stock UOM": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19 UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Default Supplier Type": "\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c\u0e0a\u0e19\u0e34\u0e14\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Territory": "\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Valuation Method": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Warehouse Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Delivery Note Required": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19", + "Disable Rounded Total": "\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e23\u0e27\u0e21\u0e42\u0e04\u0e49\u0e07", + "Do not show any symbol like $ etc next to currencies.": "\u0e44\u0e21\u0e48\u0e41\u0e2a\u0e14\u0e07\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e43\u0e14 \u0e46 \u0e40\u0e0a\u0e48\u0e19 \u0e2f\u0e25\u0e2f $ \u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e01\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e01\u0e38\u0e25", + "Employee Number": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", + "Employee Records to be created by ": "\u0e23\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22", + "Employee record is created using selected field. ": "\u0e23\u0e30\u0e40\u0e1a\u0e35\u0e22\u0e19\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e40\u0e02\u0e15\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01", + "FIFO": "FIFO", + "Float Precision": "\u0e1e\u0e23\u0e35\u0e0b\u0e34\u0e0a\u0e31\u0e48\u0e25\u0e2d\u0e22", + "General": "\u0e17\u0e31\u0e48\u0e27\u0e44\u0e1b", + "Global Defaults": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e17\u0e31\u0e48\u0e27\u0e42\u0e25\u0e01", + "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", + "Hide Currency Symbol": "\u0e0b\u0e48\u0e2d\u0e19\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", + "IGHelp": "IGHelp", + "If disable, 'Rounded Total' field will not be visible in any transaction": "\u0e16\u0e49\u0e32\u0e1b\u0e34\u0e14\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19 '\u0e1b\u0e31\u0e14\u0e23\u0e27\u0e21\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e08\u0e30\u0e21\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e43\u0e14 \u0e46", + "Maintain same rate throughout purchase cycle": "\u0e23\u0e31\u0e01\u0e29\u0e32\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19\u0e15\u0e25\u0e2d\u0e14\u0e27\u0e07\u0e08\u0e23\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Moving Average": "\u0e04\u0e48\u0e32\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "No": "\u0e44\u0e21\u0e48", + "Number Format": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19", + "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

": "\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e40\u0e0b\u0e47\u0e19\u0e15\u0e4c\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a\u0e01\u0e31\u0e1a\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d

\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e0a\u0e48\u0e19\u0e2b\u0e32\u0e01\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d 100 \u0e2b\u0e19\u0e48\u0e27\u0e22 \u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e40\u0e1c\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e08\u0e30 10% \u0e41\u0e25\u0e49\u0e27\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a 110 \u0e2b\u0e19\u0e48\u0e27\u0e22

", + "Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.": "\u0e1e\u0e23\u0e35\u0e0b\u0e34\u0e0a\u0e31\u0e48\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e02\u0e15 Float (\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13, \u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14, \u0e2f\u0e25\u0e2f \u0e23\u0e49\u0e2d\u0e22\u0e25\u0e30) \u0e40\u0e1e\u0e35\u0e22\u0e07\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e1c\u0e25 \u0e25\u0e2d\u0e22\u0e08\u0e30\u0e22\u0e31\u0e07\u0e04\u0e07\u0e04\u0e33\u0e19\u0e27\u0e13\u0e16\u0e36\u0e07 6 \u0e17\u0e28\u0e19\u0e34\u0e22\u0e21", + "Purchase Order Required": "\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Receipt Required": "\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19", + "Raise Material Request when stock reaches re-order level": "\u0e22\u0e01\u0e04\u0e33\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e2b\u0e38\u0e49\u0e19\u0e16\u0e36\u0e07\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e43\u0e2b\u0e21\u0e48\u0e2a\u0e31\u0e48\u0e07", + "SMS Sender Name": "\u0e2a\u0e48\u0e07 SMS \u0e0a\u0e37\u0e48\u0e2d", + "Sales Order Required": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23", + "Selling": "\u0e02\u0e32\u0e22", + "Session Expiry": "\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e40\u0e0b\u0e2a\u0e0a\u0e31\u0e48\u0e19", + "Session Expiry in Hours e.g. 06:00": "\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e43\u0e19\u0e40\u0e0b\u0e2a\u0e0a\u0e31\u0e48\u0e19\u0e0a\u0e31\u0e48\u0e27\u0e42\u0e21\u0e07\u0e40\u0e0a\u0e48\u0e19 06:00", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Frozen Upto": "\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e44\u0e21\u0e48\u0e40\u0e01\u0e34\u0e19 Frozen", + "Stock level frozen up to this date, nobody can do / modify entry except authorized person": "\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e41\u0e0a\u0e48\u0e41\u0e02\u0e47\u0e07\u0e16\u0e36\u0e07\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e21\u0e35\u0e43\u0e04\u0e23\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33 / \u0e41\u0e01\u0e49\u0e44\u0e02\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e27\u0e49\u0e19\u0e1c\u0e39\u0e49\u0e21\u0e35\u0e2d\u0e33\u0e19\u0e32\u0e08", + "Supplier Master created by ": "\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22", + "Supplier Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "System": "\u0e23\u0e30\u0e1a\u0e1a", + "TerritoryHelp": "TerritoryHelp", + "Users with this role are allowed to do / modify accounting entry before frozen date": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e19\u0e35\u0e49\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e17\u0e33 / \u0e1b\u0e23\u0e31\u0e1a\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e01\u0e48\u0e2d\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e0a\u0e48\u0e41\u0e02\u0e47\u0e07", + "Users with this role are allowed to do / modify stock entry before frozen date": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e19\u0e35\u0e49\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e17\u0e33 / \u0e1b\u0e23\u0e31\u0e1a\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e38\u0e49\u0e19\u0e01\u0e48\u0e2d\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e0a\u0e48\u0e41\u0e02\u0e47\u0e07", + "Yes": "\u0e43\u0e0a\u0e48", + "dd-mm-yyyy": "dd-mm-yyyy", + "dd/mm/yyyy": "\u0e27\u0e31\u0e19 / \u0e40\u0e14\u0e37\u0e2d\u0e19 / \u0e1b\u0e35", + "mm-dd-yyyy": "dd-mm-\u0e1b\u0e35", + "mm/dd/yyyy": "dd / mm / \u0e1b\u0e35", + "yyyy-mm-dd": "YYYY-MM-DD" +} \ No newline at end of file diff --git a/setup/doctype/item_group/locale/th-doc.json b/setup/doctype/item_group/locale/th-doc.json new file mode 100644 index 0000000000..a49450acbf --- /dev/null +++ b/setup/doctype/item_group/locale/th-doc.json @@ -0,0 +1,23 @@ +{ + "Check this if you want to show in website": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e19\u0e35\u0e49\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "HTML / Banner that will show on the top of product list.": "HTML / \u0e41\u0e1a\u0e19\u0e40\u0e19\u0e2d\u0e23\u0e4c\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07\u0e2d\u0e22\u0e39\u0e48\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Has Child Node": "\u0e21\u0e35\u0e42\u0e2b\u0e19\u0e14\u0e25\u0e39\u0e01", + "Item Classification": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "No": "\u0e44\u0e21\u0e48", + "Only leaf nodes are allowed in transaction": "\u0e42\u0e2b\u0e19\u0e14\u0e43\u0e1a\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21", + "Page Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e1e\u0e08", + "Parent Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e25\u0e31\u0e01", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Show in Website": "\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Show this slideshow at the top of the page": "\u0e41\u0e2a\u0e14\u0e07\u0e20\u0e32\u0e1e\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Slideshow": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c", + "Website Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Yes": "\u0e43\u0e0a\u0e48", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "RGT" +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/th-doc.json b/setup/doctype/jobs_email_settings/locale/th-doc.json new file mode 100644 index 0000000000..082a82fd7c --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/th-doc.json @@ -0,0 +1,16 @@ +{ + "Check to activate": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a", + "Email Id where a job applicant will email e.g. \"jobs@example.com\"": "Email \u0e23\u0e2b\u0e31\u0e2a\u0e17\u0e35\u0e48\u0e1c\u0e39\u0e49\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e07\u0e32\u0e19\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e16\u0e36\u0e07 "jobs@example.com" \u0e40\u0e0a\u0e48\u0e19", + "Email settings for jobs email id \"jobs@example.com\"": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25 ID \u0e07\u0e32\u0e19 "jobs@example.com"", + "Extract Emails": "\u0e2a\u0e32\u0e23\u0e2a\u0e01\u0e31\u0e14\u0e08\u0e32\u0e01\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Host": "\u0e40\u0e08\u0e49\u0e32\u0e20\u0e32\u0e1e", + "Jobs Email Settings": "\u0e07\u0e32\u0e19\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "POP3 Mail Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 POP3 \u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "POP3 server e.g. (pop.gmail.com)": "POP3 \u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e48\u0e19 (pop.gmail.com)", + "Password": "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19", + "Settings to extract Job Applicants from a mailbox e.g. \"jobs@example.com\"": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e17\u0e35\u0e48\u0e08\u0e30\u0e14\u0e36\u0e07\u0e1c\u0e39\u0e49\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e07\u0e32\u0e19\u0e08\u0e32\u0e01\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e0a\u0e48\u0e19 "jobs@example.com"", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Use SSL": "\u0e43\u0e0a\u0e49 SSL", + "Username": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49" +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/th-js.json b/setup/doctype/jobs_email_settings/locale/th-js.json new file mode 100644 index 0000000000..9d092ccfa8 --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/th-js.json @@ -0,0 +1,4 @@ +{ + "Active: Will extract emails from ": "\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14: \u0e08\u0e30\u0e14\u0e36\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e08\u0e32\u0e01", + "Not Active": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14" +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/th-py.json b/setup/doctype/jobs_email_settings/locale/th-py.json new file mode 100644 index 0000000000..e377d4097d --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "Host, Email and Password required if emails are to be pulled": "\u0e42\u0e2e\u0e2a\u0e15\u0e4c, Email \u0e41\u0e25\u0e30\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e32\u0e01\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e08\u0e30\u0e14\u0e36\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/market_segment/locale/th-doc.json b/setup/doctype/market_segment/locale/th-doc.json new file mode 100644 index 0000000000..42144b248d --- /dev/null +++ b/setup/doctype/market_segment/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Market Segment": "\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e25\u0e32\u0e14", + "Segment Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e2a\u0e48\u0e27\u0e19", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/setup/doctype/naming_series/locale/th-doc.json b/setup/doctype/naming_series/locale/th-doc.json new file mode 100644 index 0000000000..7ef62b45bd --- /dev/null +++ b/setup/doctype/naming_series/locale/th-doc.json @@ -0,0 +1,18 @@ +{ + "Change the starting / current sequence number of an existing series.": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19 / \u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e02\u0e2d\u0e07\u0e0a\u0e38\u0e14\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48", + "Check this if you want to force the user to select a series before saving. There will be no default if you check this.": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e19\u0e35\u0e49\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e38\u0e14\u0e01\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01 \u0e08\u0e30\u0e21\u0e35\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e44\u0e21\u0e48\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e19\u0e35\u0e49", + "Current Value": "\u0e04\u0e48\u0e32\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Help HTML": "\u0e27\u0e34\u0e18\u0e35\u0e43\u0e0a\u0e49 HTML", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Prefix": "\u0e2d\u0e38\u0e1b\u0e2a\u0e23\u0e23\u0e04", + "Select Transaction": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Series List for this Transaction": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e0a\u0e38\u0e14\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e19\u0e35\u0e49", + "Set prefix for numbering series on your transactions": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e0a\u0e38\u0e14\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Setup Series": "\u0e0a\u0e38\u0e14\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "This is the number of the last created transaction with this prefix": "\u0e19\u0e35\u0e48\u0e04\u0e37\u0e2d\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14\u0e01\u0e31\u0e1a\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49", + "Update": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17", + "Update Series": "Series \u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07", + "Update Series Number": "\u0e08\u0e33\u0e19\u0e27\u0e19 Series \u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07", + "User must always select": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e25\u0e37\u0e2d\u0e01" +} \ No newline at end of file diff --git a/setup/doctype/naming_series_options/locale/th-doc.json b/setup/doctype/naming_series_options/locale/th-doc.json new file mode 100644 index 0000000000..0202a37a50 --- /dev/null +++ b/setup/doctype/naming_series_options/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Doc Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17 Doc", + "Naming Series Options": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e38\u0e14", + "Series Options": "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e38\u0e14", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/notification_control/locale/th-doc.json b/setup/doctype/notification_control/locale/th-doc.json new file mode 100644 index 0000000000..eb4c3561eb --- /dev/null +++ b/setup/doctype/notification_control/locale/th-doc.json @@ -0,0 +1,31 @@ +{ + "Custom Message": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", + "Customize the Notification": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e1b\u0e23\u0e30\u0e01\u0e32\u0e28", + "Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.": "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e40\u0e01\u0e23\u0e34\u0e48\u0e19\u0e19\u0e33\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e1b\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48 \u0e41\u0e15\u0e48\u0e25\u0e30\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e21\u0e35\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e40\u0e01\u0e23\u0e34\u0e48\u0e19\u0e19\u0e33\u0e41\u0e22\u0e01", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Delivery Note Message": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Expense Claim": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Expense Claim Approved": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34", + "Expense Claim Approved Message": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e21\u0e31\u0e15\u0e34\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Expense Claim Rejected": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Expense Claim Rejected Message": "\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e49\u0e2d\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Notification Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19", + "Prompt for Email on Submission of": "\u0e41\u0e08\u0e49\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e43\u0e19\u0e01\u0e32\u0e23\u0e22\u0e37\u0e48\u0e19", + "Purchase": "\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order Message": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Purchase Receipt Message": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Quotation": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Quotation Message": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32", + "Sales": "\u0e02\u0e32\u0e22", + "Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Sales Invoice Message": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Sales Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Sales Order Message": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Select Transaction": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Send automatic emails to Contacts on Submitting transactions.": "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1a\u0e19\u0e2a\u0e48\u0e07\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Update": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17", + "When any of the checked transactions are \"Submitted\", an email pop-up automatically opened to send an email to the associated \"Contact\" in that transaction, with the transaction as an attachment. The user may or may not send the email.": "\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e43\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1b\u0e47\u0e19 "Submitted" \u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e41\u0e1a\u0e1a pop-up \u0e40\u0e1b\u0e34\u0e14\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e43\u0e19\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e44\u0e1b\u0e22\u0e31\u0e07 "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d" \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e17\u0e35\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e41\u0e19\u0e1a \u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e2d\u0e32\u0e08\u0e08\u0e30\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e2d\u0e32\u0e08\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25" +} \ No newline at end of file diff --git a/setup/doctype/permission_control/locale/th-doc.json b/setup/doctype/permission_control/locale/th-doc.json new file mode 100644 index 0000000000..fdb7c4f9cb --- /dev/null +++ b/setup/doctype/permission_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Permission Control": "\u0e01\u0e32\u0e23\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/price_list/locale/th-doc.json b/setup/doctype/price_list/locale/th-doc.json new file mode 100644 index 0000000000..d3fdeae7a0 --- /dev/null +++ b/setup/doctype/price_list/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "How to upload": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Master": "\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/print_heading/locale/th-doc.json b/setup/doctype/print_heading/locale/th-doc.json new file mode 100644 index 0000000000..b7cf2eb61b --- /dev/null +++ b/setup/doctype/print_heading/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Print Heading": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/setup/doctype/quotation_lost_reason/locale/th-doc.json b/setup/doctype/quotation_lost_reason/locale/th-doc.json new file mode 100644 index 0000000000..df325ecd08 --- /dev/null +++ b/setup/doctype/quotation_lost_reason/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Quotation Lost Reason": "\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32 Lost \u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/setup/doctype/sales_browser_control/locale/th-doc.json b/setup/doctype/sales_browser_control/locale/th-doc.json new file mode 100644 index 0000000000..957d597d0f --- /dev/null +++ b/setup/doctype/sales_browser_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Sales Browser Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/th-doc.json b/setup/doctype/sales_email_settings/locale/th-doc.json new file mode 100644 index 0000000000..6572906f7e --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/th-doc.json @@ -0,0 +1,15 @@ +{ + "Check to activate": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a", + "Email Id where a job applicant will email e.g. \"jobs@example.com\"": "Email \u0e23\u0e2b\u0e31\u0e2a\u0e17\u0e35\u0e48\u0e1c\u0e39\u0e49\u0e2a\u0e21\u0e31\u0e04\u0e23\u0e07\u0e32\u0e19\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e16\u0e36\u0e07 "jobs@example.com" \u0e40\u0e0a\u0e48\u0e19", + "Email settings to extract Leads from sales email id e.g. \"sales@example.com\"": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e08\u0e30\u0e14\u0e36\u0e07\u0e19\u0e33\u0e21\u0e32\u0e08\u0e32\u0e01\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c ID \u0e40\u0e0a\u0e48\u0e19\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22 "sales@example.com"", + "Extract Emails": "\u0e2a\u0e32\u0e23\u0e2a\u0e01\u0e31\u0e14\u0e08\u0e32\u0e01\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Host": "\u0e40\u0e08\u0e49\u0e32\u0e20\u0e32\u0e1e", + "POP3 Mail Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 POP3 \u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "POP3 server e.g. (pop.gmail.com)": "POP3 \u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e40\u0e0a\u0e48\u0e19 (pop.gmail.com)", + "Password": "\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19", + "Sales Email Settings": "\u0e02\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Use SSL": "\u0e43\u0e0a\u0e49 SSL", + "Username": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/th-js.json b/setup/doctype/sales_email_settings/locale/th-js.json new file mode 100644 index 0000000000..9d092ccfa8 --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/th-js.json @@ -0,0 +1,4 @@ +{ + "Active: Will extract emails from ": "\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14: \u0e08\u0e30\u0e14\u0e36\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e08\u0e32\u0e01", + "Not Active": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/th-py.json b/setup/doctype/sales_email_settings/locale/th-py.json new file mode 100644 index 0000000000..e377d4097d --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "Host, Email and Password required if emails are to be pulled": "\u0e42\u0e2e\u0e2a\u0e15\u0e4c, Email \u0e41\u0e25\u0e30\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e32\u0e01\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e08\u0e30\u0e14\u0e36\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/sales_partner/locale/th-doc.json b/setup/doctype/sales_partner/locale/th-doc.json new file mode 100644 index 0000000000..6d26193d9f --- /dev/null +++ b/setup/doctype/sales_partner/locale/th-doc.json @@ -0,0 +1,27 @@ +{ + "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.": "\u0e15\u0e31\u0e27\u0e41\u0e17\u0e19\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e15\u0e31\u0e27\u0e41\u0e17\u0e19\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22 / / \u0e04\u0e13\u0e30\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23 / / \u0e1c\u0e39\u0e49\u0e04\u0e49\u0e32\u0e1b\u0e25\u0e35\u0e01\u0e17\u0e35\u0e48\u0e02\u0e32\u0e22\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e43\u0e2b\u0e49\u0e04\u0e13\u0e30\u0e01\u0e23\u0e23\u0e21\u0e32\u0e18\u0e34\u0e01\u0e32\u0e23", + "Address & Contacts": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d &", + "Address Desc": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Address HTML": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48 HTML", + "Agent": "\u0e15\u0e31\u0e27\u0e41\u0e17\u0e19", + "Channel Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e0a\u0e48\u0e2d\u0e07\u0e17\u0e32\u0e07", + "Commission Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e04\u0e48\u0e32\u0e04\u0e2d\u0e21\u0e21\u0e34\u0e0a\u0e0a\u0e31\u0e48\u0e19", + "Contact Desc": "Desc \u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact HTML": "HTML \u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Dealer": "\u0e40\u0e08\u0e49\u0e32\u0e21\u0e37\u0e2d", + "Distributor": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Implementation Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38: \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2b\u0e25\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Partner Target Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23", + "Partner Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e39\u0e48", + "Reseller": "\u0e1c\u0e39\u0e49\u0e04\u0e49\u0e32\u0e1b\u0e25\u0e35\u0e01", + "Retailer": "\u0e1e\u0e48\u0e2d\u0e04\u0e49\u0e32\u0e1b\u0e25\u0e35\u0e01", + "Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Partner Details": "\u0e02\u0e32\u0e22\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23", + "Sales Partner Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e02\u0e32\u0e22", + "Sales Partner Target": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23", + "Select Budget Distribution to unevenly distribute targets across months.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e21\u0e48\u0e33\u0e40\u0e2a\u0e21\u0e2d\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e17\u0e31\u0e48\u0e27\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Target Distribution": "\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15" +} \ No newline at end of file diff --git a/setup/doctype/sales_person/locale/th-doc.json b/setup/doctype/sales_person/locale/th-doc.json new file mode 100644 index 0000000000..27a490887c --- /dev/null +++ b/setup/doctype/sales_person/locale/th-doc.json @@ -0,0 +1,21 @@ +{ + "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.": "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e04\u0e19 ** \u0e02\u0e32\u0e22 ** \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e41\u0e25\u0e30\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Has Child Node": "\u0e21\u0e35\u0e42\u0e2b\u0e19\u0e14\u0e25\u0e39\u0e01", + "No": "\u0e44\u0e21\u0e48", + "Parent Sales Person": "\u0e1c\u0e39\u0e49\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07\u0e04\u0e19\u0e02\u0e32\u0e22", + "Sales Person": "\u0e04\u0e19\u0e02\u0e32\u0e22", + "Sales Person Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e04\u0e19\u0e02\u0e32\u0e22", + "Sales Person Targets": "\u0e02\u0e32\u0e22\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e04\u0e19", + "Select Budget Distribution to unevenly distribute targets across months.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e21\u0e48\u0e33\u0e40\u0e2a\u0e21\u0e2d\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e17\u0e31\u0e48\u0e27\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Select company name first.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e41\u0e23\u0e01", + "Set targets Item Group-wise for this Sales Person.": "\u0e15\u0e31\u0e49\u0e07\u0e40\u0e1b\u0e49\u0e32\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e0a\u0e32\u0e0d\u0e09\u0e25\u0e32\u0e14\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e04\u0e19\u0e02\u0e32\u0e22", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Target Details1": "Details1 \u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Target Distribution": "\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Yes": "\u0e43\u0e0a\u0e48", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "RGT" +} \ No newline at end of file diff --git a/setup/doctype/series_detail/locale/th-doc.json b/setup/doctype/series_detail/locale/th-doc.json new file mode 100644 index 0000000000..4974555104 --- /dev/null +++ b/setup/doctype/series_detail/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Remove": "\u0e16\u0e2d\u0e14", + "Series": "\u0e0a\u0e38\u0e14", + "Series Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e0a\u0e38\u0e14", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/setup_control/locale/th-doc.json b/setup/doctype/setup_control/locale/th-doc.json new file mode 100644 index 0000000000..fb6b39b315 --- /dev/null +++ b/setup/doctype/setup_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Setup Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/sms_parameter/locale/th-doc.json b/setup/doctype/sms_parameter/locale/th-doc.json new file mode 100644 index 0000000000..0af1e41b5b --- /dev/null +++ b/setup/doctype/sms_parameter/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Parameter": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c", + "SMS Parameter": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c SMS", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Value": "\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32" +} \ No newline at end of file diff --git a/setup/doctype/sms_settings/locale/th-doc.json b/setup/doctype/sms_settings/locale/th-doc.json new file mode 100644 index 0000000000..14d057028b --- /dev/null +++ b/setup/doctype/sms_settings/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Eg. smsgateway.com/api/send_sms.cgi": "\u0e40\u0e0a\u0e48\u0e19 smsgateway.com / API / send_sms.cgi", + "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)": "\u0e1b\u0e49\u0e2d\u0e19\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e04\u0e07\u0e17\u0e35\u0e48 URL \u0e17\u0e35\u0e48\u0e19\u0e35\u0e48 (\u0e40\u0e0a\u0e48\u0e19\u0e1c\u0e39\u0e49\u0e2a\u0e48\u0e07 = ERPNext \u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 = ERPNext \u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19 = 1234 \u0e2f\u0e25\u0e2f )", + "Enter url parameter for message": "\u0e1b\u0e49\u0e2d\u0e19\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c URL \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Enter url parameter for receiver nos": "\u0e1b\u0e49\u0e2d\u0e19\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c URL \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a Nos \u0e23\u0e31\u0e1a", + "Message Parameter": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Receiver Parameter": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e23\u0e31\u0e1a", + "SMS Gateway URL": "URL \u0e40\u0e01\u0e15\u0e40\u0e27\u0e22\u0e4c SMS", + "SMS Parameters": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c SMS", + "SMS Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 SMS", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Static Parameters": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e04\u0e07" +} \ No newline at end of file diff --git a/setup/doctype/state/locale/th-doc.json b/setup/doctype/state/locale/th-doc.json new file mode 100644 index 0000000000..d41fec9a41 --- /dev/null +++ b/setup/doctype/state/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Country": "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "State": "\u0e23\u0e31\u0e10", + "State Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e31\u0e10" +} \ No newline at end of file diff --git a/setup/doctype/supplier_type/locale/th-doc.json b/setup/doctype/supplier_type/locale/th-doc.json new file mode 100644 index 0000000000..c20a1aa10d --- /dev/null +++ b/setup/doctype/supplier_type/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Supplier Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/setup/doctype/target_detail/locale/th-doc.json b/setup/doctype/target_detail/locale/th-doc.json new file mode 100644 index 0000000000..060ac689b4 --- /dev/null +++ b/setup/doctype/target_detail/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Target Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Target Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Target Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22" +} \ No newline at end of file diff --git a/setup/doctype/terms_and_conditions/locale/th-doc.json b/setup/doctype/terms_and_conditions/locale/th-doc.json new file mode 100644 index 0000000000..ef40afc5eb --- /dev/null +++ b/setup/doctype/terms_and_conditions/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Standard Terms and Conditions that can be added to Sales and Purchases.Examples:1. Validity of the offer.1. Payment Terms (In Advance, On Credit, part advance etc).1. What is extra (or payable by the Customer).1. Safety / usage warning.1. Warranty if any.1. Returns Policy.1. Terms of shipping, if applicable.1. Ways of addressing disputes, indemnity, liability, etc.1. Address and Contact of your Company.": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30 Purchases.Examples: 1 \u0e04\u0e27\u0e32\u0e21\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e07 offer.1 \u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 (\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e19\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15 \u0e2f\u0e25\u0e2f \u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e32\u0e07\u0e2a\u0e48\u0e27\u0e19) 0.1 \u0e40\u0e1b\u0e47\u0e19\u0e1e\u0e34\u0e40\u0e28\u0e29 (\u0e2b\u0e23\u0e37\u0e2d\u0e08\u0e48\u0e32\u0e22\u0e42\u0e14\u0e22\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32) \u0e04\u0e37\u0e2d\u0e2d\u0e30\u0e44\u0e23 0.1 \u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22 / warning.1 \u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19 \u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e16\u0e49\u0e32 any.1 \u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 Policy.1 \u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e16\u0e49\u0e32 applicable.1 \u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e04\u0e27\u0e32\u0e21\u0e02\u0e31\u0e14\u0e41\u0e22\u0e49\u0e07\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48, \u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e1a\u0e1c\u0e34\u0e14 etc.1 \u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e08\u0e32\u0e01 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/setup/doctype/territory/locale/th-doc.json b/setup/doctype/territory/locale/th-doc.json new file mode 100644 index 0000000000..54d6c6bf07 --- /dev/null +++ b/setup/doctype/territory/locale/th-doc.json @@ -0,0 +1,22 @@ +{ + "Classification of Customers by region": "\u0e01\u0e32\u0e23\u0e08\u0e33\u0e41\u0e19\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e15\u0e32\u0e21\u0e20\u0e39\u0e21\u0e34\u0e20\u0e32\u0e04", + "For reference": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Has Child Node": "\u0e21\u0e35\u0e42\u0e2b\u0e19\u0e14\u0e25\u0e39\u0e01", + "No": "\u0e44\u0e21\u0e48", + "Only leaf nodes are allowed in transaction": "\u0e42\u0e2b\u0e19\u0e14\u0e43\u0e1a\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21", + "Parent Territory": "\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07", + "Select Budget Distribution to unevenly distribute targets across months.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e21\u0e48\u0e2a\u0e21\u0e48\u0e33\u0e40\u0e2a\u0e21\u0e2d\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e17\u0e31\u0e48\u0e27\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e01\u0e25\u0e38\u0e48\u0e21\u0e09\u0e25\u0e32\u0e14\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e21\u0e13\u0e11\u0e25\u0e19\u0e35\u0e49 \u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e23\u0e27\u0e21\u0e24\u0e14\u0e39\u0e01\u0e32\u0e25\u0e42\u0e14\u0e22\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Target Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Target Distribution": "\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "Territory Manager": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19", + "Territory Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19", + "Territory Targets": "\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e14\u0e34\u0e19\u0e41\u0e14\u0e19", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Yes": "\u0e43\u0e0a\u0e48", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "RGT" +} \ No newline at end of file diff --git a/setup/doctype/uom/locale/th-doc.json b/setup/doctype/uom/locale/th-doc.json new file mode 100644 index 0000000000..54693fa0dc --- /dev/null +++ b/setup/doctype/uom/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "UOM": "UOM", + "UOM Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 UOM", + "UOM Name": "\u0e0a\u0e37\u0e48\u0e2d UOM" +} \ No newline at end of file diff --git a/setup/doctype/warehouse_type/locale/th-doc.json b/setup/doctype/warehouse_type/locale/th-doc.json new file mode 100644 index 0000000000..0b607d3479 --- /dev/null +++ b/setup/doctype/warehouse_type/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Warehouse Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/setup/doctype/workflow_action_detail/locale/th-doc.json b/setup/doctype/workflow_action_detail/locale/th-doc.json new file mode 100644 index 0000000000..3727115a26 --- /dev/null +++ b/setup/doctype/workflow_action_detail/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Field": "\u0e2a\u0e19\u0e32\u0e21", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Value": "\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32", + "Workflow Action Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e02\u0e31\u0e49\u0e19\u0e15\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19" +} \ No newline at end of file diff --git a/setup/doctype/workflow_engine/locale/th-doc.json b/setup/doctype/workflow_engine/locale/th-doc.json new file mode 100644 index 0000000000..95a2e52500 --- /dev/null +++ b/setup/doctype/workflow_engine/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Workflow Engine": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e22\u0e19\u0e15\u0e4c\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c" +} \ No newline at end of file diff --git a/setup/doctype/workflow_rule/locale/th-doc.json b/setup/doctype/workflow_rule/locale/th-doc.json new file mode 100644 index 0000000000..4b3a293312 --- /dev/null +++ b/setup/doctype/workflow_rule/locale/th-doc.json @@ -0,0 +1,23 @@ +{ + "Action Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23", + "Action html": "html \u0e17\u0e35\u0e48\u0e01\u0e23\u0e30\u0e17\u0e33", + "Active": "\u0e04\u0e25\u0e48\u0e2d\u0e07\u0e41\u0e04\u0e25\u0e48\u0e27", + "Define Rule": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e01\u0e0e", + "Enter message": "\u0e1b\u0e49\u0e2d\u0e19\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "Extra Condition": "\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e1e\u0e34\u0e40\u0e28\u0e29", + "Inactive": "\u0e40\u0e09\u0e37\u0e48\u0e2d\u0e22\u0e0a\u0e32", + "Intro HTML": "HTML \u0e41\u0e19\u0e30\u0e19\u0e33", + "No": "\u0e44\u0e21\u0e48", + "Raise Exception": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e27\u0e49\u0e19", + "Reject HTML": "\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18 HTML", + "Rule Definition": "\u0e01\u0e32\u0e23\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e01\u0e0e", + "Rule Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e0e", + "Rule Priority": "\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e02\u0e2d\u0e07\u0e01\u0e0e", + "Rule Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e0e", + "Select Form": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1f\u0e2d\u0e23\u0e4c\u0e21", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Workflow Action Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e02\u0e31\u0e49\u0e19\u0e15\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19", + "Workflow Rule": "\u0e01\u0e0e\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Workflow Rule Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e0e\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/setup/doctype/workflow_rule_detail/locale/th-doc.json b/setup/doctype/workflow_rule_detail/locale/th-doc.json new file mode 100644 index 0000000000..1ff91f70ab --- /dev/null +++ b/setup/doctype/workflow_rule_detail/locale/th-doc.json @@ -0,0 +1,19 @@ +{ + "Field": "\u0e2a\u0e19\u0e32\u0e21", + "Field from other forms": "\u0e40\u0e02\u0e15\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e08\u0e32\u0e01\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Message when Cond. False": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e40\u0e21\u0e37\u0e48\u0e2d Cond \u0e40\u0e17\u0e47\u0e08", + "No": "\u0e44\u0e21\u0e48", + "Operator": "\u0e1c\u0e39\u0e49\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e01\u0e32\u0e23", + "Raise Exception": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e27\u0e49\u0e19", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Value": "\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32", + "Workflow Rule Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e0e\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Yes": "\u0e43\u0e0a\u0e48", + "[]": "[]", + "equal": "\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e19", + "greater than": "\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32", + "greater than equal": "\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e1a", + "less than": "\u0e19\u0e49\u0e2d\u0e22\u0e01\u0e27\u0e48\u0e32", + "less than equal": "\u0e19\u0e49\u0e2d\u0e22\u0e01\u0e27\u0e48\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e1a", + "not equal": "\u0e44\u0e21\u0e48\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e1a" +} \ No newline at end of file diff --git a/setup/locale/th-py.json b/setup/locale/th-py.json new file mode 100644 index 0000000000..fb3213c5bb --- /dev/null +++ b/setup/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "Please specify Default Currency in Company Master \\\t\t\tand Global Defaults": "\u0e42\u0e1b\u0e23\u0e14\u0e23\u0e30\u0e1a\u0e38\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e43\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e21\u0e32\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c \\ \u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e17\u0e31\u0e48\u0e27\u0e42\u0e25\u0e01" +} \ No newline at end of file diff --git a/setup/module_def/setup/locale/th-doc.json b/setup/module_def/setup/locale/th-doc.json new file mode 100644 index 0000000000..3046d7aaad --- /dev/null +++ b/setup/module_def/setup/locale/th-doc.json @@ -0,0 +1,20 @@ +{ + "**Currency** Master": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19 ** ** \u0e42\u0e17", + "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.": "\u0e15\u0e31\u0e27\u0e41\u0e17\u0e19\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e15\u0e31\u0e27\u0e41\u0e17\u0e19\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22 / / \u0e04\u0e13\u0e30\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23 / / \u0e1c\u0e39\u0e49\u0e04\u0e49\u0e32\u0e1b\u0e25\u0e35\u0e01\u0e17\u0e35\u0e48\u0e02\u0e32\u0e22\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e43\u0e2b\u0e49\u0e04\u0e13\u0e30\u0e01\u0e23\u0e23\u0e21\u0e32\u0e18\u0e34\u0e01\u0e32\u0e23", + "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.": "\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e04\u0e19 ** \u0e02\u0e32\u0e22 ** \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e41\u0e25\u0e30\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "Classification of Customers by region": "\u0e01\u0e32\u0e23\u0e08\u0e33\u0e41\u0e19\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e15\u0e32\u0e21\u0e20\u0e39\u0e21\u0e34\u0e20\u0e32\u0e04", + "Email Settings for Outgoing and Incoming Emails.": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e32\u0e2d\u0e2d\u0e01\u0e41\u0e25\u0e30\u0e02\u0e32\u0e40\u0e02\u0e49\u0e32", + "Email settings for jobs email id \"jobs@example.com\"": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2d\u0e35\u0e40\u0e21\u0e25 ID \u0e07\u0e32\u0e19 "jobs@example.com"", + "Email settings to extract Leads from sales email id e.g. \"sales@example.com\"": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e08\u0e30\u0e14\u0e36\u0e07\u0e19\u0e33\u0e21\u0e32\u0e08\u0e32\u0e01\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c ID \u0e40\u0e0a\u0e48\u0e19\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22 "sales@example.com"", + "Item Classification": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.": "\u0e19\u0e34\u0e15\u0e34\u0e1a\u0e38\u0e04\u0e04\u0e25 / \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e22\u0e48\u0e2d\u0e22\u0e14\u0e49\u0e27\u0e22\u0e41\u0e1c\u0e19\u0e20\u0e39\u0e21\u0e34\u0e17\u0e35\u0e48\u0e41\u0e22\u0e01\u0e15\u0e48\u0e32\u0e07\u0e2b\u0e32\u0e01\u0e08\u0e32\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e32\u0e23", + "Modules Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e42\u0e21\u0e14\u0e39\u0e25", + "Permission Engine": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e22\u0e19\u0e15\u0e4c\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", + "Price List Master": "\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Send automatic emails to Contacts on Submitting transactions.": "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e1a\u0e19\u0e2a\u0e48\u0e07\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21", + "Send regular summary reports via Email.": "\u0e2a\u0e48\u0e07\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e2a\u0e23\u0e38\u0e1b\u0e1b\u0e01\u0e15\u0e34\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Set prefix for numbering series on your transactions": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e0a\u0e38\u0e14\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Standard Terms and Conditions that can be added to Sales and Purchases.Examples:1. Validity of the offer.1. Payment Terms (In Advance, On Credit, part advance etc).1. What is extra (or payable by the Customer).1. Safety / usage warning.1. Warranty if any.1. Returns Policy.1. Terms of shipping, if applicable.1. Ways of addressing disputes, indemnity, liability, etc.1. Address and Contact of your Company.": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e17\u0e35\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30 Purchases.Examples: 1 \u0e04\u0e27\u0e32\u0e21\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e07 offer.1 \u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e01\u0e32\u0e23\u0e0a\u0e33\u0e23\u0e30\u0e40\u0e07\u0e34\u0e19 (\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e19\u0e1a\u0e31\u0e15\u0e23\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15 \u0e2f\u0e25\u0e2f \u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e32\u0e07\u0e2a\u0e48\u0e27\u0e19) 0.1 \u0e40\u0e1b\u0e47\u0e19\u0e1e\u0e34\u0e40\u0e28\u0e29 (\u0e2b\u0e23\u0e37\u0e2d\u0e08\u0e48\u0e32\u0e22\u0e42\u0e14\u0e22\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32) \u0e04\u0e37\u0e2d\u0e2d\u0e30\u0e44\u0e23 0.1 \u0e04\u0e27\u0e32\u0e21\u0e1b\u0e25\u0e2d\u0e14\u0e20\u0e31\u0e22 / warning.1 \u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19 \u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e16\u0e49\u0e32 any.1 \u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 Policy.1 \u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e16\u0e49\u0e32 applicable.1 \u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e04\u0e27\u0e32\u0e21\u0e02\u0e31\u0e14\u0e41\u0e22\u0e49\u0e07\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48, \u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e1a\u0e1c\u0e34\u0e14 etc.1 \u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e30\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e08\u0e32\u0e01 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Webforms": "Webforms" +} \ No newline at end of file diff --git a/setup/page/setup/locale/th-js.json b/setup/page/setup/locale/th-js.json new file mode 100644 index 0000000000..027fcdfaea --- /dev/null +++ b/setup/page/setup/locale/th-js.json @@ -0,0 +1,61 @@ +{ + "Add custom code to forms": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e2b\u0e31\u0e2a\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48", + "Add fields to forms": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e02\u0e15\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e41\u0e1a\u0e1a\u0e1f\u0e2d\u0e23\u0e4c\u0e21", + "Add headers for standard print formats": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e2b\u0e31\u0e27\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19", + "Add/remove users, set roles, passwords etc": "\u0e40\u0e1e\u0e34\u0e48\u0e21 / \u0e25\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e0a\u0e38\u0e14\u0e23\u0e2b\u0e31\u0e2a\u0e1c\u0e48\u0e32\u0e19 \u0e2f\u0e25\u0e2f", + "Authorization Rule": "\u0e01\u0e0e\u0e01\u0e32\u0e23\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", + "Branding and Printing": "\u0e01\u0e32\u0e23\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e15\u0e23\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e21\u0e1e\u0e4c", + "Change background fonts etc": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07 \u0e2f\u0e25\u0e2f \u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23", + "Change entry properties (hide fields, make mandatory etc)": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 (\u0e0a\u0e48\u0e2d\u0e07\u0e0b\u0e48\u0e2d\u0e19\u0e43\u0e2b\u0e49 \u0e2f\u0e25\u0e2f \u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a)", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Custom Field": "\u0e1f\u0e34\u0e25\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", + "Custom Script": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", + "Customize": "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07", + "Customize Form": "\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e07\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", + "Daily, weekly, monthly email Digests": "\u0e23\u0e32\u0e22\u0e27\u0e31\u0e19\u0e23\u0e32\u0e22\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c\u0e23\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e2a\u0e33\u0e04\u0e31\u0e0d", + "Data": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", + "Data Import": "\u0e01\u0e32\u0e23\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", + "Email Digest": "\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Email Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Enable / disable currencies.": "\u0e40\u0e1b\u0e34\u0e14 / \u0e1b\u0e34\u0e14\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", + "Extract Job Applicant from jobs email id e.g. jobs@example.com": "\u0e2a\u0e32\u0e23\u0e2a\u0e01\u0e31\u0e14\u0e08\u0e32\u0e01\u0e43\u0e1a\u0e07\u0e32\u0e19\u0e08\u0e32\u0e01\u0e07\u0e32\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e23\u0e2b\u0e31\u0e2a\u0e40\u0e0a\u0e48\u0e19 jobs@example.com", + "Extract Leads from sales email id e.g. sales@example.com": "\u0e2a\u0e32\u0e23\u0e2a\u0e01\u0e31\u0e14\u0e19\u0e33\u0e21\u0e32\u0e08\u0e32\u0e01\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c ID \u0e40\u0e0a\u0e48\u0e19 sales@example.com", + "Features Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e48\u0e07\u0e2d\u0e33\u0e19\u0e27\u0e22\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e30\u0e14\u0e27\u0e01", + "Financial Years for books of accounts": "\u0e1b\u0e35\u0e01\u0e32\u0e23\u0e40\u0e07\u0e34\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e02\u0e2d\u0e07\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Global Defaults": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e17\u0e31\u0e48\u0e27\u0e42\u0e25\u0e01", + "HTML print formats for quotes, invoices etc": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48 HTML \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e33\u0e1e\u0e39\u0e14 \u0e2f\u0e25\u0e2f \u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Import data from spreadsheet (csv) files": "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e08\u0e32\u0e01\u0e44\u0e1f\u0e25\u0e4c\u0e2a\u0e40\u0e1b\u0e23\u0e14\u0e0a\u0e35\u0e15 (CSV)", + "Jobs Email Settings": "\u0e07\u0e32\u0e19\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Letter heads for print": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e21\u0e1e\u0e4c", + "List of companies (not customers / suppliers)": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 (\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e44\u0e21\u0e48 / \u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c)", + "Manage numbering series": "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e40\u0e25\u0e02\u0e0a\u0e38\u0e14", + "Notification Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e40\u0e15\u0e37\u0e2d\u0e19", + "Organization": "\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e23", + "Out going mail server and support ticket mailbox": "\u0e2d\u0e2d\u0e01\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e40\u0e0b\u0e34\u0e23\u0e4c\u0e1f\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e41\u0e25\u0e30\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e15\u0e31\u0e4b\u0e27\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Permission Manager": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", + "Print Format": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a", + "Print Heading": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Profile": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Prompt email sending to customers and suppliers": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e2a\u0e48\u0e07\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c", + "Restrict submission rights based on amount": "\u0e01\u0e32\u0e23 \u0e08\u0e33\u0e01\u0e31\u0e14 \u0e2a\u0e34\u0e17\u0e18\u0e34\u0e22\u0e37\u0e48\u0e19\u0e15\u0e32\u0e21\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48", + "SMS Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c SMS", + "SMS Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32 SMS", + "Sales Email Settings": "\u0e02\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Send bulk SMS to leads, customers, contacts": "\u0e2a\u0e48\u0e07 SMS \u0e40\u0e1b\u0e47\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e33\u0e44\u0e1b\u0e2a\u0e39\u0e48\u200b\u200b\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Set default values for entry": "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Set default values for users (also used for permissions).": "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49 (\u0e22\u0e31\u0e07\u0e43\u0e0a\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c)", + "Set multiple numbering series for transactions": "\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e38\u0e14\u0e40\u0e25\u0e02\u0e2b\u0e25\u0e32\u0e22\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21", + "Set permissions on transactions / masters": "\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e43\u0e19\u0e01\u0e32\u0e23\u0e17\u0e33\u0e18\u0e38\u0e23\u0e01\u0e23\u0e23\u0e21 / \u0e42\u0e17", + "Set workflow rules.": "\u0e15\u0e31\u0e49\u0e07\u0e01\u0e0e\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e01\u0e42\u0e1f\u0e25\u0e27\u0e4c", + "Setup outgoing SMS via your bulk SMS provider": "\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07 SMS \u0e02\u0e32\u0e2d\u0e2d\u0e01\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e2b\u0e49 SMS \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e1b\u0e47\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21", + "Show / Hide Modules": "\u0e41\u0e2a\u0e14\u0e07 / \u0e0b\u0e48\u0e2d\u0e19\u0e42\u0e21\u0e14\u0e39\u0e25", + "Show, hide modules": "\u0e41\u0e2a\u0e14\u0e07\u0e0b\u0e48\u0e2d\u0e19\u0e42\u0e21\u0e14\u0e39\u0e25", + "Simplify entry forms by disabling features": "\u0e25\u0e14\u0e04\u0e27\u0e32\u0e21\u0e0b\u0e31\u0e1a\u0e0b\u0e49\u0e2d\u0e19\u0e02\u0e2d\u0e07\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e42\u0e14\u0e22\u0e1b\u0e34\u0e14\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Style Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "User Properties": "\u0e04\u0e38\u0e13\u0e2a\u0e21\u0e1a\u0e31\u0e15\u0e34\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "Users": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "Workfow": "Workfow" +} \ No newline at end of file diff --git a/startup/__init__.py b/startup/__init__.py index b7d77c05e4..d4621df478 100644 --- a/startup/__init__.py +++ b/startup/__init__.py @@ -31,10 +31,11 @@ lang_names = { "српски":"sr", "தமிழ்": "ta", "Hrvatski": "hr", + "ไทย": "th" "العربية":"ar" } -lang_list = ["ar", "en", "hi", "es", "fr", "pt", "nl", "hr"] +lang_list = ["ar", "en", "hi", "es", "fr", "pt", "nl", "hr", "th"] product_name = "ERPNext" profile_defaults = { diff --git a/stock/doctype/batch/locale/th-doc.json b/stock/doctype/batch/locale/th-doc.json new file mode 100644 index 0000000000..2ddb0d173d --- /dev/null +++ b/stock/doctype/batch/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "Batch": "\u0e0a\u0e38\u0e14", + "Batch Finished Date": "\u0e0a\u0e38\u0e14\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e23\u0e39\u0e1b\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Batch ID": "ID \u0e0a\u0e38\u0e14", + "Batch Started Date": "\u0e0a\u0e38\u0e14\u0e40\u0e23\u0e34\u0e48\u0e21\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Expiry Date": "\u0e27\u0e31\u0e19\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30" +} \ No newline at end of file diff --git a/stock/doctype/bin/locale/_messages_js.json b/stock/doctype/bin/locale/_messages_js.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/stock/doctype/bin/locale/_messages_js.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/stock/doctype/bin/locale/_messages_py.json b/stock/doctype/bin/locale/_messages_py.json new file mode 100644 index 0000000000..e60d5f6eb5 --- /dev/null +++ b/stock/doctype/bin/locale/_messages_py.json @@ -0,0 +1,4 @@ +[ + "It was raised because the (actual + ordered + indented - reserved) quantity reaches re-order level when the following record was created", + "This is an auto generated Material Request." +] \ No newline at end of file diff --git a/stock/doctype/bin/locale/th-doc.json b/stock/doctype/bin/locale/th-doc.json new file mode 100644 index 0000000000..f1fffd6da2 --- /dev/null +++ b/stock/doctype/bin/locale/th-doc.json @@ -0,0 +1,18 @@ +{ + "Actual Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07", + "Bin": "\u0e16\u0e31\u0e07", + "FCFS Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32 FCFS", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Moving Average Rate": "\u0e22\u0e49\u0e32\u0e22\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22", + "Ordered Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e31\u0e48\u0e07", + "Planned Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19", + "Projected Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e44\u0e27\u0e49", + "Quantity Requested for Purchase": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e17\u0e35\u0e48\u0e02\u0e2d\u0e0b\u0e37\u0e49\u0e2d", + "Reserved Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e07\u0e27\u0e19", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Value": "\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e2b\u0e38\u0e49\u0e19", + "UOM": "UOM", + "Valuation Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/bin/locale/th-py.json b/stock/doctype/bin/locale/th-py.json new file mode 100644 index 0000000000..40f11b6fa0 --- /dev/null +++ b/stock/doctype/bin/locale/th-py.json @@ -0,0 +1,4 @@ +{ + "It was raised because the (actual + ordered + indented - reserved) quantity reaches re-order level when the following record was created": "\u0e21\u0e31\u0e19\u0e16\u0e39\u0e01\u0e22\u0e01\u0e02\u0e36\u0e49\u0e19\u0e40\u0e1e\u0e23\u0e32\u0e30 (\u0e08\u0e23\u0e34\u0e07 + + \u0e2a\u0e31\u0e48\u0e07\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07 - \u0e2a\u0e07\u0e27\u0e19) \u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e16\u0e36\u0e07\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e43\u0e2b\u0e21\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e1a\u0e31\u0e19\u200b\u200b\u0e17\u0e36\u0e01\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49\u0e16\u0e39\u0e01\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19", + "This is an auto generated Material Request.": "\u0e19\u0e35\u0e48\u0e04\u0e37\u0e2d\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e2a\u0e23\u0e49\u0e32\u0e07" +} \ No newline at end of file diff --git a/stock/doctype/delivery_note/locale/th-doc.json b/stock/doctype/delivery_note/locale/th-doc.json new file mode 100644 index 0000000000..5710023608 --- /dev/null +++ b/stock/doctype/delivery_note/locale/th-doc.json @@ -0,0 +1,122 @@ +{ + "% Amount Billed": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19% \u0e08\u0e33\u0e19\u0e27\u0e19", + "% Installed": "% Installed", + "% of materials billed against this Delivery Note": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e19\u0e35\u0e49", + "% of materials delivered against this Delivery Note": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07\u0e01\u0e31\u0e1a\u0e2a\u0e48\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e19\u0e35\u0e49", + "Advertisement": "\u0e01\u0e32\u0e23\u0e42\u0e06\u0e29\u0e13\u0e32", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Billing Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Calculate Charges": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Campaign": "\u0e23\u0e13\u0e23\u0e07\u0e04\u0e4c", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Challan Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 Challan", + "Challan No": "Challan \u0e44\u0e21\u0e48\u0e21\u0e35", + "Cold Calling": "\u0e42\u0e17\u0e23\u0e40\u0e22\u0e47\u0e19", + "Commission Rate (%)": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e04\u0e48\u0e32\u0e04\u0e2d\u0e21\u0e21\u0e34\u0e0a\u0e0a\u0e31\u0e48\u0e19 (%)", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Conversion Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer's Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer's Vendor": "\u0e1c\u0e39\u0e49\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "DN": "DN", + "Date on which lorry started from your warehouse": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e08\u0e32\u0e01\u0e23\u0e16\u0e1a\u0e23\u0e23\u0e17\u0e38\u0e01\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Delivery Note Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Excise Page Number": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e2b\u0e19\u0e49\u0e32\u0e2a\u0e23\u0e23\u0e1e\u0e2a\u0e32\u0e21\u0e34\u0e15", + "Exhibition": "\u0e07\u0e32\u0e19\u0e21\u0e2b\u0e01\u0e23\u0e23\u0e21", + "Existing Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Filling in Additional Information about the Delivery Note will help you analyze your data better.": "\u0e01\u0e23\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e14\u0e35\u0e22\u0e34\u0e48\u0e07\u0e02\u0e36\u0e49\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Fully Billed": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e21\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e15\u0e47\u0e21\u0e17\u0e35\u0e48", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Get Taxes and Charges": "\u0e23\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Grand Total (Export)": "\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "If you have created a standard template in Sales Taxes and Charges Master, select one and click on the button below.": "\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e43\u0e19\u0e20\u0e32\u0e29\u0e35\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", + "In Words": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07", + "In Words (Export)": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "In Words (Export) will be visible once you save the Delivery Note.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01) \u0e08\u0e30\u0e1b\u0e23\u0e32\u0e01\u0e0f\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "In Words will be visible once you save the Delivery Note.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Installation Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Instructions": "\u0e04\u0e33\u0e41\u0e19\u0e30\u0e19\u0e33", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "LR Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 LR", + "LR No": "LR \u0e44\u0e21\u0e48\u0e21\u0e35", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Mass Mailing": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e21\u0e27\u0e25", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Net Total*": "* \u0e2a\u0e38\u0e17\u0e18\u0e34", + "Not Billed": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a", + "P.O. Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 PO", + "P.O. No": "\u0e44\u0e21\u0e48\u0e21\u0e35 PO", + "Packing Details": "\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Packing List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e23\u0e08\u0e38", + "Partly Billed": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e21\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e43\u0e2b\u0e0d\u0e48", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Posting Time": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e40\u0e27\u0e25\u0e32", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Currency Conversion Rate": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Price List and Currency": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e41\u0e25\u0e30\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19", + "Print Without Amount": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e21\u0e35\u0e08\u0e33\u0e19\u0e27\u0e19", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Rate at which Price list currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Rate at which customer's currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Re-Calculate Values": "\u0e04\u0e48\u0e32\u0e04\u0e33\u0e19\u0e27\u0e13\u0e43\u0e2b\u0e21\u0e48", + "Reference": "\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Required only for sample item.": "\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", + "Rounded Total": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21", + "Rounded Total (Export)": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21 (\u0e2a\u0e48\u0e07\u0e2d\u0e2d\u0e01)", + "Sales BOM Help": "\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d BOM \u0e02\u0e32\u0e22", + "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Sales Team": "\u0e17\u0e35\u0e21\u0e02\u0e32\u0e22", + "Sales Team1": "\u0e02\u0e32\u0e22 Team1", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Select Shipping Address": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the currency in which price list is maintained": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e30\u0e22\u0e31\u0e07\u0e04\u0e07", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e1b\u0e49\u0e2d\u0e19\u0e43\u0e19 "\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" \u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a \u0e19\u0e35\u0e49\u0e08\u0e30\u0e14\u0e36\u0e07\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e27\u0e49\u0e43\u0e19 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" \u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a", + "Select the relevant company name if you have multiple companies": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Series": "\u0e0a\u0e38\u0e14", + "Shipping Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", + "Source": "\u0e41\u0e2b\u0e25\u0e48\u0e07", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Submitted": "Submitted", + "Supplier Reference": "\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Taxes": "\u0e20\u0e32\u0e29\u0e35", + "Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Taxes and Charges Calculation": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Taxes and Charges Total": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions Details": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Terms and Conditions HTML": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02 HTML", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "Time at which items were delivered from warehouse": "\u0e40\u0e27\u0e25\u0e32\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07\u0e21\u0e32\u0e08\u0e32\u0e01\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "To Warehouse": "\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e42\u0e01\u0e14\u0e31\u0e07", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Total Commission": "\u0e04\u0e13\u0e30\u0e01\u0e23\u0e23\u0e21\u0e01\u0e32\u0e23\u0e23\u0e27\u0e21", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Track this Delivery Note against any Project": "\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e19\u0e35\u0e49\u0e01\u0e31\u0e1a\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23\u0e43\u0e14 \u0e46", + "Transporter Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e02\u0e19\u0e22\u0e49\u0e32\u0e22", + "Transporter Name": "\u0e0a\u0e37\u0e48\u0e2d Transporter", + "Transporter lorry number": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e23\u0e16\u0e1a\u0e23\u0e23\u0e17\u0e38\u0e01\u0e02\u0e19\u0e22\u0e49\u0e32\u0e22", + "You can make a delivery note from multiple sales orders. Select sales orders one by one and click on the button below.": "\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e08\u0e14\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a\u0e08\u0e32\u0e01\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e02\u0e32\u0e22\u0e2b\u0e25\u0e32\u0e22 \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e42\u0e14\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07" +} \ No newline at end of file diff --git a/stock/doctype/delivery_note_item/locale/th-doc.json b/stock/doctype/delivery_note_item/locale/th-doc.json new file mode 100644 index 0000000000..70505a7fd3 --- /dev/null +++ b/stock/doctype/delivery_note_item/locale/th-doc.json @@ -0,0 +1,33 @@ +{ + "Against Document Date": "\u0e01\u0e31\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Against Document Detail No": "\u0e01\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e44\u0e21\u0e48\u0e21\u0e35", + "Against Document No": "\u0e01\u0e31\u0e1a\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e44\u0e21\u0e48\u0e21\u0e35", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Amount*": "* \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Available Qty at Warehouse": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Barcode": "\u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14", + "Batch No": "\u0e0a\u0e38\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35", + "Billed Amt": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e08\u0e33\u0e19\u0e27\u0e19\u0e21\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14", + "Brand Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Customer's Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Delivery Note Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Discount (%)": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14 (%)", + "Document Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Installed Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Packed Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e1a\u0e23\u0e23\u0e08\u0e38", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Price List Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Price List Rate*": "\u0e23\u0e32\u0e04\u0e32 * \u0e2d\u0e31\u0e15\u0e23\u0e32\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "UOM": "UOM", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/delivery_note_packing_item/locale/th-doc.json b/stock/doctype/delivery_note_packing_item/locale/th-doc.json new file mode 100644 index 0000000000..083d9e687c --- /dev/null +++ b/stock/doctype/delivery_note_packing_item/locale/th-doc.json @@ -0,0 +1,18 @@ +{ + "Actual Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07", + "Batch No": "\u0e0a\u0e38\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35", + "Delivery Note Packing Item": "\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Parent Detail docname": "docname \u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1c\u0e39\u0e49\u0e1b\u0e01\u0e04\u0e23\u0e2d\u0e07", + "Parent Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e25\u0e31\u0e01", + "Prevdoc DocType": "DocType Prevdoc", + "Projected Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e44\u0e27\u0e49", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "UOM": "UOM", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/featured_item/locale/th-doc.json b/stock/doctype/featured_item/locale/th-doc.json new file mode 100644 index 0000000000..a79d3d0ad4 --- /dev/null +++ b/stock/doctype/featured_item/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Featured Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e14\u0e48\u0e19", + "Featured Item in Item Group": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e42\u0e14\u0e14\u0e40\u0e14\u0e48\u0e19\u0e43\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/item/locale/_messages_doc.json b/stock/doctype/item/locale/_messages_doc.json index 005f8c2e17..fc6555f4d0 100644 --- a/stock/doctype/item/locale/_messages_doc.json +++ b/stock/doctype/item/locale/_messages_doc.json @@ -57,6 +57,7 @@ "website page link", "Max Discount (%)", "Image", + "Auto-raise Material Request if quantity goes below re-order level in a warehouse", "Is Asset Item", "Sales Details", "Standard Rate", diff --git a/stock/doctype/item/locale/th-doc.json b/stock/doctype/item/locale/th-doc.json new file mode 100644 index 0000000000..1907f31350 --- /dev/null +++ b/stock/doctype/item/locale/th-doc.json @@ -0,0 +1,117 @@ +{ + "Manage Item Groups": "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "A Product or a Service that is bought, sold or kept in stock.": "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e43\u0e19\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Allow Bill of Materials": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49 Bill of Materials", + "Allow Production Order": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Allow Samples": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07", + "Allowance Percent": "\u0e23\u0e49\u0e2d\u0e22\u0e25\u0e30\u0e04\u0e48\u0e32\u0e40\u0e1c\u0e37\u0e48\u0e2d", + "Auto-raise Material Request if quantity goes below re-order level in a warehouse": "Auto-\u0e22\u0e01\u0e04\u0e33\u0e02\u0e2d\u0e16\u0e49\u0e32\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e44\u0e1b\u0e15\u0e48\u0e33\u0e01\u0e27\u0e48\u0e32\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e43\u0e2b\u0e21\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e43\u0e19\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Barcode": "\u0e1a\u0e32\u0e23\u0e4c\u0e42\u0e04\u0e49\u0e14", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Buying Cost": "\u0e0b\u0e37\u0e49\u0e2d\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Buying Cost will be updated from Purchase Orders and Purchase Receipts.
The buying cost will calculated by moving average method.": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e08\u0e32\u0e01\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e23\u0e32\u0e22\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d
\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e04\u0e33\u0e19\u0e27\u0e13\u0e42\u0e14\u0e22\u0e27\u0e34\u0e18\u0e35\u0e16\u0e31\u0e27\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Create a price list from Price List master and enter standard ref rates against each of them. On selection of a price list in Quotation, Sales Order or Delivery Note, corresponding ref rate will be fetched for this item.": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e08\u0e32\u0e01\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e41\u0e25\u0e30\u0e1b\u0e49\u0e2d\u0e19\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e01\u0e31\u0e1a\u0e41\u0e15\u0e48\u0e25\u0e30\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e02\u0e32 \u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e43\u0e19\u0e43\u0e1a\u0e40\u0e2a\u0e19\u0e2d\u0e23\u0e32\u0e04\u0e32, \u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e17\u0e35\u0e48\u0e2a\u0e2d\u0e14\u0e04\u0e25\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "Customer Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Codes": "\u0e23\u0e2b\u0e31\u0e2a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Default BOM": "BOM \u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Cost Center for tracking expense for this item.": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "Default Expense Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Income Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e23\u0e32\u0e22\u0e44\u0e14\u0e49\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Purchase Account in which cost of the item will be debited.": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e17\u0e35\u0e48\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2b\u0e31\u0e01", + "Default Reserved Warehouse": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e07\u0e27\u0e19", + "Default Unit of Measure": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e02\u0e2d\u0e07\u0e27\u0e31\u0e14", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Description HTML": "HTML \u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "End of Life": "\u0e43\u0e19\u0e15\u0e2d\u0e19\u0e17\u0e49\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e0a\u0e35\u0e27\u0e34\u0e15", + "FIFO": "FIFO", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e30\u0e14\u0e27\u0e01\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e23\u0e2b\u0e31\u0e2a\u0e40\u0e2b\u0e25\u0e48\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e40\u0e0a\u0e48\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e41\u0e25\u0e30\u0e19\u0e33\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Generate Description HTML": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22 HTML", + "Generates HTML to include selected image in the description": "\u0e2a\u0e23\u0e49\u0e32\u0e07 HTM\u200b\u200bL \u0e17\u0e35\u0e48\u0e08\u0e30\u0e23\u0e27\u0e21\u0e20\u0e32\u0e1e\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e44\u0e27\u0e49\u0e43\u0e19\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22", + "Has Batch No": "\u0e0a\u0e38\u0e14\u0e21\u0e35\u0e44\u0e21\u0e48\u0e21\u0e35", + "Has Serial No": "\u0e21\u0e35\u0e0b\u0e35\u0e40\u0e23\u0e35\u0e22\u0e25\u0e44\u0e21\u0e48\u0e21\u0e35", + "Image": "\u0e20\u0e32\u0e1e", + "Image View": "\u0e14\u0e39\u0e20\u0e32\u0e1e", + "Inspection Criteria": "\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a", + "Inspection Required": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19", + "Inventory": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Is Asset Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e4c\u0e40\u0e1b\u0e47\u0e19", + "Is Purchase Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e1b\u0e47\u0e19", + "Is Sales Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Is Service Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e47\u0e19", + "Is Stock Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e1b\u0e47\u0e19", + "Is Sub Contracted Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e22\u0e48\u0e2d\u0e22\u0e04\u0e37\u0e2d", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Image (if not slideshow)": "\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 (\u0e16\u0e49\u0e32\u0e44\u0e21\u0e48\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c)", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Prices": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Quality Inspection Parameter": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e", + "Item Supplier Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax": "\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Tax1": "Tax1 \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Website Specifications": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e08\u0e33\u0e40\u0e1e\u0e32\u0e30\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item will be saved by this name in the data base.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e30\u0e16\u0e39\u0e01\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e44\u0e27\u0e49\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e0a\u0e37\u0e48\u0e2d\u0e19\u0e35\u0e49\u0e43\u0e19\u0e10\u0e32\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25", + "Last Purchase Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e0b\u0e37\u0e49\u0e2d\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14", + "Lead Time Days": "\u0e19\u0e33\u0e27\u0e31\u0e19\u0e40\u0e27\u0e25\u0e32", + "Lead Time days is number of days by which this item is expected in your warehouse. This days is fetched in Material Request when you select this item.": "\u0e19\u0e33\u0e27\u0e31\u0e19\u0e40\u0e27\u0e25\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e33\u0e19\u0e27\u0e19\u0e27\u0e31\u0e19\u0e42\u0e14\u0e22\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e04\u0e32\u0e14\u0e27\u0e48\u0e32\u0e43\u0e19\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 \u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e08\u0e30\u0e21\u0e32\u0e43\u0e19\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "List this Item in multiple groups on the website.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e43\u0e19\u0e2b\u0e25\u0e32\u0e22\u0e01\u0e25\u0e38\u0e48\u0e21\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Mandatory if Stock Item is \"Yes\"": "\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e16\u0e49\u0e32\u0e40\u0e1b\u0e47\u0e19 "\u0e43\u0e0a\u0e48"", + "Manufacturer": "\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Manufacturer Part Number": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e0a\u0e34\u0e49\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Manufacturing": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Max Discount (%)": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14\u0e2a\u0e39\u0e07\u0e2a\u0e38\u0e14 (%)", + "Minimum Order Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e31\u0e49\u0e19\u0e15\u0e48\u0e33", + "Moving Average": "\u0e04\u0e48\u0e32\u0e40\u0e09\u0e25\u0e35\u0e48\u0e22\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48", + "Net Weight": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e2a\u0e38\u0e17\u0e18\u0e34", + "Net Weight of each Item": "\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e2a\u0e38\u0e17\u0e18\u0e34\u0e02\u0e2d\u0e07\u0e41\u0e15\u0e48\u0e25\u0e30\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "No": "\u0e44\u0e21\u0e48", + "Notify by Email on Re-order": "\u0e41\u0e08\u0e49\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c\u0e41\u0e25\u0e30 Re-order", + "Page Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e1e\u0e08", + "Percentage variation in quantity to be allowed while receiving or delivering this item.": "\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07\u0e43\u0e19\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e23\u0e49\u0e2d\u0e22\u0e25\u0e30\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e02\u0e13\u0e30\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "Price Lists and Rates": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e23\u0e32\u0e04\u0e32", + "Products will be sorted by weight-age in default searches. More the weight-age, higher the product will appear in the list.": "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e08\u0e30\u0e16\u0e39\u0e01\u0e08\u0e31\u0e14\u0e40\u0e23\u0e35\u0e22\u0e07\u0e42\u0e14\u0e22\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e2d\u0e32\u0e22\u0e38\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e04\u0e49\u0e19\u0e2b\u0e32 \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e2d\u0e32\u0e22\u0e38\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e17\u0e35\u0e48\u0e2a\u0e39\u0e07\u0e02\u0e36\u0e49\u0e19\u0e08\u0e30\u0e1b\u0e23\u0e32\u0e01\u0e0f\u0e43\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Purchase Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Quality Inspection Parameters": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e", + "Re-Order Level": "\u0e23\u0e30\u0e14\u0e31\u0e1a Re-Order", + "Re-Order Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19 Re-Order", + "Re-order": "Re-order", + "Sales Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Sales Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Select \"Yes\" if this item is to be sent to a customer or received from a supplier as a sample. Delivery notes and Purchase Receipts will update stock levels but there will be no invoice against this item.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e16\u0e49\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e08\u0e32\u0e01\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07 \u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e41\u0e25\u0e30\u0e23\u0e32\u0e22\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2a\u0e15\u0e47\u0e2d\u0e01 \u0e41\u0e15\u0e48\u0e08\u0e30\u0e21\u0e35\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e01\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e44\u0e21\u0e48\u0e21\u0e35", + "Select \"Yes\" if this item is used for some internal purpose in your company.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e16\u0e49\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e27\u0e31\u0e15\u0e16\u0e38\u0e1b\u0e23\u0e30\u0e2a\u0e07\u0e04\u0e4c\u0e20\u0e32\u0e22\u0e43\u0e19\u0e1a\u0e32\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e43\u0e19 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Select \"Yes\" if this item represents some work like training, designing, consulting etc.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e16\u0e49\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e47\u0e19\u0e16\u0e36\u0e07\u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e1a\u0e32\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e32\u0e23\u0e1d\u0e36\u0e01\u0e2d\u0e1a\u0e23\u0e21\u0e01\u0e32\u0e23\u0e2d\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e43\u0e2b\u0e49\u0e04\u0e33\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32 \u0e2f\u0e25\u0e2f", + "Select \"Yes\" if you are maintaining stock of this item in your Inventory.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e08\u0e30\u0e23\u0e31\u0e01\u0e29\u0e32\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e43\u0e19\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e04\u0e07\u0e04\u0e25\u0e31\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Select \"Yes\" if you supply raw materials to your supplier to manufacture this item.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e08\u0e31\u0e14\u0e2b\u0e32\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e43\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "Selecting \"Yes\" will allow this item to appear in Purchase Order , Purchase Receipt.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e08\u0e30\u0e1b\u0e23\u0e32\u0e01\u0e0f\u0e43\u0e19\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d,", + "Selecting \"Yes\" will allow this item to figure in Sales Order, Delivery Note": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e08\u0e30\u0e04\u0e34\u0e14\u0e43\u0e19\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22, \u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38", + "Selecting \"Yes\" will allow you to create Bill of Material showing raw material and operational costs incurred to manufacture this item.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1a\u0e34\u0e25\u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e41\u0e2a\u0e14\u0e07\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a\u0e41\u0e25\u0e30\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e01\u0e32\u0e23\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e43\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "Selecting \"Yes\" will allow you to make a Production Order for this item.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "\u0e43\u0e0a\u0e48" \u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e08\u0e30\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "Selecting \"Yes\" will give a unique identity to each entity of this item which can be viewed in the Serial No master.": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "Yes" \u0e08\u0e30\u0e43\u0e2b\u0e49\u0e40\u0e2d\u0e01\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e02\u0e2d\u0e07\u0e41\u0e15\u0e48\u0e25\u0e30\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e23\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e0b\u0e36\u0e48\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e14\u0e39\u0e44\u0e14\u0e49\u0e43\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Send an email to users of role \"Material Manager\" and \"Purchase Manager\" when re-order level is crossed.": "\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e02\u0e2d\u0e07\u0e1a\u0e17\u0e1a\u0e32\u0e17 "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38" \u0e41\u0e25\u0e30 "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d" \u0e40\u0e21\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e08\u0e30\u0e02\u0e49\u0e32\u0e21", + "Show \"In Stock\" or \"Not in Stock\" based on stock available in this warehouse.": "\u0e41\u0e2a\u0e14\u0e07 "\u0e43\u0e19\u0e2a\u0e15\u0e47\u0e2d\u0e01" \u0e2b\u0e23\u0e37\u0e2d "\u0e44\u0e21\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e2a\u0e15\u0e47\u0e2d\u0e01" \u0e1a\u0e19\u0e1e\u0e37\u0e49\u0e19\u0e10\u0e32\u0e19\u0e02\u0e2d\u0e07\u0e2b\u0e38\u0e49\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e19\u0e35\u0e49", + "Show Price in Website (if set)": "\u0e41\u0e2a\u0e14\u0e07\u0e23\u0e32\u0e04\u0e32\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c (\u0e16\u0e49\u0e32\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32)", + "Show a slideshow at the top of the page": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e17\u0e35\u0e48\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Show in Website": "\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Slideshow": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c", + "Standard Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "UOM Conversion Details": "UOM \u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07", + "Unit of measurement of this item (e.g. Kg, Unit, No, Pair).": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e27\u0e31\u0e14\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49 (\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e34\u0e42\u0e25\u0e01\u0e23\u0e31\u0e21\u0e2b\u0e19\u0e48\u0e27\u0e22, \u0e44\u0e21\u0e48\u0e21\u0e35, \u0e04\u0e39\u0e48)", + "Valuation Method": "\u0e27\u0e34\u0e18\u0e35\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Warehouse-wise Item Reorder": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e09\u0e25\u0e32\u0e14 Reorder", + "Warranty Period (in days)": "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19 (\u0e27\u0e31\u0e19)", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Description": "\u0e04\u0e33\u0e2d\u0e18\u0e34\u0e1a\u0e32\u0e22\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Item Groups": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Price List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Weight UOM": "UOM \u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01", + "Weightage": "weightage", + "Yes": "\u0e43\u0e0a\u0e48", + "You can enter the minimum quantity of this item to be ordered.": "\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e49\u0e2d\u0e19\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e02\u0e31\u0e49\u0e19\u0e15\u0e48\u0e33\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07", + "website page link": "\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/stock/doctype/item_customer_detail/locale/th-doc.json b/stock/doctype/item_customer_detail/locale/th-doc.json new file mode 100644 index 0000000000..30afb0097b --- /dev/null +++ b/stock/doctype/item_customer_detail/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e30\u0e14\u0e27\u0e01\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e23\u0e2b\u0e31\u0e2a\u0e40\u0e2b\u0e25\u0e48\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e40\u0e0a\u0e48\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e41\u0e25\u0e30\u0e19\u0e33\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Customer Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Ref Code": "\u0e23\u0e2b\u0e31\u0e2a Ref", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/item_price/locale/th-doc.json b/stock/doctype/item_price/locale/th-doc.json new file mode 100644 index 0000000000..45c2126478 --- /dev/null +++ b/stock/doctype/item_price/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "Allow this price in purchase related forms": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e04\u0e32\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e19\u0e35\u0e49", + "Allow this price in sales related forms": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e04\u0e32\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e19\u0e35\u0e49", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "For Buying": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "For Selling": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Item Price": "\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Ref Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/item_quality_inspection_parameter/locale/th-doc.json b/stock/doctype/item_quality_inspection_parameter/locale/th-doc.json new file mode 100644 index 0000000000..2408d0923f --- /dev/null +++ b/stock/doctype/item_quality_inspection_parameter/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Acceptance Criteria": "\u0e40\u0e01\u0e13\u0e11\u0e4c\u0e01\u0e32\u0e23\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a", + "Item Quality Inspection Parameter": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e", + "Parameter": "\u0e1e\u0e32\u0e23\u0e32\u0e21\u0e34\u0e40\u0e15\u0e2d\u0e23\u0e4c", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/item_reorder/locale/th-doc.json b/stock/doctype/item_reorder/locale/th-doc.json new file mode 100644 index 0000000000..029e2435de --- /dev/null +++ b/stock/doctype/item_reorder/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Item Reorder": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 Reorder", + "Material Request Type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Purchase": "\u0e0b\u0e37\u0e49\u0e2d", + "Re-order Level": "\u0e23\u0e30\u0e14\u0e31\u0e1a Re-order", + "Re-order Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19 Re-order", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Transfer": "\u0e42\u0e2d\u0e19", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/item_supplier/locale/th-doc.json b/stock/doctype/item_supplier/locale/th-doc.json new file mode 100644 index 0000000000..cd20384bb8 --- /dev/null +++ b/stock/doctype/item_supplier/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Item Supplier": "\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Part Number": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e0a\u0e34\u0e49\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15" +} \ No newline at end of file diff --git a/stock/doctype/item_tax/locale/th-doc.json b/stock/doctype/item_tax/locale/th-doc.json new file mode 100644 index 0000000000..e8ef54b428 --- /dev/null +++ b/stock/doctype/item_tax/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Item Tax": "\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Tax": "\u0e20\u0e32\u0e29\u0e35", + "Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35" +} \ No newline at end of file diff --git a/stock/doctype/item_website_specification/locale/th-doc.json b/stock/doctype/item_website_specification/locale/th-doc.json new file mode 100644 index 0000000000..79510a49f2 --- /dev/null +++ b/stock/doctype/item_website_specification/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Website Specification": "\u0e2a\u0e40\u0e1b\u0e01\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Label": "\u0e09\u0e25\u0e32\u0e01", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Table for Item that will be shown in Web Site": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_item/locale/th-doc.json b/stock/doctype/landed_cost_item/locale/th-doc.json new file mode 100644 index 0000000000..e3d2816594 --- /dev/null +++ b/stock/doctype/landed_cost_item/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Account Head": "\u0e2b\u0e31\u0e27\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Landed Cost Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e25\u0e07", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_purchase_receipt/locale/th-doc.json b/stock/doctype/landed_cost_purchase_receipt/locale/th-doc.json new file mode 100644 index 0000000000..b167b2cfac --- /dev/null +++ b/stock/doctype/landed_cost_purchase_receipt/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Landed Cost Purchase Receipt": "\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e25\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Select PR": "PR \u0e40\u0e25\u0e37\u0e2d\u0e01", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_wizard/locale/th-doc.json b/stock/doctype/landed_cost_wizard/locale/th-doc.json new file mode 100644 index 0000000000..ed2fe49088 --- /dev/null +++ b/stock/doctype/landed_cost_wizard/locale/th-doc.json @@ -0,0 +1,12 @@ +{ + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "From PR Date": "\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 PR", + "Get Purchase Receipt": "\u0e23\u0e31\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e0b\u0e37\u0e49\u0e2d", + "Landed Cost Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e25\u0e07", + "Landed Cost Purchase Receipts": "\u0e23\u0e32\u0e22\u0e23\u0e31\u0e1a\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e14\u0e34\u0e19", + "Landed Cost Wizard": "\u0e15\u0e31\u0e27\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e17\u0e35\u0e48\u0e14\u0e34\u0e19", + "Process": "\u0e01\u0e23\u0e30\u0e1a\u0e27\u0e19\u0e01\u0e32\u0e23", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "To PR Date": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e1b\u0e23\u0e30\u0e0a\u0e32\u0e2a\u0e31\u0e21\u0e1e\u0e31\u0e19\u0e18\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Update PR": "PR \u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07" +} \ No newline at end of file diff --git a/stock/doctype/material_request/locale/_messages_doc.json b/stock/doctype/material_request/locale/_messages_doc.json index 7a9d21692e..1fb249f2c9 100644 --- a/stock/doctype/material_request/locale/_messages_doc.json +++ b/stock/doctype/material_request/locale/_messages_doc.json @@ -1,25 +1,27 @@ [ - "% Ordered", - "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template", + "% of materials ordered against this Material Request", + "Select Terms and Conditions", "Material Request Items", + "Transfer", "IDT", "Material Request", - "Select Terms and Conditions", "Draft", - "Name of the entity who has requested for the Purchase Requisition", "Select Print Heading", "Stock", "Status", - "Cancel Reason", + "Name of the entity who has requested for the Material Request", "Terms and Conditions", - "Get Terms and Conditions", "Company", "Requested By", "Amended From", "File List", - "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field", + "Add Terms and Conditions for the Material Request. You can also prepare a Terms and Conditions Master and use the Template", + "Material Request Type", "Remarks", "Sales Order No", + "Filing in Additional Information about the Material Request will help you analyze your data better.", + "One or multiple Sales Order no which generated this Material Request", + "Purchase", "To manage multiple series please go to Setup > Manage Series", "Items", "Pull Sales Order Items", @@ -27,18 +29,17 @@ "Fiscal Year", "Stopped", "Cancelled", - "MREQ", - "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.", + "Get Terms and Conditions", "Letter Head", "Amendment Date", "The date at which current entry is made in system.", "Transaction Date", + "% Completed", "Select the relevant company name if you have multiple companies", "Series", "The date at which current entry is corrected in the system.", - "% of materials ordered against this Purchase Requisition", "More Info", - "One or multiple Sales Order no which generated this Purchase Requisition", + "MREQ-", "Terms and Conditions Content", "Print Heading" ] \ No newline at end of file diff --git a/stock/doctype/material_request/locale/th-doc.json b/stock/doctype/material_request/locale/th-doc.json new file mode 100644 index 0000000000..53d1025ee8 --- /dev/null +++ b/stock/doctype/material_request/locale/th-doc.json @@ -0,0 +1,45 @@ +{ + "% Completed": "% \u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c", + "% of materials ordered against this Material Request": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e31\u0e48\u0e07\u0e01\u0e31\u0e1a\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e19\u0e35\u0e49\u0e02\u0e2d", + "Add Terms and Conditions for the Material Request. You can also prepare a Terms and Conditions Master and use the Template": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38 \u0e19\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e19\u0e35\u0e49\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e15\u0e23\u0e35\u0e22\u0e21\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e41\u0e25\u0e30\u0e43\u0e0a\u0e49\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Filing in Additional Information about the Material Request will help you analyze your data better.": "\u0e22\u0e37\u0e48\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e14\u0e35\u0e22\u0e34\u0e48\u0e07\u0e02\u0e36\u0e49\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "IDT": "IDT", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "MREQ-": "MREQ-", + "Material Request": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Material Request Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e02\u0e2d", + "Material Request Type": "\u0e0a\u0e19\u0e34\u0e14\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Name of the entity who has requested for the Material Request": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "One or multiple Sales Order no which generated this Material Request": "\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e25\u0e32\u0e22 no \u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e0b\u0e36\u0e48\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e19\u0e35\u0e49", + "Print Heading": "\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Pull Sales Order Items": "\u0e14\u0e36\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", + "Purchase": "\u0e0b\u0e37\u0e49\u0e2d", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Requested By": "\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e08\u0e32\u0e01", + "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the relevant company name if you have multiple companies": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Series": "\u0e0a\u0e38\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stopped": "\u0e2b\u0e22\u0e38\u0e14", + "Submitted": "Submitted", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions Content": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Transaction Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Transfer": "\u0e42\u0e2d\u0e19" +} \ No newline at end of file diff --git a/stock/doctype/material_request_item/locale/_messages_doc.json b/stock/doctype/material_request_item/locale/_messages_doc.json index 5ed4ee5487..30ce9aa0fe 100644 --- a/stock/doctype/material_request_item/locale/_messages_doc.json +++ b/stock/doctype/material_request_item/locale/_messages_doc.json @@ -1,12 +1,12 @@ [ "Item Name", + "Completed Qty", "Description", "Required Date", "Lead Time Date", "Brand", - "Ordered Qty", - "Sales Order No", "Page Break", + "Sales Order No", "Stock UOM", "Material Request Item", "Min Order Qty", diff --git a/stock/doctype/material_request_item/locale/th-doc.json b/stock/doctype/material_request_item/locale/th-doc.json new file mode 100644 index 0000000000..53725fdadb --- /dev/null +++ b/stock/doctype/material_request_item/locale/th-doc.json @@ -0,0 +1,19 @@ +{ + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Completed Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e2a\u0e23\u0e47\u0e08", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Lead Time Date": "\u0e19\u0e33\u0e27\u0e31\u0e19\u0e40\u0e27\u0e25\u0e32", + "Material Request Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e02\u0e2d", + "Min Order Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e31\u0e49\u0e19\u0e15\u0e48\u0e33", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Projected Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e44\u0e27\u0e49", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Required Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23", + "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/packing_slip/locale/th-doc.json b/stock/doctype/packing_slip/locale/th-doc.json new file mode 100644 index 0000000000..df60625890 --- /dev/null +++ b/stock/doctype/packing_slip/locale/th-doc.json @@ -0,0 +1,27 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "From Package No.": "\u0e08\u0e32\u0e01\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08", + "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a \u0e43\u0e0a\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e08\u0e33\u0e19\u0e27\u0e19\u0e41\u0e1e\u0e47\u0e01\u0e40\u0e01\u0e08\u0e17\u0e35\u0e48\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e41\u0e25\u0e30\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e21\u0e31\u0e19", + "Gross Weight": "\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e23\u0e27\u0e21", + "Gross Weight UOM": "UOM \u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e23\u0e27\u0e21", + "Identification of the package for the delivery (for print)": "\u0e1a\u0e31\u0e15\u0e23\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e15\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a (\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1e\u0e34\u0e21\u0e1e\u0e4c)", + "If more than one package of the same type (for print)": "\u0e2b\u0e32\u0e01\u0e21\u0e35\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19 (\u0e1e\u0e34\u0e21\u0e1e\u0e4c)", + "Indicates that the package is a part of this delivery": "\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e47\u0e19\u0e27\u0e48\u0e32\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e19\u0e35\u0e49", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Misc Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Net Weight": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e2a\u0e38\u0e17\u0e18\u0e34", + "Net Weight UOM": "UOM \u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e2a\u0e38\u0e17\u0e18\u0e34", + "PS": "PS", + "Package Item Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Package Weight Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01", + "Packing Slip": "\u0e2a\u0e25\u0e34\u0e1b", + "Packing Slip Items": "\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e25\u0e34\u0e1b", + "Series": "\u0e0a\u0e38\u0e14", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The gross weight of the package. Usually net weight + packaging material weight. (for print)": "\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08 \u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e2a\u0e38\u0e17\u0e18\u0e34\u0e1b\u0e01\u0e15\u0e34 + \u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e20\u0e31\u0e13\u0e11\u0e4c (\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1e\u0e34\u0e21\u0e1e\u0e4c)", + "The net weight of this package. (calculated automatically as sum of net weight of items)": "\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e2a\u0e38\u0e17\u0e18\u0e34\u0e02\u0e2d\u0e07\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e19\u0e35\u0e49 (\u0e04\u0e33\u0e19\u0e27\u0e13\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e40\u0e1b\u0e47\u0e19\u0e17\u0e35\u0e48\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e2a\u0e38\u0e17\u0e18\u0e34\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23)", + "To Package No.": "\u0e01\u0e31\u0e1a\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02" +} \ No newline at end of file diff --git a/stock/doctype/packing_slip_item/locale/th-doc.json b/stock/doctype/packing_slip_item/locale/th-doc.json new file mode 100644 index 0000000000..eb7334e0d5 --- /dev/null +++ b/stock/doctype/packing_slip_item/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Net Weight": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e2a\u0e38\u0e17\u0e18\u0e34", + "Packing Slip Item": "\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e25\u0e34\u0e1b", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "UOM": "UOM", + "Weight UOM": "UOM \u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01" +} \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/locale/th-doc.json b/stock/doctype/purchase_receipt/locale/th-doc.json new file mode 100644 index 0000000000..a54c0c7481 --- /dev/null +++ b/stock/doctype/purchase_receipt/locale/th-doc.json @@ -0,0 +1,104 @@ +{ + "% Billed": "\u0e08\u0e33\u0e19\u0e27\u0e19%", + "% of materials billed against this Purchase Receipt": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e0b\u0e37\u0e49\u0e2d\u0e19\u0e35\u0e49", + "Add / Edit Taxes and Charges": "\u0e40\u0e1e\u0e34\u0e48\u0e21 / \u0e41\u0e01\u0e49\u0e44\u0e02\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "Add Terms and Conditions for the Purchase Receipt. You can also prepare a Terms and Conditions Master and use the Template.": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d \u0e19\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e19\u0e35\u0e49\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e15\u0e23\u0e35\u0e22\u0e21\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e41\u0e25\u0e30\u0e43\u0e0a\u0e49\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Bill Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e1a\u0e34\u0e25", + "Bill No": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1a\u0e34\u0e25", + "Calculate Tax": "\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35", + "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Challan Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 Challan", + "Challan No": "Challan \u0e44\u0e21\u0e48\u0e21\u0e35", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2d\u0e31\u0e15\u0e23\u0e32 (\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e17\u0e35\u0e48\u0e21\u0e35 "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d" \u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1b\u0e47\u0e19)", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Currency": "\u0e40\u0e07\u0e34\u0e19\u0e15\u0e23\u0e32", + "Currency & Price List": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e30\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Date on which lorry started from supplier warehouse": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e08\u0e32\u0e01\u0e23\u0e16\u0e1a\u0e23\u0e23\u0e17\u0e38\u0e01\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Detailed Breakup of the totals": "\u0e01\u0e23\u0e30\u0e08\u0e31\u0e14\u0e01\u0e23\u0e30\u0e08\u0e32\u0e22\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e02\u0e2d\u0e07\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Exchange Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Filing in Additional Information about the Purchase Receipt will help you analyze your data better.": "\u0e22\u0e37\u0e48\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Following table will show values if items are sub - contracted. These values will be fetched from the master of \"Bill of Materials\" of sub - contracted items.": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07\u0e04\u0e48\u0e32\u0e2b\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e48\u0e2d\u0e22 - \u0e2a\u0e31\u0e0d\u0e0d\u0e32 \u0e04\u0e48\u0e32\u0e40\u0e2b\u0e25\u0e48\u0e32\u0e19\u0e35\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e23\u0e35\u0e22\u0e01\u0e08\u0e32\u0e01\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e02\u0e2d\u0e07 "Bill of Materials" \u0e22\u0e48\u0e2d\u0e22 - \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e0d\u0e0d\u0e32", + "GRN": "GRN", + "Get Current Stock": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Get Tax Detail": "\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35", + "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Grand Total": "\u0e23\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2a\u0e34\u0e49\u0e19", + "Grand Total (Import)": "\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c\u0e23\u0e27\u0e21 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e21\u0e32\u0e15\u0e23\u0e10\u0e32\u0e19\u0e43\u0e19\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e04\u0e48\u0e32\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07", + "In Words": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07", + "In Words (Import)": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "In Words will be visible once you save the Purchase Receipt.": "\u0e43\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e02\u0e2d\u0e07\u0e08\u0e30\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e44\u0e14\u0e49\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d", + "Instructions": "\u0e04\u0e33\u0e41\u0e19\u0e30\u0e19\u0e33", + "Is Subcontracted": "\u0e40\u0e2b\u0e21\u0e32", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "LR Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 LR", + "LR No": "LR \u0e44\u0e21\u0e48\u0e21\u0e35", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Net Total": "\u0e2a\u0e38\u0e17\u0e18\u0e34", + "Net Total (Import)": "\u0e23\u0e27\u0e21\u0e2a\u0e38\u0e17\u0e18\u0e34 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "No": "\u0e44\u0e21\u0e48", + "Other Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2d\u0e37\u0e48\u0e19 \u0e46", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Posting Time": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e40\u0e27\u0e25\u0e32", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Price List Currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32", + "Price List Exchange Rate": "\u0e23\u0e32\u0e04\u0e32\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e41\u0e25\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d", + "Pull Purchase Order Details": "\u0e14\u0e36\u0e07\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Order": "\u0e43\u0e1a\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Purchase Receipt Item Supplieds": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19 Supplieds", + "Purchase Receipt Items": "\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Purchase Taxes and Charges": "\u0e20\u0e32\u0e29\u0e35\u0e0b\u0e37\u0e49\u0e2d\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Range": "\u0e40\u0e17\u0e37\u0e2d\u0e01\u0e40\u0e02\u0e32", + "Rate at which supplier's currency is converted to company's base currency": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e17\u0e35\u0e48\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e1b\u0e25\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Raw Material Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a", + "Re-Calculate Values": "\u0e04\u0e48\u0e32\u0e04\u0e33\u0e19\u0e27\u0e13\u0e43\u0e2b\u0e21\u0e48", + "Rejected Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Rounded Total": "\u0e23\u0e27\u0e21\u0e01\u0e25\u0e21", + "Select \"Yes\" for sub - contracting items": "\u0e40\u0e25\u0e37\u0e2d\u0e01 "Yes" \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a sub - \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e17\u0e33\u0e2a\u0e31\u0e0d\u0e0d\u0e32", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Select the relevant company name if you have multiple companies": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Series": "\u0e0a\u0e38\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Submitted": "Submitted", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier warehouse where you have issued raw materials for sub - contracting": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e44\u0e14\u0e49\u0e2d\u0e2d\u0e01\u0e27\u0e31\u0e15\u0e16\u200b\u200b\u0e38\u0e14\u0e34\u0e1a\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a sub - \u0e2a\u0e31\u0e0d\u0e0d\u0e32", + "Supplier's currency": "\u0e2a\u0e01\u0e38\u0e25\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e0b\u0e31\u0e1e\u0e1e\u0e25\u0e32\u0e22\u0e40\u0e2d\u0e2d\u0e23\u0e4c", + "Tax Calculation": "\u0e01\u0e32\u0e23\u0e04\u0e33\u0e19\u0e27\u0e13\u0e20\u0e32\u0e29\u0e35", + "Taxes": "\u0e20\u0e32\u0e29\u0e35", + "Taxes and Charges Added": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21", + "Taxes and Charges Added (Import)": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Taxes and Charges Deducted": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01", + "Taxes and Charges Deducted (Import)": "\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e2b\u0e31\u0e01 (\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32)", + "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", + "Terms and Conditions HTML": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02 HTML", + "Terms and Conditions1": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30 Conditions1", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "Time at which materials were received": "\u0e40\u0e27\u0e25\u0e32\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e27\u0e31\u0e2a\u0e14\u0e38", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Total Tax": "\u0e20\u0e32\u0e29\u0e35\u0e23\u0e27\u0e21", + "Totals": "\u0e1c\u0e25\u0e23\u0e27\u0e21", + "Transporter Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e02\u0e19\u0e22\u0e49\u0e32\u0e22", + "Transporter Name": "\u0e0a\u0e37\u0e48\u0e2d Transporter", + "Transporter lorry number": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e23\u0e16\u0e1a\u0e23\u0e23\u0e17\u0e38\u0e01\u0e02\u0e19\u0e22\u0e49\u0e32\u0e22", + "Warehouse where you are maintaining stock of rejected items": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e08\u0e30\u0e23\u0e31\u0e01\u0e29\u0e32\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Yes": "\u0e43\u0e0a\u0e48", + "You can make a purchase receipt from multiple purchase orders. Select purchase orders one by one and click on the button below.": "\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e32\u0e01\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2b\u0e25\u0e32\u0e22 \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e42\u0e14\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e1b\u0e38\u0e48\u0e21\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07" +} \ No newline at end of file diff --git a/stock/doctype/purchase_receipt_item/locale/th-doc.json b/stock/doctype/purchase_receipt_item/locale/th-doc.json new file mode 100644 index 0000000000..372722c17e --- /dev/null +++ b/stock/doctype/purchase_receipt_item/locale/th-doc.json @@ -0,0 +1,42 @@ +{ + "Accepted Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a", + "Accepted Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e22\u0e2d\u0e21\u0e23\u0e31\u0e1a", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Amount*": "* \u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19", + "Batch No": "\u0e0a\u0e38\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35", + "Billed Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e40\u0e07\u0e34\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Conversion Factor": "\u0e1b\u0e31\u0e08\u0e08\u0e31\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Discount %": "\u0e2a\u0e48\u0e27\u0e19\u0e25\u0e14%", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e20\u0e32\u0e29\u0e35\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item Tax Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e20\u0e32\u0e29\u0e35\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "PO Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 PO", + "PO No": "\u0e44\u0e21\u0e48\u0e21\u0e35 PO", + "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Prevdoc Doctype": "Doctype Prevdoc", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Purchase Order Item No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Purchase Receipt Item": "\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "QA No": "QA \u0e44\u0e21\u0e48\u0e21\u0e35", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32", + "Raw Materials Supplied Cost": "\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a\u0e17\u0e35\u0e48\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22", + "Recd Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19 Recd", + "Ref Rate ": "\u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Ref Rate*": "* \u0e2d\u0e31\u0e15\u0e23\u0e32 Ref", + "Rejected Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Rejected Serial No": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Rejected Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1b\u0e0f\u0e34\u0e40\u0e2a\u0e18", + "Required By": "\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e42\u0e14\u0e22", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2b\u0e38\u0e49\u0e19", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e20\u0e32\u0e29\u0e35\u0e17\u0e35\u0e48\u0e40\u0e23\u0e35\u0e22\u0e01\u0e08\u0e32\u0e01\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e15\u0e23\u0e34\u0e07\u0e41\u0e25\u0e30\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e43\u0e19 field.Used \u0e19\u0e35\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e20\u0e32\u0e29\u0e35\u0e41\u0e25\u0e30\u0e04\u0e48\u0e32\u0e18\u0e23\u0e23\u0e21\u0e40\u0e19\u0e35\u0e22\u0e21", + "UOM": "UOM", + "Valuation Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19" +} \ No newline at end of file diff --git a/stock/doctype/sales_and_purchase_return_tool/locale/th-doc.json b/stock/doctype/sales_and_purchase_return_tool/locale/th-doc.json new file mode 100644 index 0000000000..732dfd75ca --- /dev/null +++ b/stock/doctype/sales_and_purchase_return_tool/locale/th-doc.json @@ -0,0 +1,21 @@ +{ + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Cust/Supp Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48 cust / Supp", + "Cust/Supp Name": "\u0e0a\u0e37\u0e48\u0e2d cust / Supp", + "Customer/Supplier": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32 / \u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Delivery Note No": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Make Credit Note": "\u0e43\u0e2b\u0e49\u0e08\u0e14\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Make Debit Note": "\u0e43\u0e2b\u0e49\u0e08\u0e14\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e40\u0e14\u0e1a\u0e34\u0e15", + "Make Excise Invoice": "\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e2a\u0e23\u0e23\u0e1e\u0e2a\u0e32\u0e21\u0e34\u0e15", + "Make Stock Entry": "\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Purchase Receipt No": "\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e0b\u0e37\u0e49\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Purchase Return": "\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e25\u0e31\u0e1a", + "Return Date": "\u0e01\u0e25\u0e31\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Return Type": "\u0e01\u0e25\u0e31\u0e1a\u0e0a\u0e19\u0e34\u0e14", + "Sales Invoice No": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e21\u0e35", + "Sales Return": "\u0e02\u0e32\u0e22\u0e01\u0e25\u0e31\u0e1a", + "Sales and Purchase Return Items": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a", + "Sales and Purchase Return Tool": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/sales_bom/locale/th-doc.json b/stock/doctype/sales_bom/locale/th-doc.json new file mode 100644 index 0000000000..5982b0d115 --- /dev/null +++ b/stock/doctype/sales_bom/locale/th-doc.json @@ -0,0 +1,11 @@ +{ + "Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. The package **Item** will have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\".For Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.Note: BOM = Bill of Materials": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b\u0e2d\u0e35\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e19\u0e35\u0e49\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e0a\u0e19\u0e4c\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07 bundling \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e1a\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e41\u0e25\u0e30\u0e04\u0e38\u0e13\u0e23\u0e31\u0e01\u0e29\u0e32\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e41\u0e25\u0e30\u0e44\u0e21\u0e48\u0e23\u0e27\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 ** ** \u0e08\u0e30\u0e21\u0e35 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" \u0e02\u0e13\u0e30\u0e17\u0e35\u0e48 "\u0e44\u0e21\u0e48\u0e21\u0e35" \u0e41\u0e25\u0e30 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22" \u0e40\u0e1b\u0e47\u0e19 "\u0e43\u0e0a\u0e48" \u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07:. \u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e02\u0e32\u0e22\u0e41\u0e25\u0e47\u0e1b\u0e17\u0e47\u0e2d\u0e1b\u0e41\u0e25\u0e30\u0e40\u0e1b\u0e49\u0e2a\u0e30\u0e1e\u0e32\u0e22\u0e2b\u0e25\u0e31\u0e07\u0e41\u0e22\u0e01\u0e41\u0e25\u0e30\u0e21\u0e35\u0e23\u0e32\u0e04\u0e32\u0e1e\u0e34\u0e40\u0e28\u0e29\u0e2b\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e31\u0e49\u0e07 \u0e41\u0e25\u0e49\u0e27\u0e41\u0e25\u0e47\u0e1b\u0e17\u0e47\u0e2d\u0e1b\u0e01\u0e23\u0e30\u0e40\u0e1b\u0e4b\u0e32\u0e40\u0e1b\u0e49\u0e2a\u0e30\u0e1e\u0e32\u0e22\u0e2b\u0e25\u0e31\u0e07 + \u0e08\u0e30\u0e02\u0e32\u0e22\u0e43\u0e2b\u0e21\u0e48 BOM Item.Note: BOM \u0e1a\u0e34\u0e25\u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38 =", + "List items that form the package.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08", + "Package Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08", + "Parent Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2b\u0e25\u0e31\u0e01", + "Sales BOM": "BOM \u0e02\u0e32\u0e22", + "Sales BOM Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM \u0e02\u0e32\u0e22", + "Sales BOM Items": "\u0e02\u0e32\u0e22\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 BOM", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "The Item that represents the Package. This Item must have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\"": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e41\u0e2a\u0e14\u0e07\u0e16\u0e36\u0e07\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08 \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" \u0e02\u0e13\u0e30\u0e17\u0e35\u0e48 "\u0e44\u0e21\u0e48\u0e21\u0e35" \u0e41\u0e25\u0e30 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22" \u0e40\u0e1b\u0e47\u0e19 "\u0e43\u0e0a\u0e48"" +} \ No newline at end of file diff --git a/stock/doctype/sales_bom_item/locale/th-doc.json b/stock/doctype/sales_bom_item/locale/th-doc.json new file mode 100644 index 0000000000..148844f543 --- /dev/null +++ b/stock/doctype/sales_bom_item/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Sales BOM Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM \u0e02\u0e32\u0e22", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "UOM": "UOM" +} \ No newline at end of file diff --git a/stock/doctype/serial_no/locale/th-doc.json b/stock/doctype/serial_no/locale/th-doc.json new file mode 100644 index 0000000000..732486e23f --- /dev/null +++ b/stock/doctype/serial_no/locale/th-doc.json @@ -0,0 +1,59 @@ +{ + "AMC Expiry Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38 AMC", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Delivered": "\u0e2a\u0e48\u0e07", + "Delivery Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Delivery Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07", + "Delivery Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Delivery Document No": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35", + "Delivery Document Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Delivery Time": "\u0e40\u0e27\u0e25\u0e32\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Distinct unit of an Item": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e17\u0e35\u0e48\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "In Store": "\u0e43\u0e19\u0e23\u0e49\u0e32\u0e19\u0e04\u0e49\u0e32", + "Incoming Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e40\u0e02\u0e49\u0e32", + "Incoming Time": "\u0e40\u0e27\u0e25\u0e32\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32", + "Is Cancelled": "\u0e40\u0e1b\u0e47\u0e19\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Maintenance Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "No": "\u0e44\u0e21\u0e48", + "Not in Use": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Out of AMC": "\u0e2d\u0e2d\u0e01\u0e02\u0e2d\u0e07 AMC", + "Out of Warranty": "\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19", + "Purchase Date": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Purchase Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Purchase Document No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Purchase Document Type": "\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Purchase Returned": "\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e25\u0e31\u0e1a", + "SLE Exists": "SLE \u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48", + "Sales Invoice": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Serial No Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Under AMC": "\u0e20\u0e32\u0e22\u0e43\u0e15\u0e49 AMC", + "Under Warranty": "\u0e20\u0e32\u0e22\u0e43\u0e15\u0e49\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warranty / AMC Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19 / AMC", + "Warranty Expiry Date": "\u0e27\u0e31\u0e19\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19", + "Warranty Period (Days)": "\u0e23\u0e30\u0e22\u0e30\u0e40\u0e27\u0e25\u0e32\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19 (\u0e27\u0e31\u0e19)", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry/locale/th-doc.json b/stock/doctype/stock_entry/locale/th-doc.json new file mode 100644 index 0000000000..d8aa233d91 --- /dev/null +++ b/stock/doctype/stock_entry/locale/th-doc.json @@ -0,0 +1,48 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "As per Stock UOM": "\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e48\u0e2d\u0e2a\u0e15\u0e47\u0e2d\u0e01 UOM", + "BOM No": "BOM \u0e44\u0e21\u0e48\u0e21\u0e35", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Default Source Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default Target Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Delivery Note No": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Get Stock and Rate": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e25\u0e30\u0e2d\u0e31\u0e15\u0e23\u0e32", + "Get valuation rate and available stock at source/target warehouse on mentioned posting date-time. If serialized item, please press this button after entering serial nos.": "\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e41\u0e25\u0e30\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32 / \u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e14\u0e31\u0e07\u0e01\u0e25\u0e48\u0e32\u0e27\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e27\u0e25\u0e32 \u0e16\u0e49\u0e32\u0e15\u0e48\u0e2d\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e42\u0e1b\u0e23\u0e14\u0e01\u0e14\u0e1b\u0e38\u0e48\u0e21\u0e19\u0e35\u0e49\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32 Nos \u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "\u0e2b\u0e32\u0e01\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e48\u0e2d\u0e22\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1e\u0e34\u0e08\u0e32\u0e23\u0e13\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a \u0e21\u0e34\u0e09\u0e30\u0e19\u0e31\u0e49\u0e19\u0e17\u0e38\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e48\u0e2d\u0e22\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1b\u0e0f\u0e34\u0e1a\u0e31\u0e15\u0e34\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e31\u0e15\u0e16\u0e38\u0e14\u0e34\u0e1a", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "MTN Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 MTN", + "Manufacture/Repack": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15 / Repack", + "Manufacturing Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Material Issue": "\u0e09\u0e1a\u0e31\u0e1a\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Material Receipt": "\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Material Transfer": "\u0e42\u0e2d\u0e19\u0e27\u0e31\u0e2a\u0e14\u0e38", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Posting Time": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e40\u0e27\u0e25\u0e32", + "Production Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Project Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", + "Purchase Receipt No": "\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e0b\u0e37\u0e49\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Purchase Return": "\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e25\u0e31\u0e1a", + "Purpose": "\u0e04\u0e27\u0e32\u0e21\u0e21\u0e38\u0e48\u0e07\u0e2b\u0e21\u0e32\u0e22", + "Reference": "\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "STE": "STE", + "Sales Invoice No": "\u0e02\u0e32\u0e22\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e21\u0e35", + "Sales Return": "\u0e02\u0e32\u0e22\u0e01\u0e25\u0e31\u0e1a", + "Select Print Heading": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Series": "\u0e0a\u0e38\u0e14", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Subcontract": "\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e23\u0e31\u0e1a\u0e0a\u0e48\u0e27\u0e07", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1c\u0e39\u0e49\u0e1c\u0e25\u0e34\u0e15", + "Supplier Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", + "Use Multi-Level BOM": "\u0e43\u0e0a\u0e49 BOM \u0e2b\u0e25\u0e32\u0e22\u0e23\u0e30\u0e14\u0e31\u0e1a" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry/locale/th-py.json b/stock/doctype/stock_entry/locale/th-py.json new file mode 100644 index 0000000000..cec9677444 --- /dev/null +++ b/stock/doctype/stock_entry/locale/th-py.json @@ -0,0 +1,24 @@ +{ + " is mandatory": "\u0e21\u0e35\u0e1c\u0e25\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e43\u0e0a\u0e49", + " or the BOM is cancelled or inactive": "\u0e2b\u0e23\u0e37\u0e2d BOM \u0e16\u0e39\u0e01\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + " should be same as that in ": "\u0e04\u0e27\u0e23\u0e08\u0e30\u0e40\u0e0a\u0e48\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e43\u0e19", + "' does not exists in ": "'\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19", + "All items have already been transferred \\\t\t\t\tfor this Production Order.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e19\u0e41\u0e25\u0e49\u0e27 \\ \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e19\u0e35\u0e49", + "Atleast one warehouse is mandatory": "\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e21\u0e35\u0e1c\u0e25\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e43\u0e0a\u0e49", + "For Item ": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Hence, maximum allowed Manufacturing Quantity": "\u0e14\u0e31\u0e07\u0e19\u0e31\u0e49\u0e19\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15\u0e2a\u0e39\u0e07\u0e2a\u0e38\u0e14\u0e17\u0e35\u0e48\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item: '": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23: '", + "Manufacturing Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Production Order": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Purpose must be one of ": "\u0e27\u0e31\u0e15\u0e16\u0e38\u0e1b\u0e23\u0e30\u0e2a\u0e07\u0e04\u0e4c\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e43\u0e19", + "Quantity already manufactured": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e1c\u0e25\u0e34\u0e15\u0e41\u0e25\u0e49\u0e27", + "Quantity should be equal to Manufacturing Quantity. ": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e04\u0e27\u0e23\u0e08\u0e30\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e1a\u0e08\u0e33\u0e19\u0e27\u0e19\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", + "Row #": "\u0e41\u0e16\u0e27 #", + "Row # ": "\u0e41\u0e16\u0e27 #", + "Source Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e32", + "Source and Target Warehouse cannot be same": "\u0e41\u0e2b\u0e25\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e32\u0e41\u0e25\u0e30\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e19", + "Target Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "To fetch items again, click on 'Get Items' button \\\t\t\t\t\t\tor update the Quantity manually.": "\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e23\u0e35\u0e22\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07\u0e43\u0e2b\u0e49\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48 '\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32' \\ \u0e1b\u0e38\u0e48\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e08\u0e33\u0e19\u0e27\u0e19\u0e15\u0e19\u0e40\u0e2d\u0e07", + "does not belong to BOM: ": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19 BOM:" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry_detail/locale/_messages_doc.json b/stock/doctype/stock_entry_detail/locale/_messages_doc.json index cbfd425be0..f509d23bcf 100644 --- a/stock/doctype/stock_entry_detail/locale/_messages_doc.json +++ b/stock/doctype/stock_entry_detail/locale/_messages_doc.json @@ -4,13 +4,16 @@ "Qty as per Stock UOM", "Stock UOM", "Conversion Factor", + "Material Request used to make this Stock Entry", "BOM No. for a Finished Good Item", + "Material Request", "Amount", "Source Warehouse", "Qty", "Serial No", "BOM No", "Target Warehouse", + "Material Request Item", "Batch No", "Stock", "Actual Qty (at source/target)", diff --git a/stock/doctype/stock_entry_detail/locale/th-doc.json b/stock/doctype/stock_entry_detail/locale/th-doc.json new file mode 100644 index 0000000000..43e780457e --- /dev/null +++ b/stock/doctype/stock_entry_detail/locale/th-doc.json @@ -0,0 +1,23 @@ +{ + "Actual Qty (at source/target)": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07 (\u0e17\u0e35\u0e48\u0e21\u0e32 / \u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22)", + "Amount": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "BOM No": "BOM \u0e44\u0e21\u0e48\u0e21\u0e35", + "BOM No. for a Finished Good Item": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02 BOM \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e14\u0e35\u0e2a\u0e33\u0e40\u0e23\u0e47\u0e08\u0e23\u0e39\u0e1b", + "Batch No": "\u0e0a\u0e38\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35", + "Conversion Factor": "\u0e1b\u0e31\u0e08\u0e08\u0e31\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Material Request": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Material Request Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e02\u0e2d", + "Material Request used to make this Stock Entry": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e19\u0e35\u0e49", + "Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19", + "Qty as per Stock UOM": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e15\u0e32\u0e21\u0e2a\u0e15\u0e47\u0e2d\u0e01 UOM", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Source Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e32", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Entry Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e23\u0e32\u0e22\u200b\u200b\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Target Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e1b\u0e49\u0e32\u0e2b\u0e21\u0e32\u0e22", + "UOM": "UOM", + "Valuation Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger/locale/th-doc.json b/stock/doctype/stock_ledger/locale/th-doc.json new file mode 100644 index 0000000000..4939b69380 --- /dev/null +++ b/stock/doctype/stock_ledger/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger_entry/locale/th-doc.json b/stock/doctype/stock_ledger_entry/locale/th-doc.json new file mode 100644 index 0000000000..d3a779bd75 --- /dev/null +++ b/stock/doctype/stock_ledger_entry/locale/th-doc.json @@ -0,0 +1,27 @@ +{ + "Actual Qty After Transaction": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07\u0e2b\u0e25\u0e31\u0e07\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Actual Quantity": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07", + "Batch No": "\u0e0a\u0e38\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Incoming Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e40\u0e02\u0e49\u0e32", + "Is Cancelled": "\u0e40\u0e1b\u0e47\u0e19\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "No": "\u0e44\u0e21\u0e48", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Posting Time": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e40\u0e27\u0e25\u0e32", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Ledger Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17", + "Stock Queue (FIFO)": "\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e04\u0e34\u0e27 (FIFO)", + "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock Value": "\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e2b\u0e38\u0e49\u0e19", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "Valuation Rate": "\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19", + "Voucher Detail No": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e44\u0e21\u0e48\u0e21\u0e35", + "Voucher No": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e44\u0e21\u0e48\u0e21\u0e35", + "Voucher Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Yes": "\u0e43\u0e0a\u0e48" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger_entry/locale/th-py.json b/stock/doctype/stock_ledger_entry/locale/th-py.json new file mode 100644 index 0000000000..a706afb0bd --- /dev/null +++ b/stock/doctype/stock_ledger_entry/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "User not allowed entry in the Warehouse": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e19\u0e42\u0e01\u0e14\u0e31\u0e07" +} \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/locale/th-doc.json b/stock/doctype/stock_reconciliation/locale/th-doc.json new file mode 100644 index 0000000000..4855d9aef8 --- /dev/null +++ b/stock/doctype/stock_reconciliation/locale/th-doc.json @@ -0,0 +1,12 @@ +{ + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Posting Time": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e40\u0e27\u0e25\u0e32", + "Reconciliation Data": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a", + "Reconciliation HTML": "HTML \u0e2a\u0e21\u0e32\u0e19\u0e09\u0e31\u0e19\u0e17\u0e4c", + "Reconciliation JSON": "JSON \u0e2a\u0e21\u0e32\u0e19\u0e09\u0e31\u0e19\u0e17\u0e4c", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Reconciliation": "\u0e2a\u0e21\u0e32\u0e19\u0e09\u0e31\u0e19\u0e17\u0e4c\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "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.": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e19\u0e35\u0e49\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e41\u0e25\u0e30\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e02\u0e2d\u0e07\u0e2b\u0e38\u0e49\u0e19\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a \u0e21\u0e31\u0e19\u0e21\u0e31\u0e01\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e2a\u0e32\u0e19\u0e04\u0e48\u0e32\u0e23\u0e30\u0e1a\u0e1a\u0e41\u0e25\u0e30\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e23\u0e34\u0e07\u0e43\u0e19\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Upload HTML": "\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14 HTML" +} \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/locale/th-py.json b/stock/doctype/stock_reconciliation/locale/th-py.json new file mode 100644 index 0000000000..5f029318c6 --- /dev/null +++ b/stock/doctype/stock_reconciliation/locale/th-py.json @@ -0,0 +1,10 @@ +{ + " is less than equals to zero in the system, \\\t\t\t\t\t\tvaluation rate is mandatory for this item": "\u0e21\u0e35\u0e04\u0e48\u0e32\u0e19\u0e49\u0e2d\u0e22\u0e01\u0e27\u0e48\u0e32\u0e40\u0e17\u0e48\u0e32\u0e01\u0e31\u0e1a\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a\u0e2d\u0e31\u0e15\u0e23\u0e32\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32 \\ \u0e21\u0e35\u0e1c\u0e25\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e43\u0e0a\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "' can not be managed using Stock Reconciliation.\\\t\t\t\t\tYou can add/delete Serial No directly, \\\t\t\t\t\tto modify stock of this item.": "'\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e44\u0e14\u0e49\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e2a\u0e15\u0e47\u0e2d\u0e01. \\ \u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e1e\u0e34\u0e48\u0e21 / \u0e25\u0e1a\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35\u0e42\u0e14\u0e22\u0e15\u0e23\u0e07 \\ \u0e01\u0e32\u0e23\u0e1b\u0e23\u0e31\u0e1a\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e2b\u0e38\u0e49\u0e19\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "As existing qty for item: ": "\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23:", + "Hey! You seem to be using the wrong template. \\\t\t\t\tClick on 'Download Template' button to get the correct template.": "Hey! \u0e04\u0e38\u0e13\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07 \\ \u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e21 '\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a' \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e21\u0e48\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e15\u0e49\u0e2d\u0e07", + "Row # ": "\u0e41\u0e16\u0e27 #", + "Serialized Item: '": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e48\u0e2d\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07: '", + "Sorry! We can only allow upto 100 rows for Stock Reconciliation.": "\u0e02\u0e2d\u0e2d\u0e20\u0e31\u0e22! \u0e40\u0e23\u0e32\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e43\u0e2b\u0e49\u0e44\u0e21\u0e48\u0e40\u0e01\u0e34\u0e19 100 \u0e41\u0e16\u0e27\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e01\u0e23\u0e30\u0e17\u0e1a\u0e22\u0e2d\u0e14\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock Reconciliation file not uploaded": "\u0e44\u0e1f\u0e25\u0e4c\u0e2a\u0e21\u0e32\u0e19\u0e09\u0e31\u0e19\u0e17\u0e4c\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14" +} \ No newline at end of file diff --git a/stock/doctype/stock_uom_replace_utility/locale/th-doc.json b/stock/doctype/stock_uom_replace_utility/locale/th-doc.json new file mode 100644 index 0000000000..aab9179877 --- /dev/null +++ b/stock/doctype/stock_uom_replace_utility/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Conversion Factor": "\u0e1b\u0e31\u0e08\u0e08\u0e31\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07", + "Current Stock UOM": "UOM \u0e15\u0e47\u0e2d\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "New Stock UOM": "\u0e43\u0e2b\u0e21\u0e48 UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock UOM Replace Utility": "\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 UOM", + "Update": "\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17" +} \ No newline at end of file diff --git a/stock/doctype/uom_conversion_detail/locale/th-doc.json b/stock/doctype/uom_conversion_detail/locale/th-doc.json new file mode 100644 index 0000000000..f90b3bceae --- /dev/null +++ b/stock/doctype/uom_conversion_detail/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Conversion Factor": "\u0e1b\u0e31\u0e08\u0e08\u0e31\u0e22\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e41\u0e1b\u0e25\u0e07", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "UOM": "UOM", + "UOM Conversion Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1b\u0e25\u0e07 UOM" +} \ No newline at end of file diff --git a/stock/doctype/valuation_control/locale/th-doc.json b/stock/doctype/valuation_control/locale/th-doc.json new file mode 100644 index 0000000000..ecd479c5bd --- /dev/null +++ b/stock/doctype/valuation_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Valuation Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e40\u0e21\u0e34\u0e19" +} \ No newline at end of file diff --git a/stock/doctype/warehouse/locale/th-doc.json b/stock/doctype/warehouse/locale/th-doc.json new file mode 100644 index 0000000000..111d67df93 --- /dev/null +++ b/stock/doctype/warehouse/locale/th-doc.json @@ -0,0 +1,25 @@ +{ + "A logical Warehouse against which stock entries are made.": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e15\u0e23\u0e23\u0e01\u0e30\u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e08\u0e30\u0e17\u0e33", + "Address Line 1": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e17\u0e35\u0e48 1", + "Address Line 2": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e17\u0e35\u0e48 2", + "City": "\u0e40\u0e21\u0e37\u0e2d\u0e07", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a", + "For Reference Only.": "\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19", + "If set, data entry is only allowed for specified users. Else, entry is allowed for all users with requisite permissions.": "\u0e2b\u0e32\u0e01\u0e15\u0e31\u0e49\u0e07\u0e01\u0e32\u0e23\u0e1b\u0e49\u0e2d\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e38 \u0e2d\u0e37\u0e48\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e17\u0e35\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19", + "Merge": "\u0e1c\u0e2a\u0e32\u0e19", + "Merge Warehouses": "\u0e1c\u0e2a\u0e32\u0e19\u0e42\u0e01\u0e14\u0e31\u0e07", + "Merge With": "\u0e1c\u0e2a\u0e32\u0e19\u0e01\u0e31\u0e1a", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "PIN": "PIN", + "Phone No": "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c\u0e44\u0e21\u0e48\u0e21\u0e35", + "State": "\u0e23\u0e31\u0e10", + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "This feature is for merging duplicate warehouses. It will replace all the links of this warehouse by \"Merge With\" warehouse. After merging you can delete this warehouse, as stock level for this warehouse will be zero.": "\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e19\u0e35\u0e49\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1c\u0e2a\u0e32\u0e19\u0e42\u0e01\u0e14\u0e31\u0e07\u0e17\u0e35\u0e48\u0e0b\u0e49\u0e33\u0e01\u0e31\u0e19 \u0e21\u0e31\u0e19\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e02\u0e2d\u0e07\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e19\u0e35\u0e49\u0e42\u0e14\u0e22 "\u0e1c\u0e2a\u0e32\u0e19\u0e01\u0e31\u0e1a" \u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 \u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e04\u0e27\u0e1a\u0e23\u0e27\u0e21\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e25\u0e1a\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e43\u0e19\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e19\u0e35\u0e49\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e28\u0e39\u0e19\u0e22\u0e4c", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Users": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/doctype/warehouse_user/locale/th-doc.json b/stock/doctype/warehouse_user/locale/th-doc.json new file mode 100644 index 0000000000..e119d6f493 --- /dev/null +++ b/stock/doctype/warehouse_user/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Stock": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "User": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", + "Warehouse User": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/stock/locale/th-py.json b/stock/locale/th-py.json new file mode 100644 index 0000000000..5f31a59373 --- /dev/null +++ b/stock/locale/th-py.json @@ -0,0 +1,7 @@ +{ + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Please check": "\u0e01\u0e23\u0e38\u0e13\u0e32\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a", + "is a cancelled Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e1b\u0e47\u0e19", + "is not a Stock Item": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "reached its end of life on": "\u0e16\u0e36\u0e07\u0e08\u0e38\u0e14\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14\u0e02\u0e2d\u0e07\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e40\u0e21\u0e37\u0e48\u0e2d" +} \ No newline at end of file diff --git a/stock/module_def/stock/locale/th-doc.json b/stock/module_def/stock/locale/th-doc.json new file mode 100644 index 0000000000..ba67e434b9 --- /dev/null +++ b/stock/module_def/stock/locale/th-doc.json @@ -0,0 +1,23 @@ +{ + "A Product or a Service that is bought, sold or kept in stock.": "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49\u0e43\u0e19\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "A logical Warehouse against which stock entries are made.": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e15\u0e23\u0e23\u0e01\u0e30\u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e08\u0e30\u0e17\u0e33", + "Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. The package **Item** will have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\".For Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.Note: BOM = Bill of Materials": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b\u0e2d\u0e35\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e19\u0e35\u0e49\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e0a\u0e19\u0e4c\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07 bundling \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e1a\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e41\u0e25\u0e30\u0e04\u0e38\u0e13\u0e23\u0e31\u0e01\u0e29\u0e32\u0e2a\u0e15\u0e47\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e41\u0e25\u0e30\u0e44\u0e21\u0e48\u0e23\u0e27\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 ** ** \u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 ** ** \u0e08\u0e30\u0e21\u0e35 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" \u0e02\u0e13\u0e30\u0e17\u0e35\u0e48 "\u0e44\u0e21\u0e48\u0e21\u0e35" \u0e41\u0e25\u0e30 "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22" \u0e40\u0e1b\u0e47\u0e19 "\u0e43\u0e0a\u0e48" \u0e15\u0e31\u0e27\u0e2d\u0e22\u0e48\u0e32\u0e07:. \u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e01\u0e33\u0e25\u0e31\u0e07\u0e02\u0e32\u0e22\u0e41\u0e25\u0e47\u0e1b\u0e17\u0e47\u0e2d\u0e1b\u0e41\u0e25\u0e30\u0e40\u0e1b\u0e49\u0e2a\u0e30\u0e1e\u0e32\u0e22\u0e2b\u0e25\u0e31\u0e07\u0e41\u0e22\u0e01\u0e41\u0e25\u0e30\u0e21\u0e35\u0e23\u0e32\u0e04\u0e32\u0e1e\u0e34\u0e40\u0e28\u0e29\u0e2b\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e31\u0e49\u0e07 \u0e41\u0e25\u0e49\u0e27\u0e41\u0e25\u0e47\u0e1b\u0e17\u0e47\u0e2d\u0e1b\u0e01\u0e23\u0e30\u0e40\u0e1b\u0e4b\u0e32\u0e40\u0e1b\u0e49\u0e2a\u0e30\u0e1e\u0e32\u0e22\u0e2b\u0e25\u0e31\u0e07 + \u0e08\u0e30\u0e02\u0e32\u0e22\u0e43\u0e2b\u0e21\u0e48 BOM Item.Note: BOM \u0e1a\u0e34\u0e25\u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38 =", + "Distinct unit of an Item": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e17\u0e35\u0e48\u0e41\u0e15\u0e01\u0e15\u0e48\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Featured Item in Item Group": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e42\u0e14\u0e14\u0e40\u0e14\u0e48\u0e19\u0e43\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e30\u0e14\u0e27\u0e01\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e23\u0e2b\u0e31\u0e2a\u0e40\u0e2b\u0e25\u0e48\u0e32\u0e19\u0e35\u0e49\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e40\u0e0a\u0e48\u0e19\u0e43\u0e1a\u0e41\u0e08\u0e49\u0e07\u0e2b\u0e19\u0e35\u0e49\u0e41\u0e25\u0e30\u0e19\u0e33\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e48\u0e07\u0e21\u0e2d\u0e1a \u0e43\u0e0a\u0e49\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e08\u0e49\u0e07\u0e08\u0e33\u0e19\u0e27\u0e19\u0e41\u0e1e\u0e47\u0e01\u0e40\u0e01\u0e08\u0e17\u0e35\u0e48\u0e1a\u0e23\u0e23\u0e08\u0e38\u0e41\u0e25\u0e30\u0e19\u0e49\u0e33\u0e2b\u0e19\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e21\u0e31\u0e19", + "Item-Wise Price List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e09\u0e25\u0e32\u0e14", + "Ordered Items To Be Delivered": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07", + "Purchase Order Items To Be Received": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a", + "Serial No Service Contract Expiry": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Serial No Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Serial No Warranty Expiry": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19", + "Stock Ageing": "\u0e40\u0e2d\u0e08\u0e08\u0e34\u0e49\u0e07\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock Analytics": "\u0e2a\u0e15\u0e47\u0e2d\u0e01 Analytics", + "Stock Balance": "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock Home": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Level": "\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Table for Item that will be shown in Web Site": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "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.": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e19\u0e35\u0e49\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e41\u0e01\u0e49\u0e44\u0e02\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13\u0e41\u0e25\u0e30\u0e21\u0e39\u0e25\u0e04\u0e48\u0e32\u0e02\u0e2d\u0e07\u0e2b\u0e38\u0e49\u0e19\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a \u0e21\u0e31\u0e19\u0e21\u0e31\u0e01\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e01\u0e32\u0e23\u0e1b\u0e23\u0e30\u0e2a\u0e32\u0e19\u0e04\u0e48\u0e32\u0e23\u0e30\u0e1a\u0e1a\u0e41\u0e25\u0e30\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e23\u0e34\u0e07\u0e43\u0e19\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13" +} \ No newline at end of file diff --git a/stock/page/stock_home/locale/_messages_js.json b/stock/page/stock_home/locale/_messages_js.json index 6e6315cea3..2fcd7b1c90 100644 --- a/stock/page/stock_home/locale/_messages_js.json +++ b/stock/page/stock_home/locale/_messages_js.json @@ -1,8 +1,10 @@ [ + "Request Material for Transfer or Purchase.", "Documents", "Stock Analytics", "UOM Replace Utility", "Purchase Order Items To Be Received", + "Material Request", "Incoming quality inspection.", "Serial No Service Contract Expiry", "Main Reports", diff --git a/stock/page/stock_home/locale/th-js.json b/stock/page/stock_home/locale/th-js.json new file mode 100644 index 0000000000..c04150a895 --- /dev/null +++ b/stock/page/stock_home/locale/th-js.json @@ -0,0 +1,60 @@ +{ + "All Products or Services.": "\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e2b\u0e23\u0e37\u0e2d\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Analytics": "Analytics", + "Batch": "\u0e0a\u0e38\u0e14", + "Batch (lot) of an Item.": "\u0e41\u0e1a\u0e17\u0e0a\u0e4c (\u0e21\u0e32\u0e01) \u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Brand master.": "\u0e15\u0e49\u0e19\u0e41\u0e1a\u0e1a\u0e41\u0e1a\u0e23\u0e19\u0e14\u0e4c", + "Change UOM for an Item.": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19 UOM \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Delivery (shipment) to customers.": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07 (\u0e02\u0e19\u0e2a\u0e48\u0e07) \u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Delivery Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Distribute transport overhead across items.": "\u0e41\u0e08\u0e01\u0e08\u0e48\u0e32\u0e22\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e19\u0e2a\u0e48\u0e07\u0e02\u0e49\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Documents": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Goods received from Suppliers.": "\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e08\u0e32\u0e01\u0e1c\u0e39\u0e49\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Incoming quality inspection.": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32", + "Installation Note": "\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Installation record for a Serial No.": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item classification.": "\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item-Wise Price List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e32\u0e04\u0e32\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e09\u0e25\u0e32\u0e14", + "Landed Cost Wizard": "\u0e15\u0e31\u0e27\u0e0a\u0e48\u0e27\u0e22\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19\u0e17\u0e35\u0e48\u0e14\u0e34\u0e19", + "Main Reports": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e2b\u0e25\u0e31\u0e01", + "Manage sales or purchase returns": "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22\u0e2b\u0e23\u0e37\u0e2d\u0e1c\u0e25\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", + "Masters": "\u0e42\u0e17", + "Material Request": "\u0e02\u0e2d\u0e27\u0e31\u0e2a\u0e14\u0e38", + "Multiple Item Prices": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2b\u0e25\u0e32\u0e22", + "Ordered Items To Be Delivered": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e16\u0e39\u0e01\u0e2a\u0e48\u0e07", + "Packing Slip": "\u0e2a\u0e25\u0e34\u0e1b", + "Price List": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e08\u0e49\u0e07\u0e23\u0e32\u0e04\u0e32\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Purchase Order Items To Be Received": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a", + "Purchase Receipt": "\u0e0b\u0e37\u0e49\u0e2d\u0e43\u0e1a\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e23\u0e31\u0e1a\u0e40\u0e07\u0e34\u0e19", + "Quality Inspection": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e20\u0e32\u0e1e", + "Reports": "\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19", + "Request Material for Transfer or Purchase.": "\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e19\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e0b\u0e37\u0e49\u0e2d\u0e2b\u0e23\u0e37\u0e2d", + "Sales and Purchase Return Tool": "\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Serial No Service Contract Expiry": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Serial No Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Serial No Warranty Expiry": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Single unit of an Item.": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e40\u0e14\u0e35\u0e22\u0e27\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Split Delivery Note into packages.": "\u0e41\u0e22\u0e01\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e2b\u0e15\u0e38\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b\u0e43\u0e19\u0e41\u0e1e\u0e04\u0e40\u0e01\u0e08", + "Stock Ageing": "\u0e40\u0e2d\u0e08\u0e08\u0e34\u0e49\u0e07\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock Analytics": "\u0e2a\u0e15\u0e47\u0e2d\u0e01 Analytics", + "Stock Balance": "\u0e22\u0e2d\u0e14\u0e04\u0e07\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock Entry": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Ledger": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e41\u0e22\u0e01\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Stock Level": "\u0e23\u0e30\u0e14\u0e31\u0e1a\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Stock Reconciliation": "\u0e2a\u0e21\u0e32\u0e19\u0e09\u0e31\u0e19\u0e17\u0e4c\u0e2a\u0e15\u0e47\u0e2d\u0e01", + "Tools": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", + "Transfer stock from one warehouse to another.": "\u0e42\u0e2d\u0e19\u0e2b\u0e38\u0e49\u0e19\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e2d\u0e35\u0e01\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Types of warehouse": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e02\u0e2d\u0e07\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "UOM Replace Utility": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 UOM", + "Unit of Measure": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e27\u0e31\u0e14", + "Upload stock balance via csv.": "\u0e2d\u0e31\u0e1e\u0e42\u0e2b\u0e25\u0e14\u0e2a\u0e21\u0e14\u0e38\u0e25\u0e2b\u0e38\u0e49\u0e19\u0e1c\u0e48\u0e32\u0e19 CSV", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Warehouse Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Where items are stored.": "\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e08\u0e30\u0e16\u0e39\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e44\u0e27\u0e49", + "e.g. Kg, Unit, Nos, m": "\u0e01\u0e34\u0e42\u0e25\u0e01\u0e23\u0e31\u0e21\u0e40\u0e0a\u0e48\u0e19\u0e2b\u0e19\u0e48\u0e27\u0e22 Nos, \u0e21." +} \ No newline at end of file diff --git a/support/doctype/customer_issue/locale/th-doc.json b/support/doctype/customer_issue/locale/th-doc.json new file mode 100644 index 0000000000..5ce041df3a --- /dev/null +++ b/support/doctype/customer_issue/locale/th-doc.json @@ -0,0 +1,50 @@ +{ + "AMC Expiry Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38 AMC", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "CI/2010-2011/": "CI/2010-2011 /", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Closed": "\u0e1b\u0e34\u0e14", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Issue": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "From Company": "\u0e08\u0e32\u0e01 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Issue": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32", + "Issue Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e2d\u0e01", + "Issue Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e1b\u0e31\u0e0d\u0e2b\u0e32", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Item, Warranty, AMC (Annual Maintenance Contract) details will be automatically fetched when Serial Number is selected.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19, AMC \u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 (\u0e1b\u0e35 Maintenance Contract) \u0e08\u0e30\u0e44\u0e14\u0e49\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e35\u0e22\u0e01\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Out of AMC": "\u0e2d\u0e2d\u0e01\u0e02\u0e2d\u0e07 AMC", + "Out of Warranty": "\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19", + "Raised By": "\u0e42\u0e14\u0e22\u0e22\u0e01", + "Resolution": "\u0e04\u0e27\u0e32\u0e21\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Resolution Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e04\u0e27\u0e32\u0e21\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Resolution Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e27\u0e32\u0e21\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Resolved By": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e44\u0e14\u0e49\u0e42\u0e14\u0e22\u0e01\u0e32\u0e23", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Service Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "To assign this issue, use the \"Assign\" button in the sidebar.": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e19\u0e35\u0e49\u0e43\u0e2b\u0e49\u0e43\u0e0a\u0e49\u0e1b\u0e38\u0e48\u0e21 "\u0e01\u0e33\u0e2b\u0e19\u0e14" \u0e43\u0e19\u0e41\u0e16\u0e1a\u0e14\u0e49\u0e32\u0e19\u0e02\u0e49\u0e32\u0e07", + "Under AMC": "\u0e20\u0e32\u0e22\u0e43\u0e15\u0e49 AMC", + "Under Warranty": "\u0e20\u0e32\u0e22\u0e43\u0e15\u0e49\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19", + "Warranty / AMC Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19 / AMC", + "Warranty Expiry Date": "\u0e27\u0e31\u0e19\u0e2b\u0e21\u0e14\u0e2d\u0e32\u0e22\u0e38\u0e01\u0e32\u0e23\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19", + "Work In Progress": "\u0e17\u0e33\u0e07\u0e32\u0e19\u0e43\u0e19\u0e04\u0e27\u0e32\u0e21\u0e04\u0e37\u0e1a\u0e2b\u0e19\u0e49\u0e32" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule/locale/th-doc.json b/support/doctype/maintenance_schedule/locale/th-doc.json new file mode 100644 index 0000000000..4b5be152ce --- /dev/null +++ b/support/doctype/maintenance_schedule/locale/th-doc.json @@ -0,0 +1,30 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Person": "Contact Person", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Draft": "\u0e23\u0e48\u0e32\u0e07", + "Generate Schedule": "\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e15\u0e32\u0e23\u0e32\u0e07", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Maintenance Schedule": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Schedule Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Schedule Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Schedule": "\u0e01\u0e33\u0e2b\u0e19\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Submitted": "Submitted", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "Transaction Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule_detail/locale/th-doc.json b/support/doctype/maintenance_schedule_detail/locale/th-doc.json new file mode 100644 index 0000000000..c39f848d4d --- /dev/null +++ b/support/doctype/maintenance_schedule_detail/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Actual Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07", + "Incharge Name": "incharge \u0e0a\u0e37\u0e48\u0e2d", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Maintenance Schedule Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Scheduled Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule_item/locale/th-doc.json b/support/doctype/maintenance_schedule_item/locale/th-doc.json new file mode 100644 index 0000000000..44a5ae80a2 --- /dev/null +++ b/support/doctype/maintenance_schedule_item/locale/th-doc.json @@ -0,0 +1,20 @@ +{ + "Against Docname": "\u0e01\u0e31\u0e1a Docname", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "End Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e34\u0e49\u0e19\u0e2a\u0e38\u0e14", + "Half Yearly": "\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e1b\u0e35\u0e04\u0e23\u0e36\u0e48\u0e07", + "Incharge Name": "incharge \u0e0a\u0e37\u0e48\u0e2d", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Maintenance Schedule Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Monthly": "\u0e23\u0e32\u0e22\u0e40\u0e14\u0e37\u0e2d\u0e19", + "No of Visits": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e0a\u0e21", + "Periodicity": "\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e47\u0e19\u0e0a\u0e48\u0e27\u0e07 \u0e46", + "Quarterly": "\u0e17\u0e38\u0e01\u0e2a\u0e32\u0e21\u0e40\u0e14\u0e37\u0e2d\u0e19", + "Random": "\u0e2a\u0e38\u0e48\u0e21", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Start Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Weekly": "\u0e23\u0e32\u0e22\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c", + "Yearly": "\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e1b\u0e35" +} \ No newline at end of file diff --git a/support/doctype/maintenance_visit/locale/th-doc.json b/support/doctype/maintenance_visit/locale/th-doc.json new file mode 100644 index 0000000000..3605a670de --- /dev/null +++ b/support/doctype/maintenance_visit/locale/th-doc.json @@ -0,0 +1,38 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", + "Breakdown": "\u0e01\u0e32\u0e23\u0e40\u0e2a\u0e35\u0e22", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Completion Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e40\u0e2a\u0e23\u0e47\u0e08", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Email": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c", + "Contact Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Person": "Contact Person", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Feedback": "\u0e04\u0e33\u0e15\u0e34\u0e0a\u0e21\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Issue No": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "Fully Completed": "\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e2a\u0e21\u0e1a\u0e39\u0e23\u0e13\u0e4c", + "Get Items": "\u0e23\u0e31\u0e1a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Maintenance Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Schedule": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Time": "\u0e40\u0e27\u0e25\u0e32\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Visit": "\u0e0a\u0e21\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Visit Purpose": "\u0e27\u0e31\u0e15\u0e16\u0e38\u0e1b\u0e23\u0e30\u0e2a\u0e07\u0e04\u0e4c\u0e0a\u0e21\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Partially Completed": "\u0e40\u0e2a\u0e23\u0e47\u0e08\u0e1a\u0e32\u0e07\u0e2a\u0e48\u0e27\u0e19", + "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", + "Scheduled": "\u0e01\u0e33\u0e2b\u0e19\u0e14", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Territory": "\u0e2d\u0e32\u0e13\u0e32\u0e40\u0e02\u0e15", + "Unscheduled": "\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2b\u0e21\u0e32\u0e22\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e01\u0e32\u0e23" +} \ No newline at end of file diff --git a/support/doctype/maintenance_visit_purpose/locale/th-doc.json b/support/doctype/maintenance_visit_purpose/locale/th-doc.json new file mode 100644 index 0000000000..0a46dfcdf3 --- /dev/null +++ b/support/doctype/maintenance_visit_purpose/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Against Document Detail No": "\u0e01\u0e31\u0e1a\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e44\u0e21\u0e48\u0e21\u0e35", + "Against Document No": "\u0e01\u0e31\u0e1a\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e44\u0e21\u0e48\u0e21\u0e35", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Document Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Maintenance Visit Purpose": "\u0e27\u0e31\u0e15\u0e16\u0e38\u0e1b\u0e23\u0e30\u0e2a\u0e07\u0e04\u0e4c\u0e0a\u0e21\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Service Person": "\u0e1c\u0e39\u0e49\u0e43\u0e2b\u0e49\u0e1a\u0e23\u0e34\u0e01\u0e32\u0e23", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Work Done": "\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33" +} \ No newline at end of file diff --git a/support/doctype/newsletter/locale/th-doc.json b/support/doctype/newsletter/locale/th-doc.json new file mode 100644 index 0000000000..677b579dbc --- /dev/null +++ b/support/doctype/newsletter/locale/th-doc.json @@ -0,0 +1,32 @@ +{ + "A Lead with this email id should exist": "\u0e15\u0e30\u0e01\u0e31\u0e48\u0e27\u0e17\u0e35\u0e48\u0e21\u0e35 id \u0e2d\u0e35\u0e40\u0e21\u0e25\u0e19\u0e35\u0e49\u0e04\u0e27\u0e23\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48", + "Check how the newsletter looks in an email by sending it to your email.": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e27\u0e48\u0e32\u0e21\u0e35\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e43\u0e19\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e42\u0e14\u0e22\u0e2a\u0e48\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Comma separated list of email addresses": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e04\u0e31\u0e48\u0e19\u0e14\u0e49\u0e27\u0e22\u0e08\u0e38\u0e25\u0e20\u0e32\u0e04\u0e02\u0e2d\u0e07\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Create and Send Newsletters": "\u0e01\u0e32\u0e23\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e41\u0e25\u0e30\u0e2a\u0e48\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27", + "Custom": "\u0e1b\u0e23\u0e30\u0e40\u0e1e\u0e13\u0e35", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Email Sent?": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07?", + "If specified, send the newsletter using this email address": "\u0e16\u0e49\u0e32\u0e23\u0e30\u0e1a\u0e38\u0e2a\u0e48\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e19\u0e35\u0e49", + "Lead": "\u0e19\u0e33", + "Lead Source": "\u0e19\u0e33\u0e21\u0e32", + "Lead Status": "\u0e19\u0e33\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Message": "\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23", + "NL-": "NL-", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Newsletter": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27", + "Newsletter Content": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27", + "Newsletter Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", + "Select who you want to send this newsletter to": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e04\u0e19\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27\u0e19\u0e35\u0e49\u0e43\u0e2b\u0e49", + "Send From": "\u0e2a\u0e48\u0e07\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e17\u0e35\u0e48", + "Send To": "\u0e2a\u0e48\u0e07\u0e43\u0e2b\u0e49", + "Send To Type": "\u0e2a\u0e48\u0e07\u0e16\u0e36\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c", + "Send to this list": "\u0e2a\u0e48\u0e07\u0e21\u0e32\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49", + "Subject": "\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Test": "\u0e17\u0e14\u0e2a\u0e2d\u0e1a", + "Test Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a\u0e01\u0e32\u0e23\u0e17\u0e14\u0e2a\u0e2d\u0e1a", + "Test the Newsletter": "\u0e17\u0e14\u0e2a\u0e2d\u0e1a\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a" +} \ No newline at end of file diff --git a/support/doctype/newsletter/locale/th-py.json b/support/doctype/newsletter/locale/th-py.json new file mode 100644 index 0000000000..5ea5a1c9a2 --- /dev/null +++ b/support/doctype/newsletter/locale/th-py.json @@ -0,0 +1,4 @@ +{ + "Please save the Newsletter before sending.": "\u0e01\u0e23\u0e38\u0e13\u0e32\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e08\u0e30\u0e2a\u0e48\u0e07", + "Sending newsletters is not allowed for Trial users, \\\t\t\t\tto prevent abuse of this feature.": "\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27\u0e44\u0e21\u0e48\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e17\u0e14\u0e25\u0e2d\u0e07, \\ \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e1b\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e19\u0e01\u0e32\u0e23\u0e25\u0e30\u0e40\u0e21\u0e34\u0e14\u0e04\u0e38\u0e13\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30\u0e19\u0e35\u0e49" +} \ No newline at end of file diff --git a/support/doctype/support_ticket/locale/th-doc.json b/support/doctype/support_ticket/locale/th-doc.json new file mode 100644 index 0000000000..cca69859cb --- /dev/null +++ b/support/doctype/support_ticket/locale/th-doc.json @@ -0,0 +1,28 @@ +{ + "Additional Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Closed": "\u0e1b\u0e34\u0e14", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Content Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "First Responded On": "\u0e04\u0e23\u0e31\u0e49\u0e07\u0e41\u0e23\u0e01\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e07\u0e48\u0e27\u0e07", + "Hold": "\u0e16\u0e37\u0e2d", + "Lead": "\u0e19\u0e33", + "Naming Series": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Opening Date": "\u0e40\u0e1b\u0e34\u0e14\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Opening Time": "\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e27\u0e25\u0e32", + "Raised By (Email)": "\u0e42\u0e14\u0e22\u0e22\u0e01 (\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e4c)", + "Resolution Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e04\u0e27\u0e32\u0e21\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Resolution Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e04\u0e27\u0e32\u0e21\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "SUP": "SUP", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Subject": "\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Support": "\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Support Ticket": "\u0e15\u0e31\u0e4b\u0e27\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Thread HTML": "HTML \u0e01\u0e23\u0e30\u0e17\u0e39\u0e49", + "To Reply": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e15\u0e2d\u0e1a", + "Waiting for Customer": "\u0e23\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/support/module_def/support/locale/th-doc.json b/support/module_def/support/locale/th-doc.json new file mode 100644 index 0000000000..6712e53011 --- /dev/null +++ b/support/module_def/support/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Create and Send Newsletters": "\u0e01\u0e32\u0e23\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e41\u0e25\u0e30\u0e2a\u0e48\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27", + "Support Analytics": "Analytics \u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Support Home": "\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e25\u0e31\u0e01" +} \ No newline at end of file diff --git a/support/page/support_home/locale/th-js.json b/support/page/support_home/locale/th-js.json new file mode 100644 index 0000000000..aa4497c244 --- /dev/null +++ b/support/page/support_home/locale/th-js.json @@ -0,0 +1,23 @@ +{ + "Analytics": "Analytics", + "Communication": "\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Communication log.": "\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Customer Issue": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Issue against a Serial No (warranty).": "\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e01\u0e31\u0e1a\u0e2b\u0e21\u0e32\u0e22\u0e40\u0e25\u0e02\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07 (\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e01\u0e31\u0e19)", + "Documents": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23", + "Email Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25", + "Maintenance Schedule": "\u0e15\u0e32\u0e23\u0e32\u0e07\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Maintenance Visit": "\u0e0a\u0e21\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Masters": "\u0e42\u0e17", + "Newsletter": "\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e02\u0e48\u0e32\u0e27", + "Plan for scheduled maintenance contracts.": "\u0e01\u0e32\u0e23\u0e27\u0e32\u0e07\u0e41\u0e1c\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32", + "Send Newsletters to your contacts, leads.": "\u0e2a\u0e48\u0e07\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e1c\u0e39\u0e49\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e19\u0e33\u0e44\u0e1b\u0e2a\u0e39\u0e48", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Setup": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07", + "Setup to pull emails from support email account": "\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e14\u0e36\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e08\u0e32\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Single unit of an Item.": "\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e40\u0e14\u0e35\u0e22\u0e27\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Support Analytics": "Analytics \u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Support Ticket": "\u0e15\u0e31\u0e4b\u0e27\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19", + "Support queries from customers via email or website.": "\u0e23\u0e2d\u0e07\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e2a\u0e37\u0e1a\u0e04\u0e49\u0e19\u0e08\u0e32\u0e01\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Visit report for maintenance call.": "\u0e40\u0e22\u0e35\u0e48\u0e22\u0e21\u0e0a\u0e21\u0e23\u0e32\u0e22\u0e07\u0e32\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e1a\u0e33\u0e23\u0e38\u0e07\u0e23\u0e31\u0e01\u0e29\u0e32\u0e42\u0e17\u0e23" +} \ No newline at end of file diff --git a/translations/th.csv b/translations/th.csv index b8e3252653..31fddbedf2 100644 --- a/translations/th.csv +++ b/translations/th.csv @@ -10,6 +10,7 @@ is mandatory for GL Entry,มีผลบังคับใช้สำหรับรายการ GL is not a ledger,ไม่ได้เป็นบัญ​​ชีแยกประเภท is not active,ไม่ได้ใช้งาน + is not set,ไม่ได้ตั้งค่า is now the default Fiscal Year. \ Please refresh your browser for the change to take effect.,คือตอนนี้เริ่มต้นปีงบประมาณ \ โปรดรีเฟรชเบราว์เซอร์ของคุณสำหรับการเปลี่ยนแปลงที่จะมีผล or the BOM is cancelled or inactive,หรือ BOM ถูกยกเลิกหรือไม่ได้ใช้งาน should be same as that in ,ควรจะเช่นเดียวกับที่ใน @@ -26,6 +27,7 @@ % Delivered,ส่ง% % Amount Billed,จำนวนเงิน% จำนวน % Billed,จำนวน% +% Completed,% เสร็จสมบูรณ์ % Installed,% Installed % Ordered,สั่ง% % Received,ได้รับ% @@ -35,6 +37,7 @@ % of materials billed against this Sales Order,% ของวัสดุที่เรียกเก็บเงินกับการสั่งซื้อนี้ขาย % of materials delivered against this Delivery Note,% ของวัสดุที่ส่งกับส่งหมายเหตุนี้ % of materials delivered against this Sales Order,% ของวัสดุที่ส่งต่อนี้สั่งซื้อขาย +% of materials ordered against this Material Request,% ของวัสดุสั่งกับวัสดุนี้ขอ % of materials ordered against this Purchase Requisition,% ของวัสดุสั่งซื้อกับใบเบิกนี้ % of materials received against this Purchase Order,% ของวัสดุที่ได้รับกับการสั่งซื้อนี้ "' can not be managed using Stock Reconciliation.\ You can add/delete Serial No directly, \ to modify stock of this item.",'ไม่สามารถจัดการได้โดยใช้การกระทบยอดสต็อก. \ คุณสามารถเพิ่ม / ลบอนุกรมไม่มีโดยตรง \ การปรับเปลี่ยนหุ้นของรายการนี​​้ @@ -106,7 +109,6 @@ A,A A Customer exists with same name,ลูกค้าที่มีอยู่ที่มีชื่อเดียวกัน A Lead with this email id should exist,ตะกั่วที่มี id อีเมลนี้ควรมีอยู่ -A Product is shown on the website and is linked to an item.,สินค้าที่แสดงบนเว็บไซต์และมีการเชื่อมโยงไปยังรายการ "A Product or a Service that is bought, sold or kept in stock.",สินค้าหรือบริการที่มีการซื้อขายหรือเก็บไว้ในสต็อก A Supplier exists with same name,ผู้ผลิตที่มีอยู่ที่มีชื่อเดียวกัน A logical Warehouse against which stock entries are made.,คลังสินค้าตรรกะกับที่รายการสต็อกจะทำ @@ -177,9 +179,11 @@ Add Attachments,เพิ่มสิ่งที่แนบ Add Bookmark,เพิ่มบุ๊คมาร์ค Add CSS,เพิ่ม CSS Add Column,เพิ่มคอลัมน์ +Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,เพิ่ม Google Analytics ID: เช่น UA-89XXX57-1 กรุณาค้นหาความช่วยเหลือใน Google Analytics สำหรับข้อมูลเพิ่มเติม Add Message,เพิ่มข้อความ Add New Permission Rule,เพิ่มกฎการอนุญาตใหม่ Add Reply,เพิ่มตอบ +Add Terms and Conditions for the Material Request. You can also prepare a Terms and Conditions Master and use the Template,เพิ่มข้อตกลงและเงื่อนไขในการขอวัสดุ นอกจากนี้คุณยังสามารถเตรียมความพร้อมข้อกำหนดเงื่อนไขและปริญญาโทและใช้แม่แบบ Add Terms and Conditions for the Purchase Receipt. You can also prepare a Terms and Conditions Master and use the Template.,เพิ่มข้อตกลงและเงื่อนไขในการรับซื้อ นอกจากนี้คุณยังสามารถเตรียมความพร้อมข้อกำหนดเงื่อนไขและปริญญาโทและใช้แม่แบบ Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template,เพิ่มข้อตกลงและเงื่อนไขในการเบิกซื้อ นอกจากนี้คุณยังสามารถเตรียมความพร้อมข้อกำหนดเงื่อนไขและปริญญาโทและใช้แม่แบบ "Add Terms and Conditions for the Quotation like Payment Terms, Validity of Offer etc. You can also prepare a Terms and Conditions Master and use the Template",เพิ่มข้อตกลงและเงื่อนไขในการขอใบเสนอราคาเช่นเงื่อนไขการชำระเงินถูกต้องของข้อเสนอที่คุณ ฯลฯ นอกจากนี้ยังสามารถเตรียมความพร้อมข้อกำหนดเงื่อนไขและปริญญาโทและใช้แม่แบบ @@ -344,6 +348,7 @@ Authourized Role (Frozen Entry),บทบาท Authourized (Entry แช่แ Auto Email Id,รหัสอีเมล์อัตโนมัติ Auto Name,ชื่ออัตโนมัติ Auto generated,ออโต้สร้าง +Auto-raise Material Request if quantity goes below re-order level in a warehouse,Auto-ยกคำขอถ้าปริมาณวัสดุไปต่ำกว่าระดับใหม่สั่งในคลังสินค้า Automatically updated via Stock Entry of type Manufacture/Repack,ปรับปรุงโดยอัตโนมัติผ่านทางรายการในสต็อกการผลิตประเภท / Repack Autoreply when a new mail is received,autoreply เมื่อมีอีเมลใหม่ได้รับ Available Qty at Warehouse,จำนวนที่คลังสินค้า @@ -582,6 +587,7 @@ Company registration numbers for your reference. Tax numbers etc.,เลขท Complaint,การร้องเรียน Complete By,เสร็จสมบูรณ์โดย Completed,เสร็จ +Completed Qty,จำนวนเสร็จ Completion Date,วันที่เสร็จสมบูรณ์ Completion Status,สถานะเสร็จ Confirmed orders from Customers.,คำสั่งซื้อได้รับการยืนยันจากลูกค้า @@ -776,7 +782,6 @@ Default Unit of Measure,หน่วยเริ่มต้นของวั Default Valuation Method,วิธีการประเมินค่าเริ่มต้น Default Value,ค่าเริ่มต้น Default Warehouse Type,ประเภทคลังสินค้าเริ่มต้น -Default values are set across the role and can be over-ridden by user permissions.,ค่าเริ่มต้นจะกำหนดทั่วบทบาทและสามารถเกินขี่สิทธิ์ของผู้ใช้ "Default: ""Product Search""",เริ่มต้น: "ค้นหาผลิตภัณฑ์" DefaultValue,เริ่มต้น Defaults,เริ่มต้น @@ -822,6 +827,7 @@ Did not cancel,ไม่ได้ยกเลิก Did not save,ไม่ได้บันทึก Difference,ข้อแตกต่าง "Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","ที่แตกต่างกัน "รัฐ" เอกสารนี้สามารถอยู่มาชอบ "เปิด", "รอการอนุมัติ" ฯลฯ" +Disable Rounded Total,ปิดการใช้งานรวมโค้ง Disabled,พิการ Disabled Filters,กรองพิการ Discount %,ส่วนลด% @@ -995,6 +1001,7 @@ Extract Job Applicant from jobs email id e.g. jobs@example.com,สารสก Extract Leads from sales email id e.g. sales@example.com,สารสกัดนำมาจากยอดขายอีเมล์ ID เช่น sales@example.com FCFS Rate,อัตรา FCFS FIFO,FIFO +Facebook Share,Facebook แบ่งปัน Family Background,ภูมิหลังของครอบครัว FavIcon,favicon Fax,แฟกซ์ @@ -1024,6 +1031,7 @@ File List,รายชื่อไฟล์ File Name,ชื่อไฟล์ File URL,ไฟล์ URL File Uploaded Sucessfully.,ไฟล์ที่อัปโหลดสำเร็จ +Filing in Additional Information about the Material Request will help you analyze your data better.,ยื่นข้อมูลเพิ่มเติมเกี่ยวกับการร้องขอวัสดุจะช่วยให้คุณสามารถวิเคราะห์ข้อมูลของคุณได้ดียิ่งขึ้น Filing in Additional Information about the Opportunity will help you analyze your data better.,ยื่นข้อมูลเพิ่มเติมเกี่ยวกับโอกาสที่จะช่วยให้คุณสามารถวิเคราะห์ข้อมูลของคุณดีขึ้น Filing in Additional Information about the Purchase Receipt will help you analyze your data better.,ยื่นข้อมูลเพิ่มเติมเกี่ยวกับรับซื้อจะช่วยให้คุณสามารถวิเคราะห์ข้อมูลของคุณดีขึ้น Filing in Additional Information about the Purchase Requisition will help you analyze your data better.,ยื่นข้อมูลเพิ่มเติมเกี่ยวกับใบขอซื้อจะช่วยให้คุณสามารถวิเคราะห์ข้อมูลของคุณดีขึ้น @@ -1108,7 +1116,7 @@ Gender,เพศ General,ทั่วไป General Ledger,บัญชีแยกประเภททั่วไป Generate Description HTML,สร้างคำอธิบาย HTML -Generate Purchase Requests (MRP) and Production Orders.,สร้างคำขอซื้อ (MRP) และคำสั่งการผลิต +Generate Material Requests (MRP) and Production Orders.,สร้างคำขอวัสดุ (MRP) และคำสั่งการผลิต Generate Salary Slips,สร้าง Slips เงินเดือน Generate Schedule,สร้างตาราง "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.",สร้างบรรจุภัณฑ์แพคเกจที่จะส่งมอบ ใช้สำหรับการแจ้งจำนวนแพ็กเกจที่บรรจุและน้ำหนักของมัน @@ -1139,6 +1147,8 @@ Go to Setup > User Properties to set \ 'territo Goal,เป้าหมาย Goals,เป้าหมาย Goods received from Suppliers.,สินค้าที่ได้รับจากผู้จำหน่าย +Google Analytics ID,ID ของ Google Analytics +Google Plus One,Google Plus One Grade,เกรด Graduate,จบการศึกษา Grand Total,รวมทั้งสิ้น @@ -1249,6 +1259,7 @@ If Yearly Budget Exceeded,ถ้างบประมาณประจำปี "If checked, all other workflows become inactive.",หากตร​​วจสอบทุกขั้นตอนการทำงานอื่น ๆ เป็นที่รอ "If checked, the Home page will be the default Item Group for the website.",หากการตรวจสอบหน้าแรกจะเริ่มต้นกลุ่มสินค้าสำหรับเว็บไซต์ "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount",หากการตรวจสอบจำนวนเงินภาษีจะถือว่าเป็นรวมอยู่ในอัตราพิมพ์ / จำนวนพิมพ์ +"If disable, 'Rounded Total' field will not be visible in any transaction",ถ้าปิดการใช้งาน 'ปัดรวมฟิลด์จะมองไม่เห็นในการทำธุรกรรมใด ๆ "If image is selected, color will be ignored (attach first)",หากภาพถูกเลือกสีจะถูกละเว้น (แนบแรก) If more than one package of the same type (for print),หากมีมากกว่าหนึ่งแพคเกจประเภทเดียวกัน (พิมพ์) If non standard port (e.g. 587),ถ้าพอร์ตมาตรฐานไม่ (เช่น 587) @@ -1311,3 +1322,1995 @@ Incoming quality inspection.,การตรวจสอบคุณภาพท Indent,ย่อหน้า Index,ดัชนี Indicates that the package is a part of this delivery,แสดงให้เห็นว่าแพคเกจเป็นส่วนหนึ่งของการจัดส่งนี้ +Individual,บุคคล +Individuals,บุคคล +Industry,อุตสาหกรรม +Industry Type,ประเภทอุตสาหกรรม +Info,ข้อมูล +Insert After,ใส่หลังจาก +Insert Code,ใส่รหัส +Insert Style,ใส่สไตล์ +Inspected By,การตรวจสอบโดย +Inspection Criteria,เกณฑ์การตรวจสอบ +Inspection Required,การตรวจสอบที่จำเป็น +Inspection Type,ประเภทการตรวจสอบ +Installation Date,วันที่ติดตั้ง +Installation Note,หมายเหตุการติดตั้ง +Installation Note Item,รายการหมายเหตุการติดตั้ง +Installation Status,สถานะการติดตั้ง +Installation Time,เวลาติดตั้ง +Installation record for a Serial No.,บันทึกการติดตั้งสำหรับหมายเลขเครื่อง +Installed Qty,จำนวนการติดตั้ง +Institute / Conducted By,สถาบันดำเนินการ / โดย +Instructions,คำแนะนำ +Int,int +Integrations,Integrations +Interested,สนใจ +Internal,ภายใน +Intro HTML,HTML แนะนำ +Introduce your company to the website visitor.,แนะนำ บริษัท ของคุณเพื่อเข้าชมเว็บไซต์ +Introduction,การแนะนำ +Introductory information for the Contact Us Page,ข้อมูลเบื้องต้นสำหรับการติดต่อเราหน้า +Invalid Email Address,ที่อยู่อีเมลไม่ถูกต้อง +Inventory,รายการสินค้า +Inverse,ผกผัน +Invoice Date,วันที่ออกใบแจ้งหนี้ +Invoice Details,รายละเอียดใบแจ้งหนี้ +Invoice No,ใบแจ้งหนี้ไม่มี +Invoice Period From Date,ระยะเวลาจากวันที่ออกใบแจ้งหนี้ +Invoice Period To Date,ระยะเวลาใบแจ้งหนี้เพื่อวันที่ +Is Active,มีการใช้งาน +Is Advance,ล่วงหน้า +Is Asset Item,รายการสินทรัพย์เป็น +Is Cancelled,เป็นยกเลิก +Is Carry Forward,เป็น Carry Forward +Is Child Table,เป็นตารางเด็ก +Is Default,เป็นค่าเริ่มต้น +Is Encash,เป็นได้เป็นเงินสด +Is LWP,LWP เป็น +Is Mandatory Field,เขตบังคับเป็น +Is Opening,คือการเปิด +Is PL Account,เป็นบัญ​​ชี PL +Is POS,POS เป็น +Is Primary Address,เป็นที่อยู่หลัก +Is Primary Contact,ติดต่อหลักคือ +Is Purchase Item,รายการซื้อเป็น +Is Sales Item,รายการขาย +Is Service Item,รายการบริการเป็น +Is Shipping Address,เป็นสถานที่จัดส่ง +Is Single,เป็นโสด +Is Standard,เป็นมาตรฐาน +Is Stock Item,รายการสินค้าเป็น +Is Sub Contracted Item,รายการสัญญาย่อยคือ +Is Subcontracted,เหมา +Is Submittable,เป็น Submittable +Is it a Custom DocType created by you?,มันเป็น DocType กำหนดเองที่สร้างขึ้นโดยคุณ? +Is this Tax included in Basic Rate?,คือภาษีนี้รวมอยู่ในอัตราขั้นพื้นฐาน? +Issue,ปัญหา +Issue Date,วันที่ออก +Issue Details,รายละเอียดปัญหา +It was raised because the (actual + ordered + indented - reserved) quantity reaches re-order level when the following record was created,มันถูกยกขึ้นเพราะ (จริง + + สั่งเยื้อง - สงวน) ปริมาณถึงระดับใหม่สั่งเมื่อบัน​​ทึกต่อไปนี้ถูกสร้างขึ้น +Item,ชิ้น +Item Advanced,ขั้นสูงรายการ +Item Barcode,เครื่องอ่านบาร์โค้ดสินค้า +Item Batch Nos,Nos Batch รายการ +Item Classification,การจัดหมวดหมู่สินค้า +Item Code,รหัสสินค้า +Item Customer Detail,รายละเอียดลูกค้ารายการ +Item Description,รายละเอียดสินค้า +Item Desription,Desription รายการ +Item Details,รายละเอียดสินค้า +Item Group,กลุ่มสินค้า +Item Group Name,ชื่อกลุ่มสินค้า +Item Groups in Details,กลุ่มรายการในรายละเอียด +Item Image (if not slideshow),รูปภาพสินค้า (ถ้าไม่สไลด์โชว์) +Item Name,ชื่อรายการ +Item Price,ราคาสินค้า +Item Prices,ตรวจสอบราคาสินค้า +Item Quality Inspection Parameter,รายการพารามิเตอร์การตรวจสอบคุณภาพ +Item Reorder,รายการ Reorder +Item Serial No,รายการ Serial ไม่มี +Item Serial Nos,Nos อนุกรมรายการ +Item Supplier,ผู้ผลิตรายการ +Item Supplier Details,รายละเอียดสินค้ารายการ +Item Tax,ภาษีสินค้า +Item Tax Amount,จำนวนภาษีรายการ +Item Tax Rate,อัตราภาษีสินค้า +Item Tax1,Tax1 รายการ +Item To Manufacture,รายการที่จะผลิต +Item UOM,UOM รายการ +Item Website Specification,สเปกเว็บไซต์รายการ +Item Website Specifications,ข้อมูลจำเพาะเว็บไซต์รายการ +Item Wise Tax Detail ,รายละเอียดภาษีสินค้าฉลาด +Item classification.,การจัดหมวดหมู่สินค้า +Item to be manufactured or repacked,รายการที่จะผลิตหรือ repacked +Item will be saved by this name in the data base.,รายการจะถูกบันทึกไว้โดยใช้ชื่อนี้ในฐานข้อมูล +"Item, Warranty, AMC (Annual Maintenance Contract) details will be automatically fetched when Serial Number is selected.","รายการรับประกัน, AMC รายละเอียด (ปี Maintenance Contract) จะได้โดยอัตโนมัติเมื่อเรียกหมายเลขที่เลือก" +Item-Wise Price List,รายการราคารายการฉลาด +Item: ',รายการ: ' +Items,รายการ +"Items to be requested which are ""Out of Stock"" considering all warehouses based on projected qty and minimum order qty",รายการที่จะได้รับการร้องขอซึ่งเป็น "ออกจากสต็อก" พิจารณาโกดังทั้งหมดขึ้นอยู่กับจำนวนที่คาดการณ์ไว้และจำนวนสั่งซื้อขั้นต่ำ +Items which do not exist in Item master can also be entered on customer's request,รายการที่ไม่ได้อยู่ในรายการหลักสามารถเข้าร้องขอของลูกค้า +Itemwise Discount,ส่วนลด Itemwise +JSON,JSON +JV,JV +Javascript,javascript +Javascript to append to the head section of the page.,จาวาสคริปต์เพื่อผนวกกับส่วนหัวของหน้า +Job Applicant,ผู้สมัครงาน +Job Opening,เปิดงาน +Job Profile,รายละเอียดงาน +Job Title,ตำแหน่งงาน +"Job profile, qualifications required etc.",งานคุณสมบัติรายละเอียดที่จำเป็น ฯลฯ +Jobs Email Settings,งานการตั้งค่าอีเมล +Journal Entries,คอมเมนต์วารสาร +Journal Entry,รายการวารสาร +Journal Voucher,บัตรกำนัลวารสาร +Journal Voucher Detail,รายละเอียดบัตรกำนัลวารสาร +Journal Voucher Detail No,รายละเอียดบัตรกำนัลวารสารไม่มี +KRA,KRA +"Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ","ติดตามแคมเปญการขาย ติดตาม Leads, ใบเสนอราคา, ฯลฯ สั่งซื้อยอดขายจากแคมเปญที่จะวัดอัตราผลตอบแทนจากการลงทุน" +Keep a track of all communications,ติดตามการติดต่อสื่อสารทั้งหมด +Keep a track of communication related to this enquiry which will help for future reference.,ติดตามของการสื่อสารที่เกี่ยวข้องกับการสืบสวนเรื่องนี้ซึ่งจะช่วยให้สำหรับการอ้างอิงในอนาคต +Keep a track on communications regarding this Quotation. This will help you remember earlier communications in case the Customer comes back again,ติดตามข้อมูลเกี่ยวกับการสื่อสารที่เกี่ยวข้องกับใบเสนอราคานี้ นี้จะช่วยให้คุณจำไว้ก่อนหน้านี้การสื่อสารในกรณีที่ลูกค้ากลับมาอีกครั้ง +Key,คีย์ +Key Performance Area,พื้นที่การดำเนินงานหลัก +Key Responsibility Area,พื้นที่ความรับผิดชอบหลัก +Knowledge Base,ฐานความรู้ +LEAD,LEAD +LEAD/10-11/,LEAD/10-11 / +LEAD/MUMBAI/,LEAD / มุมไบ / +LR Date,วันที่ LR +LR No,LR ไม่มี +Label,ฉลาก +Label Help,ช่วยเหลือฉลาก +Lacs,Lacs +Landed Cost Item,รายการค่าใช้จ่ายลง +Landed Cost Items,รายการค่าใช้จ่ายลง +Landed Cost Purchase Receipt,ค่าใช้จ่ายใบเสร็จรับเงินลงซื้อ +Landed Cost Purchase Receipts,รายรับค่าใช้จ่ายซื้อที่ดิน +Landed Cost Wizard,ตัวช่วยสร้างต้นทุนที่ดิน +Landing Page,หน้า Landing Page +Language,ภาษา +Language preference for user interface (only if available).,การตั้งค่าภาษาสำหรับส่วนติดต่อผู้ใช้ (เฉพาะถ้ามี) +Last Contact Date,วันที่ติดต่อล่าสุด +Last IP,IP สุดท้าย +Last Login,เข้าสู่ระบบล่าสุด +Last Modified On,แก้ไขล่าสุดเมื่อวัน +Last Name,นามสกุล +Last Purchase Rate,อัตราซื้อล่าสุด +Last Update,ปรับปรุงข้อมูลล่าสุด +Last Update By,ปรับปรุงล่าสุดโดย +Latest Updates,อัพเดทล่าสุด +Lato,lato +Lead,นำ +Lead Details,นำรายละเอียด +Lead Lost,นำ Lost +Lead Name,นำชื่อ +Lead Owner,นำเจ้าของ +Lead Ref,นำ Ref +Lead Source,นำมา +Lead Status,นำสถานะ +Lead Time Date,นำวันเวลา +Lead Time Days,นำวันเวลา +Lead Time days is number of days by which this item is expected in your warehouse. This days is fetched in Material Request when you select this item.,นำวันเวลาเป็นจำนวนวันโดยที่รายการนี​​้คาดว่าในคลังสินค้าของคุณ วันนี้จะมาในการร้องขอวัสดุเมื่อคุณเลือกรายการนี​​้ +Lead Type,นำประเภท +Leave Allocation,ฝากจัดสรร +Leave Allocation Tool,ฝากเครื่องมือการจัดสรร +Leave Application,ฝากแอพลิเคชัน +Leave Approver,ฝากอนุมัติ +Leave Balance Before Application,ฝากคงเหลือก่อนที่โปรแกรมประยุกต์ +Leave Block List,ฝากรายการบล็อก +Leave Block List Allow,ฝากรายการบล็อกอนุญาตให้ +Leave Block List Allowed,ฝากรายการบล็อกอนุญาตให้นำ +Leave Block List Date,ฝากวันที่รายการบล็อก +Leave Block List Dates,ไม่ระบุวันที่รายการบล็อก +Leave Block List Name,ฝากชื่อรายการที่ถูกบล็อก +Leave Blocked,ฝากที่ถูกบล็อก +Leave Control Panel,ฝากแผงควบคุม +Leave Encashed?,ฝาก Encashed? +Leave Encashment Amount,ฝากเงินการได้เป็นเงินสด +Leave Setup,ฝากติดตั้ง +Leave Type,ฝากประเภท +Leave Type Name,ฝากชื่อประเภท +Leave Without Pay,ฝากโดยไม่ต้องจ่าย +Leave allocations.,ฝากจัดสรร +Leave blank if considered for all branches,เว้นไว้หากพิจารณาสำหรับทุกสาขา +Leave blank if considered for all departments,เว้นไว้หากพิจารณาให้หน่วยงานทั้งหมด +Leave blank if considered for all designations,เว้นไว้หากพิจารณากำหนดทั้งหมด +Leave blank if considered for all employee types,เว้นไว้หากพิจารณาให้พนักงานทุกประเภท +Leave blank if considered for all grades,เว้นไว้หากพิจารณาให้เกรดทั้งหมด +Leave by,ฝากตาม +"Leave can be approved by users with Role, ""Leave Approver""",ฝากสามารถได้รับการอนุมัติโดยผู้ใช้ที่มีบทบาท "ฝากอนุมัติ" +Ledger,บัญชีแยกประเภท +Left,ซ้าย +Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.,นิติบุคคล / บริษัท ย่อยด้วยแผนภูมิที่แยกต่างหากจากบัญชีเป็นขององค์การ +Letter Head,หัวจดหมาย +Letter Head Image,รูปภาพหัวจดหมาย +Letter Head Name,ชื่อหัวจดหมาย +Letter heads for print,หัวจดหมายสำหรับการพิมพ์ +Level,ชั้น +"Level 0 is for document level permissions, higher levels for field level permissions.",ระดับ 0 คือสำหรับสิทธิ์ระดับเอกสารระดับที่สูงขึ้นสำหรับสิทธิ์ในระดับเขต +Lft,lft +Link,ลิงค์ +Link to other pages in the side bar and next section,เชื่อมโยงไปยังหน้าอื่น ๆ ในแถบด้านข้างและส่วนถัดไป +Linked In Share,ที่เชื่อมโยงในแบ่งปัน +Linked With,เชื่อมโยงกับ +List,รายการ +List items that form the package.,รายการที่สร้างแพคเกจ +"List of Item Groups to be shown in ""All Products"" menu - in the sequence wanted and with number of indents (left spacing to show a tree effect).",รายชื่อกลุ่มสินค้าที่จะแสดงใน "ทุกผลิตภัณฑ์" เมนู - ในลำดับที่ต้องการและมีจำนวนของการเยื้อง (ระยะห่างด้านซ้ายเพื่อแสดงผลต้นไม้) +List of companies (not customers / suppliers),รายชื่อของ บริษัท (ลูกค้าไม่ / ซัพพลายเออร์) +List of holidays.,รายการของวันหยุด +List of patches executed,รายชื่อของแพทช์ที่ดำเนินการ +List of records in which this document is linked,รายการของระเบียนที่เอกสารนี้มีการเชื่อมโยง +List this Item in multiple groups on the website.,รายการนี​​้ในหลายกลุ่มในเว็บไซต์ +Live Chat,Live Chat +Load Print View on opening of an existing form,โหลดดูหัวข้อการเปิดฟอร์มที่มีอยู่ +Loading,โหลด +Loading Report,โหลดรายงาน +Location,สถานที่ +Log of Scheduler Errors,เข้าสู่ระบบของข้อผิดพลาดตัวจัดตารางเวลา +Login After,เข้าสู่ระบบหลังจากที่ +Login Before,เข้าสู่ระบบก่อน +Login Id,เข้าสู่ระบบรหัส +Login Page,เข้าสู่ระบบหน้า +Logout,ออกจากระบบ +Long Text,ข้อความยาว +Lost Reason,เหตุผลที่หายไป +Low,ต่ำ +Lower Income,รายได้ต่ำ +Lucida Grande,แกรนด์ Lucida +MIS Control,ควบคุมระบบสารสนเทศ +MREQ-,MREQ- +MTN Details,รายละเอียด MTN +Mail Footer,ส่วนท้ายของจดหมาย +Mail Password,รหัสผ่านอีเมล +Mail Port,พอร์ตจดหมาย +Mail Server,Mail Server ที่ +Main Reports,รายงานหลัก +Main Section,มาตราหลัก +Maintain same rate throughout purchase cycle,รักษาอัตราเดียวกันตลอดวงจรการซื้อ +Maintenance,การบำรุงรักษา +Maintenance Date,วันที่การบำรุงรักษา +Maintenance Details,รายละเอียดการบำรุงรักษา +Maintenance Schedule,ตารางการบำรุงรักษา +Maintenance Schedule Detail,รายละเอียดตารางการบำรุงรักษา +Maintenance Schedule Item,รายการตารางการบำรุงรักษา +Maintenance Status,สถานะการบำรุงรักษา +Maintenance Time,เวลาการบำรุงรักษา +Maintenance Type,ประเภทการบำรุงรักษา +Maintenance Visit,ชมการบำรุงรักษา +Maintenance Visit Purpose,วัตถุประสงค์ชมการบำรุงรักษา +Major/Optional Subjects,วิชาเอก / เสริม +Make Bank Voucher,ทำให้บัตรของธนาคาร +Make Credit Note,ให้จดบันทึกเครดิต +Make Debit Note,ให้จดบันทึกเดบิต +Make Difference Entry,ทำรายการที่แตกต่าง +Make Excise Invoice,ทำให้ใบแจ้งหนี้สรรพสามิต +Make Stock Entry,ทำรายการสินค้า +Make a new,ทำให้ใหม่ +Make sure that the transactions you want to restrict have a Link field 'territory' that maps to a 'Territory' master.,ตรวจสอบให้แน่ใจว่าการทำธุรกรรมที่คุณต้องการที่จะ จำกัด การมี 'ดินแดน' ฟิลด์ที่แผนที่เพื่อ 'พื้นที่' ต้นแบบ +Male,ชาย +Manage cost of operations,จัดการค่าใช้จ่ายในการดำเนินงาน +Manage numbering series,จัดการเลขชุด +Manage sales or purchase returns,จัดการยอดขายหรือผลตอบแทนการซื้อ +Mandatory,จำเป็น +"Mandatory if Stock Item is ""Yes""",บังคับรายการสินค้าถ้าเป็น "ใช่" +Manufacture against Sales Order,การผลิตกับการสั่งซื้อการขาย +Manufacture/Repack,การผลิต / Repack +Manufactured Qty,จำนวนการผลิต +Manufactured quantity will be updated in this warehouse,ปริมาณการผลิตจะมีการปรับปรุงในคลังสินค้านี้ +Manufacturer,ผู้ผลิต +Manufacturer Part Number,หมายเลขชิ้นส่วนของผู้ผลิต +Manufacturing,การผลิต +Manufacturing Home,หน้าแรกการผลิต +Manufacturing Quantity,จำนวนการผลิต +Map,แผนที่ +Margin,ขอบ +Marital Status,สถานภาพการสมรส +Markdown Reference,อ้างอิง markdown +Market Segment,ส่วนตลาด +Married,แต่งงาน +Mass Mailing,จดหมายมวล +Master,เจ้านาย +Master Name,ชื่อปริญญาโท +Master Type,ประเภทหลัก +Masters,โท +Mat Detail No,รายละเอียด Mat ไม่มี +Match,การแข่งขัน +Match Id,ตรงกับหมายเลข +Match non-linked Invoices and Payments.,ตรงกับใบแจ้งหนี้ไม่ได้เชื่อมโยงและการชำระเงิน +Material Issue,ฉบับวัสดุ +Material Receipt,ใบเสร็จรับเงินวัสดุ +Material Request,ขอวัสดุ +Material Request Date,วันที่ขอวัสดุ +Material Request Detail No,รายละเอียดขอวัสดุไม่มี +Material Request For Warehouse,ขอวัสดุสำหรับคลังสินค้า +Material Request Item,รายการวัสดุขอ +Material Request Items,รายการวัสดุขอ +Material Request No,ขอวัสดุไม่มี +Material Request Type,ชนิดของการร้องขอวัสดุ +Material Request used to make this Stock Entry,ขอวัสดุที่ใช้เพื่อให้รายการสินค้านี้ +Material Transfer,โอนวัสดุ +Materials,วัสดุ +Materials Required (Exploded),วัสดุบังคับ (ระเบิด) +Materials Requirement Planning (MRP),การวางแผนความต้องการวัสดุ (MRP) +Max Attachments,สิ่งที่แนบมาแม็กซ์ +Max Days Leave Allowed,วันแม็กซ์ฝากอนุญาตให้นำ +Max Discount (%),ส่วนลดสูงสุด (%) +Max. Limit,แม็กซ์ จำกัด +"Meaning of Submit, Cancel, Amend","ความหมายของ Submit, ยกเลิกอัพเดท" +Medium,กลาง +Merge,ผสาน +Merge Warehouses,ผสานโกดัง +Merge With,ผสานกับ +Message,ข่าวสาร +Message Parameter,พารามิเตอร์ข้อความ +Message greater than 160 character will be splitted into multiple mesage,ข้อความมากขึ้นกว่า 160 ตัวอักษรจะได้รับการลง splitted mesage หลาย +Message when Cond. False,ข้อความเมื่อ Cond เท็จ +Messages,ข้อความ +Method,วิธี +Middle Income,มีรายได้ปานกลาง +Middle Name (Optional),ชื่อกลาง (ถ้ามี) +Milestone,ขั้น +Milestone Date,วันที่ Milestone +Milestones,ความคืบหน้า +Milestones will be added as Events in the Calendar,ความคืบหน้าจะเพิ่มเป็นเหตุการณ์ในปฏิทิน +Millions,ล้าน +Min Order Qty,จำนวนสั่งซื้อขั้นต่ำ +Minimum Order Qty,จำนวนสั่งซื้อขั้นต่ำ +Misc,misc +Misc Details,รายละเอียดอื่น ๆ +Miscellaneous,เบ็ดเตล็ด +Miscelleneous,เบ็ดเตล็ด +Mobile No,มือถือไม่มี +Mobile No.,เบอร์มือถือ +Mode of Payment,โหมดของการชำระเงิน +Modified Amount,จำนวนการแก้ไข +Modified by,ดัดแปลงโดย +Module,โมดูล +Module Def,Def โมดูล +Module Name,ชื่อโมดูล +Modules,โมดูล +Modules Setup,การติดตั้งโมดูล +Monday,วันจันทร์ +Month,เดือน +Monthly,รายเดือน +Monthly salary statement.,งบเงินเดือน +Monthly salary template.,แม่เงินเดือน +More,ขึ้น +More Details,รายละเอียดเพิ่มเติม +More Info,ข้อมูลเพิ่มเติม +More content for the bottom of the page.,เนื้อหาเพิ่มเติมสำหรับด้านล่างของหน้า +Moving Average,ค่าเฉลี่ยเคลื่อนที่ +Moving Average Rate,ย้ายอัตราเฉลี่ย +Mr,นาย +Ms,ms +Multi Ledger Report Detail,หลายรายละเอียดของรายงานบัญชีแยกประเภท +Multiple Item Prices,ตรวจสอบราคาสินค้าหลาย +Mupltiple Item prices.,ราคาสินค้า Mupltiple +My Company,บริษัท ของฉัน +My Settings,การตั้งค่าของฉัน +NL-,NL- +Name,ชื่อ +Name Case,กรณีชื่อ +Name as entered in Sales Partner master,ชื่อที่ป้อนเป็นพันธมิตรในต้นแบบการขาย +Name of organization from where lead has come,ชื่อขององค์กรจากที่นำมา +Name of person or organization that this address belongs to.,ชื่อบุคคลหรือองค์กรที่อยู่นี้เป็นของ +Name of the Budget Distribution,ชื่อของการกระจายงบประมาณ +Name of the entity who has requested for the Material Request,ชื่อของหน่วยงานที่ได้รับการร้องขอสำหรับการร้องขอวัสดุ +Name of the entity who has requested for the Purchase Requisition,ชื่อของหน่วยงานที่ได้รับการร้องขอสำหรับเบิกซื้อ +Naming,การตั้งชื่อ +Naming Series,การตั้งชื่อซีรีส์ +Naming Series Options,การตั้งชื่อตัวเลือกชุด +Negative balance is not allowed for account ,ความสมดุลเชิงลบจะไม่ได้รับอนุญาตสำหรับบัญชี +Net Pay,จ่ายสุทธิ +Net Pay (in words) will be visible once you save the Salary Slip.,จ่ายสุทธิ (คำ) จะสามารถมองเห็นได้เมื่อคุณบันทึกสลิปเงินเดือน +Net Total,สุทธิ +Net Total (Import),รวมสุทธิ (นำเข้า) +Net Total*,* สุทธิ +Net Weight,ปริมาณสุทธิ +Net Weight UOM,UOM น้ำหนักสุทธิ +Net Weight of each Item,น้ำหนักสุทธิของแต่ละรายการ +New,ใหม่ +New BOM,BOM ใหม่ +New Communications,การสื่อสารใหม่ +New Delivery Notes,ใบนำส่งสินค้าใหม่ +New Enquiries,ใหม่สอบถาม +New Leads,ใหม่นำ +New Leave Application,แอพลิเคชันออกใหม่ +New Leaves Allocated,ใหม่ใบจัดสรร +New Leaves Allocated (In Days),ใบใหม่ที่จัดสรร (ในวัน) +New Material Requests,ขอวัสดุใหม่ +New Name,ชื่อใหม่ +New Password,รหัสผ่านใหม่ +New Projects,โครงการใหม่ +New Purchase Orders,สั่งซื้อใหม่ +New Purchase Receipts,รายรับซื้อใหม่ +New Quotations,ใบเสนอราคาใหม่ +New Record,การบันทึกใหม่ +New Sales Orders,คำสั่งขายใหม่ +New Stock Entries,คอมเมนต์สต็อกใหม่ +New Stock UOM,ใหม่ UOM สต็อก +New Supplier Quotations,ใบเสนอราคาจำหน่ายใหม่ +New Support Tickets,ตั๋วสนับสนุนใหม่ +New Update,ปรับปรุงใหม่ +New Workplace,สถานที่ทำงานใหม่ +New value to be set,ค่าใหม่ที่จะตั้ง +Newsletter,จดหมายข่าว +Newsletter Content,เนื้อหาจดหมายข่าว +Newsletter Status,สถานะจดหมาย +Next Communcation On,ถัดไป communcation เกี่ยวกับ +Next Contact By,ติดต่อถัดไป +Next Contact Date,วันที่ถัดไปติดต่อ +Next Date,วันที่ถัดไป +Next State,รัฐต่อไป +Next actions,ดำเนินการต่อไป +Next email will be sent on:,อีเมล์ถัดไปจะถูกส่งเมื่อ: +No,ไม่ +No Action,ไม่มีการดำเนินการ +No Communication tagged with this ,การสื่อสารที่มีแท็กนี้ไม่มี +No Copy,คัดลอกไม่มี +No Permission,ไม่ได้รับอนุญาต +No Permission to ,ไม่มีการอนุญาตให้ +No Permissions set for this criteria.,ไม่มีสิทธิ์ที่กำหนดไว้สำหรับเกณฑ์นี้ +No User Properties found.,ไม่มีคุณสมบัติของผู้ใช้พบว่า +No of Requested SMS,ไม่มีของ SMS ขอ +No of Sent SMS,ไม่มี SMS ที่ส่ง +No of Visits,ไม่มีการเข้าชม +No records tagged.,ระเบียนที่ไม่มีการติดแท็ก +"No table is created for Single DocTypes, all values are stored in tabSingles as a tuple.",ตารางไม่มีถูกสร้างขึ้นสำหรับ Doctypes โสดค่าทั้งหมดจะถูกเก็บไว้ใน tabSingles เป็น tuple +None: End of Workflow,: ไม่มีสิ้นสุดเวิร์กโฟลว์ +Not,ไม่ +Not Active,ไม่ได้ใช้งานล่าสุด +Not Applicable,ไม่สามารถใช้งาน +Not Billed,ไม่ได้เรียกเก็บ +Not Delivered,ไม่ได้ส่ง +Not Found,ไม่พบ +Not Linked to any record.,ไม่ได้เชื่อมโยงไปยังระเบียนใด ๆ +Not Permitted,ไม่ได้รับอนุญาต +Not allowed,ไม่ได้รับอนุญาต +Not allowed for: ,ไม่อนุญาตให้: +Not enough permission to see links.,ไม่ได้รับอนุญาตพอที่จะเห็นการเชื่อมโยง +Not in Use,ไม่ได้อยู่ในการใช้งาน +Not interested,ไม่สนใจ +Not linked,ไม่ได้เชื่อมโยง +Note: Email will not be sent to disabled users,หมายเหตุ: อีเมล์ของคุณจะไม่ถูกส่งไปยังผู้ใช้คนพิการ +Note: Other permission rules may also apply,หมายเหตุ: กฎอนุญาตอื่น ๆ ที่ยังอาจมี +Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts,หมายเหตุ: คุณสามารถจัดการที่อยู่หลายหรือติดต่อผ่านทางที่อยู่และติดต่อ +Note: maximum attachment size = 1mb,หมายเหตุ: ขนาดไฟล์แนบสูงสุด = 1MB +Notes,หมายเหตุ +Nothing to show,ไม่มีอะไรที่จะแสดง +Notice - Number of Days,เวปไซด์ - จำนวนวัน +Notification Control,ควบคุมการแจ้งเตือน +Notification Email Address,ที่อยู่อีเมลการแจ้งเตือน +Notify By Email,แจ้งทางอีเมล์ +Notify by Email on Re-order,แจ้งอีเมล์และ Re-order +Number Format,รูปแบบจำนวน +O+,+ O +O-,O- +OPPT,OPPT +Ocean,มหาสมุทร +Old Parent,ผู้ปกครองเก่า +Old Style Reports,รายงานแบบเก่า +On,บน +On Net Total,เมื่อรวมสุทธิ +On Previous Row Amount,เกี่ยวกับจำนวนเงินแถวก่อนหน้า +On Previous Row Total,เมื่อรวมแถวก่อนหน้า +"Once you have set this, the users will only be able access documents with that property.",เมื่อคุณได้ตั้งค่านี้ผู้ใช้จะสามารถเข้าถึงเอกสารสามารถกับทรัพย์สินที่ +One or multiple Sales Order no which generated this Material Request,หนึ่งหรือหลาย no การสั่งซื้อการขายซึ่งสร้างการร้องขอวัสดุนี้ +One or multiple Sales Order no which generated this Purchase Requisition,หนึ่งหรือหลาย no การสั่งซื้อการขายซึ่งสร้างใบขอซื้อนี้ +Only Allow Edit For,อนุญาตให้เฉพาะสำหรับแก้ไข +Only System Manager can create / edit reports,จัดการระบบเท่านั้นที่สามารถสร้าง / แก้ไขรายงาน +Only leaf nodes are allowed in transaction,โหนดใบเท่านั้นที่จะเข้าในการทำธุรกรรม +Open,เปิด +Open Sans,Sans เปิด +Open Tickets,ตั๋วเปิด +Opening Date,เปิดวันที่ +Opening Time,เปิดเวลา +Opening for a Job.,เปิดงาน +Operating Cost,ค่าใช้จ่ายในการดำเนินงาน +Operation Description,ดำเนินการคำอธิบาย +Operation No,ไม่ดำเนินการ +Operation Time (mins),เวลาการดำเนินงาน (นาที) +Operations,การดำเนินงาน +Operator,ผู้ประกอบการ +Opportunity,โอกาส +Opportunity Date,วันที่มีโอกาส +Opportunity From,โอกาสจาก +Opportunity Item,รายการโอกาส +Opportunity Items,รายการโอกาส +Opportunity Lost,สูญเสียโอกาส +Opportunity No,ไม่มีโอกาสที่ +Opportunity Type,ประเภทโอกาส +Options,ตัวเลือก +Options Help,ตัวเลือกความช่วยเหลือ +Order Confirmed,สั่งซื้อได้รับการยืนยัน +Order Lost,สั่งซื้อที่หายไป +Order Type,ประเภทสั่งซื้อ +Ordered Items To Be Billed,รายการที่สั่งซื้อจะเรียกเก็บเงิน +Ordered Items To Be Delivered,รายการที่สั่งซื้อจะถูกส่ง +Ordered Qty,จำนวนสั่ง +Ordered Quantity,จำนวนสั่ง +Orders released for production.,คำสั่งปล่อยให้การผลิต +Organization,องค์กร +Original Message,ข้อความเดิม +Other,อื่น ๆ +Other Details,รายละเอียดอื่น ๆ +Other Income Detail,รายละเอียดราย​​ได้อื่น ๆ +Out going mail server and support ticket mailbox,ออกไปยังเซิร์ฟเวอร์อีเมลและกล่องจดหมายตั๋วสนับสนุน +Out of AMC,ออกของ AMC +Out of Warranty,ออกจากการรับประกัน +Outgoing,ขาออก +Outgoing Mail Server,เซิร์ฟเวอร์อีเมลขาออก +Outgoing Mails,ส่งอีเมล์ออก +Outstanding Amount,ยอดคงค้าง +Outstanding cannot be less than zero. \ Please match exact outstanding.,ที่โดดเด่นไม่สามารถน้อยกว่าศูนย์ \ กรุณาตรงกับที่แน่นอนที่โดดเด่น +Outstanding for Voucher ,ที่โดดเด่นสำหรับบัตรกำนัล +Over Heads,เหนือหัว +Overhead,เหนือศีรษะ +Overload Query,แบบสอบถามเกิน +Overwrite,เขียนทับ +Owned,เจ้าของ +P.O. Date,วันที่ PO +P.O. No,ไม่มี PO +PAN Number,จำนวน PAN +PF No.,หมายเลข PF +PF Number,จำนวน PF +PI/2011/,PI/2011 / +PIN,PIN +PO,PO +PO Date,วันที่ PO +PO No,ไม่มี PO +POP3 Mail Server,เซิร์ฟเวอร์จดหมาย POP3 +POP3 Mail Server (e.g. pop.gmail.com),POP3 Mail Server (เช่น pop.gmail.com) +POP3 Mail Settings,การตั้งค่า POP3 จดหมาย +POP3 mail server (e.g. pop.gmail.com),เซิร์ฟเวอร์อีเมล POP3 (เช่น pop.gmail.com) +POP3 server e.g. (pop.gmail.com),POP3 เซิร์ฟเวอร์เช่น (pop.gmail.com) +POS Setting,การตั้งค่า POS +PR Detail,รายละเอียดประชาสัมพันธ์ +PRO,PRO +PS,PS +Package Item Details,รายละเอียดแพคเกจสินค้า +Package Items,รายการแพคเกจ +Package Weight Details,รายละเอียดแพคเกจน้ำหนัก +Packed Quantity,จำนวนบรรจุ +Packing Details,บรรจุรายละเอียด +Packing Detials,detials บรรจุ +Packing List,รายการบรรจุ +Packing Slip,สลิป +Packing Slip Item,บรรจุรายการสลิป +Packing Slip Items,บรรจุรายการสลิป +Page,หน้า +Page Break,แบ่งหน้า +Page HTML,HTML หน้า +Page Len,เลนหน้า +Page Name,ชื่อเพจ +Page Role,บทบาทหน้าที่ +Page content,เนื้อหาของหน้า +Page not found,ไม่พบหน้าเว็บ +Page to show on the website,หน้าเว็บเพื่อแสดงบนเว็บไซต์ +"Page url name (auto-generated) (add "".html"")",ชื่อ URL หน้า (สร้างขึ้นโดยอัตโนมัติ) (เพิ่ม ". html") +Paid Amount,จำนวนเงินที่ชำระ +Parameter,พารามิเตอร์ +Parent Account,บัญชีผู้ปกครอง +Parent BOM,BOM แม่ +Parent Cost Center,ศูนย์ต้นทุนผู้ปกครอง +Parent Customer Group,กลุ่มลูกค้าผู้ปกครอง +Parent Detail docname,docname รายละเอียดผู้ปกครอง +Parent Doc Type,แม่หมอประเภท +Parent Item,รายการหลัก +Parent Item Group,กลุ่มสินค้าหลัก +Parent Label,ป้ายแม่ +Parent Sales Person,ผู้ปกครองคนขาย +Parent Territory,ดินแดนปกครอง +Parenttype,Parenttype +Partially Completed,เสร็จบางส่วน +Participants,เข้าร่วม +Particulars,รายการ +Partly Billed,จำนวนมากที่สุดเป็นส่วนใหญ่ +Partly Delivered,ส่งบางส่วน +Partner,หุ้นส่วน +Partner Target Detail,รายละเอียดเป้าหมายพันธมิตร +Partner Type,ประเภทคู่ +Passport Number,หมายเลขหนังสือเดินทาง +Password,รหัสผ่าน +Password Expires in (days),รหัสผ่านจะหมดอายุใน (วัน) +Patch,แก้ไข +Patch Log,เข้าสู่ระบบแพทช์ +Pay To / Recd From,จ่ายให้ Recd / จาก +Payables,เจ้าหนี้ +Payables Group,กลุ่มเจ้าหนี้ +Payment Entries,คอมเมนต์การชำระเงิน +Payment Entry has been modified after you pulled it. Please pull it again.,รายการชำระเงินได้รับการแก้ไขหลังจากที่คุณดึงมัน กรุณาดึงมันอีกครั้ง +Payment Reconciliation,สอบการชำระเงิน +Payment Terms,เงื่อนไขการชำระเงิน +Payment days,วันชำระเงิน +Payment to Invoice Matching Tool,วิธีการชำระเงินไปที่เครื่องมือการจับคู่ใบแจ้งหนี้ +Payment to Invoice Matching Tool Detail,รายละเอียดการชำระเงินเพื่อการจับคู่เครื่องมือใบแจ้งหนี้ +Payments,วิธีการชำระเงิน +Payroll Setup,การติดตั้งเงินเดือน +Pending,คาราคาซัง +Pending Review,รอตรวจทาน +Percent,เปอร์เซ็นต์ +Percent Complete,ร้อยละสมบูรณ์ +Percentage Allocation,การจัดสรรร้อยละ +Percentage variation in quantity to be allowed while receiving or delivering this item.,การเปลี่ยนแปลงในปริมาณร้อยละที่ได้รับอนุญาตขณะที่ได้รับหรือการส่งมอบสินค้ารายการนี​​้ +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

,เปอร์เซ็นต์ที่คุณได้รับอนุญาตให้ได้รับหรือส่งมอบกับปริมาณที่สั่งซื้อ

ตัวอย่างเช่นหากคุณได้สั่งซื้อ 100 หน่วย และค่าเผื่อคุณจะ 10% แล้วคุณได้รับอนุญาตจะได้รับ 110 หน่วย

+Performance appraisal.,ประเมินผลการปฏิบัติ +Period Closing Voucher,บัตรกำนัลปิดงวด +Periodicity,การเป็นช่วง ๆ +Perm Level,Perm ระดับ +Permanent Accommodation Type,ประเภทที่พักอาศัยถาวร +Permanent Address,ที่อยู่ถาวร +Permission Control,การควบคุมการอนุญาต +Permission Engine,เครื่องยนต์ได้รับอนุญาต +Permission Level,ระดับของสิทธิ์ +Permission Levels,ระดับสิทธิ์ +Permission Manager,ผู้จัดการได้รับอนุญาต +Permission Rules,กฎการอนุญาต +Permissions,สิทธิ์ +Permissions Settings,การตั้งค่าสิทธิ์ +Permissions are automatically translated to Standard Reports and Searches,สิทธิ์มีการแปลโดยอัตโนมัติเพื่อรายงานมาตรฐานและการค้นหา +"Permissions are set on Roles and Document Types (called DocTypes) by restricting read, edit, make new, submit, cancel, amend and report rights.",สิทธิ์ถูกกำหนดบทบาทและเอกสารประเภท (เรียกว่า doctypes) โดยการ จำกัด การอ่านแก้ไขให้ใหม่ส่งยกเลิกแก้ไขและแจ้งสิทธิ +Permissions at higher levels are 'Field Level' permissions. All Fields have a 'Permission Level' set against them and the rules defined at that permissions apply to the field. This is useful incase you want to hide or make certain field read-only.,สิทธิ์ 'ระดับฟิลด์' สิทธิ์ในระดับที่สูงเป็น เขตข้อมูลทั้งหมดมีชุด 'ระดับของสิทธิ์' กับพวกเขาและกฎระเบียบที่กำหนดไว้ในการอนุญาตที่นำไปใช้กับสนาม นี้จะเป็นประโยชน์กรณีที่คุณต้องการซ่อนหรือทำให้สาขาบางแบบอ่านอย่างเดียว +"Permissions at level 0 are 'Document Level' permissions, i.e. they are primary for access to the document.",สิทธิ์ 'ระดับเอกสาร' สิทธิ์ที่ 0 ระดับคือพวกเขาเป็นหลักสำหรับการเข้าถึงเอกสาร +Permissions translate to Users based on what Role they are assigned,แปลสิทธิ์ให้ผู้ใช้งานตามสิ่งที่พวกเขาบทบาทที่ได้รับมอบหมาย +Permissions will be based on this DocType,สิทธิ์จะขึ้นอยู่กับ doctype นี้ +Person,คน +Person To Be Contacted,คนที่จะได้รับการติดต่อ +Personal Details,รายละเอียดส่วนบุคคล +Personal Email,อีเมลส่วนตัว +Phone,โทรศัพท์ +Phone No,โทรศัพท์ไม่มี +Phone No.,หมายเลขโทรศัพท์ +Pick Columns,เลือกคอลัมน์ +Pin Code,รหัส PIN +Pincode,Pincode +Place of Issue,สถานที่ได้รับการรับรอง +Plan for scheduled maintenance contracts.,การวางแผนสำหรับการกำหนดสัญญาการบำรุงรักษา +Planned Qty,จำนวนวางแผน +Planned Quantity,จำนวนวางแผน +Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.,กรุณาใส่ชื่อย่อหรือชื่อสั้นอย่างถูกต้องตามก็จะถูกเพิ่มเป็นคำต่อท้ายทุกหัวบัญชี +Please check,กรุณาตรวจสอบ +Please click on another report from the menu.,กรุณาคลิกที่รายงานจากเมนูอื่น +Please enter Bill Date,กรุณากรอกวันที่บิล +Please enter valid ,กรุณากรอกที่ถูกต้อง +Please save the Newsletter before sending.,กรุณาบันทึกชื่อก่อนที่จะส่ง +Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,เลือกดำเนินการต่อถ้าคุณยังต้องการที่จะรวมถึงความสมดุลในปีงบประมาณก่อนหน้านี้ออกไปในปีงบการเงิน +Please select: ,กรุณาเลือก: +Please specify Default Currency in Company Master \ and Global Defaults,โปรดระบุสกุลเงินเริ่มต้นใน บริษัท มาสเตอร์ \ และค่าเริ่มต้นทั่วโลก +Please specify a valid,โปรดระบุที่ถูกต้อง +Point of Sale,จุดขาย +Point-of-Sale Setting,การตั้งค่า point-of-Sale +Points,จุด +Post Graduate,หลังจบการศึกษา +Post Topic,เริ่มหัวข้อ +Posting Date,โพสต์วันที่ +Posting Time,โพสต์เวลา +Potential Sales Deal,Deal ขายที่มีศักยภาพ +Potential opportunities for selling.,โอกาสที่มีศักยภาพสำหรับการขาย +"Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.","พรีซิชั่สำหรับเขต Float (ปริมาณ, ส่วนลด, ฯลฯ ร้อยละ) เพียงสำหรับการแสดงผล ลอยจะยังคงคำนวณถึง 6 ทศนิยม" +Prefix,อุปสรรค +Present,นำเสนอ +Prevdoc DocType,DocType Prevdoc +Prevdoc Doctype,Doctype Prevdoc +Preview,ตัวอย่าง +Previous Work Experience,ประสบการณ์การทำงานก่อนหน้า +Price List,บัญชีแจ้งราคาสินค้า +Price List Currency,สกุลเงินรายการราคา +Price List Currency Conversion Rate,รายชื่อราคาสกุลเงินอัตราการแปลง +Price List Exchange Rate,ราคาอัตราแลกเปลี่ยนรายชื่อ +Price List Master,ต้นแบบรายการราคา +Price List Name,ชื่อรายการราคา +Price List Rate,อัตราราคาตามรายการ +Price List Rate*,ราคา * อัตรารายชื่อ +Price List and Currency,รายการราคาและสกุลเงิน +Price Lists and Rates,รายการราคาสินค้าและราคา +Primary,ประถม +Print Format,พิมพ์รูปแบบ +Print Heading,พิมพ์หัวเรื่อง +Print Hide,พิมพ์ซ่อน +Print Width,ความกว้างพิมพ์ +Print Without Amount,พิมพ์ที่ไม่มีจำนวน +Priority,บุริมสิทธิ์ +Private,ส่วนตัว +Process,กระบวนการ +Process Payroll,เงินเดือนกระบวนการ +Produced Quantity,จำนวนที่ผลิต +Product Categories,หมวดหมู่สินค้า +Product Category for website,ประเภทสินค้าสำหรับเว็บไซต์ +Product Enquiry,สอบถามสินค้า +Product Group,กลุ่มสินค้า +"Product Groups that are listed on the website. The first product group from this list will be listed by default on the ""Products Page""",กลุ่มสินค้าที่มีการระบุไว้บนเว็บไซต์ กลุ่มผลิตภัณฑ์แรกจากรายการนี​​้จะถูกระบุไว้ตามค่าเริ่มต้นที่ "หน้าผลิตภัณฑ์" +Product Settings,การตั้งค่าผลิตภัณฑ์ +Production,การผลิต +Production Order,สั่งซื้อการผลิต +Production Plan Item,สินค้าแผนการผลิต +Production Plan Items,แผนการผลิตรายการ +Production Plan Sales Order,แผนสั่งซื้อขาย +Production Plan Sales Orders,ผลิตคำสั่งขายแผน +Production Planning (MRP),การวางแผนการผลิต (MRP) +Production Planning Tool,เครื่องมือการวางแผนการผลิต +Products Settings,การตั้งค่าผลิตภัณฑ์ +"Products will be sorted by weight-age in default searches. More the weight-age, higher the product will appear in the list.",สินค้าจะถูกจัดเรียงโดยน้ำหนักอายุเริ่มต้นในการค้นหา เพิ่มเติมน้ำหนักอายุผลิตภัณฑ์ที่สูงขึ้นจะปรากฏในรายการ +Profile,รายละเอียด +Profile Control,ควบคุมรายละเอียด +Profile Defaults,ค่าดี​​ฟอลต์รายละเอียด +Profile Represents a User in the system.,รายละเอียดหมายถึงผู้ใช้ในระบบ +Program / Seminar Title,ชื่อโปรแกรม / สัมมนา +Project,โครงการ +Project Activity,กิจกรรมโครงการ +Project Activity Update,ปรับปรุงกิจกรรมโครงการ +Project Control,การควบคุมโครงการ +Project Costing,โครงการต้นทุน +Project Details,รายละเอียดของโครงการ +Project Milestone,Milestone โครงการ +Project Milestones,ความคืบหน้าโครงการ +Project Name,ชื่อโครงการ +Project Start Date,วันที่เริ่มต้นโครงการ +Project Tasks,งานโครงการ +Project Type,ประเภทโครงการ +Project Value,มูลค่าโครงการ +Project activity / task.,กิจกรรมโครงการ / งาน +Project master.,ต้นแบบโครงการ +Project will get saved and will be searchable with project name given,โครงการจะได้รับการบันทึกไว้และจะไม่สามารถค้นหาที่มีชื่อโครงการที่กำหนด +Projected Qty,จำนวนที่คาดการณ์ไว้ +Projects,โครงการ +Projects Home,หน้าแรกโครงการ +Prompt email sending to customers and suppliers,อีเมล์พร้อมส่งให้กับลูกค้าและซัพพลายเออร์ +Prompt for Email on Submission of,แจ้งอีเมลในการยื่น +Properties,สรรพคุณ +Property,คุณสมบัติ +Property Setter,สถานที่ให้บริการ Setter +Property Setter overrides a standard DocType or Field property,สถานที่ให้บริการ Setter แทนที่สถานที่ให้บริการหรือสาขา DocType มาตรฐาน +Property Type,ประเภทอสังหาริมทรัพย์ +Provide email id registered in company,ให้ ID อีเมลที่ลงทะเบียนใน บริษัท +Public,สาธารณะ +Published,เผยแพร่ +Pull Emails from the Inbox and attach them as Communication records (for known contacts).,ดึงอีเมลจากกล่องขาเข้าและแนบพวกเขาเป็นบันทึกการสื่อสาร (สำหรับรายชื่อที่รู้จักกัน) +Pull Opportunity Detail,ดึงรายละเอียดโอกาส +Pull Payment Entries,ดึงคอมเมนต์การชำระเงิน +Pull Purchase Order Details,ดึงรายละเอียดการสั่งซื้อ +Pull Quotation Items,ดึงรายการใบเสนอราคา +Pull Sales Order Items,ดึงรายการสั่งซื้อขาย +Pull items from Sales Order mentioned in the above table.,ดึงรายการจากคำสั่งขายที่กล่าวถึงในตารางข้างต้น +Pull sales orders (pending to deliver) based on the above criteria,ดึงยอดขาย (รอการส่งมอบ) คำสั่งตามเกณฑ์ดังกล่าวข้างต้น +Pur Order,สั่งซื้อ Pur +Pur Receipt,ใบเสร็จรับเงิน Pur +Purchase,ซื้อ +Purchase Analytics,Analytics ซื้อ +Purchase Common,ซื้อสามัญ +Purchase Date,สั่งซื้อวันที่ +Purchase Details,รายละเอียดการซื้อ +Purchase Discounts,ส่วนลดการซื้อ +Purchase Document No,สั่งซื้อไม่มีเอกสาร +Purchase Document Type,ซื้อเอกสารประเภท +Purchase Invoice,ซื้อใบแจ้งหนี้ +Purchase Invoice Advance,ใบแจ้งหนี้การซื้อล่วงหน้า +Purchase Invoice Advances,ซื้อใบแจ้งหนี้เงินทดรอง +Purchase Invoice Item,สั่งซื้อสินค้าใบแจ้งหนี้ +Purchase Order,ใบสั่งซื้อ +Purchase Order Date,สั่งซื้อวันที่สั่งซื้อ +Purchase Order Item,สั่งซื้อสินค้าสั่งซื้อ +Purchase Order Item No,สั่งซื้อสินค้าสั่งซื้อไม่มี +Purchase Order Item Supplied,รายการสั่งซื้อที่จำหน่าย +Purchase Order Items,ซื้อสินค้าสั่งซื้อ +Purchase Order Items Supplied,รายการสั่งซื้อที่จำหน่าย +Purchase Order Items To Be Received,รายการสั่งซื้อที่จะได้รับ +Purchase Order Message,สั่งซื้อสั่งซื้อข้อความ +Purchase Order Required,จำเป็นต้องมีการสั่งซื้อ +Purchase Order sent by customer,ใบสั่งซื้อที่ส่งมาจากลูกค้า +Purchase Orders given to Suppliers.,ใบสั่งซื้อที่กำหนดให้ผู้ซื้อผู้ขาย +Purchase Receipt,ซื้อใบเสร็จรับเงิน +Purchase Receipt Item,ซื้อสินค้าใบเสร็จรับเงิน +Purchase Receipt Item Supplied,รายการรับซื้อจำหน่าย +Purchase Receipt Item Supplieds,สั่งซื้อสินค้าใบเสร็จรับเงิน Supplieds +Purchase Receipt Items,ซื้อสินค้าใบเสร็จรับเงิน +Purchase Receipt Message,ซื้อใบเสร็จรับเงินข้อความ +Purchase Receipt No,ใบเสร็จรับเงินซื้อไม่มี +Purchase Receipt Required,รับซื้อที่จำเป็น +Purchase Request,ซื้อขอ +Purchase Request Item,สั่งซื้อสินค้าขอ +Purchase Requisition Details,สั่งซื้อรายละเอียดใบเบิก +Purchase Return,ซื้อกลับ +Purchase Returned,ซื้อกลับ +Purchase Returns,ผลตอบแทนที่ได้ซื้อ +Purchase Taxes and Charges,ภาษีซื้อและค่าบริการ +Purchase Taxes and Charges Master,ภาษีซื้อและปริญญาโทค่า +Purpose,ความมุ่งหมาย +Purpose must be one of ,วัตถุประสงค์ต้องเป็นหนึ่งใน +QA Inspection,QA การตรวจสอบ +QA No,QA ไม่มี +QAI/11-12/,QAI/11-12 / +QTN,QTN +Qty,จำนวน +Qty Consumed Per Unit,Consumed จำนวนต่อหน่วย +Qty To Manufacture,จำนวนการผลิต +Qty as per Stock UOM,จำนวนตามสต็อก UOM +Qualification,คุณสมบัติ +Quality,คุณภาพ +Quality Inspection,การตรวจสอบคุณภาพ +Quality Inspection Parameters,พารามิเตอร์ตรวจสอบคุณภาพ +Quality Inspection Reading,การตรวจสอบคุณภาพการอ่าน +Quality Inspection Readings,การตรวจสอบคุณภาพการอ่าน +Quantity,ปริมาณ +Quantity Requested for Purchase,ปริมาณที่ขอซื้อ +Quantity already manufactured,จำนวนผลิตแล้ว +Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,ปริมาณของรายการที่ได้รับหลังจากการผลิต / repacking จากปริมาณที่กำหนดของวัตถุดิบ +Quantity should be equal to Manufacturing Quantity. ,จำนวนควรจะเท่ากับจำนวนการผลิต +Quarter,หนึ่งในสี่ +Quarterly,ทุกสามเดือน +Query,สอบถาม +Query Options,ตัวเลือกแบบสอบถาม +Query Report,รายงานแบบสอบถาม +Question,คำถาม +Quick Help for Setting Permissions,ความช่วยเหลือด่วนสำหรับการตั้งค่าสิทธิ์ +Quick Help for User Properties,ความช่วยเหลือด่วนสำหรับคุณสมบัติของผู้ใช้ +Quotation,ใบเสนอราคา +Quotation Date,วันที่ใบเสนอราคา +Quotation Item,รายการใบเสนอราคา +Quotation Items,รายการใบเสนอราคา +Quotation Lost Reason,ใบเสนอราคา Lost เหตุผล +Quotation Message,ข้อความใบเสนอราคา +Quotation No,ใบเสนอราคาไม่มี +Quotation No.,หมายเลขใบเสนอราคา +Quotation Sent,ใบเสนอราคาส่ง +Quotation To,ใบเสนอราคาเพื่อ +Quotation no against which this Sales Order is made ,ใบเสนอราคากับที่ไม่มีการสั่งซื้อการขายนี้จะทำ +Quotes to Leads or Customers.,เพื่อนำไปสู่​​คำพูดหรือลูกค้า +Raise Exception,เพิ่มการยกเว้น +Raise Material Request,ยกคำขอวัสดุ +Raise Material Request when stock reaches re-order level,ยกคำขอวัสดุเมื่อหุ้นถึงระดับใหม่สั่ง +Raise Production Order,ยกสั่งซื้อการผลิต +Raised By,โดยยก +Raised By (Email),โดยยก (อีเมล์) +Random,สุ่ม +Range,เทือกเขา +Rate,อัตรา +Rate ,อัตรา +Rate Of Materials Based On,อัตราวัสดุตาม +Rate at which Customer Currency is converted to customer's base currency,อัตราที่สกุลเงินลูกค้าจะแปลงเป็นสกุลเงินหลักของลูกค้า +Rate at which Price list currency is converted to company's base currency,อัตราที่สกุลเงินรายการราคาจะถูกแปลงเป็นสกุลเงินหลักของ บริษัท +Rate at which Price list currency is converted to customer's base currency,อัตราที่สกุลเงินรายการราคาจะถูกแปลงเป็นสกุลเงินหลักของลูกค้า +Rate at which customer's currency is converted to company's base currency,อัตราที่สกุลเงินของลูกค้าจะถูกแปลงเป็นสกุลเงินหลักของ บริษัท +Rate at which supplier's currency is converted to company's base currency,อัตราที่สกุลเงินของซัพพลายเออร์จะถูกแปลงเป็นสกุลเงินหลักของ บริษัท +Rate at which this tax is applied,อัตราที่ภาษีนี้จะถูกใช้ +Rate*,* อัตรา +Raw Material Details,รายละเอียดวัตถุดิบ +Raw Material Item Code,วัสดุดิบรหัสสินค้า +Raw Materials Supplied Cost,วัตถุดิบที่จำหน่ายค่าใช้จ่าย +Re-Calculate Values,ค่าคำนวณใหม่ +Re-Order Level,ระดับ Re-Order +Re-Order Qty,จำนวน Re-Order +Re-order,Re-order +Re-order Level,ระดับ Re-order +Re-order Qty,จำนวน Re-order +Read,อ่าน +Read Only,อ่านอย่างเดียว +Reading 1,Reading 1 +Reading 10,อ่าน 10 +Reading 2,Reading 2 +Reading 3,Reading 3 +Reading 4,Reading 4 +Reading 5,Reading 5 +Reading 6,Reading 6 +Reading 7,อ่าน 7 +Reading 8,อ่าน 8 +Reading 9,อ่าน 9 +Reason,เหตุผล +Reason for Leaving,เหตุผลที่ลาออก +Reason for Resignation,เหตุผลในการลาออก +Recalculate,คำนวณ +Recd Quantity,จำนวน Recd +Receivables,ลูกหนี้ +Receivables Group,กลุ่มลูกหนี้ +Received Date,วันที่ได้รับ +Received Qty,จำนวนที่ได้รับ +Receiver List,รายชื่อผู้รับ +Receiver Name,ชื่อผู้รับ +Receiver Parameter,พารามิเตอร์รับ +Recent,เมื่อเร็ว ๆ นี้ +Recipient,ผู้รับ +Recipients,ผู้รับ +Reconciliation Data,ข้อมูลการตรวจสอบ +Reconciliation HTML,HTML สมานฉันท์ +Reconciliation JSON,JSON สมานฉันท์ +Recurring Id,รหัสที่เกิดขึ้น +Recurring Invoice,ใบแจ้งหนี้ที่เกิดขึ้นประจำ +Recurring Type,ประเภทที่เกิดขึ้น +Ref Code,รหัส Ref +Ref Doc should be submitted?,Ref หมอควรจะส่ง? +Ref DocType,DocType Ref +Ref Name,ชื่อ Ref +Ref Rate,อัตรา Ref +Ref Rate ,อัตรา Ref +Ref Rate*,* อัตรา Ref +Ref SQ,SQ Ref +Ref Type,ประเภท Ref +Reference,การอ้างอิง +Reference Date,วันที่อ้างอิง +Reference DocType Key,คีย์อ้างอิง DocType +Reference Docname Key,คีย์อ้างอิง Docname +Reference Name,ชื่ออ้างอิง +Reference Number,เลขที่อ้างอิง +Reference Type,ชนิดการอ้างอิง +Refresh,รีเฟรช +Registration Details,รายละเอียดการลงทะเบียน +Registration Info,ข้อมูลการลงทะเบียน +Reject HTML,ปฏิเสธ HTML +Rejected,ปฏิเสธ +Rejected Quantity,จำนวนปฏิเสธ +Rejected Serial No,หมายเลขเครื่องปฏิเสธ +Rejected Warehouse,คลังสินค้าปฏิเสธ +Related Page,เพจที่เกี่ยวข้อง +Relation,ความสัมพันธ์ +Relieving Date,บรรเทาวันที่ +Remark,คำพูด +Remarks,ข้อคิดเห็น +Remove,ถอด +Remove Bookmark,ลบบุ๊คมาร์ค +Rename,ตั้งชื่อใหม่ +Rename Tool,เปลี่ยนชื่อเครื่องมือ +Rented,เช่า +Repeat on Day of Month,ทำซ้ำในวันเดือน +Replace,แทนที่ +Replace Item / BOM in all BOMs,แทนที่รายการ / BOM ใน BOMs ทั้งหมด +"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",แทนที่ BOM โดยเฉพาะใน BOMs อื่น ๆ ทั้งหมดที่ถูกนำมาใช้ มันจะเข้ามาแทนที่การเชื่อมโยง BOM เก่าปรับปรุงค่าใช้จ่ายและให้ชีวิตใหม่ "ระเบิดรายการ BOM" ตารางเป็นต่อใหม่ BOM +Replied,Replied +Report,รายงาน +Report Date,รายงานวันที่ +Report Hide,แจ้งซ่อน +Report Name,ชื่อรายงาน +Report Saved,รายงานที่บันทึกไว้ +Report Script,สคริปต์รายงาน +Report Server Script,รายงานสคริปต์เซิร์ฟเวอร์ +Report was not saved (there were errors),รายงานไม่ถูกบันทึกไว้ (มีข้อผิดพลาด) +Reports,รายงาน +Reports to,รายงานไปยัง +Represents the states allowed in one document and role assigned to change the state.,หมายถึงรัฐที่ได้รับอนุญาตในเอกสารหนึ่งและบทบาทที่ได้รับมอบหมายในการเปลี่ยนสถานะ +Reqd,reqd +Reqd By Date,reqd โดยวันที่ +Request Material for Transfer or Purchase.,วัสดุสำหรับการโอนเงินขอซื้อหรือ +Request Type,ชนิดของการร้องขอ +Request for Information,การร้องขอข้อมูล +Request for purchase.,ขอซื้อ +Requested By,การร้องขอจาก +Required By,ที่จำเป็นโดย +Required Date,วันที่ที่ต้องการ +Required Qty,จำนวนที่ต้องการ +Required only for sample item.,ที่จำเป็นสำหรับรายการตัวอย่าง +Required raw materials issued to the supplier for producing a sub - contracted item.,ต้องออกวัตถ​​ุดิบเพื่อจำหน่ายสำหรับการผลิตย่อย - รายการสัญญา +Reseller,ผู้ค้าปลีก +Reserved Quantity,จำนวนสงวน +Reserved Warehouse,คลังสินค้าสงวน +Resignation Letter Date,วันที่ใบลาออก +Resolution,ความละเอียด +Resolution Date,วันที่ความละเอียด +Resolution Details,รายละเอียดความละเอียด +Resolved By,แก้ไขได้โดยการ +Restrict IP,จำกัด IP +Restrict submission rights based on amount,การ จำกัด สิทธิยื่นตามจำนวนเงินที่ +Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),จำกัด ผู้ใช้จากที่อยู่ IP นี้เท่านั้น ที่อยู่ IP หลายสามารถเพิ่มโดยการแยกด้วยเครื่องหมายจุลภาค ยังยอมรับที่อยู่ IP บางส่วนเช่น (111.111.111) +Restricting By User,จำกัด ของผู้ใช้ +Retailer,พ่อค้าปลีก +Return Date,กลับวันที่ +Return Type,กลับชนิด +Returned Qty,จำนวนกลับ +Review Date,ทบทวนวันที่ +Rgt,RGT +Right,ขวา +Role,บทบาท +Role Name,ชื่อบทบาท +Roles,บทบาท +Roles Assigned,บทบาทที่ได้รับมอบหมาย +Roles Assigned To User,บทบาทที่ได้รับมอบหมายให้กับผู้ใช้ +Roles HTML,HTML บทบาท +Rounded Total,รวมกลม +Rounded Total (Export),รวมกลม (ส่งออก) +Row,แถว +Row #,แถว # +Row # ,แถว # +Rule Definition,การกำหนดกฎ +Rule Name,ชื่อกฎ +Rule Priority,ลำดับความสำคัญของกฎ +Rule Status,สถานะกฎ +Rules defining transition of state in the workflow.,กฎการกำหนดเปลี่ยนแปลงของรัฐในเวิร์กโฟลว์ +"Rules for how states are transitions, like next state and which role is allowed to change state etc.",กฎสำหรับวิธีการเปลี่ยนรัฐเช่นรัฐต่อไปและบทบาทที่ได้รับอนุญาตให้เปลี่ยนสถานะ ฯลฯ +Run,วิ่ง +SLE Exists,SLE มีอยู่ +SMS,SMS +SMS Center,ศูนย์ SMS +SMS Control,ควบคุมการส่ง SMS +SMS Gateway URL,URL เกตเวย์ SMS +SMS Log,เข้าสู่ระบบ SMS +SMS Parameter,พารามิเตอร์ SMS +SMS Parameters,พารามิเตอร์ SMS +SMS Receiver,รับ SMS +SMS Sender Name,ส่ง SMS ชื่อ +SMS Settings,การตั้งค่า SMS +SMTP Server (e.g. smtp.gmail.com),SMTP Server (smtp.gmail.com เช่น) +SO,ดังนั้น +SO Date,ดังนั้นวันที่ +SO Detail ,ดังนั้นรายละเอียด +SO Pending Qty,ดังนั้นรอจำนวน +SO/10-11/,SO/10-11 / +SO1112,SO1112 +SQTN,SQTN +STE,STE +SUP,SUP +SUPP,SUPP +SUPP/10-11/,SUPP/10-11 / +Salary,เงินเดือน +Salary Information,ข้อมูลเงินเดือน +Salary Manager,Manager เงินเดือนที่ต้องการ +Salary Mode,โหมดเงินเดือน +Salary Slip,สลิปเงินเดือน +Salary Slip Deduction,หักเงินเดือนสลิป +Salary Slip Earning,สลิปเงินเดือนรายได้ +Salary Structure,โครงสร้างเงินเดือน +Salary Structure Deduction,หักโครงสร้างเงินเดือน +Salary Structure Earning,โครงสร้างเงินเดือนรายได้ +Salary Structure Earnings,กำไรโครงสร้างเงินเดือน +Salary components.,ส่วนประกอบเงินเดือน +Sales,ขาย +Sales Analytics,Analytics ขาย +Sales BOM,BOM ขาย +Sales BOM Help,ช่วยเหลือ BOM ขาย +Sales BOM Item,รายการ BOM ขาย +Sales BOM Items,ขายสินค้า BOM +Sales Browser,เบราว์เซอร์ยอดขาย +Sales Browser Control,ควบคุมเบราว์เซอร์ยอดขาย +Sales Common,ขายทั่วไป +Sales Dashboard,แผงควบคุมการขาย +Sales Details,รายละเอียดการขาย +Sales Discounts,ส่วนลดการขาย +Sales Email Settings,ขายการตั้งค่าอีเมล +Sales Extras,พิเศษขาย +Sales Invoice,ขายใบแจ้งหนี้ +Sales Invoice Advance,ขายใบแจ้งหนี้ล่วงหน้า +Sales Invoice Item,รายการใบแจ้งหนี้การขาย +Sales Invoice Message,ข้อความขายใบแจ้งหนี้ +Sales Invoice No,ขายใบแจ้งหนี้ไม่มี +Sales Order,สั่งซื้อขาย +Sales Order Date,วันที่สั่งซื้อขาย +Sales Order Item,รายการสั่งซื้อการขาย +Sales Order Items,ขายสินค้าสั่งซื้อ +Sales Order Message,ข้อความสั่งซื้อขาย +Sales Order No,สั่งซื้อยอดขาย +Sales Order Required,สั่งซื้อยอดขายที่ต้องการ +Sales Orders Pending To Be Delivered,คำสั่งขายที่รอดำเนินการที่จะส่งมอบ +Sales Orders Pending to be Delivered,คำสั่งขายที่รอดำเนินการที่จะส่งมอบ +Sales Partner,พันธมิตรการขาย +Sales Partner Details,ขายรายละเอียดพันธมิตร +Sales Partner Name,ชื่อพันธมิตรขาย +Sales Partner Target,เป้าหมายยอดขายพันธมิตร +Sales Person,คนขาย +Sales Person Name,ชื่อคนขาย +Sales Person Targets,ขายเป้าหมายคน +Sales Rate,อัตราการขาย +Sales Return,ขายกลับ +Sales Returns,ผลตอบแทนที่ได้ขาย +Sales Taxes and Charges,ภาษีการขายและค่าใช้จ่าย +Sales Taxes and Charges Master,ภาษีการขายและค่าใช้จ่ายปริญญาโท +Sales Team,ทีมขาย +Sales Team Details,ขายรายละเอียดทีม +Sales Team1,ขาย Team1 +Sales and Purchase,การขายและการซื้อ +Sales and Purchase Return Item,การขายและการซื้อสินค้ากลับ +Sales and Purchase Return Items,การขายและการซื้อรายการย้อนกลับ +Sales and Purchase Return Tool,การขายและการซื้อเครื่องมือย้อนกลับ +Sales campaigns,แคมเปญการขาย +Sales persons and targets,คนขายและเป้าหมาย +Sales taxes template.,ภาษีการขายแม่ +Sales territories.,เขตการขาย +Salutation,ประณม +Sample Size,ขนาดของกลุ่มตัวอย่าง +Sanctioned Amount,จำนวนตามทำนองคลองธรรม +Sandbox,sandbox +Saturday,วันเสาร์ +Save,ประหยัด +Schedule,กำหนด +Scheduled,กำหนด +Scheduled Confirmation Date,วันที่ยืนยันกำหนด +Scheduled Date,วันที่กำหนด +Scheduler Log,เข้าสู่ระบบการจัดตารางเวลา +School/University,โรงเรียน / มหาวิทยาลัย +Score (0-5),คะแนน (0-5) +Score Earned,คะแนนที่ได้รับ +Scrap %,เศษ% +Script,ต้นฉบับ +Script Type,ประเภทสคริปต์ +Script to attach to all web pages.,สคริปต์ที่จะแนบไปหน้าเว็บทั้งหมด +Search,ค้นหา +Search Criteria,เกณฑ์การค้นหา +Search Fields,เขตข้อมูลการค้นหา +Search Help,ค้นหาช่วยเหลือ +Seasonality for setting budgets.,ฤดูกาลสำหรับงบประมาณการตั้งค่า +Section Break,แบ่งส่วน +Security Settings,การตั้งค่าการรักษาความปลอดภัย +Segment Name,ชื่อส่วน +Select,เลือก +"Select ""Yes"" for sub - contracting items",เลือก "Yes" สำหรับ sub - รายการที่ทำสัญญา +"Select ""Yes"" if this item is to be sent to a customer or received from a supplier as a sample. Delivery notes and Purchase Receipts will update stock levels but there will be no invoice against this item.",เลือก "ใช่" ถ้ารายการนี​​้จะถูกส่งให้กับลูกค้าหรือได้รับจากผู้จัดจำหน่ายเป็นตัวอย่าง บันทึกการจัดส่งและรายรับซื้อจะปรับปรุงระดับสต็อก แต่จะมีใบแจ้งหนี้กับรายการนี​​้ไม่มี +"Select ""Yes"" if this item is used for some internal purpose in your company.",เลือก "ใช่" ถ้ารายการนี​​้จะใช้เพื่อวัตถุประสงค์ภายในบางอย่างใน บริษัท ของคุณ +"Select ""Yes"" if this item represents some work like training, designing, consulting etc.",เลือก "ใช่" ถ้ารายการนี​​้แสดงให้เห็นถึงการทำงานบางอย่างเช่นการฝึกอบรมการออกแบบให้คำปรึกษา ฯลฯ +"Select ""Yes"" if you are maintaining stock of this item in your Inventory.",เลือก "ใช่" ถ้าคุณจะรักษาสต็อกของรายการนี​​้ในสินค้าคงคลังของคุณ +"Select ""Yes"" if you supply raw materials to your supplier to manufacture this item.",เลือก "ใช่" ถ้าคุณจัดหาวัตถุดิบเพื่อจำหน่ายของคุณในการผลิตรายการนี​​้ +Select All,เลือกทั้งหมด +Select Attachments,เลือกสิ่งที่แนบ +Select Budget Distribution to unevenly distribute targets across months.,เลือกการกระจายงบประมาณที่จะไม่สม่ำเสมอกระจายทั่วเป้าหมายเดือน +"Select Budget Distribution, if you want to track based on seasonality.",เลือกการกระจายงบประมาณถ้าคุณต้องการที่จะติดตามจากฤดูกาล +Select Customer,เลือกลูกค้า +Select Digest Content,เลือกเนื้อหาสำคัญ +Select DocType,เลือก DocType +Select Document Type,เลือกประเภทของเอกสาร +Select Document Type or Role to start.,เลือกประเภทของเอกสารหรือบทบาทที่จะเริ่มต้น +Select Form,เลือกฟอร์ม +Select Items from Delivery Note,เลือกรายการจากบันทึกการส่งมอบ +Select Items from Purchase Order,เลือกรายการจากใบสั่งซื้อ +Select Items from Purchase Receipt,เลือกรายการจากรับซื้อ +Select Items from Sales Order,เลือกรายการจากคำสั่งขาย +Select Material Request,เลือกการร้องขอวัสดุ +Select PR,PR เลือก +Select Print Format,เลือกรูปแบบพิมพ์ +Select Print Heading,เลือกพิมพ์หัวเรื่อง +Select Report Name,เลือกชื่อรายงาน +Select Role,เลือกบทบาท +Select Sales Orders,เลือกคำสั่งซื้อขาย +Select Sales Orders from which you want to create Production Orders.,เลือกขายที่คุณต้องการที่จะสร้างคำสั่งการผลิตสั่งซื้อ +Select Shipping Address,เลือกสถานที่จัด +Select Supplier Quotation,เลือกใบเสนอราคาของผู้ผลิต +Select Terms and Conditions,เลือกข้อตกลงและเงื่อนไข +Select Transaction,เลือกรายการ +Select Type,เลือกประเภท +Select User or Property to start.,เลือกผู้ใช้หรือทรัพย์สินที่จะเริ่มต้น +Select account head of the bank where cheque was deposited.,เลือกหัวที่บัญชีของธนาคารที่ตรวจสอบถูกวาง +Select company name first.,เลือกชื่อ บริษัท แรก +Select dates to create a new ,เลือกวันที่จะสร้างใหม่ +Select name of Customer to whom project belongs,เลือกชื่อของลูกค้าซึ่งเป็นโครงการ +Select or drag across dates to create a new event.,เลือกหรือลากผ่านวันที่เพื่อสร้างกิจกรรมใหม่ +Select template from which you want to get the Goals,เลือกแม่แบบที่คุณต้องการที่จะได้รับเป้าหมาย +Select the Employee for whom you are creating the Appraisal.,เลือกพนักงานสำหรับคนที่คุณกำลังสร้างการประเมิน +Select the currency in which price list is maintained,เลือกสกุลเงินที่รายการราคาจะยังคง +Select the label after which you want to insert new field.,เลือกป้ายชื่อหลังจากที่คุณต้องการแทรกเขตข้อมูลใหม่ +Select the period when the invoice will be generated automatically,เลือกระยะเวลาเมื่อใบแจ้งหนี้จะถูกสร้างขึ้นโดยอัตโนมัติ +"Select the price list as entered in ""Price List"" master. This will pull the reference rates of items against this price list as specified in ""Item"" master.",เลือกรายการราคาตามที่ป้อนใน "ราคาตามรายการ" ต้นแบบ นี้จะดึงอัตราแลกเปลี่ยนอ้างอิงของรายการกับรายการราคานี้ตามที่ระบุไว้ใน "รายการ" ต้นแบบ +Select the relevant company name if you have multiple companies,เลือกชื่อ บริษัท ที่เกี่ยวข้องถ้าคุณมีหลาย บริษัท +Select the relevant company name if you have multiple companies.,เลือกชื่อ บริษัท ที่เกี่ยวข้องถ้าคุณมีหลาย บริษัท +Select who you want to send this newsletter to,เลือกคนที่คุณต้องการส่งจดหมายข่าวนี้ให้ +Selected Attendance date will comes in the attendance template.,วันที่เลือกจะเข้าร่วมมาในการเข้าร่วมประชุมแม่ +"Selecting ""Yes"" will allow this item to appear in Purchase Order , Purchase Receipt.","เลือก "ใช่" จะช่วยให้รายการนี​​้จะปรากฏในใบสั่งซื้อรับซื้อ," +"Selecting ""Yes"" will allow this item to figure in Sales Order, Delivery Note","เลือก "ใช่" จะช่วยให้รายการนี​​้จะคิดในการสั่งซื้อการขาย, การจัดส่งสินค้าหมายเหตุ" +"Selecting ""Yes"" will allow you to create Bill of Material showing raw material and operational costs incurred to manufacture this item.",เลือก "ใช่" จะช่วยให้คุณสามารถสร้างบิลของวัสดุแสดงวัตถุดิบและต้นทุนการดำเนินงานที่เกิดขึ้นในการผลิตรายการนี​​้ +"Selecting ""Yes"" will allow you to make a Production Order for this item.",เลือก "ใช่" จะช่วยให้คุณที่จะทำให้การสั่งซื้อการผลิตสำหรับรายการนี​​้ +"Selecting ""Yes"" will give a unique identity to each entity of this item which can be viewed in the Serial No master.",เลือก "Yes" จะให้เอกลักษณ์เฉพาะของแต่ละองค์กรเพื่อรายการนี​​้ซึ่งสามารถดูได้ในหลักหมายเลขเครื่อง +Selling,ขาย +Selling Home,ขายบ้าน +Send,ส่ง +Send Autoreply,ส่ง autoreply +Send Email,ส่งอีเมล์ +Send From,ส่งเริ่มต้นที่ +Send Invite Email,ส่งอีเมลคำเชิญ +Send Me A Copy,ส่งสำเนา +"Send Newsletters to your contacts, leads.",ส่งจดหมายไปยังผู้ติดต่อของคุณนำไปสู่ +Send SMS,ส่ง SMS +Send To,ส่งให้ +Send To Type,ส่งถึงพิมพ์ +"Send an email to users of role ""Material Manager"" and ""Purchase Manager"" when re-order level is crossed.",ส่งอีเมลไปยังผู้ใช้ของบทบาท "ผู้จัดการวัสดุ" และ "ผู้จัดการซื้อ" เมื่อระดับอีกครั้งเพื่อจะข้าม +Send automatic emails to Contacts on Submitting transactions.,ส่งอีเมลโดยอัตโนมัติไปยังรายชื่อติดต่อบนส่งธุรกรรม +"Send bulk SMS to leads, customers, contacts",ส่ง SMS เป็นกลุ่มเพื่อนำไปสู่​​ลูกค้าที่ติดต่อ +Send mass SMS to your contacts,ส่ง SMS มวลการติดต่อของคุณ +Send regular summary reports via Email.,ส่งรายงานสรุปปกติผ่านทางอีเมล์ +Send to this list,ส่งมาที่รายการนี​​้ +Sender,ผู้ส่ง +Sender Name,ชื่อผู้ส่ง +"Sending newsletters is not allowed for Trial users, \ to prevent abuse of this feature.","การส่งจดหมายข่าวไม่อนุญาตให้ผู้ใช้ทดลอง, \ เพื่อป้องกันการละเมิดคุณลักษณะนี้" +Sent Mail,จดหมายที่ส่ง +Sent On,ส่ง +Sent Quotation,ใบเสนอราคาส่ง +Separate production order will be created for each finished good item.,เพื่อผลิตแยกจะถูกสร้างขึ้นสำหรับรายการที่ดีในแต่ละสำเร็จรูป +Serial No,อนุกรมไม่มี +Serial No Details,รายละเอียดหมายเลขเครื่อง +Serial No Service Contract Expiry,อนุกรมไม่มีหมดอายุสัญญาบริการ +Serial No Status,สถานะหมายเลขเครื่อง +Serial No Warranty Expiry,อนุกรมหมดอายุไม่มีการรับประกัน +Serialized Item: ',รายการต่อเนื่อง: ' +Series,ชุด +Series Detail,รายละเอียดชุด +Series List for this Transaction,รายชื่อชุดสำหรับการทำธุรกรรมนี้ +Series Options,ตัวเลือกชุด +Server,เซิร์ฟเวอร์ +Server Script,สคริปต์เซิร์ฟเวอร์ +Service Address,ที่อยู่บริการ +Service Person,ผู้ให้บริการ +Session Expired. Logging you out,เซสชันหมดอายุ คุณออกจากระบบ +Session Expires in (time),เซสชั่นจะหมดอายุใน (เวลา) +Session Expiry,หมดอายุเซสชั่น +Session Expiry in Hours e.g. 06:00,หมดอายุในเซสชั่นชั่วโมงเช่น 06:00 +Set From Image,ตั้งเริ่มต้น +Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,กำหนดงบประมาณกลุ่มฉลาดรายการในมณฑลนี้ คุณยังสามารถรวมฤดูกาลโดยการตั้งค่าการกระจาย +Set Login and Password if authentication is required.,ตั้งเข้าสู่ระบบและรหัสผ่านหากตร​​วจสอบจะต้อง +Set New Password,ตั้งค่ารหัสผ่านใหม่ +Set Value,ตั้งค่า +"Set a new password and ""Save""",ตั้งรหัสผ่านใหม่และ "บันทึก" +Set default values for entry,ตั้งค่าเริ่มต้นสำหรับรายการ +Set default values for users (also used for permissions).,ตั้งค่าเริ่มต้นสำหรับผู้ใช้ (ยังใช้สำหรับสิทธิ์) +Set multiple numbering series for transactions,ตั้งชุดเลขหลายสำหรับการทำธุรกรรม +Set permissions on transactions / masters,กำหนดสิทธิ์ในการทำธุรกรรม / โท +Set prefix for numbering series on your transactions,กำหนดคำนำหน้าสำหรับหมายเลขชุดทำธุรกรรมของคุณ +Set targets Item Group-wise for this Sales Person.,ตั้งเป้ากลุ่มสินค้าที่ชาญฉลาดสำหรับการนี​​้คนขาย +Set the POP3 email settings to pull emails directly from a mailbox and create Support Tickets,ตั้งการตั้งค่าอีเมล POP3 เพื่อดึงอีเมลโดยตรงจากกล่องจดหมายและสร้างตั๋วสนับสนุน +Set workflow rules.,ตั้งกฎเวิร์กโฟลว์ +"Set your background color, font and image (tiled)",ตั้งค่าพื้นหลังสีแบบอักษรของคุณและภาพ (กระเบื้อง) +"Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.",ตั้งค่าของคุณอีเมล SMTP ขาออกที่นี่ ระบบทั้งหมดที่สร้างการแจ้งเตือนอีเมลจะไปจากที่เซิร์ฟเวอร์อีเมลนี้ หากคุณไม่แน่ใจว่าเว้นว่างไว้เพื่อใช้เซิร์ฟเวอร์ ERPNext (อีเมลจะยังคงถูกส่งจาก id อีเมลของคุณ) หรือติดต่อผู้ให้บริการอีเมลของคุณ +Setting Account Type helps in selecting this Account in transactions.,ประเภทบัญชีการตั้งค่าช่วยในการเลือกบัญชีนี้ในการทำธุรกรรม +Settings for About Us Page.,การตั้งค่าสำหรับหน้าเกี่ยวกับเรา +Settings for Contact Us Page,การตั้งค่าสำหรับหน้าติดต่อเรา +Settings for Contact Us Page.,การตั้งค่าสำหรับหน้าติดต่อเรา +Settings for Product Catalog on the website,การตั้งค่าสำหรับแคตตาล็อกสินค้าบนเว็บไซต์ +Settings for Product Catalog on the website.,การตั้งค่าสำหรับแคตตาล็อกสินค้าบนเว็บไซต์ +Settings for the About Us Page,การตั้งค่าสำหรับหน้าเกี่ยวกับเรา +"Settings to extract Job Applicants from a mailbox e.g. ""jobs@example.com""",การตั้งค่าที่จะดึงผู้สมัครงานจากกล่องจดหมายเช่น "jobs@example.com" +Setup,การติดตั้ง +Setup Control,ควบคุมการติดตั้ง +Setup Series,ชุดติดตั้ง +Setup of fonts and background.,การติดตั้งแบบอักษรและพื้นหลัง +"Setup of top navigation bar, footer and logo.",การติดตั้งจากด้านบนแถบนำทางท้ายและโลโก้ +Setup outgoing SMS via your bulk SMS provider,ติดตั้ง SMS ขาออกผ่านทางผู้ให้ SMS ของคุณเป็นกลุ่ม +Setup to pull emails from support email account,ติดตั้งเพื่อดึงอีเมลจากบัญชีอีเมลสนับสนุน +Ship To,เรือ +Shipping Address,ที่อยู่จัดส่ง +Shipping Address Name,ชื่อที่อยู่จัดส่ง +Shipping Details,รายละเอียดการจัดส่งสินค้า +Short biography for website and other publications.,ชีวประวัติสั้นสำหรับเว็บไซต์และสิ่งพิมพ์อื่น ๆ +Shortcut,ทางลัด +"Show ""In Stock"" or ""Not in Stock"" based on stock available in this warehouse.",แสดง "ในสต็อก" หรือ "ไม่อยู่ในสต็อก" บนพื้นฐานของหุ้นที่มีอยู่ในคลังสินค้านี้ +Show / Hide Modules,แสดง / ซ่อนโมดูล +Show Details,แสดงรายละเอียด +Show Filters,แสดงตัวกรอง +Show Price in Website (if set),แสดงราคาในเว็บไซต์ (ถ้าตั้งค่า) +Show Print First,แสดงพิมพ์ครั้งแรก +Show a slideshow at the top of the page,สไลด์โชว์ที่ด้านบนของหน้า +Show in Website,แสดงในเว็บไซต์ +Show rows with zero values,แสดงแถวที่มีค่าศูนย์ +Show this slideshow at the top of the page,แสดงภาพสไลด์นี้ที่ด้านบนของหน้า +"Show, hide modules",แสดงซ่อนโมดูล +Showing only for,แสดงเฉพาะสำหรับ +Signature,ลายเซ็น +Signature to be appended at the end of every email,ลายเซ็นที่จะต่อท้ายของอีเมลทุก +Simplify entry forms by disabling features,ลดความซับซ้อนของรูปแบบรายการโดยปิดใช้งานคุณลักษณะ +Single,เดียว +Single unit of an Item.,หน่วยเดียวของรายการ +Sky,ท้องฟ้า +Slideshow,สไลด์โชว์ +Slideshow Items,รายการสไลด์โชว์ +Slideshow Name,ชื่อสไลด์โชว์ +Slideshow like display for the website,สไลด์โชว์เหมือนการแสดงผลสำหรับเว็บไซต์ +Small Text,ข้อความขนาดเล็ก +Snow,หิมะ +Solid background color (default light gray),สีพื้นหลังที่เป็นของแข็ง (สีเทาอ่อนค่าเริ่มต้น) +Sorry we were unable to find what you were looking for.,ขออภัยเราไม่สามารถที่จะหาสิ่งที่คุณกำลังมองหา +Sorry you are not permitted to view this page.,ขออภัยคุณไม่ได้รับอนุญาตให้ดูหน้านี้ +Sorry! We can only allow upto 100 rows for Stock Reconciliation.,ขออภัย! เราสามารถให้ไม่เกิน 100 แถวสำหรับการกระทบยอดสต็อก +Sort By,เรียงลำดับตาม +Sort Order,เรียง +Source,แหล่ง +Source Warehouse,คลังสินค้าที่มา +Source and Target Warehouse cannot be same,แหล่งที่มาและเป้าหมายคลังสินค้าไม่สามารถเดียวกัน +Source of th,แหล่งที่มาของ th +"Source of the lead. If via a campaign, select ""Campaign""",แหล่งที่มาของสารตะกั่ว ถ้าผ่านแคมเปญเลือก "แคมเปญ" +Special Page Settings,การตั้งค่าหน้าพิเศษ +Specification Details,รายละเอียดสเปค +Split Delivery Note into packages.,แยกหมายเหตุจัดส่งสินค้าเข้าไปในแพคเกจ +Standard,มาตรฐาน +Standard Rate,อัตรามาตรฐาน +"Standard Terms and Conditions that can be added to Sales and Purchases.Examples:1. Validity of the offer.1. Payment Terms (In Advance, On Credit, part advance etc).1. What is extra (or payable by the Customer).1. Safety / usage warning.1. Warranty if any.1. Returns Policy.1. Terms of shipping, if applicable.1. Ways of addressing disputes, indemnity, liability, etc.1. Address and Contact of your Company.","ข้อตกลงและเงื่อนไขมาตรฐานและเงื่อนไขที่สามารถเพิ่มยอดขายและ Purchases.Examples: 1 ความถูกต้องของ offer.1 ข้อตกลงและเงื่อนไขการชำระเงิน (ล่วงหน้าบนบัตรเครดิต ฯลฯ ล่วงหน้าบางส่วน) 0.1 เป็นพิเศษ (หรือจ่ายโดยลูกค้า) คืออะไร 0.1 ความปลอดภัย / warning.1 การใช้งาน รับประกันถ้า any.1 ผลตอบแทนที่ Policy.1 ข้อตกลงและเงื่อนไขในการจัดส่งถ้า applicable.1 วิธีการแก้ไขปัญหาความขัดแย้งที่อยู่, ประกันความรับผิด etc.1 ที่อยู่และติดต่อจาก บริษัท ของคุณ" +"Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like ""Shipping"", ""Insurance"", ""Handling"" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on ""Previous Row Total"" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.10. Add or Deduct: Whether you want to add or deduct the tax.","แม่ภาษีมาตรฐานที่สามารถนำไปใช้กับการทำธุรกรรมทั้งหมดซื้อ แม่แบบนี้สามารถมีรายชื่อของหัวภาษีและค่าใช้จ่ายยังหัวอื่น ๆ เช่น "จัดส่ง", "ประกันภัย", "จัดการ" ฯลฯ อัตราภาษี # # # # หมายเหตุ: คุณกำหนดที่นี่จะเป็นอัตราภาษีมาตรฐานสำหรับทุกรายการ ** ** . ถ้ามีรายการ ** ** ที่มีอัตราที่แตกต่างพวกเขาจะต้องถูกเพิ่มในส่วนของภาษีสินค้า ** ** ตารางในรายการ ** ** คำอธิบายหลัก. # # # # จาก Columns1 ประเภทการคำนวณ: - นี้อาจเป็นบนสุทธิ ** ** (นั่นคือผลรวมของจำนวนเงินขั้นพื้นฐาน) - ** แถวก่อนหน้ารวม / ** จำนวนเงิน (ภาษีหรือค่าใช้จ่ายสะสม) หากคุณเลือกตัวเลือกนี้ภาษีจะถูกนำมาใช้เป็นเปอร์เซ็นต์ของแถวก่อนหน้า (ในตารางภาษี) จำนวนรวม - ** จริง ** (ดังกล่าว) 0.2 หัวหน้าบัญชี: บัญชีแยกประเภทบัญชีตามที่ภาษีนี้จะ booked3 ศูนย์ต้นทุน: ถ้าภาษี / ค่าเป็นรายได้ (เช่นค่าจัดส่ง) หรือค่าใช้จ่ายที่จะต้องจองกับ Center.4 ต้นทุน คำอธิบาย: คำอธิบายของภาษี (ที่จะถูกพิมพ์ในใบแจ้งหนี้ / ราคา) 0.5 ให้คะแนน: rate.6 ภาษี จำนวนเงิน: amount.7 ภาษี รวมสะสมนี้ point.8: Total ใส่แถว: ถ้าบนพื้นฐานของ "รวมแถวก่อนหน้านี้" คุณสามารถเลือกจำนวนแถวที่จะถูกนำมาเป็นฐานในการคำนวณนี้ (ค่าปกติคือแถวก่อนหน้า) 0.9 พิจารณาภาษีหรือคิดค่าบริการสำหรับ: ในส่วนนี้คุณสามารถระบุหากภาษี / ค่าเป็นเพียงการประเมินมูลค่า (ไม่ใช่ส่วนหนึ่งจากทั้งหมด) หรือเฉพาะสำหรับรวม (ไม่เพิ่มมูลค่าให้กับสินค้า) หรือ both.10 เพิ่มหรือหักไม่ว่าคุณต้องการที่จะเพิ่มหรือหักภาษี" +"Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like ""Shipping"", ""Insurance"", ""Handling"" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on ""Previous Row Total"" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.","แม่ภาษีมาตรฐานที่สามารถนำไปใช้กับการทำธุรกรรมการขาย แม่แบบนี้สามารถมีรายชื่อของหัวภาษีและค่าใช้จ่ายยังหัว / รายได้อื่น ๆ เช่น "จัดส่ง", "ประกันภัย", "จัดการ" ฯลฯ อัตราภาษี # # # # หมายเหตุ: คุณกำหนดที่นี่จะเป็นอัตราภาษีมาตรฐานสำหรับทุกรายการ ** ** ถ้ามีรายการ ** ** ที่มีอัตราที่แตกต่างพวกเขาจะต้องถูกเพิ่มในส่วนของภาษีสินค้า ** ** ตารางในรายการ ** ** คำอธิบายหลัก. # # # # จาก Columns1 ประเภทการคำนวณ: - นี้อาจเป็นบนสุทธิ ** ** (นั่นคือผลรวมของจำนวนเงินขั้นพื้นฐาน) - ** แถวก่อนหน้ารวม / ** จำนวนเงิน (ภาษีหรือค่าใช้จ่ายสะสม) หากคุณเลือกตัวเลือกนี้ภาษีจะถูกนำมาใช้เป็นเปอร์เซ็นต์ของแถวก่อนหน้า (ในตารางภาษี) จำนวนรวม - ** จริง ** (ดังกล่าว) 0.2 หัวหน้าบัญชี: บัญชีแยกประเภทบัญชีตามที่ภาษีนี้จะ booked3 ศูนย์ต้นทุน: ถ้าภาษี / ค่าเป็นรายได้ (เช่นค่าจัดส่ง) หรือค่าใช้จ่ายที่จะต้องจองกับ Center.4 ต้นทุน คำอธิบาย: คำอธิบายของภาษี (ที่จะถูกพิมพ์ในใบแจ้งหนี้ / ราคา) 0.5 ให้คะแนน: rate.6 ภาษี จำนวนเงิน: amount.7 ภาษี รวมสะสมนี้ point.8: Total ใส่แถว: ถ้าบนพื้นฐานของ "รวมแถวก่อนหน้านี้" คุณสามารถเลือกจำนวนแถวที่จะถูกนำมาเป็นฐานในการคำนวณนี้ (ค่าปกติคือแถวก่อนหน้า) 0.9 คือภาษีนี้รวมอยู่ในอัตราขั้นพื้นฐาน: ถ้าคุณตรวจสอบนี้ก็หมายความว่าภาษีนี้จะไม่แสดงด้านล่างของตารางรายการ แต่จะรวมอยู่ในอัตราขั้นพื้นฐานในตารางรายการหลักของคุณ นี้จะเป็นประโยชน์ที่คุณต้องการให้ราคาแบน (รวมภาษีทั้งหมด) ราคาให้กับลูกค้า" +Start Date,วันที่เริ่มต้น +Start Report For,เริ่มรายงานสำหรับ +Start date of current invoice's period,วันที่เริ่มต้นของระยะเวลาการออกใบแจ้งหนี้ปัจจุบัน +Starts on,เริ่มเมื่อ +Startup,เริ่มต้น +State,รัฐ +State Name,ชื่อรัฐ +States,รัฐ +Static Parameters,พารามิเตอร์คง +Status,สถานะ +Status must be one of ,สถานะต้องเป็นหนึ่งใน +Statutory info and other general information about your Supplier,ข้อมูลตามกฎหมายและข้อมูลทั่วไปอื่น ๆ เกี่ยวกับผู้จำหน่ายของคุณ +Stock,คลังสินค้า +Stock Ageing,เอจจิ้งสต็อก +Stock Analytics,สต็อก Analytics +Stock Balance,ยอดคงเหลือสต็อก +Stock Entry,รายการสินค้า +Stock Entry Detail,รายละเอียดราย​​การสินค้า +Stock Frozen Upto,สต็อกไม่เกิน Frozen +Stock Home,หน้าแรกสินค้า +Stock Ledger,บัญชีแยกประเภทสินค้า +Stock Ledger Entry,รายการสินค้าบัญชีแยกประเภท +Stock Level,ระดับสต็อก +Stock Qty,จำนวนหุ้น +Stock Queue (FIFO),สต็อกคิว (FIFO) +Stock Reconciliation,สมานฉันท์สต็อก +Stock Reconciliation file not uploaded,ไฟล์สมานฉันท์สต็อกไม่ได้อัปโหลด +Stock UOM,UOM สต็อก +Stock UOM Replace Utility,สต็อกยูทิลิตี้แทนที่ UOM +Stock Uom,UOM สต็อก +Stock Value,มูลค่าหุ้น +"Stock level frozen up to this date, nobody can do / modify entry except authorized person",ระดับสต็อกแช่แข็งถึงวันนี้ไม่มีใครสามารถทำ / แก้ไขรายการยกเว้นผู้มีอำนาจ +Stop,หยุด +Stop users from making Leave Applications on following days.,หยุดผู้ใช้จากการทำแอพพลิเคที่เดินทางในวันที่ดังต่อไปนี้ +Stopped,หยุด +Structure cost centers for budgeting.,ศูนย์ต้นทุนโครงสร้างสำหรับการจัดทำงบประมาณ +Structure of books of accounts.,โครงสร้างของหนังสือของบัญชี +Style,สไตล์ +Style Settings,การตั้งค่าลักษณะ +"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","สไตล์เป็นสีของปุ่ม: ความสำเร็จ - สีเขียว, อันตราย - แดง, Inverse - ดำ, ประถม - มืดข้อมูล, บลู - Light Blue, คำเตือน - ออเรนจ์" +"Sub-currency. For e.g. ""Cent""",ย่อยสกุลเงิน สำหรับ "ร้อย" เช่น +Sub-domain provided by erpnext.com,โดเมนย่อยโดย erpnext.com +Subcontract,สัญญารับช่วง +Subdomain,subdomain +Subject,เรื่อง +Submit,เสนอ +Submit Salary Slip,ส่งสลิปเงินเดือน +Submit all salary slips for the above selected criteria,ส่งบิลเงินเดือนทั้งหมดสำหรับเกณฑ์ที่เลือกข้างต้น +Submitted,Submitted +Success,ความสำเร็จ +Suggestion,ข้อเสนอแนะ +Suggestions,ข้อเสนอแนะ +Sunday,วันอาทิตย์ +Sunny,แดดจัด +Supplier,ผู้จัดจำหน่าย +Supplier (vendor) name as entered in supplier master,ผู้จัดจำหน่ายชื่อ (ผู้ขาย) ป้อนเป็นผู้จัดจำหน่ายในต้นแบบ +Supplier Address,ที่อยู่ผู้ผลิต +Supplier Details,รายละเอียดผู้จัดจำหน่าย +Supplier Intro,แนะนำผู้ผลิต +Supplier Master created by ,ปริญญาโทผู้จัดจำหน่ายที่สร้างขึ้นโดย +Supplier Name,ชื่อผู้จัดจำหน่าย +Supplier Part Number,หมายเลขชิ้นส่วนของผู้ผลิต +Supplier Quotation,ใบเสนอราคาของผู้ผลิต +Supplier Quotation Item,รายการใบเสนอราคาของผู้ผลิต +Supplier Reference,อ้างอิงจำหน่าย +Supplier Type,ประเภทผู้ผลิต +Supplier Warehouse,คลังสินค้าผู้จัดจำหน่าย +Supplier classification.,การจัดหมวดหมู่จัดจำหน่าย +Supplier database.,ฐานข้อมูลผู้ผลิต +Supplier of Goods or Services.,ผู้ผลิตสินค้าหรือบริการ +Supplier warehouse where you have issued raw materials for sub - contracting,คลังสินค้าผู้จัดจำหน่ายที่คุณได้ออกวัตถ​​ุดิบสำหรับ sub - สัญญา +Supplier's currency,สกุลเงินของซัพพลายเออร์ +Support,สนับสนุน +Support Analytics,Analytics สนับสนุน +Support Email,การสนับสนุนทางอีเมล +Support Email Id,สนับสนุน ID อีเมล์ +Support Home,หน้าหลัก +Support Password,รหัสผ่านสนับสนุน +Support Ticket,ตั๋วสนับสนุน +Support Ticket Mail Settings,สนับสนุนการตั้งค่าจดหมายตั๋ว +Support queries from customers via email or website.,รองรับการสืบค้นจากลูกค้าผ่านทางอีเมลหรือเว็บไซต์ +Symbol,สัญญลักษณ์ +Sync Inbox,กล่องขาเข้าซิงค์ +Sync Support Mails,ซิงค์อีเมลที่สนับสนุน +System,ระบบ +System Console,ระบบคอนโซล +System Defaults,เริ่มต้นของระบบ +System User,ผู้ใช้ระบบ +"System User (login) ID. If set, it will become default for all HR forms.",ผู้ใช้ระบบ (login) ID ถ้าชุดก็จะกลายเป็นค่าเริ่มต้นสำหรับทุกรูปแบบทรัพยากรบุคคล +System generated mails will be sent from this email id.,อีเมลที่สร้างระบบจะถูกส่งมาจาก id อีเมลนี้ +Table,ตาราง +Table Field,เขตข้อมูลตาราง +Table Mapper Detail,รายละเอียดตารางแมปเปอร์ +Table Mapper Details,รายละเอียดตารางแมปเปอร์ +Table for Item that will be shown in Web Site,ตารางสำหรับรายการที่จะแสดงในเว็บไซต์ +Tag,แท็ก +Tag Name,ชื่อแท็ก +Tags,แท็ก +Tahoma,Tahoma +Target,เป้า +Target Amount,จำนวนเป้าหมาย +Target Detail,รายละเอียดเป้าหมาย +Target Details,รายละเอียดเป้าหมาย +Target Details1,Details1 เป้าหมาย +Target Distribution,การกระจายเป้าหมาย +Target Qty,จำนวนเป้าหมาย +Target Warehouse,คลังสินค้าเป้าหมาย +Task,งาน +Task Details,รายละเอียดงาน +Task Id,รหัสงาน +Task Name,ชื่องาน +Tasks,งาน +Tasks belonging to this Project.,งานที่เป็นของโครงการนี​​้ +Tax,ภาษี +Tax Amount,จำนวนภาษี +Tax Calculation,การคำนวณภาษี +Tax Rate,อัตราภาษี +Tax Template for Purchase,แม่แบบภาษีซื้อ +Tax Template for Sales,แม่แบบภาษีสำหรับการขาย +Tax and other salary deductions.,ภาษีและอื่น ๆ หักเงินเดือน +Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges,ตารางรายละเอียดภาษีที่เรียกจากต้นแบบรายการเป็นสตริงและเก็บไว้ใน field.Used นี้สำหรับภาษีและค่าธรรมเนียม +Taxable,ต้องเสียภาษี +Taxes,ภาษี +Taxes and Charges,ภาษีและค่าบริการ +Taxes and Charges Added,ภาษีและค่าบริการเพิ่ม +Taxes and Charges Added (Import),ภาษีและค่าบริการเพิ่ม (นำเข้า) +Taxes and Charges Calculation,ภาษีและการคำนวณค่าใช้จ่าย +Taxes and Charges Deducted,ภาษีและค่าบริการหัก +Taxes and Charges Deducted (Import),ภาษีและค่าบริการหัก (นำเข้า) +Taxes and Charges Total,ภาษีและค่าใช้จ่ายทั้งหมด +Taxes and Charges Total*,ภาษีและค่าบริการรวม * +Taxes and Charges1,ภาษีและ Charges1 +Team Members,สมาชิกในทีม +Team Members Heading,สมาชิกในทีมหัวเรื่อง +Template for employee performance appraisals.,แม่แบบสำหรับการประเมินผลการปฏิบัติงานของพนักงาน +Template of terms or contract.,แม่ของข้อตกลงหรือสัญญา +Term Details,รายละเอียดคำ +Terms and Conditions,ข้อตกลงและเงื่อนไข +Terms and Conditions Content,ข้อตกลงและเงื่อนไขเนื้อหา +Terms and Conditions Details,ข้อตกลงและเงื่อนไขรายละเอียด +Terms and Conditions HTML,ข้อตกลงและเงื่อนไข HTML +Terms and Conditions Template,ข้อตกลงและเงื่อนไขของแม่แบบ +Terms and Conditions1,ข้อตกลงและ Conditions1 +Territory,อาณาเขต +Territory Manager,ผู้จัดการดินแดน +Territory Name,ชื่อดินแดน +Territory Targets,เป้าหมายดินแดน +TerritoryHelp,TerritoryHelp +Test,ทดสอบ +Test Data,ข้อมูลการทดสอบ +Test Date,วันที่ทดสอบ +Test Email Id,Email รหัสการทดสอบ +Test Link,เชื่อมต่อที่ทดสอบ +Test Runner,วิ่งทดสอบ +Test Select,ทดสอบเลือก +Test Text,ข้อความทดสอบ +Test the Newsletter,ทดสอบเกี่ยวกับ +Text,ข้อความ +Text Align,ข้อความตําแหน่ง +Text Editor,แก้ไขข้อความ +"The ""Web Page"" that is the website home page","Web Page" นั่นคือหน้าแรกของเว็บไซต์ +The BOM which will be replaced,BOM ซึ่งจะถูกแทนที่ +"The Item that represents the Package. This Item must have ""Is Stock Item"" as ""No"" and ""Is Sales Item"" as ""Yes""",รายการที่แสดงถึงแพคเกจ รายการนี​​้จะต้องมี "รายการสินค้า" ขณะที่ "ไม่มี" และ "รายการขาย" เป็น "ใช่" +The account to which you will pay (have paid) the money to.,บัญชีที่คุณจะจ่าย (ได้จ่ายเงิน) เงินไป +The date at which current entry is corrected in the system.,วันที่ที่รายการปัจจุบันมีการแก้ไขในระบบ +The date at which current entry is made in system.,วันที่ที่รายการปัจจุบันจะทำในระบบ +The date at which current entry will get or has actually executed.,วันที่ที่รายการปัจจุบันจะได้รับหรือได้ดำเนินการจริง +The date on which next invoice will be generated. It is generated on submit.,วันที่ออกใบแจ้งหนี้ต่อไปจะถูกสร้างขึ้น มันถูกสร้างขึ้นบนส่ง +The date on which recurring invoice will be stop,วันที่ใบแจ้งหนี้ที่เกิดขึ้นจะถูกหยุด +"The day of the month on which auto invoice will be generated e.g. 05, 28 etc ","วันของเดือนที่ใบแจ้งหนี้อัตโนมัติจะถูกสร้างขึ้นเช่น 05, 28 ฯลฯ" +The gross weight of the package. Usually net weight + packaging material weight. (for print),น้ำหนักรวมของแพคเกจ น้ำหนักสุทธิปกติ + น้ำหนักวัสดุบรรจุภัณฑ์ (สำหรับพิมพ์) +The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.,ชื่อ บริษัท / เว็บไซต์ของคุณตามที่คุณต้องการให้ปรากฏบนแถบชื่อเบราว์เซอร์ หน้าทั้งหมดที่จะมีนี้เป็นคำนำหน้าชื่อ +The net weight of this package. (calculated automatically as sum of net weight of items),น้ำหนักสุทธิของแพคเกจนี้ (คำนวณโดยอัตโนมัติเป็นที่รวมของน้ำหนักสุทธิของรายการ) +The new BOM after replacement,BOM ใหม่หลังจากเปลี่ยน +The rate at which Bill Currency is converted into company's base currency,อัตราที่สกุลเงินบิลจะถูกแปลงเป็นสกุลเงินหลักของ บริษัท +"The system provides pre-defined roles, but you can add new roles to set finer permissions",ระบบให้บทบาทกำหนดไว้ล่วงหน้า แต่คุณสามารถ เพิ่มบทบาทใหม่ ในการกำหนดสิทธิ์ปลีกย่อย +The unique id for tracking all recurring invoices. It is generated on submit.,id ที่ไม่ซ้ำสำหรับการติดตามใบแจ้งหนี้ที่เกิดขึ้นทั้งหมด มันถูกสร้างขึ้นบนส่ง +Theme,กระทู้ +Then By (optional),แล้วโดย (ไม่จำเป็น) +These properties are Link Type fields from all Documents.,คุณสมบัติเหล่านี้เป็นเขตประเภท Link จากเอกสารทั้งหมด +"These properties can also be used to 'assign' a particular document, whose property matches with the User's property to a User. These can be set using the Permission Manager",คุณสมบัติเหล่านี้ยังสามารถใช้ในการ 'กำหนด' เอกสารโดยเฉพาะอย่างยิ่งที่มีสถานที่ให้บริการตรงกับสถานที่ให้บริการผู้ใช้ไปยังผู้ใช้ เหล่านี้สามารถตั้งค่าการใช้ งานการอนุญาต +These properties will appear as values in forms that contain them.,คุณสมบัติเหล่านี้จะปรากฏเป็นค่าในรูปแบบที่มีพวกเขา +These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ค่าเหล่านี้จะถูกปรับปรุงโดยอัตโนมัติในการทำธุรกรรมและยังจะเป็นประโยชน์เพื่อ จำกัด สิทธิ์สำหรับผู้ใช้นี้ในการทำธุรกรรมที่มีค่าเหล่านี้ +"This Item Group represents ""products.html""",กลุ่มสินค้านี้หมายถึง "products.html" +This Price List will be selected as default for all Customers under this Group.,รายการราคานี้จะถูกเลือกเป็นค่าเริ่มต้นสำหรับลูกค้าทั้งหมดภายใต้กลุ่มนี้ +This currency will get fetched in Purchase transactions of this supplier,สกุลเงินนี้จะได้รับการเรียกในการทำธุรกรรมการซื้อผู้จัดหาสินค้านี้ +This currency will get fetched in Sales transactions of this customer,สกุลเงินนี้จะได้รับการเรียกในการทำธุรกรรมการขายของลูกค้า +"This feature is for merging duplicate warehouses. It will replace all the links of this warehouse by ""Merge With"" warehouse. After merging you can delete this warehouse, as stock level for this warehouse will be zero.",คุณลักษณะนี้จะเป็นสำหรับการผสานโกดังที่ซ้ำกัน มันจะเข้ามาแทนที่การเชื่อมโยงทั้งหมดของคลังสินค้านี้โดย "ผสานกับ" คลังสินค้า หลังจากควบรวมคุณสามารถลบคลังสินค้านี้เป็นระดับสต็อกในคลังสินค้านี้จะเป็นศูนย์ +This field will appear only if the fieldname defined here has value OR the rules are true (examples):
myfieldeval:doc.myfield=='My Value'
eval:doc.age>18,ฟิลด์นี้จะปรากฏเฉพาะในกรณีที่กำหนดไว้ที่นี่ fieldname มีค่าหรือกฎเป็นจริง (ตัวอย่าง):
myfieldeval: doc.myfield == 'ค่าของฉัน'
Eval: doc.age> 18 +This goes above the slideshow.,นี้สูงกว่าสไลด์โชว์ +This is PERMANENT action and you cannot undo. Continue?,นี้คือการกระทำที่เป็นการถาวรและคุณไม่สามารถยกเลิกการ ต่อหรือไม่ +This is an auto generated Material Request.,นี่คือขอวัสดุอัตโนมัติสร้าง +This is permanent action and you cannot undo. Continue?,นี้คือการกระทำอย่างถาวรและคุณไม่สามารถยกเลิก ต่อหรือไม่ +This is the number of the last created transaction with this prefix,นี่คือหมายเลขของรายการที่สร้างขึ้นล่าสุดกับคำนำหน้านี้ +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.,เครื่องมือนี้ช่วยให้คุณสามารถปรับปรุงหรือแก้ไขปริมาณและมูลค่าของหุ้นในระบบ มันมักจะใช้ในการประสานค่าระบบและสิ่งที่มีอยู่จริงในคลังสินค้าของคุณ +This will be used for setting rule in HR module,นี้จะถูกใช้สำหรับกฎการตั้งค่าในโมดูลทรัพยากรบุคคล +Thread HTML,HTML กระทู้ +Thursday,วันพฤหัสบดี +Time,เวลา +Time Zone,โซนเวลา +Time Zones,เขตเวลา +Time and Budget,เวลาและงบประมาณ +Time at which items were delivered from warehouse,เวลาที่รายการถูกส่งมาจากคลังสินค้า +Time at which materials were received,เวลาที่ได้รับวัสดุ +Timesheet,timesheet +Timesheet By,timesheet โดย +Timesheet Date,วันที่ timesheet +Timesheet Detail,รายละเอียด Timesheet +Timesheet Details,รายละเอียด Timesheet +Timesheet for tasks.,timesheet สำหรับงาน +Title,ชื่อเรื่อง +Title / headline of your page,ชื่อเรื่อง / พาดหัวของหน้าเว็บของคุณ +Title Case,กรณีชื่อ +Title Prefix,คำนำหน้าชื่อ +To,ไปยัง +To Date,นัด +To Discuss,เพื่อหารือเกี่ยวกับ +To Do,สถานที่ท่องเที่ยว +To Do List,To Do List +To DocType,เพื่อ DOCTYPE +To Field,ถึงสนาม +To PR Date,เพื่อประชาสัมพันธ์วันที่ +To Package No.,กับแพคเกจหมายเลข +To Reply,เพื่อตอบ +To Table,ตาราง +To Warehouse,ไปที่โกดัง +"To add a tag, open the document and click on ""Add Tag"" on the sidebar",การเพิ่มแท็กให้เปิดเอกสารและคลิกที่ "แท็กเพิ่ม" ในแถบด้านข้าง +"To assign this issue, use the ""Assign"" button in the sidebar.",เพื่อกำหนดปัญหานี้ให้ใช้ปุ่ม "กำหนด" ในแถบด้านข้าง +"To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.",โดยอัตโนมัติสร้างตั๋วการสนับสนุนจากอีเมลที่ได้รับของคุณตั้งค่าการตั้งค่า POP3 ของคุณที่นี่ คุณนึกคิดต้องสร้าง id อีเมลที่แยกต่างหากสำหรับระบบ ERP เพื่อให้อีเมลทั้งหมดจะถูกซิงค์เข้าไปในระบบจาก ID mail ที่ หากคุณไม่แน่ใจว่าโปรดติดต่อผู้ให้บริการอีเมลของคุณ +"To create Quotation against Opportunity, Select Opportunity No. and click on 'Pull Opportunity Details' ",เพื่อสร้างใบเสนอราคากับโอกาสเลือกหมายเลขโอกาสและคลิกที่ 'ดึงรายละเอียดโอกาส' +"To create an Account Head under a different company, select the company and save customer.",เพื่อสร้างหัวหน้าบัญชีที่แตกต่างกันภายใต้ บริษัท เลือก บริษัท และบันทึกของลูกค้า +To enable Point of Sale features,ต้องการเปิดใช้งานคุณลักษณะจุดขาย +"To fetch items again, click on 'Get Items' button \ or update the Quantity manually.",สามารถเรียกรายการอีกครั้งให้คลิกที่ 'รับสินค้า' \ ปุ่มหรือปรับปรุงจำนวนตนเอง +"To further restrict permissions based on certain values in a document, use the 'Condition' settings.",เพื่อ จำกัด สิทธิ์ตามค่าบางอย่างในเอกสารให้ใช้การตั้งค่า 'สภาพ' +To get Item Group in details table,ที่จะได้รับกลุ่มสินค้าในตารางรายละเอียด +"To import attendance data, click on ""Add"" button, select the saved CSV file and click on ""Upload"".Select the date format as attendance date format in CSV file.Click on ""Import"".",เพื่อนำเข้าข้อมูลการเข้าร่วมประชุมให้คลิกที่ปุ่ม "เพิ่ม" เลือกไฟล์ CSV ที่บันทึกไว้และคลิกที่ "อัปโหลด". เลือกรูปแบบวันที่เป็นรูปแบบวันที่เข้าร่วมประชุมใน CSV file.Click ที่ "นำเข้า" +To manage multiple series please go to Setup > Manage Series,ในการจัดการกับหลายชุดโปรดไปที่การตั้งค่า> จัดการแบบ +To restrict a User of a particular Role to documents that are explicitly assigned to them,เพื่อ จำกัด ผู้ใช้โดยเฉพาะอย่างยิ่งบทบาทของเอกสารที่ได้รับมอบหมายอย่างชัดเจนเพื่อให้พวกเขา +To restrict a User of a particular Role to documents that are only self-created.,เพื่อ จำกัด ผู้ใช้โดยเฉพาะอย่างยิ่งบทบาทของเอกสารที่มีเฉพาะที่สร้างขึ้นเอง +"To set user roles, just go to Setup > Users and click on the user to assign roles.",การตั้งบทบาทผู้ใช้เพียงแค่ไปที่ การตั้งค่า> Users และคลิกที่ผู้ใช้สามารถกำหนดบทบาท +To track any installation or commissioning related work after sales,เพื่อติดตามการติดตั้งใด ๆ หรืองานที่เกี่ยวข้องกับการว่าจ้างหลังการขาย +"To track brand name in the following documents
Delivery Note, Enuiry, Material Request, Item, Purchase Order, Purchase Voucher, Purchaser Receipt, Quotation, Sales Invoice, Sales BOM, Sales Order, Serial No","เพื่อติดตามชื่อแบรนด์ในเอกสารดังต่อไป
หมายเหตุการจัดส่ง Enuiry, การขอวัสดุรายการสั่งซื้อบัตรกำนัลซื้อใบเสร็จรับเงินซื้อ, ใบเสนอราคา, ใบแจ้งหนี้การขาย, BOM ขายใบสั่งขาย, Serial ไม่มี" +To track item in sales and purchase documents based on their serial nos. This is can also used to track warranty details of the product.,เพื่อติดตามรายการในเอกสารการขายและการซื้อจาก Nos อนุกรมของพวกเขา นี้สามารถใช้ในการติดตามรายละเอียดการรับประกันของผลิตภัณฑ์ +To track items in sales and purchase documents with batch nos
Preferred Industry: Chemicals etc,เพื่อติดตามรายการในเอกสารการขายและการซื้อด้วย Nos ชุด
อุตสาหกรรมที่ต้องการ: ฯลฯ สารเคมี +To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,เพื่อติดตามรายการโดยใช้บาร์โค้ด คุณจะสามารถป้อนรายการในหมายเหตุจัดส่งสินค้าและขายใบแจ้งหนี้โดยการสแกนบาร์โค้ดของรายการ +"To update your HTML from attachment, click here",เพื่อปรับปรุง HTM​​L ของคุณจากสิ่งที่แนบมาคลิกที่นี่ +ToDo,สิ่งที่ต้องทำ +Tools,เครื่องมือ +Top Bar,Bar สถานที่ยอด +Top Bar Background,พื้นหลังของแถบด้านบน +Top Bar Item,รายการ Bar สถานที่ยอด +Top Bar Items,รายการ Bar สถานที่ยอด +Total,ทั้งหมด +Total (sum of) points distribution for all goals should be 100.,รวม (ผลรวมของ) การกระจายคะแนนสำหรับเป้าหมายทั้งหมดควรจะ 100 +Total +Tax,รวม + ภาษี +Total Advance,ล่วงหน้ารวม +Total Amount,รวมเป็นเงิน +Total Amount To Pay,รวมเป็นเงินการชำระเงิน +Total Amount in Words,จำนวนเงินทั้งหมดในคำ +Total Claimed Amount,จำนวนรวมอ้าง +Total Commission,คณะกรรมการรวม +Total Cost,ค่าใช้จ่ายรวม +Total Credit,เครดิตรวม +Total Debit,เดบิตรวม +Total Deduction,หักรวม +Total Earning,กำไรรวม +Total Experience,ประสบการณ์รวม +Total Hours (Actual),ชั่วโมงรวม (จริง) +Total Hours (Expected),ชั่วโมงรวม (คาดว่า) +Total Invoiced Amount,มูลค่าใบแจ้งหนี้รวม +Total Leave Days,วันที่เดินทางทั้งหมด +Total Leaves Allocated,ใบรวมจัดสรร +Total Operating Cost,ค่าใช้จ่ายการดำเนินงานรวม +Total Points,คะแนนรวมทั้งหมด +Total Raw Material Cost,ค่าวัสดุดิบรวม +Total SMS Sent,SMS ทั้งหมดที่ส่ง +Total Sanctioned Amount,จำนวนรวมตามทำนองคลองธรรม +Total Score (Out of 5),คะแนนรวม (out of 5) +Total Tax,ภาษีรวม +Total Tax Amount,จำนวนภาษีรวม +Total Tax*,* ภาษีรวม +Total Taxes and Charges,ภาษีและค่าบริการรวม +Total days in month,วันรวมในเดือน +Total in words,รวมอยู่ในคำพูด +Totals,ผลรวม +Track Quotations received from Suppliers.,ใบเสนอราคาที่ได้รับการติดตามจากผู้จำหน่าย +Track separate Income and Expense for product verticals or divisions.,ติดตามรายได้และค่าใช้จ่ายแยกต่างหากสำหรับแนวดิ่งผลิตภัณฑ์หรือหน่วยงาน +Track this Delivery Note against any Project,ติดตามการจัดส่งสินค้าหมายเหตุนี้กับโครงการใด ๆ +Track this Sales Invoice against any Project,ติดตามนี้ขายใบแจ้งหนี้กับโครงการใด ๆ +Track this Sales Order against any Project,ติดตามนี้สั่งซื้อขายกับโครงการใด ๆ +Transaction,การซื้อขาย +Transaction Date,วันที่ทำรายการ +Transfer,โอน +Transfer stock from one warehouse to another.,โอนหุ้นจากที่หนึ่งไปยังอีกคลังสินค้า +Transition Rules,กฎการเปลี่ยน +Transporter Info,ข้อมูลการขนย้าย +Transporter Name,ชื่อ Transporter +Transporter lorry number,จำนวนรถบรรทุกขนย้าย +Trash,ถังขยะ +Trash Control,ควบคุมถังขยะ +Trash Reason,เหตุผลถังขยะ +Tree of item classification,ต้นไม้ของการจัดหมวดหมู่รายการ +Trend Analyzer,วิเคราะห์แนวโน้ม +Trend Analyzer Control,ควบคุมวิเคราะห์แนวโน้ม +Trial Balance,งบทดลอง +Tropic,ร้อน +Tuesday,วันอังคาร +Tweet will be shared via your user account (if specified),ผู้จะใช้ร่วมกันผ่านทางบัญชีผู้ใช้ของคุณ (ถ้าระบุ) +Twitter Share,Twitter แบ่งปัน +Twitter Share via,แบ่งปัน Twitter ผ่าน +Type,ชนิด +Type of employment master.,ประเภทการจ้างงานของเจ้านาย +"Type of leaves like casual, sick etc.",ประเภทของใบเช่นลำลอง ฯลฯ ป่วย +Types of Expense Claim.,ชนิดของการเรียกร้องค่าใช้จ่าย +Types of activities for Time Sheets,ประเภทของกิจกรรมสำหรับแผ่นเวลา +Types of warehouse,ประเภทของคลังสินค้า +UOM,UOM +UOM Conversion Detail,รายละเอียดการแปลง UOM +UOM Conversion Details,UOM รายละเอียดการแปลง +UOM Conversion Factor,ปัจจัยการแปลง UOM +UOM Details,รายละเอียด UOM +UOM Name,ชื่อ UOM +UOM Replace Utility,ยูทิลิตี้แทนที่ UOM +UPPER CASE,ตัวพิมพ์ใหญ่ +URL,URL +Unable to complete request: ,ไม่สามารถที่จะดำเนินการตามคำขอ: +Under AMC,ภายใต้ AMC +Under Graduate,ภายใต้บัณฑิต +Under Section,ตามมาตรา +Under Warranty,ภายใต้การรับประกัน +Unit of Measure,หน่วยของการวัด +"Unit of measurement of this item (e.g. Kg, Unit, No, Pair).","หน่วยของการวัดของรายการนี​​้ (เช่นกิโลกรัมหน่วย, ไม่มี, คู่)" +Units/Hour,หน่วย / ชั่วโมง +Units/Shifts,หน่วย / กะ +Unmatched Amount,จำนวนเปรียบ +Unread Messages,ไม่ได้อ่านข้อความ +Unscheduled,ไม่ได้หมายกำหนดการ +Unsubscribe,ยกเลิกการสมัคร +Unsubscribed,ยกเลิกการสมัคร +Update,อัพเดท +Update Clearance Date,อัพเดทวันที่ Clearance +Update Delivery Date,อัพเดทวันที่ส่ง +Update Field,ปรับปรุงเขต +Update PR,PR ปรับปรุง +Update Sales Order,อัพเดทการสั่งซื้อการขาย +Update Series,Series ปรับปรุง +Update Series Number,จำนวน Series ปรับปรุง +Update Stock,อัพเดทสต็อก +Update Value,ปรับปรุงค่า +"Update allocated amount in the above table and then click ""Allocate"" button",อัพเดทจำนวนที่จัดสรรในตารางข้างต้นแล้วคลิกปุ่ม "จัดสรร" +Update bank payment dates with journals.,การชำระเงินของธนาคารปรับปรุงวันที่มีวารสาร +Updates,การปรับปรุง +Updates HTML,HTML การปรับปรุง +Upload Attachment,อัพโหลดไฟล์แนบ +Upload Attendance Data,Upload ข้อมูลผู้เข้าร่วม +Upload HTML,อัพโหลด HTML +Upload a file,อัปโหลดไฟล์ +Upload attendance,อัพโหลดเข้าร่วม +Upload attendance from a .csv file,อัพโหลดการดูแลรักษาจาก. csv ที่ +Upload stock balance via csv.,อัพโหลดสมดุลหุ้นผ่าน CSV +Upper Income,รายได้บน +Urgent,ด่วน +Use Multi-Level BOM,ใช้ BOM หลายระดับ +Use SSL,ใช้ SSL +User,ผู้ใช้งาน +User Cannot Create,ผู้ใช้ไม่สามารถสร้าง +User Cannot Search,ผู้ใช้ไม่สามารถค้นหา +User ID,รหัสผู้ใช้ +User Image,รูปภาพของผู้ใช้ +User Name,ชื่อผู้ใช้ +User Properties,คุณสมบัติของผู้ใช้ +User Remark,หมายเหตุผู้ใช้ +User Remark will be added to Auto Remark,หมายเหตุผู้ใช้จะถูกเพิ่มเข้าไปในหมายเหตุอัตโนมัติ +User Tags,แท็กผู้ใช้ +User Type,ประเภทผู้ใช้ +User must always select,ผู้ใช้จะต้องเลือก +User not allowed entry in the Warehouse,รายการผู้ใช้ไม่ได้รับอนุญาตในโกดัง +UserRole,UserRole +Username,ชื่อผู้ใช้ +Users,ผู้ใช้ +Users Voted,ผู้ใช้โหวต +Users with this role are allowed to do / modify accounting entry before frozen date,ผู้ใช้ที่มีบทบาทนี้ได้รับอนุญาตให้ทำ / ปรับเปลี่ยนรายการบัญชีก่อนวันที่แช่แข็ง +Users with this role are allowed to do / modify stock entry before frozen date,ผู้ใช้ที่มีบทบาทนี้ได้รับอนุญาตให้ทำ / ปรับเปลี่ยนรายการหุ้นก่อนวันที่แช่แข็ง +Utilities,ยูทิลิตี้ +Utility,ประโยชน์ +Valid Upto,ที่ถูกต้องไม่เกิน +Validation Logic,ตรรกะการตรวจสอบ +Valuation,การประเมินค่า +Valuation Control,ควบคุมการประเมิน +Valuation Method,วิธีการประเมิน +Valuation Rate,อัตราการประเมิน +Valuation and Total,การประเมินและรวม +Value,มูลค่า +Verdana,Verdana +Verified By,ตรวจสอบโดย +Visit,เยี่ยม +Visit report for maintenance call.,เยี่ยมชมรายงานสำหรับการบำรุงรักษาโทร +Voucher Detail No,รายละเอียดบัตรกำนัลไม่มี +Voucher ID,ID บัตรกำนัล +Voucher Import Tool,และนำเข้าเครื่องมือบัตรกำนัล +Voucher No,บัตรกำนัลไม่มี +Voucher Type,ประเภทบัตรกำนัล +WIP Monitor,การตรวจสอบ WIP +Waiting for Customer,รอลูกค้า +Walk In,Walk In +Warehouse,คลังสินค้า +Warehouse Contact Info,ข้อมูลการติดต่อคลังสินค้า +Warehouse Detail,รายละเอียดคลังสินค้า +Warehouse Name,ชื่อคลังสินค้า +Warehouse Type,ประเภทคลังสินค้า +Warehouse User,ผู้ใช้คลังสินค้า +Warehouse Users,ผู้ใช้งานที่คลังสินค้า +Warehouse where you are maintaining stock of rejected items,คลังสินค้าที่คุณจะรักษาสต็อกของรายการปฏิเสธ +Warehouse-wise Item Reorder,รายการคลังสินค้าฉลาด Reorder +Warn,เตือน +Warning,คำเตือน +Warranty / AMC Details,รายละเอียดการรับประกัน / AMC +Warranty / AMC Status,สถานะการรับประกัน / AMC +Warranty Expiry Date,วันหมดอายุการรับประกัน +Warranty Period (Days),ระยะเวลารับประกัน (วัน) +Warranty Period (in days),ระยะเวลารับประกัน (วัน) +Web Content,เนื้อหาเว็บ +Web Page,หน้าเว็บ +Webforms,Webforms +Website,เว็บไซต์ +Website Description,คำอธิบายเว็บไซต์ +Website Home,หน้าแรกเว็บไซต์ +Website Item Group,กลุ่มสินค้าเว็บไซต์ +Website Item Groups,กลุ่มรายการเว็บไซต์ +Website Overall Settings,การตั้งค่าโดยรวมของเว็บไซต์ +Website Price List,รายการราคาเว็บไซต์ +Website Product Categories,หมวดหมู่สินค้าเว็บไซต์ +Website Product Category,ประเภทสินค้าเว็บไซต์ +Website Script,สคริปต์เว็บไซต์ +Website Settings,การตั้งค่าเว็บไซต์ +Website Slideshow,สไลด์โชว์เว็บไซต์ +Website Slideshow Item,รายการสไลด์โชว์เว็บไซต์ +Website Warehouse,คลังสินค้าเว็บไซต์ +Wednesday,วันพุธ +Weekly,รายสัปดาห์ +Weekly Off,สัปดาห์ปิด +Weight UOM,UOM น้ำหนัก +Weightage,weightage +Weightage (%),weightage (%) +"When any of the checked transactions are ""Submitted"", an email pop-up automatically opened to send an email to the associated ""Contact"" in that transaction, with the transaction as an attachment. The user may or may not send the email.",เมื่อใดของการทำธุรกรรมการตรวจสอบเป็น "Submitted" อีเมล์แบบ pop-up เปิดโดยอัตโนมัติในการส่งอีเมลไปยัง "ติดต่อ" ที่เกี่ยวข้องในการทำธุรกรรมที่มีการทำธุรกรรมเป็นสิ่งที่แนบ ผู้ใช้อาจจะหรือไม่อาจจะส่งอีเมล +"When you Amend a document after cancel and save it, it will get a new number that is a version of the old number.",เมื่อคุณอัพเดทเอกสารหลังจากยกเลิกและบันทึกมันจะได้รับหมายเลขใหม่ที่เป็นรุ่นของหมายเลขเดิม +Where items are stored.,ที่รายการจะถูกเก็บไว้ +Where manufacturing operations are carried out.,ที่ดำเนินการผลิตจะดำเนินการ +White,ขาว +Widowed,เป็นม่าย +Width,ความกว้าง +Will be calculated automatically when you enter the details,จะถูกคำนวณโดยอัตโนมัติเมื่อคุณป้อนรายละเอียด +Will be fetched from Customer,จะถูกเรียกจากลูกค้า +With Operations,กับการดำเนินงาน +Work Done,งานที่ทำ +Work In Progress,ทำงานในความคืบหน้า +Workflow,เวิร์กโฟลว์ +Workflow Action,การกระทำเวิร์กโฟลว์ +Workflow Action Detail,รายละเอียดการดำเนินการขั้นตอนการทำงาน +Workflow Action Details,รายละเอียดการดำเนินการขั้นตอนการทำงาน +Workflow Action Master,ปริญญาโทการกระทำเวิร์กโฟลว์ +Workflow Action Name,ชื่อการกระทำเวิร์กโฟลว์ +Workflow Document State,รัฐเอกสารเวิร์กโฟลว์ +Workflow Document States,รัฐเวิร์กโฟลว์เอกสาร +Workflow Engine,เครื่องยนต์เวิร์กโฟลว์ +Workflow Name,ชื่อเวิร์กโฟลว์ +Workflow Rule,กฎเวิร์กโฟลว์ +Workflow Rule Detail,รายละเอียดกฎเวิร์กโฟลว์ +Workflow Rule Details,รายละเอียดกฎเวิร์กโฟลว์ +Workflow State,รัฐเวิร์กโฟลว์ +Workflow State Field,ฟิลด์รัฐเวิร์กโฟลว์ +Workflow State Name,ชื่อรัฐเวิร์กโฟลว์ +Workflow Transition,เปลี่ยนเวิร์กโฟลว์ +Workflow Transitions,ช่วงการเปลี่ยนเวิร์กโฟลว์ +Workflow state represents the current state of a document.,รัฐเวิร์กโฟลว์แสดงสถานะปัจจุบันของเอกสาร +Workflow will start after saving.,เวิร์กโฟลว์จะเริ่มหลังจากการบันทึก +Workfow,Workfow +Working,ทำงาน +Workstation,เวิร์คสเตชั่ +Workstation Name,ชื่อเวิร์กสเตชัน +Write,เขียน +Write Off Account,เขียนทันทีบัญชี +Write Off Amount,เขียนทันทีจำนวน +Write Off Amount <=,เขียนทันทีจำนวน <= +Write Off Based On,เขียนปิดขึ้นอยู่กับ +Write Off Cost Center,เขียนปิดศูนย์ต้นทุน +Write Off Outstanding Amount,เขียนปิดยอดคงค้าง +Write Off Voucher,เขียนทันทีบัตรกำนัล +Year,ปี +Year Closed,ปีที่ปิด +Year Name,ปีชื่อ +Year Start Date,วันที่เริ่มต้นปี +Year of Passing,ปีที่ผ่าน +Yearly,ประจำปี +Yes,ใช่ +Yesterday,เมื่อวาน +You are not authorized to do/modify back dated entries before ,คุณยังไม่ได้รับอนุญาตให้ทำ / แก้ไขรายการกลับลงวันที่ก่อน +You can create more earning and deduction type from Setup --> HR,คุณสามารถสร้างรายได้มากขึ้นและประเภทการหักจากการติดตั้ง -> HR +You can enter any date manually,คุณสามารถป้อนวันที่ใด ๆ ด้วยตนเอง +You can enter the minimum quantity of this item to be ordered.,คุณสามารถป้อนปริมาณขั้นต่ำของรายการนี​​้จะได้รับคำสั่ง +You can make a delivery note from multiple sales orders. Select sales orders one by one and click on the button below.,คุณสามารถจดบันทึกการส่งมอบจากใบสั่งขายหลาย เลือกคำสั่งซื้อยอดขายหนึ่งโดยหนึ่งและคลิกปุ่มด้านล่าง +You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.,คุณสามารถทำให้การสั่งซื้อวัสดุจากการร้องขอหลาย เลือกวัสดุขอหนึ่งโดยหนึ่งและคลิกปุ่มด้านล่าง +You can make a purchase order from multiple Supplier Quotations. Select Supplier Quotations one by one and click on the button below.,คุณสามารถสั่งซื้อสั่งซื้อจากซัพพลายเออร์หลายใบเสนอราคา เลือกใบเสนอราคาของผู้ผลิตหนึ่งโดยหนึ่งและคลิกปุ่มด้านล่าง +You can make a purchase receipt from multiple purchase orders. Select purchase orders one by one and click on the button below.,คุณสามารถทำให้การรับซื้อจากคำสั่งซื้อหลาย เลือกคำสั่งซื้อหนึ่งโดยหนึ่งและคลิกปุ่มด้านล่าง +You can set various 'properties' to Users to set default values and apply permission rules based on the value of these properties in various forms.,คุณสามารถตั้งค่า 'สมบัติ' ต่างๆเพื่อผู้ใช้สามารถตั้งค่าเริ่มต้นและใช้กฎการอนุญาตขึ้นอยู่กับค่าของคุณสมบัติเหล่านี้ในรูปแบบต่างๆ +You can use Customize Form to set levels on fields.,คุณสามารถใช้ แบบฟอร์มที่กำหนดเอง เพื่อตั้งค่าระดับบนทุ่ง +Your Customer's TAX registration numbers (if applicable) or any general information,ของลูกค้าของคุณหมายเลขทะเบียนภาษี (ถ้ามี) หรือข้อมูลทั่วไป +"Your download is being built, this may take a few moments...",การดาวน์โหลดของคุณจะถูกสร้างขึ้นนี้อาจใช้เวลาสักครู่ ... +Your letter head content in HTML.,เนื้อหาหัวของคุณในรูปแบบ HTML จดหมาย +Your sales person who will contact the customer in future,คนขายของคุณที่จะติดต่อกับลูกค้าในอนาคต +Your sales person who will contact the lead in future,คนขายของคุณที่จะติดต่อนำในอนาคต +Your sales person will get a reminder on this date to contact the customer,คนขายของคุณจะรับการแจ้งเตือนในวันนี้ที่จะติดต่อลูกค้า +Your sales person will get a reminder on this date to contact the lead,คนขายของคุณจะรับการแจ้งเตือนในวันนี้ที่จะติดต่อนำ +Your support email id - must be a valid email - this is where your emails will come!,id อีเมลของคุณสนับสนุน - ต้องอีเมลที่ถูกต้อง - นี่คือที่อีเมลของคุณจะมา! +[],[] +add your own CSS (careful!),เพิ่มเอง CSS ของคุณ (careful!) +adjust,ปรับ +align-center,จัดศูนย์ +align-justify,จัดแสดงให้เห็นถึง- +align-left,จัดซ้าย +align-right,จัดขวา +and,และ +arrow-down,ลูกศรชี้ลง +arrow-left,ศรซ้าย +arrow-right,ลูกศรขวา +arrow-up,ลูกศรขึ้น- +asterisk,เครื่องหมายดอกจัน +backward,ย้อนกลับ +ban-circle,ห้ามวงกลม +barcode,บาร์โค้ด +bell,ระฆัง +bold,กล้า +book,หนังสือ +bookmark,ที่คั่นหนังสือ +briefcase,กระเป๋าเอกสาร +bullhorn,โทรโข่ง +calendar,ปฏิทิน +camera,กล้อง +cancel,ยกเลิก +certificate,ใบรับรอง +check,ตรวจสอบ +chevron-down,วีลง +chevron-left,วีซ้าย +chevron-right,วีขวา +chevron-up,บั้งขึ้น +circle-arrow-down,วงกลมลูกศรลง +circle-arrow-left,วงกลมศรซ้าย +circle-arrow-right,วงกลมลูกศรขวา +circle-arrow-up,วงกลมลูกศรขึ้น +cog,ฟันเฟือง +comment,ความเห็น +create a Custom Field of type Link (Profile) and then use the 'Condition' settings to map that field to the Permission rule.,สร้างฟิลด์ที่กำหนดเองของ Link ชนิด (รายละเอียด) แล้วใช้การตั้งค่า 'สภาพ' to map เขตข้อมูลนั้นไปกฎการอนุญาต +dashboard,หน้าปัด +dd-mm-yyyy,dd-mm-yyyy +dd/mm/yyyy,วัน / เดือน / ปี +deactivate,ยกเลิกการใช้งาน +does not belong to BOM: ,ไม่ได้อยู่ใน BOM: +download,ดาวน์โหลด +download-alt,ดาวน์โหลด alt- +"e.g. 0.5, 2.5 etc","เช่น 0.5, 2.5 ฯลฯ" +"e.g. Bank, Cash, Credit Card","เช่นธนาคาร, เงินสด, บัตรเครดิต" +"e.g. Kg, Unit, Nos, m","กิโลกรัมเช่นหน่วย Nos, ม." +"e.g. Office, Billing, Shipping","สำนักงานเช่นการเรียกเก็บเงินการจัดส่งสินค้า," +edit,แก้ไข +eg. Cheque Number,เช่น จำนวนเช็ค +eject,ขับ +english,ภาษาอังกฤษ +envelope,ซองจดหมาย +equal,เท่ากัน +español,español +exclamation-sign,อัศเจรีย์เข้าสู่ระบบ +eye-close,ตาใกล้ +eye-open,ตาเปิด +facetime-video,FaceTime วิดีโอ +fast-backward,ย้อนกลับอย่างรวดเร็ว +fast-forward,อย่างรวดเร็วไปข้างหน้า +file,ไฟล์ +film,ฟิล์ม +filter,กรอง +fire,ไฟ +flag,ธง +folder-close,โฟลเดอร์ใกล้ +folder-open,โฟลเดอร์เปิด +font,ตัวอักษร +forward,ข้างหน้า +français,français +fullscreen,เต็มจอ +gift,ของขวัญ +glass,แก้ว +globe,โลก +greater than,มากกว่า +greater than equal,มากกว่าหรือเท่ากับ +hand-down,มือลง +hand-left,มือซ้าย +hand-right,มือข้างขวา- +hand-up,มือขึ้น +has been entered atleast twice,ได้รับการป้อน atleast สอง +hdd,ฮาร์ดดิสก์ +headphones,หูฟัง +heart,หัวใจ +home,บ้าน +inbox,กล่องจดหมาย +indent-left,เยื้องซ้าย +indent-right,เยื้องขวา +info-sign,ข้อมูลการเข้าสู่ระบบ +is a cancelled Item,รายการยกเลิกเป็น +is not a Stock Item,ไม่ได้เป็นรายการสต็อก +is not allowed.,ไม่ได้รับอนุญาต +italic,ตัวเอียง +leaf,ใบไม้ +less than,น้อยกว่า +less than equal,น้อยกว่าหรือเท่ากับ +lft,lft +list,รายการ +list-alt,รายการ ALT- +lock,ล็อค +magnet,แม่เหล็ก +map-marker,แผนที่เครื่องหมาย +minus,ลบ +minus-sign,ลบการลงชื่อเข้าใช้ +mm-dd-yyyy,dd-mm-ปี +mm/dd/yy,dd / mm / yyyy +mm/dd/yyyy,dd / mm / ปี +move,ย้าย +music,เพลง +nederlands,Nederlands +not equal,ไม่เท่ากับ +not within Fiscal Year,ไม่ได้อยู่ในปีงบประมาณ +of type Link,ประเภทของ Link +off,ปิด +ok,ok +ok-circle,ok วงกลม +ok-sign,OK-เครื่องหมาย +old_parent,old_parent +or,หรือ +pause,หยุด +pencil,ดินสอ +picture,ภาพ +plane,เครื่องบิน +play,เล่น +play-circle,เล่นวงกลม +plus,บวก +plus-sign,บวกเซ็น +português,português +print,พิมพ์ +qrcode,QRCode +question-sign,คำถามการลงชื่อเข้าใช้ +question-view,คำถาม-view +questions,คำถาม +random,สุ่ม +reached its end of life on,ถึงจุดสิ้นสุดของชีวิตเมื่อ +refresh,รีเฟรช +remove,ถอด +remove-circle,ลบวงกลม +remove-sign,ลบเซ็น +repeat,ทำซ้ำ +resize-full,ปรับขนาดเต็ม +resize-horizontal,ปรับขนาดในแนวนอน- +resize-small,ปรับขนาดเล็ก +resize-vertical,ปรับขนาดในแนวตั้ง +retweet,retweet +rgt,RGT +road,ถนน +screenshot,ภาพหน้าจอ +search,ค้นหา +share,หุ้น +share-alt,หุ้น Alt- +shopping-cart,ช้อปปิ้งรถเข็น +signal,สัญญาณ +star,ดาว +star-empty,ดาวที่ว่างเปล่า +step-backward,ขั้นตอนย้อนหลัง +step-forward,ก้าวไปข้างหน้า- +stop,หยุด +tag,แท็ก +tags,แท็ก +"target = ""_blank""",target = "_blank" +tasks,งาน +text-height,ข้อความที่มีความสูง +text-width,ข้อความความกว้าง +th,th +th-large,-th ใหญ่ +th-list,th-list +thumbs-down,ยกนิ้วลง +thumbs-up,ยกนิ้วขึ้น +time,เวลา +tint,สี +to,ไปยัง +to be dropped,ที่จะลดลง +trash,ถังขยะ +upload,อัปโหลด +user,ผู้ใช้งาน +user_image_show,user_image_show +values and dates,ค่านิยมและวันที่ +volume-down,ปริมาณลง +volume-off,ปริมาณออก +volume-up,ปริมาณขึ้น +warning-sign,ป้ายเตือน- +website page link,การเชื่อมโยงหน้าเว็บไซต์ +wrench,ประแจ +yyyy-mm-dd,YYYY-MM-DD +zoom-in,ซูมใน +zoom-out,ซูมออก +српски,српски +العربية,العربية +हिंदी,हिंदी +தமிழ்,தமிழ் diff --git a/utilities/doctype/address/locale/th-doc.json b/utilities/doctype/address/locale/th-doc.json new file mode 100644 index 0000000000..165d8ad6a9 --- /dev/null +++ b/utilities/doctype/address/locale/th-doc.json @@ -0,0 +1,28 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Address Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Address Line1": "Line1 \u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Address Line2": "Line2 \u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Address Title": "\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Address Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e02\u0e2d\u0e07\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Check to make Shipping Address": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Check to make primary address": "\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e49\u0e2d\u0e22\u0e39\u0e48\u0e2b\u0e25\u0e31\u0e01", + "City/Town": "\u0e40\u0e21\u0e37\u0e2d\u0e07 / \u0e08\u0e31\u0e07\u0e2b\u0e27\u0e31\u0e14", + "Country": "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a", + "Fax": "\u0e41\u0e1f\u0e01\u0e0b\u0e4c", + "Is Primary Address": "\u0e40\u0e1b\u0e47\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e2b\u0e25\u0e31\u0e01", + "Is Shipping Address": "\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07", + "Linked With": "\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e01\u0e31\u0e1a", + "Name of person or organization that this address belongs to.": "\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e38\u0e04\u0e04\u0e25\u0e2b\u0e23\u0e37\u0e2d\u0e2d\u0e07\u0e04\u0e4c\u0e01\u0e23\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e2d\u0e07", + "Phone": "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c", + "Pincode": "Pincode", + "Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "State": "\u0e23\u0e31\u0e10", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49", + "e.g. Office, Billing, Shipping": "\u0e2a\u0e33\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e2a\u0e48\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32," +} \ No newline at end of file diff --git a/utilities/doctype/answer/locale/th-doc.json b/utilities/doctype/answer/locale/th-doc.json new file mode 100644 index 0000000000..eb8c6234cf --- /dev/null +++ b/utilities/doctype/answer/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Answer": "\u0e15\u0e2d\u0e1a", + "Points": "\u0e08\u0e38\u0e14", + "Question": "\u0e04\u0e33\u0e16\u0e32\u0e21", + "Users Voted": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e42\u0e2b\u0e27\u0e15", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/doctype/contact/locale/th-doc.json b/utilities/doctype/contact/locale/th-doc.json new file mode 100644 index 0000000000..65271f744c --- /dev/null +++ b/utilities/doctype/contact/locale/th-doc.json @@ -0,0 +1,26 @@ +{ + "Communication HTML": "HTML \u0e01\u0e32\u0e23\u0e2a\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e23", + "Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Details": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Department": "\u0e41\u0e1c\u0e19\u0e01", + "Designation": "\u0e01\u0e32\u0e23\u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07", + "Email Id": "Email \u0e23\u0e2b\u0e31\u0e2a", + "Enter department to which this Contact belongs": "\u0e43\u0e2a\u0e48\u0e41\u0e1c\u0e19\u0e01\u0e17\u0e35\u0e48\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e2d\u0e07", + "Enter designation of this Contact": "\u0e43\u0e2a\u0e48\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48", + "First Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e41\u0e23\u0e01", + "Is Primary Contact": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e2b\u0e25\u0e31\u0e01\u0e04\u0e37\u0e2d", + "Last Name": "\u0e19\u0e32\u0e21\u0e2a\u0e01\u0e38\u0e25", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Open": "\u0e40\u0e1b\u0e34\u0e14", + "Phone": "\u0e42\u0e17\u0e23\u0e28\u0e31\u0e1e\u0e17\u0e4c", + "Replied": "Replied", + "Sales Partner": "\u0e1e\u0e31\u0e19\u0e18\u0e21\u0e34\u0e15\u0e23\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22", + "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Supplier Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Trash Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Unsubscribed": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e2a\u0e21\u0e31\u0e04\u0e23", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/doctype/gl_mapper/locale/th-doc.json b/utilities/doctype/gl_mapper/locale/th-doc.json new file mode 100644 index 0000000000..e1d81bb9a0 --- /dev/null +++ b/utilities/doctype/gl_mapper/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Doc Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17 Doc", + "Fields": "\u0e2a\u0e32\u0e02\u0e32", + "GL Mapper": "Mapper GL", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/doctype/gl_mapper_detail/locale/th-doc.json b/utilities/doctype/gl_mapper_detail/locale/th-doc.json new file mode 100644 index 0000000000..6f39208d61 --- /dev/null +++ b/utilities/doctype/gl_mapper_detail/locale/th-doc.json @@ -0,0 +1,24 @@ +{ + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Against": "\u0e01\u0e31\u0e1a", + "Against Voucher": "\u0e01\u0e31\u0e1a\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25", + "Against Voucher Type": "\u0e01\u0e31\u0e1a\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e15\u0e23", + "Aging Date": "Aging \u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Cost Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c\u0e15\u0e49\u0e19\u0e17\u0e38\u0e19", + "Credit": "\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15", + "Debit": "\u0e2b\u0e31\u0e01\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", + "GL Mapper Detail": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14 Mapper GL", + "Is Advance": "\u0e25\u0e48\u0e27\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Is Opening": "\u0e04\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e34\u0e14", + "Posting Date": "\u0e42\u0e1e\u0e2a\u0e15\u0e4c\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", + "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", + "Table Field": "\u0e40\u0e02\u0e15\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e15\u0e32\u0e23\u0e32\u0e07", + "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", + "The date at which current entry will get or has actually executed.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e2b\u0e23\u0e37\u0e2d\u0e44\u0e14\u0e49\u0e14\u0e33\u0e40\u0e19\u0e34\u0e19\u0e01\u0e32\u0e23\u0e08\u0e23\u0e34\u0e07", + "Transaction Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49", + "Voucher No": "\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25\u0e44\u0e21\u0e48\u0e21\u0e35", + "Voucher Type": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e1a\u0e31\u0e15\u0e23\u0e01\u0e33\u0e19\u0e31\u0e25" +} \ No newline at end of file diff --git a/utilities/doctype/profile_control/locale/th-doc.json b/utilities/doctype/profile_control/locale/th-doc.json new file mode 100644 index 0000000000..9f992af8b4 --- /dev/null +++ b/utilities/doctype/profile_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Profile Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/doctype/question/locale/th-doc.json b/utilities/doctype/question/locale/th-doc.json new file mode 100644 index 0000000000..cafd7360d3 --- /dev/null +++ b/utilities/doctype/question/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Answer": "\u0e15\u0e2d\u0e1a", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Points": "\u0e08\u0e38\u0e14", + "Question": "\u0e04\u0e33\u0e16\u0e32\u0e21", + "User Tags": "\u0e41\u0e17\u0e47\u0e01\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "Users Voted": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e42\u0e2b\u0e27\u0e15", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/doctype/rename_tool/locale/th-doc.json b/utilities/doctype/rename_tool/locale/th-doc.json new file mode 100644 index 0000000000..fa54b062a4 --- /dev/null +++ b/utilities/doctype/rename_tool/locale/th-doc.json @@ -0,0 +1,17 @@ +{ + "Account": "\u0e1a\u0e31\u0e0d\u0e0a\u0e35", + "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Customer": "\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Document to rename": "\u0e40\u0e2d\u0e01\u0e2a\u0e32\u0e23\u0e01\u0e32\u0e23\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e0a\u0e37\u0e48\u0e2d", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Item": "\u0e0a\u0e34\u0e49\u0e19", + "New Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e21\u0e48", + "Profile": "\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14", + "Rename": "\u0e15\u0e31\u0e49\u0e07\u0e0a\u0e37\u0e48\u0e2d\u0e43\u0e2b\u0e21\u0e48", + "Rename Tool": "\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d", + "Select DocType": "\u0e40\u0e25\u0e37\u0e2d\u0e01 DocType", + "Serial No": "\u0e2d\u0e19\u0e38\u0e01\u0e23\u0e21\u0e44\u0e21\u0e48\u0e21\u0e35", + "Supplier": "\u0e1c\u0e39\u0e49\u0e08\u0e31\u0e14\u0e08\u0e33\u0e2b\u0e19\u0e48\u0e32\u0e22", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49", + "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" +} \ No newline at end of file diff --git a/utilities/doctype/sms_control/locale/th-doc.json b/utilities/doctype/sms_control/locale/th-doc.json new file mode 100644 index 0000000000..cda0f80dc1 --- /dev/null +++ b/utilities/doctype/sms_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "SMS Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e07 SMS", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/doctype/sms_log/locale/th-doc.json b/utilities/doctype/sms_log/locale/th-doc.json new file mode 100644 index 0000000000..6828f5fd2b --- /dev/null +++ b/utilities/doctype/sms_log/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Message": "\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23", + "No of Requested SMS": "\u0e44\u0e21\u0e48\u0e21\u0e35\u0e02\u0e2d\u0e07 SMS \u0e02\u0e2d", + "No of Sent SMS": "\u0e44\u0e21\u0e48\u0e21\u0e35 SMS \u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07", + "Receiver List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e23\u0e31\u0e1a", + "SMS Log": "\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a SMS", + "Sender Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e2a\u0e48\u0e07", + "Sent On": "\u0e2a\u0e48\u0e07", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/doctype/sms_receiver/locale/th-doc.json b/utilities/doctype/sms_receiver/locale/th-doc.json new file mode 100644 index 0000000000..e1e45a7b9a --- /dev/null +++ b/utilities/doctype/sms_receiver/locale/th-doc.json @@ -0,0 +1,7 @@ +{ + "Customer Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e25\u0e39\u0e01\u0e04\u0e49\u0e32", + "Mobile No": "\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35", + "Receiver Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e1c\u0e39\u0e49\u0e23\u0e31\u0e1a", + "SMS Receiver": "\u0e23\u0e31\u0e1a SMS", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/doctype/trash_control/locale/th-doc.json b/utilities/doctype/trash_control/locale/th-doc.json new file mode 100644 index 0000000000..f62351c6d4 --- /dev/null +++ b/utilities/doctype/trash_control/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Trash Control": "\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Utilities": "\u0e22\u0e39\u0e17\u0e34\u0e25\u0e34\u0e15\u0e35\u0e49" +} \ No newline at end of file diff --git a/utilities/locale/th-py.json b/utilities/locale/th-py.json new file mode 100644 index 0000000000..85f0390191 --- /dev/null +++ b/utilities/locale/th-py.json @@ -0,0 +1,3 @@ +{ + "Status must be one of ": "\u0e2a\u0e16\u0e32\u0e19\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e43\u0e19" +} \ No newline at end of file diff --git a/utilities/module_def/utilities/locale/th-doc.json b/utilities/module_def/utilities/locale/th-doc.json new file mode 100644 index 0000000000..2206746d2a --- /dev/null +++ b/utilities/module_def/utilities/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Markdown Reference": "\u0e2d\u0e49\u0e32\u0e07\u0e2d\u0e34\u0e07 markdown", + "Messages": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21", + "To Do": "\u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e17\u0e48\u0e2d\u0e07\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27", + "Trash": "\u0e16\u0e31\u0e07\u0e02\u0e22\u0e30", + "Users": "\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", + "WIP Monitor": "\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a WIP", + "question-view": "\u0e04\u0e33\u0e16\u0e32\u0e21-view", + "questions": "\u0e04\u0e33\u0e16\u0e32\u0e21" +} \ No newline at end of file diff --git a/website/css/website.css b/website/css/website.css index 88c8f8ad19..956f22e8bc 100644 --- a/website/css/website.css +++ b/website/css/website.css @@ -78,8 +78,48 @@ p, li { margin: 0px; } -.clear { - clear: both; +.avatar { + display: inline-block; + vertical-align: middle; + overflow: hidden; + background-color: #ddd; + border: 1px solid #eee; +} + +.avatar-small { + margin-right: 5px; + width: 30px; + height: 30px; + border-radius: 30px; + -moz-border-radius: 30px; + -webkit-border-radius: 30px; +} +.avatar-small img { + width: 30px; +} + +.avatar-large { + margin-right: 10px; + width: 72px; + height: 72px; + border-radius: 72px; + -moz-border-radius: 72px; + -webkit-border-radius: 72px; +} +.avatar-large img { + width: 72px; +} + +.avatar-x-large { + margin-right: 10px; + width: 100px; + height: 100px; + border-radius: 100px; + -moz-border-radius: 100px; + -webkit-border-radius: 100px; +} +.avatar-x-large img { + width: 100px; } /* */ \ No newline at end of file diff --git a/website/doctype/about_us_settings/locale/th-doc.json b/website/doctype/about_us_settings/locale/th-doc.json new file mode 100644 index 0000000000..180a813344 --- /dev/null +++ b/website/doctype/about_us_settings/locale/th-doc.json @@ -0,0 +1,16 @@ +{ + "\"Company History\"": ""\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 "", + "\"Team Members\" or \"Management\"": ""\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e17\u0e35\u0e21" \u0e2b\u0e23\u0e37\u0e2d "\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23"", + "About Us Settings": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e23\u0e32", + "Company History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Company History Heading": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Company Introduction": "\u0e41\u0e19\u0e30\u0e19\u0e33 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Footer": "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", + "Help": "\u0e0a\u0e48\u0e27\u0e22", + "Introduce your company to the website visitor.": "\u0e41\u0e19\u0e30\u0e19\u0e33 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e02\u0e49\u0e32\u0e0a\u0e21\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "More content for the bottom of the page.": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e14\u0e49\u0e32\u0e19\u0e25\u0e48\u0e32\u0e07\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Settings for the About Us Page": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32", + "Team Members": "\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e43\u0e19\u0e17\u0e35\u0e21", + "Team Members Heading": "\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e43\u0e19\u0e17\u0e35\u0e21\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/about_us_team_member/locale/th-doc.json b/website/doctype/about_us_team_member/locale/th-doc.json new file mode 100644 index 0000000000..52d2280832 --- /dev/null +++ b/website/doctype/about_us_team_member/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "About Us Team Member": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e43\u0e19\u0e17\u0e35\u0e21\u0e40\u0e23\u0e32", + "Employee": "\u0e25\u0e39\u0e01\u0e08\u0e49\u0e32\u0e07", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/blog/blog.txt b/website/doctype/blog/blog.txt index a1cd351e87..af9606a71b 100644 --- a/website/doctype/blog/blog.txt +++ b/website/doctype/blog/blog.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:32", + "creation": "2013-01-25 11:35:09", "docstatus": 0, - "modified": "2013-01-22 14:16:45", + "modified": "2013-02-21 16:54:04", "modified_by": "Administrator", "owner": "Administrator" }, @@ -49,6 +49,13 @@ "fieldtype": "Check", "label": "Published" }, + { + "description": "Description for listing page, in plain text, only a couple of lines.", + "doctype": "DocField", + "fieldname": "blog_intro", + "fieldtype": "Small Text", + "label": "Blog Intro" + }, { "doctype": "DocField", "fieldname": "content", diff --git a/website/doctype/blog/locale/th-doc.json b/website/doctype/blog/locale/th-doc.json new file mode 100644 index 0000000000..e043a41d7a --- /dev/null +++ b/website/doctype/blog/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "Blog": "\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Content": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32", + "Email Sent": "\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Page Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e1e\u0e08", + "Published": "\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48", + "Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/blog_subscriber/locale/th-doc.json b/website/doctype/blog_subscriber/locale/th-doc.json new file mode 100644 index 0000000000..d02ae44375 --- /dev/null +++ b/website/doctype/blog_subscriber/locale/th-doc.json @@ -0,0 +1,4 @@ +{ + "Blog Subscriber": "\u0e2a\u0e21\u0e32\u0e0a\u0e34\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/company_history/locale/th-doc.json b/website/doctype/company_history/locale/th-doc.json new file mode 100644 index 0000000000..07ee031875 --- /dev/null +++ b/website/doctype/company_history/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Company History": "\u0e1b\u0e23\u0e30\u0e27\u0e31\u0e15\u0e34 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", + "Highlight": "\u0e40\u0e19\u0e49\u0e19", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Year": "\u0e1b\u0e35" +} \ No newline at end of file diff --git a/website/doctype/contact_us_settings/contact_us_settings.txt b/website/doctype/contact_us_settings/contact_us_settings.txt index cdad57af05..1bc7b05713 100644 --- a/website/doctype/contact_us_settings/contact_us_settings.txt +++ b/website/doctype/contact_us_settings/contact_us_settings.txt @@ -1,70 +1,79 @@ [ { - "owner": "Administrator", + "creation": "2012-12-27 19:04:50", "docstatus": 0, - "creation": "2012-12-27 17:43:10", + "modified": "2013-02-21 16:49:33", "modified_by": "Administrator", - "modified": "2012-12-27 17:57:55" + "owner": "Administrator" }, { - "issingle": 1, "description": "Settings for Contact Us Page", "doctype": "DocType", + "issingle": 1, "module": "Website", "name": "__common__" }, { + "doctype": "DocField", "name": "__common__", "parent": "Contact Us Settings", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "parent": "Contact Us Settings", - "read": 1, - "name": "__common__", "create": 1, "doctype": "DocPerm", - "write": 1, + "name": "__common__", + "parent": "Contact Us Settings", + "parentfield": "permissions", "parenttype": "DocType", - "role": "Website Manager", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "report": 0, + "role": "Website Manager", + "submit": 0, + "write": 1 }, { - "name": "Contact Us Settings", - "doctype": "DocType" + "doctype": "DocType", + "name": "Contact Us Settings" }, { "doctype": "DocField", - "label": "Help", "fieldname": "help", "fieldtype": "HTML", + "label": "Help", "options": "
Link for Contact Page is \"contact.html\"
" }, { "description": "Address to be displayed on the Contact Page", "doctype": "DocField", - "label": "Address", "fieldname": "address", "fieldtype": "Link", + "label": "Address", "options": "Address" }, { - "description": "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas.", + "description": "Default: \"Contact Us\"", "doctype": "DocField", - "label": "Query Options", - "fieldname": "query_options", - "fieldtype": "Small Text" + "fieldname": "heading", + "fieldtype": "Data", + "label": "Heading" }, { "description": "Introductory information for the Contact Us Page", "doctype": "DocField", - "label": "Introduction", "fieldname": "introduction", - "fieldtype": "Text Editor" + "fieldtype": "Text Editor", + "label": "Introduction" + }, + { + "description": "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas.", + "doctype": "DocField", + "fieldname": "query_options", + "fieldtype": "Small Text", + "label": "Query Options" }, { "doctype": "DocPerm" diff --git a/website/doctype/contact_us_settings/locale/th-doc.json b/website/doctype/contact_us_settings/locale/th-doc.json new file mode 100644 index 0000000000..9d5dfeaa5e --- /dev/null +++ b/website/doctype/contact_us_settings/locale/th-doc.json @@ -0,0 +1,12 @@ +{ + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Address to be displayed on the Contact Page": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e35\u0e48\u0e08\u0e30\u0e1b\u0e23\u0e32\u0e01\u0e0f\u0e1a\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d", + "Contact Us Settings": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32", + "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas.": "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e0a\u0e48\u0e19 "\u0e41\u0e1a\u0e1a\u0e2a\u0e2d\u0e1a\u0e16\u0e32\u0e21\u0e02\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e19\u0e31\u0e1a\u0e2a\u0e19\u0e38\u0e19\u0e41\u0e1a\u0e1a\u0e2a\u0e2d\u0e1a\u0e16\u0e32\u0e21" \u0e2f\u0e25\u0e2f \u0e41\u0e15\u0e48\u0e25\u0e30\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e2b\u0e21\u0e48\u0e2b\u0e23\u0e37\u0e2d\u0e04\u0e31\u0e48\u0e19\u0e14\u0e49\u0e27\u0e22\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e2b\u0e21\u0e32\u0e22\u0e08\u0e38\u0e25\u0e20\u0e32\u0e04", + "Help": "\u0e0a\u0e48\u0e27\u0e22", + "Introduction": "\u0e01\u0e32\u0e23\u0e41\u0e19\u0e30\u0e19\u0e33", + "Introductory information for the Contact Us Page": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1a\u0e37\u0e49\u0e2d\u0e07\u0e15\u0e49\u0e19\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32\u0e2b\u0e19\u0e49\u0e32", + "Query Options": "\u0e15\u0e31\u0e27\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e41\u0e1a\u0e1a\u0e2a\u0e2d\u0e1a\u0e16\u0e32\u0e21", + "Settings for Contact Us Page": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/cross_list_item_group/locale/th-doc.json b/website/doctype/cross_list_item_group/locale/th-doc.json new file mode 100644 index 0000000000..a47fdfe287 --- /dev/null +++ b/website/doctype/cross_list_item_group/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Cross List Item Group": "\u0e02\u0e49\u0e32\u0e21\u0e01\u0e25\u0e38\u0e48\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", + "Cross Listing of Item in multiple groups": "\u0e02\u0e49\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e2b\u0e25\u0e32\u0e22\u0e01\u0e25\u0e38\u0e48\u0e21", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/product_group/locale/th-doc.json b/website/doctype/product_group/locale/th-doc.json new file mode 100644 index 0000000000..06f7fd0c71 --- /dev/null +++ b/website/doctype/product_group/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Label": "\u0e09\u0e25\u0e32\u0e01", + "Product Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/product_settings/locale/th-doc.json b/website/doctype/product_settings/locale/th-doc.json new file mode 100644 index 0000000000..d96b4528ea --- /dev/null +++ b/website/doctype/product_settings/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Default Product Category": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19", + "Default: \"Product Search\"": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19: "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c"", + "Help": "\u0e0a\u0e48\u0e27\u0e22", + "List of Item Groups to be shown in \"All Products\" menu - in the sequence wanted and with number of indents (left spacing to show a tree effect).": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e2a\u0e14\u0e07\u0e43\u0e19 "\u0e17\u0e38\u0e01\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c" \u0e40\u0e21\u0e19\u0e39 - \u0e43\u0e19\u0e25\u0e33\u0e14\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e41\u0e25\u0e30\u0e21\u0e35\u0e08\u0e33\u0e19\u0e27\u0e19\u0e02\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e40\u0e22\u0e37\u0e49\u0e2d\u0e07 (\u0e23\u0e30\u0e22\u0e30\u0e2b\u0e48\u0e32\u0e07\u0e14\u0e49\u0e32\u0e19\u0e0b\u0e49\u0e32\u0e22\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e2a\u0e14\u0e07\u0e1c\u0e25\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49)", + "Product Categories": "\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Product Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", + "Search Help": "\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d", + "Settings for Product Catalog on the website": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e04\u0e15\u0e15\u0e32\u0e25\u0e47\u0e2d\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "This Item Group represents \"products.html\"": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e19\u0e35\u0e49\u0e2b\u0e21\u0e32\u0e22\u0e16\u0e36\u0e07 "products.html"", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Product Categories": "\u0e2b\u0e21\u0e27\u0e14\u0e2b\u0e21\u0e39\u0e48\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/products_settings/locale/th-doc.json b/website/doctype/products_settings/locale/th-doc.json new file mode 100644 index 0000000000..ed75263ee2 --- /dev/null +++ b/website/doctype/products_settings/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Groups": "\u0e01\u0e25\u0e38\u0e48\u0e21", + "Product Groups that are listed on the website. The first product group from this list will be listed by default on the \"Products Page\"": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e17\u0e35\u0e48\u0e21\u0e35\u0e01\u0e32\u0e23\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e27\u0e49\u0e1a\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c \u0e01\u0e25\u0e38\u0e48\u0e21\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e41\u0e23\u0e01\u0e08\u0e32\u0e01\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e19\u0e35\u200b\u200b\u0e49\u0e08\u0e30\u0e16\u0e39\u0e01\u0e23\u0e30\u0e1a\u0e38\u0e44\u0e27\u0e49\u0e15\u0e32\u0e21\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e17\u0e35\u0e48 "\u0e2b\u0e19\u0e49\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c"", + "Products Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/related_page/locale/th-doc.json b/website/doctype/related_page/locale/th-doc.json new file mode 100644 index 0000000000..7ef1f4bfc8 --- /dev/null +++ b/website/doctype/related_page/locale/th-doc.json @@ -0,0 +1,5 @@ +{ + "Page": "\u0e2b\u0e19\u0e49\u0e32", + "Related Page": "\u0e40\u0e1e\u0e08\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/style_settings/locale/th-doc.json b/website/doctype/style_settings/locale/th-doc.json new file mode 100644 index 0000000000..5c927eafa7 --- /dev/null +++ b/website/doctype/style_settings/locale/th-doc.json @@ -0,0 +1,31 @@ +{ + "12px": "12px", + "13px": "13px", + "14px": "14px", + "15px": "15px", + "16px": "16px", + "Add CSS": "\u0e40\u0e1e\u0e34\u0e48\u0e21 CSS", + "Arial": "Arial", + "Auto generated": "\u0e2d\u0e2d\u0e42\u0e15\u0e49\u0e2a\u0e23\u0e49\u0e32\u0e07", + "Background Color": "\u0e2a\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07", + "Background Image": "\u0e20\u0e32\u0e1e\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07", + "CSS": "CSS", + "Custom CSS": "CSS \u0e17\u0e35\u0e48\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e2d\u0e07", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Font": "\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23", + "Font Size": "\u0e02\u0e19\u0e32\u0e14\u0e15\u0e31\u0e27\u0e2d\u0e31\u0e01\u0e29\u0e23", + "Georgia": "\u0e08\u0e2d\u0e23\u0e4c\u0e40\u0e08\u0e35\u0e22", + "Heading Font": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 Font", + "Helvetica Neue": "Neue Helvetica", + "If image is selected, color will be ignored (attach first)": "\u0e2b\u0e32\u0e01\u0e20\u0e32\u0e1e\u0e16\u0e39\u0e01\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e2a\u0e35\u0e08\u0e30\u0e16\u0e39\u0e01\u0e25\u0e30\u0e40\u0e27\u0e49\u0e19 (\u0e41\u0e19\u0e1a\u0e41\u0e23\u0e01)", + "Lato": "lato", + "Lucida Grande": "\u0e41\u0e01\u0e23\u0e19\u0e14\u0e4c Lucida", + "Open Sans": "Sans \u0e40\u0e1b\u0e34\u0e14", + "Set your background color, font and image (tiled)": "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e2a\u0e35\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e41\u0e25\u0e30\u0e20\u0e32\u0e1e (\u0e01\u0e23\u0e30\u0e40\u0e1a\u0e37\u0e49\u0e2d\u0e07)", + "Solid background color (default light gray)": "\u0e2a\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e41\u0e02\u0e47\u0e07 (\u0e2a\u0e35\u0e40\u0e17\u0e32\u0e2d\u0e48\u0e2d\u0e19\u0e04\u0e48\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19)", + "Style Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Tahoma": "Tahoma", + "Verdana": "Verdana", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "add your own CSS (careful!)": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e2d\u0e07 CSS \u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 (careful!)" +} \ No newline at end of file diff --git a/website/doctype/top_bar_item/locale/th-doc.json b/website/doctype/top_bar_item/locale/th-doc.json new file mode 100644 index 0000000000..74432ecdd5 --- /dev/null +++ b/website/doctype/top_bar_item/locale/th-doc.json @@ -0,0 +1,9 @@ +{ + "Label": "\u0e09\u0e25\u0e32\u0e01", + "Parent Label": "\u0e1b\u0e49\u0e32\u0e22\u0e41\u0e21\u0e48", + "Target": "\u0e40\u0e1b\u0e49\u0e32", + "Top Bar Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 Bar \u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e22\u0e2d\u0e14", + "URL": "URL", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "target = \"_blank\"": "target = "_blank"" +} \ No newline at end of file diff --git a/website/doctype/web_page/locale/th-doc.json b/website/doctype/web_page/locale/th-doc.json new file mode 100644 index 0000000000..381af88e9c --- /dev/null +++ b/website/doctype/web_page/locale/th-doc.json @@ -0,0 +1,28 @@ +{ + "Add code as <script>": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e23\u0e2b\u0e31\u0e2a\u0e40\u0e1b\u0e47\u0e19 <script>", + "Begin this page with a slideshow of images": "\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e35\u0e49\u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1a\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e08\u0e32\u0e01\u0e20\u0e32\u0e1e", + "CSS": "CSS", + "Center": "\u0e28\u0e39\u0e19\u0e22\u0e4c", + "Content": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32", + "Content in markdown format that appears on the main side of your page": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a markdown \u0e0b\u0e36\u0e48\u0e07\u0e1b\u0e23\u0e32\u0e01\u0e0f\u0e1a\u0e19\u0e14\u0e49\u0e32\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Insert Code": "\u0e43\u0e2a\u0e48\u0e23\u0e2b\u0e31\u0e2a", + "Insert Style": "\u0e43\u0e2a\u0e48\u0e2a\u0e44\u0e15\u0e25\u0e4c", + "Javascript": "javascript", + "Left": "\u0e0b\u0e49\u0e32\u0e22", + "Link to other pages in the side bar and next section": "\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e44\u0e1b\u0e22\u0e31\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e43\u0e19\u0e41\u0e16\u0e1a\u0e14\u0e49\u0e32\u0e19\u0e02\u0e49\u0e32\u0e07\u0e41\u0e25\u0e30\u0e2a\u0e48\u0e27\u0e19\u0e16\u0e31\u0e14\u0e44\u0e1b", + "Main Section": "\u0e21\u0e32\u0e15\u0e23\u0e32\u0e2b\u0e25\u0e31\u0e01", + "More": "\u0e02\u0e36\u0e49\u0e19", + "Page Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e1e\u0e08", + "Page content": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Page to show on the website": "\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e2a\u0e14\u0e07\u0e1a\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Page url name (auto-generated) (add \".html\")": "\u0e0a\u0e37\u0e48\u0e2d URL \u0e2b\u0e19\u0e49\u0e32 (\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22\u0e2d\u0e31\u0e15\u0e42\u0e19\u0e21\u0e31\u0e15\u0e34) (\u0e40\u0e1e\u0e34\u0e48\u0e21 ". html")", + "Published": "\u0e40\u0e1c\u0e22\u0e41\u0e1e\u0e23\u0e48", + "Right": "\u0e02\u0e27\u0e32", + "Slideshow": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c", + "Text Align": "\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e15\u0e4d\u0e32\u0e41\u0e2b\u0e19\u0e48\u0e07", + "Title": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Title / headline of your page": "\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 / \u0e1e\u0e32\u0e14\u0e2b\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13", + "Web Page": "\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/website_item_group/locale/th-doc.json b/website/doctype/website_item_group/locale/th-doc.json new file mode 100644 index 0000000000..297caaaae7 --- /dev/null +++ b/website/doctype/website_item_group/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Cross Listing of Item in multiple groups": "\u0e02\u0e49\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e2b\u0e25\u0e32\u0e22\u0e01\u0e25\u0e38\u0e48\u0e21", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/website_product_category/locale/th-doc.json b/website/doctype/website_product_category/locale/th-doc.json new file mode 100644 index 0000000000..405f231564 --- /dev/null +++ b/website/doctype/website_product_category/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "0": "0", + "1": "1", + "2": "2", + "3": "3", + "4": "4", + "5": "5", + "Indent": "\u0e22\u0e48\u0e2d\u0e2b\u0e19\u0e49\u0e32", + "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", + "Product Category for website": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Product Category": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/website_script/locale/th-doc.json b/website/doctype/website_script/locale/th-doc.json new file mode 100644 index 0000000000..a0f15b8533 --- /dev/null +++ b/website/doctype/website_script/locale/th-doc.json @@ -0,0 +1,6 @@ +{ + "Javascript": "javascript", + "Script to attach to all web pages.": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e19\u0e1a\u0e44\u0e1b\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Script": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/website_settings/locale/_messages_doc.json b/website/doctype/website_settings/locale/_messages_doc.json index 1974ad9c08..4c9c59f780 100644 --- a/website/doctype/website_settings/locale/_messages_doc.json +++ b/website/doctype/website_settings/locale/_messages_doc.json @@ -4,29 +4,38 @@ "Background shade of the top menu bar", "Black", "Website Settings", + "Google Analytics ID", "White", "Subdomain", "Top Bar", "Website", + "Linked In Share", "Home Page is Products", "Top Bar Items", "File List", "Address", + "Google Plus One", "Sub-domain provided by erpnext.com", "Enter domain names associated to this website, each on a new line", "Domain List", "Brand is what appears on the top-right of the toolbar. If it is an image, make sure ithas a transparent background and use the <img /> tag. Keep size as 200px x 30px", "Address and other legal information you may want to put in the footer.", "Footer", + "Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.", "Footer Items", "FavIcon", + "Twitter Share", "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]", "Home Page", + "Facebook Share", "The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.", "Landing Page", "The \"Web Page\" that is the website home page", "Top Bar Background", + "Integrations", + "Tweet will be shared via your user account (if specified)", "If checked, the Home page will be the default Item Group for the website.", "Brand HTML", + "Twitter Share via", "Title Prefix" ] \ No newline at end of file diff --git a/website/doctype/website_settings/locale/th-doc.json b/website/doctype/website_settings/locale/th-doc.json new file mode 100644 index 0000000000..e3ac63d134 --- /dev/null +++ b/website/doctype/website_settings/locale/th-doc.json @@ -0,0 +1,41 @@ +{ + "Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.": "\u0e40\u0e1e\u0e34\u0e48\u0e21 Google Analytics ID: \u0e40\u0e0a\u0e48\u0e19 UA-89XXX57-1 \u0e01\u0e23\u0e38\u0e13\u0e32\u0e04\u0e49\u0e19\u0e2b\u0e32\u0e04\u0e27\u0e32\u0e21\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e43\u0e19 Google Analytics \u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", + "Address": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48", + "Address and other legal information you may want to put in the footer.": "\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e30\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e17\u0e32\u0e07\u0e01\u0e0e\u0e2b\u0e21\u0e32\u0e22\u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e2d\u0e32\u0e08\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e19\u0e33\u0e43\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", + "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]": "file icon \u0e21\u0e35. \u0e02\u0e22\u0e32\u0e22 ICO \u0e04\u0e27\u0e23\u0e08\u0e30\u0e02\u0e19\u0e32\u0e14 16 x 16 px \u0e2a\u0e23\u0e49\u0e32\u0e07\u0e02\u0e36\u0e49\u0e19\u0e42\u0e14\u0e22\u0e43\u0e0a\u0e49\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e01\u0e33\u0e40\u0e19\u0e34\u0e14\u0e44\u0e1f\u0e1f\u0e49\u0e32 favicon [ favicon-generator.org ]", + "Background shade of the top menu bar": "\u0e2a\u0e35\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e1a\u0e40\u0e21\u0e19\u0e39\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19", + "Black": "\u0e2a\u0e35\u0e14\u0e33", + "Brand HTML": "HTML \u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", + "Brand is what appears on the top-right of the toolbar. If it is an image, make sure ithas a transparent background and use the <img /> tag. Keep size as 200px x 30px": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e1b\u0e23\u0e32\u0e01\u0e0f\u0e1a\u0e19\u0e14\u0e49\u0e32\u0e19\u0e02\u0e27\u0e32\u0e1a\u0e19\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e1a\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d \u0e16\u0e49\u0e32\u0e21\u0e31\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e20\u0e32\u0e1e\u0e43\u0e2b\u0e49\u0e41\u0e19\u0e48\u0e43\u0e08\u0e27\u0e48\u0e32 ithas \u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e42\u0e1b\u0e23\u0e48\u0e07\u0e43\u0e2a\u0e41\u0e25\u0e30\u0e43\u0e0a\u0e49 <img /> \u0e41\u0e17\u0e47\u0e01 \u0e43\u0e2b\u0e49\u0e02\u0e19\u0e32\u0e14\u0e40\u0e1b\u0e47\u0e19 200px x 30px", + "Copyright": "\u0e25\u0e34\u0e02\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c", + "Domain List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e14\u0e40\u0e21\u0e19", + "Enter domain names associated to this website, each on a new line": "\u0e43\u0e2a\u0e48\u0e0a\u0e37\u0e48\u0e2d\u0e42\u0e14\u0e40\u0e21\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e01\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e19\u0e35\u0e49\u0e41\u0e15\u0e48\u0e25\u0e30\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e43\u0e2b\u0e21\u0e48", + "Facebook Share": "Facebook \u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19", + "FavIcon": "favicon", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Footer": "\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", + "Footer Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e48\u0e27\u0e19\u0e17\u0e49\u0e32\u0e22", + "Google Analytics ID": "ID \u0e02\u0e2d\u0e07 Google Analytics", + "Google Plus One": "Google Plus One", + "Home Page": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01", + "Home Page is Products": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e04\u0e37\u0e2d\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", + "If checked, the Home page will be the default Item Group for the website.": "\u0e2b\u0e32\u0e01\u0e01\u0e32\u0e23\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e08\u0e30\u0e40\u0e23\u0e34\u0e48\u0e21\u0e15\u0e49\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Integrations": "Integrations", + "Landing Page": "\u0e2b\u0e19\u0e49\u0e32 Landing Page", + "Linked In Share": "\u0e17\u0e35\u0e48\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07\u0e43\u0e19\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19", + "Misc": "misc", + "Sub-domain provided by erpnext.com": "\u0e42\u0e14\u0e40\u0e21\u0e19\u0e22\u0e48\u0e2d\u0e22\u0e42\u0e14\u0e22 erpnext.com", + "Subdomain": "subdomain", + "The \"Web Page\" that is the website home page": ""Web Page" \u0e19\u0e31\u0e48\u0e19\u0e04\u0e37\u0e2d\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e02\u0e2d\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.": "\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 / \u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e15\u0e32\u0e21\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e43\u0e2b\u0e49\u0e1b\u0e23\u0e32\u0e01\u0e0f\u0e1a\u0e19\u0e41\u0e16\u0e1a\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e1a\u0e23\u0e32\u0e27\u0e4c\u0e40\u0e0b\u0e2d\u0e23\u0e4c \u0e2b\u0e19\u0e49\u0e32\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e08\u0e30\u0e21\u0e35\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e0a\u0e37\u0e48\u0e2d", + "Title Prefix": "\u0e04\u0e33\u0e19\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e0a\u0e37\u0e48\u0e2d", + "Top Bar": "Bar \u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e22\u0e2d\u0e14", + "Top Bar Background": "\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e02\u0e2d\u0e07\u0e41\u0e16\u0e1a\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19", + "Top Bar Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 Bar \u0e2a\u0e16\u0e32\u0e19\u0e17\u0e35\u0e48\u0e22\u0e2d\u0e14", + "Tweet will be shared via your user account (if specified)": "\u0e1c\u0e39\u0e49\u0e08\u0e30\u0e43\u0e0a\u0e49\u0e23\u0e48\u0e27\u0e21\u0e01\u0e31\u0e19\u0e1c\u0e48\u0e32\u0e19\u0e17\u0e32\u0e07\u0e1a\u0e31\u0e0d\u0e0a\u0e35\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13 (\u0e16\u0e49\u0e32\u0e23\u0e30\u0e1a\u0e38)", + "Twitter Share": "Twitter \u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19", + "Twitter Share via": "\u0e41\u0e1a\u0e48\u0e07\u0e1b\u0e31\u0e19 Twitter \u0e1c\u0e48\u0e32\u0e19", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "White": "\u0e02\u0e32\u0e27" +} \ No newline at end of file diff --git a/website/doctype/website_slideshow/locale/th-doc.json b/website/doctype/website_slideshow/locale/th-doc.json new file mode 100644 index 0000000000..077c8dcf20 --- /dev/null +++ b/website/doctype/website_slideshow/locale/th-doc.json @@ -0,0 +1,10 @@ +{ + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Header": "\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27", + "Slideshow Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c", + "Slideshow Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c", + "Slideshow like display for the website": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e1c\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "This goes above the slideshow.": "\u0e19\u0e35\u0e49\u0e2a\u0e39\u0e07\u0e01\u0e27\u0e48\u0e32\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Slideshow": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/doctype/website_slideshow_item/locale/th-doc.json b/website/doctype/website_slideshow_item/locale/th-doc.json new file mode 100644 index 0000000000..38b1710516 --- /dev/null +++ b/website/doctype/website_slideshow_item/locale/th-doc.json @@ -0,0 +1,8 @@ +{ + "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", + "Heading": "\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07", + "Image": "\u0e20\u0e32\u0e1e", + "Website": "\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Slideshow Item": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/module_def/website/locale/th-doc.json b/website/module_def/website/locale/th-doc.json new file mode 100644 index 0000000000..69d9c4af9d --- /dev/null +++ b/website/module_def/website/locale/th-doc.json @@ -0,0 +1,13 @@ +{ + "Cross Listing of Item in multiple groups": "\u0e02\u0e49\u0e32\u0e21\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e02\u0e2d\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e43\u0e19\u0e2b\u0e25\u0e32\u0e22\u0e01\u0e25\u0e38\u0e48\u0e21", + "Page to show on the website": "\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e2a\u0e14\u0e07\u0e1a\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Product Category for website": "\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Script to attach to all web pages.": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e17\u0e35\u0e48\u0e08\u0e30\u0e41\u0e19\u0e1a\u0e44\u0e1b\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14", + "Set your background color, font and image (tiled)": "\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e2a\u0e35\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e41\u0e25\u0e30\u0e20\u0e32\u0e1e (\u0e01\u0e23\u0e30\u0e40\u0e1a\u0e37\u0e49\u0e2d\u0e07)", + "Settings for Contact Us Page": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32", + "Settings for Product Catalog on the website": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e04\u0e15\u0e15\u0e32\u0e25\u0e47\u0e2d\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Settings for the About Us Page": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32", + "Slideshow like display for the website": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e32\u0e23\u0e41\u0e2a\u0e14\u0e07\u0e1c\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Unsubscribe": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e2a\u0e21\u0e31\u0e04\u0e23", + "Website Home": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/page/website_home/locale/th-js.json b/website/page/website_home/locale/th-js.json new file mode 100644 index 0000000000..45120c759d --- /dev/null +++ b/website/page/website_home/locale/th-js.json @@ -0,0 +1,24 @@ +{ + "About Us Settings": "\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e23\u0e32", + "Advanced Scripting": "\u0e01\u0e32\u0e23\u0e40\u0e02\u0e35\u0e22\u0e19\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e39\u0e07", + "Blog": "\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Blog entry.": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", + "Contact Us Settings": "\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32", + "Content web page.": "\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32", + "Embed image slideshows in website pages.": "\u0e1d\u0e31\u0e07\u0e20\u0e32\u0e1e\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e20\u0e32\u0e1e\u0e43\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Javascript to append to the head section of the page.": "\u0e08\u0e32\u0e27\u0e32\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e1c\u0e19\u0e27\u0e01\u0e01\u0e31\u0e1a\u0e2a\u0e48\u0e27\u0e19\u0e2b\u0e31\u0e27\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e49\u0e32", + "Product Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c", + "Settings for About Us Page.": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32", + "Settings for Contact Us Page.": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e40\u0e23\u0e32", + "Settings for Product Catalog on the website.": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e41\u0e04\u0e15\u0e15\u0e32\u0e25\u0e47\u0e2d\u0e01\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1a\u0e19\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Setup of fonts and background.": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e41\u0e1a\u0e1a\u0e2d\u0e31\u0e01\u0e29\u0e23\u0e41\u0e25\u0e30\u0e1e\u0e37\u0e49\u0e19\u0e2b\u0e25\u0e31\u0e07", + "Setup of top navigation bar, footer and logo.": "\u0e01\u0e32\u0e23\u0e15\u0e34\u0e14\u0e15\u0e31\u0e49\u0e07\u0e08\u0e32\u0e01\u0e14\u0e49\u0e32\u0e19\u0e1a\u0e19\u0e41\u0e16\u0e1a\u0e19\u0e33\u0e17\u0e32\u0e07\u0e17\u0e49\u0e32\u0e22\u0e41\u0e25\u0e30\u0e42\u0e25\u0e42\u0e01\u0e49", + "Special Page Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e2b\u0e19\u0e49\u0e32\u0e1e\u0e34\u0e40\u0e28\u0e29", + "Style Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", + "Web Content": "\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e40\u0e27\u0e47\u0e1a", + "Web Page": "\u0e2b\u0e19\u0e49\u0e32\u0e40\u0e27\u0e47\u0e1a", + "Website Overall Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e42\u0e14\u0e22\u0e23\u0e27\u0e21\u0e02\u0e2d\u0e07\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Script": "\u0e2a\u0e04\u0e23\u0e34\u0e1b\u0e15\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Settings": "\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c", + "Website Slideshow": "\u0e2a\u0e44\u0e25\u0e14\u0e4c\u0e42\u0e0a\u0e27\u0e4c\u0e40\u0e27\u0e47\u0e1a\u0e44\u0e0b\u0e15\u0e4c" +} \ No newline at end of file diff --git a/website/templates/pages/about.html b/website/templates/pages/about.html index 4d0eefc0e8..30d9a5d287 100644 --- a/website/templates/pages/about.html +++ b/website/templates/pages/about.html @@ -20,12 +20,15 @@ {% endif %} {% if obj.doclist.get({"doctype":"Employee"}) %}

{{ obj.doc.team_members_heading or "Team Members" }}

- +
{% for d in obj.doclist.get({"doctype":"Employee"}) %} - + diff --git a/website/templates/pages/contact.html b/website/templates/pages/contact.html index 6022b9a523..204b6df317 100644 --- a/website/templates/pages/contact.html +++ b/website/templates/pages/contact.html @@ -8,23 +8,23 @@ {% block content %}
+

{{ obj.doc.heading or "Contact Us"}}

- {{ obj.doc.introduction or "

Contact Us

"}}
-
+
-

{% for option in obj.doc.query_options %} {% endfor %}

-

-

+

+

{% if obj.doc.address %} @@ -51,5 +51,6 @@
{% endif %}
+ {{ obj.doc.introduction }}
{% endblock %} \ No newline at end of file From dcb1b659b577258667650c76f5d90d0acf9d817f Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Feb 2013 17:05:01 +0530 Subject: [PATCH 010/982] added language --- startup/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startup/__init__.py b/startup/__init__.py index d4621df478..7abd5e2c87 100644 --- a/startup/__init__.py +++ b/startup/__init__.py @@ -31,7 +31,7 @@ lang_names = { "српски":"sr", "தமிழ்": "ta", "Hrvatski": "hr", - "ไทย": "th" + "ไทย": "th", "العربية":"ar" } From 9a17051c8d85fc57edcd48bc15467bca80b3f756 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 21 Feb 2013 19:44:55 +0530 Subject: [PATCH 011/982] material request should update bin, even if it is of type Material Transfer --- .../material_request/material_request.py | 41 ++++++-- .../material_request/test_material_request.py | 98 ++++++++++++++++++- stock/doctype/stock_entry/stock_entry.py | 14 +++ 3 files changed, 141 insertions(+), 12 deletions(-) diff --git a/stock/doctype/material_request/material_request.py b/stock/doctype/material_request/material_request.py index 708700d512..77426762f9 100644 --- a/stock/doctype/material_request/material_request.py +++ b/stock/doctype/material_request/material_request.py @@ -205,7 +205,7 @@ class DocType(BuyingController): self.doc.per_ordered = flt((per_ordered / flt(len(item_doclist))) * 100.0, 2) webnotes.conn.set_value(self.doc.doctype, self.doc.name, "per_ordered", self.doc.per_ordered) - + def update_completed_qty(controller, caller_method): if controller.doc.doctype == "Stock Entry": material_request_map = {} @@ -215,18 +215,43 @@ def update_completed_qty(controller, caller_method): if d.material_request not in material_request_map: material_request_map[d.material_request] = [] material_request_map[d.material_request].append(d.material_request_item) - webnotes.get_obj("Warehouse", d.t_warehouse).update_bin({ - "item_code": d.item_code, - "indented_qty": (d.docstatus==2 and 1 or -1) * d.transfer_qty, - "posting_date": controller.doc.posting_date, - }) for mr_name, mr_items in material_request_map.items(): mr_obj = webnotes.get_obj("Material Request", mr_name, with_children=1) mr_doctype = webnotes.get_doctype("Material Request") + if mr_obj.doc.status in ["Stopped", "Cancelled"]: msgprint(_("Material Request") + ": %s, " % mr_obj.doc.name + _(mr_doctype.get_label("status")) + " = %s. " % _(mr_obj.doc.status) - + _("Cannot continue."), raise_exception=True) + + _("Cannot continue."), raise_exception=webnotes.InvalidStatusError) - mr_obj.update_completed_qty(mr_items) \ No newline at end of file + _update_requested_qty(controller, mr_obj, mr_items) + + # update ordered percentage and qty + mr_obj.update_completed_qty(mr_items) + +def _update_requested_qty(controller, mr_obj, mr_items): + """update requested qty (before ordered_qty is updated)""" + for mr_item_name in mr_items: + mr_item = mr_obj.doclist.getone({"parentfield": "indent_details", "name": mr_item_name}) + se_detail = controller.doclist.getone({"parentfield": "mtn_details", + "material_request": mr_obj.doc.name, "material_request_item": mr_item_name}) + + mr_item.ordered_qty = flt(mr_item.ordered_qty) + mr_item.qty = flt(mr_item.qty) + se_detail.transfer_qty = flt(se_detail.transfer_qty) + + if se_detail.docstatus == 2 and mr_item.ordered_qty > mr_item.qty \ + and se_detail.transfer_qty == mr_item.ordered_qty: + add_indented_qty = mr_item.qty + elif se_detail.docstatus == 1 and \ + mr_item.ordered_qty + se_detail.transfer_qty > mr_item.qty: + add_indented_qty = mr_item.qty - mr_item.ordered_qty + else: + add_indented_qty = se_detail.transfer_qty + + webnotes.get_obj("Warehouse", se_detail.t_warehouse).update_bin({ + "item_code": se_detail.item_code, + "indented_qty": (se_detail.docstatus==2 and 1 or -1) * add_indented_qty, + "posting_date": controller.doc.posting_date, + }) diff --git a/stock/doctype/material_request/test_material_request.py b/stock/doctype/material_request/test_material_request.py index 3c2f421e95..ae40858564 100644 --- a/stock/doctype/material_request/test_material_request.py +++ b/stock/doctype/material_request/test_material_request.py @@ -3,6 +3,7 @@ from __future__ import unicode_literals import webnotes, unittest +from webnotes.utils import flt class TestMaterialRequest(unittest.TestCase): def _test_expected(self, doclist, expected_values): @@ -11,10 +12,10 @@ class TestMaterialRequest(unittest.TestCase): self.assertEquals(val, doclist[i].fields.get(fieldname)) def _test_requested_qty(self, qty1, qty2): - self.assertEqual(webnotes.conn.get_value("Bin", {"item_code": "_Test Item Home Desktop 100", - "warehouse": "_Test Warehouse"}, "indented_qty"), qty1) - self.assertEqual(webnotes.conn.get_value("Bin", {"item_code": "_Test Item Home Desktop 200", - "warehouse": "_Test Warehouse"}, "indented_qty"), qty2) + self.assertEqual(flt(webnotes.conn.get_value("Bin", {"item_code": "_Test Item Home Desktop 100", + "warehouse": "_Test Warehouse"}, "indented_qty")), qty1) + self.assertEqual(flt(webnotes.conn.get_value("Bin", {"item_code": "_Test Item Home Desktop 200", + "warehouse": "_Test Warehouse"}, "indented_qty")), qty2) def test_completed_qty_for_purchase(self): webnotes.conn.sql("""delete from `tabBin`""") @@ -124,6 +125,95 @@ class TestMaterialRequest(unittest.TestCase): self._test_expected(mr.doclist, [{"per_ordered": 0}, {"ordered_qty": 0}, {"ordered_qty": 0}]) self._test_requested_qty(54.0, 3.0) + def test_completed_qty_for_over_transfer(self): + webnotes.conn.sql("""delete from `tabBin`""") + + # submit material request of type Purchase + mr = webnotes.bean(copy=test_records[0]) + mr.doc.material_request_type = "Transfer" + mr.insert() + mr.submit() + + # check if per complete is None + self._test_expected(mr.doclist, [{"per_ordered": None}, {"ordered_qty": None}, {"ordered_qty": None}]) + + self._test_requested_qty(54.0, 3.0) + + # map a stock entry + se_doclist = webnotes.map_doclist([["Material Request", "Stock Entry"], + ["Material Request Item", "Stock Entry Detail"]], mr.doc.name) + se_doclist[0].fields.update({ + "posting_date": "2013-03-01", + "posting_time": "00:00" + }) + se_doclist[1].fields.update({ + "qty": 60.0, + "transfer_qty": 60.0, + "s_warehouse": "_Test Warehouse 1", + "incoming_rate": 1.0 + }) + se_doclist[2].fields.update({ + "qty": 3.0, + "transfer_qty": 3.0, + "s_warehouse": "_Test Warehouse 1", + "incoming_rate": 1.0 + }) + + # check for stopped status of Material Request + se = webnotes.bean(copy=se_doclist) + se.insert() + mr.obj.update_status('Stopped') + self.assertRaises(webnotes.ValidationError, se.submit) + self.assertRaises(webnotes.ValidationError, se.cancel) + + mr.obj.update_status('Submitted') + se = webnotes.bean(copy=se_doclist) + se.insert() + se.submit() + + # check if per complete is as expected + mr.load_from_db() + self._test_expected(mr.doclist, [{"per_ordered": 100}, {"ordered_qty": 60.0}, {"ordered_qty": 3.0}]) + self._test_requested_qty(0.0, 0.0) + + # check if per complete is as expected for Stock Entry cancelled + se.cancel() + mr.load_from_db() + self._test_expected(mr.doclist, [{"per_ordered": 0}, {"ordered_qty": 0}, {"ordered_qty": 0}]) + self._test_requested_qty(54.0, 3.0) + + def test_incorrect_mapping_of_stock_entry(self): + # submit material request of type Purchase + mr = webnotes.bean(copy=test_records[0]) + mr.doc.material_request_type = "Transfer" + mr.insert() + mr.submit() + + # map a stock entry + se_doclist = webnotes.map_doclist([["Material Request", "Stock Entry"], + ["Material Request Item", "Stock Entry Detail"]], mr.doc.name) + se_doclist[0].fields.update({ + "posting_date": "2013-03-01", + "posting_time": "00:00" + }) + se_doclist[1].fields.update({ + "qty": 60.0, + "transfer_qty": 60.0, + "s_warehouse": "_Test Warehouse", + "t_warehouse": "_Test Warehouse 1", + "incoming_rate": 1.0 + }) + se_doclist[2].fields.update({ + "qty": 3.0, + "transfer_qty": 3.0, + "s_warehouse": "_Test Warehouse 1", + "incoming_rate": 1.0 + }) + + # check for stopped status of Material Request + se = webnotes.bean(copy=se_doclist) + self.assertRaises(webnotes.MappingMismatchError, se.insert) + test_records = [ [ { diff --git a/stock/doctype/stock_entry/stock_entry.py b/stock/doctype/stock_entry/stock_entry.py index 78d06ce910..05d7460773 100644 --- a/stock/doctype/stock_entry/stock_entry.py +++ b/stock/doctype/stock_entry/stock_entry.py @@ -52,6 +52,8 @@ class DocType(TransactionBase): self.validate_finished_goods() self.validate_return_reference_doc() + self.validate_with_material_request() + def on_submit(self): self.update_serial_no(1) self.update_stock_ledger(0) @@ -580,6 +582,18 @@ class DocType(TransactionBase): 'supplier_name' : res and res[0][0] or '', 'supplier_address' : addr and addr[0] or ''} return ret + + def validate_with_material_request(self): + for item in self.doclist.get({"parentfield": "mtn_details"}): + if item.material_request: + mreq_item = webnotes.conn.get_value("Material Request Item", + {"name": item.material_request_item, "parent": item.material_request}, + ["item_code", "warehouse", "idx"], as_dict=True) + if mreq_item.item_code != item.item_code or mreq_item.warehouse != item.t_warehouse: + msgprint(_("Row #") + (" %d: " % item.idx) + _("does not match") + + " " + _("Row #") + (" %d %s " % (mreq_item.idx, _("of"))) + + _("Material Request") + (" - %s" % item.material_request), + raise_exception=webnotes.MappingMismatchError) @webnotes.whitelist() def get_production_order_details(production_order): From 5acd08205e55abb897955a0bc36e3f3cfadac15f Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 21 Feb 2013 20:06:57 +0530 Subject: [PATCH 012/982] fix in website pages - should be of _type POST --- public/js/website_utils.js | 1 + website/templates/js/blog_page.js | 3 ++- website/templates/js/login.js | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/public/js/website_utils.js b/public/js/website_utils.js index de4be6939f..502b5eb982 100644 --- a/public/js/website_utils.js +++ b/public/js/website_utils.js @@ -15,6 +15,7 @@ erpnext.send_message = function(opts) { subject: opts.subject, sender: opts.sender, status: opts.status, + _type: "POST", message: typeof opts.message == "string" ? opts.message : JSON.stringify(opts.message) diff --git a/website/templates/js/blog_page.js b/website/templates/js/blog_page.js index c52fb07270..d5e99709bc 100644 --- a/website/templates/js/blog_page.js +++ b/website/templates/js/blog_page.js @@ -38,7 +38,8 @@ $(document).ready(function() { cmd: "website.helpers.blog.add_comment", comment_doctype: "Blog", comment_docname: "{{ name }}", - page_name: "{{ page_name }}" + page_name: "{{ page_name }}", + _type: "POST" } $("#comment-form .alert").toggle(false); diff --git a/website/templates/js/login.js b/website/templates/js/login.js index b57db49e0e..96b820aa31 100644 --- a/website/templates/js/login.js +++ b/website/templates/js/login.js @@ -62,7 +62,8 @@ login.show_forgot_password = function(){ url: "server.py", data: { cmd: "reset_password", - user: login_id + user: login_id, + _type: "POST" }, success: function(data) { login.set_message("A new password has been sent to your email id.", "GREEN"); From d2b2174ee45fa65e72e871eb213b307793f0eb58 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 22 Feb 2013 01:44:52 +0530 Subject: [PATCH 013/982] removed last sales order update in customer --- selling/doctype/sales_order/sales_order.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/selling/doctype/sales_order/sales_order.py b/selling/doctype/sales_order/sales_order.py index b79a6d64f3..cebd7e02ce 100644 --- a/selling/doctype/sales_order/sales_order.py +++ b/selling/doctype/sales_order/sales_order.py @@ -261,9 +261,7 @@ class DocType(SellingController): def on_submit(self): self.check_prev_docstatus() self.update_stock_ledger(update_stock = 1) - # update customer's last sales order no. - sql("""update `tabCustomer` set last_sales_order = '%s', modified = '%s' - where name = '%s'""" % (self.doc.name, self.doc.modified, self.doc.customer)) + get_obj('Sales Common').check_credit(self,self.doc.grand_total) get_obj('Authorization Control').validate_approving_authority(self.doc.doctype, self.doc.grand_total, self) From 0ad995460c3551175be9cfc0920d35b5c4873be8 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 22 Feb 2013 10:34:22 +0530 Subject: [PATCH 014/982] fixed tags in kb --- public/js/kb_common.js | 1 + utilities/page/question_view/question_view.js | 4 ++- utilities/page/questions/questions.js | 25 ++++++++++--------- website/templates/html/product_in_list.html | 2 +- website/templates/pages/attributions.html | 4 +-- 5 files changed, 19 insertions(+), 17 deletions(-) diff --git a/public/js/kb_common.js b/public/js/kb_common.js index 1e3fcba15a..6dca3f8dbb 100644 --- a/public/js/kb_common.js +++ b/public/js/kb_common.js @@ -108,6 +108,7 @@ EditableText = function(args) { this.set_display(me.text); if(me.height) me.$w.find('.ed-text-input').css('height', me.height); + if(me.width) me.$w.find('.ed-text-input').css('width', me.width); // edit me.$w.find('.ed-text-edit').click(function() { diff --git a/utilities/page/question_view/question_view.js b/utilities/page/question_view/question_view.js index ea1a2dc70a..e479e131c5 100644 --- a/utilities/page/question_view/question_view.js +++ b/utilities/page/question_view/question_view.js @@ -90,6 +90,7 @@ KBQuestionView = function(w, qid, qtext) { $(w.add_answer_area, '

Add your Answer

\
In markdown format
'); this.input = $a(w.add_answer_area, 'textarea'); + $(this.input).css({width: "90%", height: "200px"}); //wn.tinymce.add_simple(this.input); this.btn = $btn($a(w.add_answer_area, 'div'), 'Post', function() { @@ -174,7 +175,8 @@ KBAnswer = function(body, data, ans_list) { text: data.answer, inp_class: 'qv-ans-input', disp_class: 'qv-ans-text', - height: '300px' + height: '300px', + width: '90%' }); $(edtxt.wrapper).addClass('well'); diff --git a/utilities/page/questions/questions.js b/utilities/page/questions/questions.js index 0e88728d22..e7e99b5323 100644 --- a/utilities/page/questions/questions.js +++ b/utilities/page/questions/questions.js @@ -25,19 +25,17 @@ pscript.onload_questions = function(wrapper) { // kb var kb = new KnowledgeBase(body); - // sidebar - this.sidebar = new wn.widgets.PageSidebar($(wrapper).find('.questions-tags').get(0), { - sections: [ - { - title: 'Top Tags', - render: function(body) { - new wn.widgets.TagCloud(body, 'Question', function(tag) - { kb.set_tag_filter(tag) }); - } + wn.model.with_doctype("Question", function() { + this.sidebar_stats = new wn.views.SidebarStats({ + doctype: "Question", + stats: ["_user_tags"], + parent: $(wrapper).find('.questions-tags'), + set_filter: function(fieldname, label) { + kb.set_filter(fieldname, label); + //me.set_filter(fieldname, label); } - ] - }); - set_title('Knowledge Base'); + }); + }) } // knowledge base object @@ -137,6 +135,9 @@ function KnowledgeBase(w) { } + this.set_filter = function(fieldname, label) { + this.set_tag_filter({label:label}); + } // add a tag filter to the search in the // main page this.set_tag_filter = function(tag) { diff --git a/website/templates/html/product_in_list.html b/website/templates/html/product_in_list.html index 5daa44e167..43b0134c1d 100644 --- a/website/templates/html/product_in_list.html +++ b/website/templates/html/product_in_list.html @@ -6,7 +6,7 @@ {% include 'html/product_missing_image.html' %} {% endif %} -
+

{{ item_name }}

Item Code: {{ name }}

diff --git a/website/templates/pages/attributions.html b/website/templates/pages/attributions.html index e587484377..2d195ba9cd 100644 --- a/website/templates/pages/attributions.html +++ b/website/templates/pages/attributions.html @@ -11,8 +11,7 @@ {% set title="ERPNext - Web Based, Open Source ERP" %} {% block content %} -
-
+

This website is made using these Awesome Open Source Projects


- +
+ +
+

{{ d.employee_name }}

{{ d.bio }}
@@ -105,6 +104,5 @@

Note: A link to this page must be easily accessible.

- {% endblock %} \ No newline at end of file From c359a58766c07abb047399df44548c5d088c0c71 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 22 Feb 2013 10:48:07 +0530 Subject: [PATCH 015/982] added Item Name in pending type query reports --- .../delivered_items_to_be_billed.txt | 6 +++--- .../ordered_items_to_be_billed.txt | 6 +++--- .../ordered_items_to_be_delivered.txt | 6 +++--- .../purchase_order_items_to_be_received.txt | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt b/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt index 9ee3b111ed..88ff16a023 100644 --- a/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt +++ b/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-11-28 11:24:29", + "creation": "2013-02-21 14:26:44", "docstatus": 0, - "modified": "2013-02-21 11:41:51", + "modified": "2013-02-22 10:46:13", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,7 +10,7 @@ "doctype": "Report", "is_standard": "Yes", "name": "__common__", - "query": "select \n `tabDelivery Note`.`name` as \"Delivery Note:Link/Delivery Note:120\",\n`tabDelivery Note`.`customer` as \"Customer:Link/Customer:120\",\n`tabDelivery Note`.`status` as \"Status\",\n `tabDelivery Note`.`posting_date` as \"Date:Date\",\n `tabDelivery Note`.`project_name` as \"Project\",\n `tabDelivery Note Item`.item_code as \"Item:Link/Item:120\",\n `tabDelivery Note Item`.description as \"Description:Data:120\",\n `tabDelivery Note Item`.amount as \"Amount:Currency:110\",\n (`tabDelivery Note Item`.billed_amt * ifnull(`tabDelivery Note`.conversion_rate, 1)) as \"Billed Amount:Currency:110\",\n (ifnull(`tabDelivery Note Item`.amount,0) - (ifnull(`tabDelivery Note Item`.billed_amt,0) * ifnull(`tabDelivery Note`.conversion_rate, 1))) as \"Pending Amount:Currency:120\"\nfrom\n `tabDelivery Note`, `tabDelivery Note Item`\nwhere\n `tabDelivery Note Item`.`parent` = `tabDelivery Note`.`name`\n and `tabDelivery Note`.docstatus = 1\n and `tabDelivery Note`.status != \"Stopped\"\n and ifnull(`tabDelivery Note Item`.billed_amt,0) < ifnull(`tabDelivery Note Item`.export_amount,0)\norder by `tabDelivery Note`.posting_date asc", + "query": "select \n `tabDelivery Note`.`name` as \"Delivery Note:Link/Delivery Note:120\",\n`tabDelivery Note`.`customer` as \"Customer:Link/Customer:120\",\n`tabDelivery Note`.`status` as \"Status\",\n `tabDelivery Note`.`posting_date` as \"Date:Date\",\n `tabDelivery Note`.`project_name` as \"Project\",\n `tabDelivery Note Item`.item_code as \"Item:Link/Item:120\",\n `tabDelivery Note Item`.amount as \"Amount:Currency:110\",\n (`tabDelivery Note Item`.billed_amt * ifnull(`tabDelivery Note`.conversion_rate, 1)) as \"Billed Amount:Currency:110\",\n (ifnull(`tabDelivery Note Item`.amount,0) - (ifnull(`tabDelivery Note Item`.billed_amt,0) * ifnull(`tabDelivery Note`.conversion_rate, 1))) as \"Pending Amount:Currency:120\",\n `tabDelivery Note Item`.item_name as \"Item Name::150\",\n `tabDelivery Note Item`.description as \"Description:Data:200\"\nfrom\n `tabDelivery Note`, `tabDelivery Note Item`\nwhere\n `tabDelivery Note Item`.`parent` = `tabDelivery Note`.`name`\n and `tabDelivery Note`.docstatus = 1\n and `tabDelivery Note`.status != \"Stopped\"\n and ifnull(`tabDelivery Note Item`.billed_amt,0) < ifnull(`tabDelivery Note Item`.export_amount,0)\norder by `tabDelivery Note`.posting_date asc", "ref_doctype": "Sales Invoice" }, { diff --git a/accounts/report/ordered_items_to_be_billed/ordered_items_to_be_billed.txt b/accounts/report/ordered_items_to_be_billed/ordered_items_to_be_billed.txt index 8e4c641382..b251bd90c6 100644 --- a/accounts/report/ordered_items_to_be_billed/ordered_items_to_be_billed.txt +++ b/accounts/report/ordered_items_to_be_billed/ordered_items_to_be_billed.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-12-14 14:27:05", + "creation": "2013-02-21 14:26:44", "docstatus": 0, - "modified": "2013-02-21 11:42:29", + "modified": "2013-02-22 10:47:24", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,7 +10,7 @@ "doctype": "Report", "is_standard": "Yes", "name": "__common__", - "query": "select \n `tabSales Order`.`name` as \"Sales Order:Link/Sales Order:120\",\n `tabSales Order`.`customer` as \"Customer:Link/Customer:120\",\n `tabSales Order`.`status` as \"Status\",\n `tabSales Order`.`transaction_date` as \"Date:Date\",\n `tabSales Order`.`project_name` as \"Project\",\n `tabSales Order Item`.item_code as \"Item:Link/Item:120\",\n `tabSales Order Item`.description as \"Description:Data:120\",\n `tabSales Order Item`.amount as \"Amount:Currency:110\",\n (`tabSales Order Item`.billed_amt * ifnull(`tabSales Order`.conversion_rate, 1)) as \"Billed Amount:Currency:110\",\n (ifnull(`tabSales Order Item`.amount, 0) - (ifnull(`tabSales Order Item`.billed_amt, 0) * ifnull(`tabSales Order`.conversion_rate, 1))) as \"Pending Amount:Currency:120\"\nfrom\n `tabSales Order`, `tabSales Order Item`\nwhere\n `tabSales Order Item`.`parent` = `tabSales Order`.`name`\n and `tabSales Order`.docstatus = 1\n and `tabSales Order`.status != \"Stopped\"\n and ifnull(`tabSales Order Item`.billed_amt,0) < ifnull(`tabSales Order Item`.export_amount,0)\norder by `tabSales Order`.transaction_date asc", + "query": "select \n `tabSales Order`.`name` as \"Sales Order:Link/Sales Order:120\",\n `tabSales Order`.`customer` as \"Customer:Link/Customer:120\",\n `tabSales Order`.`status` as \"Status\",\n `tabSales Order`.`transaction_date` as \"Date:Date\",\n `tabSales Order`.`project_name` as \"Project\",\n `tabSales Order Item`.item_code as \"Item:Link/Item:120\",\n `tabSales Order Item`.amount as \"Amount:Currency:110\",\n (`tabSales Order Item`.billed_amt * ifnull(`tabSales Order`.conversion_rate, 1)) as \"Billed Amount:Currency:110\",\n (ifnull(`tabSales Order Item`.amount, 0) - (ifnull(`tabSales Order Item`.billed_amt, 0) * ifnull(`tabSales Order`.conversion_rate, 1))) as \"Pending Amount:Currency:120\",\n `tabSales Order Item`.item_name as \"Item Name::150\",\n `tabSales Order Item`.description as \"Description::200\"\nfrom\n `tabSales Order`, `tabSales Order Item`\nwhere\n `tabSales Order Item`.`parent` = `tabSales Order`.`name`\n and `tabSales Order`.docstatus = 1\n and `tabSales Order`.status != \"Stopped\"\n and ifnull(`tabSales Order Item`.billed_amt,0) < ifnull(`tabSales Order Item`.export_amount,0)\norder by `tabSales Order`.transaction_date asc", "ref_doctype": "Sales Invoice" }, { diff --git a/stock/report/ordered_items_to_be_delivered/ordered_items_to_be_delivered.txt b/stock/report/ordered_items_to_be_delivered/ordered_items_to_be_delivered.txt index bf2c0ffd49..afcaef08af 100644 --- a/stock/report/ordered_items_to_be_delivered/ordered_items_to_be_delivered.txt +++ b/stock/report/ordered_items_to_be_delivered/ordered_items_to_be_delivered.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-02 22:33:12", + "creation": "2013-02-21 14:26:49", "docstatus": 0, - "modified": "2013-02-21 11:40:05", + "modified": "2013-02-22 10:43:27", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,7 +10,7 @@ "doctype": "Report", "is_standard": "Yes", "name": "__common__", - "query": "select \n `tabSales Order`.`name` as \"Sales Order:Link/Sales Order:120\",\n `tabSales Order`.`customer` as \"Customer:Link/Customer:120\",\n `tabSales Order`.`status` as \"Status\",\n `tabSales Order`.`transaction_date` as \"Date:Date\",\n `tabSales Order`.`project_name` as \"Project\",\n `tabSales Order Item`.item_code as \"Item:Link/Item:120\",\n `tabSales Order Item`.description as \"Description\",\n `tabSales Order Item`.qty as \"Qty:Float\",\n `tabSales Order Item`.delivered_qty as \"Delivered Qty:Float\",\n (`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0)) as \"Qty to Deliver:Float\"\nfrom\n `tabSales Order`, `tabSales Order Item`\nwhere\n `tabSales Order Item`.`parent` = `tabSales Order`.`name`\n and `tabSales Order`.docstatus = 1\n and `tabSales Order`.status != \"Stopped\"\n and ifnull(`tabSales Order Item`.delivered_qty,0) < ifnull(`tabSales Order Item`.qty,0)\norder by `tabSales Order`.transaction_date asc", + "query": "select \n `tabSales Order`.`name` as \"Sales Order:Link/Sales Order:120\",\n `tabSales Order`.`customer` as \"Customer:Link/Customer:120\",\n `tabSales Order`.`status` as \"Status\",\n `tabSales Order`.`transaction_date` as \"Date:Date\",\n `tabSales Order`.`project_name` as \"Project\",\n `tabSales Order Item`.item_code as \"Item:Link/Item:120\",\n `tabSales Order Item`.qty as \"Qty:Float\",\n `tabSales Order Item`.delivered_qty as \"Delivered Qty:Float\",\n (`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0)) as \"Qty to Deliver:Float\",\n `tabSales Order Item`.item_name as \"Item Name::150\",\n `tabSales Order Item`.description as \"Description::200\"\nfrom\n `tabSales Order`, `tabSales Order Item`\nwhere\n `tabSales Order Item`.`parent` = `tabSales Order`.`name`\n and `tabSales Order`.docstatus = 1\n and `tabSales Order`.status != \"Stopped\"\n and ifnull(`tabSales Order Item`.delivered_qty,0) < ifnull(`tabSales Order Item`.qty,0)\norder by `tabSales Order`.transaction_date asc", "ref_doctype": "Delivery Note" }, { diff --git a/stock/report/purchase_order_items_to_be_received/purchase_order_items_to_be_received.txt b/stock/report/purchase_order_items_to_be_received/purchase_order_items_to_be_received.txt index 0d3fbb145a..fe4b84487a 100644 --- a/stock/report/purchase_order_items_to_be_received/purchase_order_items_to_be_received.txt +++ b/stock/report/purchase_order_items_to_be_received/purchase_order_items_to_be_received.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-02 22:33:12", + "creation": "2013-02-21 14:26:49", "docstatus": 0, - "modified": "2013-02-21 11:40:58", + "modified": "2013-02-22 10:44:34", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,7 +10,7 @@ "doctype": "Report", "is_standard": "Yes", "name": "__common__", - "query": "select \n `tabPurchase Order`.`name` as \"Purchase Order:Link/Purchase Order:120\",\n `tabPurchase Order`.`transaction_date` as \"Date:Date:100\",\n `tabPurchase Order`.`supplier` as \"Supplier:Link/Supplier:120\",\n `tabPurchase Order`.`project_name` as \"Project\",\n `tabPurchase Order Item`.item_code as \"Item Code:Link/Item:120\",\n `tabPurchase Order Item`.description as \"Description::180\",\n `tabPurchase Order Item`.qty as \"Qty:Float:100\",\n `tabPurchase Order Item`.received_qty as \"Received Qty:Float:100\", \n (`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0)) as \"Qty to Receive:Float:100\"\nfrom\n `tabPurchase Order`, `tabPurchase Order Item`\nwhere\n `tabPurchase Order Item`.`parent` = `tabPurchase Order`.`name`\n and `tabPurchase Order`.docstatus = 1\n and `tabPurchase Order`.status != \"Stopped\"\n and ifnull(`tabPurchase Order Item`.received_qty, 0) < ifnull(`tabPurchase Order Item`.qty, 0)\norder by `tabPurchase Order`.transaction_date asc", + "query": "select \n `tabPurchase Order`.`name` as \"Purchase Order:Link/Purchase Order:120\",\n `tabPurchase Order`.`transaction_date` as \"Date:Date:100\",\n `tabPurchase Order`.`supplier` as \"Supplier:Link/Supplier:120\",\n `tabPurchase Order`.`project_name` as \"Project\",\n `tabPurchase Order Item`.item_code as \"Item Code:Link/Item:120\",\n `tabPurchase Order Item`.qty as \"Qty:Float:100\",\n `tabPurchase Order Item`.received_qty as \"Received Qty:Float:100\", \n (`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0)) as \"Qty to Receive:Float:100\",\n `tabPurchase Order Item`.item_name as \"Item Name::150\",\n `tabPurchase Order Item`.description as \"Description::200\"\nfrom\n `tabPurchase Order`, `tabPurchase Order Item`\nwhere\n `tabPurchase Order Item`.`parent` = `tabPurchase Order`.`name`\n and `tabPurchase Order`.docstatus = 1\n and `tabPurchase Order`.status != \"Stopped\"\n and ifnull(`tabPurchase Order Item`.received_qty, 0) < ifnull(`tabPurchase Order Item`.qty, 0)\norder by `tabPurchase Order`.transaction_date asc", "ref_doctype": "Purchase Receipt" }, { From d196ab4254c7957523da1f35549f3b190b72b350 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 22 Feb 2013 11:06:45 +0530 Subject: [PATCH 016/982] remove customer details from Project --- projects/doctype/project/project.txt | 107 ++++----------------------- 1 file changed, 14 insertions(+), 93 deletions(-) diff --git a/projects/doctype/project/project.txt b/projects/doctype/project/project.txt index 11d473e73b..326a47ae90 100644 --- a/projects/doctype/project/project.txt +++ b/projects/doctype/project/project.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:17", + "creation": "2013-01-29 19:25:50", "docstatus": 0, - "modified": "2013-01-29 17:01:19", + "modified": "2013-02-22 11:06:22", "modified_by": "Administrator", "owner": "Administrator" }, @@ -25,20 +25,13 @@ "permlevel": 0 }, { - "amend": 0, - "cancel": 1, - "create": 1, "doctype": "DocPerm", "name": "__common__", "parent": "Project", "parentfield": "permissions", "parenttype": "DocType", - "permlevel": 0, "read": 1, - "report": 1, - "role": "Projects User", - "submit": 0, - "write": 1 + "role": "Projects User" }, { "doctype": "DocType", @@ -289,88 +282,6 @@ "reqd": 0, "search_index": 1 }, - { - "doctype": "DocField", - "fieldname": "customer_name", - "fieldtype": "Data", - "in_filter": 1, - "label": "Customer Name", - "no_copy": 0, - "oldfieldname": "customer_name", - "oldfieldtype": "Data", - "read_only": 1, - "search_index": 1 - }, - { - "doctype": "DocField", - "fieldname": "customer_address", - "fieldtype": "Small Text", - "label": "Customer Address", - "no_copy": 0, - "oldfieldname": "customer_address", - "oldfieldtype": "Small Text", - "read_only": 1, - "search_index": 0 - }, - { - "doctype": "DocField", - "fieldname": "contact_person", - "fieldtype": "Link", - "in_filter": 1, - "label": "Contact Person", - "no_copy": 0, - "oldfieldname": "contact_person", - "oldfieldtype": "Link", - "options": "Contact", - "reqd": 0, - "search_index": 0 - }, - { - "doctype": "DocField", - "fieldname": "territory", - "fieldtype": "Link", - "in_filter": 1, - "label": "Territory", - "oldfieldname": "territory", - "oldfieldtype": "Link", - "options": "Territory", - "reqd": 0, - "search_index": 0 - }, - { - "doctype": "DocField", - "fieldname": "contact_no", - "fieldtype": "Data", - "label": "Contact No", - "no_copy": 0, - "oldfieldname": "contact_no", - "oldfieldtype": "Data", - "read_only": 1, - "search_index": 0 - }, - { - "doctype": "DocField", - "fieldname": "email_id", - "fieldtype": "Data", - "label": "Email Id", - "no_copy": 0, - "oldfieldname": "email_id", - "oldfieldtype": "Data", - "read_only": 1, - "search_index": 0 - }, - { - "doctype": "DocField", - "fieldname": "customer_group", - "fieldtype": "Link", - "label": "Customer Group", - "no_copy": 0, - "oldfieldname": "customer_group", - "oldfieldtype": "Link", - "options": "Customer Group", - "read_only": 1, - "search_index": 0 - }, { "doctype": "DocField", "fieldname": "trash_reason", @@ -394,6 +305,16 @@ "search_index": 0 }, { - "doctype": "DocPerm" + "cancel": 1, + "create": 1, + "doctype": "DocPerm", + "permlevel": 0, + "report": 1, + "submit": 0, + "write": 1 + }, + { + "doctype": "DocPerm", + "permlevel": 1 } ] \ No newline at end of file From 25af38e5097bcd619c0941b7089482e19068807d Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 22 Feb 2013 11:43:14 +0530 Subject: [PATCH 017/982] show leave block day warning --- .../leave_application/leave_application.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/hr/doctype/leave_application/leave_application.py b/hr/doctype/leave_application/leave_application.py index 07086dcc4d..32e0a650ed 100755 --- a/hr/doctype/leave_application/leave_application.py +++ b/hr/doctype/leave_application/leave_application.py @@ -36,6 +36,7 @@ class DocType(DocListController): self.validate_balance_leaves() self.validate_leave_overlap() self.validate_max_days() + self.show_block_day_warning() self.validate_block_days() def on_update(self): @@ -60,6 +61,17 @@ class DocType(DocListController): # notify leave applier about cancellation self.notify_employee("cancelled") + def show_block_day_warning(self): + from hr.doctype.leave_block_list.leave_block_list import get_applicable_block_dates + + block_dates = get_applicable_block_dates(self.doc.from_date, self.doc.to_date, + self.doc.employee, self.doc.company, all_lists=True) + + if block_dates: + webnotes.msgprint(_("Warning: Leave application contains following block dates") + ":") + for d in block_dates: + webnotes.msgprint(formatdate(d.block_date) + ": " + d.reason) + def validate_block_days(self): from hr.doctype.leave_block_list.leave_block_list import get_applicable_block_dates @@ -67,11 +79,8 @@ class DocType(DocListController): self.doc.employee, self.doc.company) if block_dates: - webnotes.msgprint(_("Following dates are blocked for Leave") + ":") - for d in block_dates: - webnotes.msgprint(formatdate(d.block_date) + ": " + d.reason) - if self.doc.status == "Approved": + webnotes.msgprint(_("Cannot approve leave as you are not authorized to approve leaves on Block Dates.")) raise LeaveDayBlockedError def get_holidays(self): From 96b91f49fac3dfb8e746319232780d1dc6a32cbe Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 22 Feb 2013 12:32:02 +0530 Subject: [PATCH 018/982] check toggle converted to true / false --- hr/doctype/leave_application/leave_application_calendar.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hr/doctype/leave_application/leave_application_calendar.js b/hr/doctype/leave_application/leave_application_calendar.js index eebd5590a5..398664e530 100644 --- a/hr/doctype/leave_application/leave_application_calendar.js +++ b/hr/doctype/leave_application/leave_application_calendar.js @@ -6,5 +6,12 @@ wn.views.calendar["Leave Application"] = wn.views.Calendar.extend({ "title": "title", "status": "status", }, + options: { + header: { + left: 'prev,next today', + center: 'title', + right: 'month' + } + }, get_events_method: "hr.doctype.leave_application.leave_application.get_events" }) \ No newline at end of file From 87d270a5b55056009cfa86a58e33ec56111fb311 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 22 Feb 2013 12:44:51 +0530 Subject: [PATCH 019/982] refactored code for reserved qty with testcases --- selling/doctype/sales_common/sales_common.py | 79 +++---- selling/doctype/sales_order/sales_order.py | 16 +- .../doctype/sales_order/test_sales_order.py | 223 +++++++++++++++--- stock/doctype/delivery_note/delivery_note.py | 8 +- stock/doctype/item/test_item.py | 19 ++ stock/doctype/sales_bom/test_sales_bom.py | 20 ++ 6 files changed, 284 insertions(+), 81 deletions(-) create mode 100644 stock/doctype/sales_bom/test_sales_bom.py diff --git a/selling/doctype/sales_common/sales_common.py b/selling/doctype/sales_common/sales_common.py index 797462a853..47d139f955 100644 --- a/selling/doctype/sales_common/sales_common.py +++ b/selling/doctype/sales_common/sales_common.py @@ -384,36 +384,38 @@ class DocType(TransactionBase): def get_item_list(self, obj, is_stopped=0): """get item list""" il = [] - for d in getlist(obj.doclist,obj.fname): - reserved_wh, reserved_qty = '', 0 # used for delivery note - qty = flt(d.qty) - if is_stopped: - qty = flt(d.qty) > flt(d.delivered_qty) and flt(flt(d.qty) - flt(d.delivered_qty)) or 0 + for d in getlist(obj.doclist, obj.fname): + reserved_warehouse = "" + reserved_qty_for_main_item = 0 + + if obj.doc.doctype == "Sales Order": + reserved_warehouse = d.reserved_warehouse + if flt(d.qty) > flt(d.delivered_qty): + reserved_qty_for_main_item = flt(d.qty) - flt(d.delivered_qty) - if d.prevdoc_doctype == 'Sales Order': - # used in delivery note to reduce reserved_qty - # Eg.: if SO qty is 10 and there is tolerance of 20%, then it will allow DN of 12. - # But in this case reserved qty should only be reduced by 10 and not 12. + if obj.doc.doctype == "Delivery Note" and d.prevdoc_doctype == 'Sales Order': + # if SO qty is 10 and there is tolerance of 20%, then it will allow DN of 12. + # But in this case reserved qty should only be reduced by 10 and not 12 + + already_delivered_qty = self.get_already_delivered_qty(obj.doc.name, + d.prevdoc_docname, d.prevdoc_detail_docname) + so_qty, reserved_warehouse = self.get_so_qty_and_warehouse(d.prevdoc_detail_docname) + + if already_delivered_qty + d.qty > so_qty: + reserved_qty_for_main_item = -(so_qty - already_delivered_qty) + else: + reserved_qty_for_main_item = -flt(d.qty) - tot_qty, max_qty, tot_amt, max_amt, reserved_wh = self.get_curr_and_ref_doc_details(d.doctype, 'prevdoc_detail_docname', d.prevdoc_detail_docname, obj.doc.name, obj.doc.doctype) - if((flt(tot_qty) + flt(qty) > flt(max_qty))): - reserved_qty = -(flt(max_qty)-flt(tot_qty)) - else: - reserved_qty = - flt(qty) - - if obj.doc.doctype == 'Sales Order': - reserved_wh = d.reserved_warehouse - if self.has_sales_bom(d.item_code): for p in getlist(obj.doclist, 'packing_details'): if p.parent_detail_docname == d.name and p.parent_item == d.item_code: # the packing details table's qty is already multiplied with parent's qty il.append({ 'warehouse': p.warehouse, - 'reserved_warehouse': reserved_wh, + 'reserved_warehouse': reserved_warehouse, 'item_code': p.item_code, 'qty': flt(p.qty), - 'reserved_qty': (flt(p.qty)/qty)*(reserved_qty), + 'reserved_qty': (flt(p.qty)/flt(d.qty)) * reserved_qty_for_main_item, 'uom': p.uom, 'batch_no': cstr(p.batch_no).strip(), 'serial_no': cstr(p.serial_no).strip(), @@ -422,10 +424,10 @@ class DocType(TransactionBase): else: il.append({ 'warehouse': d.warehouse, - 'reserved_warehouse': reserved_wh, + 'reserved_warehouse': reserved_warehouse, 'item_code': d.item_code, - 'qty': qty, - 'reserved_qty': reserved_qty, + 'qty': d.qty, + 'reserved_qty': reserved_qty_for_main_item, 'uom': d.stock_uom, 'batch_no': cstr(d.batch_no).strip(), 'serial_no': cstr(d.serial_no).strip(), @@ -433,27 +435,20 @@ class DocType(TransactionBase): }) return il + def get_already_delivered_qty(self, dn, so, so_detail): + qty = webnotes.conn.sql("""select sum(qty) from `tabDelivery Note Item` + where prevdoc_detail_docname = %s and docstatus = 1 + and prevdoc_doctype = 'Sales Order' and prevdoc_docname = %s + and parent != %s""", (so_detail, so, dn)) + return qty and flt(qty[0][0]) or 0.0 - def get_curr_and_ref_doc_details(self, curr_doctype, ref_tab_fname, ref_tab_dn, curr_parent_name, curr_parent_doctype): - """ Get qty, amount already billed or delivered against curr line item for current doctype - For Eg: SO-RV get total qty, amount from SO and also total qty, amount against that SO in RV - """ - #Get total qty, amt of current doctype (eg RV) except for qty, amt of this transaction - if curr_parent_doctype == 'Installation Note': - curr_det = webnotes.conn.sql("select sum(qty) from `tab%s` where %s = '%s' and docstatus = 1 and parent != '%s'"% (curr_doctype, ref_tab_fname, ref_tab_dn, curr_parent_name)) - qty, amt = curr_det and flt(curr_det[0][0]) or 0, 0 - else: - curr_det = webnotes.conn.sql("select sum(qty), sum(amount) from `tab%s` where %s = '%s' and docstatus = 1 and parent != '%s'"% (curr_doctype, ref_tab_fname, ref_tab_dn, curr_parent_name)) - qty, amt = curr_det and flt(curr_det[0][0]) or 0, curr_det and flt(curr_det[0][1]) or 0 + def get_so_qty_and_warehouse(self, so_detail): + so_item = webnotes.conn.sql("""select qty, reserved_warehouse from `tabSales Order Item` + where name = %s and docstatus = 1""", so_detail, as_dict=1) + so_qty = so_item and flt(so_item[0]["qty"]) or 0.0 + so_warehouse = so_item and so_item[0]["reserved_warehouse"] or "" + return so_qty, so_warehouse - # get total qty of ref doctype - so_det = webnotes.conn.sql("select qty, amount, reserved_warehouse from `tabSales Order Item` where name = '%s' and docstatus = 1"% ref_tab_dn) - max_qty, max_amt, res_wh = so_det and flt(so_det[0][0]) or 0, so_det and flt(so_det[0][1]) or 0, so_det and cstr(so_det[0][2]) or '' - return qty, max_qty, amt, max_amt, res_wh - - - # Make Packing List from Sales BOM - # ======================================================================= def has_sales_bom(self, item_code): return webnotes.conn.sql("select name from `tabSales BOM` where new_item_code=%s and docstatus != 2", item_code) diff --git a/selling/doctype/sales_order/sales_order.py b/selling/doctype/sales_order/sales_order.py index b176161709..31182b274a 100644 --- a/selling/doctype/sales_order/sales_order.py +++ b/selling/doctype/sales_order/sales_order.py @@ -320,28 +320,28 @@ class DocType(SellingController): def stop_sales_order(self): self.check_modified_date() - self.update_stock_ledger(update_stock = -1,clear = 1) + self.update_stock_ledger(update_stock = -1,is_stopped = 1) webnotes.conn.set(self.doc, 'status', 'Stopped') msgprint("""%s: %s has been Stopped. To make transactions against this Sales Order you need to Unstop it.""" % (self.doc.doctype, self.doc.name)) def unstop_sales_order(self): self.check_modified_date() - self.update_stock_ledger(update_stock = 1,clear = 1) + self.update_stock_ledger(update_stock = 1,is_stopped = 1) webnotes.conn.set(self.doc, 'status', 'Submitted') msgprint("%s: %s has been Unstopped" % (self.doc.doctype, self.doc.name)) - def update_stock_ledger(self, update_stock, clear = 0): - for d in self.get_item_list(clear): + def update_stock_ledger(self, update_stock, is_stopped = 0): + for d in self.get_item_list(is_stopped): if webnotes.conn.get_value("Item", d['item_code'], "is_stock_item") == "Yes": if not d['reserved_warehouse']: msgprint("""Please enter Reserved Warehouse for item %s as it is stock Item""" % d['item_code'], raise_exception=1) - + args = { "item_code": d['item_code'], - "reserved_qty": flt(update_stock) * flt(d['qty']), + "reserved_qty": flt(update_stock) * flt(d['reserved_qty']), "posting_date": self.doc.transaction_date, "voucher_type": self.doc.doctype, "voucher_no": self.doc.name, @@ -350,8 +350,8 @@ class DocType(SellingController): get_obj('Warehouse', d['reserved_warehouse']).update_bin(args) - def get_item_list(self, clear): - return get_obj('Sales Common').get_item_list( self, clear) + def get_item_list(self, is_stopped): + return get_obj('Sales Common').get_item_list( self, is_stopped) def on_update(self): pass \ No newline at end of file diff --git a/selling/doctype/sales_order/test_sales_order.py b/selling/doctype/sales_order/test_sales_order.py index f1a159a9c5..5d820fe769 100644 --- a/selling/doctype/sales_order/test_sales_order.py +++ b/selling/doctype/sales_order/test_sales_order.py @@ -3,50 +3,219 @@ from webnotes.utils import flt import unittest class TestSalesOrder(unittest.TestCase): - def make(self): - w = webnotes.model_wrapper(webnotes.copy_doclist(test_records[0])) + def create_so(self, so_doclist = None): + if not so_doclist: + so_doclist =test_records[0] + + w = webnotes.bean(copy=so_doclist) w.insert() w.submit() return w + def create_dn_against_so(self, so, delivered_qty=0): + from stock.doctype.delivery_note.test_delivery_note import test_records as dn_test_records + dn = webnotes.bean(webnotes.copy_doclist(dn_test_records[0])) + dn.doclist[1].item_code = so.doclist[1].item_code + dn.doclist[1].prevdoc_doctype = "Sales Order" + dn.doclist[1].prevdoc_docname = so.doc.name + dn.doclist[1].prevdoc_detail_docname = so.doclist[1].name + if delivered_qty: + dn.doclist[1].qty = delivered_qty + dn.insert() + dn.submit() + return dn + def get_bin_reserved_qty(self, item_code, warehouse): return flt(webnotes.conn.get_value("Bin", {"item_code": item_code, "warehouse": warehouse}, "reserved_qty")) + + def delete_bin(self, item_code, warehouse): + bin = webnotes.conn.exists({"doctype": "Bin", "item_code": item_code, + "warehouse": warehouse}) + if bin: + webnotes.delete_doc("Bin", bin[0][0]) + + def check_reserved_qty(self, item_code, warehouse, qty): + bin_reserved_qty = self.get_bin_reserved_qty(item_code, warehouse) + self.assertEqual(bin_reserved_qty, qty) + + def test_reserved_qty_for_so(self): + # reset bin + self.delete_bin(test_records[0][1]["item_code"], test_records[0][1]["reserved_warehouse"]) - def test_reserved_qty_so_submit_cancel(self): # submit - so = self.make() - print self.get_bin_reserved_qty(so.doclist[1].item_code, - so.doclist[1].reserved_warehouse) - - reserved_qty = self.get_bin_reserved_qty(so.doclist[1].item_code, - so.doclist[1].reserved_warehouse) - self.assertEqual(reserved_qty, 10.0) + so = self.create_so() + self.check_reserved_qty(so.doclist[1].item_code, so.doclist[1].reserved_warehouse, 10.0) + # cancel so.cancel() - reserved_qty = self.get_bin_reserved_qty(so.doclist[1].item_code, - so.doclist[1].reserved_warehouse) - self.assertEqual(reserved_qty, 0.0) + self.check_reserved_qty(so.doclist[1].item_code, so.doclist[1].reserved_warehouse, 0.0) + - def test_reserved_qty_dn_submit_cancel(self): - so = self.make() + def test_reserved_qty_for_partial_delivery(self): + # reset bin + self.delete_bin(test_records[0][1]["item_code"], test_records[0][1]["reserved_warehouse"]) + + # submit so + so = self.create_so() # allow negative stock webnotes.conn.set_default("allow_negative_stock", 1) - # dn submit (against so) - from stock.doctype.delivery_note.test_delivery_note import test_records as dn_test_records - dn = webnotes.model_wrapper(webnotes.copy_doclist(dn_test_records[0])) - dn.doclist[1].prevdoc_doctype = "Sales Order" - dn.doclist[1].prevdoc_docname = so.doc.name - dn.doclist[1].prevdoc_detail_docname = so.doclist[1].name - dn.insert() - dn.submit() + # submit dn + dn = self.create_dn_against_so(so) - reserved_qty = self.get_bin_reserved_qty(so.doclist[1].item_code, - so.doclist[1].reserved_warehouse) - self.assertEqual(reserved_qty, 6.0) + self.check_reserved_qty(so.doclist[1].item_code, so.doclist[1].reserved_warehouse, 6.0) + # stop so + so.load_from_db() + so.obj.stop_sales_order() + self.check_reserved_qty(so.doclist[1].item_code, so.doclist[1].reserved_warehouse, 0.0) + + # unstop so + so.load_from_db() + so.obj.unstop_sales_order() + self.check_reserved_qty(so.doclist[1].item_code, so.doclist[1].reserved_warehouse, 6.0) + + # cancel dn + dn.cancel() + self.check_reserved_qty(so.doclist[1].item_code, so.doclist[1].reserved_warehouse, 10.0) + + def test_reserved_qty_for_over_delivery(self): + # reset bin + self.delete_bin(test_records[0][1]["item_code"], test_records[0][1]["reserved_warehouse"]) + + # submit so + so = self.create_so() + + # allow negative stock + webnotes.conn.set_default("allow_negative_stock", 1) + + # set over-delivery tolerance + webnotes.conn.set_value('Item', so.doclist[1].item_code, 'tolerance', 50) + + # submit dn + dn = self.create_dn_against_so(so, 15) + self.check_reserved_qty(so.doclist[1].item_code, so.doclist[1].reserved_warehouse, 0.0) + + # cancel dn + dn.cancel() + self.check_reserved_qty(so.doclist[1].item_code, so.doclist[1].reserved_warehouse, 10.0) + + def test_reserved_qty_for_so_with_packing_list(self): + from stock.doctype.sales_bom.test_sales_bom import test_records as sbom_test_records + + # change item in test so record + test_record = test_records[0][:] + test_record[1]["item_code"] = "_Test Sales BOM Item" + + # reset bin + self.delete_bin(sbom_test_records[0][1]["item_code"], test_record[1]["reserved_warehouse"]) + self.delete_bin(sbom_test_records[0][2]["item_code"], test_record[1]["reserved_warehouse"]) + + # submit + so = self.create_so(test_record) + + + self.check_reserved_qty(sbom_test_records[0][1]["item_code"], + so.doclist[1].reserved_warehouse, 50.0) + self.check_reserved_qty(sbom_test_records[0][2]["item_code"], + so.doclist[1].reserved_warehouse, 20.0) + + # cancel + so.cancel() + self.check_reserved_qty(sbom_test_records[0][1]["item_code"], + so.doclist[1].reserved_warehouse, 0.0) + self.check_reserved_qty(sbom_test_records[0][2]["item_code"], + so.doclist[1].reserved_warehouse, 0.0) + + def test_reserved_qty_for_partial_delivery_with_packing_list(self): + from stock.doctype.sales_bom.test_sales_bom import test_records as sbom_test_records + + # change item in test so record + + test_record = webnotes.copy_doclist(test_records[0]) + test_record[1]["item_code"] = "_Test Sales BOM Item" + + # reset bin + self.delete_bin(sbom_test_records[0][1]["item_code"], test_record[1]["reserved_warehouse"]) + self.delete_bin(sbom_test_records[0][2]["item_code"], test_record[1]["reserved_warehouse"]) + + # submit + so = self.create_so(test_record) + + # allow negative stock + webnotes.conn.set_default("allow_negative_stock", 1) + + # submit dn + dn = self.create_dn_against_so(so) + + self.check_reserved_qty(sbom_test_records[0][1]["item_code"], + so.doclist[1].reserved_warehouse, 30.0) + self.check_reserved_qty(sbom_test_records[0][2]["item_code"], + so.doclist[1].reserved_warehouse, 12.0) + + # stop so + so.load_from_db() + so.obj.stop_sales_order() + + self.check_reserved_qty(sbom_test_records[0][1]["item_code"], + so.doclist[1].reserved_warehouse, 0.0) + self.check_reserved_qty(sbom_test_records[0][2]["item_code"], + so.doclist[1].reserved_warehouse, 0.0) + + # unstop so + so.load_from_db() + so.obj.unstop_sales_order() + self.check_reserved_qty(sbom_test_records[0][1]["item_code"], + so.doclist[1].reserved_warehouse, 30.0) + self.check_reserved_qty(sbom_test_records[0][2]["item_code"], + so.doclist[1].reserved_warehouse, 12.0) + + # cancel dn + dn.cancel() + self.check_reserved_qty(sbom_test_records[0][1]["item_code"], + so.doclist[1].reserved_warehouse, 50.0) + self.check_reserved_qty(sbom_test_records[0][2]["item_code"], + so.doclist[1].reserved_warehouse, 20.0) + + def test_reserved_qty_for_over_delivery_with_packing_list(self): + from stock.doctype.sales_bom.test_sales_bom import test_records as sbom_test_records + + # change item in test so record + test_record = webnotes.copy_doclist(test_records[0]) + test_record[1]["item_code"] = "_Test Sales BOM Item" + + # reset bin + self.delete_bin(sbom_test_records[0][1]["item_code"], test_record[1]["reserved_warehouse"]) + self.delete_bin(sbom_test_records[0][2]["item_code"], test_record[1]["reserved_warehouse"]) + + # submit + so = self.create_so(test_record) + + # allow negative stock + webnotes.conn.set_default("allow_negative_stock", 1) + + # set over-delivery tolerance + webnotes.conn.set_value('Item', so.doclist[1].item_code, 'tolerance', 50) + + # submit dn + dn = self.create_dn_against_so(so, 15) + + self.check_reserved_qty(sbom_test_records[0][1]["item_code"], + so.doclist[1].reserved_warehouse, 0.0) + self.check_reserved_qty(sbom_test_records[0][2]["item_code"], + so.doclist[1].reserved_warehouse, 0.0) + + # cancel dn + dn.cancel() + self.check_reserved_qty(sbom_test_records[0][1]["item_code"], + so.doclist[1].reserved_warehouse, 50.0) + self.check_reserved_qty(sbom_test_records[0][2]["item_code"], + so.doclist[1].reserved_warehouse, 20.0) + +test_dependencies = ["Sales BOM"] + test_records = [ [ { @@ -80,5 +249,5 @@ test_records = [ "amount": 500.0, "reserved_warehouse": "_Test Warehouse", } - ] + ], ] \ No newline at end of file diff --git a/stock/doctype/delivery_note/delivery_note.py b/stock/doctype/delivery_note/delivery_note.py index b8d20fbe85..f54edf221a 100644 --- a/stock/doctype/delivery_note/delivery_note.py +++ b/stock/doctype/delivery_note/delivery_note.py @@ -319,9 +319,9 @@ class DocType(SellingController): webnotes.msgprint("%s Packing Slip(s) Cancelled" % res[0][1]) - def update_stock_ledger(self, update_stock, is_stopped = 0): + def update_stock_ledger(self, update_stock): self.values = [] - for d in self.get_item_list(is_stopped): + for d in self.get_item_list(): if webnotes.conn.get_value("Item", d['item_code'], "is_stock_item") == "Yes": if not d['warehouse']: msgprint("Please enter Warehouse for item %s as it is stock item" @@ -344,8 +344,8 @@ class DocType(SellingController): get_obj('Stock Ledger', 'Stock Ledger').update_stock(self.values) - def get_item_list(self, is_stopped): - return get_obj('Sales Common').get_item_list(self, is_stopped) + def get_item_list(self): + return get_obj('Sales Common').get_item_list(self) def make_sl_entry(self, d, wh, qty, in_value, update_stock): diff --git a/stock/doctype/item/test_item.py b/stock/doctype/item/test_item.py index 4238e149bb..853283e4c6 100644 --- a/stock/doctype/item/test_item.py +++ b/stock/doctype/item/test_item.py @@ -145,4 +145,23 @@ test_records = [ "is_sub_contracted_item": "No", "stock_uom": "_Test UOM" }], + [{ + "doctype": "Item", + "item_code": "_Test Sales BOM Item", + "item_name": "_Test Sales BOM Item", + "description": "_Test Sales BOM Item", + "item_group": "_Test Item Group Desktops", + "is_stock_item": "No", + "is_asset_item": "No", + "has_batch_no": "No", + "has_serial_no": "No", + "is_purchase_item": "Yes", + "is_sales_item": "Yes", + "is_service_item": "No", + "is_sample_item": "No", + "inspection_required": "No", + "is_pro_applicable": "No", + "is_sub_contracted_item": "No", + "stock_uom": "_Test UOM" + }], ] \ No newline at end of file diff --git a/stock/doctype/sales_bom/test_sales_bom.py b/stock/doctype/sales_bom/test_sales_bom.py new file mode 100644 index 0000000000..850616fdbb --- /dev/null +++ b/stock/doctype/sales_bom/test_sales_bom.py @@ -0,0 +1,20 @@ +test_records = [ + [ + { + "doctype": "Sales BOM", + "new_item_code": "_Test Sales BOM Item" + }, + { + "doctype": "Sales BOM Item", + "item_code": "_Test Item", + "parentfield": "sales_bom_items", + "qty": 5.0 + }, + { + "doctype": "Sales BOM Item", + "item_code": "_Test Item Home Desktop 100", + "parentfield": "sales_bom_items", + "qty": 2.0 + } + ], +] \ No newline at end of file From 5b859d84a1fce69d0b13317070a8840cc4b7146b Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 22 Feb 2013 12:51:27 +0530 Subject: [PATCH 020/982] fix in sales communication --- selling/doctype/lead/get_leads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selling/doctype/lead/get_leads.py b/selling/doctype/lead/get_leads.py index 5b127e74e5..8c8200c09a 100644 --- a/selling/doctype/lead/get_leads.py +++ b/selling/doctype/lead/get_leads.py @@ -64,7 +64,7 @@ class SalesMailbox(POP3Mailbox): if mail.from_email == self.settings.email_id: return - add_sales_communication(mail.subject, mail.content, mail.form_email, + add_sales_communication(mail.mail.get("subject", "[No Subject]"), mail.content, mail.form_email, mail.from_real_name, mail=mail, date=mail.date) def get_leads(): From 3e38d36580c15f6c9730db383d0eb7d5daea6a0b Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 22 Feb 2013 13:08:14 +0530 Subject: [PATCH 021/982] fixes in sales email pulling --- selling/doctype/lead/get_leads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selling/doctype/lead/get_leads.py b/selling/doctype/lead/get_leads.py index 8c8200c09a..b0e64847bc 100644 --- a/selling/doctype/lead/get_leads.py +++ b/selling/doctype/lead/get_leads.py @@ -64,7 +64,7 @@ class SalesMailbox(POP3Mailbox): if mail.from_email == self.settings.email_id: return - add_sales_communication(mail.mail.get("subject", "[No Subject]"), mail.content, mail.form_email, + add_sales_communication(mail.mail.get("subject", "[No Subject]"), mail.content, mail.from_email, mail.from_real_name, mail=mail, date=mail.date) def get_leads(): From 90098d2ebd2006261aba8f9fb6e8ca0564c36261 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 22 Feb 2013 17:54:50 +0530 Subject: [PATCH 022/982] new employee_leave_balance_report --- .../delivered_items_to_be_billed.txt | 6 +- .../ordered_items_to_be_billed.txt | 6 +- .../leave_application/leave_application.py | 5 +- hr/page/hr_home/hr_home.js | 11 +++ hr/report/__init__.py | 0 hr/report/employee_leave_balance/__init__.py | 0 .../employee_leave_balance.py | 46 ++++++++++++ .../employee_leave_balance.txt | 21 ++++++ .../employee_leave_balance_report/__init__.py | 1 - .../employee_leave_balance_report.js | 41 ----------- .../employee_leave_balance_report.py | 73 ------------------- .../employee_leave_balance_report.sql | 25 ------- .../employee_leave_balance_report.txt | 27 ------- patches/patch_list.py | 5 +- .../customer_addresses_and_contacts.txt | 18 +++-- .../sales_orders_pending_to_be_delivered.txt | 10 ++- .../item_wise_price_list.txt | 18 +++-- .../ordered_items_to_be_delivered.txt | 6 +- .../purchase_order_items_to_be_received.txt | 6 +- .../serial_no_service_contract_expiry.txt | 18 +++-- .../serial_no_status/serial_no_status.txt | 18 +++-- .../serial_no_warranty_expiry.txt | 18 +++-- stock/report/stock_ledger/stock_ledger.txt | 18 +++-- 23 files changed, 166 insertions(+), 231 deletions(-) create mode 100644 hr/report/__init__.py create mode 100644 hr/report/employee_leave_balance/__init__.py create mode 100644 hr/report/employee_leave_balance/employee_leave_balance.py create mode 100644 hr/report/employee_leave_balance/employee_leave_balance.txt delete mode 100644 hr/search_criteria/employee_leave_balance_report/__init__.py delete mode 100644 hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.js delete mode 100644 hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.py delete mode 100644 hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.sql delete mode 100644 hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.txt diff --git a/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt b/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt index 88ff16a023..41ef5e9c2e 100644 --- a/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt +++ b/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt @@ -2,7 +2,7 @@ { "creation": "2013-02-21 14:26:44", "docstatus": 0, - "modified": "2013-02-22 10:46:13", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", "owner": "Administrator" }, @@ -11,7 +11,9 @@ "is_standard": "Yes", "name": "__common__", "query": "select \n `tabDelivery Note`.`name` as \"Delivery Note:Link/Delivery Note:120\",\n`tabDelivery Note`.`customer` as \"Customer:Link/Customer:120\",\n`tabDelivery Note`.`status` as \"Status\",\n `tabDelivery Note`.`posting_date` as \"Date:Date\",\n `tabDelivery Note`.`project_name` as \"Project\",\n `tabDelivery Note Item`.item_code as \"Item:Link/Item:120\",\n `tabDelivery Note Item`.amount as \"Amount:Currency:110\",\n (`tabDelivery Note Item`.billed_amt * ifnull(`tabDelivery Note`.conversion_rate, 1)) as \"Billed Amount:Currency:110\",\n (ifnull(`tabDelivery Note Item`.amount,0) - (ifnull(`tabDelivery Note Item`.billed_amt,0) * ifnull(`tabDelivery Note`.conversion_rate, 1))) as \"Pending Amount:Currency:120\",\n `tabDelivery Note Item`.item_name as \"Item Name::150\",\n `tabDelivery Note Item`.description as \"Description:Data:200\"\nfrom\n `tabDelivery Note`, `tabDelivery Note Item`\nwhere\n `tabDelivery Note Item`.`parent` = `tabDelivery Note`.`name`\n and `tabDelivery Note`.docstatus = 1\n and `tabDelivery Note`.status != \"Stopped\"\n and ifnull(`tabDelivery Note Item`.billed_amt,0) < ifnull(`tabDelivery Note Item`.export_amount,0)\norder by `tabDelivery Note`.posting_date asc", - "ref_doctype": "Sales Invoice" + "ref_doctype": "Sales Invoice", + "report_name": "Delivered Items To Be Billed", + "report_type": "Query Report" }, { "doctype": "Report", diff --git a/accounts/report/ordered_items_to_be_billed/ordered_items_to_be_billed.txt b/accounts/report/ordered_items_to_be_billed/ordered_items_to_be_billed.txt index b251bd90c6..fd2aa6ee6b 100644 --- a/accounts/report/ordered_items_to_be_billed/ordered_items_to_be_billed.txt +++ b/accounts/report/ordered_items_to_be_billed/ordered_items_to_be_billed.txt @@ -2,7 +2,7 @@ { "creation": "2013-02-21 14:26:44", "docstatus": 0, - "modified": "2013-02-22 10:47:24", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", "owner": "Administrator" }, @@ -11,7 +11,9 @@ "is_standard": "Yes", "name": "__common__", "query": "select \n `tabSales Order`.`name` as \"Sales Order:Link/Sales Order:120\",\n `tabSales Order`.`customer` as \"Customer:Link/Customer:120\",\n `tabSales Order`.`status` as \"Status\",\n `tabSales Order`.`transaction_date` as \"Date:Date\",\n `tabSales Order`.`project_name` as \"Project\",\n `tabSales Order Item`.item_code as \"Item:Link/Item:120\",\n `tabSales Order Item`.amount as \"Amount:Currency:110\",\n (`tabSales Order Item`.billed_amt * ifnull(`tabSales Order`.conversion_rate, 1)) as \"Billed Amount:Currency:110\",\n (ifnull(`tabSales Order Item`.amount, 0) - (ifnull(`tabSales Order Item`.billed_amt, 0) * ifnull(`tabSales Order`.conversion_rate, 1))) as \"Pending Amount:Currency:120\",\n `tabSales Order Item`.item_name as \"Item Name::150\",\n `tabSales Order Item`.description as \"Description::200\"\nfrom\n `tabSales Order`, `tabSales Order Item`\nwhere\n `tabSales Order Item`.`parent` = `tabSales Order`.`name`\n and `tabSales Order`.docstatus = 1\n and `tabSales Order`.status != \"Stopped\"\n and ifnull(`tabSales Order Item`.billed_amt,0) < ifnull(`tabSales Order Item`.export_amount,0)\norder by `tabSales Order`.transaction_date asc", - "ref_doctype": "Sales Invoice" + "ref_doctype": "Sales Invoice", + "report_name": "Ordered Items To Be Billed", + "report_type": "Query Report" }, { "doctype": "Report", diff --git a/hr/doctype/leave_application/leave_application.py b/hr/doctype/leave_application/leave_application.py index 32e0a650ed..81177180f6 100755 --- a/hr/doctype/leave_application/leave_application.py +++ b/hr/doctype/leave_application/leave_application.py @@ -165,7 +165,6 @@ class DocType(DocListController): # for post in messages "message": _get_message(url=True), "message_to": employee.user_id, - "subject": _get_message(), }) @@ -208,7 +207,7 @@ def get_leave_balance(employee, leave_type, fiscal_year): leave_app = webnotes.conn.sql("""select SUM(total_leave_days) from `tabLeave Application` where employee = %s and leave_type = %s and fiscal_year = %s - and docstatus = 1""", (employee, leave_type, fiscal_year)) + and status="Approved" and docstatus = 1""", (employee, leave_type, fiscal_year)) leave_app = leave_app and flt(leave_app[0][0]) or 0 ret = {'leave_balance': leave_all - leave_app} @@ -234,7 +233,7 @@ def get_events(start, end): company = webnotes.conn.get_default("company", webnotes.session.user) from webnotes.widgets.reportview import build_match_conditions - match_conditions = build_match_conditions({"doctype": "Leave Application"}) + match_conditions = build_match_conditions("Leave Application") # show department leaves for employee show_department_leaves = match_conditions and \ diff --git a/hr/page/hr_home/hr_home.js b/hr/page/hr_home/hr_home.js index 465835f37f..02733a1287 100644 --- a/hr/page/hr_home/hr_home.js +++ b/hr/page/hr_home/hr_home.js @@ -159,6 +159,17 @@ wn.module_page["HR"] = [ doctype: "Grade" }, ] + }, + { + title: wn._("Reports"), + right: true, + icon: "icon-list", + items: [ + { + "label":wn._("Employee Leave Balance"), + route: "query-report/Employee Leave Balance" + }, + ] } ]; diff --git a/hr/report/__init__.py b/hr/report/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hr/report/employee_leave_balance/__init__.py b/hr/report/employee_leave_balance/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hr/report/employee_leave_balance/employee_leave_balance.py b/hr/report/employee_leave_balance/employee_leave_balance.py new file mode 100644 index 0000000000..beda4a71a8 --- /dev/null +++ b/hr/report/employee_leave_balance/employee_leave_balance.py @@ -0,0 +1,46 @@ +from __future__ import unicode_literals +import webnotes +from webnotes.widgets.reportview import execute as runreport + +def execute(): + employees = runreport(doctype="Employee", fields=["name", "employee_name", "department"]) + leave_types = webnotes.conn.sql_list("select name from `tabLeave Type`") + fiscal_years = webnotes.conn.sql_list("select name from `tabFiscal Year` order by name desc") + employee_in = '", "'.join([e.name for e in employees]) + + allocations = webnotes.conn.sql("""select employee, fiscal_year, leave_type, total_leaves_allocated + from `tabLeave Allocation` + where docstatus=1 and employee in ("%s")""" % employee_in, as_dict=True) + applications = webnotes.conn.sql("""select employee, fiscal_year, leave_type, SUM(total_leave_days) as leaves + from `tabLeave Application` + where status="Approved" and docstatus = 1 and employee in ("%s") + group by employee, fiscal_year, leave_type""" % employee_in, as_dict=True) + + columns = [ + "Fiscal Year", "Employee:Link/Employee:150", "Employee Name::200", "Department::150" + ] + + for leave_type in leave_types: + columns.append(leave_type + " Allocated:Float") + columns.append(leave_type + " Taken:Float") + + data = {} + for d in allocations: + data.setdefault((d.fiscal_year, d.employee, + d.leave_type), webnotes._dict()).allocation = d.total_leaves_allocated + + for d in applications: + data.setdefault((d.fiscal_year, d.employee, + d.leave_type), webnotes._dict()).leaves = d.leaves + + result = [] + for fiscal_year in fiscal_years: + for employee in employees: + row = [fiscal_year, employee.name, employee.employee_name, employee.department] + result.append(row) + for leave_type in leave_types: + tmp = data.get((fiscal_year, employee.name, leave_type), webnotes._dict()) + row.append(tmp.allocation or 0) + row.append(tmp.leaves or 0) + + return columns, result \ No newline at end of file diff --git a/hr/report/employee_leave_balance/employee_leave_balance.txt b/hr/report/employee_leave_balance/employee_leave_balance.txt new file mode 100644 index 0000000000..2a6d74f20a --- /dev/null +++ b/hr/report/employee_leave_balance/employee_leave_balance.txt @@ -0,0 +1,21 @@ +[ + { + "creation": "2013-02-22 15:29:34", + "docstatus": 0, + "modified": "2013-02-22 15:53:01", + "modified_by": "Administrator", + "owner": "Administrator" + }, + { + "doctype": "Report", + "is_standard": "Yes", + "name": "__common__", + "ref_doctype": "Employee", + "report_name": "Employee Leave Balance", + "report_type": "Script Report" + }, + { + "doctype": "Report", + "name": "Employee Leave Balance" + } +] \ No newline at end of file diff --git a/hr/search_criteria/employee_leave_balance_report/__init__.py b/hr/search_criteria/employee_leave_balance_report/__init__.py deleted file mode 100644 index baffc48825..0000000000 --- a/hr/search_criteria/employee_leave_balance_report/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.js b/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.js deleted file mode 100644 index 808b6d46d9..0000000000 --- a/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.js +++ /dev/null @@ -1,41 +0,0 @@ -// ERPNext - web based ERP (http://erpnext.com) -// Copyright (C) 2012 Web Notes Technologies Pvt Ltd -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -this.mytabs.items['Select Columns'].hide(); - -this.mytabs.tabs['More Filters'].hide(); - -report.customize_filters = function() { - this.add_filter({ - fieldname:'fiscal_year', - label:'Fiscal Year', - fieldtype:'Link', - ignore : 1, - options: 'Fiscal Year', - parent:'Leave Allocation', - in_first_page:1, - report_default: sys_defaults.fiscal_year - }); - this.add_filter({ - fieldname:'employee_name', - label:'Employee Name', - fieldtype:'Data', - ignore : 1, - options: '', - parent:'Leave Allocation', - in_first_page:1 - }); -} \ No newline at end of file diff --git a/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.py b/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.py deleted file mode 100644 index 5b8ed08a15..0000000000 --- a/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.py +++ /dev/null @@ -1,73 +0,0 @@ -# ERPNext - web based ERP (http://erpnext.com) -# Copyright (C) 2012 Web Notes Technologies Pvt Ltd -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -from __future__ import unicode_literals - -leave_types = sql(""" - SELECT name FROM `tabLeave Type` - WHERE - docstatus!=2 AND - name NOT IN ('Compensatory Off', 'Leave Without Pay')""") -col=[] -col.append(['Employee ID', 'Data', '150px', '']) -col.append(['Employee Name', 'Data', '150px', '']) -col.append(['Fiscal Year', 'Data', '150px', '']) - -for e in leave_types: - l = (len(e[0])*9) - if l < 150 : col_width = '150px' - else: col_width = '%spx'%(l) - col.append([e[0],'Currency',col_width,'']) - -col.append(['Total Balance','Currency','150px','']) - -for c in col: - colnames.append(c[0]) - coltypes.append(c[1]) - colwidths.append(c[2]) - coloptions.append(c[3]) - col_idx[c[0]] = len(colnames) - -data = res -res = [] - -try: - for d in data: - exists = 0 - ind = None - - # Check if the employee record exists in list 'res' - for r in res: - if r[0] == d[0] and r[1] == d[1]: - exists = 1 - ind = res.index(r) - break - if d[3] in colnames: - # If exists, then append the leave type data - if exists: - res[ind][colnames.index(d[3])] = flt(d[4]) - flt(d[5]) - res[ind][len(colnames)-1] = sum(res[ind][3:-1]) - # Else create a new row in res - else: - new_row = [0.0 for c in colnames] - new_row[0] = d[0] - new_row[1] = d[1] - new_row[2] = d[2] - new_row[colnames.index(d[3])] = flt(d[4]) - flt(d[5]) - new_row[len(colnames)-1] = sum(new_row[3:-1]) - res.append(new_row) -except Exception, e: - msgprint(e) \ No newline at end of file diff --git a/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.sql b/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.sql deleted file mode 100644 index 454772aa27..0000000000 --- a/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.sql +++ /dev/null @@ -1,25 +0,0 @@ -SELECT - leave_alloc.employee AS 'employee', - leave_alloc.employee_name AS 'employee_name', - leave_alloc.fiscal_year AS 'fiscal_year', - leave_alloc.leave_type AS 'leave_type', - leave_alloc.total_leaves_allocated AS 'total_leaves_allocated', - SUM(leave_app.total_leave_days) AS 'total_leaves_applied' -FROM - `tabLeave Allocation` AS leave_alloc LEFT JOIN `tabLeave Application` AS leave_app - ON leave_alloc.employee=leave_app.employee AND - leave_alloc.leave_type=leave_app.leave_type AND - leave_alloc.fiscal_year=leave_app.fiscal_year AND - leave_app.docstatus=1 -WHERE - leave_alloc.docstatus=1 AND - leave_alloc.fiscal_year LIKE '%(fiscal_year)s%%' AND - leave_alloc.employee_name LIKE '%(employee_name)s%%' -GROUP BY - employee, - fiscal_year, - leave_type -ORDER BY - employee, - fiscal_year, - leave_type \ No newline at end of file diff --git a/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.txt b/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.txt deleted file mode 100644 index 74c0d82c0e..0000000000 --- a/hr/search_criteria/employee_leave_balance_report/employee_leave_balance_report.txt +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "owner": "harshada@webnotestech.com", - "docstatus": 0, - "creation": "2010-12-14 10:33:09", - "modified_by": "Administrator", - "modified": "2011-10-31 15:42:36" - }, - { - "description": "Employeewise Balance Leave Report", - "module": "HR", - "standard": "Yes", - "sort_order": "ASC", - "filters": "{'Employee\u0001Saved':1,'Employee\u0001Submitted':1,'Employee\u0001Gender':'','Employee\u0001Month of Birth':'','Employee\u0001Status':'Active'}", - "doc_type": "Employee", - "name": "__common__", - "doctype": "Search Criteria", - "sort_by": "`tabEmployee`.`name`", - "page_len": 100, - "criteria_name": "Employee Leave Balance Report", - "columns": "Employee\u0001ID" - }, - { - "name": "employeewise_balance_leave_report", - "doctype": "Search Criteria" - } -] \ No newline at end of file diff --git a/patches/patch_list.py b/patches/patch_list.py index 45df4c18be..12f2ab3fd5 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -186,5 +186,8 @@ patch_list = [ "execute:webnotes.delete_doc('DocType', 'Service Order Detail')", "execute:webnotes.delete_doc('DocType', 'Service Quotation Detail')", "patches.february_2013.p06_material_request_mappers", - "patches.february_2013.p07_clear_web_cache" + "patches.february_2013.p07_clear_web_cache", + "execute:webnotes.delete_doc('Page', 'Query Report')", + "execute:webnotes.delete_doc('Search Criteria', 'employeewise_balance_leave_report')", + "execute:webnotes.delete_doc('Search Criteria', 'employee_leave_balance_report')" ] \ No newline at end of file diff --git a/selling/report/customer_addresses_and_contacts/customer_addresses_and_contacts.txt b/selling/report/customer_addresses_and_contacts/customer_addresses_and_contacts.txt index e5e08a9468..f51f29528e 100644 --- a/selling/report/customer_addresses_and_contacts/customer_addresses_and_contacts.txt +++ b/selling/report/customer_addresses_and_contacts/customer_addresses_and_contacts.txt @@ -1,20 +1,22 @@ [ { - "owner": "Administrator", + "creation": "2012-10-04 18:45:27", "docstatus": 0, - "creation": "2012-10-04 17:36:36", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", - "modified": "2012-10-04 18:24:07" + "owner": "Administrator" }, { - "name": "__common__", - "ref_doctype": "Customer", "doctype": "Report", "is_standard": "Yes", - "query": "SELECT\n\t`tabCustomer`.name as customer_id,\n\t`tabCustomer`.customer_name,\n\t`tabCustomer`.customer_group,\n\t`tabAddress`.address_line1,\n\t`tabAddress`.address_line2,\n\t`tabAddress`.city,\n\t`tabAddress`.state,\n\t`tabAddress`.pincode,\n\t`tabAddress`.country,\n\t`tabAddress`.is_primary_address, \n\t`tabContact`.first_name,\n\t`tabContact`.last_name,\n\t`tabContact`.phone,\n\t`tabContact`.mobile_no,\n\t`tabContact`.email_id,\n\t`tabContact`.is_primary_contact\nFROM\n\t`tabCustomer`\n\tleft join `tabAddress` on (\n\t\t`tabAddress`.customer=`tabCustomer`.name\n\t)\n\tleft join `tabContact` on (\n\t\t`tabContact`.customer=`tabCustomer`.name\n\t)\nWHERE\n\t`tabCustomer`.docstatus<2\nORDER BY\n\t`tabCustomer`.name asc" + "name": "__common__", + "query": "SELECT\n\t`tabCustomer`.name as customer_id,\n\t`tabCustomer`.customer_name,\n\t`tabCustomer`.customer_group,\n\t`tabAddress`.address_line1,\n\t`tabAddress`.address_line2,\n\t`tabAddress`.city,\n\t`tabAddress`.state,\n\t`tabAddress`.pincode,\n\t`tabAddress`.country,\n\t`tabAddress`.is_primary_address, \n\t`tabContact`.first_name,\n\t`tabContact`.last_name,\n\t`tabContact`.phone,\n\t`tabContact`.mobile_no,\n\t`tabContact`.email_id,\n\t`tabContact`.is_primary_contact\nFROM\n\t`tabCustomer`\n\tleft join `tabAddress` on (\n\t\t`tabAddress`.customer=`tabCustomer`.name\n\t)\n\tleft join `tabContact` on (\n\t\t`tabContact`.customer=`tabCustomer`.name\n\t)\nWHERE\n\t`tabCustomer`.docstatus<2\nORDER BY\n\t`tabCustomer`.name asc", + "ref_doctype": "Customer", + "report_name": "Customer Addresses And Contacts", + "report_type": "Query Report" }, { - "name": "Customer Addresses and Contacts", - "doctype": "Report" + "doctype": "Report", + "name": "Customer Addresses And Contacts" } ] \ No newline at end of file diff --git a/selling/report/sales_orders_pending_to_be_delivered/sales_orders_pending_to_be_delivered.txt b/selling/report/sales_orders_pending_to_be_delivered/sales_orders_pending_to_be_delivered.txt index 288b5c5f44..c145f4ea39 100644 --- a/selling/report/sales_orders_pending_to_be_delivered/sales_orders_pending_to_be_delivered.txt +++ b/selling/report/sales_orders_pending_to_be_delivered/sales_orders_pending_to_be_delivered.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-12-07 14:44:19", + "creation": "2013-02-21 14:26:46", "docstatus": 0, - "modified": "2013-02-21 11:43:20", + "modified": "2013-02-22 15:53:24", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,8 +10,10 @@ "doctype": "Report", "is_standard": "Yes", "name": "__common__", - "query": "select \n `tabSales Order`.`name` as \"S.O. No.:Link/Sales Order:120\",\n `tabSales Order`.`transaction_date` as \"S.O. Date\",\n `tabSales Order`.`delivery_date` as \"Expected Delivery Date\",\n `tabSales Order`.`customer` as \"Customer:Link/Customer:120\",\n `tabSales Order Item`.item_code as \"Item Code:Link/Item:120\",\n `tabSales Order Item`.description as \"Description\",\n `tabSales Order Item`.qty as \"Qty:Float\",\n `tabSales Order Item`.delivered_qty as \"Delivered Qty:Float\",\n `tabSales Order`.`po_no` as \"P.O. No.\"\nfrom\n `tabSales Order`, `tabSales Order Item`\nwhere\n `tabSales Order Item`.`parent` = `tabSales Order`.`name`\n and `tabSales Order`.docstatus = 1\n and `tabSales Order`.status != \"Stopped\"\n and ifnull(`tabSales Order Item`.delivered_qty,0) < ifnull(`tabSales Order Item`.qty,0)\norder by `tabSales Order`.transaction_date asc", - "ref_doctype": "Sales Order" + "query": "select \n `tabSales Order`.`name` as \"S.O. No.:Link/Sales Order:120\",\n `tabSales Order`.`transaction_date` as \"S.O. Date:Date\",\n `tabSales Order`.`delivery_date` as \"Expected Delivery Date:Date\",\n `tabSales Order`.`customer` as \"Customer:Link/Customer:120\",\n `tabSales Order Item`.item_code as \"Item Code:Link/Item:120\",\n `tabSales Order Item`.description as \"Description\",\n `tabSales Order Item`.qty as \"Qty:Float\",\n `tabSales Order Item`.delivered_qty as \"Delivered Qty:Float\",\n `tabSales Order`.`po_no` as \"P.O. No.\"\nfrom\n `tabSales Order`, `tabSales Order Item`\nwhere\n `tabSales Order Item`.`parent` = `tabSales Order`.`name`\n and `tabSales Order`.docstatus = 1\n and `tabSales Order`.status != \"Stopped\"\n and ifnull(`tabSales Order Item`.delivered_qty,0) < ifnull(`tabSales Order Item`.qty,0)\norder by `tabSales Order`.transaction_date asc", + "ref_doctype": "Sales Order", + "report_name": "Sales Orders Pending To Be Delivered", + "report_type": "Query Report" }, { "doctype": "Report", diff --git a/stock/report/item_wise_price_list/item_wise_price_list.txt b/stock/report/item_wise_price_list/item_wise_price_list.txt index 4427a5b331..6c2afad897 100644 --- a/stock/report/item_wise_price_list/item_wise_price_list.txt +++ b/stock/report/item_wise_price_list/item_wise_price_list.txt @@ -1,20 +1,22 @@ [ { - "owner": "Administrator", + "creation": "2013-01-02 14:22:51", "docstatus": 0, - "creation": "2013-01-02 11:56:33", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", - "modified": "2013-01-02 12:00:38" + "owner": "Administrator" }, { - "name": "__common__", - "ref_doctype": "Item", "doctype": "Report", "is_standard": "Yes", - "query": "select\n item.name as \"ID:Link/Item:120\", \n item.item_name as \"Item Name::120\", \n item_price.price_list_name as \"Price List::80\",\n item_price.ref_currency as \"Currency::40\", \n item_price.ref_rate as \"Rate:Currency:80\",\n item.description as \"Description::160\",\n item.item_group as \"Item Group:Link/Item Group:100\",\n item.brand as \"Brand::100\"\nfrom `tabItem` item, `tabItem Price` item_price\nwhere\n item_price.parent = item.name" + "name": "__common__", + "query": "select\n item.name as \"ID:Link/Item:120\", \n item.item_name as \"Item Name::120\", \n item_price.price_list_name as \"Price List::80\",\n item_price.ref_currency as \"Currency::40\", \n item_price.ref_rate as \"Rate:Currency:80\",\n item.description as \"Description::160\",\n item.item_group as \"Item Group:Link/Item Group:100\",\n item.brand as \"Brand::100\"\nfrom `tabItem` item, `tabItem Price` item_price\nwhere\n item_price.parent = item.name", + "ref_doctype": "Item", + "report_name": "Item-Wise Price List", + "report_type": "Query Report" }, { - "name": "Item-Wise Price List", - "doctype": "Report" + "doctype": "Report", + "name": "Item-Wise Price List" } ] \ No newline at end of file diff --git a/stock/report/ordered_items_to_be_delivered/ordered_items_to_be_delivered.txt b/stock/report/ordered_items_to_be_delivered/ordered_items_to_be_delivered.txt index afcaef08af..730e3d724c 100644 --- a/stock/report/ordered_items_to_be_delivered/ordered_items_to_be_delivered.txt +++ b/stock/report/ordered_items_to_be_delivered/ordered_items_to_be_delivered.txt @@ -2,7 +2,7 @@ { "creation": "2013-02-21 14:26:49", "docstatus": 0, - "modified": "2013-02-22 10:43:27", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", "owner": "Administrator" }, @@ -11,7 +11,9 @@ "is_standard": "Yes", "name": "__common__", "query": "select \n `tabSales Order`.`name` as \"Sales Order:Link/Sales Order:120\",\n `tabSales Order`.`customer` as \"Customer:Link/Customer:120\",\n `tabSales Order`.`status` as \"Status\",\n `tabSales Order`.`transaction_date` as \"Date:Date\",\n `tabSales Order`.`project_name` as \"Project\",\n `tabSales Order Item`.item_code as \"Item:Link/Item:120\",\n `tabSales Order Item`.qty as \"Qty:Float\",\n `tabSales Order Item`.delivered_qty as \"Delivered Qty:Float\",\n (`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0)) as \"Qty to Deliver:Float\",\n `tabSales Order Item`.item_name as \"Item Name::150\",\n `tabSales Order Item`.description as \"Description::200\"\nfrom\n `tabSales Order`, `tabSales Order Item`\nwhere\n `tabSales Order Item`.`parent` = `tabSales Order`.`name`\n and `tabSales Order`.docstatus = 1\n and `tabSales Order`.status != \"Stopped\"\n and ifnull(`tabSales Order Item`.delivered_qty,0) < ifnull(`tabSales Order Item`.qty,0)\norder by `tabSales Order`.transaction_date asc", - "ref_doctype": "Delivery Note" + "ref_doctype": "Delivery Note", + "report_name": "Ordered Items To Be Delivered", + "report_type": "Query Report" }, { "doctype": "Report", diff --git a/stock/report/purchase_order_items_to_be_received/purchase_order_items_to_be_received.txt b/stock/report/purchase_order_items_to_be_received/purchase_order_items_to_be_received.txt index fe4b84487a..45e3a42dee 100644 --- a/stock/report/purchase_order_items_to_be_received/purchase_order_items_to_be_received.txt +++ b/stock/report/purchase_order_items_to_be_received/purchase_order_items_to_be_received.txt @@ -2,7 +2,7 @@ { "creation": "2013-02-21 14:26:49", "docstatus": 0, - "modified": "2013-02-22 10:44:34", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", "owner": "Administrator" }, @@ -11,7 +11,9 @@ "is_standard": "Yes", "name": "__common__", "query": "select \n `tabPurchase Order`.`name` as \"Purchase Order:Link/Purchase Order:120\",\n `tabPurchase Order`.`transaction_date` as \"Date:Date:100\",\n `tabPurchase Order`.`supplier` as \"Supplier:Link/Supplier:120\",\n `tabPurchase Order`.`project_name` as \"Project\",\n `tabPurchase Order Item`.item_code as \"Item Code:Link/Item:120\",\n `tabPurchase Order Item`.qty as \"Qty:Float:100\",\n `tabPurchase Order Item`.received_qty as \"Received Qty:Float:100\", \n (`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0)) as \"Qty to Receive:Float:100\",\n `tabPurchase Order Item`.item_name as \"Item Name::150\",\n `tabPurchase Order Item`.description as \"Description::200\"\nfrom\n `tabPurchase Order`, `tabPurchase Order Item`\nwhere\n `tabPurchase Order Item`.`parent` = `tabPurchase Order`.`name`\n and `tabPurchase Order`.docstatus = 1\n and `tabPurchase Order`.status != \"Stopped\"\n and ifnull(`tabPurchase Order Item`.received_qty, 0) < ifnull(`tabPurchase Order Item`.qty, 0)\norder by `tabPurchase Order`.transaction_date asc", - "ref_doctype": "Purchase Receipt" + "ref_doctype": "Purchase Receipt", + "report_name": "Purchase Order Items To Be Received", + "report_type": "Query Report" }, { "doctype": "Report", diff --git a/stock/report/serial_no_service_contract_expiry/serial_no_service_contract_expiry.txt b/stock/report/serial_no_service_contract_expiry/serial_no_service_contract_expiry.txt index a4032f2ee1..641e489c38 100644 --- a/stock/report/serial_no_service_contract_expiry/serial_no_service_contract_expiry.txt +++ b/stock/report/serial_no_service_contract_expiry/serial_no_service_contract_expiry.txt @@ -1,20 +1,22 @@ [ { - "owner": "Administrator", + "creation": "2013-01-14 10:52:58", "docstatus": 0, - "creation": "2013-01-04 14:04:15", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", - "modified": "2013-01-14 10:45:46" + "owner": "Administrator" }, { + "doctype": "Report", + "is_standard": "Yes", + "json": "{\"filters\":[[\"Serial No\",\"status\",\"=\",\"Delivered\"]],\"columns\":[[\"name\",\"Serial No\"],[\"item_code\",\"Serial No\"],[\"amc_expiry_date\",\"Serial No\"],[\"maintenance_status\",\"Serial No\"],[\"delivery_document_no\",\"Serial No\"],[\"customer\",\"Serial No\"],[\"customer_name\",\"Serial No\"],[\"item_name\",\"Serial No\"],[\"description\",\"Serial No\"],[\"item_group\",\"Serial No\"],[\"brand\",\"Serial No\"]],\"sort_by\":\"Serial No.amc_expiry_date\",\"sort_order\":\"asc\",\"sort_by_next\":\"\",\"sort_order_next\":\"desc\"}", "name": "__common__", "ref_doctype": "Serial No", - "doctype": "Report", - "json": "{\"filters\":[[\"Serial No\",\"status\",\"=\",\"Delivered\"]],\"columns\":[[\"name\",\"Serial No\"],[\"item_code\",\"Serial No\"],[\"amc_expiry_date\",\"Serial No\"],[\"maintenance_status\",\"Serial No\"],[\"delivery_document_no\",\"Serial No\"],[\"customer\",\"Serial No\"],[\"customer_name\",\"Serial No\"],[\"item_name\",\"Serial No\"],[\"description\",\"Serial No\"],[\"item_group\",\"Serial No\"],[\"brand\",\"Serial No\"]],\"sort_by\":\"Serial No.amc_expiry_date\",\"sort_order\":\"asc\",\"sort_by_next\":\"\",\"sort_order_next\":\"desc\"}", - "is_standard": "Yes" + "report_name": "Serial No Service Contract Expiry", + "report_type": "Report Builder" }, { - "name": "Serial No Service Contract Expiry", - "doctype": "Report" + "doctype": "Report", + "name": "Serial No Service Contract Expiry" } ] \ No newline at end of file diff --git a/stock/report/serial_no_status/serial_no_status.txt b/stock/report/serial_no_status/serial_no_status.txt index 51ef607db3..23b1624394 100644 --- a/stock/report/serial_no_status/serial_no_status.txt +++ b/stock/report/serial_no_status/serial_no_status.txt @@ -1,20 +1,22 @@ [ { - "owner": "Administrator", + "creation": "2013-01-14 10:52:58", "docstatus": 0, - "creation": "2013-01-04 14:04:15", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", - "modified": "2013-01-14 10:46:03" + "owner": "Administrator" }, { + "doctype": "Report", + "is_standard": "Yes", + "json": "{\"filters\":[],\"columns\":[[\"name\",\"Serial No\"],[\"item_code\",\"Serial No\"],[\"warehouse\",\"Serial No\"],[\"status\",\"Serial No\"],[\"item_name\",\"Serial No\"],[\"description\",\"Serial No\"],[\"item_group\",\"Serial No\"],[\"brand\",\"Serial No\"],[\"purchase_document_no\",\"Serial No\"],[\"purchase_date\",\"Serial No\"],[\"customer\",\"Serial No\"],[\"customer_name\",\"Serial No\"],[\"purchase_rate\",\"Serial No\"],[\"delivery_document_no\",\"Serial No\"],[\"delivery_date\",\"Serial No\"],[\"supplier\",\"Serial No\"],[\"supplier_name\",\"Serial No\"]],\"sort_by\":\"Serial No.name\",\"sort_order\":\"desc\",\"sort_by_next\":\"\",\"sort_order_next\":\"desc\"}", "name": "__common__", "ref_doctype": "Serial No", - "doctype": "Report", - "json": "{\"filters\":[],\"columns\":[[\"name\",\"Serial No\"],[\"item_code\",\"Serial No\"],[\"warehouse\",\"Serial No\"],[\"status\",\"Serial No\"],[\"item_name\",\"Serial No\"],[\"description\",\"Serial No\"],[\"item_group\",\"Serial No\"],[\"brand\",\"Serial No\"],[\"purchase_document_no\",\"Serial No\"],[\"purchase_date\",\"Serial No\"],[\"customer\",\"Serial No\"],[\"customer_name\",\"Serial No\"],[\"purchase_rate\",\"Serial No\"],[\"delivery_document_no\",\"Serial No\"],[\"delivery_date\",\"Serial No\"],[\"supplier\",\"Serial No\"],[\"supplier_name\",\"Serial No\"]],\"sort_by\":\"Serial No.name\",\"sort_order\":\"desc\",\"sort_by_next\":\"\",\"sort_order_next\":\"desc\"}", - "is_standard": "Yes" + "report_name": "Serial No Status", + "report_type": "Report Builder" }, { - "name": "Serial No Status", - "doctype": "Report" + "doctype": "Report", + "name": "Serial No Status" } ] \ No newline at end of file diff --git a/stock/report/serial_no_warranty_expiry/serial_no_warranty_expiry.txt b/stock/report/serial_no_warranty_expiry/serial_no_warranty_expiry.txt index ff1e550c80..e4c2380cba 100644 --- a/stock/report/serial_no_warranty_expiry/serial_no_warranty_expiry.txt +++ b/stock/report/serial_no_warranty_expiry/serial_no_warranty_expiry.txt @@ -1,20 +1,22 @@ [ { - "owner": "Administrator", + "creation": "2013-01-14 10:52:58", "docstatus": 0, - "creation": "2013-01-07 17:43:57", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", - "modified": "2013-01-14 10:45:58" + "owner": "Administrator" }, { + "doctype": "Report", + "is_standard": "Yes", + "json": "{\"filters\":[[\"Serial No\",\"status\",\"=\",\"Delivered\"]],\"columns\":[[\"name\",\"Serial No\"],[\"item_code\",\"Serial No\"],[\"warranty_expiry_date\",\"Serial No\"],[\"warranty_period\",\"Serial No\"],[\"maintenance_status\",\"Serial No\"],[\"purchase_document_no\",\"Serial No\"],[\"purchase_date\",\"Serial No\"],[\"supplier\",\"Serial No\"],[\"supplier_name\",\"Serial No\"],[\"delivery_document_no\",\"Serial No\"],[\"delivery_date\",\"Serial No\"],[\"customer\",\"Serial No\"],[\"customer_name\",\"Serial No\"],[\"item_name\",\"Serial No\"],[\"description\",\"Serial No\"],[\"item_group\",\"Serial No\"],[\"brand\",\"Serial No\"]],\"sort_by\":\"Serial No.warranty_expiry_date\",\"sort_order\":\"asc\",\"sort_by_next\":\"\",\"sort_order_next\":\"asc\"}", "name": "__common__", "ref_doctype": "Serial No", - "doctype": "Report", - "json": "{\"filters\":[[\"Serial No\",\"status\",\"=\",\"Delivered\"]],\"columns\":[[\"name\",\"Serial No\"],[\"item_code\",\"Serial No\"],[\"warranty_expiry_date\",\"Serial No\"],[\"warranty_period\",\"Serial No\"],[\"maintenance_status\",\"Serial No\"],[\"purchase_document_no\",\"Serial No\"],[\"purchase_date\",\"Serial No\"],[\"supplier\",\"Serial No\"],[\"supplier_name\",\"Serial No\"],[\"delivery_document_no\",\"Serial No\"],[\"delivery_date\",\"Serial No\"],[\"customer\",\"Serial No\"],[\"customer_name\",\"Serial No\"],[\"item_name\",\"Serial No\"],[\"description\",\"Serial No\"],[\"item_group\",\"Serial No\"],[\"brand\",\"Serial No\"]],\"sort_by\":\"Serial No.warranty_expiry_date\",\"sort_order\":\"asc\",\"sort_by_next\":\"\",\"sort_order_next\":\"asc\"}", - "is_standard": "Yes" + "report_name": "Serial No Warranty Expiry", + "report_type": "Report Builder" }, { - "name": "Serial No Warranty Expiry", - "doctype": "Report" + "doctype": "Report", + "name": "Serial No Warranty Expiry" } ] \ No newline at end of file diff --git a/stock/report/stock_ledger/stock_ledger.txt b/stock/report/stock_ledger/stock_ledger.txt index 5184560e14..34df640f91 100644 --- a/stock/report/stock_ledger/stock_ledger.txt +++ b/stock/report/stock_ledger/stock_ledger.txt @@ -1,20 +1,22 @@ [ { - "owner": "Administrator", + "creation": "2013-01-14 15:26:21", "docstatus": 0, - "creation": "2012-12-03 10:31:11", + "modified": "2013-02-22 15:53:01", "modified_by": "Administrator", - "modified": "2013-01-14 10:50:15" + "owner": "Administrator" }, { + "doctype": "Report", + "is_standard": "Yes", + "json": "{\"filters\":[[\"Stock Ledger Entry\",\"is_cancelled\",\"=\",\"No\"]],\"columns\":[[\"item_code\",\"Stock Ledger Entry\"],[\"warehouse\",\"Stock Ledger Entry\"],[\"posting_date\",\"Stock Ledger Entry\"],[\"posting_time\",\"Stock Ledger Entry\"],[\"actual_qty\",\"Stock Ledger Entry\"],[\"qty_after_transaction\",\"Stock Ledger Entry\"],[\"voucher_type\",\"Stock Ledger Entry\"],[\"voucher_no\",\"Stock Ledger Entry\"]],\"sort_by\":\"Stock Ledger Entry.posting_date\",\"sort_order\":\"desc\",\"sort_by_next\":\"Stock Ledger Entry.posting_time\",\"sort_order_next\":\"desc\"}", "name": "__common__", "ref_doctype": "Stock Ledger Entry", - "doctype": "Report", - "json": "{\"filters\":[[\"Stock Ledger Entry\",\"is_cancelled\",\"=\",\"No\"]],\"columns\":[[\"item_code\",\"Stock Ledger Entry\"],[\"warehouse\",\"Stock Ledger Entry\"],[\"posting_date\",\"Stock Ledger Entry\"],[\"posting_time\",\"Stock Ledger Entry\"],[\"actual_qty\",\"Stock Ledger Entry\"],[\"qty_after_transaction\",\"Stock Ledger Entry\"],[\"voucher_type\",\"Stock Ledger Entry\"],[\"voucher_no\",\"Stock Ledger Entry\"]],\"sort_by\":\"Stock Ledger Entry.posting_date\",\"sort_order\":\"desc\",\"sort_by_next\":\"Stock Ledger Entry.posting_time\",\"sort_order_next\":\"desc\"}", - "is_standard": "Yes" + "report_name": "Stock Ledger", + "report_type": "Report Builder" }, { - "name": "Stock Ledger", - "doctype": "Report" + "doctype": "Report", + "name": "Stock Ledger" } ] \ No newline at end of file From ad8a46c5048c8e08aa9776b573042047665d4593 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 22 Feb 2013 17:58:54 +0530 Subject: [PATCH 023/982] repost reserved qty for all for all items --- patches/february_2013/repost_reserved_qty.py | 54 ++++++++++++++++++++ patches/patch_list.py | 3 +- 2 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 patches/february_2013/repost_reserved_qty.py diff --git a/patches/february_2013/repost_reserved_qty.py b/patches/february_2013/repost_reserved_qty.py new file mode 100644 index 0000000000..7d790da2df --- /dev/null +++ b/patches/february_2013/repost_reserved_qty.py @@ -0,0 +1,54 @@ +import webnotes +def execute(): + webnotes.conn.auto_commit_on_many_writes = 1 + repost_reserved_qty() + webnotes.conn.auto_commit_on_many_writes = 0 + +def repost_reserved_qty(): + from webnotes.utils import flt + bins = webnotes.conn.sql("select item_code, warehouse, name, reserved_qty from `tabBin`") + i = 0 + for d in bins: + i += 1 + reserved_qty = webnotes.conn.sql(""" + select + sum((dnpi_qty / so_item_qty) * (so_item_qty - so_item_delivered_qty)) + from + ( + (select + qty as dnpi_qty, + ( + select qty from `tabSales Order Item` + where name = dnpi.parent_detail_docname + ) as so_item_qty, + ( + select ifnull(delivered_qty, 0) from `tabSales Order Item` + where name = dnpi.parent_detail_docname + ) as so_item_delivered_qty, + parent, name + from + ( + select qty, parent_detail_docname, parent, name + from `tabDelivery Note Packing Item` dnpi_in + where item_code = %s and warehouse = %s + and parenttype="Sales Order" + and item_code != parent_item + and exists (select * from `tabSales Order` so + where name = dnpi_in.parent and docstatus = 1 and status != 'Stopped') + ) dnpi) + union + (select qty as dnpi_qty, qty as so_item_qty, + ifnull(delivered_qty, 0) as so_item_delivered_qty, parent, name + from `tabSales Order Item` so_item + where item_code = %s and reserved_warehouse = %s + and exists(select * from `tabSales Order` so + where so.name = so_item.parent and so.docstatus = 1 + and so.status != 'Stopped')) + ) tab + where + so_item_qty >= so_item_delivered_qty + """, (d[0], d[1], d[0], d[1])) + + if flt(d[3]) != flt(reserved_qty[0][0]): + webnotes.conn.sql("""update `tabBin` set reserved_qty = %s where name = %s""", + (reserved_qty and reserved_qty[0][0] or 0, d[2])) \ No newline at end of file diff --git a/patches/patch_list.py b/patches/patch_list.py index 45df4c18be..2b2310e10f 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -186,5 +186,6 @@ patch_list = [ "execute:webnotes.delete_doc('DocType', 'Service Order Detail')", "execute:webnotes.delete_doc('DocType', 'Service Quotation Detail')", "patches.february_2013.p06_material_request_mappers", - "patches.february_2013.p07_clear_web_cache" + "patches.february_2013.p07_clear_web_cache", + "patches.february_2013.repost_reserved_qty", ] \ No newline at end of file From ebae9ae2727e5728a421d0271617ed4551ea50c3 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 22 Feb 2013 18:02:06 +0530 Subject: [PATCH 024/982] fix in financial statements --- accounts/doctype/mis_control/mis_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/doctype/mis_control/mis_control.py b/accounts/doctype/mis_control/mis_control.py index 6c4828abf4..17971fe184 100644 --- a/accounts/doctype/mis_control/mis_control.py +++ b/accounts/doctype/mis_control/mis_control.py @@ -67,7 +67,7 @@ class DocType: #--- from month and to month (for MIS - Comparison Report) ------- month_list = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'] - fiscal_start_month = sql("select MONTH(year_start_date) from `tabFiscal Year` where name = %s",(webnotes.defaults.get_global_value("fiscal_year"))) + fiscal_start_month = sql("select MONTH(year_start_date) from `tabFiscal Year` where name = %s",(webnotes.defaults.get_global_default("fiscal_year"))) fiscal_start_month = fiscal_start_month and fiscal_start_month[0][0] or 1 mon = [''] for i in range(fiscal_start_month,13): mon.append(month_list[i-1]) From 2ea8be9989fde82c5744187161d0e4dc54dc94c2 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 22 Feb 2013 18:51:46 +0530 Subject: [PATCH 025/982] patch to set report type of Report --- patches/patch_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patches/patch_list.py b/patches/patch_list.py index a82760ef17..17755e1a86 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -191,4 +191,5 @@ patch_list = [ "execute:webnotes.delete_doc('Search Criteria', 'employeewise_balance_leave_report')", "execute:webnotes.delete_doc('Search Criteria', 'employee_leave_balance_report')", "patches.february_2013.repost_reserved_qty", + "execute:webnotes.conn.sql(\"update `tabReport` set report_type=if(ifnull(query, '')='', 'Report Builder', 'Query Report') where is_standard='No'\")" ] \ No newline at end of file From 586ee7603fdd2d02b309d2b81920d66989691033 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Sat, 23 Feb 2013 14:39:53 +0530 Subject: [PATCH 026/982] query report reload fix --- .../delivered_items_to_be_billed.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt b/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt index 41ef5e9c2e..c84854f39d 100644 --- a/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt +++ b/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-21 14:26:44", + "creation": "2013-02-22 17:55:23", "docstatus": 0, - "modified": "2013-02-22 15:53:01", + "modified": "2013-02-23 14:35:28", "modified_by": "Administrator", "owner": "Administrator" }, From 22681df120bce64d2aebe69eee6bfc2c2daada99 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Sat, 23 Feb 2013 17:13:44 +0530 Subject: [PATCH 027/982] report_name fix --- patches/patch_list.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index 17755e1a86..6d05ad5174 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -191,5 +191,6 @@ patch_list = [ "execute:webnotes.delete_doc('Search Criteria', 'employeewise_balance_leave_report')", "execute:webnotes.delete_doc('Search Criteria', 'employee_leave_balance_report')", "patches.february_2013.repost_reserved_qty", - "execute:webnotes.conn.sql(\"update `tabReport` set report_type=if(ifnull(query, '')='', 'Report Builder', 'Query Report') where is_standard='No'\")" + "execute:webnotes.conn.sql(\"update `tabReport` set report_type=if(ifnull(query, '')='', 'Report Builder', 'Query Report') where is_standard='No'\")", + "execute:webnotes.conn.sql(\"update `tabReport` set report_name=name where ifnull(report_name,'')='' and is_standard='No'\")" ] \ No newline at end of file From 9e02949821cece4561ade46898c4cfaa86aeea29 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 25 Feb 2013 11:05:27 +0530 Subject: [PATCH 028/982] updated language and separated slickgrid files --- .../doctype/account/locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../budget_control/locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../doctype/c_form/locale/_messages_doc.json | 24 ++-- .../cost_center/locale/_messages_doc.json | 28 ++-- .../fiscal_year/locale/_messages_doc.json | 2 +- .../fiscal_year/locale/_messages_py.json | 2 +- .../gl_control/locale/_messages_doc.json | 4 +- .../gl_entry/locale/_messages_doc.json | 4 +- .../doctype/gl_entry/locale/_messages_py.json | 8 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 8 +- .../locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 6 +- .../locale/_messages_doc.json | 4 +- .../sales_invoice/locale/_messages_doc.json | 6 +- .../locale/_messages_doc.json | 28 ++-- .../locale/_messages_doc.json | 2 +- accounts/locale/_messages_py.json | 2 +- .../accounts/locale/_messages_doc.json | 10 +- .../purchase_common/locale/_messages_py.json | 2 +- .../purchase_order/locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 8 +- .../locale/_messages_doc.json | 2 +- .../appraisal/locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 6 +- .../locale/_messages_doc.json | 4 +- .../deduction_type/locale/_messages_doc.json | 4 +- .../department/locale/_messages_doc.json | 8 +- hr/doctype/employee/locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../expense_claim/locale/_messages_doc.json | 20 +-- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_py.json | 5 +- .../locale/_messages_doc.json | 2 +- .../salary_manager/locale/_messages_doc.json | 14 +- .../salary_slip/locale/_messages_doc.json | 14 +- .../locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 6 +- .../locale/_messages_doc.json | 6 +- hr/module_def/hr/locale/_messages_doc.json | 7 +- hr/page/hr_home/locale/_messages_js.json | 2 + .../bom_item/locale/_messages_doc.json | 6 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 4 +- .../workstation/locale/_messages_doc.json | 4 +- .../manufacturing/locale/_messages_doc.json | 4 +- .../doctype/project/locale/_messages_doc.json | 9 +- .../locale/_messages_doc.json | 23 +--- .../locale/_messages_doc.json | 6 +- .../locale/_messages_doc.json | 4 +- .../timesheet/locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 6 +- .../customer/locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 6 +- .../doctype/lead/locale/_messages_doc.json | 2 +- .../opportunity/locale/_messages_doc.json | 2 +- .../quotation_item/locale/_messages_doc.json | 32 ++--- .../sales_order/locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 2 +- .../sms_center/locale/_messages_doc.json | 16 +-- .../locale/_messages_doc.json | 4 +- .../contact_control/locale/_messages_doc.json | 6 +- .../doctype/country/locale/_messages_doc.json | 4 +- .../currency/locale/_messages_doc.json | 23 ++-- .../customer_group/locale/_messages_doc.json | 4 +- .../email_digest/locale/_messages_doc.json | 2 +- .../features_setup/locale/_messages_doc.json | 18 +-- .../global_defaults/locale/_messages_doc.json | 120 ++++++++---------- .../item_group/locale/_messages_doc.json | 26 ++-- .../locale/_messages_doc.json | 2 +- .../market_segment/locale/_messages_doc.json | 8 +- .../sms_parameter/locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 8 +- .../territory/locale/_messages_doc.json | 30 ++--- setup/doctype/uom/locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 6 +- .../workflow_engine/locale/_messages_doc.json | 4 +- .../workflow_rule/locale/_messages_doc.json | 18 +-- .../locale/_messages_doc.json | 1 - setup/locale/_messages_py.json | 2 +- .../setup/locale/_messages_doc.json | 12 +- startup/__init__.py | 3 +- .../delivery_note/locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../item_tax/locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 8 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 6 +- .../packing_slip/locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 2 +- .../sales_bom/locale/_messages_doc.json | 2 +- .../stock_entry/locale/_messages_py.json | 7 +- .../locale/_messages_doc.json | 30 ++--- .../locale/_messages_py.json | 8 +- .../locale/_messages_doc.json | 4 +- .../stock/locale/_messages_doc.json | 26 ++-- .../locale/_messages_doc.json | 6 +- .../locale/_messages_doc.json | 2 +- .../newsletter/locale/_messages_doc.json | 4 +- .../newsletter/locale/_messages_py.json | 2 +- .../support_ticket/locale/_messages_doc.json | 4 +- .../doctype/answer/locale/_messages_doc.json | 4 +- .../doctype/contact/locale/_messages_doc.json | 4 +- .../rename_tool/locale/_messages_doc.json | 6 +- .../sms_receiver/locale/_messages_doc.json | 4 +- .../doctype/blog/locale/_messages_doc.json | 4 +- .../locale/_messages_doc.json | 6 +- .../locale/_messages_doc.json | 5 +- .../style_settings/locale/_messages_doc.json | 2 +- .../web_page/locale/_messages_doc.json | 2 +- .../locale/_messages_doc.json | 6 - .../locale/_messages_doc.json | 6 +- .../website/locale/_messages_doc.json | 7 +- 126 files changed, 432 insertions(+), 500 deletions(-) diff --git a/accounts/doctype/account/locale/_messages_doc.json b/accounts/doctype/account/locale/_messages_doc.json index 0f916629aa..c1170051b8 100644 --- a/accounts/doctype/account/locale/_messages_doc.json +++ b/accounts/doctype/account/locale/_messages_doc.json @@ -1,5 +1,4 @@ [ - "Master Name", "Group or Ledger", "No", "Parent Account", @@ -22,6 +21,7 @@ "Rgt", "Frozen", "Income Account", + "Master Name", "Customer", "Account", "Debit or Credit", diff --git a/accounts/doctype/bank_reconciliation/locale/_messages_doc.json b/accounts/doctype/bank_reconciliation/locale/_messages_doc.json index 01eb6ba6e5..76f900844b 100644 --- a/accounts/doctype/bank_reconciliation/locale/_messages_doc.json +++ b/accounts/doctype/bank_reconciliation/locale/_messages_doc.json @@ -1,12 +1,12 @@ [ "Select account head of the bank where cheque was deposited.", + "Entries", "Update Clearance Date", "Company", "Bank Account", "To Date", "Accounts", "From Date", - "Entries", "Get Non Reconciled Entries", "Bank Reconciliation", "Total Amount" diff --git a/accounts/doctype/budget_control/locale/_messages_doc.json b/accounts/doctype/budget_control/locale/_messages_doc.json index 5e1218a936..f42d3befaf 100644 --- a/accounts/doctype/budget_control/locale/_messages_doc.json +++ b/accounts/doctype/budget_control/locale/_messages_doc.json @@ -1,4 +1,4 @@ [ - "Budget Control", - "Accounts" + "Accounts", + "Budget Control" ] \ No newline at end of file diff --git a/accounts/doctype/budget_distribution/locale/_messages_doc.json b/accounts/doctype/budget_distribution/locale/_messages_doc.json index 3762ccb0ff..62324e0f7b 100644 --- a/accounts/doctype/budget_distribution/locale/_messages_doc.json +++ b/accounts/doctype/budget_distribution/locale/_messages_doc.json @@ -4,7 +4,7 @@ "Budget Distribution", "Name of the Budget Distribution", "Fiscal Year", - "**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.To distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**", "Accounts", + "**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.\n\nTo distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**", "Budget Distribution Details" ] \ No newline at end of file diff --git a/accounts/doctype/budget_distribution_detail/locale/_messages_doc.json b/accounts/doctype/budget_distribution_detail/locale/_messages_doc.json index ad64d35fe1..321e638340 100644 --- a/accounts/doctype/budget_distribution_detail/locale/_messages_doc.json +++ b/accounts/doctype/budget_distribution_detail/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ "Budget Distribution Detail", - "Percentage Allocation", "Accounts", + "Percentage Allocation", "Month" ] \ No newline at end of file diff --git a/accounts/doctype/c_form/locale/_messages_doc.json b/accounts/doctype/c_form/locale/_messages_doc.json index 7088f707f4..c7f6667681 100644 --- a/accounts/doctype/c_form/locale/_messages_doc.json +++ b/accounts/doctype/c_form/locale/_messages_doc.json @@ -1,22 +1,22 @@ [ - "Customer", "C-FORM/", + "Received Date", "State", "C-Form", - "Series", "Company", - "Received Date", "Amended From", - "IV", - "II", - "I", - "Fiscal Year", + "Total Invoiced Amount", "File List", "Accounts", - "C-Form No", - "Invoice Details", - "Quarter", "III", - "Total Amount", - "Total Invoiced Amount" + "Customer", + "I", + "IV", + "II", + "Fiscal Year", + "Quarter", + "Series", + "Invoice Details", + "C-Form No", + "Total Amount" ] \ No newline at end of file diff --git a/accounts/doctype/cost_center/locale/_messages_doc.json b/accounts/doctype/cost_center/locale/_messages_doc.json index 8e53edb411..7f3f130a11 100644 --- a/accounts/doctype/cost_center/locale/_messages_doc.json +++ b/accounts/doctype/cost_center/locale/_messages_doc.json @@ -1,22 +1,22 @@ [ - "rgt", "Trash Reason", - "Select Budget Distribution, if you want to track based on seasonality.", "Group or Ledger", - "Distribution Id", - "Group", - "Track separate Income and Expense for product verticals or divisions.", - "Company", - "Cost Center Details", - "old_parent", + "Select Budget Distribution, if you want to track based on seasonality.", "Cost Center", - "Ledger", - "Add rows to set annual budgets on Accounts.", "lft", - "Budget", - "Define Budget for this Cost Center. To set budget action, see Company Master", - "Accounts", + "Group", + "Add rows to set annual budgets on Accounts.", + "rgt", + "Distribution Id", + "Company", "Cost Center Name", + "Track separate Income and Expense for product verticals or divisions.", + "Cost Center Details", + "Budget", + "Ledger", "Parent Cost Center", - "Budget Details" + "Budget Details", + "old_parent", + "Define Budget for this Cost Center. To set budget action, see Company Master", + "Accounts" ] \ No newline at end of file diff --git a/accounts/doctype/fiscal_year/locale/_messages_doc.json b/accounts/doctype/fiscal_year/locale/_messages_doc.json index 450be4aa78..07be4e630c 100644 --- a/accounts/doctype/fiscal_year/locale/_messages_doc.json +++ b/accounts/doctype/fiscal_year/locale/_messages_doc.json @@ -2,10 +2,10 @@ "Trash Reason", "No", "For e.g. 2012, 2012-13", + "Year Name", "Fiscal Year Details", "Fiscal Year", "Accounts", - "Year Name", "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.", "Year Start Date", "Yes", diff --git a/accounts/doctype/fiscal_year/locale/_messages_py.json b/accounts/doctype/fiscal_year/locale/_messages_py.json index 12ca2158b6..b1845cfb04 100644 --- a/accounts/doctype/fiscal_year/locale/_messages_py.json +++ b/accounts/doctype/fiscal_year/locale/_messages_py.json @@ -1,3 +1,3 @@ [ - " is now the default Fiscal Year. \\\t\t\tPlease refresh your browser for the change to take effect." + " is now the default Fiscal Year. \\\n\t\t\tPlease refresh your browser for the change to take effect." ] \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/_messages_doc.json b/accounts/doctype/gl_control/locale/_messages_doc.json index e7bfed9bec..09c89e5cd1 100644 --- a/accounts/doctype/gl_control/locale/_messages_doc.json +++ b/accounts/doctype/gl_control/locale/_messages_doc.json @@ -1,4 +1,4 @@ [ - "GL Control", - "Accounts" + "Accounts", + "GL Control" ] \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/_messages_doc.json b/accounts/doctype/gl_entry/locale/_messages_doc.json index 9bf382ef9c..9de3b0b534 100644 --- a/accounts/doctype/gl_entry/locale/_messages_doc.json +++ b/accounts/doctype/gl_entry/locale/_messages_doc.json @@ -8,7 +8,7 @@ "Aging Date", "Journal Voucher", "Remarks", - "Sales Invoice", + "Accounts", "Purchase Invoice", "GL Entry", "Posting Date", @@ -23,7 +23,7 @@ "The date at which current entry is made in system.", "Transaction Date", "The date at which current entry will get or has actually executed.", - "Accounts", + "Sales Invoice", "Yes", "Company" ] \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/_messages_py.json b/accounts/doctype/gl_entry/locale/_messages_py.json index 9601ce023f..80fa751b39 100644 --- a/accounts/doctype/gl_entry/locale/_messages_py.json +++ b/accounts/doctype/gl_entry/locale/_messages_py.json @@ -1,13 +1,13 @@ [ - "Outstanding cannot be less than zero. \\\t\t\t\t \tPlease match exact outstanding.", "GL Entry: Debit or Credit amount is mandatory for ", " is mandatory for GL Entry", - "Negative balance is not allowed for account ", + " will become ", "You are not authorized to do/modify back dated entries before ", " does not belong to the company: ", - " has been freezed. \\\t\t\t\tOnly Accounts Manager can do transaction against this account", + "Negative balance is not allowed for account ", "Outstanding for Voucher ", - " will become ", + " has been freezed. \\\n\t\t\t\tOnly Accounts Manager can do transaction against this account", + "Outstanding cannot be less than zero. \\\n\t\t\t\t \tPlease match exact outstanding.", "Account: ", " is not active", " is not a ledger", diff --git a/accounts/doctype/journal_voucher_detail/locale/_messages_doc.json b/accounts/doctype/journal_voucher_detail/locale/_messages_doc.json index bb280cf85b..c3d2225342 100644 --- a/accounts/doctype/journal_voucher_detail/locale/_messages_doc.json +++ b/accounts/doctype/journal_voucher_detail/locale/_messages_doc.json @@ -5,11 +5,11 @@ "Against Sales Invoice", "Cost Center", "Account Balance", + "Is Advance", "Credit", "Accounts", "Debit", "Journal Voucher Detail", - "Is Advance", "Yes", "Against Purchase Invoice", "Against Account" diff --git a/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json b/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json index ee7393edbd..25f36272b0 100644 --- a/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json +++ b/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json @@ -1,5 +1,5 @@ [ - "Multi Ledger Report Detail", + "Accounts", "Account", - "Accounts" + "Multi Ledger Report Detail" ] \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool/locale/_messages_doc.json b/accounts/doctype/payment_to_invoice_matching_tool/locale/_messages_doc.json index c3424251e0..560ec21ea5 100644 --- a/accounts/doctype/payment_to_invoice_matching_tool/locale/_messages_doc.json +++ b/accounts/doctype/payment_to_invoice_matching_tool/locale/_messages_doc.json @@ -3,11 +3,11 @@ "From Date", "Account Type", "Pull Payment Entries", - "Total Amount", + "Company", "Journal Voucher", "Payment to Invoice Matching Tool", "Filter By Date", - "Sales Invoice", + "Accounts", "Purchase Invoice", "Amount >=", "Account", @@ -19,7 +19,7 @@ "Help HTML", "Voucher No", "Filter By Amount", - "Accounts", - "Company", + "Sales Invoice", + "Total Amount", "Allocate" ] \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/locale/_messages_doc.json b/accounts/doctype/purchase_invoice/locale/_messages_doc.json index aeb1c5eaef..9de230e498 100644 --- a/accounts/doctype/purchase_invoice/locale/_messages_doc.json +++ b/accounts/doctype/purchase_invoice/locale/_messages_doc.json @@ -10,7 +10,6 @@ "Totals", "Supplier Address", "Net Total (Import)", - "Grand Total (Import)", "Select Items from Purchase Order", "Credit To", "Supplier", @@ -27,6 +26,7 @@ "Will be calculated automatically when you enter the details", "Amended From", "Taxes and Charges Deducted", + "Yes", "Get Items", "Tax Calculation", "Purchase Receipt", @@ -75,7 +75,7 @@ "Accounts", "The rate at which Bill Currency is converted into company's base currency", "Series", - "Yes", + "Grand Total (Import)", "Recalculate", "Total Tax", "Company", diff --git a/accounts/doctype/purchase_invoice_item/locale/_messages_doc.json b/accounts/doctype/purchase_invoice_item/locale/_messages_doc.json index 5cde9d3397..57ef817936 100644 --- a/accounts/doctype/purchase_invoice_item/locale/_messages_doc.json +++ b/accounts/doctype/purchase_invoice_item/locale/_messages_doc.json @@ -20,7 +20,7 @@ "Ref Rate*", "Purchase Invoice Item", "Item", - "Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges", + "Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges", "Qty", "Item Tax Amount", "Accounts", diff --git a/accounts/doctype/purchase_taxes_and_charges/locale/_messages_doc.json b/accounts/doctype/purchase_taxes_and_charges/locale/_messages_doc.json index 3e29dd433c..b13e0ed7b5 100644 --- a/accounts/doctype/purchase_taxes_and_charges/locale/_messages_doc.json +++ b/accounts/doctype/purchase_taxes_and_charges/locale/_messages_doc.json @@ -4,19 +4,19 @@ "On Previous Row Amount", "Cost Center", "Add", + "Purchase Taxes and Charges", "Type", - "Cheating FieldPlease do not delete ", "Description", "Item Wise Tax Detail ", - "Purchase Taxes and Charges", + "Accounts", "Valuation", "Actual", "Tax Amount", "Amount", "Deduct", "Add or Deduct", - "Accounts", "Enter Row", + "Cheating Field\nPlease do not delete ", "Parenttype", "Valuation and Total", "On Previous Row Total", diff --git a/accounts/doctype/purchase_taxes_and_charges_master/locale/_messages_doc.json b/accounts/doctype/purchase_taxes_and_charges_master/locale/_messages_doc.json index 1483ba50c8..7b4b69543a 100644 --- a/accounts/doctype/purchase_taxes_and_charges_master/locale/_messages_doc.json +++ b/accounts/doctype/purchase_taxes_and_charges_master/locale/_messages_doc.json @@ -1,9 +1,9 @@ [ + "Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.\n10. Add or Deduct: Whether you want to add or deduct the tax.", "Title", "Default", "Company", "Purchase Taxes and Charges Master", "Accounts", - "Purchase Taxes and Charges", - "Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.10. Add or Deduct: Whether you want to add or deduct the tax." + "Purchase Taxes and Charges" ] \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/locale/_messages_doc.json b/accounts/doctype/sales_invoice/locale/_messages_doc.json index 39592668c8..88e5fe6631 100644 --- a/accounts/doctype/sales_invoice/locale/_messages_doc.json +++ b/accounts/doctype/sales_invoice/locale/_messages_doc.json @@ -8,6 +8,7 @@ "Sales Invoice Advance", "Select Terms and Conditions", "Price List and Currency", + "The date on which next invoice will be generated. It is generated on submit.\n", "Territory", "Debit To", "Half-yearly", @@ -60,7 +61,7 @@ "The unique id for tracking all recurring invoices.\u00a0It is generated on submit.", "The date at which current entry is corrected in the system.", "Gross Profit (%)", - "Accounts", + "Sales Invoice", "Rounded Total", "To manage multiple series please go to Setup > Manage Series", "Items", @@ -69,6 +70,7 @@ "Contact", "Recurring Id", "INV/10-11/", + "Accounts", "Is Opening", "Total Commission", "INV", @@ -83,7 +85,6 @@ "Rounded Total (Export)", "Totals", "In Words (Export)", - "Sales Invoice", "Quarterly", "Contact Info", "Select the currency in which price list is maintained", @@ -107,7 +108,6 @@ "Write Off Amount", "Delivery Note", "Customer Group", - "The date on which next invoice will be generated. It is generated on submit.", "Mode of Payment", "Basic Info", "Next Date", diff --git a/accounts/doctype/sales_taxes_and_charges/locale/_messages_doc.json b/accounts/doctype/sales_taxes_and_charges/locale/_messages_doc.json index c9544e9114..70dfb3a0a2 100644 --- a/accounts/doctype/sales_taxes_and_charges/locale/_messages_doc.json +++ b/accounts/doctype/sales_taxes_and_charges/locale/_messages_doc.json @@ -1,23 +1,23 @@ [ "On Net Total", - "Amount", - "Enter Row", - "Actual", - "Description", - "Is this Tax included in Basic Rate?", - "Item Wise Tax Detail ", - "Total Amount", - "Parenttype", + "Total Tax Amount", "On Previous Row Amount", "Cost Center", - "Total Tax Amount", + "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount", + "Type", + "Description", + "Total Amount", + "Item Wise Tax Detail ", + "Cheating Field\nPlease do not delete ", + "Actual", + "Amount", + "Enter Row", + "Sales Taxes and Charges", + "Is this Tax included in Basic Rate?", + "Parenttype", "On Previous Row Total", "Rate", - "Cheating FieldPlease do not delete ", "Accounts", "Account Head", - "Sales Taxes and Charges", - "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount", - "Total", - "Type" + "Total" ] \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges_master/locale/_messages_doc.json b/accounts/doctype/sales_taxes_and_charges_master/locale/_messages_doc.json index 531bf37cdd..34e53dc9dd 100644 --- a/accounts/doctype/sales_taxes_and_charges_master/locale/_messages_doc.json +++ b/accounts/doctype/sales_taxes_and_charges_master/locale/_messages_doc.json @@ -2,8 +2,8 @@ "Title", "Default", "Company", + "Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.", "* Will be calculated in the transaction.", - "Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.", "Accounts", "Sales Taxes and Charges Master" ] \ No newline at end of file diff --git a/accounts/locale/_messages_py.json b/accounts/locale/_messages_py.json index 228ade47b1..820a08ead1 100644 --- a/accounts/locale/_messages_py.json +++ b/accounts/locale/_messages_py.json @@ -1,4 +1,4 @@ [ - "Payment Entry has been modified after you pulled it. \t\t\tPlease pull it again.", + "Payment Entry has been modified after you pulled it. \n\t\t\tPlease pull it again.", "not within Fiscal Year" ] \ No newline at end of file diff --git a/accounts/module_def/accounts/locale/_messages_doc.json b/accounts/module_def/accounts/locale/_messages_doc.json index b587937a34..a1a323668c 100644 --- a/accounts/module_def/accounts/locale/_messages_doc.json +++ b/accounts/module_def/accounts/locale/_messages_doc.json @@ -1,17 +1,17 @@ [ "Trial Balance", + "Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.\n10. Add or Deduct: Whether you want to add or deduct the tax.", "Voucher Import Tool", + "Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.", "Track separate Income and Expense for product verticals or divisions.", "Delivered Items To Be Billed", - "Heads (or groups) against which Accounting Entries are made and balances are maintained.", - "Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.", + "**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.\n\nTo distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**", "Financial Statements", "General Ledger", - "**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.To distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**", - "Accounts Home", "Ordered Items To Be Billed", "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.", "Financial Analytics", "Accounts Browser", - "Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.10. Add or Deduct: Whether you want to add or deduct the tax." + "Heads (or groups) against which Accounting Entries are made and balances are maintained.", + "Accounts Home" ] \ No newline at end of file diff --git a/buying/doctype/purchase_common/locale/_messages_py.json b/buying/doctype/purchase_common/locale/_messages_py.json index a5e81e55a3..5e03b57ec8 100644 --- a/buying/doctype/purchase_common/locale/_messages_py.json +++ b/buying/doctype/purchase_common/locale/_messages_py.json @@ -1,3 +1,3 @@ [ - "Hey there! You need to put at least one item in \\\t\t\t\tthe item table." + "Hey there! You need to put at least one item in \\\n\t\t\t\tthe item table." ] \ No newline at end of file diff --git a/buying/doctype/purchase_order/locale/_messages_doc.json b/buying/doctype/purchase_order/locale/_messages_doc.json index 31be1c1ade..4da9445b92 100644 --- a/buying/doctype/purchase_order/locale/_messages_doc.json +++ b/buying/doctype/purchase_order/locale/_messages_doc.json @@ -21,6 +21,7 @@ "Currency & Price List", "More Info", "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.", + "Draft", "Net Total (Import)", "% Received", "Select Print Heading", @@ -51,7 +52,6 @@ "No", "Calculate Tax", "Totals", - "Draft", "Terms and Conditions HTML", "Status", "Cancel Reason", diff --git a/buying/doctype/purchase_order_item/locale/_messages_doc.json b/buying/doctype/purchase_order_item/locale/_messages_doc.json index 905fb5c617..cf17b807c6 100644 --- a/buying/doctype/purchase_order_item/locale/_messages_doc.json +++ b/buying/doctype/purchase_order_item/locale/_messages_doc.json @@ -29,7 +29,7 @@ "Ref Rate*", "Quantity", "UOM Conversion Factor", - "Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges", + "Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges", "Supplier Quotation", "Purchase Order Item", "Page Break", diff --git a/buying/doctype/purchase_request/locale/_messages_doc.json b/buying/doctype/purchase_request/locale/_messages_doc.json index 16b7f31187..f99e053c8e 100644 --- a/buying/doctype/purchase_request/locale/_messages_doc.json +++ b/buying/doctype/purchase_request/locale/_messages_doc.json @@ -3,7 +3,6 @@ "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template", "IDT", "Select Terms and Conditions", - "Draft", "Name of the entity who has requested for the Purchase Requisition", "Status", "Purchase Request", @@ -36,6 +35,7 @@ "Purchase Requisition Details", "More Info", "One or multiple Sales Order no which generated this Purchase Requisition", + "Draft", "Terms and Conditions Content", "% of materials ordered against this Purchase Requisition" ] \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/_messages_doc.json b/buying/doctype/purchase_request_item/locale/_messages_doc.json index a8706dc070..5607dd9e92 100644 --- a/buying/doctype/purchase_request_item/locale/_messages_doc.json +++ b/buying/doctype/purchase_request_item/locale/_messages_doc.json @@ -1,4 +1,5 @@ [ + "Item Group", "Item Name", "Description", "Required Date", @@ -7,7 +8,6 @@ "Ordered Qty", "Page Break", "Stock UOM", - "Item Group", "Min Order Qty", "Purchase Request Item", "Warehouse", diff --git a/buying/doctype/supplier_quotation/locale/_messages_doc.json b/buying/doctype/supplier_quotation/locale/_messages_doc.json index 32bb54e4d4..7c7cd0ac6e 100644 --- a/buying/doctype/supplier_quotation/locale/_messages_doc.json +++ b/buying/doctype/supplier_quotation/locale/_messages_doc.json @@ -10,8 +10,8 @@ "In Words", "Amendment Date", "Select Terms and Conditions", - "Grand Total (Import)", "File List", + "Draft", "Cancel Reason", "Supplier", "Supplier Address", @@ -23,13 +23,13 @@ "Is Subcontracted", "Terms and Conditions", "Contact Person", - "Get Items", + "Re-Calculate Values", "Get Terms and Conditions", "Company", "Supplier's currency", "Amended From", "Letter Head", - "Re-Calculate Values", + "Get Items", "Tax Calculation", "Price List Currency", "Address", @@ -70,7 +70,7 @@ "Supplier Quotation", "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.", "Series", - "Draft", + "Grand Total (Import)", "Yes", "Total Tax*", "In Words will be visible once you save the Purchase Order.", diff --git a/buying/doctype/supplier_quotation_item/locale/_messages_doc.json b/buying/doctype/supplier_quotation_item/locale/_messages_doc.json index c5685ca4f5..76a61a82af 100644 --- a/buying/doctype/supplier_quotation_item/locale/_messages_doc.json +++ b/buying/doctype/supplier_quotation_item/locale/_messages_doc.json @@ -24,6 +24,6 @@ "Material Request Date", "Ref Rate*", "Quantity", - "Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges", + "Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges", "Page Break" ] \ No newline at end of file diff --git a/hr/doctype/appraisal/locale/_messages_doc.json b/hr/doctype/appraisal/locale/_messages_doc.json index 984664258c..1d32ed6d9f 100644 --- a/hr/doctype/appraisal/locale/_messages_doc.json +++ b/hr/doctype/appraisal/locale/_messages_doc.json @@ -1,7 +1,6 @@ [ "HR", "Comments", - "Draft", "Status", "Appraisal Template", "Completed", @@ -16,13 +15,14 @@ "Select template from which you want to get the Goals", "Submitted", "Employee Details", + "Other Details", "Cancelled", "Appraisal", "For Employee Name", "Calculate Total Score", "Fiscal Year", "Select the Employee for whom you are creating the Appraisal.", - "Other Details", + "Draft", "Start Date", "Company" ] \ No newline at end of file diff --git a/hr/doctype/appraisal_template_goal/locale/_messages_doc.json b/hr/doctype/appraisal_template_goal/locale/_messages_doc.json index f796274cef..a429ba0884 100644 --- a/hr/doctype/appraisal_template_goal/locale/_messages_doc.json +++ b/hr/doctype/appraisal_template_goal/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "HR", "Appraisal Template Goal", + "HR", "Key Performance Area", - "KRA", - "Weightage (%)" + "Weightage (%)", + "KRA" ] \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/_messages_doc.json b/hr/doctype/attendance_control_panel/locale/_messages_doc.json index 4359b81810..374cb704b1 100644 --- a/hr/doctype/attendance_control_panel/locale/_messages_doc.json +++ b/hr/doctype/attendance_control_panel/locale/_messages_doc.json @@ -7,17 +7,17 @@ "Import", "Get Template", "mm/dd/yyyy", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".", "File List", + "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".\nSelect the date format as attendance date format in CSV file.\nClick on \"Import\".", "Import Log", "dd-mm-yyyy", "Attendance Control Panel", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.", "Import Log1", "dd/mm/yyyy", "Selected Attendance date will comes in the attendance template.", "yyyy-mm-dd", "mm/dd/yy", + "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.\nFill data in the template. Save the template in CSV format.\nAll attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.", "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.", "Overwrite", "Download Template" diff --git a/hr/doctype/deduction_type/locale/_messages_doc.json b/hr/doctype/deduction_type/locale/_messages_doc.json index bf6d2bb760..ca2430ab60 100644 --- a/hr/doctype/deduction_type/locale/_messages_doc.json +++ b/hr/doctype/deduction_type/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "HR", - "Description", "Trash Reason", + "Description", + "HR", "Deduction Type", "Name" ] \ No newline at end of file diff --git a/hr/doctype/department/locale/_messages_doc.json b/hr/doctype/department/locale/_messages_doc.json index b0e9b38707..ba99f6aae6 100644 --- a/hr/doctype/department/locale/_messages_doc.json +++ b/hr/doctype/department/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "HR", - "Department", "Trash Reason", - "Days for which Holidays are blocked for this department.", - "Leave Block List" + "HR", + "Leave Block List", + "Department", + "Days for which Holidays are blocked for this department." ] \ No newline at end of file diff --git a/hr/doctype/employee/locale/_messages_doc.json b/hr/doctype/employee/locale/_messages_doc.json index e3e304eb79..67e9a40865 100644 --- a/hr/doctype/employee/locale/_messages_doc.json +++ b/hr/doctype/employee/locale/_messages_doc.json @@ -8,6 +8,7 @@ "Branch", "Department", "Bio", + "Exit", "PF Number", "Company", "User ID", @@ -59,7 +60,6 @@ "Contract End Date", "No", "Leave Encashed?", - "Exit", "Educational Qualification Details", "Final Confirmation Date", "Status", diff --git a/hr/doctype/employee_education/locale/_messages_doc.json b/hr/doctype/employee_education/locale/_messages_doc.json index 4ee11a593b..cbcb8f810e 100644 --- a/hr/doctype/employee_education/locale/_messages_doc.json +++ b/hr/doctype/employee_education/locale/_messages_doc.json @@ -7,7 +7,7 @@ "Graduate", "Employee Education", "Under Graduate", - "Post Graduate", "Qualification", + "Post Graduate", "Class / Percentage" ] \ No newline at end of file diff --git a/hr/doctype/expense_claim/locale/_messages_doc.json b/hr/doctype/expense_claim/locale/_messages_doc.json index e3eec2767f..9593a81ca4 100644 --- a/hr/doctype/expense_claim/locale/_messages_doc.json +++ b/hr/doctype/expense_claim/locale/_messages_doc.json @@ -1,22 +1,22 @@ [ "Employees Email Id", - "Amendment Date", - "Remark", "HR", + "Total Claimed Amount", + "Draft", + "Amended From", + "Expense Claim Details", + "Employee Name", "Company", "Approver", "Total Sanctioned Amount", "Rejected", - "Approved", "Expense Details", + "Approved", + "Posting Date", + "Remark", "Fiscal Year", - "Total Claimed Amount", - "Draft", - "Amended From", "Approval Status", - "Expense Claim Details", - "From Employee", - "Employee Name", "Expense Claim", - "Posting Date" + "Amendment Date", + "From Employee" ] \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/_messages_doc.json b/hr/doctype/holiday_block_list/locale/_messages_doc.json index e521830510..9f03794347 100644 --- a/hr/doctype/holiday_block_list/locale/_messages_doc.json +++ b/hr/doctype/holiday_block_list/locale/_messages_doc.json @@ -8,9 +8,9 @@ "Holiday Block List Dates", "Holiday Block List", "Stop users from making Leave Applications on following days.", - "Applies to Company", "Holiday Block List Name", "Year", "If not checked, the list will have to be added to each Department where it has to be applied.", + "Applies to Company", "Allow the following users to make Leave Applications for block days." ] \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/_messages_doc.json b/hr/doctype/holiday_block_list_date/locale/_messages_doc.json index 4a98b98159..20482bdd12 100644 --- a/hr/doctype/holiday_block_list_date/locale/_messages_doc.json +++ b/hr/doctype/holiday_block_list_date/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ "HR", - "Reason", "Holiday Block List Date", + "Reason", "Block Date" ] \ No newline at end of file diff --git a/hr/doctype/leave_application/locale/_messages_py.json b/hr/doctype/leave_application/locale/_messages_py.json index 9d2a3b7e80..b07f4996db 100644 --- a/hr/doctype/leave_application/locale/_messages_py.json +++ b/hr/doctype/leave_application/locale/_messages_py.json @@ -1,11 +1,12 @@ [ "New Leave Application", - "Following dates are blocked for Leave", - "Hurray! The day(s) on which you are applying for leave \\\t\t\t\t\tcoincide with holiday(s). You need not apply for leave.", + "Hurray! The day(s) on which you are applying for leave \\\n\t\t\t\t\tcoincide with holiday(s). You need not apply for leave.", "Leave by", + "Cannot approve leave as you are not authorized to approve leaves on Block Dates.", "Employee", "Leave Blocked", "Holiday", + "Warning: Leave application contains following block dates", " (Half Day)", "Leave Application" ] \ No newline at end of file diff --git a/hr/doctype/leave_block_list/locale/_messages_doc.json b/hr/doctype/leave_block_list/locale/_messages_doc.json index 47b1fa522b..0a165a731a 100644 --- a/hr/doctype/leave_block_list/locale/_messages_doc.json +++ b/hr/doctype/leave_block_list/locale/_messages_doc.json @@ -7,9 +7,9 @@ "Company", "Leave Block List", "Stop users from making Leave Applications on following days.", - "Applies to Company", "Year", "If not checked, the list will have to be added to each Department where it has to be applied.", + "Applies to Company", "Leave Block List Name", "Leave Block List Allowed", "Leave Block List Dates" diff --git a/hr/doctype/salary_manager/locale/_messages_doc.json b/hr/doctype/salary_manager/locale/_messages_doc.json index c0d4405f37..dd9564580f 100644 --- a/hr/doctype/salary_manager/locale/_messages_doc.json +++ b/hr/doctype/salary_manager/locale/_messages_doc.json @@ -4,23 +4,12 @@ "Creates salary slip for above mentioned criteria.", "Branch", "Department", - "02", - "03", - "01", - "06", - "07", - "04", - "05", "Send Email", "Company", - "09", "Create Bank Voucher for the total salary paid for the above selected criteria", "Designation", - "10", "Fiscal Year", - "11", "Document Description", - "12", "Grade", "Salary Manager", "Submit Salary Slip", @@ -28,6 +17,5 @@ "Activity Log", "Submit all salary slips for the above selected criteria", "Check if you want to send salary slip in mail to each employee while submitting salary slip", - "Make Bank Voucher", - "08" + "Make Bank Voucher" ] \ No newline at end of file diff --git a/hr/doctype/salary_slip/locale/_messages_doc.json b/hr/doctype/salary_slip/locale/_messages_doc.json index 3b4f90603c..52389a9d7b 100644 --- a/hr/doctype/salary_slip/locale/_messages_doc.json +++ b/hr/doctype/salary_slip/locale/_messages_doc.json @@ -10,15 +10,7 @@ "Department", "Employee Name", "Email", - "02", - "03", - "01", - "06", - "07", - "04", - "05", "Company", - "09", "Total days in month", "Amended From", "Bank Name", @@ -38,14 +30,10 @@ "Fiscal Year", "Letter Head", "Leave Without Pay", - "11", - "10", - "12", "Deductions", "Grade", "Bank Account No.", "Gross Pay", "Month", - "Gross Pay + Arrear Amount +Encashment Amount - Total Deduction", - "08" + "Gross Pay + Arrear Amount +Encashment Amount - Total Deduction" ] \ No newline at end of file diff --git a/hr/doctype/salary_slip_deduction/locale/_messages_doc.json b/hr/doctype/salary_slip_deduction/locale/_messages_doc.json index 6f771a02c9..222cc4be26 100644 --- a/hr/doctype/salary_slip_deduction/locale/_messages_doc.json +++ b/hr/doctype/salary_slip_deduction/locale/_messages_doc.json @@ -1,8 +1,8 @@ [ "Modified Amount", "HR", - "Salary Slip Deduction", - "Amount", "Type", + "Amount", + "Salary Slip Deduction", "Depends on LWP" ] \ No newline at end of file diff --git a/hr/doctype/salary_structure_deduction/locale/_messages_doc.json b/hr/doctype/salary_structure_deduction/locale/_messages_doc.json index 320da836f2..0596958623 100644 --- a/hr/doctype/salary_structure_deduction/locale/_messages_doc.json +++ b/hr/doctype/salary_structure_deduction/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ "HR", - "Amount", - "Type", "Depend on LWP", - "Salary Structure Deduction" + "Amount", + "Salary Structure Deduction", + "Type" ] \ No newline at end of file diff --git a/hr/doctype/salary_structure_earning/locale/_messages_doc.json b/hr/doctype/salary_structure_earning/locale/_messages_doc.json index 63e39b1149..217305aed1 100644 --- a/hr/doctype/salary_structure_earning/locale/_messages_doc.json +++ b/hr/doctype/salary_structure_earning/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ "HR", - "Amount", "Salary Structure Earning", - "Type", - "Depend on LWP" + "Depend on LWP", + "Amount", + "Type" ] \ No newline at end of file diff --git a/hr/module_def/hr/locale/_messages_doc.json b/hr/module_def/hr/locale/_messages_doc.json index bfcee9da49..e3ac57e23a 100644 --- a/hr/module_def/hr/locale/_messages_doc.json +++ b/hr/module_def/hr/locale/_messages_doc.json @@ -1,7 +1,8 @@ [ - "Description of a Job Opening", - "Apply / Approve Leaves", "Block Holidays on important days.", "Applicant for a Job", - "Human Resources Home" + "Description of a Job Opening", + "Apply / Approve Leaves", + "Human Resources Home", + "Employee Leave Balance" ] \ No newline at end of file diff --git a/hr/page/hr_home/locale/_messages_js.json b/hr/page/hr_home/locale/_messages_js.json index d56452f844..0d744e05be 100644 --- a/hr/page/hr_home/locale/_messages_js.json +++ b/hr/page/hr_home/locale/_messages_js.json @@ -1,6 +1,7 @@ [ "Leave Setup", "Documents", + "Employee Leave Balance", "Attendance record.", "Employee records.", "Leave Block List", @@ -33,6 +34,7 @@ "Designation", "Generate Salary Slips", "Employee Designation.", + "Reports", "Deduction Type", "Holiday List", "Monthly salary template.", diff --git a/manufacturing/doctype/bom_item/locale/_messages_doc.json b/manufacturing/doctype/bom_item/locale/_messages_doc.json index 314ac7e037..44ed814a98 100644 --- a/manufacturing/doctype/bom_item/locale/_messages_doc.json +++ b/manufacturing/doctype/bom_item/locale/_messages_doc.json @@ -1,11 +1,11 @@ [ - "Amount", "Item Description", - "BOM Item", + "Qty", + "Amount", "Scrap %", "Operation No", "Rate", - "Qty", + "BOM Item", "BOM No", "Stock UOM", "Qty Consumed Per Unit", diff --git a/manufacturing/doctype/production_order/locale/_messages_doc.json b/manufacturing/doctype/production_order/locale/_messages_doc.json index 37a83a4e04..1707c88fe6 100644 --- a/manufacturing/doctype/production_order/locale/_messages_doc.json +++ b/manufacturing/doctype/production_order/locale/_messages_doc.json @@ -1,7 +1,6 @@ [ "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.", "Qty To Manufacture", - "Draft", "Use Multi-Level BOM", "Status", "Project Name", @@ -25,6 +24,7 @@ "Manufactured quantity will be updated in this warehouse", "Item To Manufacture", "Manufacture against Sales Order", + "Draft", "Sales Order", "Completed" ] \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/_messages_doc.json b/manufacturing/doctype/update_delivery_date/locale/_messages_doc.json index eab278c5bd..8645992fa1 100644 --- a/manufacturing/doctype/update_delivery_date/locale/_messages_doc.json +++ b/manufacturing/doctype/update_delivery_date/locale/_messages_doc.json @@ -1,13 +1,13 @@ [ "Customer", "Get Open Sales Order", - "Manufacturing", + "Sales Order", "Company", "Update Delivery Date", "To Date", "From Date", "Entries", - "Sales Order", + "Manufacturing", "Territory", "Update Sales Order" ] \ No newline at end of file diff --git a/manufacturing/doctype/workstation/locale/_messages_doc.json b/manufacturing/doctype/workstation/locale/_messages_doc.json index 69f5942589..6ab9889c4f 100644 --- a/manufacturing/doctype/workstation/locale/_messages_doc.json +++ b/manufacturing/doctype/workstation/locale/_messages_doc.json @@ -1,5 +1,4 @@ [ - "Hour Rate Rent", "Workstation", "Units/Shifts", "Capacity", @@ -10,10 +9,11 @@ "Capacity Units", "Units/Hour", "Over Heads", - "Overhead", "Hour Rate Electricity", "Warehouse", + "Overhead", "Manufacturing", + "Hour Rate Rent", "Workstation Name", "Hour Rate Labour" ] \ No newline at end of file diff --git a/manufacturing/module_def/manufacturing/locale/_messages_doc.json b/manufacturing/module_def/manufacturing/locale/_messages_doc.json index b47bc77f1d..c8da7cfe6a 100644 --- a/manufacturing/module_def/manufacturing/locale/_messages_doc.json +++ b/manufacturing/module_def/manufacturing/locale/_messages_doc.json @@ -1,4 +1,4 @@ [ - "Manufacturing Home", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM" + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM", + "Manufacturing Home" ] \ No newline at end of file diff --git a/projects/doctype/project/locale/_messages_doc.json b/projects/doctype/project/locale/_messages_doc.json index a25821369f..320f6b3aec 100644 --- a/projects/doctype/project/locale/_messages_doc.json +++ b/projects/doctype/project/locale/_messages_doc.json @@ -3,14 +3,12 @@ "Tasks belonging to this Project.", "Completion Date", "No", - "Customer Address", "Customer Details", "Trash Reason", "Priority", "Project Tasks", "Internal", "Low", - "Contact Person", "Project Start Date", "Milestones will be added as Events in the Calendar", "Status", @@ -32,22 +30,17 @@ "Notes", "Project", "Project Type", - "Customer Name", "Cancelled", "Project will get saved and will be searchable with project name given", "Margin", "Estimated Material Cost", - "Territory", "Tasks", - "Contact No", "Is Active", "High", "Other", "Select name of Customer to whom project belongs", "Project Milestones", - "Customer Group", "Yes", "Open", - "Company", - "Email Id" + "Company" ] \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/_messages_doc.json b/projects/doctype/project_activity/locale/_messages_doc.json index a4f173139a..f1d2810044 100644 --- a/projects/doctype/project_activity/locale/_messages_doc.json +++ b/projects/doctype/project_activity/locale/_messages_doc.json @@ -1,35 +1,14 @@ [ "Percent Complete", "New Update", - "60", "Add", - "65", "Updates HTML", - "80", - "85", - "25", - "20", "Activity Name", - "45", - "40", "Hours", - "0", - "5", "Updates", "Last Update By", "Projects", "Last Update", "Project Activity", - "Project", - "75", - "70", - "90", - "100", - "95", - "10", - "15", - "55", - "30", - "50", - "35" + "Project" ] \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/_messages_doc.json b/projects/doctype/project_activity_update/locale/_messages_doc.json index 4fb348895b..1e98c3943b 100644 --- a/projects/doctype/project_activity_update/locale/_messages_doc.json +++ b/projects/doctype/project_activity_update/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "Hours", "e.g. 0.5, 2.5 etc", + "Update", + "Hours", "Project Activity Update", - "Projects", - "Update" + "Projects" ] \ No newline at end of file diff --git a/projects/doctype/project_milestone/locale/_messages_doc.json b/projects/doctype/project_milestone/locale/_messages_doc.json index 7b64ba46ab..f9f4393001 100644 --- a/projects/doctype/project_milestone/locale/_messages_doc.json +++ b/projects/doctype/project_milestone/locale/_messages_doc.json @@ -3,7 +3,7 @@ "Project Milestone", "Completed", "Milestone Date", - "Projects", + "Pending", "Milestone", - "Pending" + "Projects" ] \ No newline at end of file diff --git a/projects/doctype/timesheet/locale/_messages_doc.json b/projects/doctype/timesheet/locale/_messages_doc.json index 8793f2cdab..7c5d2978c5 100644 --- a/projects/doctype/timesheet/locale/_messages_doc.json +++ b/projects/doctype/timesheet/locale/_messages_doc.json @@ -1,14 +1,14 @@ [ "Status", - "Amendment Date", "Timesheet By", "Notes", "Timesheet", "Submitted", - "Draft", + "Amendment Date", "Timesheet Date", "Timesheet Details", "Cancelled", + "Draft", "Amended From", "Projects" ] \ No newline at end of file diff --git a/projects/doctype/timesheet_detail/locale/_messages_doc.json b/projects/doctype/timesheet_detail/locale/_messages_doc.json index a8451d00b3..eff7cbd756 100644 --- a/projects/doctype/timesheet_detail/locale/_messages_doc.json +++ b/projects/doctype/timesheet_detail/locale/_messages_doc.json @@ -5,9 +5,9 @@ "Actual Start Time", "Project", "Total Hours (Actual)", - "Customer Name", - "Projects", + "Additional Info", "Timesheet Detail", + "Customer Name", "Task Name", - "Additional Info" + "Projects" ] \ No newline at end of file diff --git a/selling/doctype/customer/locale/_messages_doc.json b/selling/doctype/customer/locale/_messages_doc.json index f108abd513..ccbabdbf80 100644 --- a/selling/doctype/customer/locale/_messages_doc.json +++ b/selling/doctype/customer/locale/_messages_doc.json @@ -20,10 +20,10 @@ "Default Sales Partner", "Customer Details", "Customer", - "To manage Customer Groups, click here", + "Contact Desc", "Default Currency", "CUST", - "Contact Desc", + "To manage Customer Groups, click here", "Communication HTML", "Your Customer's TAX registration numbers (if applicable) or any general information", "Default Commission Rate", diff --git a/selling/doctype/installation_note/locale/_messages_doc.json b/selling/doctype/installation_note/locale/_messages_doc.json index be4dbecf83..00d81750df 100644 --- a/selling/doctype/installation_note/locale/_messages_doc.json +++ b/selling/doctype/installation_note/locale/_messages_doc.json @@ -1,7 +1,6 @@ [ "Installation Note Item", "Customer Address", - "Draft", "Cancel Reason", "Territory", "Installation Note", @@ -15,9 +14,9 @@ "Remarks", "Delivery Note No", "Customer", - "Series", "Name", "The date at which current entry is corrected in the system.", + "Customer Group", "Submitted", "Fiscal Year", "Contact", @@ -30,5 +29,6 @@ "Installation Date", "Contact Email", "Item Details", - "Customer Group" + "Series", + "Draft" ] \ No newline at end of file diff --git a/selling/doctype/lead/locale/_messages_doc.json b/selling/doctype/lead/locale/_messages_doc.json index d8e7e054d1..55eea2d37b 100644 --- a/selling/doctype/lead/locale/_messages_doc.json +++ b/selling/doctype/lead/locale/_messages_doc.json @@ -11,7 +11,6 @@ "Source", "Country", "Interested", - "Call", "Exhibition", "Your sales person who will contact the lead in future", "Supplier", @@ -35,6 +34,7 @@ "Lead Owner", "Advertisement", "Consultant", + "Call", "Date on which the lead was last contacted", "Naming Series", "To manage Territory, click here", diff --git a/selling/doctype/opportunity/locale/_messages_doc.json b/selling/doctype/opportunity/locale/_messages_doc.json index 2c5f004a58..64d1189e28 100644 --- a/selling/doctype/opportunity/locale/_messages_doc.json +++ b/selling/doctype/opportunity/locale/_messages_doc.json @@ -11,7 +11,6 @@ "Sales", "Date on which the lead was last contacted", "Source", - "Draft", "Exhibition", "Maintenance", "Territory", @@ -63,5 +62,6 @@ "Opportunity Date", "Contact Email", "Existing Customer", + "Draft", "Campaign" ] \ No newline at end of file diff --git a/selling/doctype/quotation_item/locale/_messages_doc.json b/selling/doctype/quotation_item/locale/_messages_doc.json index 35bf28658d..61495357b3 100644 --- a/selling/doctype/quotation_item/locale/_messages_doc.json +++ b/selling/doctype/quotation_item/locale/_messages_doc.json @@ -1,23 +1,23 @@ [ - "Item Tax Rate", "Item Name", - "Description", - "Basic Rate*", - "Quotation Item", - "Brand", - "Amount", - "Amount*", - "Price List Rate*", - "Rate", + "UOM", + "Item Tax Rate", "Selling", - "Item Group", - "Page Break", + "Description", + "Brand", + "Quantity", + "Discount (%)", "Customer's Item Code", "Against Docname", - "Against Doctype", - "Price List Rate", - "Discount (%)", + "Amount*", + "Amount", + "Item Group", "Item Code", - "UOM", - "Quantity" + "Price List Rate*", + "Quotation Item", + "Basic Rate*", + "Rate", + "Against Doctype", + "Page Break", + "Price List Rate" ] \ No newline at end of file diff --git a/selling/doctype/sales_order/locale/_messages_doc.json b/selling/doctype/sales_order/locale/_messages_doc.json index c42376c82e..af6b13677f 100644 --- a/selling/doctype/sales_order/locale/_messages_doc.json +++ b/selling/doctype/sales_order/locale/_messages_doc.json @@ -22,10 +22,11 @@ "Conversion Rate", "Not Billed", "Sales Taxes and Charges", - "Campaign", "Reference", + "Campaign", "Customer's currency", "SO/10-11/", + "Draft", "Sales Order", "Grand Total (Export)", "Delivery Status", @@ -69,7 +70,6 @@ "P.O. Date", "Totals", "In Words (Export)", - "Draft", "Maintenance", "Select the currency in which price list is maintained", "Display all the individual items delivered with the main items", diff --git a/selling/doctype/shipping_address/locale/_messages_doc.json b/selling/doctype/shipping_address/locale/_messages_doc.json index 38b52b8bb4..42fd03538f 100644 --- a/selling/doctype/shipping_address/locale/_messages_doc.json +++ b/selling/doctype/shipping_address/locale/_messages_doc.json @@ -7,7 +7,7 @@ "Customer Address", "Shipping Address", "Customer Name", - "Shipping Details", "Yes", + "Shipping Details", "Is Primary Address" ] \ No newline at end of file diff --git a/selling/doctype/sms_center/locale/_messages_doc.json b/selling/doctype/sms_center/locale/_messages_doc.json index 17ed762406..c7a4dde80e 100644 --- a/selling/doctype/sms_center/locale/_messages_doc.json +++ b/selling/doctype/sms_center/locale/_messages_doc.json @@ -1,21 +1,21 @@ [ - "Customer", "All Lead (Open)", "Send To", "Selling", "All Sales Person", - "Create Receiver List", - "All Supplier Contact", - "Receiver List", + "Branch", "All Customer Contact", + "Receiver List", + "All Supplier Contact", "All Sales Partner Contact", "All Contact", "Message greater than 160 character will be splitted into multiple mesage", - "Department", + "Supplier", "All Employee (Active)", "SMS Center", - "Branch", - "Supplier", + "Department", "Send SMS", - "Message" + "Customer", + "Message", + "Create Receiver List" ] \ No newline at end of file diff --git a/setup/doctype/authorization_rule/locale/_messages_doc.json b/setup/doctype/authorization_rule/locale/_messages_doc.json index e72d1b0916..7efab8a099 100644 --- a/setup/doctype/authorization_rule/locale/_messages_doc.json +++ b/setup/doctype/authorization_rule/locale/_messages_doc.json @@ -19,12 +19,12 @@ "Purchase Receipt", "Grand Total", "Appraisal", + "Applicable To (Employee)", "Applicable To (User)", - "Applicable To (Role)", "Delivery Note", "Sales Invoice", "Average Discount", "Sales Order", "Approving User", - "Applicable To (Employee)" + "Applicable To (Role)" ] \ No newline at end of file diff --git a/setup/doctype/contact_control/locale/_messages_doc.json b/setup/doctype/contact_control/locale/_messages_doc.json index 09d529c17f..3c6d3a6e00 100644 --- a/setup/doctype/contact_control/locale/_messages_doc.json +++ b/setup/doctype/contact_control/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ "Customer Intro", - "Header", + "Supplier Intro", "Setup", - "Contact Control", - "Supplier Intro" + "Header", + "Contact Control" ] \ No newline at end of file diff --git a/setup/doctype/country/locale/_messages_doc.json b/setup/doctype/country/locale/_messages_doc.json index bee86862d4..1b3880302f 100644 --- a/setup/doctype/country/locale/_messages_doc.json +++ b/setup/doctype/country/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "Time Zones", "Country", "Setup", + "Date Format", "Country Name", - "Date Format" + "Time Zones" ] \ No newline at end of file diff --git a/setup/doctype/currency/locale/_messages_doc.json b/setup/doctype/currency/locale/_messages_doc.json index 5b8c2a5eff..3502c13cf4 100644 --- a/setup/doctype/currency/locale/_messages_doc.json +++ b/setup/doctype/currency/locale/_messages_doc.json @@ -1,22 +1,15 @@ [ "Fraction Units", - "#,###.###", + "Currency Name", + "Fraction", + "Sub-currency. For e.g. \"Cent\"", + "1 Currency = [?] Fraction\nFor e.g. 1 USD = 100 Cent", + "Symbol", + "A symbol for this currency. For e.g. $", + "**Currency** Master", "Number Format", "Setup", - "Symbol", "Enabled", - "#,##,###.##", "How should this currency be formatted? If not set, will use system defaults", - "Currency", - "A symbol for this currency. For e.g. $", - "Currency Name", - "1 Currency = [?] FractionFor e.g. 1 USD = 100 Cent", - "Fraction", - "#.###,##", - "#,###", - "# ###.##", - "Sub-currency. For e.g. \"Cent\"", - "**Currency** Master", - "#,###.##", - "#.###" + "Currency" ] \ No newline at end of file diff --git a/setup/doctype/customer_group/locale/_messages_doc.json b/setup/doctype/customer_group/locale/_messages_doc.json index d9dafb97ec..ccbb2d526a 100644 --- a/setup/doctype/customer_group/locale/_messages_doc.json +++ b/setup/doctype/customer_group/locale/_messages_doc.json @@ -3,10 +3,10 @@ "rgt", "Only leaf nodes are allowed in transaction", "No", - "Parent Customer Group", + "Has Child Node", "Setup", "This Price List will be selected as default for all Customers under this Group.", - "Has Child Node", + "Parent Customer Group", "Customer Group Name", "old_parent", "lft", diff --git a/setup/doctype/email_digest/locale/_messages_doc.json b/setup/doctype/email_digest/locale/_messages_doc.json index 9c41c66efd..3e21e3d75e 100644 --- a/setup/doctype/email_digest/locale/_messages_doc.json +++ b/setup/doctype/email_digest/locale/_messages_doc.json @@ -6,7 +6,6 @@ "New Material Requests", "Send regular summary reports via Email.", "Select Digest Content", - "Collections", "Expenses Booked", "Income", "Stock", @@ -44,6 +43,7 @@ "Open Tickets", "Accounts", "Projects", + "Collections", "Email Digest", "Weekly" ] \ No newline at end of file diff --git a/setup/doctype/features_setup/locale/_messages_doc.json b/setup/doctype/features_setup/locale/_messages_doc.json index 369d0ed8d5..c06680fa3e 100644 --- a/setup/doctype/features_setup/locale/_messages_doc.json +++ b/setup/doctype/features_setup/locale/_messages_doc.json @@ -3,16 +3,16 @@ "Purchase Discounts", "To enable Point of Sale features", "To get Item Group in details table", - "If you involve in manufacturing activity
Enables item Is Manufactured", "Features Setup", "Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice", - "Item Groups in Details", "Enables More Info. in all documents", "Item Serial Nos", - "All export related fields like currency, conversion rate, export total, export grand total etc are available in
Delivery Note, POS, Quotation, Sales Invoice, Sales Order etc.", + "All export related fields like currency, conversion rate, export total, export grand total etc are available in
\nDelivery Note, POS, Quotation, Sales Invoice, Sales Order etc.", + "Item Groups in Details", "Item Barcode", "Sales Discounts", "Exports", + "To track brand name in the following documents
\nDelivery Note, Enuiry, Material Request, Item, Purchase Order, Purchase Voucher, Purchaser Receipt, Quotation, Sales Invoice, Sales BOM, Sales Order, Serial No", "Item Advanced", "Packing Detials", "Item Batch Nos", @@ -21,27 +21,27 @@ "Manufacturing", "If you have long print formats, this feature can be used to split the page to be printed on multiple pages with all headers and footers on each page", "Sales and Purchase", - "If you follow Quality Inspection
Enables item QA Required and QA No in Purchase Receipt", - "If Sale BOM is defined, the actual BOM of the Pack is displayed as table.Available in Delivery Note and Sales Order", + "If Sale BOM is defined, the actual BOM of the Pack is displayed as table.\nAvailable in Delivery Note and Sales Order", + "Page Break", + "If you follow Quality Inspection
\nEnables item QA Required and QA No in Purchase Receipt", "Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.", "Setup", - "All import related fields like currency, conversion rate, import total, import grand total etc are available in
Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.", + "Available in \nBOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet", "Sales Extras", "Materials", "Miscelleneous", "Recurring Invoice", - "Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet", + "If you involve in manufacturing activity
\nEnables item Is Manufactured", "Field available in Delivery Note, Quotation, Sales Invoice, Sales Order", "More Info", "Point of Sale", "Imports", "If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity", "To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.", - "To track brand name in the following documents
Delivery Note, Enuiry, Material Request, Item, Purchase Order, Purchase Voucher, Purchaser Receipt, Quotation, Sales Invoice, Sales BOM, Sales Order, Serial No", "To track items in sales and purchase documents with batch nos
Preferred Industry: Chemicals etc", "After Sale Installations", "Projects", - "Page Break", + "All import related fields like currency, conversion rate, import total, import grand total etc are available in
\nPurchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.", "To track any installation or commissioning related work after sales", "Quality", "1. To maintain the customer wise item code and to make them searchable based on their code use this option" diff --git a/setup/doctype/global_defaults/locale/_messages_doc.json b/setup/doctype/global_defaults/locale/_messages_doc.json index 259e7b464d..79a7f11527 100644 --- a/setup/doctype/global_defaults/locale/_messages_doc.json +++ b/setup/doctype/global_defaults/locale/_messages_doc.json @@ -1,87 +1,75 @@ [ "Session Expiry in Hours e.g. 06:00", - "mm-dd-yyyy", - "Default Supplier Type", - "Users with this role are allowed to do / modify stock entry before frozen date", - "No", - "Buying", - "Default Price List", - "Purchase Order Required", - "System", + "Raise Material Request when stock reaches re-order level", + "Employee record is created using selected field. ", "dd/mm/yyyy", "Stock level frozen up to this date, nobody can do / modify entry except authorized person", - "Employee Records to be created by ", - "Purchase Receipt Required", "Allow Negative Stock", - "Moving Average", - "Accounts Frozen Upto", - "CGHelp", - "Default Valuation Method", - "Naming Series", - "Supplier Name", - "Default Price List Currency", - "#,###.##", - "Stock", - "Default Warehouse Type", + "Employee Records to be created by ", + "Accounting entry frozen up to this date, nobody can do / modify entry except authorized person", "Account Info", - "Maintain same rate throughout purchase cycle", - "Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.", "Default Company", "Applicable only if valuation method is moving average", "Company", - "Raise Material Request when stock reaches re-order level", - "Date Format", - "Employee record is created using selected field. ", - "HR", - "3", - "2", - "5", - "4", - "#,##,###.##", - "Customer Master created by ", - "Default Item Group", "dd-mm-yyyy", - "Accounting entry frozen up to this date, nobody can do / modify entry except authorized person", - "Supplier Master created by ", - "#.###,##", - "If disable, 'Rounded Total' field will not be visible in any transaction", - "Credit Controller", + "Naming Series", "SMS Sender Name", - "IGHelp", - "Default Currency", - "Default Stock UOM", - "Number Format", + "Default Warehouse Type", "Setup", - "6", - "Stock Frozen Upto", - "Disable Rounded Total", - "Hide Currency Symbol", + "Maintain same rate throughout purchase cycle", "Customer Name", - "FIFO", - "Authourized Role (Frozen Entry)", - "Employee Number", - "Current Fiscal Year", - "yyyy-mm-dd", - "# ###.##", - "#.###", - "Do not show any symbol like $ etc next to currencies.", + "Default Price List Currency", "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

", + "Global Defaults", + "Accounts", + "mm-dd-yyyy", + "Users with this role are allowed to do / modify stock entry before frozen date", + "HR", + "System", + "FIFO", + "Purchase Receipt Required", + "Default Valuation Method", + "Accounts Frozen Upto", + "Allowance Percent", + "Customer Master created by ", + "Buying", + "Supplier Master created by ", + "Selling", + "Default Territory", + "Default Supplier Type", + "CGHelp", "Session Expiry", "Default Customer Group", - "TerritoryHelp", - "#,###.###", - "Float Precision", "Sales Order Required", - "Allowance Percent", + "Employee Number", + "Yes", + "Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.", + "No", + "Default Price List", + "Default Item Group", + "mm/dd/yyyy", + "Date Format", + "Disable Rounded Total", + "Authorized Role (Frozen Entry)", + "If disable, 'Rounded Total' field will not be visible in any transaction", + "Credit Controller", + "IGHelp", + "Current Fiscal Year", + "yyyy-mm-dd", + "Do not show any symbol like $ etc next to currencies.", + "Float Precision", "Users with this role are allowed to do / modify accounting entry before frozen date", "General", "Delivery Note Required", - "Global Defaults", - "#,###", - "Accounts", - "Authorized Role (Frozen Entry)", - "Selling", - "Default Territory", - "Yes", - "mm/dd/yyyy" + "Purchase Order Required", + "Moving Average", + "Default Currency", + "Supplier Name", + "Stock", + "Number Format", + "Default Stock UOM", + "Stock Frozen Upto", + "Authourized Role (Frozen Entry)", + "Hide Currency Symbol", + "TerritoryHelp" ] \ No newline at end of file diff --git a/setup/doctype/item_group/locale/_messages_doc.json b/setup/doctype/item_group/locale/_messages_doc.json index d78d31e83f..325ef6aa3f 100644 --- a/setup/doctype/item_group/locale/_messages_doc.json +++ b/setup/doctype/item_group/locale/_messages_doc.json @@ -1,23 +1,23 @@ [ "Show in Website", - "old_parent", - "HTML / Banner that will show on the top of product list.", - "rgt", - "Website Settings", - "Only leaf nodes are allowed in transaction", "No", - "Setup", + "Parent Item Group", + "lft", + "Website Settings", + "Item Classification", + "rgt", + "Description", "Check this if you want to show in website", "Has Child Node", - "Parent Item Group", "Slideshow", - "Item Classification", - "lft", - "Item Group Name", "File List", - "Item Group", "Page Name", "Show this slideshow at the top of the page", - "Yes", - "Description" + "Setup", + "HTML / Banner that will show on the top of product list.", + "Item Group Name", + "Item Group", + "Only leaf nodes are allowed in transaction", + "old_parent", + "Yes" ] \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/_messages_doc.json b/setup/doctype/jobs_email_settings/locale/_messages_doc.json index 62e7095217..f75932794a 100644 --- a/setup/doctype/jobs_email_settings/locale/_messages_doc.json +++ b/setup/doctype/jobs_email_settings/locale/_messages_doc.json @@ -8,8 +8,8 @@ "Setup", "Email settings for jobs email id \"jobs@example.com\"", "Host", - "Settings to extract Job Applicants from a mailbox e.g. \"jobs@example.com\"", "POP3 server e.g. (pop.gmail.com)", + "Settings to extract Job Applicants from a mailbox e.g. \"jobs@example.com\"", "Check to activate", "Extract Emails", "Email Id" diff --git a/setup/doctype/market_segment/locale/_messages_doc.json b/setup/doctype/market_segment/locale/_messages_doc.json index e20c8c7ea0..fa857630aa 100644 --- a/setup/doctype/market_segment/locale/_messages_doc.json +++ b/setup/doctype/market_segment/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "Setup", - "Segment Name", - "Market Segment", "Trash Reason", - "Details" + "Segment Name", + "Setup", + "Details", + "Market Segment" ] \ No newline at end of file diff --git a/setup/doctype/sms_parameter/locale/_messages_doc.json b/setup/doctype/sms_parameter/locale/_messages_doc.json index 0890ad981c..daf8dc44e0 100644 --- a/setup/doctype/sms_parameter/locale/_messages_doc.json +++ b/setup/doctype/sms_parameter/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Setup", "Parameter", + "Setup", "Value", "SMS Parameter" ] \ No newline at end of file diff --git a/setup/doctype/terms_and_conditions/locale/_messages_doc.json b/setup/doctype/terms_and_conditions/locale/_messages_doc.json index 6cad6d596a..fd5d7d163b 100644 --- a/setup/doctype/terms_and_conditions/locale/_messages_doc.json +++ b/setup/doctype/terms_and_conditions/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "Standard Terms and Conditions that can be added to Sales and Purchases.Examples:1. Validity of the offer.1. Payment Terms (In Advance, On Credit, part advance etc).1. What is extra (or payable by the Customer).1. Safety / usage warning.1. Warranty if any.1. Returns Policy.1. Terms of shipping, if applicable.1. Ways of addressing disputes, indemnity, liability, etc.1. Address and Contact of your Company.", - "Setup", - "Terms and Conditions", "Trash Reason", - "Title" + "Standard Terms and Conditions that can be added to Sales and Purchases.\n\nExamples:\n\n1. Validity of the offer.\n1. Payment Terms (In Advance, On Credit, part advance etc).\n1. What is extra (or payable by the Customer).\n1. Safety / usage warning.\n1. Warranty if any.\n1. Returns Policy.\n1. Terms of shipping, if applicable.\n1. Ways of addressing disputes, indemnity, liability, etc.\n1. Address and Contact of your Company.", + "Terms and Conditions", + "Title", + "Setup" ] \ No newline at end of file diff --git a/setup/doctype/territory/locale/_messages_doc.json b/setup/doctype/territory/locale/_messages_doc.json index caff54e072..c76e2b777f 100644 --- a/setup/doctype/territory/locale/_messages_doc.json +++ b/setup/doctype/territory/locale/_messages_doc.json @@ -1,22 +1,22 @@ [ "Territory Targets", - "Parent Territory", - "Territory Manager", - "For reference", - "Only leaf nodes are allowed in transaction", - "No", - "Setup", - "Has Child Node", "Trash Reason", "Target Distribution", - "Territory Name", - "old_parent", + "No", "lft", - "Classification of Customers by region", - "Target Details", - "rgt", - "Yes", - "Territory", + "For reference", "Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.", - "Select Budget Distribution to unevenly distribute targets across months." + "Territory Manager", + "Territory", + "rgt", + "Has Child Node", + "Classification of Customers by region", + "Parent Territory", + "Setup", + "Territory Name", + "Select Budget Distribution to unevenly distribute targets across months.", + "Only leaf nodes are allowed in transaction", + "old_parent", + "Target Details", + "Yes" ] \ No newline at end of file diff --git a/setup/doctype/uom/locale/_messages_doc.json b/setup/doctype/uom/locale/_messages_doc.json index 497c763b18..0c79dffbce 100644 --- a/setup/doctype/uom/locale/_messages_doc.json +++ b/setup/doctype/uom/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "UOM Name", + "Trash Reason", "Setup", "UOM Details", - "Trash Reason", + "UOM Name", "UOM" ] \ No newline at end of file diff --git a/setup/doctype/workflow_action_detail/locale/_messages_doc.json b/setup/doctype/workflow_action_detail/locale/_messages_doc.json index 6def7f173e..b97b8515e8 100644 --- a/setup/doctype/workflow_action_detail/locale/_messages_doc.json +++ b/setup/doctype/workflow_action_detail/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Field", - "Setup", "Workflow Action Detail", - "Value" + "Setup", + "Value", + "Field" ] \ No newline at end of file diff --git a/setup/doctype/workflow_engine/locale/_messages_doc.json b/setup/doctype/workflow_engine/locale/_messages_doc.json index f03ed6ab74..3f3207e062 100644 --- a/setup/doctype/workflow_engine/locale/_messages_doc.json +++ b/setup/doctype/workflow_engine/locale/_messages_doc.json @@ -1,4 +1,4 @@ [ - "Setup", - "Workflow Engine" + "Workflow Engine", + "Setup" ] \ No newline at end of file diff --git a/setup/doctype/workflow_rule/locale/_messages_doc.json b/setup/doctype/workflow_rule/locale/_messages_doc.json index fbd8fd83d0..191f1681e3 100644 --- a/setup/doctype/workflow_rule/locale/_messages_doc.json +++ b/setup/doctype/workflow_rule/locale/_messages_doc.json @@ -1,23 +1,23 @@ [ + "Extra Condition", + "No", "Select Form", - "Rule Name", "Intro HTML", "Raise Exception", - "Define Rule", - "Rule Priority", "Action Detail", + "Workflow Action Details", + "Define Rule", + "Active", "Setup", - "No", - "Extra Condition", "Enter message", "Reject HTML", - "Workflow Action Details", - "Inactive", "Rule Definition", + "Yes", + "Rule Name", + "Rule Priority", + "Inactive", "Rule Status", - "Active", "Action html", "Workflow Rule Details", - "Yes", "Workflow Rule" ] \ No newline at end of file diff --git a/setup/doctype/workflow_rule_detail/locale/_messages_doc.json b/setup/doctype/workflow_rule_detail/locale/_messages_doc.json index 7019460933..b6b0ab54dc 100644 --- a/setup/doctype/workflow_rule_detail/locale/_messages_doc.json +++ b/setup/doctype/workflow_rule_detail/locale/_messages_doc.json @@ -5,7 +5,6 @@ "Setup", "No", "equal", - "[]", "greater than", "Field", "Value", diff --git a/setup/locale/_messages_py.json b/setup/locale/_messages_py.json index a727ba49fe..f41b905db6 100644 --- a/setup/locale/_messages_py.json +++ b/setup/locale/_messages_py.json @@ -1,3 +1,3 @@ [ - "Please specify Default Currency in Company Master \\\t\t\tand Global Defaults" + "Please specify Default Currency in Company Master \\\n\t\t\tand Global Defaults" ] \ No newline at end of file diff --git a/setup/module_def/setup/locale/_messages_doc.json b/setup/module_def/setup/locale/_messages_doc.json index 2d8698974e..1537348f64 100644 --- a/setup/module_def/setup/locale/_messages_doc.json +++ b/setup/module_def/setup/locale/_messages_doc.json @@ -1,20 +1,20 @@ [ "Item Classification", - "Webforms", - "Modules Setup", + "Standard Terms and Conditions that can be added to Sales and Purchases.\n\nExamples:\n\n1. Validity of the offer.\n1. Payment Terms (In Advance, On Credit, part advance etc).\n1. What is extra (or payable by the Customer).\n1. Safety / usage warning.\n1. Warranty if any.\n1. Returns Policy.\n1. Terms of shipping, if applicable.\n1. Ways of addressing disputes, indemnity, liability, etc.\n1. Address and Contact of your Company.", + "Setup", "Email Settings for Outgoing and Incoming Emails.", - "Standard Terms and Conditions that can be added to Sales and Purchases.Examples:1. Validity of the offer.1. Payment Terms (In Advance, On Credit, part advance etc).1. What is extra (or payable by the Customer).1. Safety / usage warning.1. Warranty if any.1. Returns Policy.1. Terms of shipping, if applicable.1. Ways of addressing disputes, indemnity, liability, etc.1. Address and Contact of your Company.", + "Modules Setup", "Price List Master", "**Currency** Master", "Send automatic emails to Contacts on Submitting transactions.", - "Setup", "Send regular summary reports via Email.", "Email settings for jobs email id \"jobs@example.com\"", "Email settings to extract Leads from sales email id e.g. \"sales@example.com\"", - "Classification of Customers by region", "Set prefix for numbering series on your transactions", "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.", "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.", "Permission Engine", - "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization." + "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.", + "Webforms", + "Classification of Customers by region" ] \ No newline at end of file diff --git a/startup/__init__.py b/startup/__init__.py index 7abd5e2c87..05f95a8b45 100644 --- a/startup/__init__.py +++ b/startup/__init__.py @@ -27,6 +27,7 @@ lang_names = { "español": "es", "français": "fr", "português": "pt", + "português brasileiro": "pt-BR", "nederlands": "nl", "српски":"sr", "தமிழ்": "ta", @@ -35,7 +36,7 @@ lang_names = { "العربية":"ar" } -lang_list = ["ar", "en", "hi", "es", "fr", "pt", "nl", "hr", "th"] +lang_list = ["ar", "en", "hi", "es", "fr", "pt-BR", "pt", "nl", "hr", "th"] product_name = "ERPNext" profile_defaults = { diff --git a/stock/doctype/delivery_note/locale/_messages_doc.json b/stock/doctype/delivery_note/locale/_messages_doc.json index 4578016c24..1144a685f4 100644 --- a/stock/doctype/delivery_note/locale/_messages_doc.json +++ b/stock/doctype/delivery_note/locale/_messages_doc.json @@ -30,6 +30,7 @@ "Date on which lorry started from your warehouse", "The date at which current entry will get or has actually executed.", "More Info", + "Draft", "Posting Time", "To Warehouse", "Grand Total (Export)", @@ -69,7 +70,6 @@ "Rounded Total (Export)", "Totals", "In Words (Export)", - "Draft", "Cancel Reason", "Select the currency in which price list is maintained", "Terms and Conditions HTML", diff --git a/stock/doctype/item_customer_detail/locale/_messages_doc.json b/stock/doctype/item_customer_detail/locale/_messages_doc.json index 86b3d7c156..23485ec004 100644 --- a/stock/doctype/item_customer_detail/locale/_messages_doc.json +++ b/stock/doctype/item_customer_detail/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ "Item Customer Detail", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes", "Customer Name", "Ref Code", - "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/item_quality_inspection_parameter/locale/_messages_doc.json b/stock/doctype/item_quality_inspection_parameter/locale/_messages_doc.json index 342c934b63..19539e5eec 100644 --- a/stock/doctype/item_quality_inspection_parameter/locale/_messages_doc.json +++ b/stock/doctype/item_quality_inspection_parameter/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ + "Item Quality Inspection Parameter", "Parameter", "Acceptance Criteria", - "Item Quality Inspection Parameter", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/item_tax/locale/_messages_doc.json b/stock/doctype/item_tax/locale/_messages_doc.json index 6bdd87ef25..c747156eaf 100644 --- a/stock/doctype/item_tax/locale/_messages_doc.json +++ b/stock/doctype/item_tax/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Tax Rate", "Tax", + "Tax Rate", "Item Tax", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/item_website_specification/locale/_messages_doc.json b/stock/doctype/item_website_specification/locale/_messages_doc.json index a0c1ff8f65..d93a988046 100644 --- a/stock/doctype/item_website_specification/locale/_messages_doc.json +++ b/stock/doctype/item_website_specification/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "Label", - "Item Website Specification", - "Table for Item that will be shown in Web Site", "Description", - "Stock" + "Label", + "Table for Item that will be shown in Web Site", + "Stock", + "Item Website Specification" ] \ No newline at end of file diff --git a/stock/doctype/landed_cost_item/locale/_messages_doc.json b/stock/doctype/landed_cost_item/locale/_messages_doc.json index 3db328302c..237ca4c68a 100644 --- a/stock/doctype/landed_cost_item/locale/_messages_doc.json +++ b/stock/doctype/landed_cost_item/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ + "Landed Cost Item", "Description", "Amount", - "Landed Cost Item", "Account Head", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/landed_cost_purchase_receipt/locale/_messages_doc.json b/stock/doctype/landed_cost_purchase_receipt/locale/_messages_doc.json index d975f2d930..0a4b18ed36 100644 --- a/stock/doctype/landed_cost_purchase_receipt/locale/_messages_doc.json +++ b/stock/doctype/landed_cost_purchase_receipt/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Select PR", "Landed Cost Purchase Receipt", + "Select PR", "Purchase Receipt", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/material_request/locale/_messages_doc.json b/stock/doctype/material_request/locale/_messages_doc.json index 1fb249f2c9..7ecd1f71fc 100644 --- a/stock/doctype/material_request/locale/_messages_doc.json +++ b/stock/doctype/material_request/locale/_messages_doc.json @@ -2,10 +2,9 @@ "% of materials ordered against this Material Request", "Select Terms and Conditions", "Material Request Items", - "Transfer", + "Material Request Type", "IDT", "Material Request", - "Draft", "Select Print Heading", "Stock", "Status", @@ -16,7 +15,7 @@ "Amended From", "File List", "Add Terms and Conditions for the Material Request. You can also prepare a Terms and Conditions Master and use the Template", - "Material Request Type", + "Transfer", "Remarks", "Sales Order No", "Filing in Additional Information about the Material Request will help you analyze your data better.", @@ -40,6 +39,7 @@ "The date at which current entry is corrected in the system.", "More Info", "MREQ-", + "Draft", "Terms and Conditions Content", "Print Heading" ] \ No newline at end of file diff --git a/stock/doctype/packing_slip/locale/_messages_doc.json b/stock/doctype/packing_slip/locale/_messages_doc.json index 4a921ddae2..6b6ecf0f72 100644 --- a/stock/doctype/packing_slip/locale/_messages_doc.json +++ b/stock/doctype/packing_slip/locale/_messages_doc.json @@ -15,13 +15,13 @@ "Gross Weight UOM", "Items", "Package Item Details", + "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.", "Net Weight UOM", - "Indicates that the package is a part of this delivery", "Amendment Date", "Package Weight Details", "Series", "Packing Slip", "Delivery Note", "Misc Details", - "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight." + "Indicates that the package is a part of this delivery" ] \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/locale/_messages_doc.json b/stock/doctype/purchase_receipt/locale/_messages_doc.json index 3031b61f4e..167bf61e0d 100644 --- a/stock/doctype/purchase_receipt/locale/_messages_doc.json +++ b/stock/doctype/purchase_receipt/locale/_messages_doc.json @@ -25,7 +25,7 @@ "Time at which materials were received", "The date at which current entry will get or has actually executed.", "More Info", - "Other Details", + "Draft", "Total Tax", "Posting Time", "Net Total (Import)", @@ -43,6 +43,7 @@ "In Words", "Range", "Contact", + "Other Details", "GRN", "Rate at which supplier's currency is converted to company's base currency", "Currency", @@ -56,7 +57,6 @@ "No", "Calculate Tax", "Totals", - "Draft", "Terms and Conditions HTML", "Status", "Cancel Reason", diff --git a/stock/doctype/purchase_receipt_item/locale/_messages_doc.json b/stock/doctype/purchase_receipt_item/locale/_messages_doc.json index de35b06f03..2986b6ddca 100644 --- a/stock/doctype/purchase_receipt_item/locale/_messages_doc.json +++ b/stock/doctype/purchase_receipt_item/locale/_messages_doc.json @@ -30,7 +30,7 @@ "Ref Rate*", "PO No", "Rejected Quantity", - "Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges", + "Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges", "Discount %", "QA No", "Serial No", diff --git a/stock/doctype/sales_and_purchase_return_tool/locale/_messages_doc.json b/stock/doctype/sales_and_purchase_return_tool/locale/_messages_doc.json index 979f20fc1e..10781c86d2 100644 --- a/stock/doctype/sales_and_purchase_return_tool/locale/_messages_doc.json +++ b/stock/doctype/sales_and_purchase_return_tool/locale/_messages_doc.json @@ -1,5 +1,6 @@ [ "Make Credit Note", + "Make Stock Entry", "Make Excise Invoice", "Sales Return", "Get Items", @@ -10,7 +11,6 @@ "Make Debit Note", "Cust/Supp Address", "Sales Invoice No", - "Make Stock Entry", "Purchase Receipt No", "Purchase Return", "Sales and Purchase Return Items", diff --git a/stock/doctype/sales_bom/locale/_messages_doc.json b/stock/doctype/sales_bom/locale/_messages_doc.json index 93e444ef04..2e6ecb61b4 100644 --- a/stock/doctype/sales_bom/locale/_messages_doc.json +++ b/stock/doctype/sales_bom/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ "Package Items", "Sales BOM Items", - "Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. The package **Item** will have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\".For Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.Note: BOM = Bill of Materials", + "Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. \n\nThe package **Item** will have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\".\n\nFor Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.\n\nNote: BOM = Bill of Materials", "List items that form the package.", "The Item that represents the Package. This Item must have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\"", "Sales BOM Item", diff --git a/stock/doctype/stock_entry/locale/_messages_py.json b/stock/doctype/stock_entry/locale/_messages_py.json index cbf5d795c9..9dc0e18fa8 100644 --- a/stock/doctype/stock_entry/locale/_messages_py.json +++ b/stock/doctype/stock_entry/locale/_messages_py.json @@ -1,18 +1,21 @@ [ + "Material Request", "' does not exists in ", "Purpose must be one of ", " or the BOM is cancelled or inactive", "does not belong to BOM: ", "Atleast one warehouse is mandatory", + "All items have already been transferred \\\n\t\t\t\tfor this Production Order.", "Source and Target Warehouse cannot be same", "Item: '", + "To fetch items again, click on 'Get Items' button \\\n\t\t\t\t\t\tor update the Quantity manually.", "Production Order", - "All items have already been transferred \\\t\t\t\tfor this Production Order.", - "To fetch items again, click on 'Get Items' button \\\t\t\t\t\t\tor update the Quantity manually.", + "does not match", "Source Warehouse", "Item", "Quantity should be equal to Manufacturing Quantity. ", "Row #", + "of", "Quantity already manufactured", "Hence, maximum allowed Manufacturing Quantity", "Target Warehouse", diff --git a/stock/doctype/stock_entry_detail/locale/_messages_doc.json b/stock/doctype/stock_entry_detail/locale/_messages_doc.json index f509d23bcf..1bbb94ee75 100644 --- a/stock/doctype/stock_entry_detail/locale/_messages_doc.json +++ b/stock/doctype/stock_entry_detail/locale/_messages_doc.json @@ -1,23 +1,23 @@ [ - "Valuation Rate", - "Description", - "Qty as per Stock UOM", - "Stock UOM", - "Conversion Factor", - "Material Request used to make this Stock Entry", - "BOM No. for a Finished Good Item", "Material Request", - "Amount", + "Batch No", + "UOM", + "Stock", + "Description", + "Conversion Factor", + "Stock UOM", + "Qty as per Stock UOM", + "Material Request used to make this Stock Entry", "Source Warehouse", + "BOM No", + "Amount", + "Item Code", + "Stock Entry Detail", + "BOM No. for a Finished Good Item", "Qty", "Serial No", - "BOM No", "Target Warehouse", "Material Request Item", - "Batch No", - "Stock", - "Actual Qty (at source/target)", - "Item Code", - "UOM", - "Stock Entry Detail" + "Valuation Rate", + "Actual Qty (at source/target)" ] \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/locale/_messages_py.json b/stock/doctype/stock_reconciliation/locale/_messages_py.json index 5c6434737c..e5f7a14b6d 100644 --- a/stock/doctype/stock_reconciliation/locale/_messages_py.json +++ b/stock/doctype/stock_reconciliation/locale/_messages_py.json @@ -1,10 +1,10 @@ [ "Stock Reconciliation file not uploaded", - "Row # ", + " is less than equals to zero in the system, \\\n\t\t\t\t\t\tvaluation rate is mandatory for this item", "Sorry! We can only allow upto 100 rows for Stock Reconciliation.", "As existing qty for item: ", + "' can not be managed using Stock Reconciliation.\\\n\t\t\t\t\tYou can add/delete Serial No directly, \\\n\t\t\t\t\tto modify stock of this item.", "Serialized Item: '", - "' can not be managed using Stock Reconciliation.\\\t\t\t\t\tYou can add/delete Serial No directly, \\\t\t\t\t\tto modify stock of this item.", - "Hey! You seem to be using the wrong template. \\\t\t\t\tClick on 'Download Template' button to get the correct template.", - " is less than equals to zero in the system, \\\t\t\t\t\t\tvaluation rate is mandatory for this item" + "Row # ", + "Hey! You seem to be using the wrong template. \\\n\t\t\t\tClick on 'Download Template' button to get the correct template." ] \ No newline at end of file diff --git a/stock/doctype/stock_uom_replace_utility/locale/_messages_doc.json b/stock/doctype/stock_uom_replace_utility/locale/_messages_doc.json index f68ca3fd1a..dc55b35f66 100644 --- a/stock/doctype/stock_uom_replace_utility/locale/_messages_doc.json +++ b/stock/doctype/stock_uom_replace_utility/locale/_messages_doc.json @@ -1,9 +1,9 @@ [ "New Stock UOM", "Conversion Factor", - "Update", - "Stock UOM Replace Utility", "Current Stock UOM", + "Stock UOM Replace Utility", + "Update", "Item", "Stock" ] \ No newline at end of file diff --git a/stock/module_def/stock/locale/_messages_doc.json b/stock/module_def/stock/locale/_messages_doc.json index 5fae381fc7..e521117066 100644 --- a/stock/module_def/stock/locale/_messages_doc.json +++ b/stock/module_def/stock/locale/_messages_doc.json @@ -1,23 +1,23 @@ [ - "Serial No Service Contract Expiry", - "Serial No Warranty Expiry", - "Ordered Items To Be Delivered", "A logical Warehouse against which stock entries are made.", "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes", "Featured Item in Item Group", "Stock Analytics", - "Serial No Status", - "Distinct unit of an Item", - "Stock Home", - "Item-Wise Price List", "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.", - "Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. The package **Item** will have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\".For Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.Note: BOM = Bill of Materials", - "Stock Level", + "Item-Wise Price List", + "A Product or a Service that is bought, sold or kept in stock.", + "Serial No Status", + "Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. \n\nThe package **Item** will have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\".\n\nFor Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.\n\nNote: BOM = Bill of Materials", + "Stock Home", "Table for Item that will be shown in Web Site", + "Purchase Order Items To Be Received", + "Serial No Warranty Expiry", + "Ordered Items To Be Delivered", + "Stock Ledger", + "Distinct unit of an Item", + "Serial No Service Contract Expiry", + "Stock Level", "Stock Ageing", "Stock Balance", - "A Product or a Service that is bought, sold or kept in stock.", - "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.", - "Purchase Order Items To Be Received", - "Stock Ledger" + "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight." ] \ No newline at end of file diff --git a/support/doctype/maintenance_schedule_item/locale/_messages_doc.json b/support/doctype/maintenance_schedule_item/locale/_messages_doc.json index 6c74641fa3..1aa718882d 100644 --- a/support/doctype/maintenance_schedule_item/locale/_messages_doc.json +++ b/support/doctype/maintenance_schedule_item/locale/_messages_doc.json @@ -11,10 +11,10 @@ "Random", "Serial No", "Against Docname", - "Half Yearly", "Incharge Name", "Quarterly", + "Half Yearly", "Start Date", - "Item Code", - "Weekly" + "Weekly", + "Item Code" ] \ No newline at end of file diff --git a/support/doctype/maintenance_visit_purpose/locale/_messages_doc.json b/support/doctype/maintenance_visit_purpose/locale/_messages_doc.json index 4a005d9098..47f0d95cc2 100644 --- a/support/doctype/maintenance_visit_purpose/locale/_messages_doc.json +++ b/support/doctype/maintenance_visit_purpose/locale/_messages_doc.json @@ -1,11 +1,11 @@ [ + "Against Document Detail No", "Item Name", "Description", "Maintenance Visit Purpose", "Support", "Against Document No", "Serial No", - "Against Document Detail No", "Work Done", "Service Person", "Document Type", diff --git a/support/doctype/newsletter/locale/_messages_doc.json b/support/doctype/newsletter/locale/_messages_doc.json index 6b608b5973..7ebe9e3d56 100644 --- a/support/doctype/newsletter/locale/_messages_doc.json +++ b/support/doctype/newsletter/locale/_messages_doc.json @@ -3,7 +3,7 @@ "Create and Send Newsletters", "Support", "Lead Source", - "Custom", + "Lead Status", "Test", "Test Email Id", "Supplier", @@ -18,7 +18,7 @@ "Send to this list", "Contact", "A Lead with this email id should exist", - "Lead Status", + "Custom", "NL-", "Test the Newsletter", "Check how the newsletter looks in an email by sending it to your email.", diff --git a/support/doctype/newsletter/locale/_messages_py.json b/support/doctype/newsletter/locale/_messages_py.json index b113e2195e..6a5388b337 100644 --- a/support/doctype/newsletter/locale/_messages_py.json +++ b/support/doctype/newsletter/locale/_messages_py.json @@ -1,4 +1,4 @@ [ - "Sending newsletters is not allowed for Trial users, \\\t\t\t\tto prevent abuse of this feature.", + "Sending newsletters is not allowed for Trial users, \\\n\t\t\t\tto prevent abuse of this feature.", "Please save the Newsletter before sending." ] \ No newline at end of file diff --git a/support/doctype/support_ticket/locale/_messages_doc.json b/support/doctype/support_ticket/locale/_messages_doc.json index ab384b0432..db8b90d176 100644 --- a/support/doctype/support_ticket/locale/_messages_doc.json +++ b/support/doctype/support_ticket/locale/_messages_doc.json @@ -18,10 +18,10 @@ "Customer", "Support Ticket", "Contact", - "Waiting for Customer", + "Customer Name", "Resolution Date", "Opening Date", - "Customer Name", + "Waiting for Customer", "Open", "Additional Info", "Subject" diff --git a/utilities/doctype/answer/locale/_messages_doc.json b/utilities/doctype/answer/locale/_messages_doc.json index 1de6dd54e5..d114eee267 100644 --- a/utilities/doctype/answer/locale/_messages_doc.json +++ b/utilities/doctype/answer/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "Answer", - "Points", "Question", "Utilities", + "Points", + "Answer", "Users Voted" ] \ No newline at end of file diff --git a/utilities/doctype/contact/locale/_messages_doc.json b/utilities/doctype/contact/locale/_messages_doc.json index c6a0750aaa..88d1090569 100644 --- a/utilities/doctype/contact/locale/_messages_doc.json +++ b/utilities/doctype/contact/locale/_messages_doc.json @@ -6,12 +6,12 @@ "Department", "Supplier Name", "Status", - "Enter department to which this Contact belongs", + "Designation", "Utilities", "Phone", "Enter designation of this Contact", "Customer", - "Designation", + "Enter department to which this Contact belongs", "Contact", "Customer Name", "Mobile No", diff --git a/utilities/doctype/rename_tool/locale/_messages_doc.json b/utilities/doctype/rename_tool/locale/_messages_doc.json index 078879e9ac..3ed7a4f575 100644 --- a/utilities/doctype/rename_tool/locale/_messages_doc.json +++ b/utilities/doctype/rename_tool/locale/_messages_doc.json @@ -1,6 +1,5 @@ [ "Customer", - "Profile", "Account", "Document to rename", "Item", @@ -10,8 +9,9 @@ "Warehouse", "Serial No", "Employee", - "New Name", + "Profile", "Supplier", "Rename Tool", - "Rename" + "Rename", + "New Name" ] \ No newline at end of file diff --git a/utilities/doctype/sms_receiver/locale/_messages_doc.json b/utilities/doctype/sms_receiver/locale/_messages_doc.json index 7953210f87..e9845c5bfa 100644 --- a/utilities/doctype/sms_receiver/locale/_messages_doc.json +++ b/utilities/doctype/sms_receiver/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ - "Receiver Name", "SMS Receiver", - "Customer Name", "Utilities", + "Receiver Name", + "Customer Name", "Mobile No" ] \ No newline at end of file diff --git a/website/doctype/blog/locale/_messages_doc.json b/website/doctype/blog/locale/_messages_doc.json index 1e9be57661..033442b87c 100644 --- a/website/doctype/blog/locale/_messages_doc.json +++ b/website/doctype/blog/locale/_messages_doc.json @@ -2,9 +2,11 @@ "Website", "Content", "Title", + "Blog Intro", "Page Name", "Blog", "File List", "Published", - "Email Sent" + "Email Sent", + "Description for listing page, in plain text, only a couple of lines." ] \ No newline at end of file diff --git a/website/doctype/contact_us_settings/locale/_messages_doc.json b/website/doctype/contact_us_settings/locale/_messages_doc.json index e928395e36..13ad77baf7 100644 --- a/website/doctype/contact_us_settings/locale/_messages_doc.json +++ b/website/doctype/contact_us_settings/locale/_messages_doc.json @@ -2,11 +2,13 @@ "Website", "Settings for Contact Us Page", "Help", - "Introductory information for the Contact Us Page", "Introduction", "Query Options", "Contact Us Settings", "Address to be displayed on the Contact Page", "Address", - "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." + "Default: \"Contact Us\"", + "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas.", + "Heading", + "Introductory information for the Contact Us Page" ] \ No newline at end of file diff --git a/website/doctype/products_settings/locale/_messages_doc.json b/website/doctype/products_settings/locale/_messages_doc.json index 74cddb7c87..c44eb10235 100644 --- a/website/doctype/products_settings/locale/_messages_doc.json +++ b/website/doctype/products_settings/locale/_messages_doc.json @@ -1,7 +1,6 @@ [ "Website", - "", - "Products Settings", "Product Groups that are listed on the website. The first product group from this list will be listed by default on the \"Products Page\"", - "Groups" + "Groups", + "Products Settings" ] \ No newline at end of file diff --git a/website/doctype/style_settings/locale/_messages_doc.json b/website/doctype/style_settings/locale/_messages_doc.json index 642d19a605..28e8e98ccf 100644 --- a/website/doctype/style_settings/locale/_messages_doc.json +++ b/website/doctype/style_settings/locale/_messages_doc.json @@ -3,7 +3,6 @@ "12px", "13px", "Verdana", - "Solid background color (default light gray)", "Set your background color, font and image (tiled)", "Custom CSS", "Lato", @@ -26,6 +25,7 @@ "If image is selected, color will be ignored (attach first)", "Background Image", "Tahoma", + "Solid background color (default light gray)", "Font", "Heading Font" ] \ No newline at end of file diff --git a/website/doctype/web_page/locale/_messages_doc.json b/website/doctype/web_page/locale/_messages_doc.json index c377271681..7055e1f493 100644 --- a/website/doctype/web_page/locale/_messages_doc.json +++ b/website/doctype/web_page/locale/_messages_doc.json @@ -12,7 +12,6 @@ "File List", "Page Name", "Page content", - "Page to show on the website", "Center", "Content in markdown format that appears on the main side of your page", "Title / headline of your page", @@ -22,6 +21,7 @@ "Left", "Right", "Page url name (auto-generated) (add \".html\")", + "Page to show on the website\n", "Link to other pages in the side bar and next section", "Main Section", "Web Page" diff --git a/website/doctype/website_product_category/locale/_messages_doc.json b/website/doctype/website_product_category/locale/_messages_doc.json index c319fe5845..cacc0aceff 100644 --- a/website/doctype/website_product_category/locale/_messages_doc.json +++ b/website/doctype/website_product_category/locale/_messages_doc.json @@ -2,12 +2,6 @@ "Website", "Product Category for website", "Indent", - "1", - "0", - "3", - "2", - "5", - "4", "Item Group", "Website Product Category" ] \ No newline at end of file diff --git a/website/doctype/website_settings/locale/_messages_doc.json b/website/doctype/website_settings/locale/_messages_doc.json index 4c9c59f780..2b3501e875 100644 --- a/website/doctype/website_settings/locale/_messages_doc.json +++ b/website/doctype/website_settings/locale/_messages_doc.json @@ -2,7 +2,6 @@ "Copyright", "Misc", "Background shade of the top menu bar", - "Black", "Website Settings", "Google Analytics ID", "White", @@ -18,13 +17,14 @@ "Sub-domain provided by erpnext.com", "Enter domain names associated to this website, each on a new line", "Domain List", - "Brand is what appears on the top-right of the toolbar. If it is an image, make sure ithas a transparent background and use the <img /> tag. Keep size as 200px x 30px", "Address and other legal information you may want to put in the footer.", "Footer", + "Brand is what appears on the top-right of the toolbar. If it is an image, make sure it\nhas a transparent background and use the <img /> tag. Keep size as 200px x 30px", "Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.", "Footer Items", "FavIcon", "Twitter Share", + "Twitter Share via", "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]", "Home Page", "Facebook Share", @@ -36,6 +36,6 @@ "Tweet will be shared via your user account (if specified)", "If checked, the Home page will be the default Item Group for the website.", "Brand HTML", - "Twitter Share via", + "Black", "Title Prefix" ] \ No newline at end of file diff --git a/website/module_def/website/locale/_messages_doc.json b/website/module_def/website/locale/_messages_doc.json index c33eada80e..9c038db885 100644 --- a/website/module_def/website/locale/_messages_doc.json +++ b/website/module_def/website/locale/_messages_doc.json @@ -1,14 +1,13 @@ [ "Settings for Product Catalog on the website", - "", + "Product Category for website", "Settings for Contact Us Page", "Cross Listing of Item in multiple groups", - "Product Category for website", + "Page to show on the website\n", "Slideshow like display for the website", - "Page to show on the website", "Settings for the About Us Page", "Website Home", - "Unsubscribe", "Set your background color, font and image (tiled)", + "Unsubscribe", "Script to attach to all web pages." ] \ No newline at end of file From e4eb89b02a8132b1e761a6ca4ec74cfa771dc1e6 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 25 Feb 2013 13:00:16 +0530 Subject: [PATCH 029/982] added new language and filters in query reports --- .../doctype/account/locale/pt-BR-doc.json | 41 + .../bank_reconciliation/locale/pt-BR-doc.json | 13 + .../locale/pt-BR-doc.json | 13 + .../budget_control/locale/pt-BR-doc.json | 4 + .../budget_detail/locale/pt-BR-doc.json | 8 + .../budget_distribution/locale/pt-BR-doc.json | 9 + .../locale/pt-BR-doc.json | 6 + accounts/doctype/c_form/locale/pt-BR-doc.json | 22 + .../locale/pt-BR-doc.json | 9 + .../doctype/cost_center/locale/pt-BR-doc.json | 22 + .../doctype/fiscal_year/locale/pt-BR-doc.json | 14 + .../doctype/gl_control/locale/pt-BR-doc.json | 4 + .../doctype/gl_entry/locale/pt-BR-doc.json | 29 + .../doctype/gl_entry/locale/pt-BR-py.json | 14 + .../journal_voucher/locale/pt-BR-doc.json | 57 + .../locale/pt-BR-doc.json | 16 + .../doctype/mis_control/locale/pt-BR-doc.json | 4 + .../mode_of_payment/locale/pt-BR-doc.json | 7 + .../locale/pt-BR-doc.json | 5 + .../locale/pt-BR-doc.json | 25 + .../locale/pt-BR-doc.json | 12 + .../locale/pt-BR-doc.json | 14 + .../doctype/pos_setting/locale/pt-BR-doc.json | 20 + .../purchase_invoice/locale/pt-BR-doc.json | 84 + .../purchase_invoice/locale/pt-BR-py.json | 3 + .../locale/pt-BR-doc.json | 9 + .../locale/pt-BR-doc.json | 28 + .../locale/pt-BR-doc.json | 26 + .../locale/pt-BR-doc.json | 8 + .../sales_invoice/locale/pt-BR-doc.json | 142 + .../sales_invoice/locale/pt-BR-py.json | 5 + .../locale/pt-BR-doc.json | 9 + .../sales_invoice_item/locale/pt-BR-doc.json | 34 + .../locale/pt-BR-doc.json | 22 + .../locale/pt-BR-doc.json | 8 + .../locale/pt-BR-doc.json | 4 + accounts/locale/pt-BR-py.json | 3 + .../module_def/accounts/locale/pt-BR-doc.json | 14 + .../page/accounts_home/locale/pt-BR-js.json | 46 + .../purchase_common/locale/pt-BR-doc.json | 4 + .../purchase_order/locale/pt-BR-doc.json | 92 + .../purchase_order_item/locale/pt-BR-doc.json | 36 + .../locale/pt-BR-doc.json | 13 + .../locale/pt-BR-doc.json | 16 + .../purchase_request/locale/pt-BR-doc.json | 41 + .../locale/pt-BR-doc.json | 19 + .../quality_inspection/locale/pt-BR-doc.json | 27 + .../locale/pt-BR-doc.json | 19 + buying/doctype/supplier/locale/pt-BR-doc.json | 27 + buying/doctype/supplier/locale/pt-BR-py.json | 5 + .../supplier_quotation/locale/pt-BR-doc.json | 78 + .../locale/pt-BR-doc.json | 28 + .../module_def/buying/locale/pt-BR-doc.json | 5 + buying/page/buying_home/locale/pt-BR-js.json | 33 + controllers/locale/pt-BR-py.json | 6 + .../company_control/locale/pt-BR-doc.json | 4 + home/doctype/feed/locale/pt-BR-doc.json | 10 + .../home_control/locale/pt-BR-doc.json | 4 + home/module_def/home/locale/pt-BR-doc.json | 9 + hr/doctype/appraisal/locale/pt-BR-doc.json | 28 + .../appraisal_goal/locale/pt-BR-doc.json | 9 + .../appraisal_template/locale/pt-BR-doc.json | 8 + .../appraisal_template/locale/pt-BR-py.json | 4 + .../locale/pt-BR-doc.json | 7 + hr/doctype/attendance/locale/pt-BR-doc.json | 20 + .../locale/pt-BR-doc.json | 22 + hr/doctype/branch/locale/pt-BR-doc.json | 5 + .../deduction_type/locale/pt-BR-doc.json | 7 + hr/doctype/department/locale/pt-BR-doc.json | 7 + hr/doctype/designation/locale/pt-BR-doc.json | 5 + hr/doctype/earning_type/locale/pt-BR-doc.json | 11 + hr/doctype/employee/locale/pt-BR-doc.json | 117 + .../employee_education/locale/pt-BR-doc.json | 13 + .../locale/pt-BR-doc.json | 10 + .../locale/pt-BR-doc.json | 10 + .../employee_training/locale/pt-BR-doc.json | 9 + .../employment_type/locale/pt-BR-doc.json | 5 + .../expense_claim/locale/pt-BR-doc.json | 22 + .../locale/pt-BR-doc.json | 9 + .../expense_claim_type/locale/pt-BR-doc.json | 5 + hr/doctype/grade/locale/pt-BR-doc.json | 5 + hr/doctype/holiday/locale/pt-BR-doc.json | 6 + .../holiday_block_list/locale/pt-BR-doc.json | 16 + .../locale/pt-BR-doc.json | 5 + .../locale/pt-BR-doc.json | 6 + hr/doctype/holiday_list/locale/pt-BR-doc.json | 19 + .../job_applicant/locale/pt-BR-doc.json | 15 + hr/doctype/job_opening/locale/pt-BR-doc.json | 11 + .../leave_allocation/locale/pt-BR-doc.json | 17 + .../leave_application/locale/pt-BR-doc.json | 28 + .../leave_application/locale/pt-BR-py.json | 11 + .../leave_block_list/locale/pt-BR-doc.json | 16 + .../leave_block_list/locale/pt-BR-py.json | 4 + .../locale/pt-BR-doc.json | 5 + .../locale/pt-BR-doc.json | 6 + .../leave_control_panel/locale/pt-BR-doc.json | 20 + hr/doctype/leave_type/locale/pt-BR-doc.json | 10 + .../other_income_detail/locale/pt-BR-doc.json | 10 + .../salary_manager/locale/pt-BR-doc.json | 21 + hr/doctype/salary_slip/locale/pt-BR-doc.json | 39 + .../locale/pt-BR-doc.json | 8 + .../salary_slip_earning/locale/pt-BR-doc.json | 8 + .../salary_structure/locale/pt-BR-doc.json | 27 + .../locale/pt-BR-doc.json | 7 + .../locale/pt-BR-doc.json | 7 + hr/module_def/hr/locale/pt-BR-doc.json | 8 + hr/page/hr_home/locale/pt-BR-js.json | 59 + .../employee_leave_balance.js | 11 + .../employee_leave_balance.py | 11 +- .../doctype/bom/locale/pt-BR-doc.json | 29 + .../doctype/bom/locale/pt-BR-py.json | 9 + .../bom_explosion_item/locale/pt-BR-doc.json | 13 + .../doctype/bom_item/locale/pt-BR-doc.json | 14 + .../bom_operation/locale/pt-BR-doc.json | 10 + .../bom_replace_tool/locale/pt-BR-doc.json | 10 + .../bom_replace_tool/locale/pt-BR-py.json | 3 + .../production_order/locale/pt-BR-doc.json | 30 + .../locale/pt-BR-doc.json | 11 + .../locale/pt-BR-doc.json | 8 + .../locale/pt-BR-doc.json | 30 + .../locale/pt-BR-doc.json | 13 + .../doctype/workstation/locale/pt-BR-doc.json | 19 + .../manufacturing/locale/pt-BR-doc.json | 4 + .../manufacturing_home/locale/pt-BR-js.json | 18 + .../bom_replace_tool/locale/pt-BR-doc.json | 10 + .../activity_type/locale/pt-BR-doc.json | 4 + .../doctype/project/locale/pt-BR-doc.json | 46 + .../project_activity/locale/pt-BR-doc.json | 14 + .../locale/pt-BR-doc.json | 7 + .../project_control/locale/pt-BR-doc.json | 4 + .../project_milestone/locale/pt-BR-doc.json | 9 + projects/doctype/task/locale/pt-BR-doc.json | 34 + .../doctype/timesheet/locale/pt-BR-doc.json | 14 + .../timesheet_detail/locale/pt-BR-doc.json | 13 + .../module_def/projects/locale/pt-BR-doc.json | 4 + .../page/projects_home/locale/pt-BR-js.json | 15 + public/js/locale/pt-BR-js.json | 317 ++ .../doctype/campaign/locale/pt-BR-doc.json | 8 + .../communication_log/locale/pt-BR-doc.json | 13 + .../doctype/customer/locale/pt-BR-doc.json | 40 + selling/doctype/customer/locale/pt-BR-py.json | 3 + .../industry_type/locale/pt-BR-doc.json | 5 + .../installation_note/locale/pt-BR-doc.json | 34 + .../locale/pt-BR-doc.json | 12 + selling/doctype/lead/locale/pt-BR-doc.json | 81 + selling/doctype/lead/locale/pt-BR-py.json | 3 + .../doctype/opportunity/locale/pt-BR-doc.json | 67 + .../opportunity_item/locale/pt-BR-doc.json | 12 + .../doctype/quotation/locale/pt-BR-doc.json | 96 + .../quotation_item/locale/pt-BR-doc.json | 23 + .../locale/pt-BR-doc.json | 13 + .../sales_common/locale/pt-BR-doc.json | 4 + .../doctype/sales_common/locale/pt-BR-py.json | 3 + .../doctype/sales_order/locale/pt-BR-doc.json | 124 + .../sales_order_item/locale/pt-BR-doc.json | 32 + .../doctype/sales_team/locale/pt-BR-doc.json | 11 + .../shipping_address/locale/pt-BR-doc.json | 13 + .../doctype/sms_center/locale/pt-BR-doc.json | 21 + .../module_def/selling/locale/pt-BR-doc.json | 11 + .../page/selling_home/locale/pt-BR-js.json | 52 + .../locale/pt-BR-doc.json | 4 + .../authorization_rule/locale/pt-BR-doc.json | 30 + setup/doctype/brand/locale/pt-BR-doc.json | 6 + setup/doctype/company/locale/pt-BR-doc.json | 32 + .../contact_control/locale/pt-BR-doc.json | 7 + setup/doctype/country/locale/pt-BR-doc.json | 7 + setup/doctype/currency/locale/pt-BR-doc.json | 14 + .../customer_group/locale/pt-BR-doc.json | 16 + .../email_digest/locale/pt-BR-doc.json | 49 + .../doctype/email_digest/locale/pt-BR-py.json | 3 + .../email_settings/locale/pt-BR-doc.json | 34 + .../features_setup/locale/pt-BR-doc.json | 41 + .../global_defaults/locale/pt-BR-doc.json | 75 + .../doctype/item_group/locale/pt-BR-doc.json | 23 + .../jobs_email_settings/locale/pt-BR-doc.json | 16 + .../jobs_email_settings/locale/pt-BR-js.json | 4 + .../jobs_email_settings/locale/pt-BR-py.json | 3 + .../market_segment/locale/pt-BR-doc.json | 7 + .../naming_series/locale/pt-BR-doc.json | 18 + .../locale/pt-BR-doc.json | 6 + .../locale/pt-BR-doc.json | 31 + .../permission_control/locale/pt-BR-doc.json | 4 + .../doctype/price_list/locale/pt-BR-doc.json | 8 + .../print_heading/locale/pt-BR-doc.json | 6 + .../locale/pt-BR-doc.json | 5 + .../locale/pt-BR-doc.json | 4 + .../locale/pt-BR-doc.json | 15 + .../sales_email_settings/locale/pt-BR-js.json | 4 + .../sales_email_settings/locale/pt-BR-py.json | 3 + .../sales_partner/locale/pt-BR-doc.json | 27 + .../sales_person/locale/pt-BR-doc.json | 21 + .../series_detail/locale/pt-BR-doc.json | 6 + .../setup_control/locale/pt-BR-doc.json | 4 + .../sms_parameter/locale/pt-BR-doc.json | 6 + .../sms_settings/locale/pt-BR-doc.json | 13 + setup/doctype/state/locale/pt-BR-doc.json | 6 + .../supplier_type/locale/pt-BR-doc.json | 5 + .../target_detail/locale/pt-BR-doc.json | 8 + .../locale/pt-BR-doc.json | 6 + setup/doctype/territory/locale/pt-BR-doc.json | 22 + setup/doctype/uom/locale/pt-BR-doc.json | 7 + .../warehouse_type/locale/pt-BR-doc.json | 5 + .../locale/pt-BR-doc.json | 6 + .../workflow_engine/locale/pt-BR-doc.json | 4 + .../workflow_rule/locale/pt-BR-doc.json | 23 + .../locale/pt-BR-doc.json | 18 + setup/module_def/setup/locale/pt-BR-doc.json | 19 + setup/page/setup/locale/pt-BR-js.json | 61 + stock/doctype/batch/locale/pt-BR-doc.json | 11 + stock/doctype/bin/locale/pt-BR-doc.json | 18 + stock/doctype/bin/locale/pt-BR-py.json | 4 + .../delivery_note/locale/pt-BR-doc.json | 122 + .../delivery_note_item/locale/pt-BR-doc.json | 33 + .../locale/pt-BR-doc.json | 18 + .../featured_item/locale/pt-BR-doc.json | 6 + stock/doctype/item/locale/pt-BR-doc.json | 117 + .../locale/pt-BR-doc.json | 7 + .../doctype/item_price/locale/pt-BR-doc.json | 11 + .../locale/pt-BR-doc.json | 6 + .../item_reorder/locale/pt-BR-doc.json | 10 + .../item_supplier/locale/pt-BR-doc.json | 6 + stock/doctype/item_tax/locale/pt-BR-doc.json | 6 + .../locale/pt-BR-doc.json | 7 + .../landed_cost_item/locale/pt-BR-doc.json | 7 + .../locale/pt-BR-doc.json | 6 + .../landed_cost_wizard/locale/pt-BR-doc.json | 12 + .../material_request/locale/_messages_js.json | 1 + .../material_request/locale/_messages_py.json | 4 + .../material_request/locale/pt-BR-doc.json | 45 + .../material_request/locale/pt-BR-py.json | 4 + .../locale/pt-BR-doc.json | 19 + .../packing_slip/locale/pt-BR-doc.json | 27 + .../packing_slip_item/locale/pt-BR-doc.json | 11 + .../purchase_receipt/locale/pt-BR-doc.json | 104 + .../locale/pt-BR-doc.json | 41 + .../locale/pt-BR-doc.json | 21 + stock/doctype/sales_bom/locale/pt-BR-doc.json | 10 + .../sales_bom_item/locale/pt-BR-doc.json | 9 + stock/doctype/serial_no/locale/pt-BR-doc.json | 59 + .../doctype/stock_entry/locale/pt-BR-doc.json | 48 + .../doctype/stock_entry/locale/pt-BR-py.json | 25 + .../stock_entry_detail/locale/pt-BR-doc.json | 23 + .../stock_ledger/locale/pt-BR-doc.json | 4 + .../stock_ledger_entry/locale/pt-BR-doc.json | 27 + .../stock_ledger_entry/locale/pt-BR-py.json | 3 + .../locale/pt-BR-doc.json | 12 + .../stock_reconciliation/locale/pt-BR-py.json | 7 + .../locale/pt-BR-doc.json | 9 + .../locale/pt-BR-doc.json | 6 + .../valuation_control/locale/pt-BR-doc.json | 4 + stock/doctype/warehouse/locale/pt-BR-doc.json | 25 + .../warehouse_user/locale/pt-BR-doc.json | 5 + stock/locale/pt-BR-py.json | 7 + stock/module_def/stock/locale/pt-BR-doc.json | 22 + stock/page/stock_home/locale/pt-BR-js.json | 60 + .../customer_issue/locale/pt-BR-doc.json | 50 + .../locale/pt-BR-doc.json | 30 + .../locale/pt-BR-doc.json | 10 + .../locale/pt-BR-doc.json | 20 + .../maintenance_visit/locale/pt-BR-doc.json | 38 + .../locale/pt-BR-doc.json | 13 + .../doctype/newsletter/locale/pt-BR-doc.json | 32 + .../doctype/newsletter/locale/pt-BR-py.json | 3 + .../support_ticket/locale/pt-BR-doc.json | 28 + .../module_def/support/locale/pt-BR-doc.json | 5 + .../page/support_home/locale/pt-BR-js.json | 23 + translations/pt-BR.csv | 3278 +++++++++++++++++ .../doctype/address/locale/pt-BR-doc.json | 28 + .../doctype/answer/locale/pt-BR-doc.json | 7 + .../doctype/contact/locale/pt-BR-doc.json | 26 + .../doctype/gl_mapper/locale/pt-BR-doc.json | 6 + .../gl_mapper_detail/locale/pt-BR-doc.json | 24 + .../profile_control/locale/pt-BR-doc.json | 4 + .../doctype/question/locale/pt-BR-doc.json | 9 + .../doctype/rename_tool/locale/pt-BR-doc.json | 17 + .../doctype/sms_control/locale/pt-BR-doc.json | 4 + .../doctype/sms_log/locale/pt-BR-doc.json | 10 + .../sms_receiver/locale/pt-BR-doc.json | 7 + .../trash_control/locale/pt-BR-doc.json | 4 + utilities/locale/pt-BR-py.json | 3 + .../utilities/locale/pt-BR-doc.json | 10 + .../about_us_settings/locale/pt-BR-doc.json | 16 + .../locale/pt-BR-doc.json | 5 + website/doctype/blog/locale/pt-BR-doc.json | 12 + .../blog_subscriber/locale/pt-BR-doc.json | 4 + .../company_history/locale/pt-BR-doc.json | 6 + .../contact_us_settings/locale/pt-BR-doc.json | 14 + .../locale/pt-BR-doc.json | 6 + .../product_group/locale/pt-BR-doc.json | 6 + .../product_settings/locale/pt-BR-doc.json | 13 + .../products_settings/locale/pt-BR-doc.json | 6 + .../related_page/locale/pt-BR-doc.json | 5 + .../style_settings/locale/pt-BR-doc.json | 31 + .../top_bar_item/locale/pt-BR-doc.json | 9 + .../doctype/web_page/locale/pt-BR-doc.json | 27 + .../website_item_group/locale/pt-BR-doc.json | 6 + .../locale/pt-BR-doc.json | 7 + .../website_script/locale/pt-BR-doc.json | 6 + .../website_settings/locale/pt-BR-doc.json | 40 + .../website_slideshow/locale/pt-BR-doc.json | 10 + .../locale/pt-BR-doc.json | 8 + .../module_def/website/locale/pt-BR-doc.json | 12 + .../page/website_home/locale/pt-BR-js.json | 24 + 303 files changed, 9182 insertions(+), 2 deletions(-) create mode 100644 accounts/doctype/account/locale/pt-BR-doc.json create mode 100644 accounts/doctype/bank_reconciliation/locale/pt-BR-doc.json create mode 100644 accounts/doctype/bank_reconciliation_detail/locale/pt-BR-doc.json create mode 100644 accounts/doctype/budget_control/locale/pt-BR-doc.json create mode 100644 accounts/doctype/budget_detail/locale/pt-BR-doc.json create mode 100644 accounts/doctype/budget_distribution/locale/pt-BR-doc.json create mode 100644 accounts/doctype/budget_distribution_detail/locale/pt-BR-doc.json create mode 100644 accounts/doctype/c_form/locale/pt-BR-doc.json create mode 100644 accounts/doctype/c_form_invoice_detail/locale/pt-BR-doc.json create mode 100644 accounts/doctype/cost_center/locale/pt-BR-doc.json create mode 100644 accounts/doctype/fiscal_year/locale/pt-BR-doc.json create mode 100644 accounts/doctype/gl_control/locale/pt-BR-doc.json create mode 100644 accounts/doctype/gl_entry/locale/pt-BR-doc.json create mode 100644 accounts/doctype/gl_entry/locale/pt-BR-py.json create mode 100644 accounts/doctype/journal_voucher/locale/pt-BR-doc.json create mode 100644 accounts/doctype/journal_voucher_detail/locale/pt-BR-doc.json create mode 100644 accounts/doctype/mis_control/locale/pt-BR-doc.json create mode 100644 accounts/doctype/mode_of_payment/locale/pt-BR-doc.json create mode 100644 accounts/doctype/multi_ledger_report_detail/locale/pt-BR-doc.json create mode 100644 accounts/doctype/payment_to_invoice_matching_tool/locale/pt-BR-doc.json create mode 100644 accounts/doctype/payment_to_invoice_matching_tool_detail/locale/pt-BR-doc.json create mode 100644 accounts/doctype/period_closing_voucher/locale/pt-BR-doc.json create mode 100644 accounts/doctype/pos_setting/locale/pt-BR-doc.json create mode 100644 accounts/doctype/purchase_invoice/locale/pt-BR-doc.json create mode 100644 accounts/doctype/purchase_invoice/locale/pt-BR-py.json create mode 100644 accounts/doctype/purchase_invoice_advance/locale/pt-BR-doc.json create mode 100644 accounts/doctype/purchase_invoice_item/locale/pt-BR-doc.json create mode 100644 accounts/doctype/purchase_taxes_and_charges/locale/pt-BR-doc.json create mode 100644 accounts/doctype/purchase_taxes_and_charges_master/locale/pt-BR-doc.json create mode 100644 accounts/doctype/sales_invoice/locale/pt-BR-doc.json create mode 100644 accounts/doctype/sales_invoice/locale/pt-BR-py.json create mode 100644 accounts/doctype/sales_invoice_advance/locale/pt-BR-doc.json create mode 100644 accounts/doctype/sales_invoice_item/locale/pt-BR-doc.json create mode 100644 accounts/doctype/sales_taxes_and_charges/locale/pt-BR-doc.json create mode 100644 accounts/doctype/sales_taxes_and_charges_master/locale/pt-BR-doc.json create mode 100644 accounts/doctype/trend_analyzer_control/locale/pt-BR-doc.json create mode 100644 accounts/locale/pt-BR-py.json create mode 100644 accounts/module_def/accounts/locale/pt-BR-doc.json create mode 100644 accounts/page/accounts_home/locale/pt-BR-js.json create mode 100644 buying/doctype/purchase_common/locale/pt-BR-doc.json create mode 100644 buying/doctype/purchase_order/locale/pt-BR-doc.json create mode 100644 buying/doctype/purchase_order_item/locale/pt-BR-doc.json create mode 100644 buying/doctype/purchase_order_item_supplied/locale/pt-BR-doc.json create mode 100644 buying/doctype/purchase_receipt_item_supplied/locale/pt-BR-doc.json create mode 100644 buying/doctype/purchase_request/locale/pt-BR-doc.json create mode 100644 buying/doctype/purchase_request_item/locale/pt-BR-doc.json create mode 100644 buying/doctype/quality_inspection/locale/pt-BR-doc.json create mode 100644 buying/doctype/quality_inspection_reading/locale/pt-BR-doc.json create mode 100644 buying/doctype/supplier/locale/pt-BR-doc.json create mode 100644 buying/doctype/supplier/locale/pt-BR-py.json create mode 100644 buying/doctype/supplier_quotation/locale/pt-BR-doc.json create mode 100644 buying/doctype/supplier_quotation_item/locale/pt-BR-doc.json create mode 100644 buying/module_def/buying/locale/pt-BR-doc.json create mode 100644 buying/page/buying_home/locale/pt-BR-js.json create mode 100644 controllers/locale/pt-BR-py.json create mode 100644 home/doctype/company_control/locale/pt-BR-doc.json create mode 100644 home/doctype/feed/locale/pt-BR-doc.json create mode 100644 home/doctype/home_control/locale/pt-BR-doc.json create mode 100644 home/module_def/home/locale/pt-BR-doc.json create mode 100644 hr/doctype/appraisal/locale/pt-BR-doc.json create mode 100644 hr/doctype/appraisal_goal/locale/pt-BR-doc.json create mode 100644 hr/doctype/appraisal_template/locale/pt-BR-doc.json create mode 100644 hr/doctype/appraisal_template/locale/pt-BR-py.json create mode 100644 hr/doctype/appraisal_template_goal/locale/pt-BR-doc.json create mode 100644 hr/doctype/attendance/locale/pt-BR-doc.json create mode 100644 hr/doctype/attendance_control_panel/locale/pt-BR-doc.json create mode 100644 hr/doctype/branch/locale/pt-BR-doc.json create mode 100644 hr/doctype/deduction_type/locale/pt-BR-doc.json create mode 100644 hr/doctype/department/locale/pt-BR-doc.json create mode 100644 hr/doctype/designation/locale/pt-BR-doc.json create mode 100644 hr/doctype/earning_type/locale/pt-BR-doc.json create mode 100644 hr/doctype/employee/locale/pt-BR-doc.json create mode 100644 hr/doctype/employee_education/locale/pt-BR-doc.json create mode 100644 hr/doctype/employee_external_work_history/locale/pt-BR-doc.json create mode 100644 hr/doctype/employee_internal_work_history/locale/pt-BR-doc.json create mode 100644 hr/doctype/employee_training/locale/pt-BR-doc.json create mode 100644 hr/doctype/employment_type/locale/pt-BR-doc.json create mode 100644 hr/doctype/expense_claim/locale/pt-BR-doc.json create mode 100644 hr/doctype/expense_claim_detail/locale/pt-BR-doc.json create mode 100644 hr/doctype/expense_claim_type/locale/pt-BR-doc.json create mode 100644 hr/doctype/grade/locale/pt-BR-doc.json create mode 100644 hr/doctype/holiday/locale/pt-BR-doc.json create mode 100644 hr/doctype/holiday_block_list/locale/pt-BR-doc.json create mode 100644 hr/doctype/holiday_block_list_allow/locale/pt-BR-doc.json create mode 100644 hr/doctype/holiday_block_list_date/locale/pt-BR-doc.json create mode 100644 hr/doctype/holiday_list/locale/pt-BR-doc.json create mode 100644 hr/doctype/job_applicant/locale/pt-BR-doc.json create mode 100644 hr/doctype/job_opening/locale/pt-BR-doc.json create mode 100644 hr/doctype/leave_allocation/locale/pt-BR-doc.json create mode 100644 hr/doctype/leave_application/locale/pt-BR-doc.json create mode 100644 hr/doctype/leave_application/locale/pt-BR-py.json create mode 100644 hr/doctype/leave_block_list/locale/pt-BR-doc.json create mode 100644 hr/doctype/leave_block_list/locale/pt-BR-py.json create mode 100644 hr/doctype/leave_block_list_allow/locale/pt-BR-doc.json create mode 100644 hr/doctype/leave_block_list_date/locale/pt-BR-doc.json create mode 100644 hr/doctype/leave_control_panel/locale/pt-BR-doc.json create mode 100644 hr/doctype/leave_type/locale/pt-BR-doc.json create mode 100644 hr/doctype/other_income_detail/locale/pt-BR-doc.json create mode 100644 hr/doctype/salary_manager/locale/pt-BR-doc.json create mode 100644 hr/doctype/salary_slip/locale/pt-BR-doc.json create mode 100644 hr/doctype/salary_slip_deduction/locale/pt-BR-doc.json create mode 100644 hr/doctype/salary_slip_earning/locale/pt-BR-doc.json create mode 100644 hr/doctype/salary_structure/locale/pt-BR-doc.json create mode 100644 hr/doctype/salary_structure_deduction/locale/pt-BR-doc.json create mode 100644 hr/doctype/salary_structure_earning/locale/pt-BR-doc.json create mode 100644 hr/module_def/hr/locale/pt-BR-doc.json create mode 100644 hr/page/hr_home/locale/pt-BR-js.json create mode 100644 hr/report/employee_leave_balance/employee_leave_balance.js create mode 100644 manufacturing/doctype/bom/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/bom/locale/pt-BR-py.json create mode 100644 manufacturing/doctype/bom_explosion_item/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/bom_item/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/bom_operation/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/bom_replace_tool/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/bom_replace_tool/locale/pt-BR-py.json create mode 100644 manufacturing/doctype/production_order/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/production_plan_item/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/production_plan_sales_order/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/production_planning_tool/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/update_delivery_date/locale/pt-BR-doc.json create mode 100644 manufacturing/doctype/workstation/locale/pt-BR-doc.json create mode 100644 manufacturing/module_def/manufacturing/locale/pt-BR-doc.json create mode 100644 manufacturing/page/manufacturing_home/locale/pt-BR-js.json create mode 100644 production/doctype/bom_replace_tool/locale/pt-BR-doc.json create mode 100644 projects/doctype/activity_type/locale/pt-BR-doc.json create mode 100644 projects/doctype/project/locale/pt-BR-doc.json create mode 100644 projects/doctype/project_activity/locale/pt-BR-doc.json create mode 100644 projects/doctype/project_activity_update/locale/pt-BR-doc.json create mode 100644 projects/doctype/project_control/locale/pt-BR-doc.json create mode 100644 projects/doctype/project_milestone/locale/pt-BR-doc.json create mode 100644 projects/doctype/task/locale/pt-BR-doc.json create mode 100644 projects/doctype/timesheet/locale/pt-BR-doc.json create mode 100644 projects/doctype/timesheet_detail/locale/pt-BR-doc.json create mode 100644 projects/module_def/projects/locale/pt-BR-doc.json create mode 100644 projects/page/projects_home/locale/pt-BR-js.json create mode 100644 public/js/locale/pt-BR-js.json create mode 100644 selling/doctype/campaign/locale/pt-BR-doc.json create mode 100644 selling/doctype/communication_log/locale/pt-BR-doc.json create mode 100644 selling/doctype/customer/locale/pt-BR-doc.json create mode 100644 selling/doctype/customer/locale/pt-BR-py.json create mode 100644 selling/doctype/industry_type/locale/pt-BR-doc.json create mode 100644 selling/doctype/installation_note/locale/pt-BR-doc.json create mode 100644 selling/doctype/installation_note_item/locale/pt-BR-doc.json create mode 100644 selling/doctype/lead/locale/pt-BR-doc.json create mode 100644 selling/doctype/lead/locale/pt-BR-py.json create mode 100644 selling/doctype/opportunity/locale/pt-BR-doc.json create mode 100644 selling/doctype/opportunity_item/locale/pt-BR-doc.json create mode 100644 selling/doctype/quotation/locale/pt-BR-doc.json create mode 100644 selling/doctype/quotation_item/locale/pt-BR-doc.json create mode 100644 selling/doctype/sales_and_purchase_return_item/locale/pt-BR-doc.json create mode 100644 selling/doctype/sales_common/locale/pt-BR-doc.json create mode 100644 selling/doctype/sales_common/locale/pt-BR-py.json create mode 100644 selling/doctype/sales_order/locale/pt-BR-doc.json create mode 100644 selling/doctype/sales_order_item/locale/pt-BR-doc.json create mode 100644 selling/doctype/sales_team/locale/pt-BR-doc.json create mode 100644 selling/doctype/shipping_address/locale/pt-BR-doc.json create mode 100644 selling/doctype/sms_center/locale/pt-BR-doc.json create mode 100644 selling/module_def/selling/locale/pt-BR-doc.json create mode 100644 selling/page/selling_home/locale/pt-BR-js.json create mode 100644 setup/doctype/authorization_control/locale/pt-BR-doc.json create mode 100644 setup/doctype/authorization_rule/locale/pt-BR-doc.json create mode 100644 setup/doctype/brand/locale/pt-BR-doc.json create mode 100644 setup/doctype/company/locale/pt-BR-doc.json create mode 100644 setup/doctype/contact_control/locale/pt-BR-doc.json create mode 100644 setup/doctype/country/locale/pt-BR-doc.json create mode 100644 setup/doctype/currency/locale/pt-BR-doc.json create mode 100644 setup/doctype/customer_group/locale/pt-BR-doc.json create mode 100644 setup/doctype/email_digest/locale/pt-BR-doc.json create mode 100644 setup/doctype/email_digest/locale/pt-BR-py.json create mode 100644 setup/doctype/email_settings/locale/pt-BR-doc.json create mode 100644 setup/doctype/features_setup/locale/pt-BR-doc.json create mode 100644 setup/doctype/global_defaults/locale/pt-BR-doc.json create mode 100644 setup/doctype/item_group/locale/pt-BR-doc.json create mode 100644 setup/doctype/jobs_email_settings/locale/pt-BR-doc.json create mode 100644 setup/doctype/jobs_email_settings/locale/pt-BR-js.json create mode 100644 setup/doctype/jobs_email_settings/locale/pt-BR-py.json create mode 100644 setup/doctype/market_segment/locale/pt-BR-doc.json create mode 100644 setup/doctype/naming_series/locale/pt-BR-doc.json create mode 100644 setup/doctype/naming_series_options/locale/pt-BR-doc.json create mode 100644 setup/doctype/notification_control/locale/pt-BR-doc.json create mode 100644 setup/doctype/permission_control/locale/pt-BR-doc.json create mode 100644 setup/doctype/price_list/locale/pt-BR-doc.json create mode 100644 setup/doctype/print_heading/locale/pt-BR-doc.json create mode 100644 setup/doctype/quotation_lost_reason/locale/pt-BR-doc.json create mode 100644 setup/doctype/sales_browser_control/locale/pt-BR-doc.json create mode 100644 setup/doctype/sales_email_settings/locale/pt-BR-doc.json create mode 100644 setup/doctype/sales_email_settings/locale/pt-BR-js.json create mode 100644 setup/doctype/sales_email_settings/locale/pt-BR-py.json create mode 100644 setup/doctype/sales_partner/locale/pt-BR-doc.json create mode 100644 setup/doctype/sales_person/locale/pt-BR-doc.json create mode 100644 setup/doctype/series_detail/locale/pt-BR-doc.json create mode 100644 setup/doctype/setup_control/locale/pt-BR-doc.json create mode 100644 setup/doctype/sms_parameter/locale/pt-BR-doc.json create mode 100644 setup/doctype/sms_settings/locale/pt-BR-doc.json create mode 100644 setup/doctype/state/locale/pt-BR-doc.json create mode 100644 setup/doctype/supplier_type/locale/pt-BR-doc.json create mode 100644 setup/doctype/target_detail/locale/pt-BR-doc.json create mode 100644 setup/doctype/terms_and_conditions/locale/pt-BR-doc.json create mode 100644 setup/doctype/territory/locale/pt-BR-doc.json create mode 100644 setup/doctype/uom/locale/pt-BR-doc.json create mode 100644 setup/doctype/warehouse_type/locale/pt-BR-doc.json create mode 100644 setup/doctype/workflow_action_detail/locale/pt-BR-doc.json create mode 100644 setup/doctype/workflow_engine/locale/pt-BR-doc.json create mode 100644 setup/doctype/workflow_rule/locale/pt-BR-doc.json create mode 100644 setup/doctype/workflow_rule_detail/locale/pt-BR-doc.json create mode 100644 setup/module_def/setup/locale/pt-BR-doc.json create mode 100644 setup/page/setup/locale/pt-BR-js.json create mode 100644 stock/doctype/batch/locale/pt-BR-doc.json create mode 100644 stock/doctype/bin/locale/pt-BR-doc.json create mode 100644 stock/doctype/bin/locale/pt-BR-py.json create mode 100644 stock/doctype/delivery_note/locale/pt-BR-doc.json create mode 100644 stock/doctype/delivery_note_item/locale/pt-BR-doc.json create mode 100644 stock/doctype/delivery_note_packing_item/locale/pt-BR-doc.json create mode 100644 stock/doctype/featured_item/locale/pt-BR-doc.json create mode 100644 stock/doctype/item/locale/pt-BR-doc.json create mode 100644 stock/doctype/item_customer_detail/locale/pt-BR-doc.json create mode 100644 stock/doctype/item_price/locale/pt-BR-doc.json create mode 100644 stock/doctype/item_quality_inspection_parameter/locale/pt-BR-doc.json create mode 100644 stock/doctype/item_reorder/locale/pt-BR-doc.json create mode 100644 stock/doctype/item_supplier/locale/pt-BR-doc.json create mode 100644 stock/doctype/item_tax/locale/pt-BR-doc.json create mode 100644 stock/doctype/item_website_specification/locale/pt-BR-doc.json create mode 100644 stock/doctype/landed_cost_item/locale/pt-BR-doc.json create mode 100644 stock/doctype/landed_cost_purchase_receipt/locale/pt-BR-doc.json create mode 100644 stock/doctype/landed_cost_wizard/locale/pt-BR-doc.json create mode 100644 stock/doctype/material_request/locale/_messages_js.json create mode 100644 stock/doctype/material_request/locale/_messages_py.json create mode 100644 stock/doctype/material_request/locale/pt-BR-doc.json create mode 100644 stock/doctype/material_request/locale/pt-BR-py.json create mode 100644 stock/doctype/material_request_item/locale/pt-BR-doc.json create mode 100644 stock/doctype/packing_slip/locale/pt-BR-doc.json create mode 100644 stock/doctype/packing_slip_item/locale/pt-BR-doc.json create mode 100644 stock/doctype/purchase_receipt/locale/pt-BR-doc.json create mode 100644 stock/doctype/purchase_receipt_item/locale/pt-BR-doc.json create mode 100644 stock/doctype/sales_and_purchase_return_tool/locale/pt-BR-doc.json create mode 100644 stock/doctype/sales_bom/locale/pt-BR-doc.json create mode 100644 stock/doctype/sales_bom_item/locale/pt-BR-doc.json create mode 100644 stock/doctype/serial_no/locale/pt-BR-doc.json create mode 100644 stock/doctype/stock_entry/locale/pt-BR-doc.json create mode 100644 stock/doctype/stock_entry/locale/pt-BR-py.json create mode 100644 stock/doctype/stock_entry_detail/locale/pt-BR-doc.json create mode 100644 stock/doctype/stock_ledger/locale/pt-BR-doc.json create mode 100644 stock/doctype/stock_ledger_entry/locale/pt-BR-doc.json create mode 100644 stock/doctype/stock_ledger_entry/locale/pt-BR-py.json create mode 100644 stock/doctype/stock_reconciliation/locale/pt-BR-doc.json create mode 100644 stock/doctype/stock_reconciliation/locale/pt-BR-py.json create mode 100644 stock/doctype/stock_uom_replace_utility/locale/pt-BR-doc.json create mode 100644 stock/doctype/uom_conversion_detail/locale/pt-BR-doc.json create mode 100644 stock/doctype/valuation_control/locale/pt-BR-doc.json create mode 100644 stock/doctype/warehouse/locale/pt-BR-doc.json create mode 100644 stock/doctype/warehouse_user/locale/pt-BR-doc.json create mode 100644 stock/locale/pt-BR-py.json create mode 100644 stock/module_def/stock/locale/pt-BR-doc.json create mode 100644 stock/page/stock_home/locale/pt-BR-js.json create mode 100644 support/doctype/customer_issue/locale/pt-BR-doc.json create mode 100644 support/doctype/maintenance_schedule/locale/pt-BR-doc.json create mode 100644 support/doctype/maintenance_schedule_detail/locale/pt-BR-doc.json create mode 100644 support/doctype/maintenance_schedule_item/locale/pt-BR-doc.json create mode 100644 support/doctype/maintenance_visit/locale/pt-BR-doc.json create mode 100644 support/doctype/maintenance_visit_purpose/locale/pt-BR-doc.json create mode 100644 support/doctype/newsletter/locale/pt-BR-doc.json create mode 100644 support/doctype/newsletter/locale/pt-BR-py.json create mode 100644 support/doctype/support_ticket/locale/pt-BR-doc.json create mode 100644 support/module_def/support/locale/pt-BR-doc.json create mode 100644 support/page/support_home/locale/pt-BR-js.json create mode 100644 translations/pt-BR.csv create mode 100644 utilities/doctype/address/locale/pt-BR-doc.json create mode 100644 utilities/doctype/answer/locale/pt-BR-doc.json create mode 100644 utilities/doctype/contact/locale/pt-BR-doc.json create mode 100644 utilities/doctype/gl_mapper/locale/pt-BR-doc.json create mode 100644 utilities/doctype/gl_mapper_detail/locale/pt-BR-doc.json create mode 100644 utilities/doctype/profile_control/locale/pt-BR-doc.json create mode 100644 utilities/doctype/question/locale/pt-BR-doc.json create mode 100644 utilities/doctype/rename_tool/locale/pt-BR-doc.json create mode 100644 utilities/doctype/sms_control/locale/pt-BR-doc.json create mode 100644 utilities/doctype/sms_log/locale/pt-BR-doc.json create mode 100644 utilities/doctype/sms_receiver/locale/pt-BR-doc.json create mode 100644 utilities/doctype/trash_control/locale/pt-BR-doc.json create mode 100644 utilities/locale/pt-BR-py.json create mode 100644 utilities/module_def/utilities/locale/pt-BR-doc.json create mode 100644 website/doctype/about_us_settings/locale/pt-BR-doc.json create mode 100644 website/doctype/about_us_team_member/locale/pt-BR-doc.json create mode 100644 website/doctype/blog/locale/pt-BR-doc.json create mode 100644 website/doctype/blog_subscriber/locale/pt-BR-doc.json create mode 100644 website/doctype/company_history/locale/pt-BR-doc.json create mode 100644 website/doctype/contact_us_settings/locale/pt-BR-doc.json create mode 100644 website/doctype/cross_list_item_group/locale/pt-BR-doc.json create mode 100644 website/doctype/product_group/locale/pt-BR-doc.json create mode 100644 website/doctype/product_settings/locale/pt-BR-doc.json create mode 100644 website/doctype/products_settings/locale/pt-BR-doc.json create mode 100644 website/doctype/related_page/locale/pt-BR-doc.json create mode 100644 website/doctype/style_settings/locale/pt-BR-doc.json create mode 100644 website/doctype/top_bar_item/locale/pt-BR-doc.json create mode 100644 website/doctype/web_page/locale/pt-BR-doc.json create mode 100644 website/doctype/website_item_group/locale/pt-BR-doc.json create mode 100644 website/doctype/website_product_category/locale/pt-BR-doc.json create mode 100644 website/doctype/website_script/locale/pt-BR-doc.json create mode 100644 website/doctype/website_settings/locale/pt-BR-doc.json create mode 100644 website/doctype/website_slideshow/locale/pt-BR-doc.json create mode 100644 website/doctype/website_slideshow_item/locale/pt-BR-doc.json create mode 100644 website/module_def/website/locale/pt-BR-doc.json create mode 100644 website/page/website_home/locale/pt-BR-js.json diff --git a/accounts/doctype/account/locale/pt-BR-doc.json b/accounts/doctype/account/locale/pt-BR-doc.json new file mode 100644 index 0000000000..45afab3c8d --- /dev/null +++ b/accounts/doctype/account/locale/pt-BR-doc.json @@ -0,0 +1,41 @@ +{ + "Account": "Conta", + "Account Details": "Detalhes da Conta", + "Account Name": "Nome da Conta", + "Account Type": "Tipo de Conta", + "Accounts": "Contas", + "Allow Negative Balance": "Permitir saldo negativo", + "Bank or Cash": "Banco ou Dinheiro", + "Chargeable": "Tax\u00e1vel", + "Company": "Empresa", + "Credit Days": "Dias de Cr\u00e9dito", + "Credit Limit": "Limite de Cr\u00e9dito", + "Customer": "Cliente", + "Debit or Credit": "D\u00e9bito ou cr\u00e9dito", + "Employee": "Funcion\u00e1rio", + "Expense Account": "Conta de Despesas", + "Fixed Asset Account": "Conta de ativo fixo", + "Frozen": "Congelado", + "Group": "Grupo", + "Group or Ledger": "Grupo ou Raz\u00e3o", + "Heads (or groups) against which Accounting Entries are made and balances are maintained.": "Contas (ou grupos) contra a qual os lan\u00e7amentos de contabilidade s\u00e3o feitos e os saldos s\u00e3o mantidos.", + "If the account is frozen, entries are allowed for the \"Account Manager\" only.": "Se a conta estiver congelada, os lan\u00e7amentos s\u00e3o permitidos apenas para o "Gerente da Conta".", + "If this Account represents a Customer, Supplier or Employee, set it here.": "Se essa conta representa um cliente, fornecedor ou funcion\u00e1rio, estabele\u00e7a aqui.", + "Income Account": "Conta de Renda", + "Is PL Account": "\u00c9 Conta PL", + "Ledger": "Raz\u00e3o", + "Level": "N\u00edvel", + "Lft": "Esq.", + "Master Name": "Nome do Cadastro", + "Master Type": "Tipo de Cadastro", + "No": "N\u00e3o", + "Old Parent": "Pai Velho", + "Parent Account": "Conta pai", + "Rate": "Taxa", + "Rate at which this tax is applied": "Taxa em que este imposto \u00e9 aplicado", + "Rgt": "Dir.", + "Setting Account Type helps in selecting this Account in transactions.": "Definir o Tipo de Conta ajuda na sele\u00e7\u00e3o desta Conta nas transa\u00e7\u00f5es.", + "Supplier": "Fornecedor", + "Tax": "Imposto", + "Yes": "Sim" +} \ No newline at end of file diff --git a/accounts/doctype/bank_reconciliation/locale/pt-BR-doc.json b/accounts/doctype/bank_reconciliation/locale/pt-BR-doc.json new file mode 100644 index 0000000000..0e8e04bb64 --- /dev/null +++ b/accounts/doctype/bank_reconciliation/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Accounts": "Contas", + "Bank Account": "Conta Banc\u00e1ria", + "Bank Reconciliation": "Reconcilia\u00e7\u00e3o Banc\u00e1ria", + "Company": "Empresa", + "Entries": "Lan\u00e7amentos", + "From Date": "A partir da data", + "Get Non Reconciled Entries": "Obter lan\u00e7amentos n\u00e3o Reconciliados", + "Select account head of the bank where cheque was deposited.": "Selecione a Conta do banco onde o cheque foi depositado.", + "To Date": "At\u00e9 a Data", + "Total Amount": "Valor Total", + "Update Clearance Date": "Atualizar Data Liquida\u00e7\u00e3o" +} \ No newline at end of file diff --git a/accounts/doctype/bank_reconciliation_detail/locale/pt-BR-doc.json b/accounts/doctype/bank_reconciliation_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..6f27ad6310 --- /dev/null +++ b/accounts/doctype/bank_reconciliation_detail/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Accounts": "Contas", + "Against Account": "Contra Conta", + "Bank Reconciliation Detail": "Detalhe da Reconcilia\u00e7\u00e3o Banc\u00e1ria", + "Cheque Date": "Data do Cheque", + "Cheque Number": "N\u00famero do cheque", + "Clearance Date": "Data de Libera\u00e7\u00e3o", + "Credit": "Cr\u00e9dito", + "Debit": "D\u00e9bito", + "Posting Date": "Data da Postagem", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "Voucher ID": "ID do Comprovante" +} \ No newline at end of file diff --git a/accounts/doctype/budget_control/locale/pt-BR-doc.json b/accounts/doctype/budget_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..fc0096ef58 --- /dev/null +++ b/accounts/doctype/budget_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "Contas", + "Budget Control": "Controle de Or\u00e7amento" +} \ No newline at end of file diff --git a/accounts/doctype/budget_detail/locale/pt-BR-doc.json b/accounts/doctype/budget_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..8080475af9 --- /dev/null +++ b/accounts/doctype/budget_detail/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Account": "Conta", + "Accounts": "Contas", + "Actual": "Real", + "Budget Allocated": "Or\u00e7amento Alocado", + "Budget Detail": "Detalhe do Or\u00e7amento", + "Fiscal Year": "Exerc\u00edcio fiscal" +} \ No newline at end of file diff --git a/accounts/doctype/budget_distribution/locale/pt-BR-doc.json b/accounts/doctype/budget_distribution/locale/pt-BR-doc.json new file mode 100644 index 0000000000..68625a292d --- /dev/null +++ b/accounts/doctype/budget_distribution/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "Contas", + "Budget Distribution": "Distribui\u00e7\u00e3o de Or\u00e7amento", + "Budget Distribution Details": "Detalhes da Distribui\u00e7\u00e3o de Or\u00e7amento", + "Distribution Name": "Nome da distribui\u00e7\u00e3o", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Name of the Budget Distribution": "Nome da Distribui\u00e7\u00e3o de Or\u00e7amento", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/accounts/doctype/budget_distribution_detail/locale/pt-BR-doc.json b/accounts/doctype/budget_distribution_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..bdb9cc7cb6 --- /dev/null +++ b/accounts/doctype/budget_distribution_detail/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Accounts": "Contas", + "Budget Distribution Detail": "Detalhe da Distribui\u00e7\u00e3o de Or\u00e7amento", + "Month": "M\u00eas", + "Percentage Allocation": "Aloca\u00e7\u00e3o percentual" +} \ No newline at end of file diff --git a/accounts/doctype/c_form/locale/pt-BR-doc.json b/accounts/doctype/c_form/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2729f7f17d --- /dev/null +++ b/accounts/doctype/c_form/locale/pt-BR-doc.json @@ -0,0 +1,22 @@ +{ + "Accounts": "Contas", + "Amended From": "Corrigido De", + "C-FORM/": "FORMUL\u00c1RIO-C /", + "C-Form": "Formul\u00e1rio-C", + "C-Form No": "N\u00ba do Formul\u00e1rio-C", + "Company": "Empresa", + "Customer": "Cliente", + "File List": "Lista de Arquivos", + "Fiscal Year": "Exerc\u00edcio fiscal", + "I": "Eu", + "II": "II", + "III": "III", + "IV": "IV", + "Invoice Details": "Detalhes da nota fiscal", + "Quarter": "Trimestre", + "Received Date": "Data de recebimento", + "Series": "S\u00e9ries", + "State": "Estado", + "Total Amount": "Valor Total", + "Total Invoiced Amount": "Valor Total Faturado" +} \ No newline at end of file diff --git a/accounts/doctype/c_form_invoice_detail/locale/pt-BR-doc.json b/accounts/doctype/c_form_invoice_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4e3d396339 --- /dev/null +++ b/accounts/doctype/c_form_invoice_detail/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "Contas", + "C-Form Invoice Detail": "Detalhe Fatura do Formul\u00e1rio-C", + "Grand Total": "Total Geral", + "Invoice Date": "Data da nota fiscal", + "Invoice No": "Nota Fiscal n\u00ba", + "Net Total": "Total L\u00edquido", + "Territory": "Territ\u00f3rio" +} \ No newline at end of file diff --git a/accounts/doctype/cost_center/locale/pt-BR-doc.json b/accounts/doctype/cost_center/locale/pt-BR-doc.json new file mode 100644 index 0000000000..376103f51e --- /dev/null +++ b/accounts/doctype/cost_center/locale/pt-BR-doc.json @@ -0,0 +1,22 @@ +{ + "Accounts": "Contas", + "Add rows to set annual budgets on Accounts.": "Adicionar linhas para definir or\u00e7amentos anuais nas Contas.", + "Budget": "Or\u00e7amento", + "Budget Details": "Detalhes do Or\u00e7amento", + "Company": "Empresa", + "Cost Center": "Centro de Custos", + "Cost Center Details": "Detalhes do Centro de Custo", + "Cost Center Name": "Nome do Centro de Custo", + "Define Budget for this Cost Center. To set budget action, see Company Master": "Definir Or\u00e7amento para este Centro de Custo. Para definir a\u00e7\u00e3o do or\u00e7amento, consulte Cadastro de Empresa", + "Distribution Id": "Id da distribui\u00e7\u00e3o", + "Group": "Grupo", + "Group or Ledger": "Grupo ou Raz\u00e3o", + "Ledger": "Raz\u00e3o", + "Parent Cost Center": "Centro de Custo pai", + "Select Budget Distribution, if you want to track based on seasonality.": "Selecione distribui\u00e7\u00e3o do or\u00e7amento, se voc\u00ea quiser acompanhar baseado em sazonalidade.", + "Track separate Income and Expense for product verticals or divisions.": "Acompanhar Receitas e Gastos separados para produtos verticais ou divis\u00f5es.", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "lft": "esq.", + "old_parent": "old_parent", + "rgt": "dir." +} \ No newline at end of file diff --git a/accounts/doctype/fiscal_year/locale/pt-BR-doc.json b/accounts/doctype/fiscal_year/locale/pt-BR-doc.json new file mode 100644 index 0000000000..dac9ef3e99 --- /dev/null +++ b/accounts/doctype/fiscal_year/locale/pt-BR-doc.json @@ -0,0 +1,14 @@ +{ + "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.": "**Ano Fiscal** representa um Exerc\u00edcio. Todos os lan\u00e7amentos cont\u00e1beis e outras transa\u00e7\u00f5es importantes s\u00e3o monitorados contra o **Ano Fiscal**.", + "Accounts": "Contas", + "Entries are not allowed against this Fiscal Year if the year is closed.": "Lan\u00e7amentos n\u00e3o s\u00e3o permitidos contra este Ano Fiscal se o ano est\u00e1 fechado.", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Fiscal Year Details": "Detalhes do Exerc\u00edcio Fiscal", + "For e.g. 2012, 2012-13": "Para por exemplo 2012, 2012-13", + "No": "N\u00e3o", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Year Closed": "Ano Encerrado", + "Year Name": "Nome do Ano", + "Year Start Date": "Data de in\u00edcio do ano", + "Yes": "Sim" +} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/pt-BR-doc.json b/accounts/doctype/gl_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..bac28e175c --- /dev/null +++ b/accounts/doctype/gl_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "Contas", + "GL Control": "GL Controle" +} \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/pt-BR-doc.json b/accounts/doctype/gl_entry/locale/pt-BR-doc.json new file mode 100644 index 0000000000..dc2ccdaf92 --- /dev/null +++ b/accounts/doctype/gl_entry/locale/pt-BR-doc.json @@ -0,0 +1,29 @@ +{ + "Account": "Conta", + "Accounts": "Contas", + "Against": "Contra", + "Against Voucher": "Contra Comprovante", + "Against Voucher Type": "Contra Tipo de Comprovante", + "Aging Date": "Data de Envelhecimento", + "Company": "Empresa", + "Cost Center": "Centro de Custos", + "Credit Amt": "Montante de Cr\u00e9dito", + "Debit Amt": "Montante de D\u00e9bito", + "Fiscal Year": "Exerc\u00edcio fiscal", + "GL Entry": "Lan\u00e7amento GL", + "Is Advance": "\u00c9 antecipado", + "Is Cancelled": "\u00c9 cancelado", + "Is Opening": "\u00c9 abertura", + "Journal Voucher": "Comprovante do livro Di\u00e1rio", + "No": "N\u00e3o", + "Posting Date": "Data da Postagem", + "Purchase Invoice": "Nota Fiscal de Compra", + "Remarks": "Observa\u00e7\u00f5es", + "Sales Invoice": "Nota Fiscal de Venda", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "Transaction Date": "Data da Transa\u00e7\u00e3o", + "Voucher No": "N\u00ba do comprovante", + "Voucher Type": "Tipo de comprovante", + "Yes": "Sim" +} \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/pt-BR-py.json b/accounts/doctype/gl_entry/locale/pt-BR-py.json new file mode 100644 index 0000000000..34b9144cdd --- /dev/null +++ b/accounts/doctype/gl_entry/locale/pt-BR-py.json @@ -0,0 +1,14 @@ +{ + " does not belong to the company: ": "n\u00e3o pertence \u00e0 empresa:", + " is mandatory for GL Entry": "\u00e9 obrigat\u00f3ria para a entrada GL", + " is not a ledger": "n\u00e3o \u00e9 um livro", + " is not active": "n\u00e3o est\u00e1 ativo", + " will become ": "ficar\u00e1", + "Account: ": "Conta:", + "Cost Center must be specified for PL Account: ": "Centro de custos deve ser especificado para Conta PL:", + "For opening balance entry account can not be a PL account": "Para a abertura de conta de entrada saldo n\u00e3o pode ser uma conta de PL", + "GL Entry: Debit or Credit amount is mandatory for ": "GL Entrada: montante de cr\u00e9dito ou d\u00e9bito \u00e9 obrigat\u00f3ria para", + "Negative balance is not allowed for account ": "Saldo negativo n\u00e3o \u00e9 permitido por conta", + "Outstanding for Voucher ": "Destaque para Vale", + "You are not authorized to do/modify back dated entries before ": "Voc\u00ea n\u00e3o est\u00e1 autorizado a fazer / modificar volta entradas datadas antes" +} \ No newline at end of file diff --git a/accounts/doctype/journal_voucher/locale/pt-BR-doc.json b/accounts/doctype/journal_voucher/locale/pt-BR-doc.json new file mode 100644 index 0000000000..0f3cb19350 --- /dev/null +++ b/accounts/doctype/journal_voucher/locale/pt-BR-doc.json @@ -0,0 +1,57 @@ +{ + "Accounts": "Contas", + "Accounts Payable": "Contas a Pagar", + "Accounts Receivable": "Contas a Receber", + "Aging Date": "Data de Envelhecimento", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Bank Voucher": "Comprovante Banc\u00e1rio", + "Bill Date": "Data de Faturamento", + "Bill No": "Fatura N\u00ba", + "Cancel Reason": "Motivo do Cancelar", + "Cash Voucher": "Comprovante de Caixa", + "Clearance Date": "Data de Libera\u00e7\u00e3o", + "Company": "Empresa", + "Contra Voucher": "Comprovante de Caixa", + "Credit Card Voucher": "Comprovante do cart\u00e3o de cr\u00e9dito", + "Credit Note": "Nota de Cr\u00e9dito", + "Debit Note": "Nota de D\u00e9bito", + "Difference": "Diferen\u00e7a", + "Due Date": "Data de Vencimento", + "Entries": "Lan\u00e7amentos", + "Excise Voucher": "Comprovante do imposto", + "Fiscal Year": "Exerc\u00edcio fiscal", + "For opening invoice entry, this date will reflect in the period-wise aging report.": "Para a abertura do lan\u00e7amento da fatura, esta data vai refletir no relat\u00f3rio per\u00edodo s\u00e1bio envelhecimento.", + "Get Outstanding Invoices": "Obter faturas pendentes", + "Is Opening": "\u00c9 abertura", + "JV": "JV", + "Journal Entries": "Lan\u00e7amentos do livro Di\u00e1rio", + "Journal Entry": "Lan\u00e7amento do livro Di\u00e1rio", + "Journal Voucher": "Comprovante do livro Di\u00e1rio", + "Make Difference Entry": "Fazer Lan\u00e7amento da Diferen\u00e7a", + "More Info": "Mais informa\u00e7\u00f5es", + "No": "N\u00e3o", + "Pay To / Recd From": "Pagar Para/ Recebido De", + "Posting Date": "Data da Postagem", + "Reference": "Refer\u00eancia", + "Reference Date": "Data de Refer\u00eancia", + "Reference Number": "N\u00famero de Refer\u00eancia", + "Remark": "Observa\u00e7\u00e3o", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Series": "S\u00e9ries", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Total Amount": "Valor Total", + "Total Amount in Words": "Valor Total por extenso", + "Total Credit": "Cr\u00e9dito Total", + "Total Debit": "D\u00e9bito Total", + "User Remark": "Observa\u00e7\u00e3o do Usu\u00e1rio", + "User Remark will be added to Auto Remark": "Observa\u00e7\u00e3o do usu\u00e1rio ser\u00e1 adicionado \u00e0 observa\u00e7\u00e3o autom\u00e1tica", + "Voucher Type": "Tipo de comprovante", + "Write Off Amount <=": "Eliminar Valor <=", + "Write Off Based On": "Eliminar Baseado em", + "Write Off Voucher": "Eliminar comprovante", + "Yes": "Sim", + "eg. Cheque Number": "por exemplo, N\u00famero do cheque" +} \ No newline at end of file diff --git a/accounts/doctype/journal_voucher_detail/locale/pt-BR-doc.json b/accounts/doctype/journal_voucher_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3f02a3e708 --- /dev/null +++ b/accounts/doctype/journal_voucher_detail/locale/pt-BR-doc.json @@ -0,0 +1,16 @@ +{ + "Account": "Conta", + "Account Balance": "Saldo em Conta", + "Accounts": "Contas", + "Against Account": "Contra Conta", + "Against Journal Voucher": "Contra Comprovante do livro Di\u00e1rio", + "Against Purchase Invoice": "Contra a Nota Fiscal de Compra", + "Against Sales Invoice": "Contra a Nota Fiscal de Venda", + "Cost Center": "Centro de Custos", + "Credit": "Cr\u00e9dito", + "Debit": "D\u00e9bito", + "Is Advance": "\u00c9 antecipado", + "Journal Voucher Detail": "Detalhe do Comprovante do livro Di\u00e1rio", + "No": "N\u00e3o", + "Yes": "Sim" +} \ No newline at end of file diff --git a/accounts/doctype/mis_control/locale/pt-BR-doc.json b/accounts/doctype/mis_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..02ff2288bc --- /dev/null +++ b/accounts/doctype/mis_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "Contas", + "MIS Control": "Controle MIS" +} \ No newline at end of file diff --git a/accounts/doctype/mode_of_payment/locale/pt-BR-doc.json b/accounts/doctype/mode_of_payment/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4156a8522b --- /dev/null +++ b/accounts/doctype/mode_of_payment/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Accounts": "Contas", + "Company": "Empresa", + "Default Account": "Conta Padr\u00e3o", + "Default Bank / Cash account will be automatically updated in POS Invoice when this mode is selected.": "Conta do Banco/Caixa padr\u00e3o ser\u00e1 atualizada automaticamente na nota fiscal do PDV quando este modo for selecionado.", + "Mode of Payment": "Forma de Pagamento" +} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/pt-BR-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3ddf7bae0b --- /dev/null +++ b/accounts/doctype/multi_ledger_report_detail/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Account": "Conta", + "Accounts": "Contas", + "Multi Ledger Report Detail": "Detalhe do Relat\u00f3rio de m\u00faltiplos Livros-Raz\u00e3o" +} \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool/locale/pt-BR-doc.json b/accounts/doctype/payment_to_invoice_matching_tool/locale/pt-BR-doc.json new file mode 100644 index 0000000000..bf89842f71 --- /dev/null +++ b/accounts/doctype/payment_to_invoice_matching_tool/locale/pt-BR-doc.json @@ -0,0 +1,25 @@ +{ + "Account": "Conta", + "Account Type": "Tipo de Conta", + "Accounts": "Contas", + "Allocate": "Alocar", + "Amount <=": "Quantidade <=", + "Amount >=": "Quantidade> =", + "Company": "Empresa", + "Filter By Amount": "Filtrar por Quantidade", + "Filter By Date": "Filtrar por data", + "From Date": "A partir da data", + "Help HTML": "Ajuda HTML", + "Journal Voucher": "Comprovante do livro Di\u00e1rio", + "Outstanding Amount": "Quantia em aberto", + "Payment Entries": "Lan\u00e7amentos de pagamento", + "Payment to Invoice Matching Tool": "Ferramenta de Pagamento contra Fatura correspondente", + "Pull Payment Entries": "Puxar os lan\u00e7amentos de pagamento", + "Purchase Invoice": "Nota Fiscal de Compra", + "Sales Invoice": "Nota Fiscal de Venda", + "To Date": "At\u00e9 a Data", + "Total Amount": "Valor Total", + "Update allocated amount in the above table and then click \"Allocate\" button": "Atualize o montante atribu\u00eddo na tabela acima e clique no bot\u00e3o "Alocar"", + "Voucher No": "N\u00ba do comprovante", + "Voucher Type": "Tipo de comprovante" +} \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/pt-BR-doc.json b/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..69d6d8e281 --- /dev/null +++ b/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/pt-BR-doc.json @@ -0,0 +1,12 @@ +{ + "Accounts": "Contas", + "Against Account": "Contra Conta", + "Allocated Amount": "Montante alocado", + "Payment to Invoice Matching Tool Detail": "Detalhe da Ferramenta de Pagamento contra Fatura correspondente", + "Posting Date": "Data da Postagem", + "Remarks": "Observa\u00e7\u00f5es", + "Total Amount": "Valor Total", + "Unmatched Amount": "Quantidade incompar\u00e1vel", + "Voucher Detail No": "N\u00ba do Detalhe do comprovante", + "Voucher No": "N\u00ba do comprovante" +} \ No newline at end of file diff --git a/accounts/doctype/period_closing_voucher/locale/pt-BR-doc.json b/accounts/doctype/period_closing_voucher/locale/pt-BR-doc.json new file mode 100644 index 0000000000..aa0fd5afe2 --- /dev/null +++ b/accounts/doctype/period_closing_voucher/locale/pt-BR-doc.json @@ -0,0 +1,14 @@ +{ + "Accounts": "Contas", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Cancel Reason": "Motivo do Cancelar", + "Closing Account Head": "Conta de Fechamento", + "Closing Fiscal Year": "Encerramento do exerc\u00edcio fiscal", + "CoA Help": "Ajuda CoA", + "Company": "Empresa", + "Period Closing Voucher": "Comprovante de Encerramento per\u00edodo", + "Posting Date": "Data da Postagem", + "Remarks": "Observa\u00e7\u00f5es", + "Transaction Date": "Data da Transa\u00e7\u00e3o" +} \ No newline at end of file diff --git a/accounts/doctype/pos_setting/locale/pt-BR-doc.json b/accounts/doctype/pos_setting/locale/pt-BR-doc.json new file mode 100644 index 0000000000..509490c380 --- /dev/null +++ b/accounts/doctype/pos_setting/locale/pt-BR-doc.json @@ -0,0 +1,20 @@ +{ + "Accounts": "Contas", + "Cash/Bank Account": "Conta do Caixa/Banco", + "Charge": "Carga", + "Company": "Empresa", + "Conversion Rate": "Taxa de Convers\u00e3o", + "Cost Center": "Centro de Custos", + "Currency": "Moeda", + "Customer Account": "Conta de Cliente", + "Income Account": "Conta de Renda", + "Letter Head": "Timbrado", + "POS Setting": "Configura\u00e7\u00e3o de PDV", + "Price List": "Lista de Pre\u00e7os", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Series": "S\u00e9ries", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Territory": "Territ\u00f3rio", + "User": "Usu\u00e1rio", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/locale/pt-BR-doc.json b/accounts/doctype/purchase_invoice/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e64ef5d8cf --- /dev/null +++ b/accounts/doctype/purchase_invoice/locale/pt-BR-doc.json @@ -0,0 +1,84 @@ +{ + "Accounts": "Contas", + "Add / Edit Taxes and Charges": "Adicionar / Editar Impostos e Encargos", + "Address": "Endere\u00e7o", + "Advances": "Avan\u00e7os", + "Against Expense Account": "Contra a Conta de Despesas", + "Aging Date": "Data de Envelhecimento", + "Amended From": "Corrigido De", + "BILL": "BILL", + "BILLJ": "BILLJ", + "Bill Date": "Data de Faturamento", + "Bill No": "Fatura N\u00ba", + "Calculate Tax": "Calcular Imposto", + "Cancel Reason": "Motivo do Cancelar", + "Company": "Empresa", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "Considere esta Lista de Pre\u00e7os para a obten\u00e7\u00e3o do valor. (S\u00f3 onde "Para Comprar" estiver marcado)", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Credit To": "Cr\u00e9dito Para", + "Currency": "Moeda", + "Currency & Price List": "Moeda e Lista de Pre\u00e7os", + "Due Date": "Data de Vencimento", + "Entries": "Lan\u00e7amentos", + "Exchange Rate": "Taxa de C\u00e2mbio", + "File List": "Lista de Arquivos", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Advances Paid": "Obter adiantamentos pagos", + "Get Items": "Obter itens", + "Get Tax Detail": "Obtenha detalhes de Imposto", + "Grand Total": "Total Geral", + "Grand Total (Import)": "Total Geral (Importa\u00e7\u00e3o)", + "If not applicable please enter: NA": "Se n\u00e3o for aplic\u00e1vel digite: NA", + "In Words": "Por extenso", + "In Words (Import)": "Por extenso (Import)", + "In Words will be visible once you save the Purchase Invoice.": "Por extenso ser\u00e1 vis\u00edvel quando voc\u00ea salvar a Nota Fiscal de Compra.", + "Is Opening": "\u00c9 abertura", + "Items": "Itens", + "Mobile No": "Telefone Celular", + "Mode of Payment": "Forma de Pagamento", + "More Info": "Mais informa\u00e7\u00f5es", + "Name": "Nome", + "Net Total": "Total L\u00edquido", + "Net Total (Import)": "Total L\u00edquido (Importa\u00e7\u00e3o)", + "No": "N\u00e3o", + "Outstanding Amount": "Quantia em aberto", + "Posting Date": "Data da Postagem", + "Price List": "Lista de Pre\u00e7os", + "Price List Currency": "Moeda da Lista de Pre\u00e7os", + "Price List Exchange Rate": "Taxa de C\u00e2mbio da Lista de Pre\u00e7os", + "Purchase Invoice": "Nota Fiscal de Compra", + "Purchase Invoice Advances": "Antecipa\u00e7\u00f5es da Nota Fiscal de Compra", + "Purchase Order": "Ordem de Compra", + "Purchase Receipt": "Recibo de Compra", + "Purchase Taxes and Charges": "Impostos e Encargos sobre Compras", + "Recalculate": "Recalcular", + "Remarks": "Observa\u00e7\u00f5es", + "Select Items from Purchase Order": "Selecione os itens da Ordem de Compra", + "Select Items from Purchase Receipt": "Selecione os itens de Recibo de Compra", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Series": "S\u00e9ries", + "Supplier": "Fornecedor", + "Supplier Address": "Endere\u00e7o do Fornecedor", + "Tax Calculation": "C\u00e1lculo do Imposto", + "Taxes": "Impostos", + "Taxes and Charges Added": "Impostos e Encargos Adicionados", + "Taxes and Charges Added (Import)": "Impostos e Encargos Adicionados (Importa\u00e7\u00e3o)", + "Taxes and Charges Deducted": "Impostos e Encargos Deduzidos", + "Taxes and Charges Deducted (Import)": "Impostos e Encargos Deduzidos (Importa\u00e7\u00e3o)", + "The account to which you will pay (have paid) the money to.": "A conta para a qual voc\u00ea vai pagar (ou paguou) o dinheiro.", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "The rate at which Bill Currency is converted into company's base currency": "A taxa na qual a moeda de faturamento \u00e9 convertida na moeda base da empresa", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Total Advance": "Antecipa\u00e7\u00e3o Total", + "Total Amount To Pay": "Valor total a pagar", + "Total Tax": "Total de Impostos", + "Totals": "Totais", + "Will be calculated automatically when you enter the details": "Ser\u00e1 calculado automaticamente quando voc\u00ea digitar os detalhes", + "Write Off Account": "Eliminar Conta", + "Write Off Amount": "Eliminar Valor", + "Write Off Cost Center": "Eliminar Centro de Custos", + "Yes": "Sim" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/locale/pt-BR-py.json b/accounts/doctype/purchase_invoice/locale/pt-BR-py.json new file mode 100644 index 0000000000..1ce4f3b4f1 --- /dev/null +++ b/accounts/doctype/purchase_invoice/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "Please enter Bill Date": "Por favor insira Data Bill" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_advance/locale/pt-BR-doc.json b/accounts/doctype/purchase_invoice_advance/locale/pt-BR-doc.json new file mode 100644 index 0000000000..f49af6923e --- /dev/null +++ b/accounts/doctype/purchase_invoice_advance/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "Contas", + "Advance Amount": "Quantidade Antecipada", + "Allocated Amount": "Montante alocado", + "Journal Voucher": "Comprovante do livro Di\u00e1rio", + "Journal Voucher Detail No": "N\u00ba do Detalhe do Comprovante do livro Di\u00e1rio", + "Purchase Invoice Advance": "Antecipa\u00e7\u00e3o da Nota Fiscal de Compra", + "Remarks": "Observa\u00e7\u00f5es" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_item/locale/pt-BR-doc.json b/accounts/doctype/purchase_invoice_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e532fba572 --- /dev/null +++ b/accounts/doctype/purchase_invoice_item/locale/pt-BR-doc.json @@ -0,0 +1,28 @@ +{ + "Accounts": "Contas", + "Amount": "Quantidade", + "Amount*": "Quantidade*", + "Brand": "Marca", + "Cost Center": "Centro de Custos", + "Description": "Descri\u00e7\u00e3o", + "Discount %": "% De desconto", + "Expense Head": "Conta de despesas", + "Item": "Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Item Tax Amount": "Valor do Imposto do Item", + "Item Tax Rate": "Taxa de Imposto do Item", + "PR Detail": "Detalhe PR", + "Page Break": "Quebra de p\u00e1gina", + "Project Name": "Nome do Projeto", + "Pur Order": "Ordem Pur", + "Pur Receipt": "Recibo Pur", + "Purchase Invoice Item": "Item da Nota Fiscal de Compra", + "Purchase Order Item": "Item da Ordem de Compra", + "Qty": "Qtde.", + "Rate ": "Taxa", + "Rate*": "Taxa*", + "Ref Rate ": "Taxa de Ref.", + "Ref Rate*": "* Taxa de Ref.", + "UOM": "UDM" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_taxes_and_charges/locale/pt-BR-doc.json b/accounts/doctype/purchase_taxes_and_charges/locale/pt-BR-doc.json new file mode 100644 index 0000000000..9366c49882 --- /dev/null +++ b/accounts/doctype/purchase_taxes_and_charges/locale/pt-BR-doc.json @@ -0,0 +1,26 @@ +{ + "Account Head": "Conta", + "Accounts": "Contas", + "Actual": "Real", + "Add": "Adicionar", + "Add or Deduct": "Adicionar ou Deduzir", + "Amount": "Quantidade", + "Consider Tax or Charge for": "Considere Imposto ou Encargo para", + "Cost Center": "Centro de Custos", + "Deduct": "Subtrair", + "Description": "Descri\u00e7\u00e3o", + "Enter Row": "Digite a Linha", + "Item Wise Tax Detail ": "Detalhe Imposto relativo ao Item", + "On Net Total": "No Total L\u00edquido", + "On Previous Row Amount": "No Valor na linha anterior", + "On Previous Row Total": "No Total na linha anterior", + "Parenttype": "Parenttype", + "Purchase Taxes and Charges": "Impostos e Encargos sobre Compras", + "Rate": "Taxa", + "Tax Amount": "Valor do Imposto", + "Total": "Total", + "Total +Tax": "Total + Impostos", + "Type": "Tipo", + "Valuation": "Avalia\u00e7\u00e3o", + "Valuation and Total": "Avalia\u00e7\u00e3o e Total" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_taxes_and_charges_master/locale/pt-BR-doc.json b/accounts/doctype/purchase_taxes_and_charges_master/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4adcd7ed13 --- /dev/null +++ b/accounts/doctype/purchase_taxes_and_charges_master/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Accounts": "Contas", + "Company": "Empresa", + "Default": "Padr\u00e3o", + "Purchase Taxes and Charges": "Impostos e Encargos sobre Compras", + "Purchase Taxes and Charges Master": "Cadastro de Impostos e Encargos sobre Compras", + "Title": "T\u00edtulo" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/locale/pt-BR-doc.json b/accounts/doctype/sales_invoice/locale/pt-BR-doc.json new file mode 100644 index 0000000000..6334d36ca3 --- /dev/null +++ b/accounts/doctype/sales_invoice/locale/pt-BR-doc.json @@ -0,0 +1,142 @@ +{ + "Accounts": "Contas", + "Address": "Endere\u00e7o", + "Advances": "Avan\u00e7os", + "Advertisement": "An\u00fancio", + "Against Income Account": "Contra a Conta de Rendimentos", + "Aging Date": "Data de Envelhecimento", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Basic Info": "Informa\u00e7\u00f5es B\u00e1sicas", + "C-Form Applicable": "Formul\u00e1rio-C Aplic\u00e1vel", + "C-Form No": "N\u00ba do Formul\u00e1rio-C", + "Calculate Taxes and Charges": "Calcular Impostos e Encargos", + "Campaign": "Campanha", + "Cancel Reason": "Motivo do Cancelar", + "Cash/Bank Account": "Conta do Caixa/Banco", + "Check if recurring invoice, uncheck to stop recurring or put proper End Date": "Marque se \u00e9 uma nota fiscal recorrente, desmarque para parar a recorr\u00eancia ou colocar uma Data Final adequada", + "Cold Calling": "Cold Calling", + "Commission Rate (%)": "Taxa de Comiss\u00e3o (%)", + "Company": "Empresa", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Conversion Rate": "Taxa de Convers\u00e3o", + "Convert into Recurring Invoice": "Converter em Nota Fiscal Recorrente", + "Currency": "Moeda", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Group": "Grupo de Clientes", + "Customer's Vendor": "Vendedor do cliente", + "Debit To": "D\u00e9bito Para", + "Delivery Note": "Guia de Remessa", + "Due Date": "Data de Vencimento", + "End Date": "Data final", + "End date of current invoice's period": "Data final do per\u00edodo de fatura atual", + "Enter email id separated by commas, invoice will be mailed automatically on particular date": "Digite os endere\u00e7os de e-mail separados por v\u00edrgulas, a fatura ser\u00e1 enviada automaticamente na data determinada", + "Enter the date by which payments from customer is expected against this invoice.": "Digite a data em que o pagamento do cliente \u00e9 esperado para esta fatura.", + "Entries": "Lan\u00e7amentos", + "Exhibition": "Exposi\u00e7\u00e3o", + "Existing Customer": "Cliente existente", + "File List": "Lista de Arquivos", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Advances Received": "Obter adiantamentos recebidos", + "Get Items": "Obter itens", + "Get Taxes and Charges": "Obter Impostos e Encargos", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "Grand Total": "Total Geral", + "Grand Total (Export)": "Total Geral (Exporta\u00e7\u00e3o)", + "Gross Profit": "Lucro bruto", + "Gross Profit (%)": "Lucro Bruto (%)", + "Half-yearly": "Semestral", + "INV": "INV", + "INV/10-11/": "INV/10-11 /", + "In Words": "Por extenso", + "In Words (Export)": "Por extenso (Exporta\u00e7\u00e3o)", + "In Words will be visible once you save the Sales Invoice.": "Por extenso ser\u00e1 vis\u00edvel quando voc\u00ea salvar a Nota Fiscal de Venda.", + "Invoice Period From Date": "Per\u00edodo Inicial de Fatura", + "Invoice Period To Date": "Per\u00edodo Final de Fatura", + "Is Opening": "\u00c9 abertura", + "Is POS": "\u00c9 PDV", + "Items": "Itens", + "Letter Head": "Timbrado", + "Mass Mailing": "Divulga\u00e7\u00e3o em massa", + "Mobile No": "Telefone Celular", + "Mode of Payment": "Forma de Pagamento", + "Monthly": "Mensal", + "More Info": "Mais informa\u00e7\u00f5es", + "Name": "Nome", + "Net Total*": "Total L\u00edquido*", + "Next Date": "Pr\u00f3xima data", + "No": "N\u00e3o", + "Notification Email Address": "Endere\u00e7o de email de notifica\u00e7\u00e3o", + "Outstanding Amount": "Quantia em aberto", + "Packing Details": "Detalhes da embalagem", + "Packing List": "Lista de embalagem", + "Paid Amount": "Valor pago", + "Payments": "Pagamentos", + "Posting Date": "Data da Postagem", + "Posting Time": "Hor\u00e1rio da Postagem", + "Price List": "Lista de Pre\u00e7os", + "Price List Currency": "Moeda da Lista de Pre\u00e7os", + "Price List Currency Conversion Rate": "Taxa de convers\u00e3o da moeda da lista de pre\u00e7os", + "Price List and Currency": "Lista de Pre\u00e7os e Moeda", + "Project Name": "Nome do Projeto", + "Quarterly": "Trimestral", + "Rate at which Customer Currency is converted to customer's base currency": "Taxa na qual a moeda do cliente \u00e9 convertida para a moeda base do cliente", + "Rate at which Price list currency is converted to customer's base currency": "Taxa na qual a moeda da lista de pre\u00e7os \u00e9 convertida para a moeda base do cliente", + "Re-Calculate Values": "Re-calcular valores", + "Recurring Id": "Id recorrente", + "Recurring Invoice": "Nota Fiscal Recorrente", + "Recurring Type": "Tipo de recorr\u00eancia", + "Reference": "Refer\u00eancia", + "Remarks": "Observa\u00e7\u00f5es", + "Repeat on Day of Month": "Repita no Dia do M\u00eas", + "Rounded Total": "Total arredondado", + "Rounded Total (Export)": "Total arredondado (Exporta\u00e7\u00e3o)", + "Sales BOM Help": "Ajuda da LDM de Vendas", + "Sales Invoice": "Nota Fiscal de Venda", + "Sales Invoice Advance": "Antecipa\u00e7\u00e3o da Nota Fiscal de Venda", + "Sales Order": "Ordem de Venda", + "Sales Partner": "Parceiro de Vendas", + "Sales Team": "Equipe de Vendas", + "Sales Team1": "Equipe de Vendas", + "Select Items from Delivery Note": "Selecione os itens da Guia de Remessa", + "Select Items from Sales Order": "Selecione os itens da Ordem de Venda", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the currency in which price list is maintained": "Selecione a moeda na qual a lista de pre\u00e7os \u00e9 mantida", + "Select the period when the invoice will be generated automatically": "Selecione o per\u00edodo em que a fatura ser\u00e1 gerada automaticamente", + "Series": "S\u00e9ries", + "Source": "Fonte", + "Start date of current invoice's period": "Data de in\u00edcio do per\u00edodo de fatura atual", + "Supplier Reference": "Refer\u00eancia do Fornecedor", + "Taxes and Charges": "Impostos e Encargos", + "Taxes and Charges Calculation": "C\u00e1lculo de Impostos e Encargos", + "Taxes and Charges1": "Impostos e Encargos", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions Details": "Detalhes dos Termos e Condi\u00e7\u00f5es", + "Terms and Conditions HTML": "Termos e Condi\u00e7\u00f5es HTML", + "Territory": "Territ\u00f3rio", + "The account to which you will pay (have paid) the money to.": "A conta para a qual voc\u00ea vai pagar (ou paguou) o dinheiro.", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "The date on which recurring invoice will be stop": "A data em que fatura recorrente ser\u00e1 interrompida", + "The day of the month on which auto invoice will be generated e.g. 05, 28 etc ": "O dia do m\u00eas em que a fatura autom\u00e1tica ser\u00e1 gerada por exemplo, 05, 28, etc", + "The unique id for tracking all recurring invoices.\u00a0It is generated on submit.": "O ID \u00fanico para acompanhar todas as faturas recorrentes. Ele \u00e9 gerado ao enviar.", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Total Advance": "Antecipa\u00e7\u00e3o Total", + "Total Commission": "Total da Comiss\u00e3o", + "Total Taxes and Charges": "Total de Impostos e Encargos", + "Totals": "Totais", + "Track this Sales Invoice against any Project": "Acompanhar esta Nota Fiscal de Venda contra qualquer projeto", + "Update Stock": "Atualizar Estoque", + "Will be calculated automatically when you enter the details": "Ser\u00e1 calculado automaticamente quando voc\u00ea digitar os detalhes", + "Write Off Account": "Eliminar Conta", + "Write Off Amount": "Eliminar Valor", + "Write Off Cost Center": "Eliminar Centro de Custos", + "Write Off Outstanding Amount": "Eliminar saldo devedor", + "Yearly": "Anual", + "Yes": "Sim" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/locale/pt-BR-py.json b/accounts/doctype/sales_invoice/locale/pt-BR-py.json new file mode 100644 index 0000000000..ba1e15b0ee --- /dev/null +++ b/accounts/doctype/sales_invoice/locale/pt-BR-py.json @@ -0,0 +1,5 @@ +{ + ": Mandatory for a Recurring Invoice.": ": Obrigat\u00f3rio para uma Fatura Recorrente.", + "Invalid Email Address": "Endere\u00e7o de email inv\u00e1lido", + "Please select: ": "Por favor, selecione: " +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_advance/locale/pt-BR-doc.json b/accounts/doctype/sales_invoice_advance/locale/pt-BR-doc.json new file mode 100644 index 0000000000..97f6aab6d6 --- /dev/null +++ b/accounts/doctype/sales_invoice_advance/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "Contas", + "Advance amount": "Valor do adiantamento", + "Allocated amount": "Montante alocado", + "Journal Voucher": "Comprovante do livro Di\u00e1rio", + "Journal Voucher Detail No": "N\u00ba do Detalhe do Comprovante do livro Di\u00e1rio", + "Remarks": "Observa\u00e7\u00f5es", + "Sales Invoice Advance": "Antecipa\u00e7\u00e3o da Nota Fiscal de Venda" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_item/locale/pt-BR-doc.json b/accounts/doctype/sales_invoice_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..ff0980b76f --- /dev/null +++ b/accounts/doctype/sales_invoice_item/locale/pt-BR-doc.json @@ -0,0 +1,34 @@ +{ + "Accounts": "Contas", + "Amount": "Quantidade", + "Amount*": "Quantidade*", + "Available Qty at Warehouse": "Qtde Dispon\u00edvel em Almoxarifado", + "Barcode": "C\u00f3digo de barras", + "Basic Rate": "Taxa B\u00e1sica", + "Basic Rate*": "Taxa B\u00e1sica*", + "Batch No": "N\u00ba do Lote", + "Brand Name": "Marca", + "Clear Pending": "Limpar Pendentes", + "Cost Center": "Centro de Custos", + "Customer's Item Code": "C\u00f3digo do Item do Cliente", + "DN Detail": "Detalhe DN", + "Delivered Qty": "Qtde entregue", + "Delivery Note": "Guia de Remessa", + "Description": "Descri\u00e7\u00e3o", + "Discount (%)": "Desconto (%)", + "Income Account": "Conta de Renda", + "Item": "Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Item Tax Rate": "Taxa de Imposto do Item", + "Page Break": "Quebra de p\u00e1gina", + "Price List Rate": "Taxa de Lista de Pre\u00e7os", + "Price List Rate*": "Taxa de Lista de Pre\u00e7os*", + "Qty": "Qtde.", + "SO Detail ": "Detalhe da OV", + "Sales Invoice Item": "Item da Nota Fiscal de Venda", + "Sales Order": "Ordem de Venda", + "Serial No": "N\u00ba de S\u00e9rie", + "UOM": "UDM", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges/locale/pt-BR-doc.json b/accounts/doctype/sales_taxes_and_charges/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a54ed90a6a --- /dev/null +++ b/accounts/doctype/sales_taxes_and_charges/locale/pt-BR-doc.json @@ -0,0 +1,22 @@ +{ + "Account Head": "Conta", + "Accounts": "Contas", + "Actual": "Real", + "Amount": "Quantidade", + "Cost Center": "Centro de Custos", + "Description": "Descri\u00e7\u00e3o", + "Enter Row": "Digite a Linha", + "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount": "Se marcado, o valor do imposto ser\u00e1 considerado como j\u00e1 inclu\u00eddo na Impress\u00e3o de Taxa / Impress\u00e3o do Valor", + "Is this Tax included in Basic Rate?": "Este imposto est\u00e1 inclu\u00eddo no Valor Base?", + "Item Wise Tax Detail ": "Detalhe Imposto relativo ao Item", + "On Net Total": "No Total L\u00edquido", + "On Previous Row Amount": "No Valor na linha anterior", + "On Previous Row Total": "No Total na linha anterior", + "Parenttype": "Parenttype", + "Rate": "Taxa", + "Sales Taxes and Charges": "Impostos e Taxas sobre Vendas", + "Total": "Total", + "Total Amount": "Valor Total", + "Total Tax Amount": "Valor Total do Imposto", + "Type": "Tipo" +} \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges_master/locale/pt-BR-doc.json b/accounts/doctype/sales_taxes_and_charges_master/locale/pt-BR-doc.json new file mode 100644 index 0000000000..f2741c6d84 --- /dev/null +++ b/accounts/doctype/sales_taxes_and_charges_master/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "* Will be calculated in the transaction.": "* Ser\u00e1 calculado na transa\u00e7\u00e3o.", + "Accounts": "Contas", + "Company": "Empresa", + "Default": "Padr\u00e3o", + "Sales Taxes and Charges Master": "Cadastro de Impostos e Taxas sobre Vendas", + "Title": "T\u00edtulo" +} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/pt-BR-doc.json b/accounts/doctype/trend_analyzer_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..9f99885f99 --- /dev/null +++ b/accounts/doctype/trend_analyzer_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "Contas", + "Trend Analyzer Control": "Controle do Analisador de tend\u00eancia" +} \ No newline at end of file diff --git a/accounts/locale/pt-BR-py.json b/accounts/locale/pt-BR-py.json new file mode 100644 index 0000000000..ef1ccd43f0 --- /dev/null +++ b/accounts/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "not within Fiscal Year": "n\u00e3o est\u00e1 dentro do Ano Fiscal" +} \ No newline at end of file diff --git a/accounts/module_def/accounts/locale/pt-BR-doc.json b/accounts/module_def/accounts/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b06a87cca9 --- /dev/null +++ b/accounts/module_def/accounts/locale/pt-BR-doc.json @@ -0,0 +1,14 @@ +{ + "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.": "**Ano Fiscal** representa um Exerc\u00edcio. Todos os lan\u00e7amentos cont\u00e1beis e outras transa\u00e7\u00f5es importantes s\u00e3o monitorados contra o **Ano Fiscal**.", + "Accounts Browser": "Navegador de Contas", + "Accounts Home": "In\u00edcio de Contas", + "Delivered Items To Be Billed": "Itens entregues a serem faturados", + "Financial Analytics": "An\u00e1lise Financeira", + "Financial Statements": "Demonstra\u00e7\u00f5es Financeiras", + "General Ledger": "Raz\u00e3o Geral", + "Heads (or groups) against which Accounting Entries are made and balances are maintained.": "Contas (ou grupos) contra a qual os lan\u00e7amentos de contabilidade s\u00e3o feitos e os saldos s\u00e3o mantidos.", + "Ordered Items To Be Billed": "Itens encomendados a serem faturados", + "Track separate Income and Expense for product verticals or divisions.": "Acompanhar Receitas e Gastos separados para produtos verticais ou divis\u00f5es.", + "Trial Balance": "Balancete", + "Voucher Import Tool": "Ferramenta de Importa\u00e7\u00e3o de comprovantes" +} \ No newline at end of file diff --git a/accounts/page/accounts_home/locale/pt-BR-js.json b/accounts/page/accounts_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..64b1f5751c --- /dev/null +++ b/accounts/page/accounts_home/locale/pt-BR-js.json @@ -0,0 +1,46 @@ +{ + "Accounting journal entries.": "Lan\u00e7amentos no livro Di\u00e1rio.", + "Analytics": "Anal\u00edtica", + "Bank Reconciliation": "Reconcilia\u00e7\u00e3o Banc\u00e1ria", + "Bills raised by Suppliers.": "Contas levantada por Fornecedores.", + "Bills raised to Customers.": "Contas levantdas para Clientes.", + "Budget Distribution": "Distribui\u00e7\u00e3o de Or\u00e7amento", + "C-Form": "Formul\u00e1rio-C", + "Chart of Accounts": "Plano de Contas", + "Chart of Cost Centers": "Plano de Centros de Custo", + "Delivered Items To Be Billed": "Itens entregues a serem faturados", + "Documents": "Documentos", + "Financial Analytics": "An\u00e1lise Financeira", + "Financial Statements": "Demonstra\u00e7\u00f5es Financeiras", + "General Ledger": "Raz\u00e3o Geral", + "Journal Voucher": "Comprovante do livro Di\u00e1rio", + "Main Reports": "Relat\u00f3rios principais", + "Manage sales or purchase returns": "Gerenciar devolu\u00e7\u00f5es de compra e venda", + "Masters": "Cadastros", + "Match non-linked Invoices and Payments.": "Combinar Faturas e Pagamentos n\u00e3o relacionados.", + "Mode of Payment": "Forma de Pagamento", + "Ordered Items To Be Billed": "Itens encomendados a serem faturados", + "Payment Reconciliation": "Reconcilia\u00e7\u00e3o de pagamento", + "Period Closing Voucher": "Comprovante de Encerramento per\u00edodo", + "Point-of-Sale Setting": "Configura\u00e7\u00f5es de Ponto-de-Venda", + "Purchase Invoice": "Nota Fiscal de Compra", + "Purchase Taxes and Charges Master": "Cadastro de Impostos e Encargos sobre Compras", + "Reports": "Relat\u00f3rios", + "Sales Invoice": "Nota Fiscal de Venda", + "Sales Taxes and Charges Master": "Cadastro de Impostos e Taxas sobre Vendas", + "Sales and Purchase Return Tool": "Ferramenta de retorno de compra e venda", + "Seasonality for setting budgets.": "Sazonalidade para definir or\u00e7amentos.", + "Setup": "Configura\u00e7\u00e3o", + "Structure cost centers for budgeting.": "Estrutura dos centros de custo para or\u00e7amenta\u00e7\u00e3o.", + "Structure of books of accounts.": "Estrutura de livros de contas.", + "Tax Template for Purchase": "Modelo de Impostos para compra", + "Tax Template for Sales": "Modelo de Impostos para vendas", + "Template of terms or contract.": "Modelo de termos ou contratos.", + "Terms and Conditions Template": "Modelo de Termos e Condi\u00e7\u00f5es", + "Tools": "Ferramentas", + "Trend Analyzer": "Analisador de tend\u00eancia", + "Trial Balance": "Balancete", + "Update bank payment dates with journals.": "Atualizar datas de pagamento banc\u00e1rio com livro Di\u00e1rio.", + "Voucher Import Tool": "Ferramenta de Importa\u00e7\u00e3o de comprovantes", + "e.g. Bank, Cash, Credit Card": "por exemplo Banco, Dinheiro, Cart\u00e3o de Cr\u00e9dito" +} \ No newline at end of file diff --git a/buying/doctype/purchase_common/locale/pt-BR-doc.json b/buying/doctype/purchase_common/locale/pt-BR-doc.json new file mode 100644 index 0000000000..1407f53ba2 --- /dev/null +++ b/buying/doctype/purchase_common/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Buying": "Compras", + "Purchase Common": "Compras comum" +} \ No newline at end of file diff --git a/buying/doctype/purchase_order/locale/pt-BR-doc.json b/buying/doctype/purchase_order/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b0b4bacb17 --- /dev/null +++ b/buying/doctype/purchase_order/locale/pt-BR-doc.json @@ -0,0 +1,92 @@ +{ + "% Billed": "Faturado %", + "% Received": "Recebido %", + "% of materials billed against this Purchase Order.": "% de materiais faturado contra esta Ordem de Compra.", + "% of materials received against this Purchase Order": "% de materiais recebidos contra esta Ordem de Compra", + "Address": "Endere\u00e7o", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Buying": "Compras", + "Calculate Tax": "Calcular Imposto", + "Cancel Reason": "Motivo do Cancelar", + "Cancelled": "Cancelado", + "Company": "Empresa", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "Considere esta Lista de Pre\u00e7os para a obten\u00e7\u00e3o do valor. (S\u00f3 onde "Para Comprar" estiver marcado)", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Currency": "Moeda", + "Currency & Price List": "Moeda e Lista de Pre\u00e7os", + "Draft": "Rascunho", + "Exchange Rate": "Taxa de C\u00e2mbio", + "File List": "Lista de Arquivos", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Items": "Obter itens", + "Get Last Purchase Rate": "Obter Valor da \u00daltima Compra", + "Get Tax Detail": "Obtenha detalhes de Imposto", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "Grand Total": "Total Geral", + "Grand Total (Import)": "Total Geral (Importa\u00e7\u00e3o)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "Se voc\u00ea criou um modelo padr\u00e3o no cadastro de Impostos de Compra e Encargos, selecione um e clique no bot\u00e3o abaixo.", + "In Words": "Por extenso", + "In Words will be visible once you save the Purchase Order.": "Por extenso ser\u00e1 vis\u00edvel quando voc\u00ea salvar a Ordem de Compra.", + "In Words(Import)": "Por extenso (Importar)", + "Instructions": "Instru\u00e7\u00f5es", + "Is Subcontracted": "\u00c9 subcontratada", + "Items": "Itens", + "Letter Head": "Timbrado", + "Mobile No": "Telefone Celular", + "More Info": "Mais informa\u00e7\u00f5es", + "Name": "Nome", + "Net Total (Import)": "Total L\u00edquido (Importa\u00e7\u00e3o)", + "Net Total*": "Total L\u00edquido*", + "No": "N\u00e3o", + "PO": "PO", + "Payment Terms": "Condi\u00e7\u00f5es de Pagamento", + "Price List": "Lista de Pre\u00e7os", + "Price List Currency": "Moeda da Lista de Pre\u00e7os", + "Price List Exchange Rate": "Taxa de C\u00e2mbio da Lista de Pre\u00e7os", + "Purchase Order": "Ordem de Compra", + "Purchase Order Date": "Data da Ordem de Compra", + "Purchase Order Items": "Itens da Ordem de Compra", + "Purchase Order Items Supplied": "Itens da Ordem de Compra fornecidos", + "Purchase Taxes and Charges": "Impostos e Encargos sobre Compras", + "Rate at which supplier's currency is converted to company's base currency": "Taxa na qual a moeda do fornecedor \u00e9 convertida para a moeda base da empresa", + "Raw Material Details": "Detalhes de Materias-Primas", + "Re-Calculate Values": "Re-calcular valores", + "Ref SQ": "Ref SQ", + "Remarks": "Observa\u00e7\u00f5es", + "Required raw materials issued to the supplier for producing a sub - contracted item.": "Mat\u00e9rias-primas necess\u00e1rias emitidas para o fornecedor para a produ\u00e7\u00e3o de um item sub-contratado.", + "Rounded Total": "Total arredondado", + "Select Material Request": "Selecione solicitar material", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Select Supplier Quotation": "Selecione a Cota\u00e7\u00e3o do Fornecedor", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the relevant company name if you have multiple companies": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas", + "Series": "S\u00e9ries", + "Status": "Estado", + "Stopped": "Parado", + "Submitted": "Enviado", + "Supplier": "Fornecedor", + "Supplier (vendor) name as entered in supplier master": "Nome do fornecedor (vendedor), como inscritos no cadastro de fornecedores", + "Supplier Address": "Endere\u00e7o do Fornecedor", + "Supplier's currency": "Moeda do Fornecedor", + "Tax Calculation": "C\u00e1lculo do Imposto", + "Taxes": "Impostos", + "Taxes and Charges Added": "Impostos e Encargos Adicionados", + "Taxes and Charges Added (Import)": "Impostos e Encargos Adicionados (Importa\u00e7\u00e3o)", + "Taxes and Charges Deducted": "Impostos e Encargos Deduzidos", + "Taxes and Charges Deducted (Import)": "Impostos e Encargos Deduzidos (Importa\u00e7\u00e3o)", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions HTML": "Termos e Condi\u00e7\u00f5es HTML", + "Terms and Conditions1": "Termos e Condi\u00e7\u00f5es", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Total Tax*": "Total de Impostos*", + "Totals": "Totais", + "Yes": "Sim", + "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.": "Voc\u00ea pode fazer um pedido de compra de materiais pedidos m\u00faltiplos. Selecione pedidos se um por um e clique no bot\u00e3o abaixo.", + "You can make a purchase order from multiple Supplier Quotations. Select Supplier Quotations one by one and click on the button below.": "Voc\u00ea pode fazer uma Ordem de Compra a partir de v\u00e1rias Cota\u00e7\u00f5es do Fornecedor. Selecione as Cota\u00e7\u00f5es do Fornecedor, uma a uma e clique no bot\u00e3o abaixo." +} \ No newline at end of file diff --git a/buying/doctype/purchase_order_item/locale/pt-BR-doc.json b/buying/doctype/purchase_order_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3d8d3df109 --- /dev/null +++ b/buying/doctype/purchase_order_item/locale/pt-BR-doc.json @@ -0,0 +1,36 @@ +{ + "Amount": "Quantidade", + "Amount*": "Quantidade*", + "Billed Quantity": "Quantidade Faturada", + "Brand": "Marca", + "Buying": "Compras", + "Description": "Descri\u00e7\u00e3o", + "Discount %": "% De desconto", + "If Supplier Part Number exists for given Item, it gets stored here": "Se N\u00famero da Pe\u00e7a do Fornecedor existir para um determinado item, ele fica armazenado aqui", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Item Tax Rate": "Taxa de Imposto do Item", + "Material Request Date": "Data de Solicita\u00e7\u00e3o de material", + "Material Request Detail No": "Detalhe materiais Pedido N\u00e3o", + "Material Request No": "Pedido de material no", + "Page Break": "Quebra de p\u00e1gina", + "Prevdoc DocType": "Prevdoc DocType", + "Project Name": "Nome do Projeto", + "Purchase Order Item": "Item da Ordem de Compra", + "Quantity": "Quantidade", + "Rate ": "Taxa", + "Rate*": "Taxa*", + "Received Qty": "Qtde. recebida", + "Ref Rate ": "Taxa de Ref.", + "Ref Rate*": "* Taxa de Ref.", + "Reqd By Date": "Requisi\u00e7\u00f5es Por Data", + "Stock Qty": "Qtde. em Estoque", + "Stock UOM": "UDM do Estoque", + "Supplier Part Number": "N\u00famero da pe\u00e7a do Fornecedor", + "Supplier Quotation": "Cota\u00e7\u00e3o do Fornecedor", + "Supplier Quotation Item": "Item da Cota\u00e7\u00e3o do Fornecedor", + "UOM": "UDM", + "UOM Conversion Factor": "Fator de Convers\u00e3o da UDM", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/buying/doctype/purchase_order_item_supplied/locale/pt-BR-doc.json b/buying/doctype/purchase_order_item_supplied/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2a8716b21c --- /dev/null +++ b/buying/doctype/purchase_order_item_supplied/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Amount": "Quantidade", + "BOM Detail No": "N\u00ba do detalhe da LDM", + "Buying": "Compras", + "Conversion Factor": "Fator de Convers\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Purchase Order Item Supplied": "Item da Ordem de Compra fornecido", + "Rate": "Taxa", + "Raw Material Item Code": "C\u00f3digo de Item de Mat\u00e9rias-Primas", + "Reference Name": "Nome de Refer\u00eancia", + "Required Qty": "Quantidade requerida", + "Stock Uom": "UDM do Estoque" +} \ No newline at end of file diff --git a/buying/doctype/purchase_receipt_item_supplied/locale/pt-BR-doc.json b/buying/doctype/purchase_receipt_item_supplied/locale/pt-BR-doc.json new file mode 100644 index 0000000000..f764ffa530 --- /dev/null +++ b/buying/doctype/purchase_receipt_item_supplied/locale/pt-BR-doc.json @@ -0,0 +1,16 @@ +{ + "Amount": "Quantidade", + "BOM Detail No": "N\u00ba do detalhe da LDM", + "Buying": "Compras", + "Consumed Qty": "Qtde consumida", + "Conversion Factor": "Fator de Convers\u00e3o", + "Current Stock": "Estoque Atual", + "Description": "Descri\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Purchase Receipt Item Supplied": "Item do Recibo de Compra Fornecido", + "Rate": "Taxa", + "Raw Material Item Code": "C\u00f3digo de Item de Mat\u00e9rias-Primas", + "Reference Name": "Nome de Refer\u00eancia", + "Required Qty": "Quantidade requerida", + "Stock Uom": "UDM do Estoque" +} \ No newline at end of file diff --git a/buying/doctype/purchase_request/locale/pt-BR-doc.json b/buying/doctype/purchase_request/locale/pt-BR-doc.json new file mode 100644 index 0000000000..ca7fc16330 --- /dev/null +++ b/buying/doctype/purchase_request/locale/pt-BR-doc.json @@ -0,0 +1,41 @@ +{ + "% Ordered": "Pedido %", + "% of materials ordered against this Purchase Requisition": "% de materiais encomendados contra este Pedido de Compra", + "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template": "Adicione Termos e Condi\u00e7\u00f5es para o Pedido de Compra. Voc\u00ea tamb\u00e9m pode preparar um cadastro de Termos e Condi\u00e7\u00f5es e usar o Modelo", + "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field": "Depois de cancelar o Pedido de Compra, uma caixa de di\u00e1logo ir\u00e1 pedir-lhe a raz\u00e3o para o cancelamento que ser\u00e1 refletido neste campo", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Buying": "Compras", + "Cancel Reason": "Motivo do Cancelar", + "Cancelled": "Cancelado", + "Company": "Empresa", + "Draft": "Rascunho", + "File List": "Lista de Arquivos", + "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.": "Preenchimento de informa\u00e7\u00f5es adicionais sobre o pedido de compra vai ajudar a analisar melhor seus dados.", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "IDT": "IDT", + "Items": "Itens", + "Letter Head": "Timbrado", + "More Info": "Mais informa\u00e7\u00f5es", + "Name of the entity who has requested for the Purchase Requisition": "Nome da entidade que solicitou para o Pedido de Compra", + "One or multiple Sales Order no which generated this Purchase Requisition": "Um ou v\u00e1rios n\u00ba de Ordens de Venda que gerou este Pedido de Compra", + "Pull Sales Order Items": "Puxar itens da Ordem de Venda", + "Purchase Request": "Pedido de Compra", + "Purchase Requisition Details": "Detalhes da Pedido de Compra", + "Remarks": "Observa\u00e7\u00f5es", + "Requested By": "Solicitado por", + "Sales Order No": "N\u00ba da Ordem de Venda", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the relevant company name if you have multiple companies": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas", + "Series": "S\u00e9ries", + "Status": "Estado", + "Stopped": "Parado", + "Submitted": "Enviado", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions Content": "Conte\u00fados dos Termos e Condi\u00e7\u00f5es", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Transaction Date": "Data da Transa\u00e7\u00e3o" +} \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/pt-BR-doc.json b/buying/doctype/purchase_request_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..471321be76 --- /dev/null +++ b/buying/doctype/purchase_request_item/locale/pt-BR-doc.json @@ -0,0 +1,19 @@ +{ + "Brand": "Marca", + "Buying": "Compras", + "Description": "Descri\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Lead Time Date": "Prazo de entrega", + "Min Order Qty": "Pedido M\u00ednimo", + "Ordered Qty": "Qtde. encomendada", + "Page Break": "Quebra de p\u00e1gina", + "Projected Qty": "Qtde. Projetada", + "Purchase Request Item": "Item do Pedido de Compra", + "Quantity": "Quantidade", + "Required Date": "Data Obrigat\u00f3ria", + "Sales Order No": "N\u00ba da Ordem de Venda", + "Stock UOM": "UDM do Estoque", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/buying/doctype/quality_inspection/locale/pt-BR-doc.json b/buying/doctype/quality_inspection/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5475384442 --- /dev/null +++ b/buying/doctype/quality_inspection/locale/pt-BR-doc.json @@ -0,0 +1,27 @@ +{ + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Batch No": "N\u00ba do Lote", + "Buying": "Compras", + "Delivery Note No": "N\u00ba da Guia de Remessa", + "Description": "Descri\u00e7\u00e3o", + "Get Specification Details": "Obter detalhes da Especifica\u00e7\u00e3o", + "In Process": "Em Processo", + "Incoming": "Entrada", + "Inspected By": "Inspecionado por", + "Inspection Type": "Tipo de Inspe\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Item Serial No": "N\u00ba de s\u00e9rie do Item", + "Naming Series": "S\u00e9ries nomeadas", + "Outgoing": "De Sa\u00edda", + "Purchase Receipt No": "N\u00ba do Recibo de Compra", + "QA Inspection": "Inspe\u00e7\u00e3o QA", + "QAI/11-12/": "QAI/11-12 /", + "Quality Inspection": "Inspe\u00e7\u00e3o de Qualidade", + "Quality Inspection Readings": "Leituras da Inspe\u00e7\u00e3o de Qualidade", + "Remarks": "Observa\u00e7\u00f5es", + "Report Date": "Data do Relat\u00f3rio", + "Sample Size": "Tamanho da amostra", + "Specification Details": "Detalhes da especifica\u00e7\u00e3o", + "Verified By": "Verificado Por" +} \ No newline at end of file diff --git a/buying/doctype/quality_inspection_reading/locale/pt-BR-doc.json b/buying/doctype/quality_inspection_reading/locale/pt-BR-doc.json new file mode 100644 index 0000000000..70f5d6f605 --- /dev/null +++ b/buying/doctype/quality_inspection_reading/locale/pt-BR-doc.json @@ -0,0 +1,19 @@ +{ + "Acceptance Criteria": "Crit\u00e9rios de Aceita\u00e7\u00e3o", + "Accepted": "Aceito", + "Buying": "Compras", + "Parameter": "Par\u00e2metro", + "Quality Inspection Reading": "Leitura da Inspe\u00e7\u00e3o de Qualidade", + "Reading 1": "Leitura 1", + "Reading 10": "Leitura 10", + "Reading 2": "Leitura 2", + "Reading 3": "Leitura 3", + "Reading 4": "Leitura 4", + "Reading 5": "Leitura 5", + "Reading 6": "Leitura 6", + "Reading 7": "Leitura 7", + "Reading 8": "Leitura 8", + "Reading 9": "Leitura 9", + "Rejected": "Rejeitado", + "Status": "Estado" +} \ No newline at end of file diff --git a/buying/doctype/supplier/locale/pt-BR-doc.json b/buying/doctype/supplier/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5e1301e7db --- /dev/null +++ b/buying/doctype/supplier/locale/pt-BR-doc.json @@ -0,0 +1,27 @@ +{ + "Address & Contacts": "Endere\u00e7o e Contatos", + "Address Desc": "Descri\u00e7\u00e3o do Endere\u00e7o", + "Address HTML": "Endere\u00e7o HTML", + "Basic Info": "Informa\u00e7\u00f5es B\u00e1sicas", + "Buying": "Compras", + "Communication HTML": "Comunica\u00e7\u00e3o HTML", + "Company": "Empresa", + "Contact Desc": "Descri\u00e7\u00e3o do Contato", + "Contact HTML": "Contato HTML", + "Credit Days": "Dias de Cr\u00e9dito", + "Default Currency": "Moeda padr\u00e3o", + "Enter the company name under which Account Head will be created for this Supplier": "Digite o nome da empresa sob a qual a Conta ser\u00e1 criada para este fornecedor", + "More Info": "Mais informa\u00e7\u00f5es", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "Nota: voc\u00ea pode gerenciar M\u00faltiplos Endere\u00e7os ou Contatos atrav\u00e9s de Endere\u00e7os & Contatos", + "SUPP": "SUPP", + "SUPP/10-11/": "SUPP/10-11 /", + "Series": "S\u00e9ries", + "Statutory info and other general information about your Supplier": "Informa\u00e7\u00f5es estatut\u00e1rias e outras informa\u00e7\u00f5es gerais sobre o seu Fornecedor", + "Supplier": "Fornecedor", + "Supplier Details": "Detalhes do Fornecedor", + "Supplier Name": "Nome do Fornecedor", + "Supplier Type": "Tipo de Fornecedor", + "Supplier of Goods or Services.": "Fornecedor de Bens ou Servi\u00e7os.", + "This currency will get fetched in Purchase transactions of this supplier": "Essa moeda vai ser buscada em transa\u00e7\u00f5es de compra deste fornecedor", + "Website": "Site" +} \ No newline at end of file diff --git a/buying/doctype/supplier/locale/pt-BR-py.json b/buying/doctype/supplier/locale/pt-BR-py.json new file mode 100644 index 0000000000..f1de36a7e1 --- /dev/null +++ b/buying/doctype/supplier/locale/pt-BR-py.json @@ -0,0 +1,5 @@ +{ + "A Customer exists with same name": "Um cliente existe com mesmo nome", + "Created Account Head: ": "Chefe Conta criada:", + "Created Group ": "Grupo criado" +} \ No newline at end of file diff --git a/buying/doctype/supplier_quotation/locale/pt-BR-doc.json b/buying/doctype/supplier_quotation/locale/pt-BR-doc.json new file mode 100644 index 0000000000..ac5e125045 --- /dev/null +++ b/buying/doctype/supplier_quotation/locale/pt-BR-doc.json @@ -0,0 +1,78 @@ +{ + "Address": "Endere\u00e7o", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Buying": "Compras", + "Calculate Tax": "Calcular Imposto", + "Cancel Reason": "Motivo do Cancelar", + "Cancelled": "Cancelado", + "Company": "Empresa", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "Considere esta Lista de Pre\u00e7os para a obten\u00e7\u00e3o do valor. (S\u00f3 onde "Para Comprar" estiver marcado)", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Currency": "Moeda", + "Currency & Price List": "Moeda e Lista de Pre\u00e7os", + "Draft": "Rascunho", + "Exchange Rate": "Taxa de C\u00e2mbio", + "File List": "Lista de Arquivos", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Items": "Obter itens", + "Get Tax Detail": "Obtenha detalhes de Imposto", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "Grand Total": "Total Geral", + "Grand Total (Import)": "Total Geral (Importa\u00e7\u00e3o)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "Se voc\u00ea criou um modelo padr\u00e3o no cadastro de Impostos de Compra e Encargos, selecione um e clique no bot\u00e3o abaixo.", + "In Words": "Por extenso", + "In Words will be visible once you save the Purchase Order.": "Por extenso ser\u00e1 vis\u00edvel quando voc\u00ea salvar a Ordem de Compra.", + "In Words(Import)": "Por extenso (Importar)", + "Is Subcontracted": "\u00c9 subcontratada", + "Items": "Itens", + "Letter Head": "Timbrado", + "Mobile No": "Telefone Celular", + "More Info": "Mais informa\u00e7\u00f5es", + "Name": "Nome", + "Net Total (Import)": "Total L\u00edquido (Importa\u00e7\u00e3o)", + "Net Total*": "Total L\u00edquido*", + "No": "N\u00e3o", + "Price List": "Lista de Pre\u00e7os", + "Price List Currency": "Moeda da Lista de Pre\u00e7os", + "Price List Exchange Rate": "Taxa de C\u00e2mbio da Lista de Pre\u00e7os", + "Purchase Taxes and Charges": "Impostos e Encargos sobre Compras", + "Quotation Date": "Data da Cota\u00e7\u00e3o", + "Quotation Items": "Itens da Cota\u00e7\u00e3o", + "Rate at which supplier's currency is converted to company's base currency": "Taxa na qual a moeda do fornecedor \u00e9 convertida para a moeda base da empresa", + "Re-Calculate Values": "Re-calcular valores", + "Rounded Total": "Total arredondado", + "SQTN": "SQTN", + "Select Material Request": "Selecione solicitar material", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the relevant company name if you have multiple companies": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas", + "Series": "S\u00e9ries", + "Status": "Estado", + "Stopped": "Parado", + "Submitted": "Enviado", + "Supplier": "Fornecedor", + "Supplier (vendor) name as entered in supplier master": "Nome do fornecedor (vendedor), como inscritos no cadastro de fornecedores", + "Supplier Address": "Endere\u00e7o do Fornecedor", + "Supplier Quotation": "Cota\u00e7\u00e3o do Fornecedor", + "Supplier's currency": "Moeda do Fornecedor", + "Tax Calculation": "C\u00e1lculo do Imposto", + "Taxes": "Impostos", + "Taxes and Charges Added": "Impostos e Encargos Adicionados", + "Taxes and Charges Added (Import)": "Impostos e Encargos Adicionados (Importa\u00e7\u00e3o)", + "Taxes and Charges Deducted": "Impostos e Encargos Deduzidos", + "Taxes and Charges Deducted (Import)": "Impostos e Encargos Deduzidos (Importa\u00e7\u00e3o)", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions HTML": "Termos e Condi\u00e7\u00f5es HTML", + "Terms and Conditions1": "Termos e Condi\u00e7\u00f5es", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Total Tax*": "Total de Impostos*", + "Totals": "Totais", + "Yes": "Sim", + "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.": "Voc\u00ea pode fazer um pedido de compra de materiais pedidos m\u00faltiplos. Selecione pedidos se um por um e clique no bot\u00e3o abaixo." +} \ No newline at end of file diff --git a/buying/doctype/supplier_quotation_item/locale/pt-BR-doc.json b/buying/doctype/supplier_quotation_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..46f0d521a5 --- /dev/null +++ b/buying/doctype/supplier_quotation_item/locale/pt-BR-doc.json @@ -0,0 +1,28 @@ +{ + "Amount": "Quantidade", + "Amount*": "Quantidade*", + "Brand": "Marca", + "Buying": "Compras", + "Description": "Descri\u00e7\u00e3o", + "Discount %": "% De desconto", + "If Supplier Part Number exists for given Item, it gets stored here": "Se N\u00famero da Pe\u00e7a do Fornecedor existir para um determinado item, ele fica armazenado aqui", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Item Tax Rate": "Taxa de Imposto do Item", + "Material Request Date": "Data de Solicita\u00e7\u00e3o de material", + "Material Request Detail No": "Detalhe materiais Pedido N\u00e3o", + "Material Request No": "Pedido de material no", + "Page Break": "Quebra de p\u00e1gina", + "Prevdoc DocType": "Prevdoc DocType", + "Project Name": "Nome do Projeto", + "Quantity": "Quantidade", + "Rate ": "Taxa", + "Rate*": "Taxa*", + "Ref Rate ": "Taxa de Ref.", + "Ref Rate*": "* Taxa de Ref.", + "Supplier Part Number": "N\u00famero da pe\u00e7a do Fornecedor", + "Supplier Quotation Item": "Item da Cota\u00e7\u00e3o do Fornecedor", + "UOM": "UDM", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/buying/module_def/buying/locale/pt-BR-doc.json b/buying/module_def/buying/locale/pt-BR-doc.json new file mode 100644 index 0000000000..9064863405 --- /dev/null +++ b/buying/module_def/buying/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Buying Home": "In\u00edcio de Compras", + "Purchase Analytics": "An\u00e1lise de compras", + "Supplier of Goods or Services.": "Fornecedor de Bens ou Servi\u00e7os." +} \ No newline at end of file diff --git a/buying/page/buying_home/locale/pt-BR-js.json b/buying/page/buying_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..83a94c9773 --- /dev/null +++ b/buying/page/buying_home/locale/pt-BR-js.json @@ -0,0 +1,33 @@ +{ + "Address": "Endere\u00e7o", + "All Addresses.": "Todos os Endere\u00e7os.", + "All Contacts.": "Todos os contatos.", + "All Products or Services.": "Todos os Produtos ou Servi\u00e7os.", + "Analytics": "Anal\u00edtica", + "Contact": "Contato", + "Documents": "Documentos", + "Helper for managing return of goods (sales or purchase)": "Auxiliar para a gest\u00e3o de devolu\u00e7\u00e3o de mercadorias (venda ou compra)", + "Item": "Item", + "Item Group": "Grupo de Itens", + "Masters": "Cadastros", + "Material Request": "Pedido de material", + "Purchase Analytics": "An\u00e1lise de compras", + "Purchase Order": "Ordem de Compra", + "Purchase Orders given to Suppliers.": "Ordens de Compra dadas a fornecedores.", + "Purchase Returns": "Devolu\u00e7\u00f5es de Compra", + "Purchase Taxes and Charges Master": "Cadastro de Impostos e Encargos sobre Compras", + "Request for purchase.": "Pedido de Compra.", + "Setup": "Configura\u00e7\u00e3o", + "Supplier": "Fornecedor", + "Supplier Quotation": "Cota\u00e7\u00e3o do Fornecedor", + "Supplier Type": "Tipo de Fornecedor", + "Supplier classification.": "Classifica\u00e7\u00e3o do Fornecedor.", + "Supplier database.": "Banco de dados do Fornecedor.", + "Tax Template for Purchase": "Modelo de Impostos para compra", + "Template of terms or contract.": "Modelo de termos ou contratos.", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Tools": "Ferramentas", + "Track Quotations received from Suppliers.": "Acompanhar cota\u00e7\u00f5es recebidos dos fornecedores.", + "Tree of item classification": "\u00c1rvore de classifica\u00e7\u00e3o de itens", + "Trend Analyzer": "Analisador de tend\u00eancia" +} \ No newline at end of file diff --git a/controllers/locale/pt-BR-py.json b/controllers/locale/pt-BR-py.json new file mode 100644 index 0000000000..3c9dd18b15 --- /dev/null +++ b/controllers/locale/pt-BR-py.json @@ -0,0 +1,6 @@ +{ + " cannot be 0": "n\u00e3o pode ser 0", + "Please enter valid ": "Por favor, insira v\u00e1lido", + "Please specify a valid": "Por favor, especifique um v\u00e1lido", + "Row": "Linha" +} \ No newline at end of file diff --git a/home/doctype/company_control/locale/pt-BR-doc.json b/home/doctype/company_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..77c527f8f1 --- /dev/null +++ b/home/doctype/company_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Company Control": "Controle da Empresa", + "Home": "In\u00edcio" +} \ No newline at end of file diff --git a/home/doctype/feed/locale/pt-BR-doc.json b/home/doctype/feed/locale/pt-BR-doc.json new file mode 100644 index 0000000000..c3b1a50a48 --- /dev/null +++ b/home/doctype/feed/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "Color": "Cor", + "Doc Name": "Nome do Documento", + "Doc Type": "Tipo do Documento", + "Feed": "Alimentar", + "Feed Type": "Tipo de alimenta\u00e7\u00e3o", + "Full Name": "Nome Completo", + "Home": "In\u00edcio", + "Subject": "Assunto" +} \ No newline at end of file diff --git a/home/doctype/home_control/locale/pt-BR-doc.json b/home/doctype/home_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..406e97e477 --- /dev/null +++ b/home/doctype/home_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Home": "In\u00edcio", + "Home Control": "In\u00edcio de Controle" +} \ No newline at end of file diff --git a/home/module_def/home/locale/pt-BR-doc.json b/home/module_def/home/locale/pt-BR-doc.json new file mode 100644 index 0000000000..c269b84509 --- /dev/null +++ b/home/module_def/home/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Activity": "Atividade", + "Attributions": "Atribui\u00e7\u00f5es", + "Desktop": "\u00c1rea de trabalho", + "Event Updates": "Atualiza\u00e7\u00f5es do Eento", + "Latest Updates": "\u00daltimas Atualiza\u00e7\u00f5es", + "My Company": "Minha Empresa", + "dashboard": "painel de instrumentos" +} \ No newline at end of file diff --git a/hr/doctype/appraisal/locale/pt-BR-doc.json b/hr/doctype/appraisal/locale/pt-BR-doc.json new file mode 100644 index 0000000000..bec74a5d70 --- /dev/null +++ b/hr/doctype/appraisal/locale/pt-BR-doc.json @@ -0,0 +1,28 @@ +{ + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Any other comments, noteworthy effort that should go in the records.": "Quaisquer outros coment\u00e1rios, esfor\u00e7o not\u00e1vel que deva ir para os registros.", + "Appraisal": "Avalia\u00e7\u00e3o", + "Appraisal Goals": "Metas de Avalia\u00e7\u00e3o", + "Appraisal Template": "Modelo de Avalia\u00e7\u00e3o", + "Calculate Total Score": "Calcular a Pontua\u00e7\u00e3o Total", + "Cancelled": "Cancelado", + "Comments": "Coment\u00e1rios", + "Company": "Empresa", + "Completed": "Conclu\u00eddo", + "Draft": "Rascunho", + "Employee Details": "Detalhes do Funcion\u00e1rio", + "End Date": "Data final", + "Fiscal Year": "Exerc\u00edcio fiscal", + "For Employee": "Para o Funcion\u00e1rio", + "For Employee Name": "Para Nome do Funcion\u00e1rio", + "Goals": "Metas", + "HR": "RH", + "Other Details": "Outros detalhes", + "Select template from which you want to get the Goals": "Selecione o modelo a partir do qual voc\u00ea deseja obter as Metas", + "Select the Employee for whom you are creating the Appraisal.": "Selecione o funcion\u00e1rio para quem voc\u00ea est\u00e1 criando a Avalia\u00e7\u00e3o.", + "Start Date": "Data de In\u00edcio", + "Status": "Estado", + "Submitted": "Enviado", + "Total Score (Out of 5)": "Pontua\u00e7\u00e3o total (sobre 5)" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_goal/locale/pt-BR-doc.json b/hr/doctype/appraisal_goal/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2e065aa1cf --- /dev/null +++ b/hr/doctype/appraisal_goal/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Appraisal Goal": "Meta de Avalia\u00e7\u00e3o", + "Goal": "Meta", + "HR": "RH", + "Key Responsibility Area": "\u00c1rea Chave de Responsabilidade", + "Score (0-5)": "Pontua\u00e7\u00e3o (0-5)", + "Score Earned": "Pontua\u00e7\u00e3o Obtida", + "Weightage (%)": "Peso (%)" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template/locale/pt-BR-doc.json b/hr/doctype/appraisal_template/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2c00a59fa6 --- /dev/null +++ b/hr/doctype/appraisal_template/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Appraisal Template": "Modelo de Avalia\u00e7\u00e3o", + "Appraisal Template Goal": "Meta do Modelo de Avalia\u00e7\u00e3o", + "Appraisal Template Title": "T\u00edtulo do Modelo de Avalia\u00e7\u00e3o", + "Description": "Descri\u00e7\u00e3o", + "HR": "RH", + "Total Points": "Total de pontos" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template/locale/pt-BR-py.json b/hr/doctype/appraisal_template/locale/pt-BR-py.json new file mode 100644 index 0000000000..86379c52be --- /dev/null +++ b/hr/doctype/appraisal_template/locale/pt-BR-py.json @@ -0,0 +1,4 @@ +{ + "Not": "N\u00e3o", + "Total (sum of) points distribution for all goals should be 100.": "Total (soma) da distribui\u00e7\u00e3o de pontos para todos os objetivos deve ser 100." +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template_goal/locale/pt-BR-doc.json b/hr/doctype/appraisal_template_goal/locale/pt-BR-doc.json new file mode 100644 index 0000000000..8aa2cba3b6 --- /dev/null +++ b/hr/doctype/appraisal_template_goal/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Appraisal Template Goal": "Meta do Modelo de Avalia\u00e7\u00e3o", + "HR": "RH", + "KRA": "KRA", + "Key Performance Area": "\u00c1rea Chave de Performance", + "Weightage (%)": "Peso (%)" +} \ No newline at end of file diff --git a/hr/doctype/attendance/locale/pt-BR-doc.json b/hr/doctype/attendance/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d3e63e968f --- /dev/null +++ b/hr/doctype/attendance/locale/pt-BR-doc.json @@ -0,0 +1,20 @@ +{ + "ATT": "ATT", + "Absent": "Ausente", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Attendance": "Comparecimento", + "Attendance Date": "Data de Comparecimento", + "Attendance Details": "Detalhes do Comparecimento", + "Company": "Empresa", + "Employee": "Funcion\u00e1rio", + "Employee Name": "Nome do Funcion\u00e1rio", + "Fiscal Year": "Exerc\u00edcio fiscal", + "HR": "RH", + "Half Day": "Meio Dia", + "Leave Type": "Tipo de Licen\u00e7as", + "Naming Series": "S\u00e9ries nomeadas", + "Present": "Apresentar", + "Status": "Estado", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema." +} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/pt-BR-doc.json b/hr/doctype/attendance_control_panel/locale/pt-BR-doc.json new file mode 100644 index 0000000000..641ee21c89 --- /dev/null +++ b/hr/doctype/attendance_control_panel/locale/pt-BR-doc.json @@ -0,0 +1,22 @@ +{ + "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "Todas as datas de comparecimento selecionadas entre a Data Inicial de Comparecimento e a Data Final de Comparecimento vir\u00e3o no modelo com a lista de funcion\u00e1rios.", + "Attendance Control Panel": "Painel de Controle de Comparecimento", + "Attendance From Date": "Data Inicial de Comparecimento", + "Attendance To Date": "Data Final de Comparecimento", + "Download Template": "Baixar o Modelo", + "File List": "Lista de Arquivos", + "Get Template": "Obter Modelo", + "HR": "RH", + "Import": "Importar", + "Import Date Format ": "Formato de importa\u00e7\u00e3o de data", + "Import Log": "Importar Log", + "Import Log1": "Importar Log1", + "Overwrite": "Sobrescrever", + "Selected Attendance date will comes in the attendance template.": "Data de comparecimento selecionada vir\u00e1 no modelo de comparecimento.", + "Upload Attendance Data": "Carregar dados de comparecimento", + "dd-mm-yyyy": "dd-mm-aaaa", + "dd/mm/yyyy": "dd/mm/aaaa", + "mm/dd/yy": "mm/dd/aa", + "mm/dd/yyyy": "mm/dd/aaaa", + "yyyy-mm-dd": "aaaa-mm-dd" +} \ No newline at end of file diff --git a/hr/doctype/branch/locale/pt-BR-doc.json b/hr/doctype/branch/locale/pt-BR-doc.json new file mode 100644 index 0000000000..139d5b963c --- /dev/null +++ b/hr/doctype/branch/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Branch": "Ramo", + "HR": "RH", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/hr/doctype/deduction_type/locale/pt-BR-doc.json b/hr/doctype/deduction_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..bc7e72787d --- /dev/null +++ b/hr/doctype/deduction_type/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Deduction Type": "Tipo de dedu\u00e7\u00e3o", + "Description": "Descri\u00e7\u00e3o", + "HR": "RH", + "Name": "Nome", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/hr/doctype/department/locale/pt-BR-doc.json b/hr/doctype/department/locale/pt-BR-doc.json new file mode 100644 index 0000000000..f2e6b5e65b --- /dev/null +++ b/hr/doctype/department/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Days for which Holidays are blocked for this department.": "Dias para que feriados s\u00e3o bloqueados para este departamento.", + "Department": "Departamento", + "HR": "RH", + "Leave Block List": "Deixe Lista de Bloqueios", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/hr/doctype/designation/locale/pt-BR-doc.json b/hr/doctype/designation/locale/pt-BR-doc.json new file mode 100644 index 0000000000..1be84577c3 --- /dev/null +++ b/hr/doctype/designation/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Designation": "Designa\u00e7\u00e3o", + "HR": "RH", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/hr/doctype/earning_type/locale/pt-BR-doc.json b/hr/doctype/earning_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..7982e33818 --- /dev/null +++ b/hr/doctype/earning_type/locale/pt-BR-doc.json @@ -0,0 +1,11 @@ +{ + "Description": "Descri\u00e7\u00e3o", + "Earning Type": "Tipo de Ganho", + "Exemption Limit": "Limite de isen\u00e7\u00e3o", + "HR": "RH", + "Name": "Nome", + "No": "N\u00e3o", + "Taxable": "Tribut\u00e1vel", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Yes": "Sim" +} \ No newline at end of file diff --git a/hr/doctype/employee/locale/pt-BR-doc.json b/hr/doctype/employee/locale/pt-BR-doc.json new file mode 100644 index 0000000000..6edeb7cf83 --- /dev/null +++ b/hr/doctype/employee/locale/pt-BR-doc.json @@ -0,0 +1,117 @@ +{ + "To setup, please go to Setup > Naming Series": "Para configurar, por favor, v\u00e1 para Configura\u00e7\u00e3o > S\u00e9ries Nomeadas", + "A+": "A+", + "A-": "A-", + "AB+": "AB+", + "AB-": "AB-", + "Active": "Ativo", + "Applicable Holiday List": "Lista de F\u00e9rias Aplic\u00e1vel", + "B+": "B+", + "B-": "B-", + "Bank": "Banco", + "Bank A/C No.": "N\u00ba Cta. Banc\u00e1ria", + "Bank Name": "Nome do Banco", + "Basic Information": "Informa\u00e7\u00f5es B\u00e1sicas", + "Better Prospects": "Melhores perspectivas", + "Bio": "Bio", + "Blood Group": "Grupo sangu\u00edneo", + "Branch": "Ramo", + "Career History": "Hist\u00f3rico da carreira", + "Cash": "Numer\u00e1rio", + "Cell Number": "Telefone Celular", + "Cheque": "Cheque", + "Company": "Empresa", + "Contact Details": "Detalhes do Contato", + "Contract End Date": "Data Final do contrato", + "Current Accommodation Type": "Tipo de Acomoda\u00e7\u00e3o atual", + "Current Address": "Endere\u00e7o Atual", + "Date Of Retirement": "Data da aposentadoria", + "Date of Birth": "Data de Nascimento", + "Date of Issue": "Data de Emiss\u00e3o", + "Date of Joining": "Data da Efetiva\u00e7\u00e3o", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "Divorced": "Divorciado", + "EMP/": "EMP /", + "ESIC CARD No": "N\u00ba CART\u00c3O ESIC", + "Educational Qualification": "Qualifica\u00e7\u00e3o Educacional", + "Educational Qualification Details": "Detalhes da Qualifica\u00e7\u00e3o Educacional", + "Email (By company)": "E-mail (por empresa)", + "Emergency Contact Details": "Detalhes do contato de emerg\u00eancia", + "Emergency Phone Number": "N\u00famero do telefone de emerg\u00eancia", + "Employee": "Funcion\u00e1rio", + "Employee External Work History": "Hist\u00f3rico de trabalho externo do Funcion\u00e1rio", + "Employee Internal Work Historys": "Hist\u00f3rico de trabalho interno do Funcion\u00e1rio", + "Employee Number": "N\u00famero do Funcion\u00e1rio", + "Employment Details": "Detalhes de emprego", + "Employment Type": "Tipo de emprego", + "Encashment Date": "Data da cobran\u00e7a", + "Exit": "Sair", + "Exit Interview Details": "Detalhes da Entrevista de sa\u00edda", + "Family Background": "Antecedentes familiares", + "Feedback": "Coment\u00e1rios", + "Female": "Feminino", + "File List": "Lista de Arquivos", + "Final Confirmation Date": "Data final de confirma\u00e7\u00e3o", + "Full Name": "Nome Completo", + "Gender": "Sexo", + "Grade": "Grau", + "Gratuity LIC ID": "ID LIC gratuidade", + "HR": "RH", + "Health Concerns": "Preocupa\u00e7\u00f5es com a Sa\u00fade", + "Health Details": "Detalhes sobre a Sa\u00fade", + "Held On": "Realizada em", + "Here you can maintain family details like name and occupation of parent, spouse and children": "Aqui voc\u00ea pode manter detalhes familiares como o nome e ocupa\u00e7\u00e3o do c\u00f4njuge, pai e filhos", + "Here you can maintain height, weight, allergies, medical concerns etc": "Aqui voc\u00ea pode manter a altura, peso, alergias, preocupa\u00e7\u00f5es m\u00e9dica, etc", + "History In Company": "Hist\u00f3rico na Empresa", + "Holiday List": "Lista de feriado", + "Image": "Imagem", + "Image View": "Ver imagem", + "Job Profile": "Perfil da vaga", + "Leave Encashed?": "Licen\u00e7as cobradas?", + "Left": "Esquerda", + "Male": "Masculino", + "Marital Status": "Estado civil", + "Married": "Casado", + "Mr": "Sr.", + "Ms": "Sra.", + "Naming Series": "S\u00e9ries nomeadas", + "New Workplace": "Novo local de trabalho", + "No": "N\u00e3o", + "Notice - Number of Days": "Aviso - n\u00famero de dias", + "O+": "O+", + "O-": "O-", + "Owned": "Pertencente", + "PAN Number": "N\u00famero PAN", + "PF Number": "N\u00famero PF", + "Passport Number": "N\u00famero do Passaporte", + "Permanent Accommodation Type": "Tipo de Alojamento Permanente", + "Permanent Address": "Endere\u00e7o permanente", + "Person To Be Contacted": "Pessoa a ser contatada", + "Personal Details": "Detalhes pessoais", + "Personal Email": "E-mail pessoal", + "Place of Issue": "Local de Emiss\u00e3o", + "Previous Work Experience": "Experi\u00eancia anterior de trabalho", + "Provide email id registered in company": "Fornecer Endere\u00e7o de E-mail registrado na empresa", + "Reason for Leaving": "Motivo da sa\u00edda", + "Reason for Resignation": "Motivo para Demiss\u00e3o", + "Relation": "Rela\u00e7\u00e3o", + "Relieving Date": "Data da Libera\u00e7\u00e3o", + "Rented": "Alugado", + "Reports to": "Relat\u00f3rios para", + "Resignation Letter Date": "Data da carta de demiss\u00e3o", + "Salary Information": "Informa\u00e7\u00e3o sobre sal\u00e1rio", + "Salary Mode": "Modo de sal\u00e1rio", + "Salutation": "Sauda\u00e7\u00e3o", + "Scheduled Confirmation Date": "Data de Confirma\u00e7\u00e3o agendada", + "Short biography for website and other publications.": "Breve biografia para o site e outras publica\u00e7\u00f5es.", + "Single": "\u00danico", + "Status": "Estado", + "System User (login) ID. If set, it will become default for all HR forms.": "Identifica\u00e7\u00e3o do usu\u00e1rio do sistema (login). Se for marcado, ele vai se tornar padr\u00e3o para todos os formul\u00e1rios de RH.", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "User ID": "ID de Usu\u00e1rio", + "Valid Upto": "V\u00e1lido at\u00e9", + "Widowed": "Vi\u00favo(a)", + "Yes": "Sim", + "You can enter any date manually": "Voc\u00ea pode entrar qualquer data manualmente" +} \ No newline at end of file diff --git a/hr/doctype/employee_education/locale/pt-BR-doc.json b/hr/doctype/employee_education/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4658d68c71 --- /dev/null +++ b/hr/doctype/employee_education/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Class / Percentage": "Classe / Percentual", + "Employee Education": "Escolaridade do Funcion\u00e1rio", + "Graduate": "P\u00f3s-gradua\u00e7\u00e3o", + "HR": "RH", + "Level": "N\u00edvel", + "Major/Optional Subjects": "Assuntos Principais / Opcionais", + "Post Graduate": "P\u00f3s-Gradua\u00e7\u00e3o", + "Qualification": "Qualifica\u00e7\u00e3o", + "School/University": "Escola / Universidade", + "Under Graduate": "Em Gradua\u00e7\u00e3o", + "Year of Passing": "Ano de Passagem" +} \ No newline at end of file diff --git a/hr/doctype/employee_external_work_history/locale/pt-BR-doc.json b/hr/doctype/employee_external_work_history/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e81391e907 --- /dev/null +++ b/hr/doctype/employee_external_work_history/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "Address": "Endere\u00e7o", + "Company": "Empresa", + "Contact": "Contato", + "Designation": "Designa\u00e7\u00e3o", + "Employee External Work History": "Hist\u00f3rico de trabalho externo do Funcion\u00e1rio", + "HR": "RH", + "Salary": "Sal\u00e1rio", + "Total Experience": "Experi\u00eancia total" +} \ No newline at end of file diff --git a/hr/doctype/employee_internal_work_history/locale/pt-BR-doc.json b/hr/doctype/employee_internal_work_history/locale/pt-BR-doc.json new file mode 100644 index 0000000000..95f153a95d --- /dev/null +++ b/hr/doctype/employee_internal_work_history/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "Branch": "Ramo", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "Employee Internal Work History": "Hist\u00f3rico de trabalho interno do Funcion\u00e1rio", + "From Date": "A partir da data", + "Grade": "Grau", + "HR": "RH", + "To Date": "At\u00e9 a Data" +} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/pt-BR-doc.json b/hr/doctype/employee_training/locale/pt-BR-doc.json new file mode 100644 index 0000000000..474dce3c65 --- /dev/null +++ b/hr/doctype/employee_training/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Certificate": "Certid\u00e3o", + "Duration": "Dura\u00e7\u00e3o", + "Employee Training": "Treinamento de funcion\u00e1rios", + "HR": "RH", + "Institute / Conducted By": "Instituto / Conduzido por", + "Location": "Localiza\u00e7\u00e3o", + "Program / Seminar Title": "Programa / T\u00edtulo do Semin\u00e1rio" +} \ No newline at end of file diff --git a/hr/doctype/employment_type/locale/pt-BR-doc.json b/hr/doctype/employment_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4f46095557 --- /dev/null +++ b/hr/doctype/employment_type/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Employment Type": "Tipo de emprego", + "HR": "RH", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim/locale/pt-BR-doc.json b/hr/doctype/expense_claim/locale/pt-BR-doc.json new file mode 100644 index 0000000000..ecd7e6be00 --- /dev/null +++ b/hr/doctype/expense_claim/locale/pt-BR-doc.json @@ -0,0 +1,22 @@ +{ + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Approval Status": "Estado da Aprova\u00e7\u00e3o", + "Approved": "Aprovado", + "Approver": "Aprovador", + "Company": "Empresa", + "Draft": "Rascunho", + "Employee Name": "Nome do Funcion\u00e1rio", + "Employees Email Id": "Endere\u00e7os de e-mail dos Funcion\u00e1rios ", + "Expense Claim": "Pedido de Reembolso de Despesas", + "Expense Claim Details": "Detalhes do Pedido de Reembolso de Despesas", + "Expense Details": "Detalhes da despesa", + "Fiscal Year": "Exerc\u00edcio fiscal", + "From Employee": "De Empregado", + "HR": "RH", + "Posting Date": "Data da Postagem", + "Rejected": "Rejeitado", + "Remark": "Observa\u00e7\u00e3o", + "Total Claimed Amount": "Montante Total Requerido", + "Total Sanctioned Amount": "Valor Total Sancionado" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim_detail/locale/pt-BR-doc.json b/hr/doctype/expense_claim_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..aa92616a2f --- /dev/null +++ b/hr/doctype/expense_claim_detail/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Claim Amount": "Valor Requerido", + "Description": "Descri\u00e7\u00e3o", + "Expense Claim Detail": "Detalhe do Pedido de Reembolso de Despesas", + "Expense Claim Type": "Tipo de Pedido de Reembolso de Despesas", + "Expense Date": "Data da despesa", + "HR": "RH", + "Sanctioned Amount": "Quantidade sancionada" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim_type/locale/pt-BR-doc.json b/hr/doctype/expense_claim_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..404c54ae26 --- /dev/null +++ b/hr/doctype/expense_claim_type/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Description": "Descri\u00e7\u00e3o", + "Expense Claim Type": "Tipo de Pedido de Reembolso de Despesas", + "HR": "RH" +} \ No newline at end of file diff --git a/hr/doctype/grade/locale/pt-BR-doc.json b/hr/doctype/grade/locale/pt-BR-doc.json new file mode 100644 index 0000000000..905b7ff0bd --- /dev/null +++ b/hr/doctype/grade/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Grade": "Grau", + "HR": "RH", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/hr/doctype/holiday/locale/pt-BR-doc.json b/hr/doctype/holiday/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a49961c404 --- /dev/null +++ b/hr/doctype/holiday/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Date": "Data", + "Description": "Descri\u00e7\u00e3o", + "HR": "RH", + "Holiday": "Feriado" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/pt-BR-doc.json b/hr/doctype/holiday_block_list/locale/pt-BR-doc.json new file mode 100644 index 0000000000..69249a7125 --- /dev/null +++ b/hr/doctype/holiday_block_list/locale/pt-BR-doc.json @@ -0,0 +1,16 @@ +{ + "Allow Users": "Permitir que os usu\u00e1rios", + "Allow the following users to make Leave Applications for block days.": "Permitir que os usu\u00e1rios a seguir para fazer aplica\u00e7\u00f5es deixam para os dias de bloco.", + "Applies to Company": "Aplica-se a Empresa", + "Block Days": "Dias bloco", + "Block Holidays on important days.": "Bloquear feriados em dias importantes.", + "Company": "Empresa", + "HR": "RH", + "Holiday Block List": "Lista de Bloqueios de f\u00e9rias", + "Holiday Block List Allowed": "Lista de feriado Bloco admitidos", + "Holiday Block List Dates": "Datas de f\u00e9rias Lista de Bloqueios", + "Holiday Block List Name": "Nome de f\u00e9rias Lista de Bloqueios", + "If not checked, the list will have to be added to each Department where it has to be applied.": "Se n\u00e3o for controlada, a lista dever\u00e1 ser adicionado a cada departamento onde tem de ser aplicado.", + "Stop users from making Leave Applications on following days.": "Pare de usu\u00e1rios de fazer aplica\u00e7\u00f5es deixam nos dias seguintes.", + "Year": "Ano" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_allow/locale/pt-BR-doc.json b/hr/doctype/holiday_block_list_allow/locale/pt-BR-doc.json new file mode 100644 index 0000000000..11d692db69 --- /dev/null +++ b/hr/doctype/holiday_block_list_allow/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Allow User": "Permitir que o usu\u00e1rio", + "HR": "RH", + "Holiday Block List Allow": "Lista de Bloqueios de f\u00e9rias Permitir" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/pt-BR-doc.json b/hr/doctype/holiday_block_list_date/locale/pt-BR-doc.json new file mode 100644 index 0000000000..83812b0b9b --- /dev/null +++ b/hr/doctype/holiday_block_list_date/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Block Date": "Bloquear Data", + "HR": "RH", + "Holiday Block List Date": "Data feriado Lista de Bloqueios", + "Reason": "Motivo" +} \ No newline at end of file diff --git a/hr/doctype/holiday_list/locale/pt-BR-doc.json b/hr/doctype/holiday_list/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a6d6276f1f --- /dev/null +++ b/hr/doctype/holiday_list/locale/pt-BR-doc.json @@ -0,0 +1,19 @@ +{ + "Clear Table": "Limpar Tabela", + "Default": "Padr\u00e3o", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Friday": "Sexta-feira", + "Get Weekly Off Dates": "Obter datas de descanso semanal", + "HR": "RH", + "Holiday List": "Lista de feriado", + "Holiday List Name": "Nome da lista de feriados", + "Holidays": "Feriados", + "Monday": "Segunda-feira", + "Saturday": "S\u00e1bado", + "Sunday": "Domingo", + "Thursday": "Quinta-feira", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Tuesday": "Ter\u00e7a-feira", + "Wednesday": "Quarta-feira", + "Weekly Off": "Descanso semanal" +} \ No newline at end of file diff --git a/hr/doctype/job_applicant/locale/pt-BR-doc.json b/hr/doctype/job_applicant/locale/pt-BR-doc.json new file mode 100644 index 0000000000..67eac0aa14 --- /dev/null +++ b/hr/doctype/job_applicant/locale/pt-BR-doc.json @@ -0,0 +1,15 @@ +{ + "Applicant Name": "Nome do Requerente", + "Applicant for a Job": "Candidato a um Emprego", + "Email Id": "Endere\u00e7o de e-mail", + "File List": "Lista de Arquivos", + "HR": "RH", + "Hold": "Segurar", + "Job Applicant": "Candidato a emprego", + "Job Opening": "Vaga de emprego", + "Open": "Abrir", + "Rejected": "Rejeitado", + "Replied": "Respondeu", + "Status": "Estado", + "Thread HTML": "T\u00f3pico HTML" +} \ No newline at end of file diff --git a/hr/doctype/job_opening/locale/pt-BR-doc.json b/hr/doctype/job_opening/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d76dce5f7e --- /dev/null +++ b/hr/doctype/job_opening/locale/pt-BR-doc.json @@ -0,0 +1,11 @@ +{ + "Closed": "Fechado", + "Description": "Descri\u00e7\u00e3o", + "Description of a Job Opening": "Descri\u00e7\u00e3o de uma vaga de emprego", + "HR": "RH", + "Job Opening": "Vaga de emprego", + "Job Title": "Cargo", + "Job profile, qualifications required etc.": "Perfil da vaga, qualifica\u00e7\u00f5es exigidas, etc", + "Open": "Abrir", + "Status": "Estado" +} \ No newline at end of file diff --git a/hr/doctype/leave_allocation/locale/pt-BR-doc.json b/hr/doctype/leave_allocation/locale/pt-BR-doc.json new file mode 100644 index 0000000000..029f6c8de2 --- /dev/null +++ b/hr/doctype/leave_allocation/locale/pt-BR-doc.json @@ -0,0 +1,17 @@ +{ + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Carry Forward": "Encaminhar", + "Carry Forwarded Leaves": "Encaminhar Licen\u00e7as", + "Description": "Descri\u00e7\u00e3o", + "Employee": "Funcion\u00e1rio", + "Employee Name": "Nome do Funcion\u00e1rio", + "Fiscal Year": "Exerc\u00edcio fiscal", + "HR": "RH", + "Leave Allocation": "Aloca\u00e7\u00e3o de Licen\u00e7as", + "Leave Type": "Tipo de Licen\u00e7as", + "New Leaves Allocated": "Novas Licen\u00e7as alocadas", + "Posting Date": "Data da Postagem", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "Total Leaves Allocated": "Total de licen\u00e7as alocadas" +} \ No newline at end of file diff --git a/hr/doctype/leave_application/locale/pt-BR-doc.json b/hr/doctype/leave_application/locale/pt-BR-doc.json new file mode 100644 index 0000000000..ca6cd4cb4d --- /dev/null +++ b/hr/doctype/leave_application/locale/pt-BR-doc.json @@ -0,0 +1,28 @@ +{ + "Amended From": "Corrigido De", + "Apply / Approve Leaves": "Aplicar / Aprovar Licen\u00e7as", + "Approved": "Aprovado", + "Company": "Empresa", + "Employee": "Funcion\u00e1rio", + "Employee Name": "Nome do Funcion\u00e1rio", + "File List": "Lista de Arquivos", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Follow via Email": "Siga por e-mail", + "From Date": "A partir da data", + "HR": "RH", + "Half Day": "Meio Dia", + "Leave Application": "Solicita\u00e7\u00e3o de Licen\u00e7as", + "Leave Approver": "Aprovador de Licen\u00e7as", + "Leave Balance Before Application": "Saldo de Licen\u00e7as antes da solicita\u00e7\u00e3o", + "Leave Type": "Tipo de Licen\u00e7as", + "Leave can be approved by users with Role, \"Leave Approver\"": "A licen\u00e7a pode ser aprovado por usu\u00e1rios com fun\u00e7\u00e3o de "Aprovador de Licen\u00e7as"", + "Letter Head": "Timbrado", + "More Info": "Mais informa\u00e7\u00f5es", + "Open": "Abrir", + "Posting Date": "Data da Postagem", + "Reason": "Motivo", + "Rejected": "Rejeitado", + "Status": "Estado", + "To Date": "At\u00e9 a Data", + "Total Leave Days": "Total de dias de licen\u00e7a" +} \ No newline at end of file diff --git a/hr/doctype/leave_application/locale/pt-BR-py.json b/hr/doctype/leave_application/locale/pt-BR-py.json new file mode 100644 index 0000000000..3eac51810e --- /dev/null +++ b/hr/doctype/leave_application/locale/pt-BR-py.json @@ -0,0 +1,11 @@ +{ + " (Half Day)": "(Meio Dia)", + "Cannot approve leave as you are not authorized to approve leaves on Block Dates.": "N\u00e3o pode aprovar deixar que voc\u00ea n\u00e3o est\u00e1 autorizado a aprovar folhas em datas Block.", + "Employee": "Funcion\u00e1rio", + "Holiday": "Feriado", + "Leave Application": "Solicita\u00e7\u00e3o de Licen\u00e7as", + "Leave Blocked": "Deixe Bloqueados", + "Leave by": "Deixe por", + "New Leave Application": "Aplica\u00e7\u00e3o deixar Nova", + "Warning: Leave application contains following block dates": "Aviso: pedido de f\u00e9rias cont\u00e9m as datas de blocos seguintes" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list/locale/pt-BR-doc.json b/hr/doctype/leave_block_list/locale/pt-BR-doc.json new file mode 100644 index 0000000000..faf57f94c0 --- /dev/null +++ b/hr/doctype/leave_block_list/locale/pt-BR-doc.json @@ -0,0 +1,16 @@ +{ + "Allow Users": "Permitir que os usu\u00e1rios", + "Allow the following users to approve Leave Applications for block days.": "Permitir que os usu\u00e1rios a seguir para aprovar aplica\u00e7\u00f5es deixam para os dias de bloco.", + "Applies to Company": "Aplica-se a Empresa", + "Block Days": "Dias bloco", + "Block Holidays on important days.": "Bloquear feriados em dias importantes.", + "Company": "Empresa", + "HR": "RH", + "If not checked, the list will have to be added to each Department where it has to be applied.": "Se n\u00e3o for controlada, a lista dever\u00e1 ser adicionado a cada departamento onde tem de ser aplicado.", + "Leave Block List": "Deixe Lista de Bloqueios", + "Leave Block List Allowed": "Deixe Lista de Bloqueios admitidos", + "Leave Block List Dates": "Deixe as datas Lista de Bloqueios", + "Leave Block List Name": "Deixe o nome Lista de Bloqueios", + "Stop users from making Leave Applications on following days.": "Pare de usu\u00e1rios de fazer aplica\u00e7\u00f5es deixam nos dias seguintes.", + "Year": "Ano" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list/locale/pt-BR-py.json b/hr/doctype/leave_block_list/locale/pt-BR-py.json new file mode 100644 index 0000000000..d2b6e696c3 --- /dev/null +++ b/hr/doctype/leave_block_list/locale/pt-BR-py.json @@ -0,0 +1,4 @@ +{ + "Block Date": "Bloquear Data", + "Date is repeated": "Data \u00e9 repetido" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list_allow/locale/pt-BR-doc.json b/hr/doctype/leave_block_list_allow/locale/pt-BR-doc.json new file mode 100644 index 0000000000..1b58e79b28 --- /dev/null +++ b/hr/doctype/leave_block_list_allow/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Allow User": "Permitir que o usu\u00e1rio", + "HR": "RH", + "Leave Block List Allow": "Deixe Lista de Bloqueios Permitir" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list_date/locale/pt-BR-doc.json b/hr/doctype/leave_block_list_date/locale/pt-BR-doc.json new file mode 100644 index 0000000000..05810a49f6 --- /dev/null +++ b/hr/doctype/leave_block_list_date/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Block Date": "Bloquear Data", + "HR": "RH", + "Leave Block List Date": "Deixe Data Lista de Bloqueios", + "Reason": "Motivo" +} \ No newline at end of file diff --git a/hr/doctype/leave_control_panel/locale/pt-BR-doc.json b/hr/doctype/leave_control_panel/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3af594b0b6 --- /dev/null +++ b/hr/doctype/leave_control_panel/locale/pt-BR-doc.json @@ -0,0 +1,20 @@ +{ + "Allocate": "Alocar", + "Branch": "Ramo", + "Carry Forward": "Encaminhar", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "Employee Type": "Tipo de empregado", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Grade": "Grau", + "HR": "RH", + "Leave Control Panel": "Painel de Controle de Licen\u00e7as", + "Leave Type": "Tipo de Licen\u00e7as", + "Leave blank if considered for all branches": "Deixe em branco se considerado para todos os ramos", + "Leave blank if considered for all departments": "Deixe em branco se considerado para todos os departamentos", + "Leave blank if considered for all designations": "Deixe em branco se considerado para todas as designa\u00e7\u00f5es", + "Leave blank if considered for all employee types": "Deixe em branco se considerado para todos os tipos de empregados", + "Leave blank if considered for all grades": "Deixe em branco se considerado para todos os graus", + "New Leaves Allocated (In Days)": "Novas Licen\u00e7as alocadas (em dias)", + "Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year": "Por favor selecione Encaminhar se voc\u00ea tamb\u00e9m quer incluir o saldo de licen\u00e7as do ano fiscal anterior neste ano fiscal" +} \ No newline at end of file diff --git a/hr/doctype/leave_type/locale/pt-BR-doc.json b/hr/doctype/leave_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..856439ee74 --- /dev/null +++ b/hr/doctype/leave_type/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "HR": "RH", + "Is Carry Forward": "\u00c9 encaminhado", + "Is Encash": "\u00c9 cobran\u00e7a", + "Is LWP": "\u00c9 LWP", + "Leave Type": "Tipo de Licen\u00e7as", + "Leave Type Name": "Nome do Tipo de Licen\u00e7a", + "Max Days Leave Allowed": "Per\u00edodo m\u00e1ximo de Licen\u00e7a", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/pt-BR-doc.json b/hr/doctype/other_income_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..be0f530c58 --- /dev/null +++ b/hr/doctype/other_income_detail/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "Actual Amount": "Valor Real", + "Eligible Amount": "Montante eleg\u00edvel", + "HR": "RH", + "Max. Limit": "Max. Limitar", + "Modified Amount": "Quantidade modificada", + "Other Income Detail": "Detalhe sobre Outras Receitas", + "Particulars": "Caracter\u00edsticas", + "Under Section": "Segundo a Se\u00e7\u00e3o" +} \ No newline at end of file diff --git a/hr/doctype/salary_manager/locale/pt-BR-doc.json b/hr/doctype/salary_manager/locale/pt-BR-doc.json new file mode 100644 index 0000000000..8b8fe7e2a5 --- /dev/null +++ b/hr/doctype/salary_manager/locale/pt-BR-doc.json @@ -0,0 +1,21 @@ +{ + "Activity Log": "Log de Atividade", + "Branch": "Ramo", + "Check if you want to send salary slip in mail to each employee while submitting salary slip": "Marque se voc\u00ea quiser enviar a folha de pagamento pelo correio a cada empregado ao enviar a folha de pagamento", + "Company": "Empresa", + "Create Bank Voucher for the total salary paid for the above selected criteria": "Criar Comprovante Banc\u00e1rio para o sal\u00e1rio total pago para os crit\u00e9rios acima selecionados", + "Create Salary Slip": "Criar Folha de Pagamento", + "Creates salary slip for above mentioned criteria.": "Cria folha de pagamento para os crit\u00e9rios acima mencionados.", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "Document Description": "Descri\u00e7\u00e3o do documento", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Grade": "Grau", + "HR": "RH", + "Make Bank Voucher": "Fazer Comprovante Banc\u00e1rio", + "Month": "M\u00eas", + "Salary Manager": "Gerenciador de sal\u00e1rio", + "Send Email": "Enviar E-mail", + "Submit Salary Slip": "Enviar folha de pagamento", + "Submit all salary slips for the above selected criteria": "Enviar todas as folhas de pagamento para os crit\u00e9rios acima selecionados" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip/locale/pt-BR-doc.json b/hr/doctype/salary_slip/locale/pt-BR-doc.json new file mode 100644 index 0000000000..9940b32ffb --- /dev/null +++ b/hr/doctype/salary_slip/locale/pt-BR-doc.json @@ -0,0 +1,39 @@ +{ + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Arrear Amount": "Quantidade em atraso", + "Bank Account No.": "N\u00ba Conta Banc\u00e1ria", + "Bank Name": "Nome do Banco", + "Branch": "Ramo", + "Company": "Empresa", + "Deduction": "Dedu\u00e7\u00e3o", + "Deductions": "Dedu\u00e7\u00f5es", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "ESIC No.": "N\u00ba ESIC.", + "Earning": "Ganho", + "Earning & Deduction": "Ganho & Dedu\u00e7\u00e3o", + "Email": "E-mail", + "Employee": "Funcion\u00e1rio", + "Employee Name": "Nome do Funcion\u00e1rio", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Grade": "Grau", + "Gross Pay": "Sal\u00e1rio bruto", + "Gross Pay + Arrear Amount +Encashment Amount - Total Deduction": "Sal\u00e1rio bruto + Valor em atraso + Valor de cobran\u00e7a - Dedu\u00e7\u00e3o Total", + "HR": "RH", + "Leave Encashment Amount": "Valor das Licen\u00e7as cobradas", + "Leave Without Pay": "Licen\u00e7a sem pagamento", + "Letter Head": "Timbrado", + "Month": "M\u00eas", + "Net Pay": "Pagamento L\u00edquido", + "Net Pay (in words) will be visible once you save the Salary Slip.": "Pagamento l\u00edquido (por extenso) ser\u00e1 vis\u00edvel quando voc\u00ea salvar a folha de pagamento.", + "PF No.": "N\u00ba PF.", + "Payment days": "Dias de pagamento", + "Rounded Total": "Total arredondado", + "Salary Slip": "Folha de pagamento", + "Salary Structure Earnings": "Ganhos da Estrutura Salarial", + "Total Deduction": "Dedu\u00e7\u00e3o Total", + "Total days in month": "Total de dias no m\u00eas", + "Total in words": "Total por extenso", + "Totals": "Totais" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip_deduction/locale/pt-BR-doc.json b/hr/doctype/salary_slip_deduction/locale/pt-BR-doc.json new file mode 100644 index 0000000000..28cacd6a53 --- /dev/null +++ b/hr/doctype/salary_slip_deduction/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Amount": "Quantidade", + "Depends on LWP": "Dependem do LWP", + "HR": "RH", + "Modified Amount": "Quantidade modificada", + "Salary Slip Deduction": "Dedu\u00e7\u00e3o da folha de pagamento", + "Type": "Tipo" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip_earning/locale/pt-BR-doc.json b/hr/doctype/salary_slip_earning/locale/pt-BR-doc.json new file mode 100644 index 0000000000..7aa4b2d1b8 --- /dev/null +++ b/hr/doctype/salary_slip_earning/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Amount": "Quantidade", + "Depends on LWP": "Dependem do LWP", + "HR": "RH", + "Modified Amount": "Quantidade modificada", + "Salary Slip Earning": "Ganhos da folha de pagamento", + "Type": "Tipo" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure/locale/pt-BR-doc.json b/hr/doctype/salary_structure/locale/pt-BR-doc.json new file mode 100644 index 0000000000..af8a8876b5 --- /dev/null +++ b/hr/doctype/salary_structure/locale/pt-BR-doc.json @@ -0,0 +1,27 @@ +{ + "Branch": "Ramo", + "CTC": "CTC", + "Company": "Empresa", + "Cost to Company": "Custo para Empresa", + "Deduction": "Dedu\u00e7\u00e3o", + "Deduction1": "Deduction1", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "Earning": "Ganho", + "Earning & Deduction": "Ganho & Dedu\u00e7\u00e3o", + "Earning1": "Earning1", + "Employee": "Funcion\u00e1rio", + "Employee Name": "Nome do Funcion\u00e1rio", + "From Date": "A partir da data", + "Grade": "Grau", + "HR": "RH", + "Is Active": "\u00c9 Ativo", + "Net Pay": "Pagamento L\u00edquido", + "No": "N\u00e3o", + "Salary Structure": "Estrutura Salarial", + "To Date": "At\u00e9 a Data", + "Total Deduction": "Dedu\u00e7\u00e3o Total", + "Total Earning": "Total de Ganhos", + "Yes": "Sim", + "You can create more earning and deduction type from Setup --> HR": "Voc\u00ea pode criar mais tipos de Ganhos e Dedu\u00e7\u00f5es a partir de Configura\u00e7\u00e3o -> RH" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure_deduction/locale/pt-BR-doc.json b/hr/doctype/salary_structure_deduction/locale/pt-BR-doc.json new file mode 100644 index 0000000000..41bc395b94 --- /dev/null +++ b/hr/doctype/salary_structure_deduction/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Amount": "Quantidade", + "Depend on LWP": "Depende do LWP", + "HR": "RH", + "Salary Structure Deduction": "Dedu\u00e7\u00e3o da Estrutura Salarial", + "Type": "Tipo" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure_earning/locale/pt-BR-doc.json b/hr/doctype/salary_structure_earning/locale/pt-BR-doc.json new file mode 100644 index 0000000000..38addd1ab0 --- /dev/null +++ b/hr/doctype/salary_structure_earning/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Amount": "Quantidade", + "Depend on LWP": "Depende do LWP", + "HR": "RH", + "Salary Structure Earning": "Ganho da Estrutura Salarial", + "Type": "Tipo" +} \ No newline at end of file diff --git a/hr/module_def/hr/locale/pt-BR-doc.json b/hr/module_def/hr/locale/pt-BR-doc.json new file mode 100644 index 0000000000..0e73e1b7c5 --- /dev/null +++ b/hr/module_def/hr/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Applicant for a Job": "Candidato a um Emprego", + "Apply / Approve Leaves": "Aplicar / Aprovar Licen\u00e7as", + "Block Holidays on important days.": "Bloquear feriados em dias importantes.", + "Description of a Job Opening": "Descri\u00e7\u00e3o de uma vaga de emprego", + "Employee Leave Balance": "Equil\u00edbrio Leave empregado", + "Human Resources Home": "In\u00edcio de Recursos Humanos" +} \ No newline at end of file diff --git a/hr/page/hr_home/locale/pt-BR-js.json b/hr/page/hr_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..0393187578 --- /dev/null +++ b/hr/page/hr_home/locale/pt-BR-js.json @@ -0,0 +1,59 @@ +{ + "Allocate leaves for the year.": "Alocar licen\u00e7as para o ano.", + "Applicant for a Job (extracted from jobs email).": "Candidato a um Emprego (extra\u00eddo de e-mail empregos).", + "Applications for leave.": "Pedidos de licen\u00e7a.", + "Appraisal": "Avalia\u00e7\u00e3o", + "Appraisal Template": "Modelo de Avalia\u00e7\u00e3o", + "Attendance": "Comparecimento", + "Attendance record.": "Registro de comparecimento.", + "Block leave applications by department.": "Bloquear deixar aplica\u00e7\u00f5es por departamento.", + "Branch": "Ramo", + "Claims for expenses made on behalf of the organization.": "Os pedidos de reembolsos por despesas feitas em favor da organiza\u00e7\u00e3o.", + "Company branches.": "Filiais da Empresa.", + "Company departments.": "Departamentos da Empresa.", + "Deduction Type": "Tipo de dedu\u00e7\u00e3o", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "Documents": "Documentos", + "Earning Type": "Tipo de Ganho", + "Employee": "Funcion\u00e1rio", + "Employee Designation.": "Designa\u00e7\u00e3o empregado.", + "Employee Leave Balance": "Equil\u00edbrio Leave empregado", + "Employee Setup": "Configura\u00e7\u00e3o do Funcion\u00e1rio", + "Employee grades": "Notas do funcion\u00e1rio", + "Employee records.": "Registros de funcion\u00e1rios.", + "Employment Type": "Tipo de emprego", + "Expense Claim": "Pedido de Reembolso de Despesas", + "Expense Claim Type": "Tipo de Pedido de Reembolso de Despesas", + "Generate Salary Slips": "Gerar folhas de pagamento", + "Grade": "Grau", + "Holiday List": "Lista de feriado", + "Job Applicant": "Candidato a emprego", + "Job Opening": "Vaga de emprego", + "Leave Allocation": "Aloca\u00e7\u00e3o de Licen\u00e7as", + "Leave Allocation Tool": "Ferramenta de Aloca\u00e7\u00e3o de Licen\u00e7as", + "Leave Application": "Solicita\u00e7\u00e3o de Licen\u00e7as", + "Leave Block List": "Deixe Lista de Bloqueios", + "Leave Setup": "Configurar Licen\u00e7as", + "Leave Type": "Tipo de Licen\u00e7as", + "Leave allocations.": "Aloca\u00e7\u00f5es de Licen\u00e7as.", + "List of holidays.": "Lista de feriados.", + "Masters": "Cadastros", + "Monthly salary statement.": "Declara\u00e7\u00e3o salarial mensal.", + "Monthly salary template.": "Modelo de declara\u00e7\u00e3o salarial mensal.", + "Opening for a Job.": "Vaga de emprego.", + "Payroll Setup": "Configura\u00e7\u00e3o da folha de pagamento", + "Performance appraisal.": "Avalia\u00e7\u00e3o de desempenho.", + "Process Payroll": "Processa folha de pagamento", + "Reports": "Relat\u00f3rios", + "Salary Slip": "Folha de pagamento", + "Salary Structure": "Estrutura Salarial", + "Salary components.": "Componentes salariais.", + "Tax and other salary deductions.": "Impostos e outras dedu\u00e7\u00f5es salariais.", + "Template for employee performance appraisals.": "Modelo para avalia\u00e7\u00e3o do desempenho dos funcion\u00e1rios.", + "Type of employment master.": "Tipo de cadastro de emprego.", + "Type of leaves like casual, sick etc.": "Tipo de licen\u00e7as como casual, doen\u00e7a, etc.", + "Types of Expense Claim.": "Tipos de reembolso de despesas.", + "Upload attendance": "Carregar comparecimento", + "Upload attendance from a .csv file": "Carregar comparecimento a partir de um arquivo CSV." +} \ No newline at end of file diff --git a/hr/report/employee_leave_balance/employee_leave_balance.js b/hr/report/employee_leave_balance/employee_leave_balance.js new file mode 100644 index 0000000000..9f63e04c1a --- /dev/null +++ b/hr/report/employee_leave_balance/employee_leave_balance.js @@ -0,0 +1,11 @@ +wn.query_reports["Employee Leave Balance"] = { + "filters": [ + { + "fieldname":"fiscal_year", + "label": "Fiscal Year", + "fieldtype": "Link", + "options": "Fiscal Year", + "default": wn.defaults.get_user_default("fiscal_year") + } + ] +} \ No newline at end of file diff --git a/hr/report/employee_leave_balance/employee_leave_balance.py b/hr/report/employee_leave_balance/employee_leave_balance.py index beda4a71a8..23b4bd438f 100644 --- a/hr/report/employee_leave_balance/employee_leave_balance.py +++ b/hr/report/employee_leave_balance/employee_leave_balance.py @@ -2,12 +2,19 @@ from __future__ import unicode_literals import webnotes from webnotes.widgets.reportview import execute as runreport -def execute(): +def execute(filters={}): employees = runreport(doctype="Employee", fields=["name", "employee_name", "department"]) leave_types = webnotes.conn.sql_list("select name from `tabLeave Type`") - fiscal_years = webnotes.conn.sql_list("select name from `tabFiscal Year` order by name desc") + + if filters.get("fiscal_year"): + fiscal_years = [filters["fiscal_year"]] + else: + fiscal_years = webnotes.conn.sql_list("select name from `tabFiscal Year` order by name desc") + employee_in = '", "'.join([e.name for e in employees]) + + allocations = webnotes.conn.sql("""select employee, fiscal_year, leave_type, total_leaves_allocated from `tabLeave Allocation` where docstatus=1 and employee in ("%s")""" % employee_in, as_dict=True) diff --git a/manufacturing/doctype/bom/locale/pt-BR-doc.json b/manufacturing/doctype/bom/locale/pt-BR-doc.json new file mode 100644 index 0000000000..37717d1632 --- /dev/null +++ b/manufacturing/doctype/bom/locale/pt-BR-doc.json @@ -0,0 +1,29 @@ +{ + "Amended From": "Corrigido De", + "BOM": "LDM", + "BOM Item": "Item da LDM", + "BOM Operations": "Opera\u00e7\u00f5es da LDM", + "Costing": "Custeio", + "Is Active": "\u00c9 Ativo", + "Is Default": "\u00c9 padr\u00e3o", + "Item": "Item", + "Item Desription": "Descri\u00e7\u00e3o do Item", + "Item UOM": "UDM do Item", + "Item to be manufactured or repacked": "Item a ser fabricado ou reembalado", + "Last Purchase Rate": "Valor da \u00faltima compra", + "Manage cost of operations": "Gerenciar custo das opera\u00e7\u00f5es", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Materials": "Materiais", + "Materials Required (Exploded)": "Materiais necess\u00e1rios (explodida)", + "More Info": "Mais informa\u00e7\u00f5es", + "Operations": "Opera\u00e7\u00f5es", + "Project Name": "Nome do Projeto", + "Quantity": "Quantidade", + "Quantity of item obtained after manufacturing / repacking from given quantities of raw materials": "Quantidade do item obtido ap\u00f3s a fabrica\u00e7\u00e3o / reembalagem a partir de determinadas quantidades de mat\u00e9ria-prima", + "Rate Of Materials Based On": "Taxa de materiais com base em", + "Total Cost": "Custo Total", + "Total Operating Cost": "Custo de Operacional Total", + "Total Raw Material Cost": "Custo Total das mat\u00e9rias-primas", + "Valuation Rate": "Taxa de Avalia\u00e7\u00e3o", + "With Operations": "Com Opera\u00e7\u00f5es" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom/locale/pt-BR-py.json b/manufacturing/doctype/bom/locale/pt-BR-py.json new file mode 100644 index 0000000000..6964346d70 --- /dev/null +++ b/manufacturing/doctype/bom/locale/pt-BR-py.json @@ -0,0 +1,9 @@ +{ + " against same operation": "contra a mesma opera\u00e7\u00e3o", + ": It is linked to other active BOM(s)": ": Est\u00e1 ligado a outra(s) LDM(s) ativa(s)", + "Cannot ": "N\u00e3o pode", + "Item": "Item", + "cancel": "cancelar", + "deactivate": "desativar", + "has been entered atleast twice": "foi inserido pelo menos duas vezes" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_explosion_item/locale/pt-BR-doc.json b/manufacturing/doctype/bom_explosion_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..df3a61fa18 --- /dev/null +++ b/manufacturing/doctype/bom_explosion_item/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Amount": "Quantidade", + "BOM Explosion Item": "Item da Explos\u00e3o da LDM", + "Description": "Descri\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Mat Detail No": "N\u00ba do Detalhe Mat", + "Parent BOM": "LDM pai", + "Qty": "Qtde.", + "Qty Consumed Per Unit": "Qtde. consumida por unidade", + "Rate": "Taxa", + "Stock UOM": "UDM do Estoque" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_item/locale/pt-BR-doc.json b/manufacturing/doctype/bom_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..f4f2a95efe --- /dev/null +++ b/manufacturing/doctype/bom_item/locale/pt-BR-doc.json @@ -0,0 +1,14 @@ +{ + "Amount": "Quantidade", + "BOM Item": "Item da LDM", + "BOM No": "N\u00ba da LDM", + "Item Code": "C\u00f3digo do Item", + "Item Description": "Descri\u00e7\u00e3o do Item", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Operation No": "N\u00ba da opera\u00e7\u00e3o", + "Qty": "Qtde.", + "Qty Consumed Per Unit": "Qtde. consumida por unidade", + "Rate": "Taxa", + "Scrap %": "Sucata %", + "Stock UOM": "UDM do Estoque" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_operation/locale/pt-BR-doc.json b/manufacturing/doctype/bom_operation/locale/pt-BR-doc.json new file mode 100644 index 0000000000..9e78d3b50a --- /dev/null +++ b/manufacturing/doctype/bom_operation/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "BOM Operation": "Opera\u00e7\u00e3o da LDM", + "Hour Rate": "Valor por hora", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Operating Cost": "Custo de Opera\u00e7\u00e3o", + "Operation Description": "Descri\u00e7\u00e3o da opera\u00e7\u00e3o", + "Operation No": "N\u00ba da opera\u00e7\u00e3o", + "Operation Time (mins)": "Tempo de Opera\u00e7\u00e3o (minutos)", + "Workstation": "Esta\u00e7\u00e3o de Trabalho" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_replace_tool/locale/pt-BR-doc.json b/manufacturing/doctype/bom_replace_tool/locale/pt-BR-doc.json new file mode 100644 index 0000000000..05c1f205b1 --- /dev/null +++ b/manufacturing/doctype/bom_replace_tool/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "BOM Replace Tool": "Ferramenta de Substitui\u00e7\u00e3o da LDM", + "Current BOM": "LDM atual", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "New BOM": "Nova LDM", + "Replace": "Substituir", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Substituir uma LDM espec\u00edfica em todas as LDMs outros onde ela \u00e9 usada. Isso ir\u00e1 substituir o link da LDM antiga, atualizar o custo e regenerar a tabela "Item de Explos\u00e3o da LDM" com a nova LDM", + "The BOM which will be replaced": "A LDM que ser\u00e1 substitu\u00edda", + "The new BOM after replacement": "A nova LDM ap\u00f3s substitui\u00e7\u00e3o" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_replace_tool/locale/pt-BR-py.json b/manufacturing/doctype/bom_replace_tool/locale/pt-BR-py.json new file mode 100644 index 0000000000..1d77e6247d --- /dev/null +++ b/manufacturing/doctype/bom_replace_tool/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "BOM replaced": "LDM substitu\u00edda" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_order/locale/pt-BR-doc.json b/manufacturing/doctype/production_order/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b06655a45f --- /dev/null +++ b/manufacturing/doctype/production_order/locale/pt-BR-doc.json @@ -0,0 +1,30 @@ +{ + "Amended From": "Corrigido De", + "Automatically updated via Stock Entry of type Manufacture/Repack": "Atualizado automaticamente atrav\u00e9s do lan\u00e7amento de Estoque do tipo Fabrica\u00e7\u00e3o/Reempacotamento", + "BOM No": "N\u00ba da LDM", + "Bill of Material to be considered for manufacturing": "Lista de Materiais a serem considerados para a fabrica\u00e7\u00e3o", + "Cancelled": "Cancelado", + "Company": "Empresa", + "Completed": "Conclu\u00eddo", + "Draft": "Rascunho", + "For Warehouse": "Para Almoxarifado", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "Se marcado, os itens da LDM para a Sub-Montagem ser\u00e3o considerados para obter mat\u00e9rias-primas. Caso contr\u00e1rio, todos os itens da sub-montagem v\u00e3o ser tratados como mat\u00e9ria-prima.", + "In Process": "Em Processo", + "Item To Manufacture": "Item Para Fabrica\u00e7\u00e3o", + "Manufacture against Sales Order": "Fabrica\u00e7\u00e3o contra a Ordem de Venda", + "Manufactured Qty": "Qtde. fabricada", + "Manufactured quantity will be updated in this warehouse": "Quantidade fabricada ser\u00e1 atualizada neste almoxarifado", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "More Info": "Mais informa\u00e7\u00f5es", + "PRO": "PRO", + "Production Order": "Ordem de Produ\u00e7\u00e3o", + "Project Name": "Nome do Projeto", + "Qty To Manufacture": "Qtde. Para Fabrica\u00e7\u00e3o", + "Sales Order": "Ordem de Venda", + "Series": "S\u00e9ries", + "Status": "Estado", + "Stock UOM": "UDM do Estoque", + "Stopped": "Parado", + "Submitted": "Enviado", + "Use Multi-Level BOM": "Utilize LDM de V\u00e1rios N\u00edveis" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_plan_item/locale/pt-BR-doc.json b/manufacturing/doctype/production_plan_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..38cbb4faed --- /dev/null +++ b/manufacturing/doctype/production_plan_item/locale/pt-BR-doc.json @@ -0,0 +1,11 @@ +{ + "BOM No": "N\u00ba da LDM", + "Description": "Descri\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Planned Qty": "Qtde. planejada", + "Production Plan Item": "Item do plano de produ\u00e7\u00e3o", + "SO Pending Qty": "Qtde. pendente na OV", + "Sales Order": "Ordem de Venda", + "UOM": "UDM" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_plan_sales_order/locale/pt-BR-doc.json b/manufacturing/doctype/production_plan_sales_order/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e13aacdd0a --- /dev/null +++ b/manufacturing/doctype/production_plan_sales_order/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Customer": "Cliente", + "Grand Total": "Total Geral", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Production Plan Sales Order": "Ordem de Venda do Plano de Produ\u00e7\u00e3o", + "SO Date": "Data da OV", + "Sales Order": "Ordem de Venda" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_planning_tool/locale/pt-BR-doc.json b/manufacturing/doctype/production_planning_tool/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3337dbfea1 --- /dev/null +++ b/manufacturing/doctype/production_planning_tool/locale/pt-BR-doc.json @@ -0,0 +1,30 @@ +{ + "Clear Table": "Limpar Tabela", + "Company": "Empresa", + "Create Production Orders": "Criar Ordens de Produ\u00e7\u00e3o", + "Download Materials Required": "Baixar Materiais Necess\u00e1rios", + "Download a report containing all raw materials with their latest inventory status": "Baixar um relat\u00f3rio contendo todas as mat\u00e9rias-primas com o seu estado mais recente do invent\u00e1rio", + "Enter items and planned qty for which you want to raise production orders or download raw materials for analysis.": "Digite itens e qtde. planejada para o qual voc\u00ea quer levantar ordens de produ\u00e7\u00e3o ou fazer o download de mat\u00e9rias-primas para a an\u00e1lise.", + "Filter based on customer": "Filtrar baseado em cliente", + "Filter based on item": "Filtrar baseado no item", + "From Date": "A partir da data", + "Get Items": "Obter itens", + "Get Sales Orders": "Obter Ordens de Venda", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "Se marcado, os itens da LDM para a Sub-Montagem ser\u00e3o considerados para obter mat\u00e9rias-primas. Caso contr\u00e1rio, todos os itens da sub-montagem v\u00e3o ser tratados como mat\u00e9ria-prima.", + "Items to be requested which are \"Out of Stock\" considering all warehouses based on projected qty and minimum order qty": "Os itens a serem solicitados que est\u00e3o "Fora de Estoque", considerando todos os almoxarifados com base na quantidade projetada e pedido m\u00ednimo", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Material Request For Warehouse": "Pedido de material para Armaz\u00e9m", + "Materials Requirement Planning (MRP)": "Planejamento dos Recursos de Manufatura (PRM)", + "Production Plan Items": "Itens do plano de produ\u00e7\u00e3o", + "Production Plan Sales Orders": "Ordens de Venda do Plano de Produ\u00e7\u00e3o", + "Production Planning Tool": "Ferramenta de Planejamento da Produ\u00e7\u00e3o", + "Pull items from Sales Order mentioned in the above table.": "Puxar itens da Ordem de Venda mencionada na tabela acima.", + "Pull sales orders (pending to deliver) based on the above criteria": "Puxar as Ordens de Venda (pendentes de entrega) com base nos crit\u00e9rios acima", + "Raise Material Request": "Levante solicitar material", + "Raise Production Order": "Levantar Ordem de Produ\u00e7\u00e3o", + "Select Sales Orders": "Selecione as Ordens de Venda", + "Select Sales Orders from which you want to create Production Orders.": "Selecione as Ordens de Venda a partir das quais voc\u00ea deseja criar Ordens de Produ\u00e7\u00e3o.", + "Separate production order will be created for each finished good item.": "Uma Ordem de Produ\u00e7\u00e3o separada ser\u00e1 criada para cada item acabado.", + "To Date": "At\u00e9 a Data", + "Use Multi-Level BOM": "Utilize LDM de V\u00e1rios N\u00edveis" +} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/pt-BR-doc.json b/manufacturing/doctype/update_delivery_date/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4d9249ebb7 --- /dev/null +++ b/manufacturing/doctype/update_delivery_date/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Company": "Empresa", + "Customer": "Cliente", + "Entries": "Lan\u00e7amentos", + "From Date": "A partir da data", + "Get Open Sales Order": "Obter Ordens de Venda abertas", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Sales Order": "Ordem de Venda", + "Territory": "Territ\u00f3rio", + "To Date": "At\u00e9 a Data", + "Update Delivery Date": "Atualizar Data de Entrega", + "Update Sales Order": "Atualizar Ordem de Venda" +} \ No newline at end of file diff --git a/manufacturing/doctype/workstation/locale/pt-BR-doc.json b/manufacturing/doctype/workstation/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e791709cbb --- /dev/null +++ b/manufacturing/doctype/workstation/locale/pt-BR-doc.json @@ -0,0 +1,19 @@ +{ + "Capacity": "Capacidade", + "Capacity Units": "Unidades de Capacidade", + "Description": "Descri\u00e7\u00e3o", + "Hour Rate": "Valor por hora", + "Hour Rate Consumable": "Valor por hora de Consum\u00edveis", + "Hour Rate Electricity": "Valor por hora de Eletricidade", + "Hour Rate Labour": "Valor por hora de m\u00e3o-de-obra", + "Hour Rate Rent": "Valor por hora de Aluguel", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Over Heads": "Despesas gerais", + "Overhead": "Despesas gerais", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Units/Hour": "Unidades/hora", + "Units/Shifts": "Unidades/Turnos", + "Warehouse": "Almoxarifado", + "Workstation": "Esta\u00e7\u00e3o de Trabalho", + "Workstation Name": "Nome da Esta\u00e7\u00e3o de Trabalho" +} \ No newline at end of file diff --git a/manufacturing/module_def/manufacturing/locale/pt-BR-doc.json b/manufacturing/module_def/manufacturing/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b191e3eb0d --- /dev/null +++ b/manufacturing/module_def/manufacturing/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Manufacturing Home": "In\u00edcio de Fabrica\u00e7\u00e3o", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Substituir uma LDM espec\u00edfica em todas as LDMs outros onde ela \u00e9 usada. Isso ir\u00e1 substituir o link da LDM antiga, atualizar o custo e regenerar a tabela "Item de Explos\u00e3o da LDM" com a nova LDM" +} \ No newline at end of file diff --git a/manufacturing/page/manufacturing_home/locale/pt-BR-js.json b/manufacturing/page/manufacturing_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..a03ff0a5b5 --- /dev/null +++ b/manufacturing/page/manufacturing_home/locale/pt-BR-js.json @@ -0,0 +1,18 @@ +{ + "All Products or Services.": "Todos os Produtos ou Servi\u00e7os.", + "BOM Replace Tool": "Ferramenta de Substitui\u00e7\u00e3o da LDM", + "Bill of Materials": "Lista de Materiais", + "Bill of Materials (BOM)": "Lista de Materiais (LDM)", + "Documents": "Documentos", + "Generate Material Requests (MRP) and Production Orders.": "Gerar Pedidos de Materiais (MRP) e ordens de produ\u00e7\u00e3o.", + "Item": "Item", + "Masters": "Cadastros", + "Orders released for production.": "Ordens liberadas para produ\u00e7\u00e3o.", + "Production Order": "Ordem de Produ\u00e7\u00e3o", + "Production Planning (MRP)": "Planejamento de Produ\u00e7\u00e3o (PRM)", + "Production Planning Tool": "Ferramenta de Planejamento da Produ\u00e7\u00e3o", + "Replace Item / BOM in all BOMs": "Substituir item / LDM em todas as LDMs", + "Utility": "Utilit\u00e1rio", + "Where manufacturing operations are carried out.": "Onde as opera\u00e7\u00f5es de fabrica\u00e7\u00e3o s\u00e3o realizadas.", + "Workstation": "Esta\u00e7\u00e3o de Trabalho" +} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/pt-BR-doc.json b/production/doctype/bom_replace_tool/locale/pt-BR-doc.json new file mode 100644 index 0000000000..69ebd0fbb4 --- /dev/null +++ b/production/doctype/bom_replace_tool/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "BOM Replace Tool": "Ferramenta de Substitui\u00e7\u00e3o da LDM", + "Current BOM": "LDM atual", + "New BOM": "Nova LDM", + "Production": "Produ\u00e7\u00e3o", + "Replace": "Substituir", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Substituir uma LDM espec\u00edfica em todas as LDMs outros onde ela \u00e9 usada. Isso ir\u00e1 substituir o link da LDM antiga, atualizar o custo e regenerar a tabela "Item de Explos\u00e3o da LDM" com a nova LDM", + "The BOM which will be replaced": "A LDM que ser\u00e1 substitu\u00edda", + "The new BOM after replacement": "A nova LDM ap\u00f3s substitui\u00e7\u00e3o" +} \ No newline at end of file diff --git a/projects/doctype/activity_type/locale/pt-BR-doc.json b/projects/doctype/activity_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..db636709c7 --- /dev/null +++ b/projects/doctype/activity_type/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Activity Type": "Tipo da Atividade", + "Projects": "Projetos" +} \ No newline at end of file diff --git a/projects/doctype/project/locale/pt-BR-doc.json b/projects/doctype/project/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b475605c96 --- /dev/null +++ b/projects/doctype/project/locale/pt-BR-doc.json @@ -0,0 +1,46 @@ +{ + "Actual Completion Date": "Data de Conclus\u00e3o Real", + "Cancelled": "Cancelado", + "Company": "Empresa", + "Completed": "Conclu\u00eddo", + "Completion Date": "Data de Conclus\u00e3o", + "Customer": "Cliente", + "Customer Details": "Detalhes do Cliente", + "Dates": "Datas", + "Estimated Material Cost": "Custo estimado de Material", + "External": "Externo", + "File List": "Lista de Arquivos", + "Gross Margin %": "Margem Bruta %", + "Gross Margin Value": "Valor Margem Bruta", + "High": "Alto", + "Important dates and commitments in your project life cycle": "Datas importantes e compromissos no ciclo de vida do seu projeto", + "Internal": "Interno", + "Is Active": "\u00c9 Ativo", + "Low": "Baixo", + "Margin": "Margem", + "Medium": "M\u00e9dio", + "Milestones": "Marcos", + "Milestones will be added as Events in the Calendar": "Marcos ser\u00e3o adicionados como eventos no calend\u00e1rio", + "No": "N\u00e3o", + "Notes": "Notas", + "Open": "Abrir", + "Other": "Outro", + "Priority": "Prioridade", + "Project": "Projeto", + "Project Costing": "Custo do Projeto", + "Project Details": "Detalhes do Projeto", + "Project Milestones": "Marcos do Projeto", + "Project Name": "Nome do Projeto", + "Project Start Date": "Data de in\u00edcio do Projeto", + "Project Tasks": "Tarefas do Projeto", + "Project Type": "Tipo de Projeto", + "Project Value": "Valor do Projeto", + "Project will get saved and will be searchable with project name given": "O Projeto ser\u00e1 salvo e poder\u00e1 ser pesquisado atrav\u00e9s do nome dado", + "Projects": "Projetos", + "Select name of Customer to whom project belongs": "Selecione o nome do cliente a quem pertence o projeto", + "Status": "Estado", + "Tasks": "Tarefas", + "Tasks belonging to this Project.": "Tarefas pertencentes a este projeto.", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Yes": "Sim" +} \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/pt-BR-doc.json b/projects/doctype/project_activity/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5e087ec45e --- /dev/null +++ b/projects/doctype/project_activity/locale/pt-BR-doc.json @@ -0,0 +1,14 @@ +{ + "Activity Name": "Nome da Atividade", + "Add": "Adicionar", + "Hours": "Horas", + "Last Update": "\u00daltima Atualiza\u00e7\u00e3o", + "Last Update By": "\u00daltima Atualiza\u00e7\u00e3o por", + "New Update": "Nova Atualiza\u00e7\u00e3o", + "Percent Complete": "Porcentagem Conclu\u00edda", + "Project": "Projeto", + "Project Activity": "Atividade do Projeto", + "Projects": "Projetos", + "Updates": "Atualiza\u00e7\u00f5es", + "Updates HTML": "Atualiza\u00e7\u00f5es HTML" +} \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/pt-BR-doc.json b/projects/doctype/project_activity_update/locale/pt-BR-doc.json new file mode 100644 index 0000000000..29ee1648b3 --- /dev/null +++ b/projects/doctype/project_activity_update/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Hours": "Horas", + "Project Activity Update": "Atualiza\u00e7\u00e3o da Atividade do Projeto", + "Projects": "Projetos", + "Update": "Atualizar", + "e.g. 0.5, 2.5 etc": "por exemplo, 0,5, 2,5, etc" +} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/pt-BR-doc.json b/projects/doctype/project_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..8764cf3526 --- /dev/null +++ b/projects/doctype/project_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Project Control": "Controle de Projeto", + "Projects": "Projetos" +} \ No newline at end of file diff --git a/projects/doctype/project_milestone/locale/pt-BR-doc.json b/projects/doctype/project_milestone/locale/pt-BR-doc.json new file mode 100644 index 0000000000..ff7ebd376c --- /dev/null +++ b/projects/doctype/project_milestone/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Completed": "Conclu\u00eddo", + "Milestone": "Marco", + "Milestone Date": "Data do Marco", + "Pending": "Pendente", + "Project Milestone": "Marco do Projeto", + "Projects": "Projetos", + "Status": "Estado" +} \ No newline at end of file diff --git a/projects/doctype/task/locale/pt-BR-doc.json b/projects/doctype/task/locale/pt-BR-doc.json new file mode 100644 index 0000000000..54fdbc6c8d --- /dev/null +++ b/projects/doctype/task/locale/pt-BR-doc.json @@ -0,0 +1,34 @@ +{ + "Actual": "Real", + "Actual Budget": "Or\u00e7amento Real", + "Actual End Date": "Data Final Real", + "Actual Start Date": "Data de In\u00edcio Real", + "Allocated Budget": "Or\u00e7amento alocado", + "Cancelled": "Cancelado", + "Closed": "Fechado", + "Closing Date": "Data de Encerramento", + "Company": "Empresa", + "Details": "Detalhes", + "Expected": "Esperado", + "Expected End Date": "Data Final prevista", + "Expected Start Date": "Data Inicial prevista", + "File List": "Lista de Arquivos", + "High": "Alto", + "Low": "Baixo", + "Medium": "M\u00e9dio", + "More Details": "Mais detalhes", + "Open": "Abrir", + "Pending Review": "Revis\u00e3o pendente", + "Priority": "Prioridade", + "Project": "Projeto", + "Projects": "Projetos", + "Review Date": "Data da Revis\u00e3o", + "Status": "Estado", + "Subject": "Assunto", + "Task": "Tarefa", + "Task Details": "Detalhes da Tarefa", + "Time and Budget": "Tempo e Or\u00e7amento", + "Total Hours (Expected)": "Total de Horas (Esperado)", + "Urgent": "Urgente", + "Working": "Trabalhando" +} \ No newline at end of file diff --git a/projects/doctype/timesheet/locale/pt-BR-doc.json b/projects/doctype/timesheet/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5ad54cf3df --- /dev/null +++ b/projects/doctype/timesheet/locale/pt-BR-doc.json @@ -0,0 +1,14 @@ +{ + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Cancelled": "Cancelado", + "Draft": "Rascunho", + "Notes": "Notas", + "Projects": "Projetos", + "Status": "Estado", + "Submitted": "Enviado", + "Timesheet": "Quadro de Hor\u00e1rios", + "Timesheet By": "Quadro de Hor\u00e1rios Por", + "Timesheet Date": "Data do Quadro de Hor\u00e1rios", + "Timesheet Details": "Detalhes do Quadro de Hor\u00e1rios" +} \ No newline at end of file diff --git a/projects/doctype/timesheet_detail/locale/pt-BR-doc.json b/projects/doctype/timesheet_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b11f35a007 --- /dev/null +++ b/projects/doctype/timesheet_detail/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Activity Type": "Tipo da Atividade", + "Actual End Time": "Tempos Final Real", + "Actual Start Time": "Hor\u00e1rio de In\u00edcio Real", + "Additional Info": "Informa\u00e7\u00f5es Adicionais", + "Customer Name": "Nome do cliente", + "Project": "Projeto", + "Projects": "Projetos", + "Task Id": "ID da Tarefa", + "Task Name": "Nome da Tarefa", + "Timesheet Detail": "Detalhe do Quadro de Hor\u00e1rios", + "Total Hours (Actual)": "Total de Horas (Real)" +} \ No newline at end of file diff --git a/projects/module_def/projects/locale/pt-BR-doc.json b/projects/module_def/projects/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d50cdd8c84 --- /dev/null +++ b/projects/module_def/projects/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Projects": "Projetos", + "Projects Home": "In\u00edcio de Projetos" +} \ No newline at end of file diff --git a/projects/page/projects_home/locale/pt-BR-js.json b/projects/page/projects_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..d36d1a3d3d --- /dev/null +++ b/projects/page/projects_home/locale/pt-BR-js.json @@ -0,0 +1,15 @@ +{ + "Activity Type": "Tipo da Atividade", + "Documents": "Documentos", + "Gantt Chart": "Gr\u00e1fico de Gantt", + "Gantt chart of all tasks.": "Gr\u00e1fico de Gantt de todas as tarefas.", + "Masters": "Cadastros", + "Project": "Projeto", + "Project activity / task.": "Atividade / tarefa do projeto.", + "Project master.": "Cadastro de Projeto.", + "Task": "Tarefa", + "Timesheet": "Quadro de Hor\u00e1rios", + "Timesheet for tasks.": "Quadro de Hor\u00e1rios para as tarefas.", + "Tools": "Ferramentas", + "Types of activities for Time Sheets": "Tipos de atividades para quadro de hor\u00e1rios" +} \ No newline at end of file diff --git a/public/js/locale/pt-BR-js.json b/public/js/locale/pt-BR-js.json new file mode 100644 index 0000000000..6ee3837db1 --- /dev/null +++ b/public/js/locale/pt-BR-js.json @@ -0,0 +1,317 @@ +{ + "About Us Settings": "Configura\u00e7\u00f5es do Quem Somos", + "About Us Team Member": "Sobre Membro da Equipe", + "Account": "Conta", + "Accounts": "Contas", + "Activity": "Atividade", + "Activity Type": "Tipo da Atividade", + "Address": "Endere\u00e7o", + "Answer": "Resposta", + "Appraisal": "Avalia\u00e7\u00e3o", + "Appraisal Goal": "Meta de Avalia\u00e7\u00e3o", + "Appraisal Template": "Modelo de Avalia\u00e7\u00e3o", + "Appraisal Template Goal": "Meta do Modelo de Avalia\u00e7\u00e3o", + "Attendance": "Comparecimento", + "Attendance Control Panel": "Painel de Controle de Comparecimento", + "Authorization Control": "Controle de autoriza\u00e7\u00e3o", + "Authorization Rule": "Regra de autoriza\u00e7\u00e3o", + "BOM": "LDM", + "BOM Explosion Item": "Item da Explos\u00e3o da LDM", + "BOM Item": "Item da LDM", + "BOM Operation": "Opera\u00e7\u00e3o da LDM", + "BOM Replace Tool": "Ferramenta de Substitui\u00e7\u00e3o da LDM", + "Bank Reconciliation": "Reconcilia\u00e7\u00e3o Banc\u00e1ria", + "Bank Reconciliation Detail": "Detalhe da Reconcilia\u00e7\u00e3o Banc\u00e1ria", + "Batch": "Lote", + "Bin": "Caixa", + "Blog": "Blog", + "Blog Subscriber": "Assinante do Blog", + "Branch": "Ramo", + "Brand": "Marca", + "Budget Control": "Controle de Or\u00e7amento", + "Budget Detail": "Detalhe do Or\u00e7amento", + "Budget Distribution": "Distribui\u00e7\u00e3o de Or\u00e7amento", + "Budget Distribution Detail": "Detalhe da Distribui\u00e7\u00e3o de Or\u00e7amento", + "Bulk Email": "E-mail em massa", + "Buying": "Compras", + "C-Form": "Formul\u00e1rio-C", + "C-Form Invoice Detail": "Detalhe Fatura do Formul\u00e1rio-C", + "Calendar": "Calend\u00e1rio", + "Campaign": "Campanha", + "Comment": "Coment\u00e1rio", + "Communication": "Comunica\u00e7\u00e3o", + "Communication Log": "Log de Comunica\u00e7\u00e3o", + "Company": "Empresa", + "Company Control": "Controle da Empresa", + "Company History": "Hist\u00f3rico da Empresa", + "Contact": "Contato", + "Contact Control": "Controle de Contato", + "Contact Us Settings": "Configura\u00e7\u00f5es do Fale Conosco", + "Control Panel": "Painel de Controle", + "Core": "N\u00facleo", + "Cost Center": "Centro de Custos", + "Country": "Pa\u00eds", + "Currency": "Moeda", + "Custom Field": "Campo personalizado", + "Custom Script": "Script personalizado", + "Customer": "Cliente", + "Customer Group": "Grupo de Clientes", + "Customer Issue": "Quest\u00e3o do Cliente", + "Customize Form": "Personalize Formul\u00e1rio", + "Customize Form Field": "Personalize campo de formul\u00e1rio", + "Deduction Type": "Tipo de dedu\u00e7\u00e3o", + "Default Home Page": "P\u00e1gina Inicial padr\u00e3o", + "DefaultValue": "Valor padr\u00e3o", + "Delivery Note": "Guia de Remessa", + "Delivery Note Item": "Item da Guia de Remessa", + "Delivery Note Packing Item": "Item do Pacote da Guia de Remessa", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "DocField": "DocField", + "DocPerm": "DocPerm", + "DocType": "DocType", + "DocType Label": "Etiqueta do DocType", + "DocType Mapper": "Mapeador do DocType", + "Documentation": "Documenta\u00e7\u00e3o", + "Earning Type": "Tipo de Ganho", + "Email Digest": "Resumo por E-mail", + "Email Settings": "Configura\u00e7\u00f5es de e-mail", + "Employee": "Funcion\u00e1rio", + "Employee Education": "Escolaridade do Funcion\u00e1rio", + "Employee External Work History": "Hist\u00f3rico de trabalho externo do Funcion\u00e1rio", + "Employee Internal Work History": "Hist\u00f3rico de trabalho interno do Funcion\u00e1rio", + "Employee Training": "Treinamento de funcion\u00e1rios", + "Employment Type": "Tipo de emprego", + "Event": "Evento", + "Event Role": "Fun\u00e7\u00e3o do Evento", + "Event User": "Usu\u00e1rio do Evento", + "Expense Claim": "Pedido de Reembolso de Despesas", + "Expense Claim Detail": "Detalhe do Pedido de Reembolso de Despesas", + "Expense Claim Type": "Tipo de Pedido de Reembolso de Despesas", + "Featured Item": "Item Destacado", + "Features Setup": "Configura\u00e7\u00e3o de caracter\u00edsticas", + "Feed": "Alimentar", + "Field Mapper Detail": "Detalhe do Mapeador do Campo", + "File Data": "Dados de arquivo", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Forum": "F\u00f3rum", + "GL Control": "GL Controle", + "GL Entry": "Lan\u00e7amento GL", + "GL Mapper": "Mapeamento GL", + "GL Mapper Detail": "Detalhe do Mapeamento GL", + "Global Defaults": "Padr\u00f5es globais", + "Grade": "Grau", + "HR": "RH", + "Help": "Ajudar", + "Holiday": "Feriado", + "Holiday Block List": "Lista de Bloqueios de f\u00e9rias", + "Holiday Block List Allow": "Lista de Bloqueios de f\u00e9rias Permitir", + "Holiday Block List Date": "Data feriado Lista de Bloqueios", + "Holiday List": "Lista de feriado", + "Home": "In\u00edcio", + "Home Control": "In\u00edcio de Controle", + "Human Resources": "Recursos Humanos", + "Industry Type": "Tipo de ind\u00fastria", + "Installation Note": "Nota de Instala\u00e7\u00e3o", + "Installation Note Item": "Item da Nota de Instala\u00e7\u00e3o", + "Item": "Item", + "Item Customer Detail": "Detalhe do Cliente do Item", + "Item Group": "Grupo de Itens", + "Item Price": "Pre\u00e7o do Item", + "Item Quality Inspection Parameter": "Par\u00e2metro de Inspe\u00e7\u00e3o de Qualidade do Item", + "Item Reorder": "Item Reordenar", + "Item Supplier": "Fornecedor do Item", + "Item Tax": "Imposto do Item", + "Item Website Specification": "Especifica\u00e7\u00e3o do Site do Item", + "Job Applicant": "Candidato a emprego", + "Job Opening": "Vaga de emprego", + "Jobs Email Settings": "Configura\u00e7\u00f5es do e-mail de empregos", + "Journal Voucher": "Comprovante do livro Di\u00e1rio", + "Journal Voucher Detail": "Detalhe do Comprovante do livro Di\u00e1rio", + "Knowledge Base": "Base de Conhecimento", + "Landed Cost Item": "Custo de desembarque do Item", + "Landed Cost Purchase Receipt": "Recibo de compra do custo de desembarque", + "Landed Cost Wizard": "Assistente de Custo de Desembarque", + "Lead": "Prospecto", + "Leave Allocation": "Aloca\u00e7\u00e3o de Licen\u00e7as", + "Leave Application": "Solicita\u00e7\u00e3o de Licen\u00e7as", + "Leave Block List": "Deixe Lista de Bloqueios", + "Leave Block List Allow": "Deixe Lista de Bloqueios Permitir", + "Leave Block List Date": "Deixe Data Lista de Bloqueios", + "Leave Control Panel": "Painel de Controle de Licen\u00e7as", + "Leave Type": "Tipo de Licen\u00e7as", + "Letter Head": "Timbrado", + "Live Chat": "Chat ao vivo", + "MIS Control": "Controle MIS", + "Maintenance Schedule": "Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Maintenance Schedule Detail": "Detalhe da Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Maintenance Schedule Item": "Item da Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Maintenance Visit": "Visita de manuten\u00e7\u00e3o", + "Maintenance Visit Purpose": "Finalidade da visita de manuten\u00e7\u00e3o", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Market Segment": "Segmento de mercado", + "Material Request": "Pedido de material", + "Material Request Item": "Item de solicita\u00e7\u00e3o de material", + "Messages": "Mensagens", + "Mode of Payment": "Forma de Pagamento", + "Module Def": "M\u00f3dulo Def", + "Modules": "M\u00f3dulos", + "Multi Ledger Report Detail": "Detalhe do Relat\u00f3rio de m\u00faltiplos Livros-Raz\u00e3o", + "My Settings": "Minhas Configura\u00e7\u00f5es", + "Naming Series": "S\u00e9ries nomeadas", + "Naming Series Options": "Op\u00e7\u00f5es das S\u00e9ries nomeadas", + "Newsletter": "Boletim informativo", + "Notification Control": "Controle de Notifica\u00e7\u00e3o", + "Opportunity": "Oportunidade", + "Opportunity Item": "Item da oportunidade", + "Other Income Detail": "Detalhe sobre Outras Receitas", + "POS Setting": "Configura\u00e7\u00e3o de PDV", + "Packing Slip": "Guia de Remessa", + "Packing Slip Item": "Item da Guia de Remessa", + "Page": "P\u00e1gina", + "Page Role": "Fun\u00e7\u00e3o da p\u00e1gina", + "Patch Log": "Log de Patches", + "Payment to Invoice Matching Tool": "Ferramenta de Pagamento contra Fatura correspondente", + "Payment to Invoice Matching Tool Detail": "Detalhe da Ferramenta de Pagamento contra Fatura correspondente", + "Period Closing Voucher": "Comprovante de Encerramento per\u00edodo", + "Permission Control": "Controle de Permiss\u00e3o", + "Price List": "Lista de Pre\u00e7os", + "Print Format": "Formato de impress\u00e3o", + "Print Heading": "Cabe\u00e7alho de impress\u00e3o", + "Product Group": "Grupo de Produtos", + "Product Settings": "Configura\u00e7\u00f5es do produto", + "Production Order": "Ordem de Produ\u00e7\u00e3o", + "Production Plan Item": "Item do plano de produ\u00e7\u00e3o", + "Production Plan Sales Order": "Ordem de Venda do Plano de Produ\u00e7\u00e3o", + "Production Planning Tool": "Ferramenta de Planejamento da Produ\u00e7\u00e3o", + "Products Settings": "Configura\u00e7\u00f5es de produtos", + "Profile": "Perfil", + "Profile Control": "Controle de Perfil", + "Project": "Projeto", + "Project Activity": "Atividade do Projeto", + "Project Activity Update": "Atualiza\u00e7\u00e3o da Atividade do Projeto", + "Project Control": "Controle de Projeto", + "Project Milestone": "Marco do Projeto", + "Projects": "Projetos", + "Property Setter": "Setter propriedade", + "Purchase Common": "Compras comum", + "Purchase Invoice": "Nota Fiscal de Compra", + "Purchase Invoice Advance": "Antecipa\u00e7\u00e3o da Nota Fiscal de Compra", + "Purchase Invoice Item": "Item da Nota Fiscal de Compra", + "Purchase Order": "Ordem de Compra", + "Purchase Order Item": "Item da Ordem de Compra", + "Purchase Order Item Supplied": "Item da Ordem de Compra fornecido", + "Purchase Receipt": "Recibo de Compra", + "Purchase Receipt Item": "Item do Recibo de Compra", + "Purchase Receipt Item Supplied": "Item do Recibo de Compra Fornecido", + "Purchase Request": "Pedido de Compra", + "Purchase Request Item": "Item do Pedido de Compra", + "Purchase Taxes and Charges": "Impostos e Encargos sobre Compras", + "Purchase Taxes and Charges Master": "Cadastro de Impostos e Encargos sobre Compras", + "Quality Inspection": "Inspe\u00e7\u00e3o de Qualidade", + "Quality Inspection Reading": "Leitura da Inspe\u00e7\u00e3o de Qualidade", + "Question": "Pergunta", + "Quotation": "Cota\u00e7\u00e3o", + "Quotation Item": "Item da Cota\u00e7\u00e3o", + "Quotation Lost Reason": "Raz\u00e3o da perda da Cota\u00e7\u00e3o", + "Related Page": "P\u00e1gina Relacionada", + "Rename Tool": "Ferramenta de Renomear", + "Report": "Relat\u00f3rio", + "Role": "Fun\u00e7\u00e3o", + "SMS Center": "Centro de SMS", + "SMS Control": "Controle de SMS", + "SMS Log": "Log de SMS", + "SMS Parameter": "Par\u00e2metro de SMS", + "SMS Receiver": "Receptor do SMS", + "SMS Settings": "Defini\u00e7\u00f5es de SMS", + "Salary Manager": "Gerenciador de sal\u00e1rio", + "Salary Slip": "Folha de pagamento", + "Salary Slip Deduction": "Dedu\u00e7\u00e3o da folha de pagamento", + "Salary Slip Earning": "Ganhos da folha de pagamento", + "Salary Structure": "Estrutura Salarial", + "Salary Structure Deduction": "Dedu\u00e7\u00e3o da Estrutura Salarial", + "Salary Structure Earning": "Ganho da Estrutura Salarial", + "Sales BOM": "LDM de Vendas", + "Sales BOM Item": "Item da LDM de Vendas", + "Sales Browser Control": "Controle do Navegador de Vendas", + "Sales Common": "Vendas comuns", + "Sales Email Settings": "Configura\u00e7\u00f5es do Email de Vendas", + "Sales Invoice": "Nota Fiscal de Venda", + "Sales Invoice Advance": "Antecipa\u00e7\u00e3o da Nota Fiscal de Venda", + "Sales Invoice Item": "Item da Nota Fiscal de Venda", + "Sales Order": "Ordem de Venda", + "Sales Order Item": "Item da Ordem de Venda", + "Sales Partner": "Parceiro de Vendas", + "Sales Person": "Vendedor", + "Sales Taxes and Charges": "Impostos e Taxas sobre Vendas", + "Sales Taxes and Charges Master": "Cadastro de Impostos e Taxas sobre Vendas", + "Sales Team": "Equipe de Vendas", + "Sales and Purchase Return Item": "Item de retorno de compra e venda", + "Sales and Purchase Return Tool": "Ferramenta de retorno de compra e venda", + "Sandbox": "Sandbox", + "Scheduler Log": "Log do Agendador", + "Search Criteria": "Crit\u00e9rios da pesquisa", + "Selling": "Vendas", + "Serial No": "N\u00ba de S\u00e9rie", + "Series Detail": "Detalhe da S\u00e9ries", + "Setup": "Configura\u00e7\u00e3o", + "Setup Control": "Controle de configura\u00e7\u00e3o", + "Shipping Address": "Endere\u00e7o de envio", + "State": "Estado", + "Stock": "Estoque", + "Stock Entry": "Lan\u00e7amento no Estoque", + "Stock Entry Detail": "Detalhe do lan\u00e7amento no Estoque", + "Stock Ledger": "Livro de Invent\u00e1rio", + "Stock Ledger Entry": "Lan\u00e7amento do Livro de Invent\u00e1rio", + "Stock Reconciliation": "Reconcilia\u00e7\u00e3o de Estoque", + "Stock UOM Replace Utility": "Utilit\u00e1rio para Substituir UDM do Estoque", + "Style Settings": "Configura\u00e7\u00f5es de Estilo", + "Supplier": "Fornecedor", + "Supplier Quotation": "Cota\u00e7\u00e3o do Fornecedor", + "Supplier Quotation Item": "Item da Cota\u00e7\u00e3o do Fornecedor", + "Supplier Type": "Tipo de Fornecedor", + "Support": "Suporte", + "Support Ticket": "Ticket de Suporte", + "System Console": "Console do Sistema", + "Table Mapper Detail": "Detalhe do mapeamento da tabela", + "Tag": "Etiqueta", + "Target Detail": "Detalhe da meta", + "Task": "Tarefa", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Territory": "Territ\u00f3rio", + "Timesheet": "Quadro de Hor\u00e1rios", + "Timesheet Detail": "Detalhe do Quadro de Hor\u00e1rios", + "To Do": "Lista de Tarefas", + "ToDo": "Lista de Tarefas", + "Top Bar Item": "Item da barra superior", + "Trash Control": "Controle de lixo", + "Trend Analyzer Control": "Controle do Analisador de tend\u00eancia", + "UOM": "UDM", + "UOM Conversion Detail": "Detalhe da Convers\u00e3o de UDM", + "Unread Messages": "Mensagens n\u00e3o lidas", + "Update Delivery Date": "Atualizar Data de Entrega", + "UserRole": "Fun\u00e7\u00e3o do Usu\u00e1rio", + "Utilities": "Utilit\u00e1rios", + "Valuation Control": "Controle de Avalia\u00e7\u00e3o", + "Warehouse": "Almoxarifado", + "Warehouse Type": "Tipo de Almoxarifado", + "Warehouse User": "Usu\u00e1rio Armaz\u00e9m", + "Web Page": "P\u00e1gina Web", + "Website": "Site", + "Website Item Group": "Grupo de Itens do site", + "Website Product Category": "Categoria de Produto do site", + "Website Script": "Script do site", + "Website Settings": "Configura\u00e7\u00f5es do site", + "Website Slideshow": "Slideshow do site", + "Website Slideshow Item": "Item do Slideshow do site", + "Workflow": "Fluxo de Trabalho", + "Workflow Action": "A\u00e7\u00e3o do Fluxo de Trabalho", + "Workflow Action Detail": "Detalhe da A\u00e7\u00e3o do Fluxo de Trabalho", + "Workflow Document State": "Estado do Documento do Fluxo de Trabalho", + "Workflow Engine": "Mecanismo do Fluxo de Trabalho", + "Workflow Rule": "Regra do Fluxo de Trabalho", + "Workflow Rule Detail": "Detalhe da Regra do Fluxo de Trabalho", + "Workflow State": "Estado do Fluxo de Trabalho", + "Workflow Transition": "Transi\u00e7\u00e3o do Fluxo de Trabalho", + "Workstation": "Esta\u00e7\u00e3o de Trabalho" +} \ No newline at end of file diff --git a/selling/doctype/campaign/locale/pt-BR-doc.json b/selling/doctype/campaign/locale/pt-BR-doc.json new file mode 100644 index 0000000000..72106ee44d --- /dev/null +++ b/selling/doctype/campaign/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Campaign": "Campanha", + "Campaign Name": "Nome da Campanha", + "Description": "Descri\u00e7\u00e3o", + "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ": "Mantenha o controle das campanhas de vendas. Mantenha o controle de prospectos, cota\u00e7\u00f5es, Ordens de Venda, etc para mensurar o Retorno do Investimento.", + "Selling": "Vendas", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/pt-BR-doc.json b/selling/doctype/communication_log/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2eb01f3b01 --- /dev/null +++ b/selling/doctype/communication_log/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Communication Log": "Log de Comunica\u00e7\u00e3o", + "Communication by": "Comunica\u00e7\u00e3o por", + "Communication type": "Tipo de comunica\u00e7\u00e3o", + "Date": "Data", + "Email": "E-mail", + "Notes": "Notas", + "Other": "Outro", + "Phone": "Telefone", + "SMS": "SMS", + "Selling": "Vendas", + "Visit": "Visita" +} \ No newline at end of file diff --git a/selling/doctype/customer/locale/pt-BR-doc.json b/selling/doctype/customer/locale/pt-BR-doc.json new file mode 100644 index 0000000000..8aec413acf --- /dev/null +++ b/selling/doctype/customer/locale/pt-BR-doc.json @@ -0,0 +1,40 @@ +{ + "To manage Customer Groups, click here": "Para gerenciar Grupos de Clientes, clique aqui", + "To manage Territory, click here": "Para gerenciar Territ\u00f3rio, clique aqui", + "Address & Contacts": "Endere\u00e7o e Contatos", + "Address Desc": "Descri\u00e7\u00e3o do Endere\u00e7o", + "Address HTML": "Endere\u00e7o HTML", + "Basic Info": "Informa\u00e7\u00f5es B\u00e1sicas", + "Buyer of Goods and Services.": "Comprador de Mercadorias e Servi\u00e7os.", + "CUST": "CUST", + "CUSTMUM": "CUSTMUM", + "Communication HTML": "Comunica\u00e7\u00e3o HTML", + "Company": "Empresa", + "Contact Desc": "Descri\u00e7\u00e3o do Contato", + "Contact HTML": "Contato HTML", + "Credit Days": "Dias de Cr\u00e9dito", + "Credit Limit": "Limite de Cr\u00e9dito", + "Customer": "Cliente", + "Customer Details": "Detalhes do Cliente", + "Customer Group": "Grupo de Clientes", + "Customer Name": "Nome do cliente", + "Customer Type": "Tipo de Cliente", + "Default Commission Rate": "Taxa de Comiss\u00e3o padr\u00e3o", + "Default Currency": "Moeda padr\u00e3o", + "Default Price List": "Lista de Pre\u00e7os padr\u00e3o", + "Default Sales Partner": "Parceiro de vendas padr\u00e3o", + "Fetch lead which will be converted into customer.": "Extrair prospecto que vai se tornar cliente.", + "Individual": "Individual", + "Lead Ref": "Ref. do Prospecto", + "More Info": "Mais informa\u00e7\u00f5es", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "Nota: voc\u00ea pode gerenciar M\u00faltiplos Endere\u00e7os ou Contatos atrav\u00e9s de Endere\u00e7os & Contatos", + "Sales Team": "Equipe de Vendas", + "Sales Team Details": "Detalhes da Equipe de Vendas", + "Selling": "Vendas", + "Series": "S\u00e9ries", + "Territory": "Territ\u00f3rio", + "This currency will get fetched in Sales transactions of this customer": "Essa moeda vai ser buscada em transa\u00e7\u00f5es de vendas deste cliente", + "To create an Account Head under a different company, select the company and save customer.": "Para criar uma Conta, sob uma empresa diferente, selecione a empresa e salve o Cliente.", + "Website": "Site", + "Your Customer's TAX registration numbers (if applicable) or any general information": "Os n\u00fameros de inscri\u00e7\u00e3o fiscal do seu Cliente (se aplic\u00e1vel) ou qualquer outra informa\u00e7\u00e3o geral" +} \ No newline at end of file diff --git a/selling/doctype/customer/locale/pt-BR-py.json b/selling/doctype/customer/locale/pt-BR-py.json new file mode 100644 index 0000000000..8047920e58 --- /dev/null +++ b/selling/doctype/customer/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "A Supplier exists with same name": "Um Fornecedor existe com mesmo nome" +} \ No newline at end of file diff --git a/selling/doctype/industry_type/locale/pt-BR-doc.json b/selling/doctype/industry_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..ab94068af4 --- /dev/null +++ b/selling/doctype/industry_type/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Industry": "Ind\u00fastria", + "Industry Type": "Tipo de ind\u00fastria", + "Selling": "Vendas" +} \ No newline at end of file diff --git a/selling/doctype/installation_note/locale/pt-BR-doc.json b/selling/doctype/installation_note/locale/pt-BR-doc.json new file mode 100644 index 0000000000..6fe9f1b8f8 --- /dev/null +++ b/selling/doctype/installation_note/locale/pt-BR-doc.json @@ -0,0 +1,34 @@ +{ + "Address": "Endere\u00e7o", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Cancel Reason": "Motivo do Cancelar", + "Cancelled": "Cancelado", + "Company": "Empresa", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Person": "Pessoa de Contato", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Group": "Grupo de Clientes", + "Delivery Note No": "N\u00ba da Guia de Remessa", + "Draft": "Rascunho", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Items": "Obter itens", + "IN": "EM", + "Installation Date": "Data de Instala\u00e7\u00e3o", + "Installation Note": "Nota de Instala\u00e7\u00e3o", + "Installation Note Item": "Item da Nota de Instala\u00e7\u00e3o", + "Installation Time": "O tempo de Instala\u00e7\u00e3o", + "Item Details": "Detalhes do Item", + "Mobile No": "Telefone Celular", + "Name": "Nome", + "Remarks": "Observa\u00e7\u00f5es", + "Select the relevant company name if you have multiple companies.": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas.", + "Selling": "Vendas", + "Series": "S\u00e9ries", + "Status": "Estado", + "Submitted": "Enviado", + "Territory": "Territ\u00f3rio", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema." +} \ No newline at end of file diff --git a/selling/doctype/installation_note_item/locale/pt-BR-doc.json b/selling/doctype/installation_note_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..27c0f2ef37 --- /dev/null +++ b/selling/doctype/installation_note_item/locale/pt-BR-doc.json @@ -0,0 +1,12 @@ +{ + "Against Document Detail No": "Contra Detalhe do Documento n\u00ba ", + "Against Document No": "Contra Documento n\u00ba", + "Delivery Date": "Data de entrega", + "Description": "Descri\u00e7\u00e3o", + "Document Type": "Tipo de Documento", + "Installation Note Item": "Item da Nota de Instala\u00e7\u00e3o", + "Installed Qty": "Quantidade Instalada", + "Item Code": "C\u00f3digo do Item", + "Selling": "Vendas", + "Serial No": "N\u00ba de S\u00e9rie" +} \ No newline at end of file diff --git a/selling/doctype/lead/locale/pt-BR-doc.json b/selling/doctype/lead/locale/pt-BR-doc.json new file mode 100644 index 0000000000..1179872e1f --- /dev/null +++ b/selling/doctype/lead/locale/pt-BR-doc.json @@ -0,0 +1,81 @@ +{ + "To manage Territory, click here": "Para gerenciar Territ\u00f3rio, clique aqui", + "Address Line 1": "Endere\u00e7o Linha 1", + "Address Line 2": "Endere\u00e7o Linha 2", + "Advertisement": "An\u00fancio", + "Attempted to Contact": "Tentou entrar em Contato", + "Blog": "Blog", + "Blog Subscriber": "Assinante do Blog", + "Call": "Chamar", + "Campaign": "Campanha", + "Campaign Name": "Nome da Campanha", + "Channel Partner": "Parceiro de Canal", + "City": "Cidade", + "Client": "Cliente", + "Communication HTML": "Comunica\u00e7\u00e3o HTML", + "Company": "Empresa", + "Company Name": "Nome da Empresa", + "Consultant": "Consultor", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Name": "Nome do Contato", + "Contact in Future": "Fale no Futuro", + "Contacted": "Contactado", + "Converted": "Convertido", + "Country": "Pa\u00eds", + "Customer": "Cliente", + "Date on which the lead was last contacted": "\u00daltima data em que o Prospecto foi contatado", + "Email": "E-mail", + "Email Id": "Endere\u00e7o de e-mail", + "Enter campaign name if the source of lead is campaign.": "Digite o nome da campanha se a origem do Prospecto foi uma campanha.", + "Exhibition": "Exposi\u00e7\u00e3o", + "Fax": "Fax", + "Fiscal Year": "Exerc\u00edcio fiscal", + "From Customer": "Do Cliente", + "Industry": "Ind\u00fastria", + "Interested": "Interessado", + "LEAD": "LEAD", + "LEAD/10-11/": "LEAD/10-11 /", + "LEAD/MUMBAI/": "LEAD / MUMBAI /", + "Last Contact Date": "Data do \u00faltimo contato", + "Lead": "Prospecto", + "Lead Details": "Detalhes do Prospecto", + "Lead Lost": "Prospecto Perdido", + "Lead Owner": "Propriet\u00e1rio do Prospecto", + "Lead Type": "Tipo de Prospecto", + "Lost Reason": "Raz\u00e3o da perda", + "Lower Income": "Baixa Renda", + "Market Segment": "Segmento de mercado", + "Middle Income": "Rendimento M\u00e9dio", + "Mobile No.": "Telefone Celular.", + "More Info": "Mais informa\u00e7\u00f5es", + "Name of organization from where lead has come": "Nome da Organiza\u00e7\u00e3o de onde veio o Prospecto", + "Naming Series": "S\u00e9ries nomeadas", + "Next Contact By": "Pr\u00f3ximo Contato Por", + "Next Contact Date": "Data do pr\u00f3ximo Contato", + "Not interested": "N\u00e3o est\u00e1 interessado", + "Open": "Abrir", + "Other": "Outro", + "Phone": "Telefone", + "Pin Code": "C\u00f3digo PIN", + "Product Enquiry": "Consulta de Produto", + "Remark": "Observa\u00e7\u00e3o", + "Replied": "Respondeu", + "Request Type": "Tipo de Solicita\u00e7\u00e3o", + "Request for Information": "Pedido de Informa\u00e7\u00e3o", + "Selling": "Vendas", + "Source": "Fonte", + "Source of th": "Origem do", + "Source of the lead. If via a campaign, select \"Campaign\"": "Origem do Prospecto. Se foi atrav\u00e9s de uma campanha, selecione "Campanha"", + "State": "Estado", + "Status": "Estado", + "Suggestions": "Sugest\u00f5es", + "Supplier": "Fornecedor", + "Territory": "Territ\u00f3rio", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Unsubscribed": "Inscri\u00e7\u00e3o Cancelada", + "Upper Income": "Renda superior", + "Website": "Site", + "Your sales person who will contact the lead in future": "Seu vendedor que entrar\u00e1 em contato com o prospecto no futuro", + "Your sales person will get a reminder on this date to contact the lead": "Seu vendedor receber\u00e1 um lembrete nesta data para contatar o prospecto" +} \ No newline at end of file diff --git a/selling/doctype/lead/locale/pt-BR-py.json b/selling/doctype/lead/locale/pt-BR-py.json new file mode 100644 index 0000000000..f148f5e9b5 --- /dev/null +++ b/selling/doctype/lead/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "Email Id must be unique, already exists for: ": "Endere\u00e7o de e-mail deve ser \u00fanico, j\u00e1 existe para: " +} \ No newline at end of file diff --git a/selling/doctype/opportunity/locale/pt-BR-doc.json b/selling/doctype/opportunity/locale/pt-BR-doc.json new file mode 100644 index 0000000000..17614fd7ad --- /dev/null +++ b/selling/doctype/opportunity/locale/pt-BR-doc.json @@ -0,0 +1,67 @@ +{ + "To manage Territory, click here": "Para gerenciar Territ\u00f3rio, clique aqui", + "To manage Territory, click here": "Para gerenciar Territ\u00f3rio, clique aqui", + "Address": "Endere\u00e7o", + "Advertisement": "An\u00fancio", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Campaign": "Campanha", + "Cancelled": "Cancelado", + "Cold Calling": "Cold Calling", + "Communication HTML": "Comunica\u00e7\u00e3o HTML", + "Company": "Empresa", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Mobile No": "Celular do Contato", + "Contact Person": "Pessoa de Contato", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Group": "Grupo de Clientes", + "Customer Name": "Nome do cliente", + "Customer's Vendor": "Vendedor do cliente", + "Date on which the lead was last contacted": "\u00daltima data em que o Prospecto foi contatado", + "Draft": "Rascunho", + "Enter name of campaign if source of enquiry is campaign": "Digite o nome da campanha se o motivo da consulta foi uma campanha.", + "Exhibition": "Exposi\u00e7\u00e3o", + "Existing Customer": "Cliente existente", + "Filing in Additional Information about the Opportunity will help you analyze your data better.": "Preenchimento de informa\u00e7\u00f5es adicionais sobre o Opportunity vai ajudar a analisar melhor seus dados.", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Items": "Itens", + "Items which do not exist in Item master can also be entered on customer's request": "Itens que n\u00e3o existem no Cadastro de Itens tamb\u00e9m podem ser inseridos na requisi\u00e7\u00e3o do cliente", + "Keep a track of communication related to this enquiry which will help for future reference.": "Mantenha o controle de comunica\u00e7\u00f5es relacionadas a esta consulta, o que ir\u00e1 ajudar para futuras refer\u00eancias.", + "Last Contact Date": "Data do \u00faltimo contato", + "Lead": "Prospecto", + "Maintenance": "Manuten\u00e7\u00e3o", + "Mass Mailing": "Divulga\u00e7\u00e3o em massa", + "More Info": "Mais informa\u00e7\u00f5es", + "Name": "Nome", + "Naming Series": "S\u00e9ries nomeadas", + "Next Contact By": "Pr\u00f3ximo Contato Por", + "Next Contact Date": "Data do pr\u00f3ximo Contato", + "OPPT": "OPPT", + "Opportunity": "Oportunidade", + "Opportunity Date": "Data da oportunidade", + "Opportunity From": "Oportunidade De", + "Opportunity Items": "Itens da oportunidade", + "Opportunity Lost": "Oportunidade perdida", + "Opportunity Type": "Tipo de Oportunidade", + "Order Confirmed": "Ordem Confirmada", + "Potential Sales Deal": "Neg\u00f3cio de Vendas em potencial", + "Quotation Lost Reason": "Raz\u00e3o da perda da Cota\u00e7\u00e3o", + "Quotation Sent": "Cota\u00e7\u00e3o Enviada", + "Reference": "Refer\u00eancia", + "Sales": "Vendas", + "Selling": "Vendas", + "Source": "Fonte", + "Status": "Estado", + "Submitted": "Enviado", + "Supplier Reference": "Refer\u00eancia do Fornecedor", + "Territory": "Territ\u00f3rio", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "To Discuss": "Para Discutir", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Walk In": "Walk In", + "Your sales person who will contact the customer in future": "Seu vendedor que entrar\u00e1 em contato com o cliente no futuro", + "Your sales person will get a reminder on this date to contact the customer": "Seu vendedor receber\u00e1 um lembrete nesta data para contatar o cliente" +} \ No newline at end of file diff --git a/selling/doctype/opportunity_item/locale/pt-BR-doc.json b/selling/doctype/opportunity_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2995bec600 --- /dev/null +++ b/selling/doctype/opportunity_item/locale/pt-BR-doc.json @@ -0,0 +1,12 @@ +{ + "Basic Rate": "Taxa B\u00e1sica", + "Brand": "Marca", + "Description": "Descri\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Opportunity Item": "Item da oportunidade", + "Qty": "Qtde.", + "Selling": "Vendas", + "UOM": "UDM" +} \ No newline at end of file diff --git a/selling/doctype/quotation/locale/pt-BR-doc.json b/selling/doctype/quotation/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e306e8e0d3 --- /dev/null +++ b/selling/doctype/quotation/locale/pt-BR-doc.json @@ -0,0 +1,96 @@ +{ + "Add Terms and Conditions for the Quotation like Payment Terms, Validity of Offer etc. You can also prepare a Terms and Conditions Master and use the Template": "Adicione Termos e Condi\u00e7\u00f5es para a Cota\u00e7\u00e3o como Condi\u00e7\u00f5es de Pagamento, Validade da Oferta e etc. Voc\u00ea tamb\u00e9m pode preparar um cadastro de Termos e Condi\u00e7\u00f5es e usar o Modelo", + "Address": "Endere\u00e7o", + "Advertisement": "An\u00fancio", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Calculate Taxes and Charges": "Calcular Impostos e Encargos", + "Campaign": "Campanha", + "Cancelled": "Cancelado", + "Cold Calling": "Cold Calling", + "Communication HTML": "Comunica\u00e7\u00e3o HTML", + "Communication History": "Hist\u00f3rico da comunica\u00e7\u00e3o", + "Company": "Empresa", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Conversion Rate": "Taxa de Convers\u00e3o", + "Currency": "Moeda", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Group": "Grupo de Clientes", + "Customer Name": "Nome do cliente", + "Customer's Vendor": "Vendedor do cliente", + "Customer's currency - If you want to select a currency that is not the default currency, then you must also specify the Currency Conversion Rate.": "Moeda do cliente - Se voc\u00ea deseja selecionar uma moeda que n\u00e3o \u00e9 a moeda padr\u00e3o, ent\u00e3o voc\u00ea tamb\u00e9m deve especificar a taxa de convers\u00e3o.", + "Draft": "Rascunho", + "Exhibition": "Exposi\u00e7\u00e3o", + "Existing Customer": "Cliente existente", + "File List": "Lista de Arquivos", + "Filling in additional information about the Quotation will help you analyze your data better.": "Preenchimento de informa\u00e7\u00f5es adicionais sobre a cota\u00e7\u00e3o ir\u00e1 ajud\u00e1-lo a analisar os seus dados melhor.", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Taxes and Charges": "Obter Impostos e Encargos", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "Grand Total": "Total Geral", + "Grand Total*": "Total Geral*", + "In Words": "Por extenso", + "In Words will be visible once you save the Quotation.": "Por extenso ser\u00e1 vis\u00edvel quando voc\u00ea salvar a cota\u00e7\u00e3o.", + "Items": "Itens", + "Keep a track on communications regarding this Quotation. This will help you remember earlier communications in case the Customer comes back again": "Mantenha o controle sobre as comunica\u00e7\u00f5es relativas a este Or\u00e7amento. Isso vai ajudar voc\u00ea a lembrar de comunica\u00e7\u00f5es anteriores para o caso de o cliente voltar novamente", + "Lead": "Prospecto", + "Lead Name": "Nome do Prospecto", + "Letter Head": "Timbrado", + "Maintenance": "Manuten\u00e7\u00e3o", + "Mass Mailing": "Divulga\u00e7\u00e3o em massa", + "Mobile No": "Telefone Celular", + "More Info": "Mais informa\u00e7\u00f5es", + "Naming Series": "S\u00e9ries nomeadas", + "Net Total*": "Total L\u00edquido*", + "Opportunity Item": "Item da oportunidade", + "Opportunity No": "N\u00ba da oportunidade", + "Order Confirmed": "Ordem Confirmada", + "Order Lost": "Ordem Perdida", + "Order Type": "Tipo de Ordem", + "Organization": "Organiza\u00e7\u00e3o", + "Price List": "Lista de Pre\u00e7os", + "Price List Currency": "Moeda da Lista de Pre\u00e7os", + "Price List Currency Conversion Rate": "Taxa de convers\u00e3o da moeda da lista de pre\u00e7os", + "Price List and Currency": "Lista de Pre\u00e7os e Moeda", + "Pull Opportunity Detail": "Puxar Detalhe da oportunidade", + "QTN": "QTN", + "Quotation": "Cota\u00e7\u00e3o", + "Quotation Date": "Data da Cota\u00e7\u00e3o", + "Quotation Items": "Itens da Cota\u00e7\u00e3o", + "Quotation Lost Reason": "Raz\u00e3o da perda da Cota\u00e7\u00e3o", + "Quotation To": "Cota\u00e7\u00e3o para", + "Rate at which Price list currency is converted to company's base currency": "Taxa na qual a moeda da lista de pre\u00e7os \u00e9 convertida para a moeda base da empresa", + "Rate at which customer's currency is converted to company's base currency": "Taxa na qual a moeda do cliente \u00e9 convertida para a moeda base da empresa", + "Re-Calculate Values": "Re-calcular valores", + "Reference": "Refer\u00eancia", + "Rounded Total": "Total arredondado", + "Sales": "Vendas", + "Sales Taxes and Charges": "Impostos e Taxas sobre Vendas", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the currency in which price list is maintained": "Selecione a moeda na qual a lista de pre\u00e7os \u00e9 mantida", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "Selecione a lista de pre\u00e7os como cadastrada em "Lista de Pre\u00e7o". Isso vai puxar os valores de refer\u00eancia dos itens contra esta lista de pre\u00e7os, conforme especificado no cadastro "Item".", + "Select the relevant company name if you have multiple companies.": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas.", + "Selling": "Vendas", + "Source": "Fonte", + "Status": "Estado", + "Submitted": "Enviado", + "Supplier Reference": "Refer\u00eancia do Fornecedor", + "Taxes": "Impostos", + "Taxes and Charges Calculation": "C\u00e1lculo de Impostos e Encargos", + "Taxes and Charges Total*": "Total de Impostos e Encargos*", + "Term Details": "Detalhes dos Termos", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions HTML": "Termos e Condi\u00e7\u00f5es HTML", + "Territory": "Territ\u00f3rio", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "To create Quotation against Opportunity, Select Opportunity No. and click on 'Pull Opportunity Details' ": "Para criar uma Cota\u00e7\u00e3o para uma Oportunidade, selecione o N\u00ba da Oportunidade e clique em 'Obter Detalhes da Oportunidade"", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Totals": "Totais", + "Will be fetched from Customer": "Ser\u00e1 obtido a partir do Cliente" +} \ No newline at end of file diff --git a/selling/doctype/quotation_item/locale/pt-BR-doc.json b/selling/doctype/quotation_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e7763abedd --- /dev/null +++ b/selling/doctype/quotation_item/locale/pt-BR-doc.json @@ -0,0 +1,23 @@ +{ + "Against Docname": "Contra Docname", + "Against Doctype": "Contra Doctype", + "Amount": "Quantidade", + "Amount*": "Quantidade*", + "Basic Rate*": "Taxa B\u00e1sica*", + "Brand": "Marca", + "Customer's Item Code": "C\u00f3digo do Item do Cliente", + "Description": "Descri\u00e7\u00e3o", + "Discount (%)": "Desconto (%)", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Item Tax Rate": "Taxa de Imposto do Item", + "Page Break": "Quebra de p\u00e1gina", + "Price List Rate": "Taxa de Lista de Pre\u00e7os", + "Price List Rate*": "Taxa de Lista de Pre\u00e7os*", + "Quantity": "Quantidade", + "Quotation Item": "Item da Cota\u00e7\u00e3o", + "Rate": "Taxa", + "Selling": "Vendas", + "UOM": "UDM" +} \ No newline at end of file diff --git a/selling/doctype/sales_and_purchase_return_item/locale/pt-BR-doc.json b/selling/doctype/sales_and_purchase_return_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3cc5b3441e --- /dev/null +++ b/selling/doctype/sales_and_purchase_return_item/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Batch No": "N\u00ba do Lote", + "Description": "Descri\u00e7\u00e3o", + "Detail Name": "Nome do Detalhe", + "Item Code": "C\u00f3digo do Item", + "Qty": "Qtde.", + "Rate": "Taxa", + "Returned Qty": "Qtde. retornada", + "Sales and Purchase Return Item": "Item de retorno de compra e venda", + "Selling": "Vendas", + "Serial No": "N\u00ba de S\u00e9rie", + "UOM": "UDM" +} \ No newline at end of file diff --git a/selling/doctype/sales_common/locale/pt-BR-doc.json b/selling/doctype/sales_common/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b617cab3f8 --- /dev/null +++ b/selling/doctype/sales_common/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Sales Common": "Vendas comuns", + "Selling": "Vendas" +} \ No newline at end of file diff --git a/selling/doctype/sales_common/locale/pt-BR-py.json b/selling/doctype/sales_common/locale/pt-BR-py.json new file mode 100644 index 0000000000..ef1ccd43f0 --- /dev/null +++ b/selling/doctype/sales_common/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "not within Fiscal Year": "n\u00e3o est\u00e1 dentro do Ano Fiscal" +} \ No newline at end of file diff --git a/selling/doctype/sales_order/locale/pt-BR-doc.json b/selling/doctype/sales_order/locale/pt-BR-doc.json new file mode 100644 index 0000000000..1aab0e6488 --- /dev/null +++ b/selling/doctype/sales_order/locale/pt-BR-doc.json @@ -0,0 +1,124 @@ +{ + "% Delivered": "Entregue %", + "% Amount Billed": "Valor faturado %", + "% of materials billed against this Sales Order": "% de materiais faturados contra esta Ordem de Venda", + "% of materials delivered against this Sales Order": "% de materiais entregues contra esta Ordem de Venda", + "Address": "Endere\u00e7o", + "Advertisement": "An\u00fancio", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Billed": "Faturado", + "Billing Status": "Estado do Faturamento", + "Calculate Taxes and Charges": "Calcular Impostos e Encargos", + "Campaign": "Campanha", + "Cancel Reason": "Motivo do Cancelar", + "Cancelled": "Cancelado", + "Category of customer as entered in Customer master": "Categoria de cliente como no Cadastrado de Cliente", + "Closed": "Fechado", + "Cold Calling": "Cold Calling", + "Commission Rate": "Taxa de Comiss\u00e3o", + "Company": "Empresa", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Conversion Rate": "Taxa de Convers\u00e3o", + "Currency": "Moeda", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Group": "Grupo de Clientes", + "Customer's Vendor": "Vendedor do cliente", + "Customer's currency": "Moeda do Cliente", + "Delivered": "Entregue", + "Delivery Status": "Estado da entrega", + "Display all the individual items delivered with the main items": "Exibir todos os itens individuais entregues com os itens principais", + "Draft": "Rascunho", + "Exhibition": "Exposi\u00e7\u00e3o", + "Existing Customer": "Cliente existente", + "Expected Delivery Date": "Data de entrega prevista", + "File List": "Lista de Arquivos", + "Filling in additional information about the Sales Order will help you analyze your data better.": "Preenchimento de informa\u00e7\u00f5es adicionais sobre a Ordem de Venda vai ajudar a analisar melhor seus dados.", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Taxes and Charges": "Obter Impostos e Encargos", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "Grand Total (Export)": "Total Geral (Exporta\u00e7\u00e3o)", + "Grand Total*": "Total Geral*", + "In Words": "Por extenso", + "In Words (Export)": "Por extenso (Exporta\u00e7\u00e3o)", + "In Words will be visible once you save the Sales Order.": "Por extenso ser\u00e1 vis\u00edvel quando voc\u00ea salvar a Ordem de Venda.", + "Items": "Itens", + "Letter Head": "Timbrado", + "Maintenance": "Manuten\u00e7\u00e3o", + "Mass Mailing": "Divulga\u00e7\u00e3o em massa", + "Mobile No": "Telefone Celular", + "More Info": "Mais informa\u00e7\u00f5es", + "Name": "Nome", + "Name as entered in Sales Partner master": "Nome como consta no cadastro de Parceiros de Vendas", + "Net Total*": "Total L\u00edquido*", + "Not Applicable": "N\u00e3o Aplic\u00e1vel", + "Not Billed": "N\u00e3o Faturado", + "Not Delivered": "N\u00e3o Entregue", + "Order Type": "Tipo de Ordem", + "P.O. Date": "Data PO", + "P.O. No": "N\u00ba PO", + "PI/2011/": "PI/2011 /", + "Packing Details": "Detalhes da embalagem", + "Packing List": "Lista de embalagem", + "Partly Billed": "Parcialmente faturado", + "Partly Delivered": "Parcialmente entregue", + "Price List": "Lista de Pre\u00e7os", + "Price List Currency": "Moeda da Lista de Pre\u00e7os", + "Price List Currency Conversion Rate": "Taxa de convers\u00e3o da moeda da lista de pre\u00e7os", + "Price List and Currency": "Lista de Pre\u00e7os e Moeda", + "Project Name": "Nome do Projeto", + "Pull Quotation Items": "Puxar Itens da cota\u00e7\u00e3o", + "Purchase Order sent by customer": "Ordem de Compra enviada pelo cliente", + "Quotation Date": "Data da Cota\u00e7\u00e3o", + "Quotation No": "N\u00ba da Cota\u00e7\u00e3o", + "Quotation no against which this Sales Order is made ": "N\u00ba da Cota\u00e7\u00e3o contra a qual esta Ordem de Venda \u00e9 feita", + "Rate at which Price list currency is converted to company's base currency": "Taxa na qual a moeda da lista de pre\u00e7os \u00e9 convertida para a moeda base da empresa", + "Rate at which customer's currency is converted to company's base currency": "Taxa na qual a moeda do cliente \u00e9 convertida para a moeda base da empresa", + "Re-Calculate Values": "Re-calcular valores", + "Reference": "Refer\u00eancia", + "Rounded Total": "Total arredondado", + "Rounded Total (Export)": "Total arredondado (Exporta\u00e7\u00e3o)", + "SO": "OV", + "SO/10-11/": "SO/10-11 /", + "SO1112": "SO1112", + "Sales": "Vendas", + "Sales Order": "Ordem de Venda", + "Sales Order Date": "Data da Ordem de Venda", + "Sales Order Items": "Itens da Ordem de Venda", + "Sales Partner": "Parceiro de Vendas", + "Sales Taxes and Charges": "Impostos e Taxas sobre Vendas", + "Sales Team": "Equipe de Vendas", + "Sales Team1": "Equipe de Vendas", + "Select Customer": "Selecione o Cliente", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the currency in which price list is maintained": "Selecione a moeda na qual a lista de pre\u00e7os \u00e9 mantida", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "Selecione a lista de pre\u00e7os como cadastrada em "Lista de Pre\u00e7o". Isso vai puxar os valores de refer\u00eancia dos itens contra esta lista de pre\u00e7os, conforme especificado no cadastro "Item".", + "Select the relevant company name if you have multiple companies.": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas.", + "Selling": "Vendas", + "Series": "S\u00e9ries", + "Shipping Address": "Endere\u00e7o de envio", + "Shipping Address Name": "Nome do Endere\u00e7o de envio", + "Source": "Fonte", + "Status": "Estado", + "Stopped": "Parado", + "Submitted": "Enviado", + "Supplier Reference": "Refer\u00eancia do Fornecedor", + "Taxes": "Impostos", + "Taxes and Charges Calculation": "C\u00e1lculo de Impostos e Encargos", + "Taxes and Charges Total*": "Total de Impostos e Encargos*", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions Details": "Detalhes dos Termos e Condi\u00e7\u00f5es", + "Terms and Conditions HTML": "Termos e Condi\u00e7\u00f5es HTML", + "Territory": "Territ\u00f3rio", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Total Commission": "Total da Comiss\u00e3o", + "Totals": "Totais", + "Track this Sales Order against any Project": "Acompanhar este Ordem de Venda contra qualquer projeto" +} \ No newline at end of file diff --git a/selling/doctype/sales_order_item/locale/pt-BR-doc.json b/selling/doctype/sales_order_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5444b6afae --- /dev/null +++ b/selling/doctype/sales_order_item/locale/pt-BR-doc.json @@ -0,0 +1,32 @@ +{ + "Actual Qty": "Qtde Real", + "Amount": "Quantidade", + "Amount*": "Quantidade*", + "Basic Rate*": "Taxa B\u00e1sica*", + "Billed Amt": "Valor Faturado", + "Brand Name": "Marca", + "Customer's Item Code": "C\u00f3digo do Item do Cliente", + "Delivered Qty": "Qtde entregue", + "Description": "Descri\u00e7\u00e3o", + "Discount(%)": "Desconto (%)", + "For Production": "Para Produ\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Item Tax Rate": "Taxa de Imposto do Item", + "Page Break": "Quebra de p\u00e1gina", + "Planned Quantity": "Quantidade planejada", + "Price List Rate": "Taxa de Lista de Pre\u00e7os", + "Price List Rate*": "Taxa de Lista de Pre\u00e7os*", + "Produced Quantity": "Quantidade produzida", + "Projected Qty": "Qtde. Projetada", + "Quantity": "Quantidade", + "Quotation No.": "N\u00ba da Cota\u00e7\u00e3o.", + "Rate": "Taxa", + "Reserved Warehouse": "Almoxarifado Reservado", + "Sales Order Date": "Data da Ordem de Venda", + "Sales Order Item": "Item da Ordem de Venda", + "Selling": "Vendas", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "UOM": "UDM" +} \ No newline at end of file diff --git a/selling/doctype/sales_team/locale/pt-BR-doc.json b/selling/doctype/sales_team/locale/pt-BR-doc.json new file mode 100644 index 0000000000..6bfda5eaa7 --- /dev/null +++ b/selling/doctype/sales_team/locale/pt-BR-doc.json @@ -0,0 +1,11 @@ +{ + "Allocated (%)": "Alocados (%)", + "Allocated Amount": "Montante alocado", + "Contact No.": "N\u00ba Contato.", + "Designation": "Designa\u00e7\u00e3o", + "Incentives": "Incentivos", + "Parenttype": "Parenttype", + "Sales Person": "Vendedor", + "Sales Team": "Equipe de Vendas", + "Selling": "Vendas" +} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/pt-BR-doc.json b/selling/doctype/shipping_address/locale/pt-BR-doc.json new file mode 100644 index 0000000000..981a0640a6 --- /dev/null +++ b/selling/doctype/shipping_address/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Name": "Nome do cliente", + "Is Primary Address": "\u00c9 o endere\u00e7o principal", + "No": "N\u00e3o", + "Selling": "Vendas", + "Ship To": "Enviar Para", + "Shipping Address": "Endere\u00e7o de envio", + "Shipping Details": "Detalhes do envio", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Yes": "Sim" +} \ No newline at end of file diff --git a/selling/doctype/sms_center/locale/pt-BR-doc.json b/selling/doctype/sms_center/locale/pt-BR-doc.json new file mode 100644 index 0000000000..0e8565b066 --- /dev/null +++ b/selling/doctype/sms_center/locale/pt-BR-doc.json @@ -0,0 +1,21 @@ +{ + "All Contact": "Todo Contato", + "All Customer Contact": "Todo Contato do Cliente", + "All Employee (Active)": "Todos os Empregados (Ativos)", + "All Lead (Open)": "Todos Prospectos (Abertos)", + "All Sales Partner Contact": "Todo Contato de Parceiros de Vendas", + "All Sales Person": "Todos os Vendedores", + "All Supplier Contact": "Todo Contato de Fornecedor", + "Branch": "Ramo", + "Create Receiver List": "Criar Lista de Receptor", + "Customer": "Cliente", + "Department": "Departamento", + "Message": "Mensagem", + "Message greater than 160 character will be splitted into multiple mesage": "Mensagens maiores do que 160 caracteres v\u00e3o ser divididos em m\u00faltiplas mensagens", + "Receiver List": "Lista de recebedores", + "SMS Center": "Centro de SMS", + "Selling": "Vendas", + "Send SMS": "Envie SMS", + "Send To": "Enviar para", + "Supplier": "Fornecedor" +} \ No newline at end of file diff --git a/selling/module_def/selling/locale/pt-BR-doc.json b/selling/module_def/selling/locale/pt-BR-doc.json new file mode 100644 index 0000000000..9e1a3685af --- /dev/null +++ b/selling/module_def/selling/locale/pt-BR-doc.json @@ -0,0 +1,11 @@ +{ + "Buyer of Goods and Services.": "Comprador de Mercadorias e Servi\u00e7os.", + "Customer Addresses And Contacts": "Endere\u00e7os e contatos do cliente", + "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ": "Mantenha o controle das campanhas de vendas. Mantenha o controle de prospectos, cota\u00e7\u00f5es, Ordens de Venda, etc para mensurar o Retorno do Investimento.", + "Potential Sales Deal": "Neg\u00f3cio de Vendas em potencial", + "Sales Analytics": "An\u00e1lise de Vendas", + "Sales Browser": "Navegador de Vendas", + "Sales Dashboard": "Painel de Vendas", + "Sales Orders Pending To Be Delivered": "Ordens de Venda pendentes de entregua", + "Selling Home": "In\u00edcio de Vendas" +} \ No newline at end of file diff --git a/selling/page/selling_home/locale/pt-BR-js.json b/selling/page/selling_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..d90378d784 --- /dev/null +++ b/selling/page/selling_home/locale/pt-BR-js.json @@ -0,0 +1,52 @@ +{ + "Address": "Endere\u00e7o", + "All Addresses.": "Todos os Endere\u00e7os.", + "All Contacts.": "Todos os contatos.", + "All Products or Services.": "Todos os Produtos ou Servi\u00e7os.", + "Analytics": "Anal\u00edtica", + "Bundle items at time of sale.": "Empacotar itens no momento da venda.", + "Campaign": "Campanha", + "Commission partners and targets": "Parceiros de comiss\u00e3o e metas", + "Confirmed orders from Customers.": "Pedidos confirmados de clientes.", + "Contact": "Contato", + "Customer": "Cliente", + "Customer Addresses And Contacts": "Endere\u00e7os e contatos do cliente", + "Customer Group": "Grupo de Clientes", + "Customer classification tree.": "\u00c1rvore de classifica\u00e7\u00e3o do cliente.", + "Customer database.": "Banco de dados do cliente.", + "Database of potential customers.": "Banco de dados de clientes potenciais.", + "Documents": "Documentos", + "Helper for managing return of goods (sales or purchase)": "Auxiliar para a gest\u00e3o de devolu\u00e7\u00e3o de mercadorias (venda ou compra)", + "Item": "Item", + "Item Group": "Grupo de Itens", + "Lead": "Prospecto", + "Masters": "Cadastros", + "Mupltiple Item prices.": "Pre\u00e7os de m\u00faltiplos itens.", + "Opportunity": "Oportunidade", + "Potential opportunities for selling.": "Oportunidades potenciais para a venda.", + "Price List": "Lista de Pre\u00e7os", + "Quotation": "Cota\u00e7\u00e3o", + "Quotes to Leads or Customers.": "Cota\u00e7\u00f5es para Prospectos ou Clientes.", + "Reports": "Relat\u00f3rios", + "SMS Center": "Centro de SMS", + "Sales Analytics": "An\u00e1lise de Vendas", + "Sales BOM": "LDM de Vendas", + "Sales Order": "Ordem de Venda", + "Sales Orders Pending to be Delivered": "Ordens de Venda pendentes de entregua", + "Sales Partner": "Parceiro de Vendas", + "Sales Person": "Vendedor", + "Sales Returns": "Retornos de Vendas", + "Sales Taxes and Charges Master": "Cadastro de Impostos e Taxas sobre Vendas", + "Sales campaigns": "Campanhas de Vendas", + "Sales persons and targets": "Vendedores e Metas", + "Sales taxes template.": "Modelo de Impostos sobre as Vendas.", + "Sales territories.": "Territ\u00f3rios de Vendas.", + "Send mass SMS to your contacts": "Enviar SMS em massa para seus contatos", + "Setup": "Configura\u00e7\u00e3o", + "Template of terms or contract.": "Modelo de termos ou contratos.", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Territory": "Territ\u00f3rio", + "Tools": "Ferramentas", + "Tree of item classification": "\u00c1rvore de classifica\u00e7\u00e3o de itens", + "Trend Analyzer": "Analisador de tend\u00eancia" +} \ No newline at end of file diff --git a/setup/doctype/authorization_control/locale/pt-BR-doc.json b/setup/doctype/authorization_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..c492b1dba0 --- /dev/null +++ b/setup/doctype/authorization_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Authorization Control": "Controle de autoriza\u00e7\u00e3o", + "Setup": "Configura\u00e7\u00e3o" +} \ No newline at end of file diff --git a/setup/doctype/authorization_rule/locale/pt-BR-doc.json b/setup/doctype/authorization_rule/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d221083dce --- /dev/null +++ b/setup/doctype/authorization_rule/locale/pt-BR-doc.json @@ -0,0 +1,30 @@ +{ + "Above Value": "Acima de Valor", + "Applicable To (Designation)": "Aplic\u00e1vel Para (Designa\u00e7\u00e3o)", + "Applicable To (Employee)": "Aplic\u00e1vel Para (Funcion\u00e1rio)", + "Applicable To (Role)": "Aplic\u00e1vel Para (Fun\u00e7\u00e3o)", + "Applicable To (User)": "Aplic\u00e1vel Para (Usu\u00e1rio)", + "Appraisal": "Avalia\u00e7\u00e3o", + "Approving Role": "Fun\u00e7\u00e3o Aprovadora", + "Approving User": "Usu\u00e1rio Aprovador", + "Authorization Rule": "Regra de autoriza\u00e7\u00e3o", + "Average Discount": "Desconto M\u00e9dio", + "Based On": "Baseado em", + "Company": "Empresa", + "Customer / Item Name": "Cliente / Nome do item", + "Customerwise Discount": "Desconto referente ao Cliente", + "Delivery Note": "Guia de Remessa", + "Grand Total": "Total Geral", + "Itemwise Discount": "Desconto relativo ao Item", + "Not Applicable": "N\u00e3o Aplic\u00e1vel", + "Purchase Invoice": "Nota Fiscal de Compra", + "Purchase Order": "Ordem de Compra", + "Purchase Receipt": "Recibo de Compra", + "Quotation": "Cota\u00e7\u00e3o", + "Sales Invoice": "Nota Fiscal de Venda", + "Sales Order": "Ordem de Venda", + "Setup": "Configura\u00e7\u00e3o", + "This will be used for setting rule in HR module": "Isso ser\u00e1 usado para a defini\u00e7\u00e3o de regras no m\u00f3dulo RH", + "Transaction": "Transa\u00e7\u00e3o", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/setup/doctype/brand/locale/pt-BR-doc.json b/setup/doctype/brand/locale/pt-BR-doc.json new file mode 100644 index 0000000000..380f331e5e --- /dev/null +++ b/setup/doctype/brand/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Brand": "Marca", + "Brand Name": "Marca", + "Description": "Descri\u00e7\u00e3o", + "Setup": "Configura\u00e7\u00e3o" +} \ No newline at end of file diff --git a/setup/doctype/company/locale/pt-BR-doc.json b/setup/doctype/company/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3e917d8810 --- /dev/null +++ b/setup/doctype/company/locale/pt-BR-doc.json @@ -0,0 +1,32 @@ +{ + "Abbr": "Abrev", + "Address": "Endere\u00e7o", + "Company": "Empresa", + "Company Details": "Detalhes da Empresa", + "Company Info": "Informa\u00e7\u00f5es da Empresa", + "Company registration numbers for your reference. Example: VAT Registration Numbers etc.": "N\u00fameros de registro da empresa para sua refer\u00eancia. Exemplo: CNPJ, IE, etc", + "Company registration numbers for your reference. Tax numbers etc.": "N\u00fameros da empresa de registro para sua refer\u00eancia. N\u00fameros fiscais, etc", + "Credit Days": "Dias de Cr\u00e9dito", + "Credit Limit": "Limite de Cr\u00e9dito", + "Default Bank Account": "Conta Banc\u00e1ria Padr\u00e3o", + "Default Currency": "Moeda padr\u00e3o", + "Default Settings": "Configura\u00e7\u00f5es padr\u00e3o", + "Email": "E-mail", + "Fax": "Fax", + "For reference only.": "Apenas para refer\u00eancia.", + "If Monthly Budget Exceeded": "Se o or\u00e7amento mensal for excedido", + "If Yearly Budget Exceeded": "Se or\u00e7amento anual for excedido", + "Ignore": "Ignorar", + "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.": "Pessoa Jur\u00eddica / Subsidi\u00e1ria, com um plano de Contas separado, pertencentes \u00e0 Organiza\u00e7\u00e3o.", + "Payables Group": "Grupo de contas a pagar", + "Phone No": "N\u00ba de telefone", + "Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.": "Por favor insira a correta Abrevia\u00e7\u00e3o ou Nome Curto pois ele ser\u00e1 adicionado como sufixo a todas as Contas.", + "Receivables Group": "Grupo de receb\u00edveis", + "Registration Details": "Detalhes de Registro", + "Registration Info": "Informa\u00e7\u00f5es do Registro", + "Setup": "Configura\u00e7\u00e3o", + "Stop": "Pare", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Warn": "Avisar", + "Website": "Site" +} \ No newline at end of file diff --git a/setup/doctype/contact_control/locale/pt-BR-doc.json b/setup/doctype/contact_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2e1ee3dda1 --- /dev/null +++ b/setup/doctype/contact_control/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Contact Control": "Controle de Contato", + "Customer Intro": "Introdu\u00e7\u00e3o do Cliente", + "Header": "Cabe\u00e7alho", + "Setup": "Configura\u00e7\u00e3o", + "Supplier Intro": "Introdu\u00e7\u00e3o do Fornecedor" +} \ No newline at end of file diff --git a/setup/doctype/country/locale/pt-BR-doc.json b/setup/doctype/country/locale/pt-BR-doc.json new file mode 100644 index 0000000000..614140c0e8 --- /dev/null +++ b/setup/doctype/country/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Country": "Pa\u00eds", + "Country Name": "Nome do Pa\u00eds", + "Date Format": "Formato da data", + "Setup": "Configura\u00e7\u00e3o", + "Time Zones": "Fusos hor\u00e1rios" +} \ No newline at end of file diff --git a/setup/doctype/currency/locale/pt-BR-doc.json b/setup/doctype/currency/locale/pt-BR-doc.json new file mode 100644 index 0000000000..857e1d3d2e --- /dev/null +++ b/setup/doctype/currency/locale/pt-BR-doc.json @@ -0,0 +1,14 @@ +{ + "**Currency** Master": "Cadastro de **Moeda**", + "A symbol for this currency. For e.g. $": "Um s\u00edmbolo para esta moeda. Por exemplo: $", + "Currency": "Moeda", + "Currency Name": "Nome da Moeda", + "Enabled": "Habilitado", + "Fraction": "Fra\u00e7\u00e3o", + "Fraction Units": "Unidades fracionadas", + "How should this currency be formatted? If not set, will use system defaults": "Como essa moeda deve ser formatada? Se n\u00e3o for definido, ser\u00e3o usados os padr\u00f5es do sistema", + "Number Format": "Formato de n\u00famero", + "Setup": "Configura\u00e7\u00e3o", + "Sub-currency. For e.g. \"Cent\"": "Sub-moeda. Por exemplo "Centavo"", + "Symbol": "S\u00edmbolo" +} \ No newline at end of file diff --git a/setup/doctype/customer_group/locale/pt-BR-doc.json b/setup/doctype/customer_group/locale/pt-BR-doc.json new file mode 100644 index 0000000000..7fcd0a23bd --- /dev/null +++ b/setup/doctype/customer_group/locale/pt-BR-doc.json @@ -0,0 +1,16 @@ +{ + "Customer Group": "Grupo de Clientes", + "Customer Group Name": "Nome do grupo de Clientes", + "Default Price List": "Lista de Pre\u00e7os padr\u00e3o", + "Has Child Node": "Tem n\u00f3 filho", + "No": "N\u00e3o", + "Only leaf nodes are allowed in transaction": "Somente n\u00f3s-folha s\u00e3o permitidos em transa\u00e7\u00f5es", + "Parent Customer Group": "Grupo de Clientes pai", + "Setup": "Configura\u00e7\u00e3o", + "This Price List will be selected as default for all Customers under this Group.": "Esta lista de pre\u00e7os ser\u00e1 selecionado como padr\u00e3o para todos os clientes sob este grupo.", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Yes": "Sim", + "lft": "esq.", + "old_parent": "old_parent", + "rgt": "dir." +} \ No newline at end of file diff --git a/setup/doctype/email_digest/locale/pt-BR-doc.json b/setup/doctype/email_digest/locale/pt-BR-doc.json new file mode 100644 index 0000000000..bf2d8ed47a --- /dev/null +++ b/setup/doctype/email_digest/locale/pt-BR-doc.json @@ -0,0 +1,49 @@ +{ + "Accounts": "Contas", + "Add/Remove Recipients": "Adicionar / Remover Destinat\u00e1rios", + "Bank Balance": "Saldo Bancario", + "Buying": "Compras", + "Calendar Events": "Calend\u00e1rio de Eventos", + "Check all the items below that you want to send in this digest.": "Marque todos os itens abaixo que voc\u00ea deseja enviar neste resumo.", + "Collections": "Cole\u00e7\u00f5es", + "Daily": "Di\u00e1rio", + "Email Digest": "Resumo por E-mail", + "Email Digest Settings": "Configura\u00e7\u00f5es do Resumo por E-mail", + "Enabled": "Habilitado", + "Expenses Booked": "Despesas agendadas", + "For Company": "Para a Empresa", + "General": "Geral", + "How frequently?": "Com que frequ\u00eancia?", + "Income": "Renda", + "Income Year to Date": "Ano de rendimento at\u00e9 a Data", + "Monthly": "Mensal", + "New Communications": "Nova Comunica\u00e7\u00e3o", + "New Delivery Notes": "Novas Guias de Remessa", + "New Enquiries": "Novas Consultas", + "New Leads": "Novos Prospectos", + "New Material Requests": "Novos Pedidos Materiais", + "New Projects": "Novos Projetos", + "New Purchase Orders": "Novas Ordens de Compra", + "New Purchase Receipts": "Novos Recibos de Compra", + "New Quotations": "Novas Cota\u00e7\u00f5es", + "New Sales Orders": "Novos Pedidos de Venda", + "New Stock Entries": "Novos lan\u00e7amentos de estoque", + "New Supplier Quotations": "Novas cota\u00e7\u00f5es de fornecedores", + "New Support Tickets": "Novos pedidos de suporte", + "Next email will be sent on:": "Pr\u00f3ximo e-mail ser\u00e1 enviado em:", + "Note: Email will not be sent to disabled users": "Nota: e-mails n\u00e3o ser\u00e3o enviado para usu\u00e1rios desabilitados", + "Open Tickets": "Tickets abertos", + "Payables": "Contas a pagar", + "Payments": "Pagamentos", + "Projects": "Projetos", + "Receivables": "Receb\u00edveis", + "Recipients": "Destinat\u00e1rios", + "Select Digest Content": "Selecione o conte\u00fado para o Resumo por E-mail", + "Selling": "Vendas", + "Send regular summary reports via Email.": "Enviar relat\u00f3rios resumidos regularmente via e-mail.", + "Setup": "Configura\u00e7\u00e3o", + "Stock": "Estoque", + "Support": "Suporte", + "To Do List": "Para fazer a lista", + "Weekly": "Semanal" +} \ No newline at end of file diff --git a/setup/doctype/email_digest/locale/pt-BR-py.json b/setup/doctype/email_digest/locale/pt-BR-py.json new file mode 100644 index 0000000000..60c9c66a1a --- /dev/null +++ b/setup/doctype/email_digest/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "All Day": "Dia de Todos os" +} \ No newline at end of file diff --git a/setup/doctype/email_settings/locale/pt-BR-doc.json b/setup/doctype/email_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..cbb6842ab6 --- /dev/null +++ b/setup/doctype/email_settings/locale/pt-BR-doc.json @@ -0,0 +1,34 @@ +{ + "Auto Email Id": "Endere\u00e7o dos E-mails Autom\u00e1ticos", + "Autoreply when a new mail is received": "Responder automaticamente quando um novo e-mail \u00e9 recebido", + "Check this to pull emails from your mailbox": "Marque esta a puxar os e-mails de sua caixa de correio", + "Custom Autoreply Message": "Mensagem de resposta autom\u00e1tica personalizada", + "Email Settings": "Configura\u00e7\u00f5es de e-mail", + "Email Settings for Outgoing and Incoming Emails.": "Configura\u00e7\u00f5es de e-mail para e-mails enviados e recebidos.", + "If non standard port (e.g. 587)": "Se n\u00e3o for a porta padr\u00e3o (por exemplo, 587)", + "Incoming Mail Setting": "Configura\u00e7\u00e3o de entrada de emails", + "Login Id": "ID de Login", + "Mail Password": "Senha do E-mail", + "Mail Port": "Porta do E-mail", + "Outgoing Mail Server": "Servidor de e-mails de sa\u00edda", + "Outgoing Mails": "E-mails de sa\u00edda", + "POP3 Mail Server": "Servidor de e-mail POP3", + "POP3 mail server (e.g. pop.gmail.com)": "Servidor de e-mail POP3 (por exemplo, pop.gmail.com)", + "SMTP Server (e.g. smtp.gmail.com)": "Servidor SMTP(por exemplo, smtp.gmail.com)", + "Send Autoreply": "Enviar Resposta Autom\u00e1tica", + "Set Login and Password if authentication is required.": "Defina Login e Senha se a autentica\u00e7\u00e3o for necess\u00e1ria.", + "Set the POP3 email settings to pull emails directly from a mailbox and create Support Tickets": "Definir as configura\u00e7\u00f5es de e-mail POP3 para puxar e-mails diretamente a partir de uma caixa de correio e criar tickets de suporte", + "Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.": "Defina suas configura\u00e7\u00f5es de de e-mail SMTP aqui. Todas as notifica\u00e7\u00f5es geradas pelo sistema e e-mails s\u00e3o enviados a partir deste servidor de correio. Se voc\u00ea n\u00e3o tem certeza, deixe este campo em branco para usar servidores ERPNext (e-mails ainda ser\u00e3o enviadas a partir do seu endere\u00e7o de e-mail) ou entre em contato com seu provedor de e-mail.", + "Setup": "Configura\u00e7\u00e3o", + "Signature": "Assinatura", + "Signature to be appended at the end of every email": "Assinatura para ser inserida no final de cada e-mail", + "Support Email": "E-mail de Suporte", + "Support Password": "Senha do Suporte", + "Support Ticket Mail Settings": "Configura\u00e7\u00f5es do E-mail de Tickets de Suporte", + "Sync Support Mails": "Sincronizar E-mails de Suporte", + "System generated mails will be sent from this email id.": "E-mails gerados pelo sistema ser\u00e3o enviados a partir deste endere\u00e7o de e-mail.", + "To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.": "Para criar automaticamente Tickets de Suporte a partir da sua caixa de entrada, defina as configura\u00e7\u00f5es de POP3 aqui. Voc\u00ea deve, idealmente, criar um E-mail separado para o Sistema ERP para que todas as mensagens sejam sincronizadas com o sistema a partir daquele E-mail. Se voc\u00ea n\u00e3o tiver certeza, entre em contato com seu provedor de e-mail.", + "Use SSL": "Use SSL", + "User Name": "Nome de Usu\u00e1rio", + "Your support email id - must be a valid email - this is where your emails will come!": "O seu E-mail de suporte - deve ser um e-mail v\u00e1lido - este \u00e9 o lugar de onde seus e-mails vir\u00e3o!" +} \ No newline at end of file diff --git a/setup/doctype/features_setup/locale/pt-BR-doc.json b/setup/doctype/features_setup/locale/pt-BR-doc.json new file mode 100644 index 0000000000..17bb7f27d6 --- /dev/null +++ b/setup/doctype/features_setup/locale/pt-BR-doc.json @@ -0,0 +1,41 @@ +{ + "1. To maintain the customer wise item code and to make them searchable based on their code use this option": "1. Para manter o c\u00f3digo de item do cliente e para torn\u00e1-los pesquis\u00e1veis \u200b\u200bcom base em seu c\u00f3digo use esta op\u00e7\u00e3o", + "Accounts": "Contas", + "After Sale Installations": "Instala\u00e7\u00f5es P\u00f3s-Venda", + "Brands": "Marcas", + "Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.": "Marque se voc\u00ea precisa de notas fiscais recorrentes autom\u00e1ticas. Depois de enviar qualquer nota fiscal de venda, a se\u00e7\u00e3o Recorrente ser\u00e1 vis\u00edvel.", + "Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice": "Campos de desconto estar\u00e3o dispon\u00edveis em Ordem de Compra, Recibo de Compra, Nota Fiscal de Compra", + "Enables More Info. in all documents": "Habilitar Mais informa\u00e7\u00f5es. em todos os documentos", + "Exports": "Exporta\u00e7\u00f5es", + "Features Setup": "Configura\u00e7\u00e3o de caracter\u00edsticas", + "Field available in Delivery Note, Quotation, Sales Invoice, Sales Order": "Campo dispon\u00edvel na Guia de Remessa, Cota\u00e7\u00e3o, Nota Fiscal de Venda, Ordem de Venda", + "If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity": "Se voc\u00ea tiver Equipe de Vendas e Parceiros de Venda (Parceiros de Canal) eles podem ser marcadas e manter suas contribui\u00e7\u00f5es na atividade de vendas", + "If you have long print formats, this feature can be used to split the page to be printed on multiple pages with all headers and footers on each page": "Se voc\u00ea formatos longos de impress\u00e3o, esse recurso pode ser usado para dividir a p\u00e1gina a ser impressa em v\u00e1rias p\u00e1ginas com todos os cabe\u00e7alhos e rodap\u00e9s em cada p\u00e1gina", + "Imports": "Importa\u00e7\u00f5es", + "Item Advanced": "Item antecipado", + "Item Barcode": "C\u00f3digo de barras do Item", + "Item Batch Nos": "N\u00ba do Lote do Item", + "Item Groups in Details": "Detalhes dos Grupos de Itens", + "Item Serial Nos": "N\u00ba de s\u00e9rie de Itens", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Materials": "Materiais", + "Miscelleneous": "Diversos", + "More Info": "Mais informa\u00e7\u00f5es", + "Packing Detials": "Detalhes da embalagem", + "Page Break": "Quebra de p\u00e1gina", + "Point of Sale": "Ponto de Venda", + "Projects": "Projetos", + "Purchase Discounts": "Descontos da compra", + "Quality": "Qualidade", + "Recurring Invoice": "Nota Fiscal Recorrente", + "Sales Discounts": "Descontos de Vendas", + "Sales Extras": "Extras de Vendas", + "Sales and Purchase": "Compra e Venda", + "Setup": "Configura\u00e7\u00e3o", + "To enable Point of Sale features": "Para habilitar as caracter\u00edsticas de Ponto de Venda ", + "To get Item Group in details table": "Para obter Grupo de Itens na tabela de detalhes", + "To track any installation or commissioning related work after sales": "Para rastrear qualquer trabalho relacionado \u00e0 instala\u00e7\u00e3o ou coloca\u00e7\u00e3o em funcionamento ap\u00f3s a venda", + "To track item in sales and purchase documents based on their serial nos. This is can also used to track warranty details of the product.": "Para acompanhar o item em documentos de vendas e de compras com base em seus n\u00fameros de s\u00e9rie. Isso tamb\u00e9m pode ser usado para rastrear detalhes sobre a garantia do produto.", + "To track items in sales and purchase documents with batch nos
Preferred Industry: Chemicals etc": "Para controlar os itens de vendas e documentos de compra pelo n\u00ba do lote
Por Ex.: Ind\u00fastria Qu\u00edmica, etc", + "To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.": "Para rastrear itens usando c\u00f3digo de barras. Voc\u00ea ser\u00e1 capaz de inserir itens na Guia de Remessa e Nota Fiscal de Venda atrav\u00e9s do escaneamento do c\u00f3digo de barras do item." +} \ No newline at end of file diff --git a/setup/doctype/global_defaults/locale/pt-BR-doc.json b/setup/doctype/global_defaults/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a9e83c20ab --- /dev/null +++ b/setup/doctype/global_defaults/locale/pt-BR-doc.json @@ -0,0 +1,75 @@ +{ + "Account Info": "Informa\u00e7\u00f5es da Conta", + "Accounting entry frozen up to this date, nobody can do / modify entry except authorized person": "Lan\u00e7amento cont\u00e1bil congelado at\u00e9 a presente data, ningu\u00e9m pode fazer / modificar um lan\u00e7amento, exceto pessoas autorizadas", + "Accounts": "Contas", + "Accounts Frozen Upto": "Contas congeladas at\u00e9", + "Allow Negative Stock": "Permitir Estoque Negativo", + "Allowance Percent": "Percentual de toler\u00e2ncia", + "Applicable only if valuation method is moving average": "Aplic\u00e1vel apenas se o m\u00e9todo de avalia\u00e7\u00e3o \u00e9 a m\u00e9dia m\u00f3vel", + "Authorized Role (Frozen Entry)": "Fun\u00e7\u00e3o Autorizada (Lan\u00e7amento Congelado)", + "Authourized Role (Frozen Entry)": "Fun\u00e7\u00e3o Autorizada (Lan\u00e7amento Congelado)", + "Buying": "Compras", + "CGHelp": "CGHelp", + "Company": "Empresa", + "Credit Controller": "Controlador de cr\u00e9dito", + "Current Fiscal Year": "Ano Fiscal Atual", + "Customer Master created by ": "Cadastro de Clientes criado por", + "Customer Name": "Nome do cliente", + "Date Format": "Formato da data", + "Default Company": "Empresa padr\u00e3o", + "Default Currency": "Moeda padr\u00e3o", + "Default Customer Group": "Grupo de Clientes padr\u00e3o", + "Default Item Group": "Grupo de Itens padr\u00e3o", + "Default Price List": "Lista de Pre\u00e7os padr\u00e3o", + "Default Price List Currency": "Moeda padr\u00e3o da Lista de Pre\u00e7os", + "Default Stock UOM": "Padr\u00e3o da UDM do Estouqe", + "Default Supplier Type": "Tipo de fornecedor padr\u00e3o", + "Default Territory": "Territ\u00f3rio padr\u00e3o", + "Default Valuation Method": "M\u00e9todo de Avalia\u00e7\u00e3o padr\u00e3o", + "Default Warehouse Type": "Tipo de Almoxarifado padr\u00e3o", + "Delivery Note Required": "Guia de Remessa Obrigat\u00f3ria", + "Disable Rounded Total": "Desativar total arredondado", + "Do not show any symbol like $ etc next to currencies.": "N\u00e3o mostrar qualquer s\u00edmbolo como US $ etc ao lado de moedas.", + "Employee Number": "N\u00famero do Funcion\u00e1rio", + "Employee Records to be created by ": "Registros de Funcion\u00e1rio a serem criados por", + "Employee record is created using selected field. ": "Registro de funcion\u00e1rio \u00e9 criado usando o campo selecionado.", + "FIFO": "PEPS", + "Float Precision": "Precis\u00e3o flutuante", + "General": "Geral", + "Global Defaults": "Padr\u00f5es globais", + "HR": "RH", + "Hide Currency Symbol": "Ocultar S\u00edmbolo de Moeda", + "IGHelp": "IGHelp", + "If disable, 'Rounded Total' field will not be visible in any transaction": "Se desativar, 'Arredondado Total' campo n\u00e3o ser\u00e1 vis\u00edvel em qualquer transa\u00e7\u00e3o", + "Maintain same rate throughout purchase cycle": "Manter o mesmo valor atrav\u00e9s de todo o ciclo de compra", + "Moving Average": "M\u00e9dia m\u00f3vel", + "Naming Series": "S\u00e9ries nomeadas", + "No": "N\u00e3o", + "Number Format": "Formato de n\u00famero", + "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

": "Percentagem que est\u00e3o autorizados a receber ou entregar al\u00e9m da quantidade encomendada.

Por exemplo: Se voc\u00ea encomendou 100 unidades e seu limite \u00e9 de 10%, ent\u00e3o voc\u00ea est\u00e1 autorizado a receber 110 unidades

", + "Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.": "Precis\u00e3o para campos Float (quantidade, descontos, percentuais, etc) \u00e9 apenas para exibi\u00e7\u00e3o. Floats ainda ser\u00e3o calculado at\u00e9 6 casas decimais.", + "Purchase Order Required": "Ordem de Compra Obrigat\u00f3ria", + "Purchase Receipt Required": "Recibo de Compra Obrigat\u00f3rio", + "Raise Material Request when stock reaches re-order level": "Levante solicitar material quando o estoque atinge novo pedido de n\u00edvel", + "SMS Sender Name": "Nome do remetente do SMS", + "Sales Order Required": "Ordem de Venda Obrigat\u00f3ria", + "Selling": "Vendas", + "Session Expiry": "Dura\u00e7\u00e3o da sess\u00e3o", + "Session Expiry in Hours e.g. 06:00": "Dura\u00e7\u00e3o da sess\u00e3o em Horas, por exemplo 06:00", + "Setup": "Configura\u00e7\u00e3o", + "Stock": "Estoque", + "Stock Frozen Upto": "Estoque congelado at\u00e9", + "Stock level frozen up to this date, nobody can do / modify entry except authorized person": "N\u00edvel de estoque congelado at\u00e9 a presente data, ningu\u00e9m pode fazer / modificar um lan\u00e7amento, exceto pessoal autorizado", + "Supplier Master created by ": "Cadastro de Fornecedor criado por", + "Supplier Name": "Nome do Fornecedor", + "System": "Sistema", + "TerritoryHelp": "Ajuda do Territ\u00f3rio", + "Users with this role are allowed to do / modify accounting entry before frozen date": "Usu\u00e1rios com esta fun\u00e7\u00e3o est\u00e3o autorizados a fazer / modificar lan\u00e7amentos de contabilidade antes da data de congelamento", + "Users with this role are allowed to do / modify stock entry before frozen date": "Usu\u00e1rios com esta fun\u00e7\u00e3o est\u00e3o autorizados a fazer / modificar lan\u00e7amentos de material no estoque antes da data de congelamento", + "Yes": "Sim", + "dd-mm-yyyy": "dd-mm-aaaa", + "dd/mm/yyyy": "dd/mm/aaaa", + "mm-dd-yyyy": "mm-dd-aaaa", + "mm/dd/yyyy": "mm/dd/aaaa", + "yyyy-mm-dd": "aaaa-mm-dd" +} \ No newline at end of file diff --git a/setup/doctype/item_group/locale/pt-BR-doc.json b/setup/doctype/item_group/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d0bdac773d --- /dev/null +++ b/setup/doctype/item_group/locale/pt-BR-doc.json @@ -0,0 +1,23 @@ +{ + "Check this if you want to show in website": "Marque esta op\u00e7\u00e3o se voc\u00ea deseja mostrar no site", + "Description": "Descri\u00e7\u00e3o", + "File List": "Lista de Arquivos", + "HTML / Banner that will show on the top of product list.": "HTML / Faixa que vai ser mostrada no topo da lista de produtos.", + "Has Child Node": "Tem n\u00f3 filho", + "Item Classification": "Classifica\u00e7\u00e3o do Item", + "Item Group": "Grupo de Itens", + "Item Group Name": "Nome do Grupo de Itens", + "No": "N\u00e3o", + "Only leaf nodes are allowed in transaction": "Somente n\u00f3s-folha s\u00e3o permitidos em transa\u00e7\u00f5es", + "Page Name": "Nome da P\u00e1gina", + "Parent Item Group": "Grupo de item pai", + "Setup": "Configura\u00e7\u00e3o", + "Show in Website": "Mostrar no site", + "Show this slideshow at the top of the page": "Mostrar esta apresenta\u00e7\u00e3o de slides no topo da p\u00e1gina", + "Slideshow": "Apresenta\u00e7\u00e3o de slides", + "Website Settings": "Configura\u00e7\u00f5es do site", + "Yes": "Sim", + "lft": "esq.", + "old_parent": "old_parent", + "rgt": "dir." +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/pt-BR-doc.json b/setup/doctype/jobs_email_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b1cf11cf4e --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/pt-BR-doc.json @@ -0,0 +1,16 @@ +{ + "Check to activate": "Marque para ativar", + "Email Id": "Endere\u00e7o de e-mail", + "Email Id where a job applicant will email e.g. \"jobs@example.com\"": "Endere\u00e7o do e-mail onde um candidato a emprego vai enviar e-mail, por exemplo: "empregos@exemplo.com"", + "Email settings for jobs email id \"jobs@example.com\"": "Configura\u00e7\u00f5es de e-mail para e-mail de empregos "empregos@exemplo.com"", + "Extract Emails": "Extrair e-mails", + "Host": "Host", + "Jobs Email Settings": "Configura\u00e7\u00f5es do e-mail de empregos", + "POP3 Mail Settings": "Configura\u00e7\u00f5es de e-mail pop3", + "POP3 server e.g. (pop.gmail.com)": "Servidor de e-mail POP3 (por exemplo, pop.gmail.com)", + "Password": "Senha", + "Settings to extract Job Applicants from a mailbox e.g. \"jobs@example.com\"": "Defini\u00e7\u00f5es para extrair os candidatos a emprego a partir de um e-mail, por exemplo: "empregos@exemplo.com"", + "Setup": "Configura\u00e7\u00e3o", + "Use SSL": "Use SSL", + "Username": "Nome do Usu\u00e1rio" +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/pt-BR-js.json b/setup/doctype/jobs_email_settings/locale/pt-BR-js.json new file mode 100644 index 0000000000..19171e90b2 --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/pt-BR-js.json @@ -0,0 +1,4 @@ +{ + "Active: Will extract emails from ": "Ativo: E-mails ser\u00e3o extra\u00eddos de", + "Not Active": "N\u00e3o Ativo" +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/pt-BR-py.json b/setup/doctype/jobs_email_settings/locale/pt-BR-py.json new file mode 100644 index 0000000000..a654197112 --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "Host, Email and Password required if emails are to be pulled": "Host, E-mail e Senha s\u00e3o necess\u00e1rios se desejar obter e-mails" +} \ No newline at end of file diff --git a/setup/doctype/market_segment/locale/pt-BR-doc.json b/setup/doctype/market_segment/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d22b0330d6 --- /dev/null +++ b/setup/doctype/market_segment/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Details": "Detalhes", + "Market Segment": "Segmento de mercado", + "Segment Name": "Nome do Segmento", + "Setup": "Configura\u00e7\u00e3o", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/setup/doctype/naming_series/locale/pt-BR-doc.json b/setup/doctype/naming_series/locale/pt-BR-doc.json new file mode 100644 index 0000000000..aeee58b823 --- /dev/null +++ b/setup/doctype/naming_series/locale/pt-BR-doc.json @@ -0,0 +1,18 @@ +{ + "Change the starting / current sequence number of an existing series.": "Alterar o n\u00famero sequencial de in\u00edcio/atual de uma s\u00e9rie existente.", + "Check this if you want to force the user to select a series before saving. There will be no default if you check this.": "Marque esta op\u00e7\u00e3o se voc\u00ea deseja for\u00e7ar o usu\u00e1rio a selecionar uma s\u00e9rie antes de salvar. N\u00e3o haver\u00e1 nenhum padr\u00e3o se voc\u00ea marcar isso.", + "Current Value": "Valor Atual", + "Help HTML": "Ajuda HTML", + "Naming Series": "S\u00e9ries nomeadas", + "Prefix": "Prefixo", + "Select Transaction": "Selecione a Transa\u00e7\u00e3o", + "Series List for this Transaction": "Lista de s\u00e9ries para esta transa\u00e7\u00e3o", + "Set prefix for numbering series on your transactions": "Definir prefixo para s\u00e9ries de numera\u00e7\u00e3o em suas transa\u00e7\u00f5es", + "Setup": "Configura\u00e7\u00e3o", + "Setup Series": "Configura\u00e7\u00e3o de S\u00e9ries", + "This is the number of the last created transaction with this prefix": "Este \u00e9 o n\u00famero da \u00faltima transa\u00e7\u00e3o criada com este prefixo", + "Update": "Atualizar", + "Update Series": "Atualizar S\u00e9ries", + "Update Series Number": "Atualizar N\u00fameros de S\u00e9ries", + "User must always select": "O Usu\u00e1rio deve sempre selecionar" +} \ No newline at end of file diff --git a/setup/doctype/naming_series_options/locale/pt-BR-doc.json b/setup/doctype/naming_series_options/locale/pt-BR-doc.json new file mode 100644 index 0000000000..080f44dee7 --- /dev/null +++ b/setup/doctype/naming_series_options/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Doc Type": "Tipo do Documento", + "Naming Series Options": "Op\u00e7\u00f5es das S\u00e9ries nomeadas", + "Series Options": "Op\u00e7\u00f5es de S\u00e9ries", + "Setup": "Configura\u00e7\u00e3o" +} \ No newline at end of file diff --git a/setup/doctype/notification_control/locale/pt-BR-doc.json b/setup/doctype/notification_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..78312f5f06 --- /dev/null +++ b/setup/doctype/notification_control/locale/pt-BR-doc.json @@ -0,0 +1,31 @@ +{ + "Custom Message": "Mensagem personalizada", + "Customize the Notification": "Personalize a Notifica\u00e7\u00e3o", + "Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.": "Personalize o texto introdut\u00f3rio que vai como uma parte do que e-mail. Cada transa\u00e7\u00e3o tem um texto introdut\u00f3rio separado.", + "Delivery Note": "Guia de Remessa", + "Delivery Note Message": "Mensagem da Guia de Remessa", + "Expense Claim": "Pedido de Reembolso de Despesas", + "Expense Claim Approved": "Pedido de Reembolso de Despesas Aprovado", + "Expense Claim Approved Message": "Mensagem de aprova\u00e7\u00e3o do Pedido de Reembolso de Despesas", + "Expense Claim Rejected": "Pedido de Reembolso de Despesas Rejeitado", + "Expense Claim Rejected Message": "Mensagem de recusa do Pedido de Reembolso de Despesas", + "Notification Control": "Controle de Notifica\u00e7\u00e3o", + "Prompt for Email on Submission of": "Solicitar e-mail no envio da", + "Purchase": "Compras", + "Purchase Order": "Ordem de Compra", + "Purchase Order Message": "Mensagem da Ordem de Compra", + "Purchase Receipt": "Recibo de Compra", + "Purchase Receipt Message": "Mensagem do Recibo de Compra", + "Quotation": "Cota\u00e7\u00e3o", + "Quotation Message": "Mensagem da Cota\u00e7\u00e3o", + "Sales": "Vendas", + "Sales Invoice": "Nota Fiscal de Venda", + "Sales Invoice Message": "Mensagem da Nota Fiscal de Venda", + "Sales Order": "Ordem de Venda", + "Sales Order Message": "Mensagem da Ordem de Venda", + "Select Transaction": "Selecione a Transa\u00e7\u00e3o", + "Send automatic emails to Contacts on Submitting transactions.": "Enviar e-mails autom\u00e1ticos para os Contatos ao Submeter transa\u00e7\u00f5es.", + "Setup": "Configura\u00e7\u00e3o", + "Update": "Atualizar", + "When any of the checked transactions are \"Submitted\", an email pop-up automatically opened to send an email to the associated \"Contact\" in that transaction, with the transaction as an attachment. The user may or may not send the email.": "Quando qualquer uma das opera\u00e7\u00f5es marcadas s\u00e3o "Enviadas", um pop-up abre automaticamente para enviar um e-mail para o "Contato" associado a transa\u00e7\u00e3o, com a transa\u00e7\u00e3o como um anexo. O usu\u00e1rio pode ou n\u00e3o enviar o e-mail." +} \ No newline at end of file diff --git a/setup/doctype/permission_control/locale/pt-BR-doc.json b/setup/doctype/permission_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..aaec649143 --- /dev/null +++ b/setup/doctype/permission_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Permission Control": "Controle de Permiss\u00e3o", + "Setup": "Configura\u00e7\u00e3o" +} \ No newline at end of file diff --git a/setup/doctype/price_list/locale/pt-BR-doc.json b/setup/doctype/price_list/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2e04da2cee --- /dev/null +++ b/setup/doctype/price_list/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "File List": "Lista de Arquivos", + "How to upload": "Como fazer o carregamento", + "Price List": "Lista de Pre\u00e7os", + "Price List Master": "Cadastro de Lista de Pre\u00e7os", + "Price List Name": "Nome da Lista de Pre\u00e7os", + "Setup": "Configura\u00e7\u00e3o" +} \ No newline at end of file diff --git a/setup/doctype/print_heading/locale/pt-BR-doc.json b/setup/doctype/print_heading/locale/pt-BR-doc.json new file mode 100644 index 0000000000..16937b4f9b --- /dev/null +++ b/setup/doctype/print_heading/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Description": "Descri\u00e7\u00e3o", + "Print Heading": "Cabe\u00e7alho de impress\u00e3o", + "Setup": "Configura\u00e7\u00e3o", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/setup/doctype/quotation_lost_reason/locale/pt-BR-doc.json b/setup/doctype/quotation_lost_reason/locale/pt-BR-doc.json new file mode 100644 index 0000000000..036dee70bf --- /dev/null +++ b/setup/doctype/quotation_lost_reason/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Quotation Lost Reason": "Raz\u00e3o da perda da Cota\u00e7\u00e3o", + "Setup": "Configura\u00e7\u00e3o", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/setup/doctype/sales_browser_control/locale/pt-BR-doc.json b/setup/doctype/sales_browser_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..154046d944 --- /dev/null +++ b/setup/doctype/sales_browser_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Sales Browser Control": "Controle do Navegador de Vendas", + "Setup": "Configura\u00e7\u00e3o" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/pt-BR-doc.json b/setup/doctype/sales_email_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4cd649ad7a --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/pt-BR-doc.json @@ -0,0 +1,15 @@ +{ + "Check to activate": "Marque para ativar", + "Email Id": "Endere\u00e7o de e-mail", + "Email Id where a job applicant will email e.g. \"jobs@example.com\"": "Endere\u00e7o do e-mail onde um candidato a emprego vai enviar e-mail, por exemplo: "empregos@exemplo.com"", + "Email settings to extract Leads from sales email id e.g. \"sales@example.com\"": "Configura\u00e7\u00f5es de e-mail para extrair Prospectos do e-mail de vendas, por exemplo "vendas@exemplo.com"", + "Extract Emails": "Extrair e-mails", + "Host": "Host", + "POP3 Mail Settings": "Configura\u00e7\u00f5es de e-mail pop3", + "POP3 server e.g. (pop.gmail.com)": "Servidor de e-mail POP3 (por exemplo, pop.gmail.com)", + "Password": "Senha", + "Sales Email Settings": "Configura\u00e7\u00f5es do Email de Vendas", + "Setup": "Configura\u00e7\u00e3o", + "Use SSL": "Use SSL", + "Username": "Nome do Usu\u00e1rio" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/pt-BR-js.json b/setup/doctype/sales_email_settings/locale/pt-BR-js.json new file mode 100644 index 0000000000..19171e90b2 --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/pt-BR-js.json @@ -0,0 +1,4 @@ +{ + "Active: Will extract emails from ": "Ativo: E-mails ser\u00e3o extra\u00eddos de", + "Not Active": "N\u00e3o Ativo" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/pt-BR-py.json b/setup/doctype/sales_email_settings/locale/pt-BR-py.json new file mode 100644 index 0000000000..a654197112 --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "Host, Email and Password required if emails are to be pulled": "Host, E-mail e Senha s\u00e3o necess\u00e1rios se desejar obter e-mails" +} \ No newline at end of file diff --git a/setup/doctype/sales_partner/locale/pt-BR-doc.json b/setup/doctype/sales_partner/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d53a126f66 --- /dev/null +++ b/setup/doctype/sales_partner/locale/pt-BR-doc.json @@ -0,0 +1,27 @@ +{ + "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.": "Um distribuidor terceirizado / negociante / agente comissionado / revendedor que vende os produtos da empresas por uma comiss\u00e3o.", + "Address & Contacts": "Endere\u00e7o e Contatos", + "Address Desc": "Descri\u00e7\u00e3o do Endere\u00e7o", + "Address HTML": "Endere\u00e7o HTML", + "Agent": "Agente", + "Channel Partner": "Parceiro de Canal", + "Commission Rate": "Taxa de Comiss\u00e3o", + "Contact Desc": "Descri\u00e7\u00e3o do Contato", + "Contact HTML": "Contato HTML", + "Dealer": "Revendedor", + "Distributor": "Distribuidor", + "Implementation Partner": "Parceiro de implementa\u00e7\u00e3o", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "Nota: voc\u00ea pode gerenciar M\u00faltiplos Endere\u00e7os ou Contatos atrav\u00e9s de Endere\u00e7os & Contatos", + "Partner Target Detail": "Detalhe da Meta do parceiro", + "Partner Type": "Tipo de parceiro", + "Reseller": "Revendedor", + "Retailer": "Varejista", + "Sales Partner": "Parceiro de Vendas", + "Sales Partner Details": "Detalhes do Parceiro de Vendas", + "Sales Partner Name": "Nome do Parceiro de Vendas", + "Sales Partner Target": "Metas do Parceiro de Vendas", + "Select Budget Distribution to unevenly distribute targets across months.": "Selecione distribui\u00e7\u00e3o do or\u00e7amento para distribuir metas diferentes para os meses.", + "Setup": "Configura\u00e7\u00e3o", + "Target Distribution": "Distribui\u00e7\u00e3o de metas", + "Territory": "Territ\u00f3rio" +} \ No newline at end of file diff --git a/setup/doctype/sales_person/locale/pt-BR-doc.json b/setup/doctype/sales_person/locale/pt-BR-doc.json new file mode 100644 index 0000000000..84888b8295 --- /dev/null +++ b/setup/doctype/sales_person/locale/pt-BR-doc.json @@ -0,0 +1,21 @@ +{ + "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.": "Todas as Transa\u00e7\u00f5es de Vendas podem ser marcadas contra diversos **Vendedores** de modo que voc\u00ea possa definir e monitorar metas.", + "Employee": "Funcion\u00e1rio", + "Has Child Node": "Tem n\u00f3 filho", + "No": "N\u00e3o", + "Parent Sales Person": "Vendedor pai", + "Sales Person": "Vendedor", + "Sales Person Name": "Nome do Vendedor", + "Sales Person Targets": "Metas do Vendedor", + "Select Budget Distribution to unevenly distribute targets across months.": "Selecione distribui\u00e7\u00e3o do or\u00e7amento para distribuir metas diferentes para os meses.", + "Select company name first.": "Selecione o nome da empresa por primeiro.", + "Set targets Item Group-wise for this Sales Person.": "Estabelecer metas para Grupos de Itens para este Vendedor.", + "Setup": "Configura\u00e7\u00e3o", + "Target Details1": "Detalhes da meta", + "Target Distribution": "Distribui\u00e7\u00e3o de metas", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Yes": "Sim", + "lft": "esq.", + "old_parent": "old_parent", + "rgt": "dir." +} \ No newline at end of file diff --git a/setup/doctype/series_detail/locale/pt-BR-doc.json b/setup/doctype/series_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..dca7014449 --- /dev/null +++ b/setup/doctype/series_detail/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Remove": "Remover", + "Series": "S\u00e9ries", + "Series Detail": "Detalhe da S\u00e9ries", + "Setup": "Configura\u00e7\u00e3o" +} \ No newline at end of file diff --git a/setup/doctype/setup_control/locale/pt-BR-doc.json b/setup/doctype/setup_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..41d444576e --- /dev/null +++ b/setup/doctype/setup_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Setup": "Configura\u00e7\u00e3o", + "Setup Control": "Controle de configura\u00e7\u00e3o" +} \ No newline at end of file diff --git a/setup/doctype/sms_parameter/locale/pt-BR-doc.json b/setup/doctype/sms_parameter/locale/pt-BR-doc.json new file mode 100644 index 0000000000..069148cc1d --- /dev/null +++ b/setup/doctype/sms_parameter/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Parameter": "Par\u00e2metro", + "SMS Parameter": "Par\u00e2metro de SMS", + "Setup": "Configura\u00e7\u00e3o", + "Value": "Valor" +} \ No newline at end of file diff --git a/setup/doctype/sms_settings/locale/pt-BR-doc.json b/setup/doctype/sms_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..c9b9e663bd --- /dev/null +++ b/setup/doctype/sms_settings/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Eg. smsgateway.com/api/send_sms.cgi": "Por exemplo: smsgateway.com / api / send_sms.cgi", + "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)": "Digite os par\u00e2metros da URL est\u00e1tica aqui (por exemplo remetente=ERPNext, usuario=ERPNext, senha=1234, etc)", + "Enter url parameter for message": "Digite o par\u00e2metro da url para mensagem", + "Enter url parameter for receiver nos": "Digite o par\u00e2metro da url para os n\u00fameros de receptores", + "Message Parameter": "Par\u00e2metro da mensagem", + "Receiver Parameter": "Par\u00e2metro do recebedor", + "SMS Gateway URL": "URL de Gateway para SMS", + "SMS Parameters": "Par\u00e2metros de SMS", + "SMS Settings": "Defini\u00e7\u00f5es de SMS", + "Setup": "Configura\u00e7\u00e3o", + "Static Parameters": "Par\u00e2metros est\u00e1ticos" +} \ No newline at end of file diff --git a/setup/doctype/state/locale/pt-BR-doc.json b/setup/doctype/state/locale/pt-BR-doc.json new file mode 100644 index 0000000000..7c8fa8ff9c --- /dev/null +++ b/setup/doctype/state/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Country": "Pa\u00eds", + "Setup": "Configura\u00e7\u00e3o", + "State": "Estado", + "State Name": "Nome do Estado" +} \ No newline at end of file diff --git a/setup/doctype/supplier_type/locale/pt-BR-doc.json b/setup/doctype/supplier_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e62a8dfaee --- /dev/null +++ b/setup/doctype/supplier_type/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Setup": "Configura\u00e7\u00e3o", + "Supplier Type": "Tipo de Fornecedor", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/setup/doctype/target_detail/locale/pt-BR-doc.json b/setup/doctype/target_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..1e6d660099 --- /dev/null +++ b/setup/doctype/target_detail/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Fiscal Year": "Exerc\u00edcio fiscal", + "Item Group": "Grupo de Itens", + "Setup": "Configura\u00e7\u00e3o", + "Target Amount": "Valor da meta", + "Target Detail": "Detalhe da meta", + "Target Qty": "Qtde. de metas" +} \ No newline at end of file diff --git a/setup/doctype/terms_and_conditions/locale/pt-BR-doc.json b/setup/doctype/terms_and_conditions/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2abfde6dda --- /dev/null +++ b/setup/doctype/terms_and_conditions/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Setup": "Configura\u00e7\u00e3o", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Title": "T\u00edtulo", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/setup/doctype/territory/locale/pt-BR-doc.json b/setup/doctype/territory/locale/pt-BR-doc.json new file mode 100644 index 0000000000..004552cbfd --- /dev/null +++ b/setup/doctype/territory/locale/pt-BR-doc.json @@ -0,0 +1,22 @@ +{ + "Classification of Customers by region": "Classifica\u00e7\u00e3o de Clientes por regi\u00e3o", + "For reference": "Para refer\u00eancia", + "Has Child Node": "Tem n\u00f3 filho", + "No": "N\u00e3o", + "Only leaf nodes are allowed in transaction": "Somente n\u00f3s-folha s\u00e3o permitidos em transa\u00e7\u00f5es", + "Parent Territory": "Territ\u00f3rio pai", + "Select Budget Distribution to unevenly distribute targets across months.": "Selecione distribui\u00e7\u00e3o do or\u00e7amento para distribuir metas diferentes para os meses.", + "Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.": "Definir or\u00e7amentos para Grupos de Itens neste territ\u00f3rio. Voc\u00ea tamb\u00e9m pode incluir a sazonalidade, defininda na Distribui\u00e7\u00e3o.", + "Setup": "Configura\u00e7\u00e3o", + "Target Details": "Detalhes da meta", + "Target Distribution": "Distribui\u00e7\u00e3o de metas", + "Territory": "Territ\u00f3rio", + "Territory Manager": "Gerenciador de Territ\u00f3rios", + "Territory Name": "Nome do Territ\u00f3rio", + "Territory Targets": "Metas do Territ\u00f3rio", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Yes": "Sim", + "lft": "esq.", + "old_parent": "old_parent", + "rgt": "dir." +} \ No newline at end of file diff --git a/setup/doctype/uom/locale/pt-BR-doc.json b/setup/doctype/uom/locale/pt-BR-doc.json new file mode 100644 index 0000000000..53d2507db7 --- /dev/null +++ b/setup/doctype/uom/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Setup": "Configura\u00e7\u00e3o", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "UOM": "UDM", + "UOM Details": "Detalhes da UDM", + "UOM Name": "Nome da UDM" +} \ No newline at end of file diff --git a/setup/doctype/warehouse_type/locale/pt-BR-doc.json b/setup/doctype/warehouse_type/locale/pt-BR-doc.json new file mode 100644 index 0000000000..29285d3fbf --- /dev/null +++ b/setup/doctype/warehouse_type/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Setup": "Configura\u00e7\u00e3o", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Warehouse Type": "Tipo de Almoxarifado" +} \ No newline at end of file diff --git a/setup/doctype/workflow_action_detail/locale/pt-BR-doc.json b/setup/doctype/workflow_action_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..187f25f521 --- /dev/null +++ b/setup/doctype/workflow_action_detail/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Field": "Campo", + "Setup": "Configura\u00e7\u00e3o", + "Value": "Valor", + "Workflow Action Detail": "Detalhe da A\u00e7\u00e3o do Fluxo de Trabalho" +} \ No newline at end of file diff --git a/setup/doctype/workflow_engine/locale/pt-BR-doc.json b/setup/doctype/workflow_engine/locale/pt-BR-doc.json new file mode 100644 index 0000000000..06298def52 --- /dev/null +++ b/setup/doctype/workflow_engine/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Setup": "Configura\u00e7\u00e3o", + "Workflow Engine": "Mecanismo do Fluxo de Trabalho" +} \ No newline at end of file diff --git a/setup/doctype/workflow_rule/locale/pt-BR-doc.json b/setup/doctype/workflow_rule/locale/pt-BR-doc.json new file mode 100644 index 0000000000..38c0437249 --- /dev/null +++ b/setup/doctype/workflow_rule/locale/pt-BR-doc.json @@ -0,0 +1,23 @@ +{ + "Action Detail": "Detalhe da a\u00e7\u00e3o", + "Action html": "A\u00e7\u00e3o html", + "Active": "Ativo", + "Define Rule": "Definir regra", + "Enter message": "Digite a mensagem", + "Extra Condition": "Condi\u00e7\u00e3o extra", + "Inactive": "Inativo", + "Intro HTML": "Intro HTML", + "No": "N\u00e3o", + "Raise Exception": "Levantar Exce\u00e7\u00e3o", + "Reject HTML": "Rejeitar HTML", + "Rule Definition": "Defini\u00e7\u00e3o da regra", + "Rule Name": "Nome da regra", + "Rule Priority": "Prioridade da regra", + "Rule Status": "Estado da regra", + "Select Form": "Selecione o Formul\u00e1rio", + "Setup": "Configura\u00e7\u00e3o", + "Workflow Action Details": "Detalhes da A\u00e7\u00e3o do Fluxo de Trabalho", + "Workflow Rule": "Regra do Fluxo de Trabalho", + "Workflow Rule Details": "Detalhes da Regra do Fluxo de Trabalho", + "Yes": "Sim" +} \ No newline at end of file diff --git a/setup/doctype/workflow_rule_detail/locale/pt-BR-doc.json b/setup/doctype/workflow_rule_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..ee1a847316 --- /dev/null +++ b/setup/doctype/workflow_rule_detail/locale/pt-BR-doc.json @@ -0,0 +1,18 @@ +{ + "Field": "Campo", + "Field from other forms": "Campo de outros formul\u00e1rios", + "Message when Cond. False": "Mensagem quando Condi\u00e7\u00e3o for Falsa", + "No": "N\u00e3o", + "Operator": "Operador", + "Raise Exception": "Levantar Exce\u00e7\u00e3o", + "Setup": "Configura\u00e7\u00e3o", + "Value": "Valor", + "Workflow Rule Detail": "Detalhe da Regra do Fluxo de Trabalho", + "Yes": "Sim", + "equal": "igual", + "greater than": "maior que", + "greater than equal": "maior ou igual", + "less than": "menor que", + "less than equal": "menor ou igual", + "not equal": "n\u00e3o igual" +} \ No newline at end of file diff --git a/setup/module_def/setup/locale/pt-BR-doc.json b/setup/module_def/setup/locale/pt-BR-doc.json new file mode 100644 index 0000000000..976b22f079 --- /dev/null +++ b/setup/module_def/setup/locale/pt-BR-doc.json @@ -0,0 +1,19 @@ +{ + "**Currency** Master": "Cadastro de **Moeda**", + "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.": "Um distribuidor terceirizado / negociante / agente comissionado / revendedor que vende os produtos da empresas por uma comiss\u00e3o.", + "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.": "Todas as Transa\u00e7\u00f5es de Vendas podem ser marcadas contra diversos **Vendedores** de modo que voc\u00ea possa definir e monitorar metas.", + "Classification of Customers by region": "Classifica\u00e7\u00e3o de Clientes por regi\u00e3o", + "Email Settings for Outgoing and Incoming Emails.": "Configura\u00e7\u00f5es de e-mail para e-mails enviados e recebidos.", + "Email settings for jobs email id \"jobs@example.com\"": "Configura\u00e7\u00f5es de e-mail para e-mail de empregos "empregos@exemplo.com"", + "Email settings to extract Leads from sales email id e.g. \"sales@example.com\"": "Configura\u00e7\u00f5es de e-mail para extrair Prospectos do e-mail de vendas, por exemplo "vendas@exemplo.com"", + "Item Classification": "Classifica\u00e7\u00e3o do Item", + "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.": "Pessoa Jur\u00eddica / Subsidi\u00e1ria, com um plano de Contas separado, pertencentes \u00e0 Organiza\u00e7\u00e3o.", + "Modules Setup": "Configura\u00e7\u00e3o dos M\u00f3dulos", + "Permission Engine": "Mecanismo de Permiss\u00e3o", + "Price List Master": "Cadastro de Lista de Pre\u00e7os", + "Send automatic emails to Contacts on Submitting transactions.": "Enviar e-mails autom\u00e1ticos para os Contatos ao Submeter transa\u00e7\u00f5es.", + "Send regular summary reports via Email.": "Enviar relat\u00f3rios resumidos regularmente via e-mail.", + "Set prefix for numbering series on your transactions": "Definir prefixo para s\u00e9ries de numera\u00e7\u00e3o em suas transa\u00e7\u00f5es", + "Setup": "Configura\u00e7\u00e3o", + "Webforms": "Formul\u00e1rios Web" +} \ No newline at end of file diff --git a/setup/page/setup/locale/pt-BR-js.json b/setup/page/setup/locale/pt-BR-js.json new file mode 100644 index 0000000000..c2b24957a6 --- /dev/null +++ b/setup/page/setup/locale/pt-BR-js.json @@ -0,0 +1,61 @@ +{ + "Add custom code to forms": "Adicionar c\u00f3digo personalizado aos formul\u00e1rios", + "Add fields to forms": "Adicionar campos aos formul\u00e1rios", + "Add headers for standard print formats": "Adicionar cabe\u00e7alhos para formatos de impress\u00e3o padr\u00e3o", + "Add/remove users, set roles, passwords etc": "Adicionar / remover usu\u00e1rios, definir fun\u00e7\u00f5es, senhas etc", + "Authorization Rule": "Regra de autoriza\u00e7\u00e3o", + "Branding and Printing": "Identifica\u00e7\u00e3o de Marca e Impress\u00e3o", + "Change background fonts etc": "Alterar fontes, fundo, etc", + "Change entry properties (hide fields, make mandatory etc)": "Alterar as propriedades do lan\u00e7amento (ocultar campos, tornar obrigat\u00f3rio, etc)", + "Company": "Empresa", + "Currency": "Moeda", + "Custom Field": "Campo personalizado", + "Custom Script": "Script personalizado", + "Customize": "Personalize", + "Customize Form": "Personalize Formul\u00e1rio", + "Daily, weekly, monthly email Digests": "Resumos di\u00e1rios, semanais e mensais por e-mail", + "Data": "Dados", + "Data Import": "Importa\u00e7\u00e3o de Dados", + "Email Digest": "Resumo por E-mail", + "Email Settings": "Configura\u00e7\u00f5es de e-mail", + "Enable / disable currencies.": "Ativar / desativar moedas.", + "Extract Job Applicant from jobs email id e.g. jobs@example.com": "Extraia Candidado a Emprego do e-mail de empregos, por exemplo empregos@exemplo.com", + "Extract Leads from sales email id e.g. sales@example.com": "Extraia Prospectos do e-mail de vendas, por exemplo vendas@exemplo.com", + "Features Setup": "Configura\u00e7\u00e3o de caracter\u00edsticas", + "Financial Years for books of accounts": "Exerc\u00edcios para os livros-caixas", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Global Defaults": "Padr\u00f5es globais", + "HTML print formats for quotes, invoices etc": "Formatos de impress\u00e3o em HTML para cota\u00e7\u00f5es, notas fiscais, etc", + "Import data from spreadsheet (csv) files": "Importar dados de planilhas (csv)", + "Jobs Email Settings": "Configura\u00e7\u00f5es do e-mail de empregos", + "Letter Head": "Timbrado", + "Letter heads for print": "Timbrado para impress\u00e3o", + "List of companies (not customers / suppliers)": "Lista das empresas (n\u00e3o clientes / fornecedores)", + "Manage numbering series": "Gerenciar s\u00e9ries de numera\u00e7\u00e3o", + "Notification Control": "Controle de Notifica\u00e7\u00e3o", + "Organization": "Organiza\u00e7\u00e3o", + "Out going mail server and support ticket mailbox": "Servidor de e-mail de sa\u00edda e caixa de correio de tickets de suporte", + "Permission Manager": "Gerenciador de Permiss\u00e3o", + "Print Format": "Formato de impress\u00e3o", + "Print Heading": "Cabe\u00e7alho de impress\u00e3o", + "Profile": "Perfil", + "Prompt email sending to customers and suppliers": "E-mail Prompt envio a clientes e fornecedores", + "Restrict submission rights based on amount": "Restringir direitos de envio com base no valor", + "SMS Center": "Centro de SMS", + "SMS Settings": "Defini\u00e7\u00f5es de SMS", + "Sales Email Settings": "Configura\u00e7\u00f5es do Email de Vendas", + "Send bulk SMS to leads, customers, contacts": "Enviar SMS em massa para prospectos, clientes e contatos", + "Set default values for entry": "Definir valores padr\u00e3o para o lan\u00e7amento", + "Set default values for users (also used for permissions).": "Definir valores padr\u00e3o para os usu\u00e1rios (tamb\u00e9m usados para permiss\u00f5es).", + "Set multiple numbering series for transactions": "Definir multiplas s\u00e9ries de numera\u00e7\u00e3o para transa\u00e7\u00f5es", + "Set permissions on transactions / masters": "Definir permiss\u00f5es em transa\u00e7\u00f5es / cadastros", + "Set workflow rules.": "Definir regras do fluxo de trabalho.", + "Setup outgoing SMS via your bulk SMS provider": "Configurar envio de SMS atrav\u00e9s de seu provedor de SMS em massa", + "Show / Hide Modules": "Mostrar / Ocultar M\u00f3dulos", + "Show, hide modules": "Mostrar / Ocultar M\u00f3dulos", + "Simplify entry forms by disabling features": "Simplificar os formul\u00e1rios de entrada pela desativa\u00e7\u00e3o de recursos", + "Style Settings": "Configura\u00e7\u00f5es de Estilo", + "User Properties": "Propriedades do Usu\u00e1rio", + "Users": "Usu\u00e1rios", + "Workfow": "Fluxo de Trabalho" +} \ No newline at end of file diff --git a/stock/doctype/batch/locale/pt-BR-doc.json b/stock/doctype/batch/locale/pt-BR-doc.json new file mode 100644 index 0000000000..31e90243b8 --- /dev/null +++ b/stock/doctype/batch/locale/pt-BR-doc.json @@ -0,0 +1,11 @@ +{ + "Batch": "Lote", + "Batch Finished Date": "Data de T\u00e9rmino do Lote", + "Batch ID": "ID do Lote", + "Batch Started Date": "Data de In\u00edcio do Lote", + "Description": "Descri\u00e7\u00e3o", + "Expiry Date": "Data de validade", + "Item": "Item", + "Stock": "Estoque", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo" +} \ No newline at end of file diff --git a/stock/doctype/bin/locale/pt-BR-doc.json b/stock/doctype/bin/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4d8f55f3d4 --- /dev/null +++ b/stock/doctype/bin/locale/pt-BR-doc.json @@ -0,0 +1,18 @@ +{ + "Actual Quantity": "Quantidade Real", + "Bin": "Caixa", + "FCFS Rate": "Taxa FCFS", + "Item Code": "C\u00f3digo do Item", + "Moving Average Rate": "Taxa da M\u00e9dia M\u00f3vel", + "Ordered Quantity": "Quantidade encomendada", + "Planned Qty": "Qtde. planejada", + "Projected Qty": "Qtde. Projetada", + "Quantity Requested for Purchase": "Quantidade Solicitada para Compra", + "Reserved Quantity": "Quantidade Reservada", + "Stock": "Estoque", + "Stock Value": "Valor do Estoque", + "UOM": "UDM", + "Valuation Rate": "Taxa de Avalia\u00e7\u00e3o", + "Warehouse": "Almoxarifado", + "Warehouse Type": "Tipo de Almoxarifado" +} \ No newline at end of file diff --git a/stock/doctype/bin/locale/pt-BR-py.json b/stock/doctype/bin/locale/pt-BR-py.json new file mode 100644 index 0000000000..9ce73abb51 --- /dev/null +++ b/stock/doctype/bin/locale/pt-BR-py.json @@ -0,0 +1,4 @@ +{ + "It was raised because the (actual + ordered + indented - reserved) quantity reaches re-order level when the following record was created": "Foi levantada porque a (real + + ordenou recuado - reservado) a quantidade chega a novo pedido de n\u00edvel quando o registro a seguir foi criado", + "This is an auto generated Material Request.": "Este \u00e9 um auto solicitar material gerado." +} \ No newline at end of file diff --git a/stock/doctype/delivery_note/locale/pt-BR-doc.json b/stock/doctype/delivery_note/locale/pt-BR-doc.json new file mode 100644 index 0000000000..037051ef4c --- /dev/null +++ b/stock/doctype/delivery_note/locale/pt-BR-doc.json @@ -0,0 +1,122 @@ +{ + "% Amount Billed": "Valor faturado %", + "% Installed": "Instalado %", + "% of materials billed against this Delivery Note": "% de materiais faturados contra esta Guia de Remessa", + "% of materials delivered against this Delivery Note": "% de materiais entregues contra esta Guia de Remessa", + "Advertisement": "An\u00fancio", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Billing Status": "Estado do Faturamento", + "Calculate Charges": "Calcular Encargos", + "Campaign": "Campanha", + "Cancel Reason": "Motivo do Cancelar", + "Cancelled": "Cancelado", + "Challan Date": "Data do Recibo", + "Challan No": "N\u00ba do Recibo", + "Cold Calling": "Cold Calling", + "Commission Rate (%)": "Taxa de Comiss\u00e3o (%)", + "Company": "Empresa", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Conversion Rate": "Taxa de Convers\u00e3o", + "Currency": "Moeda", + "Customer": "Cliente", + "Customer Group": "Grupo de Clientes", + "Customer Name": "Nome do cliente", + "Customer's Currency": "Moeda do Cliente", + "Customer's Vendor": "Vendedor do cliente", + "DN": "DN", + "Date on which lorry started from your warehouse": "Data em que o caminh\u00e3o partiu do seu almoxarifado", + "Delivery Note": "Guia de Remessa", + "Delivery Note Items": "Itens da Guia de Remessa", + "Draft": "Rascunho", + "Excise Page Number": "N\u00famero de p\u00e1gina do imposto", + "Exhibition": "Exposi\u00e7\u00e3o", + "Existing Customer": "Cliente existente", + "File List": "Lista de Arquivos", + "Filling in Additional Information about the Delivery Note will help you analyze your data better.": "Preenchimento de informa\u00e7\u00f5es adicionais sobre a Guia de Remessa ir\u00e1 ajud\u00e1-lo a analisar os seus dados melhor.", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Fully Billed": "Totalmente faturado", + "Get Items": "Obter itens", + "Get Taxes and Charges": "Obter Impostos e Encargos", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "Grand Total": "Total Geral", + "Grand Total (Export)": "Total Geral (Exporta\u00e7\u00e3o)", + "If you have created a standard template in Sales Taxes and Charges Master, select one and click on the button below.": "Se voc\u00ea criou um modelo padr\u00e3o no cadastro de Impostos de Vendas e Encargos, selecione um e clique no bot\u00e3o abaixo.", + "In Words": "Por extenso", + "In Words (Export)": "Por extenso (Exporta\u00e7\u00e3o)", + "In Words (Export) will be visible once you save the Delivery Note.": "Por extenso (Exporta\u00e7\u00e3o) ser\u00e1 vis\u00edvel quando voc\u00ea salvar a Guia de Remessa.", + "In Words will be visible once you save the Delivery Note.": "Por extenso ser\u00e1 vis\u00edvel quando voc\u00ea salvar a Guia de Remessa.", + "Installation Status": "Estado da Instala\u00e7\u00e3o", + "Instructions": "Instru\u00e7\u00f5es", + "Items": "Itens", + "LR Date": "Data LR", + "LR No": "N\u00ba LR", + "Letter Head": "Timbrado", + "Mass Mailing": "Divulga\u00e7\u00e3o em massa", + "Mobile No": "Telefone Celular", + "More Info": "Mais informa\u00e7\u00f5es", + "Net Total*": "Total L\u00edquido*", + "Not Billed": "N\u00e3o Faturado", + "P.O. Date": "Data PO", + "P.O. No": "N\u00ba PO", + "Packing Details": "Detalhes da embalagem", + "Packing List": "Lista de embalagem", + "Partly Billed": "Parcialmente faturado", + "Posting Date": "Data da Postagem", + "Posting Time": "Hor\u00e1rio da Postagem", + "Price List": "Lista de Pre\u00e7os", + "Price List Currency": "Moeda da Lista de Pre\u00e7os", + "Price List Currency Conversion Rate": "Taxa de convers\u00e3o da moeda da lista de pre\u00e7os", + "Price List and Currency": "Lista de Pre\u00e7os e Moeda", + "Print Without Amount": "Imprimir Sem Quantia", + "Project Name": "Nome do Projeto", + "Rate at which Price list currency is converted to company's base currency": "Taxa na qual a moeda da lista de pre\u00e7os \u00e9 convertida para a moeda base da empresa", + "Rate at which customer's currency is converted to company's base currency": "Taxa na qual a moeda do cliente \u00e9 convertida para a moeda base da empresa", + "Re-Calculate Values": "Re-calcular valores", + "Reference": "Refer\u00eancia", + "Required only for sample item.": "Necess\u00e1rio apenas para o item de amostra.", + "Rounded Total": "Total arredondado", + "Rounded Total (Export)": "Total arredondado (Exporta\u00e7\u00e3o)", + "Sales BOM Help": "Ajuda da LDM de Vendas", + "Sales Order No": "N\u00ba da Ordem de Venda", + "Sales Partner": "Parceiro de Vendas", + "Sales Taxes and Charges": "Impostos e Taxas sobre Vendas", + "Sales Team": "Equipe de Vendas", + "Sales Team1": "Equipe de Vendas", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Select Shipping Address": "Selecione o Endere\u00e7o para Envio", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the currency in which price list is maintained": "Selecione a moeda na qual a lista de pre\u00e7os \u00e9 mantida", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "Selecione a lista de pre\u00e7os como cadastrada em "Lista de Pre\u00e7o". Isso vai puxar os valores de refer\u00eancia dos itens contra esta lista de pre\u00e7os, conforme especificado no cadastro "Item".", + "Select the relevant company name if you have multiple companies": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas", + "Series": "S\u00e9ries", + "Shipping Address": "Endere\u00e7o de envio", + "Source": "Fonte", + "Status": "Estado", + "Stock": "Estoque", + "Submitted": "Enviado", + "Supplier Reference": "Refer\u00eancia do Fornecedor", + "Taxes": "Impostos", + "Taxes and Charges": "Impostos e Encargos", + "Taxes and Charges Calculation": "C\u00e1lculo de Impostos e Encargos", + "Taxes and Charges Total": "Total de Impostos e Encargos", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions Details": "Detalhes dos Termos e Condi\u00e7\u00f5es", + "Terms and Conditions HTML": "Termos e Condi\u00e7\u00f5es HTML", + "Territory": "Territ\u00f3rio", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "Time at which items were delivered from warehouse": "Hor\u00e1rio em que os itens foram entregues do almoxarifado", + "To Warehouse": "Para Almoxarifado", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Total Commission": "Total da Comiss\u00e3o", + "Totals": "Totais", + "Track this Delivery Note against any Project": "Acompanhar este Guia de Remessa contra qualquer projeto", + "Transporter Info": "Informa\u00e7\u00f5es da Transportadora", + "Transporter Name": "Nome da Transportadora", + "Transporter lorry number": "N\u00famero do caminh\u00e3o da Transportadora", + "You can make a delivery note from multiple sales orders. Select sales orders one by one and click on the button below.": "Voc\u00ea pode fazer uma Guia de Remessa a partir de v\u00e1rias Ordens de Venda. Selecione as Ordens de Venda, uma a uma e clique no bot\u00e3o abaixo." +} \ No newline at end of file diff --git a/stock/doctype/delivery_note_item/locale/pt-BR-doc.json b/stock/doctype/delivery_note_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..0780b06265 --- /dev/null +++ b/stock/doctype/delivery_note_item/locale/pt-BR-doc.json @@ -0,0 +1,33 @@ +{ + "Against Document Date": "Contra Data do Documento", + "Against Document Detail No": "Contra Detalhe do Documento n\u00ba ", + "Against Document No": "Contra Documento n\u00ba", + "Amount": "Quantidade", + "Amount*": "Quantidade*", + "Available Qty at Warehouse": "Qtde Dispon\u00edvel em Almoxarifado", + "Barcode": "C\u00f3digo de barras", + "Batch No": "N\u00ba do Lote", + "Billed Amt": "Valor Faturado", + "Brand Name": "Marca", + "Customer's Item Code": "C\u00f3digo do Item do Cliente", + "Delivery Note Item": "Item da Guia de Remessa", + "Description": "Descri\u00e7\u00e3o", + "Discount (%)": "Desconto (%)", + "Document Type": "Tipo de Documento", + "Installed Qty": "Quantidade Instalada", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Item Tax Rate": "Taxa de Imposto do Item", + "Packed Quantity": "Quantidade embalada", + "Page Break": "Quebra de p\u00e1gina", + "Price List Rate": "Taxa de Lista de Pre\u00e7os", + "Price List Rate*": "Taxa de Lista de Pre\u00e7os*", + "Quantity": "Quantidade", + "Rate": "Taxa", + "Rate*": "Taxa*", + "Serial No": "N\u00ba de S\u00e9rie", + "Stock": "Estoque", + "UOM": "UDM", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/stock/doctype/delivery_note_packing_item/locale/pt-BR-doc.json b/stock/doctype/delivery_note_packing_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e04a046b89 --- /dev/null +++ b/stock/doctype/delivery_note_packing_item/locale/pt-BR-doc.json @@ -0,0 +1,18 @@ +{ + "Actual Qty": "Qtde Real", + "Batch No": "N\u00ba do Lote", + "Delivery Note Packing Item": "Item do Pacote da Guia de Remessa", + "Description": "Descri\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Item Name": "Nome do Item", + "Page Break": "Quebra de p\u00e1gina", + "Parent Detail docname": "Docname do Detalhe pai", + "Parent Item": "Item Pai", + "Prevdoc DocType": "Prevdoc DocType", + "Projected Qty": "Qtde. Projetada", + "Qty": "Qtde.", + "Serial No": "N\u00ba de S\u00e9rie", + "Stock": "Estoque", + "UOM": "UDM", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/stock/doctype/featured_item/locale/pt-BR-doc.json b/stock/doctype/featured_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..f4f543a3b5 --- /dev/null +++ b/stock/doctype/featured_item/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Featured Item": "Item Destacado", + "Featured Item in Item Group": "Item destacado no Grupo de Itens", + "Item": "Item", + "Stock": "Estoque" +} \ No newline at end of file diff --git a/stock/doctype/item/locale/pt-BR-doc.json b/stock/doctype/item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..587d03d953 --- /dev/null +++ b/stock/doctype/item/locale/pt-BR-doc.json @@ -0,0 +1,117 @@ +{ + "Manage Item Groups": "Gerenciar Grupos de Itens", + "A Product or a Service that is bought, sold or kept in stock.": "Um Produto ou um Pervi\u00e7o que \u00e9 comprado, vendido ou mantido em estoque.", + "Allow Bill of Materials": "Permitir Lista de Materiais", + "Allow Production Order": "Permitir Ordem de Produ\u00e7\u00e3o", + "Allow Samples": "Permitir Amostras", + "Allowance Percent": "Percentual de toler\u00e2ncia", + "Auto-raise Material Request if quantity goes below re-order level in a warehouse": "Auto-raise solicitar material se a quantidade for inferior a reordenar n\u00edvel em um armaz\u00e9m", + "Barcode": "C\u00f3digo de barras", + "Brand": "Marca", + "Buying Cost": "Custo de compra", + "Buying Cost will be updated from Purchase Orders and Purchase Receipts.
The buying cost will calculated by moving average method.": "O Custo de Compra ser\u00e1 atualizado a partir de Ordens de Compra e Recibos de Compra.
O custo de compra ser\u00e1 calculado pelo m\u00e9todo de m\u00e9dia m\u00f3vel.", + "Cost Center": "Centro de Custos", + "Create a price list from Price List master and enter standard ref rates against each of them. On selection of a price list in Quotation, Sales Order or Delivery Note, corresponding ref rate will be fetched for this item.": "Criar uma lista de pre\u00e7os a partir do cadastro de Lista de Pre\u00e7os e introduzir valores padr\u00e3o de ref. para cada um deles. Na sele\u00e7\u00e3o de uma lista de pre\u00e7os em Cota\u00e7\u00e3o, Ordem de Venda, ou Guia de Remessa, o valor de ref. correspondente ser\u00e1 buscado para este item.", + "Customer Code": "C\u00f3digo do Cliente", + "Customer Codes": "C\u00f3digos de Clientes", + "Default BOM": "LDM padr\u00e3o", + "Default Cost Center": "Centro de Custo Padr\u00e3o", + "Default Cost Center for tracking expense for this item.": "Centro de Custo padr\u00e3o para controle de despesas para este item.", + "Default Expense Account": "Conta Despesa padr\u00e3o", + "Default Income Account": "Conta de Rendimento padr\u00e3o", + "Default Purchase Account in which cost of the item will be debited.": "Conta de compra padr\u00e3o em que o custo do item ser\u00e1 debitado.", + "Default Reserved Warehouse": "Almoxarifado Reservado padr\u00e3o", + "Default Unit of Measure": "Unidade de medida padr\u00e3o", + "Description": "Descri\u00e7\u00e3o", + "Description HTML": "Descri\u00e7\u00e3o HTML", + "End of Life": "Fim de Vida", + "FIFO": "PEPS", + "File List": "Lista de Arquivos", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "Para a comodidade dos clientes, estes c\u00f3digos podem ser usados \u200b\u200bem formatos de impress\u00e3o, como Notas Fiscais e Guias de Remessa", + "Generate Description HTML": "Gerar Descri\u00e7\u00e3o HTML", + "Generates HTML to include selected image in the description": "Gera HTML para incluir a imagem selecionada na descri\u00e7\u00e3o", + "Has Batch No": "Tem n\u00ba de Lote", + "Has Serial No": "Tem n\u00ba de S\u00e9rie", + "Image": "Imagem", + "Image View": "Ver imagem", + "Inspection Criteria": "Crit\u00e9rios de Inspe\u00e7\u00e3o", + "Inspection Required": "Inspe\u00e7\u00e3o Obrigat\u00f3ria", + "Inventory": "Invent\u00e1rio", + "Is Asset Item": "\u00c9 item de ativo", + "Is Purchase Item": "\u00c9 item de compra", + "Is Sales Item": "\u00c9 item de venda", + "Is Service Item": "\u00c9 item de servi\u00e7o", + "Is Stock Item": "\u00c9 item de estoque", + "Is Sub Contracted Item": "\u00c9 item subcontratado", + "Item": "Item", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Image (if not slideshow)": "Imagem do Item (se n\u00e3o for slideshow)", + "Item Name": "Nome do Item", + "Item Prices": "Pre\u00e7os de itens", + "Item Quality Inspection Parameter": "Par\u00e2metro de Inspe\u00e7\u00e3o de Qualidade do Item", + "Item Supplier Details": "Detalhes do Fornecedor do Item", + "Item Tax": "Imposto do Item", + "Item Tax1": "Item Tax1", + "Item Website Specifications": "Especifica\u00e7\u00f5es do Site do Item", + "Item will be saved by this name in the data base.": "O Item ser\u00e1 salvo com este nome na base de dados.", + "Last Purchase Rate": "Valor da \u00faltima compra", + "Lead Time Days": "Prazo de entrega", + "Lead Time days is number of days by which this item is expected in your warehouse. This days is fetched in Material Request when you select this item.": "Levar dias Tempo \u00e9 o n\u00famero de dias em que este item \u00e9 esperado no seu armaz\u00e9m. Este dia \u00e9 buscada em solicitar material ao selecionar este item.", + "List this Item in multiple groups on the website.": "Listar este item em v\u00e1rios grupos no site.", + "Mandatory if Stock Item is \"Yes\"": "Obrigat\u00f3rio se Item de estoque for "Sim"", + "Manufacturer": "Fabricante", + "Manufacturer Part Number": "N\u00famero de pe\u00e7a do fabricante", + "Manufacturing": "Fabrica\u00e7\u00e3o", + "Max Discount (%)": "Desconto M\u00e1x. (%)", + "Minimum Order Qty": "Pedido M\u00ednimo", + "Moving Average": "M\u00e9dia m\u00f3vel", + "Net Weight": "Peso L\u00edquido", + "Net Weight of each Item": "Peso l\u00edquido de cada item", + "No": "N\u00e3o", + "Notify by Email on Re-order": "Notificar por e-mail ao Reordenar", + "Page Name": "Nome da P\u00e1gina", + "Percentage variation in quantity to be allowed while receiving or delivering this item.": "Varia\u00e7\u00e3o percentual na quantidade a ser permitido ao receber ou entregar este item.", + "Price Lists and Rates": "Listas de Pre\u00e7os e Tarifas", + "Products will be sorted by weight-age in default searches. More the weight-age, higher the product will appear in the list.": "Os produtos ser\u00e3o classificados por peso em buscas padr\u00e3o. Maior o peso, mais alto o produto ir\u00e1 aparecer na lista.", + "Purchase Details": "Detalhes da compra", + "Quality Inspection Parameters": "Par\u00e2metros da Inspe\u00e7\u00e3o de Qualidade", + "Re-Order Level": "N\u00edvel para novo pedido", + "Re-Order Qty": "Qtde. para novo pedido", + "Re-order": "Re-vista", + "Sales Details": "Detalhes de Vendas", + "Sales Rate": "Taxa de vendas", + "Select \"Yes\" if this item is to be sent to a customer or received from a supplier as a sample. Delivery notes and Purchase Receipts will update stock levels but there will be no invoice against this item.": "Selecione "Sim" se este item \u00e9 para ser enviado para um cliente ou recebido de um fornecedor como amostra. Guias de Remessa e recibos de compra ir\u00e3o atualizar os n\u00edveis de estoque, mas n\u00e3o haver\u00e1 fatura contra este item.", + "Select \"Yes\" if this item is used for some internal purpose in your company.": "Selecione "Sim" se este item \u00e9 usado para alguma finalidade interna na sua empresa.", + "Select \"Yes\" if this item represents some work like training, designing, consulting etc.": "Selecione "Sim" se esse item representa algum trabalho como treinamento, design, consultoria, etc", + "Select \"Yes\" if you are maintaining stock of this item in your Inventory.": "Selecione "Sim" se voc\u00ea est\u00e1 mantendo estoque deste item no seu Invent\u00e1rio.", + "Select \"Yes\" if you supply raw materials to your supplier to manufacture this item.": "Selecione "Sim" se voc\u00ea fornece as mat\u00e9rias-primas para o seu fornecedor fabricar este item.", + "Selecting \"Yes\" will allow this item to appear in Purchase Order , Purchase Receipt.": "Selecionando "Sim" vai permitir que este item apare\u00e7a na Ordem de Compra, Recibo de Compra.", + "Selecting \"Yes\" will allow this item to figure in Sales Order, Delivery Note": "Selecionando "Sim" vai permitir que este item conste na Ordem de Venda, Guia de Remessa", + "Selecting \"Yes\" will allow you to create Bill of Material showing raw material and operational costs incurred to manufacture this item.": "Selecionando "Sim" vai permitir que voc\u00ea crie uma Lista de Materiais mostrando as mat\u00e9rias-primas e os custos operacionais incorridos para fabricar este item.", + "Selecting \"Yes\" will allow you to make a Production Order for this item.": "Selecionando "Sim" vai permitir que voc\u00ea fa\u00e7a uma Ordem de Produ\u00e7\u00e3o para este item.", + "Selecting \"Yes\" will give a unique identity to each entity of this item which can be viewed in the Serial No master.": "Selecionando "Sim" vai dar uma identifica\u00e7\u00e3o \u00fanica para cada entidade deste item que pode ser vista no cadastro do N\u00famero de S\u00e9rie.", + "Send an email to users of role \"Material Manager\" and \"Purchase Manager\" when re-order level is crossed.": "Enviar um e-mail para os usu\u00e1rios com fun\u00e7\u00e3o "Gerente de Material" e "Gerente de Compras" quando o n\u00edvel para novo pedido for atingido.", + "Show \"In Stock\" or \"Not in Stock\" based on stock available in this warehouse.": "Mostrar "Em Stock" ou "Fora de Estoque" baseado no estoque dispon\u00edvel neste almoxarifado.", + "Show Price in Website (if set)": "Mostrar Pre\u00e7o no Website (se definido)", + "Show a slideshow at the top of the page": "Mostrar uma apresenta\u00e7\u00e3o de slides no topo da p\u00e1gina", + "Show in Website": "Mostrar no site", + "Slideshow": "Apresenta\u00e7\u00e3o de slides", + "Standard Rate": "Taxa normal", + "Stock": "Estoque", + "UOM Conversion Details": "Detalhes da Convers\u00e3o de UDM", + "Unit of measurement of this item (e.g. Kg, Unit, No, Pair).": "Unidade de medida do item (por exemplo: kg, unidade, n\u00ba, par).", + "Valuation Method": "M\u00e9todo de Avalia\u00e7\u00e3o", + "Warehouse-wise Item Reorder": "Armaz\u00e9m-s\u00e1bio item Reordenar", + "Warranty Period (in days)": "Per\u00edodo de Garantia (em dias)", + "Website": "Site", + "Website Description": "Descri\u00e7\u00e3o do site", + "Website Item Groups": "Grupos de Itens do site", + "Website Price List": "Lista de Pre\u00e7os do site", + "Website Warehouse": "Almoxarifado do site", + "Weight UOM": "UDM de Peso", + "Weightage": "Peso", + "Yes": "Sim", + "You can enter the minimum quantity of this item to be ordered.": "Voc\u00ea pode inserir a quantidade m\u00ednima deste item a ser encomendada.", + "website page link": "link da p\u00e1gina do site" +} \ No newline at end of file diff --git a/stock/doctype/item_customer_detail/locale/pt-BR-doc.json b/stock/doctype/item_customer_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..bc104e12b8 --- /dev/null +++ b/stock/doctype/item_customer_detail/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Customer Name": "Nome do cliente", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "Para a comodidade dos clientes, estes c\u00f3digos podem ser usados \u200b\u200bem formatos de impress\u00e3o, como Notas Fiscais e Guias de Remessa", + "Item Customer Detail": "Detalhe do Cliente do Item", + "Ref Code": "C\u00f3digo de Ref.", + "Stock": "Estoque" +} \ No newline at end of file diff --git a/stock/doctype/item_price/locale/pt-BR-doc.json b/stock/doctype/item_price/locale/pt-BR-doc.json new file mode 100644 index 0000000000..dc04a24e65 --- /dev/null +++ b/stock/doctype/item_price/locale/pt-BR-doc.json @@ -0,0 +1,11 @@ +{ + "Allow this price in purchase related forms": "Permitir esse pre\u00e7o em formul\u00e1rios de compra relacionados", + "Allow this price in sales related forms": "Permitir esse pre\u00e7o em formul\u00e1rios de venda relacionados", + "Currency": "Moeda", + "For Buying": "Para Comprar", + "For Selling": "Para Venda", + "Item Price": "Pre\u00e7o do Item", + "Price List Name": "Nome da Lista de Pre\u00e7os", + "Ref Rate": "Taxa de Ref.", + "Stock": "Estoque" +} \ No newline at end of file diff --git a/stock/doctype/item_quality_inspection_parameter/locale/pt-BR-doc.json b/stock/doctype/item_quality_inspection_parameter/locale/pt-BR-doc.json new file mode 100644 index 0000000000..37a1a32c9e --- /dev/null +++ b/stock/doctype/item_quality_inspection_parameter/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Acceptance Criteria": "Crit\u00e9rios de Aceita\u00e7\u00e3o", + "Item Quality Inspection Parameter": "Par\u00e2metro de Inspe\u00e7\u00e3o de Qualidade do Item", + "Parameter": "Par\u00e2metro", + "Stock": "Estoque" +} \ No newline at end of file diff --git a/stock/doctype/item_reorder/locale/pt-BR-doc.json b/stock/doctype/item_reorder/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d46f25fc9a --- /dev/null +++ b/stock/doctype/item_reorder/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "Item Reorder": "Item Reordenar", + "Material Request Type": "Tipo de solicita\u00e7\u00e3o de material", + "Purchase": "Compras", + "Re-order Level": "Re fim-Level", + "Re-order Qty": "Re-vista Qtde", + "Stock": "Estoque", + "Transfer": "Transferir", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/stock/doctype/item_supplier/locale/pt-BR-doc.json b/stock/doctype/item_supplier/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3a92ba6d52 --- /dev/null +++ b/stock/doctype/item_supplier/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Item Supplier": "Fornecedor do Item", + "Stock": "Estoque", + "Supplier": "Fornecedor", + "Supplier Part Number": "N\u00famero da pe\u00e7a do Fornecedor" +} \ No newline at end of file diff --git a/stock/doctype/item_tax/locale/pt-BR-doc.json b/stock/doctype/item_tax/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e3f62c2e58 --- /dev/null +++ b/stock/doctype/item_tax/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Item Tax": "Imposto do Item", + "Stock": "Estoque", + "Tax": "Imposto", + "Tax Rate": "Taxa de Imposto" +} \ No newline at end of file diff --git a/stock/doctype/item_website_specification/locale/pt-BR-doc.json b/stock/doctype/item_website_specification/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a4516caa03 --- /dev/null +++ b/stock/doctype/item_website_specification/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Description": "Descri\u00e7\u00e3o", + "Item Website Specification": "Especifica\u00e7\u00e3o do Site do Item", + "Label": "Etiqueta", + "Stock": "Estoque", + "Table for Item that will be shown in Web Site": "Tabela para Item que ser\u00e1 mostrado no site" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_item/locale/pt-BR-doc.json b/stock/doctype/landed_cost_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..836d0b50a3 --- /dev/null +++ b/stock/doctype/landed_cost_item/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Account Head": "Conta", + "Amount": "Quantidade", + "Description": "Descri\u00e7\u00e3o", + "Landed Cost Item": "Custo de desembarque do Item", + "Stock": "Estoque" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_purchase_receipt/locale/pt-BR-doc.json b/stock/doctype/landed_cost_purchase_receipt/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b858a6f74e --- /dev/null +++ b/stock/doctype/landed_cost_purchase_receipt/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Landed Cost Purchase Receipt": "Recibo de compra do custo de desembarque", + "Purchase Receipt": "Recibo de Compra", + "Select PR": "Selecionar PR", + "Stock": "Estoque" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_wizard/locale/pt-BR-doc.json b/stock/doctype/landed_cost_wizard/locale/pt-BR-doc.json new file mode 100644 index 0000000000..9520ba8d4c --- /dev/null +++ b/stock/doctype/landed_cost_wizard/locale/pt-BR-doc.json @@ -0,0 +1,12 @@ +{ + "Currency": "Moeda", + "From PR Date": "De PR Data", + "Get Purchase Receipt": "Obter Recibo de compra", + "Landed Cost Items": "Custo de desembarque dos Itens", + "Landed Cost Purchase Receipts": "Recibos de compra do custo de desembarque", + "Landed Cost Wizard": "Assistente de Custo de Desembarque", + "Process": "Processo", + "Stock": "Estoque", + "To PR Date": "Data de PR", + "Update PR": "Atualizar PR" +} \ No newline at end of file diff --git a/stock/doctype/material_request/locale/_messages_js.json b/stock/doctype/material_request/locale/_messages_js.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/stock/doctype/material_request/locale/_messages_js.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/stock/doctype/material_request/locale/_messages_py.json b/stock/doctype/material_request/locale/_messages_py.json new file mode 100644 index 0000000000..c866bdb8cd --- /dev/null +++ b/stock/doctype/material_request/locale/_messages_py.json @@ -0,0 +1,4 @@ +[ + "Cannot continue.", + "Material Request" +] \ No newline at end of file diff --git a/stock/doctype/material_request/locale/pt-BR-doc.json b/stock/doctype/material_request/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d9ad5ee2bd --- /dev/null +++ b/stock/doctype/material_request/locale/pt-BR-doc.json @@ -0,0 +1,45 @@ +{ + "% Completed": "% Conclu\u00eddo", + "% of materials ordered against this Material Request": "% De materiais encomendados contra este pedido se", + "Add Terms and Conditions for the Material Request. You can also prepare a Terms and Conditions Master and use the Template": "Adicione Termos e Condi\u00e7\u00f5es para a Solicita\u00e7\u00e3o de Material. Voc\u00ea tamb\u00e9m pode preparar um Termos e Condi\u00e7\u00f5es mestre e usar o modelo", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Cancelled": "Cancelado", + "Company": "Empresa", + "Draft": "Rascunho", + "File List": "Lista de Arquivos", + "Filing in Additional Information about the Material Request will help you analyze your data better.": "Apresenta\u00e7\u00e3o de informa\u00e7\u00f5es adicionais sobre a solicitar material vai ajudar a analisar melhor seus dados.", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "IDT": "IDT", + "Items": "Itens", + "Letter Head": "Timbrado", + "MREQ-": "Mreq-", + "Material Request": "Pedido de material", + "Material Request Items": "Pedido de itens de material", + "Material Request Type": "Tipo de solicita\u00e7\u00e3o de material", + "More Info": "Mais informa\u00e7\u00f5es", + "Name of the entity who has requested for the Material Request": "Nome da entidade que solicitou para a solicita\u00e7\u00e3o de materiais", + "One or multiple Sales Order no which generated this Material Request": "Um ou nenhum Ordem m\u00faltipla de vendas que gerou este pedido se", + "Print Heading": "Cabe\u00e7alho de impress\u00e3o", + "Pull Sales Order Items": "Puxar itens da Ordem de Venda", + "Purchase": "Compras", + "Remarks": "Observa\u00e7\u00f5es", + "Requested By": "Solicitado por", + "Sales Order No": "N\u00ba da Ordem de Venda", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the relevant company name if you have multiple companies": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas", + "Series": "S\u00e9ries", + "Status": "Estado", + "Stock": "Estoque", + "Stopped": "Parado", + "Submitted": "Enviado", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions Content": "Conte\u00fados dos Termos e Condi\u00e7\u00f5es", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Transaction Date": "Data da Transa\u00e7\u00e3o", + "Transfer": "Transferir" +} \ No newline at end of file diff --git a/stock/doctype/material_request/locale/pt-BR-py.json b/stock/doctype/material_request/locale/pt-BR-py.json new file mode 100644 index 0000000000..21a92f4384 --- /dev/null +++ b/stock/doctype/material_request/locale/pt-BR-py.json @@ -0,0 +1,4 @@ +{ + "Cannot continue.": "N\u00e3o pode continuar.", + "Material Request": "Pedido de material" +} \ No newline at end of file diff --git a/stock/doctype/material_request_item/locale/pt-BR-doc.json b/stock/doctype/material_request_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..8ab42433bc --- /dev/null +++ b/stock/doctype/material_request_item/locale/pt-BR-doc.json @@ -0,0 +1,19 @@ +{ + "Brand": "Marca", + "Completed Qty": "Qtde conclu\u00edda", + "Description": "Descri\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Lead Time Date": "Prazo de entrega", + "Material Request Item": "Item de solicita\u00e7\u00e3o de material", + "Min Order Qty": "Pedido M\u00ednimo", + "Page Break": "Quebra de p\u00e1gina", + "Projected Qty": "Qtde. Projetada", + "Quantity": "Quantidade", + "Required Date": "Data Obrigat\u00f3ria", + "Sales Order No": "N\u00ba da Ordem de Venda", + "Stock": "Estoque", + "Stock UOM": "UDM do Estoque", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/stock/doctype/packing_slip/locale/pt-BR-doc.json b/stock/doctype/packing_slip/locale/pt-BR-doc.json new file mode 100644 index 0000000000..37f0e8b4e2 --- /dev/null +++ b/stock/doctype/packing_slip/locale/pt-BR-doc.json @@ -0,0 +1,27 @@ +{ + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Delivery Note": "Guia de Remessa", + "From Package No.": "De No. Package", + "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.": "Gerar guias de remessa de pacotes a serem entregues. Usado para notificar o n\u00famero do pacote, o conte\u00fado do pacote e seu peso.", + "Gross Weight": "Peso bruto", + "Gross Weight UOM": "UDM do Peso Bruto", + "Identification of the package for the delivery (for print)": "Identifica\u00e7\u00e3o do pacote para a Entrega (para impress\u00e3o)", + "If more than one package of the same type (for print)": "Se mais do que uma embalagem do mesmo tipo (para impress\u00e3o)", + "Indicates that the package is a part of this delivery": "Indica que o pacote \u00e9 uma parte desta entrega", + "Items": "Itens", + "Misc Details": "Detalhes Diversos", + "Net Weight": "Peso L\u00edquido", + "Net Weight UOM": "UDM do Peso L\u00edquido", + "PS": "PS", + "Package Item Details": "Detalhes do Item do Pacote", + "Package Weight Details": "Detalhes do peso do pacote", + "Packing Slip": "Guia de Remessa", + "Packing Slip Items": "Itens da Guia de Remessa", + "Series": "S\u00e9ries", + "Stock": "Estoque", + "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", + "The gross weight of the package. Usually net weight + packaging material weight. (for print)": "O peso bruto do pacote. Normalmente peso l\u00edquido + peso do material de embalagem. (Para impress\u00e3o)", + "The net weight of this package. (calculated automatically as sum of net weight of items)": "O peso l\u00edquido do pacote. (Calculado automaticamente como soma do peso l\u00edquido dos itens)", + "To Package No.": "Para Pacote N\u00ba." +} \ No newline at end of file diff --git a/stock/doctype/packing_slip_item/locale/pt-BR-doc.json b/stock/doctype/packing_slip_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a6700a896e --- /dev/null +++ b/stock/doctype/packing_slip_item/locale/pt-BR-doc.json @@ -0,0 +1,11 @@ +{ + "Item Code": "C\u00f3digo do Item", + "Item Name": "Nome do Item", + "Net Weight": "Peso L\u00edquido", + "Packing Slip Item": "Item da Guia de Remessa", + "Page Break": "Quebra de p\u00e1gina", + "Quantity": "Quantidade", + "Stock": "Estoque", + "UOM": "UDM", + "Weight UOM": "UDM de Peso" +} \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/locale/pt-BR-doc.json b/stock/doctype/purchase_receipt/locale/pt-BR-doc.json new file mode 100644 index 0000000000..47ca9a6a1a --- /dev/null +++ b/stock/doctype/purchase_receipt/locale/pt-BR-doc.json @@ -0,0 +1,104 @@ +{ + "% Billed": "Faturado %", + "% of materials billed against this Purchase Receipt": "% de materiais faturados contra este Recibo de Compra", + "Add / Edit Taxes and Charges": "Adicionar / Editar Impostos e Encargos", + "Add Terms and Conditions for the Purchase Receipt. You can also prepare a Terms and Conditions Master and use the Template.": "Adicione Termos e Condi\u00e7\u00f5es para o Recibo de Compra. Voc\u00ea tamb\u00e9m pode preparar um cadastro de Termos e Condi\u00e7\u00f5es e usar o Modelo.", + "Address": "Endere\u00e7o", + "Amended From": "Corrigido De", + "Bill Date": "Data de Faturamento", + "Bill No": "Fatura N\u00ba", + "Calculate Tax": "Calcular Imposto", + "Cancel Reason": "Motivo do Cancelar", + "Cancelled": "Cancelado", + "Challan Date": "Data do Recibo", + "Challan No": "N\u00ba do Recibo", + "Company": "Empresa", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "Considere esta Lista de Pre\u00e7os para a obten\u00e7\u00e3o do valor. (S\u00f3 onde "Para Comprar" estiver marcado)", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Currency": "Moeda", + "Currency & Price List": "Moeda e Lista de Pre\u00e7os", + "Date on which lorry started from supplier warehouse": "Data em que o caminh\u00e3o partiu do almoxarifado do fornecedor", + "Detailed Breakup of the totals": "Detalhamento dos totais", + "Draft": "Rascunho", + "Exchange Rate": "Taxa de C\u00e2mbio", + "File List": "Lista de Arquivos", + "Filing in Additional Information about the Purchase Receipt will help you analyze your data better.": "Preenchimento de informa\u00e7\u00f5es adicionais sobre o Recibo de compra vai ajudar a analisar melhor seus dados.", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Following table will show values if items are sub - contracted. These values will be fetched from the master of \"Bill of Materials\" of sub - contracted items.": "A tabela a seguir mostrar\u00e1 valores se os itens s\u00e3o sub-contratados. Estes valores ser\u00e3o obtidos a partir do cadastro da "Lista de Materiais" de itens sub-contratados.", + "GRN": "GRN", + "Get Current Stock": "Obter Estoque atual", + "Get Tax Detail": "Obtenha detalhes de Imposto", + "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", + "Grand Total": "Total Geral", + "Grand Total (Import)": "Total Geral (Importa\u00e7\u00e3o)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "Se voc\u00ea criou um modelo padr\u00e3o no cadastro de Impostos de Compra e Encargos, selecione um e clique no bot\u00e3o abaixo.", + "In Words": "Por extenso", + "In Words (Import)": "Por extenso (Import)", + "In Words will be visible once you save the Purchase Receipt.": "Por extenso ser\u00e1 vis\u00edvel quando voc\u00ea salvar o recibo de compra.", + "Instructions": "Instru\u00e7\u00f5es", + "Is Subcontracted": "\u00c9 subcontratada", + "Items": "Itens", + "LR Date": "Data LR", + "LR No": "N\u00ba LR", + "Mobile No": "Telefone Celular", + "More Info": "Mais informa\u00e7\u00f5es", + "Net Total": "Total L\u00edquido", + "Net Total (Import)": "Total L\u00edquido (Importa\u00e7\u00e3o)", + "No": "N\u00e3o", + "Other Details": "Outros detalhes", + "Posting Date": "Data da Postagem", + "Posting Time": "Hor\u00e1rio da Postagem", + "Price List": "Lista de Pre\u00e7os", + "Price List Currency": "Moeda da Lista de Pre\u00e7os", + "Price List Exchange Rate": "Taxa de C\u00e2mbio da Lista de Pre\u00e7os", + "Pull Purchase Order Details": "Puxar Detalhes da Ordem de Compra", + "Purchase Order": "Ordem de Compra", + "Purchase Receipt": "Recibo de Compra", + "Purchase Receipt Item Supplieds": "Item do Recibo de Compra Fornecido", + "Purchase Receipt Items": "Itens do Recibo de Compra", + "Purchase Taxes and Charges": "Impostos e Encargos sobre Compras", + "Range": "Alcance", + "Rate at which supplier's currency is converted to company's base currency": "Taxa na qual a moeda do fornecedor \u00e9 convertida para a moeda base da empresa", + "Raw Material Details": "Detalhes de Materias-Primas", + "Re-Calculate Values": "Re-calcular valores", + "Rejected Warehouse": "Almoxarifado Rejeitado", + "Remarks": "Observa\u00e7\u00f5es", + "Rounded Total": "Total arredondado", + "Select \"Yes\" for sub - contracting items": "Selecione "Sim" para a itens sub-contratados", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", + "Select the relevant company name if you have multiple companies": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas", + "Series": "S\u00e9ries", + "Status": "Estado", + "Stock": "Estoque", + "Submitted": "Enviado", + "Supplier": "Fornecedor", + "Supplier Address": "Endere\u00e7o do Fornecedor", + "Supplier Name": "Nome do Fornecedor", + "Supplier Warehouse": "Almoxarifado do Fornecedor", + "Supplier warehouse where you have issued raw materials for sub - contracting": "Almoxarifado do fornecedor onde voc\u00ea emitiu mat\u00e9rias-primas para a subcontrata\u00e7\u00e3o", + "Supplier's currency": "Moeda do Fornecedor", + "Tax Calculation": "C\u00e1lculo do Imposto", + "Taxes": "Impostos", + "Taxes and Charges Added": "Impostos e Encargos Adicionados", + "Taxes and Charges Added (Import)": "Impostos e Encargos Adicionados (Importa\u00e7\u00e3o)", + "Taxes and Charges Deducted": "Impostos e Encargos Deduzidos", + "Taxes and Charges Deducted (Import)": "Impostos e Encargos Deduzidos (Importa\u00e7\u00e3o)", + "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", + "Terms and Conditions HTML": "Termos e Condi\u00e7\u00f5es HTML", + "Terms and Conditions1": "Termos e Condi\u00e7\u00f5es", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "Time at which materials were received": "Hor\u00e1rio em que os materiais foram recebidos", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Total Tax": "Total de Impostos", + "Totals": "Totais", + "Transporter Info": "Informa\u00e7\u00f5es da Transportadora", + "Transporter Name": "Nome da Transportadora", + "Transporter lorry number": "N\u00famero do caminh\u00e3o da Transportadora", + "Warehouse where you are maintaining stock of rejected items": "Almoxarifado onde voc\u00ea est\u00e1 mantendo estoque de itens rejeitados", + "Yes": "Sim", + "You can make a purchase receipt from multiple purchase orders. Select purchase orders one by one and click on the button below.": "Voc\u00ea pode fazer um Recibo de Compra a partir de v\u00e1rias Ordens de Compra. Selecione as Ordens de Compra, uma a uma e clique no bot\u00e3o abaixo." +} \ No newline at end of file diff --git a/stock/doctype/purchase_receipt_item/locale/pt-BR-doc.json b/stock/doctype/purchase_receipt_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..427f7855d1 --- /dev/null +++ b/stock/doctype/purchase_receipt_item/locale/pt-BR-doc.json @@ -0,0 +1,41 @@ +{ + "Accepted Quantity": "Quantidade Aceita", + "Accepted Warehouse": "Almoxarifado Aceito", + "Amount": "Quantidade", + "Amount*": "Quantidade*", + "Batch No": "N\u00ba do Lote", + "Billed Quantity": "Quantidade Faturada", + "Brand": "Marca", + "Conversion Factor": "Fator de Convers\u00e3o", + "Description": "Descri\u00e7\u00e3o", + "Discount %": "% De desconto", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Item Tax Amount": "Valor do Imposto do Item", + "Item Tax Rate": "Taxa de Imposto do Item", + "PO Date": "Data PO", + "PO No": "N\u00ba PO", + "Page Break": "Quebra de p\u00e1gina", + "Prevdoc Doctype": "Prevdoc Doctype", + "Project Name": "Nome do Projeto", + "Purchase Order Item No": "N\u00ba do Item da Ordem de Compra", + "Purchase Receipt Item": "Item do Recibo de Compra", + "QA No": "N\u00ba QA", + "Rate": "Taxa", + "Rate*": "Taxa*", + "Raw Materials Supplied Cost": "Custo de fornecimento de Mat\u00e9rias-Primas", + "Recd Quantity": "Quantidade Recebida", + "Ref Rate ": "Taxa de Ref.", + "Ref Rate*": "* Taxa de Ref.", + "Rejected Quantity": "Quantidade rejeitada", + "Rejected Serial No": "N\u00ba de S\u00e9rie Rejeitado", + "Rejected Warehouse": "Almoxarifado Rejeitado", + "Required By": "Exigido por", + "Serial No": "N\u00ba de S\u00e9rie", + "Stock": "Estoque", + "Stock Qty": "Qtde. em Estoque", + "Stock UOM": "UDM do Estoque", + "UOM": "UDM", + "Valuation Rate": "Taxa de Avalia\u00e7\u00e3o" +} \ No newline at end of file diff --git a/stock/doctype/sales_and_purchase_return_tool/locale/pt-BR-doc.json b/stock/doctype/sales_and_purchase_return_tool/locale/pt-BR-doc.json new file mode 100644 index 0000000000..f218bfa7c8 --- /dev/null +++ b/stock/doctype/sales_and_purchase_return_tool/locale/pt-BR-doc.json @@ -0,0 +1,21 @@ +{ + "Company": "Empresa", + "Cust/Supp Address": "Endere\u00e7o do Cliente/Fornecedor", + "Cust/Supp Name": "Nome do Cliente/Fornecedor", + "Customer/Supplier": "Cliente / Fornecedor", + "Delivery Note No": "N\u00ba da Guia de Remessa", + "Get Items": "Obter itens", + "Make Credit Note": "Fazer Nota de Cr\u00e9dito", + "Make Debit Note": "Fazer Nota de D\u00e9bito", + "Make Excise Invoice": "Fazer fatura de imposto", + "Make Stock Entry": "Fazer lan\u00e7amento de estoque", + "Purchase Receipt No": "N\u00ba do Recibo de Compra", + "Purchase Return": "Devolu\u00e7\u00e3o de Compra", + "Return Date": "Data de retorno", + "Return Type": "Tipo de retorno", + "Sales Invoice No": "N\u00ba da Nota Fiscal de Venda", + "Sales Return": "Retorno de Vendas", + "Sales and Purchase Return Items": "Itens de retorno de compra e venda", + "Sales and Purchase Return Tool": "Ferramenta de retorno de compra e venda", + "Stock": "Estoque" +} \ No newline at end of file diff --git a/stock/doctype/sales_bom/locale/pt-BR-doc.json b/stock/doctype/sales_bom/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d1682a8030 --- /dev/null +++ b/stock/doctype/sales_bom/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "List items that form the package.": "Lista de itens que comp\u00f5em o pacote.", + "Package Items": "Itens do pacote", + "Parent Item": "Item Pai", + "Sales BOM": "LDM de Vendas", + "Sales BOM Item": "Item da LDM de Vendas", + "Sales BOM Items": "Itens da LDM de Vendas", + "Stock": "Estoque", + "The Item that represents the Package. This Item must have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\"": "O item que representa o pacote. Este item deve ter "\u00c9 Item de Estoque" como "N\u00e3o" e "\u00c9 Item de Venda" como "Sim"" +} \ No newline at end of file diff --git a/stock/doctype/sales_bom_item/locale/pt-BR-doc.json b/stock/doctype/sales_bom_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..c56c7354d5 --- /dev/null +++ b/stock/doctype/sales_bom_item/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Description": "Descri\u00e7\u00e3o", + "Item": "Item", + "Qty": "Qtde.", + "Rate": "Taxa", + "Sales BOM Item": "Item da LDM de Vendas", + "Stock": "Estoque", + "UOM": "UDM" +} \ No newline at end of file diff --git a/stock/doctype/serial_no/locale/pt-BR-doc.json b/stock/doctype/serial_no/locale/pt-BR-doc.json new file mode 100644 index 0000000000..7690ea181f --- /dev/null +++ b/stock/doctype/serial_no/locale/pt-BR-doc.json @@ -0,0 +1,59 @@ +{ + "AMC Expiry Date": "Data de Validade do CAM", + "Brand": "Marca", + "Company": "Empresa", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Name": "Nome do cliente", + "Delivered": "Entregue", + "Delivery Address": "Endere\u00e7o de entrega", + "Delivery Date": "Data de entrega", + "Delivery Details": "Detalhes da entrega", + "Delivery Document No": "N\u00ba do Documento de Entrega", + "Delivery Document Type": "Tipo do Documento de Entrega", + "Delivery Note": "Guia de Remessa", + "Delivery Time": "Prazo de entrega", + "Description": "Descri\u00e7\u00e3o", + "Details": "Detalhes", + "Distinct unit of an Item": "Unidade distinta de um item", + "File List": "Lista de Arquivos", + "Fiscal Year": "Exerc\u00edcio fiscal", + "In Store": "Na loja", + "Incoming Rate": "Taxa de entrada", + "Incoming Time": "Tempo de entrada", + "Is Cancelled": "\u00c9 cancelado", + "Item Code": "C\u00f3digo do Item", + "Item Group": "Grupo de Itens", + "Item Name": "Nome do Item", + "Maintenance Status": "Estado da manuten\u00e7\u00e3o", + "More Info": "Mais informa\u00e7\u00f5es", + "No": "N\u00e3o", + "Not in Use": "N\u00e3o est\u00e1 em uso", + "Out of AMC": "Fora do CAM", + "Out of Warranty": "Fora de Garantia", + "Purchase Date": "Data da compra", + "Purchase Details": "Detalhes da compra", + "Purchase Document No": "N\u00ba do Documento de Compra", + "Purchase Document Type": "Tipo do Documento de Compra", + "Purchase Receipt": "Recibo de Compra", + "Purchase Returned": "Compra Devolvida", + "SLE Exists": "SLE existe", + "Sales Invoice": "Nota Fiscal de Venda", + "Serial No": "N\u00ba de S\u00e9rie", + "Serial No Details": "Detalhes do N\u00ba de S\u00e9rie", + "Status": "Estado", + "Stock": "Estoque", + "Stock Entry": "Lan\u00e7amento no Estoque", + "Supplier": "Fornecedor", + "Supplier Address": "Endere\u00e7o do Fornecedor", + "Supplier Name": "Nome do Fornecedor", + "Territory": "Territ\u00f3rio", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Under AMC": "Sob CAM", + "Under Warranty": "Sob Garantia", + "Warehouse": "Almoxarifado", + "Warranty / AMC Details": "Garantia / Detalhes do CAM", + "Warranty Expiry Date": "Data de validade da garantia", + "Warranty Period (Days)": "Per\u00edodo de Garantia (Dias)", + "Yes": "Sim" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry/locale/pt-BR-doc.json b/stock/doctype/stock_entry/locale/pt-BR-doc.json new file mode 100644 index 0000000000..dc07f7435e --- /dev/null +++ b/stock/doctype/stock_entry/locale/pt-BR-doc.json @@ -0,0 +1,48 @@ +{ + "Amended From": "Corrigido De", + "As per Stock UOM": "Como UDM do Estoque", + "BOM No": "N\u00ba da LDM", + "Company": "Empresa", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Name": "Nome do cliente", + "Default Source Warehouse": "Almoxarifado da origem padr\u00e3o", + "Default Target Warehouse": "Almoxarifado de destino padr\u00e3o", + "Delivery Note No": "N\u00ba da Guia de Remessa", + "Get Items": "Obter itens", + "Get Stock and Rate": "Obter Estoque e Valor", + "Get valuation rate and available stock at source/target warehouse on mentioned posting date-time. If serialized item, please press this button after entering serial nos.": "Obter valoriza\u00e7\u00e3o e estoque dispon\u00edvel no almoxarifado de origem/destino na data e hora de postagem mencionada. Se for item serializado, pressione este bot\u00e3o depois de entrar os n\u00ba de s\u00e9rie.", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "Se marcado, os itens da LDM para a Sub-Montagem ser\u00e3o considerados para obter mat\u00e9rias-primas. Caso contr\u00e1rio, todos os itens da sub-montagem v\u00e3o ser tratados como mat\u00e9ria-prima.", + "Items": "Itens", + "MTN Details": "Detalhes da MTN", + "Manufacture/Repack": "Fabricar / Reembalar", + "Manufacturing Quantity": "Quantidade de fabrica\u00e7\u00e3o", + "Material Issue": "Emiss\u00e3o de material", + "Material Receipt": "Recebimento de material", + "Material Transfer": "Transfer\u00eancia de material", + "More Info": "Mais informa\u00e7\u00f5es", + "Posting Date": "Data da Postagem", + "Posting Time": "Hor\u00e1rio da Postagem", + "Production Order": "Ordem de Produ\u00e7\u00e3o", + "Project Name": "Nome do Projeto", + "Purchase Receipt No": "N\u00ba do Recibo de Compra", + "Purchase Return": "Devolu\u00e7\u00e3o de Compra", + "Purpose": "Finalidade", + "Reference": "Refer\u00eancia", + "Remarks": "Observa\u00e7\u00f5es", + "STE": "STO", + "Sales Invoice No": "N\u00ba da Nota Fiscal de Venda", + "Sales Return": "Retorno de Vendas", + "Select Print Heading": "Selecione o Cabe\u00e7alho de Impress\u00e3o", + "Series": "S\u00e9ries", + "Stock": "Estoque", + "Stock Entry": "Lan\u00e7amento no Estoque", + "Subcontract": "Subcontratar", + "Supplier": "Fornecedor", + "Supplier Address": "Endere\u00e7o do Fornecedor", + "Supplier Name": "Nome do Fornecedor", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", + "Use Multi-Level BOM": "Utilize LDM de V\u00e1rios N\u00edveis" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry/locale/pt-BR-py.json b/stock/doctype/stock_entry/locale/pt-BR-py.json new file mode 100644 index 0000000000..7631b88f51 --- /dev/null +++ b/stock/doctype/stock_entry/locale/pt-BR-py.json @@ -0,0 +1,25 @@ +{ + " is mandatory": "\u00e9 obrigat\u00f3rio(a)", + " or the BOM is cancelled or inactive": "ou a LDM \u00e9 cancelada ou inativa", + " should be same as that in ": "deve ser o(a) mesmo(a) que no(a)", + "' does not exists in ": "'N\u00e3o existe em", + "Atleast one warehouse is mandatory": "Pelo menos um almoxarifado \u00e9 obrigat\u00f3rio", + "For Item ": "Para o Item", + "Hence, maximum allowed Manufacturing Quantity": "Assim, a Quantidade de Fabrica\u00e7\u00e3o m\u00e1xima permitida", + "Item": "Item", + "Item: '": "Item: '", + "Manufacturing Quantity": "Quantidade de fabrica\u00e7\u00e3o", + "Material Request": "Pedido de material", + "Production Order": "Ordem de Produ\u00e7\u00e3o", + "Purpose must be one of ": "Finalidade deve ser um dos", + "Quantity already manufactured": "Quantidade j\u00e1 fabricada", + "Quantity should be equal to Manufacturing Quantity. ": "Quantidade deve ser igual \u00e0 Quantidade de Fabrica\u00e7\u00e3o.", + "Row #": "Linha #", + "Row # ": "Linha #", + "Source Warehouse": "Almoxarifado de origem", + "Source and Target Warehouse cannot be same": "O Almoxarifado de origem e destino n\u00e3o pode ser o mesmo", + "Target Warehouse": "Almoxarifado de destino", + "does not belong to BOM: ": "n\u00e3o pertence a LDM:", + "does not match": "n\u00e3o corresponde", + "of": "de" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry_detail/locale/pt-BR-doc.json b/stock/doctype/stock_entry_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..94bb871a22 --- /dev/null +++ b/stock/doctype/stock_entry_detail/locale/pt-BR-doc.json @@ -0,0 +1,23 @@ +{ + "Actual Qty (at source/target)": "Qtde Real (na origem / destino)", + "Amount": "Quantidade", + "BOM No": "N\u00ba da LDM", + "BOM No. for a Finished Good Item": "N\u00ba da LDM para um Item Bom Acabado", + "Batch No": "N\u00ba do Lote", + "Conversion Factor": "Fator de Convers\u00e3o", + "Description": "Descri\u00e7\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Material Request": "Pedido de material", + "Material Request Item": "Item de solicita\u00e7\u00e3o de material", + "Material Request used to make this Stock Entry": "Pedido de material usado para fazer essa entrada de material", + "Qty": "Qtde.", + "Qty as per Stock UOM": "Qtde. como por UDM de estoque", + "Serial No": "N\u00ba de S\u00e9rie", + "Source Warehouse": "Almoxarifado de origem", + "Stock": "Estoque", + "Stock Entry Detail": "Detalhe do lan\u00e7amento no Estoque", + "Stock UOM": "UDM do Estoque", + "Target Warehouse": "Almoxarifado de destino", + "UOM": "UDM", + "Valuation Rate": "Taxa de Avalia\u00e7\u00e3o" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger/locale/pt-BR-doc.json b/stock/doctype/stock_ledger/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3476c2bac7 --- /dev/null +++ b/stock/doctype/stock_ledger/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Stock": "Estoque", + "Stock Ledger": "Livro de Invent\u00e1rio" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger_entry/locale/pt-BR-doc.json b/stock/doctype/stock_ledger_entry/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5bc949310d --- /dev/null +++ b/stock/doctype/stock_ledger_entry/locale/pt-BR-doc.json @@ -0,0 +1,27 @@ +{ + "Actual Qty After Transaction": "Qtde Real Ap\u00f3s a Transa\u00e7\u00e3o", + "Actual Quantity": "Quantidade Real", + "Batch No": "N\u00ba do Lote", + "Company": "Empresa", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Incoming Rate": "Taxa de entrada", + "Is Cancelled": "\u00c9 cancelado", + "Item Code": "C\u00f3digo do Item", + "No": "N\u00e3o", + "Posting Date": "Data da Postagem", + "Posting Time": "Hor\u00e1rio da Postagem", + "Serial No": "N\u00ba de S\u00e9rie", + "Stock": "Estoque", + "Stock Ledger Entry": "Lan\u00e7amento do Livro de Invent\u00e1rio", + "Stock Queue (FIFO)": "Fila do estoque (PEPS)", + "Stock UOM": "UDM do Estoque", + "Stock Value": "Valor do Estoque", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "Valuation Rate": "Taxa de Avalia\u00e7\u00e3o", + "Voucher Detail No": "N\u00ba do Detalhe do comprovante", + "Voucher No": "N\u00ba do comprovante", + "Voucher Type": "Tipo de comprovante", + "Warehouse": "Almoxarifado", + "Warehouse Type": "Tipo de Almoxarifado", + "Yes": "Sim" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger_entry/locale/pt-BR-py.json b/stock/doctype/stock_ledger_entry/locale/pt-BR-py.json new file mode 100644 index 0000000000..b7010307a9 --- /dev/null +++ b/stock/doctype/stock_ledger_entry/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "User not allowed entry in the Warehouse": "Entrada do usu\u00e1rio n\u00e3o \u00e9 permitido no Armaz\u00e9m" +} \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/locale/pt-BR-doc.json b/stock/doctype/stock_reconciliation/locale/pt-BR-doc.json new file mode 100644 index 0000000000..07ef2a3292 --- /dev/null +++ b/stock/doctype/stock_reconciliation/locale/pt-BR-doc.json @@ -0,0 +1,12 @@ +{ + "Amended From": "Corrigido De", + "Posting Date": "Data da Postagem", + "Posting Time": "Hor\u00e1rio da Postagem", + "Reconciliation Data": "Dados de reconcilia\u00e7\u00e3o", + "Reconciliation HTML": "Reconcilia\u00e7\u00e3o HTML", + "Reconciliation JSON": "Reconcilia\u00e7\u00e3o JSON", + "Stock": "Estoque", + "Stock Reconciliation": "Reconcilia\u00e7\u00e3o de Estoque", + "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.": "Esta ferramenta ajuda a atualizar ou corrigir a quantidade e a valoriza\u00e7\u00e3o do estoque no sistema. Ela \u00e9 geralmente usada para sincronizar os valores do sistema e o que realmente existe em seus almoxarifados.", + "Upload HTML": "Carregar HTML" +} \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/locale/pt-BR-py.json b/stock/doctype/stock_reconciliation/locale/pt-BR-py.json new file mode 100644 index 0000000000..4faeaa1880 --- /dev/null +++ b/stock/doctype/stock_reconciliation/locale/pt-BR-py.json @@ -0,0 +1,7 @@ +{ + "As existing qty for item: ": "Como qtde. existente para o item:", + "Row # ": "Linha #", + "Serialized Item: '": "Item serializado: '", + "Sorry! We can only allow upto 100 rows for Stock Reconciliation.": "Desculpe! N\u00f3s s\u00f3 podemos permitir no m\u00e1ximo 100 linhas para Reconcilia\u00e7\u00e3o de Estoque.", + "Stock Reconciliation file not uploaded": "Arquivo da Reconcilia\u00e7\u00e3o de Estoque n\u00e3o carregado" +} \ No newline at end of file diff --git a/stock/doctype/stock_uom_replace_utility/locale/pt-BR-doc.json b/stock/doctype/stock_uom_replace_utility/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e9656d7beb --- /dev/null +++ b/stock/doctype/stock_uom_replace_utility/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Conversion Factor": "Fator de Convers\u00e3o", + "Current Stock UOM": "UDM de Estoque Atual", + "Item": "Item", + "New Stock UOM": "Nova UDM de estoque", + "Stock": "Estoque", + "Stock UOM Replace Utility": "Utilit\u00e1rio para Substituir UDM do Estoque", + "Update": "Atualizar" +} \ No newline at end of file diff --git a/stock/doctype/uom_conversion_detail/locale/pt-BR-doc.json b/stock/doctype/uom_conversion_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..e3af08bf4e --- /dev/null +++ b/stock/doctype/uom_conversion_detail/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Conversion Factor": "Fator de Convers\u00e3o", + "Stock": "Estoque", + "UOM": "UDM", + "UOM Conversion Detail": "Detalhe da Convers\u00e3o de UDM" +} \ No newline at end of file diff --git a/stock/doctype/valuation_control/locale/pt-BR-doc.json b/stock/doctype/valuation_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..34180c08eb --- /dev/null +++ b/stock/doctype/valuation_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Stock": "Estoque", + "Valuation Control": "Controle de Avalia\u00e7\u00e3o" +} \ No newline at end of file diff --git a/stock/doctype/warehouse/locale/pt-BR-doc.json b/stock/doctype/warehouse/locale/pt-BR-doc.json new file mode 100644 index 0000000000..3abf7b2302 --- /dev/null +++ b/stock/doctype/warehouse/locale/pt-BR-doc.json @@ -0,0 +1,25 @@ +{ + "A logical Warehouse against which stock entries are made.": "Um Almoxarifado l\u00f3gico contra o qual os lan\u00e7amentos de estoque s\u00e3o feitos.", + "Address Line 1": "Endere\u00e7o Linha 1", + "Address Line 2": "Endere\u00e7o Linha 2", + "City": "Cidade", + "Company": "Empresa", + "Email Id": "Endere\u00e7o de e-mail", + "For Reference Only.": "Apenas para refer\u00eancia.", + "If set, data entry is only allowed for specified users. Else, entry is allowed for all users with requisite permissions.": "Se definido, a entrada de dados s\u00f3 \u00e9 permitida para usu\u00e1rios especificados. Outra, a entrada \u00e9 permitida para todos os usu\u00e1rios com permiss\u00f5es necess\u00e1rias.", + "Merge": "Unir", + "Merge Warehouses": "Unir Almoxarifados", + "Merge With": "Unir com", + "Mobile No": "Telefone Celular", + "PIN": "PIN", + "Phone No": "N\u00ba de telefone", + "State": "Estado", + "Stock": "Estoque", + "This feature is for merging duplicate warehouses. It will replace all the links of this warehouse by \"Merge With\" warehouse. After merging you can delete this warehouse, as stock level for this warehouse will be zero.": "Este recurso \u00e9 para a fus\u00e3o almoxarifados duplicados. Ele ir\u00e1 substituir todos os links deste almoxarifado pelos do almoxarifado "Mesclar Com". Ap\u00f3s a fus\u00e3o voc\u00ea pode excluir este almoxarifado, pois o n\u00edvel de estoque para este almoxarifado vai ser zero.", + "Warehouse": "Almoxarifado", + "Warehouse Contact Info": "Informa\u00e7\u00f5es de Contato do Almoxarifado", + "Warehouse Detail": "Detalhe do Almoxarifado", + "Warehouse Name": "Nome do Almoxarifado", + "Warehouse Type": "Tipo de Almoxarifado", + "Warehouse Users": "Usu\u00e1rios do Warehouse" +} \ No newline at end of file diff --git a/stock/doctype/warehouse_user/locale/pt-BR-doc.json b/stock/doctype/warehouse_user/locale/pt-BR-doc.json new file mode 100644 index 0000000000..dcfbfa9988 --- /dev/null +++ b/stock/doctype/warehouse_user/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Stock": "Estoque", + "User": "Usu\u00e1rio", + "Warehouse User": "Usu\u00e1rio Armaz\u00e9m" +} \ No newline at end of file diff --git a/stock/locale/pt-BR-py.json b/stock/locale/pt-BR-py.json new file mode 100644 index 0000000000..0bf350cad0 --- /dev/null +++ b/stock/locale/pt-BR-py.json @@ -0,0 +1,7 @@ +{ + "Item": "Item", + "Please check": "Por favor, verifique", + "is a cancelled Item": "\u00e9 um Item cancelado", + "is not a Stock Item": "n\u00e3o \u00e9 um Item de Estoque", + "reached its end of life on": "chegou ao fim de vida em" +} \ No newline at end of file diff --git a/stock/module_def/stock/locale/pt-BR-doc.json b/stock/module_def/stock/locale/pt-BR-doc.json new file mode 100644 index 0000000000..1d2b2482e5 --- /dev/null +++ b/stock/module_def/stock/locale/pt-BR-doc.json @@ -0,0 +1,22 @@ +{ + "A Product or a Service that is bought, sold or kept in stock.": "Um Produto ou um Pervi\u00e7o que \u00e9 comprado, vendido ou mantido em estoque.", + "A logical Warehouse against which stock entries are made.": "Um Almoxarifado l\u00f3gico contra o qual os lan\u00e7amentos de estoque s\u00e3o feitos.", + "Distinct unit of an Item": "Unidade distinta de um item", + "Featured Item in Item Group": "Item destacado no Grupo de Itens", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "Para a comodidade dos clientes, estes c\u00f3digos podem ser usados \u200b\u200bem formatos de impress\u00e3o, como Notas Fiscais e Guias de Remessa", + "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.": "Gerar guias de remessa de pacotes a serem entregues. Usado para notificar o n\u00famero do pacote, o conte\u00fado do pacote e seu peso.", + "Item-Wise Price List": "Lista de Pre\u00e7os relativa ao Item", + "Ordered Items To Be Delivered": "Itens encomendados a serem entregues", + "Purchase Order Items To Be Received": "Comprar itens para ser recebido", + "Serial No Service Contract Expiry": "Vencimento do Contrato de Servi\u00e7o com N\u00ba de S\u00e9rie", + "Serial No Status": "Estado do N\u00ba de S\u00e9rie", + "Serial No Warranty Expiry": "Vencimento da Garantia com N\u00ba de S\u00e9rie", + "Stock Ageing": "Envelhecimento do Estoque", + "Stock Analytics": "An\u00e1lise do Estoque", + "Stock Balance": "Balan\u00e7o de Estoque", + "Stock Home": "In\u00edcio de Estoque", + "Stock Ledger": "Livro de Invent\u00e1rio", + "Stock Level": "N\u00edvel de Estoque", + "Table for Item that will be shown in Web Site": "Tabela para Item que ser\u00e1 mostrado no site", + "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.": "Esta ferramenta ajuda a atualizar ou corrigir a quantidade e a valoriza\u00e7\u00e3o do estoque no sistema. Ela \u00e9 geralmente usada para sincronizar os valores do sistema e o que realmente existe em seus almoxarifados." +} \ No newline at end of file diff --git a/stock/page/stock_home/locale/pt-BR-js.json b/stock/page/stock_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..14466b890d --- /dev/null +++ b/stock/page/stock_home/locale/pt-BR-js.json @@ -0,0 +1,60 @@ +{ + "All Products or Services.": "Todos os Produtos ou Servi\u00e7os.", + "Analytics": "Anal\u00edtica", + "Batch": "Lote", + "Batch (lot) of an Item.": "Lote de um item.", + "Brand": "Marca", + "Brand master.": "Cadastro de Marca.", + "Change UOM for an Item.": "Alterar UDM de um item.", + "Delivery (shipment) to customers.": "Entrega (embarque) para os clientes.", + "Delivery Note": "Guia de Remessa", + "Distribute transport overhead across items.": "Distribuir o custo de transporte atrav\u00e9s dos itens.", + "Documents": "Documentos", + "Goods received from Suppliers.": "Mercadorias recebidas de fornecedores.", + "Incoming quality inspection.": "Inspe\u00e7\u00e3o de qualidade de entrada.", + "Installation Note": "Nota de Instala\u00e7\u00e3o", + "Installation record for a Serial No.": "Registro de instala\u00e7\u00e3o de um n\u00ba de s\u00e9rie", + "Item": "Item", + "Item Group": "Grupo de Itens", + "Item classification.": "Classifica\u00e7\u00e3o do Item.", + "Item-Wise Price List": "Lista de Pre\u00e7os relativa ao Item", + "Landed Cost Wizard": "Assistente de Custo de Desembarque", + "Main Reports": "Relat\u00f3rios principais", + "Manage sales or purchase returns": "Gerenciar devolu\u00e7\u00f5es de compra e venda", + "Masters": "Cadastros", + "Material Request": "Pedido de material", + "Multiple Item Prices": "Pre\u00e7os de m\u00faltiplos itens", + "Ordered Items To Be Delivered": "Itens encomendados a serem entregues", + "Packing Slip": "Guia de Remessa", + "Price List": "Lista de Pre\u00e7os", + "Purchase Order Items To Be Received": "Comprar itens para ser recebido", + "Purchase Receipt": "Recibo de Compra", + "Quality Inspection": "Inspe\u00e7\u00e3o de Qualidade", + "Reports": "Relat\u00f3rios", + "Request Material for Transfer or Purchase.": "Material para solicitar transfer\u00eancia ou compra.", + "Sales and Purchase Return Tool": "Ferramenta de retorno de compra e venda", + "Serial No": "N\u00ba de S\u00e9rie", + "Serial No Service Contract Expiry": "Vencimento do Contrato de Servi\u00e7o com N\u00ba de S\u00e9rie", + "Serial No Status": "Estado do N\u00ba de S\u00e9rie", + "Serial No Warranty Expiry": "Vencimento da Garantia com N\u00ba de S\u00e9rie", + "Setup": "Configura\u00e7\u00e3o", + "Single unit of an Item.": "Unidade \u00fanica de um item.", + "Split Delivery Note into packages.": "Dividir Guia de Remessa em pacotes.", + "Stock Ageing": "Envelhecimento do Estoque", + "Stock Analytics": "An\u00e1lise do Estoque", + "Stock Balance": "Balan\u00e7o de Estoque", + "Stock Entry": "Lan\u00e7amento no Estoque", + "Stock Ledger": "Livro de Invent\u00e1rio", + "Stock Level": "N\u00edvel de Estoque", + "Stock Reconciliation": "Reconcilia\u00e7\u00e3o de Estoque", + "Tools": "Ferramentas", + "Transfer stock from one warehouse to another.": "Transferir o estoque de um almoxarifado para outro.", + "Types of warehouse": "Tipos de almoxarifado", + "UOM Replace Utility": "Utilit\u00e1rio para Substituir UDM", + "Unit of Measure": "Unidade de Medida", + "Upload stock balance via csv.": "Carregar saldo de estoque a partir de um arquivo CSV.", + "Warehouse": "Almoxarifado", + "Warehouse Type": "Tipo de Almoxarifado", + "Where items are stored.": "Onde os itens s\u00e3o armazenados.", + "e.g. Kg, Unit, Nos, m": "por exemplo, kg, Unidade, n\u00ba, m" +} \ No newline at end of file diff --git a/support/doctype/customer_issue/locale/pt-BR-doc.json b/support/doctype/customer_issue/locale/pt-BR-doc.json new file mode 100644 index 0000000000..12f967738a --- /dev/null +++ b/support/doctype/customer_issue/locale/pt-BR-doc.json @@ -0,0 +1,50 @@ +{ + "AMC Expiry Date": "Data de Validade do CAM", + "Address": "Endere\u00e7o", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "CI/2010-2011/": "CI/2010-2011 /", + "Cancelled": "Cancelado", + "Closed": "Fechado", + "Company": "Empresa", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Group": "Grupo de Clientes", + "Customer Issue": "Quest\u00e3o do Cliente", + "Customer Name": "Nome do cliente", + "Description": "Descri\u00e7\u00e3o", + "Fiscal Year": "Exerc\u00edcio fiscal", + "From Company": "Da Empresa", + "Issue": "Quest\u00e3o", + "Issue Date": "Data da Quest\u00e3o", + "Issue Details": "Detalhes da Quest\u00e3o", + "Item Code": "C\u00f3digo do Item", + "Item Name": "Nome do Item", + "Item, Warranty, AMC (Annual Maintenance Contract) details will be automatically fetched when Serial Number is selected.": "Detalhes do Item, Garantia, CAM (Contrato Anual de Manuten\u00e7\u00e3o) ser\u00e3o carregados automaticamente quando o n\u00famero de s\u00e9rie for selecionado.", + "Mobile No": "Telefone Celular", + "More Info": "Mais informa\u00e7\u00f5es", + "Naming Series": "S\u00e9ries nomeadas", + "Open": "Abrir", + "Out of AMC": "Fora do CAM", + "Out of Warranty": "Fora de Garantia", + "Raised By": "Levantadas por", + "Resolution": "Resolu\u00e7\u00e3o", + "Resolution Date": "Data da Resolu\u00e7\u00e3o", + "Resolution Details": "Detalhes da Resolu\u00e7\u00e3o", + "Resolved By": "Resolvido por", + "Serial No": "N\u00ba de S\u00e9rie", + "Service Address": "Endere\u00e7o de Servi\u00e7o", + "Status": "Estado", + "Support": "Suporte", + "Territory": "Territ\u00f3rio", + "To assign this issue, use the \"Assign\" button in the sidebar.": "Para atribuir esse problema a algu\u00e9m, use o bot\u00e3o "Atribuir" na barra lateral.", + "Under AMC": "Sob CAM", + "Under Warranty": "Sob Garantia", + "Warranty / AMC Status": "Garantia / Estado do CAM", + "Warranty Expiry Date": "Data de validade da garantia", + "Work In Progress": "Trabalho em andamento" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule/locale/pt-BR-doc.json b/support/doctype/maintenance_schedule/locale/pt-BR-doc.json new file mode 100644 index 0000000000..30e80ed56d --- /dev/null +++ b/support/doctype/maintenance_schedule/locale/pt-BR-doc.json @@ -0,0 +1,30 @@ +{ + "Address": "Endere\u00e7o", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Cancelled": "Cancelado", + "Company": "Empresa", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Person": "Pessoa de Contato", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Details": "Detalhes do Cliente", + "Customer Group": "Grupo de Clientes", + "Customer Name": "Nome do cliente", + "Draft": "Rascunho", + "Generate Schedule": "Gerar Agenda", + "Get Items": "Obter itens", + "Items": "Itens", + "Maintenance Schedule": "Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Maintenance Schedule Detail": "Detalhe da Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Maintenance Schedule Item": "Item da Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Mobile No": "Telefone Celular", + "Sales Order No": "N\u00ba da Ordem de Venda", + "Schedule": "Agendar", + "Status": "Estado", + "Submitted": "Enviado", + "Support": "Suporte", + "Territory": "Territ\u00f3rio", + "Transaction Date": "Data da Transa\u00e7\u00e3o" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule_detail/locale/pt-BR-doc.json b/support/doctype/maintenance_schedule_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..41d6137c8e --- /dev/null +++ b/support/doctype/maintenance_schedule_detail/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "Actual Date": "Data Real", + "Incharge Name": "Nome do Respons\u00e1vel", + "Item Code": "C\u00f3digo do Item", + "Item Name": "Nome do Item", + "Maintenance Schedule Detail": "Detalhe da Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Scheduled Date": "Data Agendada", + "Serial No": "N\u00ba de S\u00e9rie", + "Support": "Suporte" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule_item/locale/pt-BR-doc.json b/support/doctype/maintenance_schedule_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5482a855ef --- /dev/null +++ b/support/doctype/maintenance_schedule_item/locale/pt-BR-doc.json @@ -0,0 +1,20 @@ +{ + "Against Docname": "Contra Docname", + "Description": "Descri\u00e7\u00e3o", + "End Date": "Data final", + "Half Yearly": "Semestral", + "Incharge Name": "Nome do Respons\u00e1vel", + "Item Code": "C\u00f3digo do Item", + "Item Name": "Nome do Item", + "Maintenance Schedule Item": "Item da Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Monthly": "Mensal", + "No of Visits": "N\u00ba de Visitas", + "Periodicity": "Periodicidade", + "Quarterly": "Trimestral", + "Random": "Aleat\u00f3rio", + "Serial No": "N\u00ba de S\u00e9rie", + "Start Date": "Data de In\u00edcio", + "Support": "Suporte", + "Weekly": "Semanal", + "Yearly": "Anual" +} \ No newline at end of file diff --git a/support/doctype/maintenance_visit/locale/pt-BR-doc.json b/support/doctype/maintenance_visit/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5da87a6cfc --- /dev/null +++ b/support/doctype/maintenance_visit/locale/pt-BR-doc.json @@ -0,0 +1,38 @@ +{ + "Address": "Endere\u00e7o", + "Amended From": "Corrigido De", + "Amendment Date": "Data da Corre\u00e7\u00e3o", + "Breakdown": "Colapso", + "Company": "Empresa", + "Completion Status": "Estado de Conclus\u00e3o", + "Contact": "Contato", + "Contact Email": "E-mail do Contato", + "Contact Info": "Informa\u00e7\u00f5es para Contato", + "Contact Person": "Pessoa de Contato", + "Customer": "Cliente", + "Customer Address": "Endere\u00e7o do cliente", + "Customer Details": "Detalhes do Cliente", + "Customer Feedback": "Coment\u00e1rio do Cliente", + "Customer Group": "Grupo de Clientes", + "Customer Issue No": "N\u00ba da Quest\u00e3o do Cliente", + "Customer Name": "Nome do cliente", + "Fiscal Year": "Exerc\u00edcio fiscal", + "Fully Completed": "Totalmente conclu\u00edda", + "Get Items": "Obter itens", + "Maintenance Date": "Data de manuten\u00e7\u00e3o", + "Maintenance Details": "Detalhes da manuten\u00e7\u00e3o", + "Maintenance Schedule": "Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Maintenance Time": "Tempo da manuten\u00e7\u00e3o", + "Maintenance Type": "Tipo de manuten\u00e7\u00e3o", + "Maintenance Visit": "Visita de manuten\u00e7\u00e3o", + "Maintenance Visit Purpose": "Finalidade da visita de manuten\u00e7\u00e3o", + "Mobile No": "Telefone Celular", + "More Info": "Mais informa\u00e7\u00f5es", + "Partially Completed": "Parcialmente conclu\u00edda", + "Sales Order No": "N\u00ba da Ordem de Venda", + "Scheduled": "Agendado", + "Status": "Estado", + "Support": "Suporte", + "Territory": "Territ\u00f3rio", + "Unscheduled": "Sem agendamento" +} \ No newline at end of file diff --git a/support/doctype/maintenance_visit_purpose/locale/pt-BR-doc.json b/support/doctype/maintenance_visit_purpose/locale/pt-BR-doc.json new file mode 100644 index 0000000000..48f3a6f407 --- /dev/null +++ b/support/doctype/maintenance_visit_purpose/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Against Document Detail No": "Contra Detalhe do Documento n\u00ba ", + "Against Document No": "Contra Documento n\u00ba", + "Description": "Descri\u00e7\u00e3o", + "Document Type": "Tipo de Documento", + "Item Code": "C\u00f3digo do Item", + "Item Name": "Nome do Item", + "Maintenance Visit Purpose": "Finalidade da visita de manuten\u00e7\u00e3o", + "Serial No": "N\u00ba de S\u00e9rie", + "Service Person": "Pessoa de Servi\u00e7o", + "Support": "Suporte", + "Work Done": "Trabalho feito" +} \ No newline at end of file diff --git a/support/doctype/newsletter/locale/pt-BR-doc.json b/support/doctype/newsletter/locale/pt-BR-doc.json new file mode 100644 index 0000000000..4073fe5642 --- /dev/null +++ b/support/doctype/newsletter/locale/pt-BR-doc.json @@ -0,0 +1,32 @@ +{ + "A Lead with this email id should exist": "Um Prospecto com esse endere\u00e7o de e-mail deve existir", + "Check how the newsletter looks in an email by sending it to your email.": "Verifique como a newsletter \u00e9 exibido em um e-mail enviando-o para o seu e-mail.", + "Comma separated list of email addresses": "Lista separada por v\u00edrgulas de endere\u00e7os de e-mail", + "Contact": "Contato", + "Contact Type": "Tipo de Contato", + "Create and Send Newsletters": "Criar e enviar Newsletters", + "Custom": "Personalizado", + "Customer": "Cliente", + "Email Sent?": "E-mail enviado?", + "If specified, send the newsletter using this email address": "Se especificado, enviar a newsletter usando esse endere\u00e7o de e-mail", + "Lead": "Prospecto", + "Lead Source": "Chumbo Fonte", + "Lead Status": "Chumbo Estado", + "Message": "Mensagem", + "NL-": "NL-", + "Naming Series": "S\u00e9ries nomeadas", + "Newsletter": "Boletim informativo", + "Newsletter Content": "Conte\u00fado do boletim", + "Newsletter Status": "Estado do boletim", + "Select who you want to send this newsletter to": "Selecione para quem voc\u00ea deseja enviar esta newsletter", + "Send From": "Enviar de", + "Send To": "Enviar para", + "Send To Type": "Enviar para Digite", + "Send to this list": "Enviar para esta lista", + "Subject": "Assunto", + "Supplier": "Fornecedor", + "Support": "Suporte", + "Test": "Teste", + "Test Email Id": "Endere\u00e7o de Email de Teste", + "Test the Newsletter": "Newsletter de Teste" +} \ No newline at end of file diff --git a/support/doctype/newsletter/locale/pt-BR-py.json b/support/doctype/newsletter/locale/pt-BR-py.json new file mode 100644 index 0000000000..5cf443bc6d --- /dev/null +++ b/support/doctype/newsletter/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "Please save the Newsletter before sending.": "Por favor, salve o boletim antes de enviar." +} \ No newline at end of file diff --git a/support/doctype/support_ticket/locale/pt-BR-doc.json b/support/doctype/support_ticket/locale/pt-BR-doc.json new file mode 100644 index 0000000000..88aad07c09 --- /dev/null +++ b/support/doctype/support_ticket/locale/pt-BR-doc.json @@ -0,0 +1,28 @@ +{ + "Additional Info": "Informa\u00e7\u00f5es Adicionais", + "Closed": "Fechado", + "Contact": "Contato", + "Content Type": "Tipo de Conte\u00fado", + "Customer": "Cliente", + "Customer Name": "Nome do cliente", + "Description": "Descri\u00e7\u00e3o", + "File List": "Lista de Arquivos", + "First Responded On": "Primeira resposta em", + "Hold": "Segurar", + "Lead": "Prospecto", + "Naming Series": "S\u00e9ries nomeadas", + "Open": "Abrir", + "Opening Date": "Data de abertura", + "Opening Time": "Hor\u00e1rio de abertura", + "Raised By (Email)": "Levantadas por (e-mail)", + "Resolution Date": "Data da Resolu\u00e7\u00e3o", + "Resolution Details": "Detalhes da Resolu\u00e7\u00e3o", + "SUP": "SUP", + "Status": "Estado", + "Subject": "Assunto", + "Support": "Suporte", + "Support Ticket": "Ticket de Suporte", + "Thread HTML": "T\u00f3pico HTML", + "To Reply": "Para Responder", + "Waiting for Customer": "\u00c0 espera de Cliente" +} \ No newline at end of file diff --git a/support/module_def/support/locale/pt-BR-doc.json b/support/module_def/support/locale/pt-BR-doc.json new file mode 100644 index 0000000000..35c85cea84 --- /dev/null +++ b/support/module_def/support/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Create and Send Newsletters": "Criar e enviar Newsletters", + "Support Analytics": "An\u00e1lise do Suporte", + "Support Home": "In\u00edcio de Suporte" +} \ No newline at end of file diff --git a/support/page/support_home/locale/pt-BR-js.json b/support/page/support_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..a25c598717 --- /dev/null +++ b/support/page/support_home/locale/pt-BR-js.json @@ -0,0 +1,23 @@ +{ + "Analytics": "Anal\u00edtica", + "Communication": "Comunica\u00e7\u00e3o", + "Communication log.": "Log de Comunica\u00e7\u00e3o.", + "Customer Issue": "Quest\u00e3o do Cliente", + "Customer Issue against a Serial No (warranty).": "Quest\u00e3o do Cliente contra um N\u00ba de S\u00e9rie (garantia).", + "Documents": "Documentos", + "Email Settings": "Configura\u00e7\u00f5es de e-mail", + "Maintenance Schedule": "Programa\u00e7\u00e3o da Manuten\u00e7\u00e3o", + "Maintenance Visit": "Visita de manuten\u00e7\u00e3o", + "Masters": "Cadastros", + "Newsletter": "Boletim informativo", + "Plan for scheduled maintenance contracts.": "Plano para contratos de manuten\u00e7\u00e3o programados.", + "Send Newsletters to your contacts, leads.": "Enviar Newsletters aos seus contatos e prospectos.", + "Serial No": "N\u00ba de S\u00e9rie", + "Setup": "Configura\u00e7\u00e3o", + "Setup to pull emails from support email account": "Configura\u00e7\u00e3o para puxar e-mails da conta do e-mail de suporte", + "Single unit of an Item.": "Unidade \u00fanica de um item.", + "Support Analytics": "An\u00e1lise do Suporte", + "Support Ticket": "Ticket de Suporte", + "Support queries from customers via email or website.": "Consultas ao Suporte de clientes via e-mail ou site.", + "Visit report for maintenance call.": "Relat\u00f3rio da visita da chamada de manuten\u00e7\u00e3o." +} \ No newline at end of file diff --git a/translations/pt-BR.csv b/translations/pt-BR.csv new file mode 100644 index 0000000000..fa5f5c09a5 --- /dev/null +++ b/translations/pt-BR.csv @@ -0,0 +1,3278 @@ + (Half Day),(Meio Dia) + against same operation,contra a mesma operação + by Role ,por Função + cannot be 0,não pode ser 0 + does not belong to the company: ,não pertence à empresa: + has been freezed. \ Only Accounts Manager can do transaction against this account,foi congelado. \ Apenas Gerente de Contas pode fazer transação contra essa conta +" is less than equals to zero in the system, \ valuation rate is mandatory for this item","é menor do que é igual a zero no sistema, \ taxa de avaliação é obrigatório para esse item" + is mandatory,é obrigatório(a) + is mandatory for GL Entry,é obrigatória para a entrada GL + is not a ledger,não é um livro + is not active,não está ativo + is not set,não está definido + is now the default Fiscal Year. \ Please refresh your browser for the change to take effect.,"é agora o padrão de Ano Fiscal. \ Por favor, atualize seu navegador para que a alteração tenha efeito." + or the BOM is cancelled or inactive,ou a LDM é cancelada ou inativa + should be same as that in ,deve ser o(a) mesmo(a) que no(a) + will become ,ficará +"""Company History""","Histórico da Empresa" +"""Team Members"" or ""Management""","Membros da Equipe" ou "Gerenciamento" +% Delivered,Entregue % +% Amount Billed,Valor faturado % +% Billed,Faturado % +% Completed,% Concluído +% Installed,Instalado % +% Ordered,Pedido % +% Received,Recebido % +% of materials billed against this Delivery Note,% de materiais faturados contra esta Guia de Remessa +% of materials billed against this Purchase Order.,% de materiais faturado contra esta Ordem de Compra. +% of materials billed against this Purchase Receipt,% de materiais faturados contra este Recibo de Compra +% of materials billed against this Sales Order,% de materiais faturados contra esta Ordem de Venda +% of materials delivered against this Delivery Note,% de materiais entregues contra esta Guia de Remessa +% of materials delivered against this Sales Order,% de materiais entregues contra esta Ordem de Venda +% of materials ordered against this Material Request,% De materiais encomendados contra este pedido se +% of materials ordered against this Purchase Requisition,% de materiais encomendados contra este Pedido de Compra +% of materials received against this Purchase Order,% de materiais recebidos contra esta Ordem de Compra +"' can not be managed using Stock Reconciliation.\ You can add/delete Serial No directly, \ to modify stock of this item.","'Não pode ser gerido através da Reconciliação. \ Você pode adicionar / excluir Serial Não diretamente, \ para modificar o balanço deste item." +' does not exists in ,'Não existe em +* Will be calculated in the transaction.,* Será calculado na transação. +"**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.To distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**","Distribuição ** ** Orçamento ajuda a distribuir o seu orçamento através meses se tiver sazonalidade na sua business.To distribuir um orçamento usando essa distribuição, definir esta distribuição do orçamento ** ** ** no Centro de Custo **" +**Currency** Master,Cadastro de **Moeda** +**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**Ano Fiscal** representa um Exercício. Todos os lançamentos contábeis e outras transações importantes são monitorados contra o **Ano Fiscal**. +1 Currency = [?] FractionFor e.g. 1 USD = 100 Cent,"1 Moeda = [?] FractionFor por exemplo, 1 USD = 100 Cent" +1. To maintain the customer wise item code and to make them searchable based on their code use this option,1. Para manter o código de item do cliente e para torná-los pesquisáveis ​​com base em seu código use esta opção +12px,12px +13px,13px +14px,14px +15px,15px +16px,16px +2 days ago,Há 2 dias +: It is linked to other active BOM(s),: Está ligado a outra(s) LDM(s) ativa(s) +: Mandatory for a Recurring Invoice.,: Obrigatório para uma Fatura Recorrente. +"To manage Customer Groups, click here","Para gerenciar Grupos de Clientes, clique aqui" +"Manage Item Groups","Gerenciar Grupos de Itens" +"To manage Territory, click here","Para gerenciar Território, clique aqui" +"To manage Territory, click here","Para gerenciar Território, clique aqui" +"To manage Territory, click here","Para gerenciar Território, clique aqui" +"\
  • field:[fieldname] - By Field\
  • naming_series: - By Naming Series (field called naming_series must be present\
  • eval:[expression] - Evaluate an expression in python (self is doc)\
  • Prompt - Prompt user for a name\
  • [series] - Series by prefix (separated by a dot); for example PRE.#####\')"">Naming Options","\
  • field:[fieldname] - By Field\
  • naming_series: - By Naming Series (field called naming_series must be present\
  • eval:[expression] - Evaluate an expression in python (self is doc)\
  • Prompt - Prompt user for a name\
  • [series] - Series by prefix (separated by a dot); for example PRE.#####\')"">Opções de nomeação" +Cancel allows you change Submitted documents by cancelling them and amending them.,Cancelar permite alterar documentos enviados cancelando ou corrigindo-os. +"To setup, please go to Setup > Naming Series","Para configurar, por favor, vá para Configuração > Séries Nomeadas" +A,A +A Customer exists with same name,Um cliente existe com mesmo nome +A Lead with this email id should exist,Um Prospecto com esse endereço de e-mail deve existir +"A Product or a Service that is bought, sold or kept in stock.","Um Produto ou um Perviço que é comprado, vendido ou mantido em estoque." +A Supplier exists with same name,Um Fornecedor existe com mesmo nome +A logical Warehouse against which stock entries are made.,Um Almoxarifado lógico contra o qual os lançamentos de estoque são feitos. +A new popup will open that will ask you to select further conditions.,Um novo pop-up será aberto que vai pedir para você selecionar outras condições. +A symbol for this currency. For e.g. $,Um símbolo para esta moeda. Por exemplo: $ +A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Um distribuidor terceirizado / negociante / agente comissionado / revendedor que vende os produtos da empresas por uma comissão. +A user can have multiple values for a property.,Um usuário pode ter vários valores para uma propriedade. +A+,A+ +A-,A- +AB+,AB+ +AB-,AB- +AMC Expiry Date,Data de Validade do CAM +ATT,ATT +Abbr,Abrev +About,Sobre +About Us Settings,Configurações do Quem Somos +About Us Team Member,Sobre Membro da Equipe +Above Value,Acima de Valor +Absent,Ausente +Acceptance Criteria,Critérios de Aceitação +Accepted,Aceito +Accepted Quantity,Quantidade Aceita +Accepted Warehouse,Almoxarifado Aceito +Account,Conta +Account Balance,Saldo em Conta +Account Details,Detalhes da Conta +Account Head,Conta +Account Id,Id da Conta +Account Info,Informações da Conta +Account Name,Nome da Conta +Account Type,Tipo de Conta +Account: ,Conta: +"Accounting entry frozen up to this date, nobody can do / modify entry except authorized person","Lançamento contábil congelado até a presente data, ninguém pode fazer / modificar um lançamento, exceto pessoas autorizadas" +Accounting journal entries.,Lançamentos no livro Diário. +Accounts,Contas +Accounts Browser,Navegador de Contas +Accounts Frozen Upto,Contas congeladas até +Accounts Home,Início de Contas +Accounts Payable,Contas a Pagar +Accounts Receivable,Contas a Receber +Action,Ação +Action Detail,Detalhe da ação +Action html,Ação html +Active,Ativo +Active: Will extract emails from ,Ativo: E-mails serão extraídos de +Activity,Atividade +Activity Log,Log de Atividade +Activity Name,Nome da Atividade +Activity Type,Tipo da Atividade +Actual,Real +Actual Amount,Valor Real +Actual Budget,Orçamento Real +Actual Completion Date,Data de Conclusão Real +Actual Date,Data Real +Actual End Date,Data Final Real +Actual End Time,Tempos Final Real +Actual Qty,Qtde Real +Actual Qty (at source/target),Qtde Real (na origem / destino) +Actual Qty After Transaction,Qtde Real Após a Transação +Actual Quantity,Quantidade Real +Actual Start Date,Data de Início Real +Actual Start Time,Horário de Início Real +Add,Adicionar +Add / Edit Taxes and Charges,Adicionar / Editar Impostos e Encargos +Add A New Rule,Adicionar uma Nova Regra +Add A Property,Adicione uma Propriedade +Add Attachments,Adicionar Anexos +Add Bookmark,Adicionar marcadores +Add CSS,Adicionar CSS +Add Column,Adicionar Coluna +Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Adicionar ID do Google Analytics: ex. UA-89XXX57-1. Por favor, procure ajuda no Google Analytics para obter mais informações." +Add Message,Adicionar Mensagem +Add New Permission Rule,Adicionar Nova Regra de Permissão +Add Reply,Adicione Resposta +Add Terms and Conditions for the Material Request. You can also prepare a Terms and Conditions Master and use the Template,Adicione Termos e Condições para a Solicitação de Material. Você também pode preparar um Termos e Condições mestre e usar o modelo +Add Terms and Conditions for the Purchase Receipt. You can also prepare a Terms and Conditions Master and use the Template.,Adicione Termos e Condições para o Recibo de Compra. Você também pode preparar um cadastro de Termos e Condições e usar o Modelo. +Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template,Adicione Termos e Condições para o Pedido de Compra. Você também pode preparar um cadastro de Termos e Condições e usar o Modelo +"Add Terms and Conditions for the Quotation like Payment Terms, Validity of Offer etc. You can also prepare a Terms and Conditions Master and use the Template","Adicione Termos e Condições para a Cotação como Condições de Pagamento, Validade da Oferta e etc. Você também pode preparar um cadastro de Termos e Condições e usar o Modelo" +Add code as <script>,Adicionar código como <script> +Add custom code to forms,Adicionar código personalizado aos formulários +Add fields to forms,Adicionar campos aos formulários +Add headers for standard print formats,Adicionar cabeçalhos para formatos de impressão padrão +Add or Deduct,Adicionar ou Deduzir +Add rows to set annual budgets on Accounts.,Adicionar linhas para definir orçamentos anuais nas Contas. +Add to To Do,Adicionar à Lista de Tarefas +Add to To Do List of,Adicionar à Lista de Tarefas de +Add/Remove Recipients,Adicionar / Remover Destinatários +"Add/remove users, set roles, passwords etc","Adicionar / remover usuários, definir funções, senhas etc" +Additional Columns,Colunas Adicionais +Additional Conditions,Condições Adicionais +Additional Info,Informações Adicionais +Additional Tables,Tabelas Adicionais +Address,Endereço +Address & Contacts,Endereço e Contatos +Address Desc,Descrição do Endereço +Address Details,Detalhes do Endereço +Address HTML,Endereço HTML +Address Line 1,Endereço Linha 1 +Address Line 2,Endereço Linha 2 +Address Line1,Endereço Linha 1 +Address Line2,Endereço Linha 2 +Address Title,Título do Endereço +Address Type,Tipo de Endereço +Address and other legal information you may want to put in the footer.,Endereço e outras informações legais que você possa querer colocar no rodapé. +Address to be displayed on the Contact Page,O endereço a ser exibida na Página de Contato +Adds a custom field to a DocType,Adiciona um campo personalizado em um DocType +Adds a custom script (client or server) to a DocType,Adiciona um script personalizado (cliente ou servidor) em um DocType +Advance Amount,Quantidade Antecipada +Advance amount,Valor do adiantamento +Advanced Scripting,Scripts Avançados +Advanced Settings,Configurações Avançadas +Advances,Avanços +Advertisement,Anúncio +After Sale Installations,Instalações Pós-Venda +"After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field","Depois de cancelar o Pedido de Compra, uma caixa de diálogo irá pedir-lhe a razão para o cancelamento que será refletido neste campo" +Against,Contra +Against Account,Contra Conta +Against Docname,Contra Docname +Against Doctype,Contra Doctype +Against Document Date,Contra Data do Documento +Against Document Detail No,Contra Detalhe do Documento nº +Against Document No,Contra Documento nº +Against Expense Account,Contra a Conta de Despesas +Against Income Account,Contra a Conta de Rendimentos +Against Journal Voucher,Contra Comprovante do livro Diário +Against Purchase Invoice,Contra a Nota Fiscal de Compra +Against Sales Invoice,Contra a Nota Fiscal de Venda +Against Voucher,Contra Comprovante +Against Voucher Type,Contra Tipo de Comprovante +Agent,Agente +"Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. The package **Item** will have ""Is Stock Item"" as ""No"" and ""Is Sales Item"" as ""Yes"".For Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.Note: BOM = Bill of Materials","Grupo agregado de Itens ** ** em outro item **. ** Isso é útil se você está empacotando um certo ** ** Itens em um pacote e você manter o estoque dos itens embalados ** ** e não agregar o item **. ** O pacote ** ** item terá "é o item da" como "Não" e "é o item de vendas" como "Sim", por exemplo:. Se você está vendendo laptops e mochilas separadamente e têm um preço especial se o cliente compra tanto , então o Laptop Backpack + será uma nova Vendas BOM Item.Note: BOM = Bill of Materials" +Aging Date,Data de Envelhecimento +All Addresses.,Todos os Endereços. +All Contact,Todo Contato +All Contacts.,Todos os contatos. +All Customer Contact,Todo Contato do Cliente +All Day,Dia de Todos os +All Employee (Active),Todos os Empregados (Ativos) +All Lead (Open),Todos Prospectos (Abertos) +All Products or Services.,Todos os Produtos ou Serviços. +All Sales Partner Contact,Todo Contato de Parceiros de Vendas +All Sales Person,Todos os Vendedores +All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Todas as Transações de Vendas podem ser marcadas contra diversos **Vendedores** de modo que você possa definir e monitorar metas. +All Supplier Contact,Todo Contato de Fornecedor +All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.,Todas as datas de comparecimento selecionadas entre a Data Inicial de Comparecimento e a Data Final de Comparecimento virão no modelo com a lista de funcionários. +"All export related fields like currency, conversion rate, export total, export grand total etc are available in
    Delivery Note, POS, Quotation, Sales Invoice, Sales Order etc.","Todos os campos de exportação relacionados como moeda, taxa de conversão, o total de exportação, etc exportação de total estão disponíveis em
    Nota de Entrega, POS, cotação, nota fiscal de venda, Ordem de vendas etc" +"All import related fields like currency, conversion rate, import total, import grand total etc are available in
    Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Todos os campos de importação relacionados como moeda, taxa de conversão total de importação, etc importação de total estão disponíveis em
    Recibo de compra, cotação Fornecedor, Nota Fiscal de Compra, Ordem de Compra, etc" +All items have already been transferred \ for this Production Order.,Todos os itens já foram transferidos \ para esta Ordem de Produção. +"All possible Workflow States and roles of the workflow.
    Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Todos os possíveis Estados de Fluxo de Trabalho e as funções do fluxo de trabalho.
    Docstatus Opções: 0 é "Salvo", 1 é "Enviado" e 2 é "Cancelado"" +Allocate,Alocar +Allocate leaves for the year.,Alocar licenças para o ano. +Allocated (%),Alocados (%) +Allocated Amount,Montante alocado +Allocated Budget,Orçamento alocado +Allocated amount,Montante alocado +Allow Attach,Permitir Anexar +Allow Bill of Materials,Permitir Lista de Materiais +Allow Import,Permitir a importação +Allow Import via Data Import Tool,Permitir a importação de dados através de ferramenta de importação +Allow Negative Balance,Permitir saldo negativo +Allow Negative Stock,Permitir Estoque Negativo +Allow Production Order,Permitir Ordem de Produção +Allow Rename,Permitir Renomear +Allow Samples,Permitir Amostras +Allow User,Permitir que o usuário +Allow Users,Permitir que os usuários +Allow on Submit,Permitir ao Enviar +Allow the following users to approve Leave Applications for block days.,Permitir que os usuários a seguir para aprovar aplicações deixam para os dias de bloco. +Allow the following users to make Leave Applications for block days.,Permitir que os usuários a seguir para fazer aplicações deixam para os dias de bloco. +Allow this price in purchase related forms,Permitir esse preço em formulários de compra relacionados +Allow this price in sales related forms,Permitir esse preço em formulários de venda relacionados +Allow user to login only after this hour (0-24),Permitir que o usuário faça o login somente após esta hora (0-24) +Allow user to login only before this hour (0-24),Permitir que o usuário faça o login somente antes desta hora (0-24) +Allowance Percent,Percentual de tolerância +Allowed,Permitido +Amend,Corrigir +Amended From,Corrigido De +Amendment Date,Data da Correção +Amount,Quantidade +Amount <=,Quantidade <= +Amount >=,Quantidade> = +Amount*,Quantidade* +"An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]","Um arquivo de ícone com extensão .ico. Deve ser de 16 x 16 px. Gerado usando um gerador de favicon. [ favicon-generator.org ]" +Analytics,Analítica +Answer,Resposta +"Any other comments, noteworthy effort that should go in the records.","Quaisquer outros comentários, esforço notável que deva ir para os registros." +Applicable Holiday List,Lista de Férias Aplicável +Applicable To (Designation),Aplicável Para (Designação) +Applicable To (Employee),Aplicável Para (Funcionário) +Applicable To (Role),Aplicável Para (Função) +Applicable To (User),Aplicável Para (Usuário) +Applicable only if valuation method is moving average,Aplicável apenas se o método de avaliação é a média móvel +Applicant Name,Nome do Requerente +Applicant for a Job,Candidato a um Emprego +Applicant for a Job (extracted from jobs email).,Candidato a um Emprego (extraído de e-mail empregos). +Applications for leave.,Pedidos de licença. +Applies to Company,Aplica-se a Empresa +Apply / Approve Leaves,Aplicar / Aprovar Licenças +Appraisal,Avaliação +Appraisal Goal,Meta de Avaliação +Appraisal Goals,Metas de Avaliação +Appraisal Template,Modelo de Avaliação +Appraisal Template Goal,Meta do Modelo de Avaliação +Appraisal Template Title,Título do Modelo de Avaliação +Approval Status,Estado da Aprovação +Approved,Aprovado +Approver,Aprovador +Approving Role,Função Aprovadora +Approving User,Usuário Aprovador +Are you sure you want to delete the attachment?,Tem certeza de que deseja excluir o anexo? +Arial,Arial +Arrear Amount,Quantidade em atraso +"As a best practice, do not assign the same set of permission rule to different Roles instead set multiple Roles to the User","Como uma boa prática, não atribuia o mesmo conjunto de regras de permissão para diferentes Funções, em vez disso, estabeleça múltiplas Funções ao Usuário" +As existing qty for item: ,Como qtde. existente para o item: +As per Stock UOM,Como UDM do Estoque +Ascending,Ascendente +Assign To,Atribuir a +Assigned By,Atribuído por +Associate a DocType to the Print Format,Associar um DocType para o Formato de Impressão +Atleast one warehouse is mandatory,Pelo menos um almoxarifado é obrigatório +Attach,Anexar +Attach Document Print,Anexar Cópia do Documento +Attachments,Anexos +Attempted to Contact,Tentou entrar em Contato +Attendance,Comparecimento +Attendance Control Panel,Painel de Controle de Comparecimento +Attendance Date,Data de Comparecimento +Attendance Details,Detalhes do Comparecimento +Attendance From Date,Data Inicial de Comparecimento +Attendance To Date,Data Final de Comparecimento +Attendance record.,Registro de comparecimento. +Attributions,Atribuições +Authorization Control,Controle de autorização +Authorization Rule,Regra de autorização +Authorized Role (Frozen Entry),Função Autorizada (Lançamento Congelado) +Authourized Role (Frozen Entry),Função Autorizada (Lançamento Congelado) +Auto Email Id,Endereço dos E-mails Automáticos +Auto Name,Nome Auto +Auto generated,Gerado Automaticamente +Auto-raise Material Request if quantity goes below re-order level in a warehouse,Auto-raise solicitar material se a quantidade for inferior a reordenar nível em um armazém +Automatically updated via Stock Entry of type Manufacture/Repack,Atualizado automaticamente através do lançamento de Estoque do tipo Fabricação/Reempacotamento +Autoreply when a new mail is received,Responder automaticamente quando um novo e-mail é recebido +Available Qty at Warehouse,Qtde Disponível em Almoxarifado +"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponível em BOM, Nota de Entrega, Nota Fiscal de Compra, Ordem de Produção, Ordem de Compra, Recibo de compra, nota fiscal de venda, pedidos de vendas, entrada de material, quadro de horários" +Average Discount,Desconto Médio +B,B +B+,B+ +B-,B- +BILL,BILL +BILLJ,BILLJ +BOM,LDM +BOM Detail No,Nº do detalhe da LDM +BOM Explosion Item,Item da Explosão da LDM +BOM Item,Item da LDM +BOM No,Nº da LDM +BOM No. for a Finished Good Item,Nº da LDM para um Item Bom Acabado +BOM Operation,Operação da LDM +BOM Operations,Operações da LDM +BOM Replace Tool,Ferramenta de Substituição da LDM +BOM replaced,LDM substituída +Background Color,Cor de Fundo +Background Image,Imagem de Fundo +Background shade of the top menu bar,Sombra de fundo da barra do menu superior +Bank,Banco +Bank A/C No.,Nº Cta. Bancária +Bank Account,Conta Bancária +Bank Account No.,Nº Conta Bancária +Bank Balance,Saldo Bancario +Bank Name,Nome do Banco +Bank Reconciliation,Reconciliação Bancária +Bank Reconciliation Detail,Detalhe da Reconciliação Bancária +Bank Voucher,Comprovante Bancário +Bank or Cash,Banco ou Dinheiro +Banner,Faixa +Banner HTML,Faixa HTML +Barcode,Código de barras +Based On,Baseado em +Basic Info,Informações Básicas +Basic Information,Informações Básicas +Basic Rate,Taxa Básica +Basic Rate*,Taxa Básica* +Batch,Lote +Batch (lot) of an Item.,Lote de um item. +Batch Finished Date,Data de Término do Lote +Batch ID,ID do Lote +Batch No,Nº do Lote +Batch Started Date,Data de Início do Lote +Begin this page with a slideshow of images,Comece esta página com um slideshow de imagens +Better Prospects,Melhores perspectivas +Bill Date,Data de Faturamento +Bill No,Fatura Nº +Bill of Material to be considered for manufacturing,Lista de Materiais a serem considerados para a fabricação +Bill of Materials,Lista de Materiais +Bill of Materials (BOM),Lista de Materiais (LDM) +Billed,Faturado +Billed Amt,Valor Faturado +Billed Quantity,Quantidade Faturada +Billing Status,Estado do Faturamento +Bills raised by Suppliers.,Contas levantada por Fornecedores. +Bills raised to Customers.,Contas levantdas para Clientes. +Bin,Caixa +Bio,Bio +Bio will be displayed in blog section etc.,Bio será exibido em seção do blog etc +Birth Date,Data de Nascimento +Black,Preto +Blob,Gota +Block Date,Bloquear Data +Block Days,Dias bloco +Block Holidays on important days.,Bloquear feriados em dias importantes. +Block leave applications by department.,Bloquear deixar aplicações por departamento. +Blog,Blog +Blog Intro,Blog Intro +Blog Subscriber,Assinante do Blog +Blog entry.,Entrada do Blog. +Blood Group,Grupo sanguíneo +Bookmarks,Marcadores +Branch,Ramo +Brand,Marca +Brand HTML,Marca HTML +Brand Name,Marca +"Brand is what appears on the top-right of the toolbar. If it is an image, make sure ithas a transparent background and use the <img /> tag. Keep size as 200px x 30px","Marca é o que aparece no canto superior direito da barra de ferramentas. Se for uma imagem, ithas certeza de um fundo transparente e usar a tag /> <img. Manter o tamanho como 200px x 30px" +Brand master.,Cadastro de Marca. +Branding and Printing,Identificação de Marca e Impressão +Brands,Marcas +Breakdown,Colapso +Budget,Orçamento +Budget Allocated,Orçamento Alocado +Budget Control,Controle de Orçamento +Budget Detail,Detalhe do Orçamento +Budget Details,Detalhes do Orçamento +Budget Distribution,Distribuição de Orçamento +Budget Distribution Detail,Detalhe da Distribuição de Orçamento +Budget Distribution Details,Detalhes da Distribuição de Orçamento +Bulk Email,E-mail em massa +Bulk Email records.,Registros de e-mail em massa. +Bundle items at time of sale.,Empacotar itens no momento da venda. +Button,Botão +Buyer of Goods and Services.,Comprador de Mercadorias e Serviços. +Buying,Compras +Buying Cost,Custo de compra +Buying Cost will be updated from Purchase Orders and Purchase Receipts.
    The buying cost will calculated by moving average method.,O Custo de Compra será atualizado a partir de Ordens de Compra e Recibos de Compra.
    O custo de compra será calculado pelo método de média móvel. +Buying Home,Início de Compras +By,Por +C,C +C-FORM/,FORMULÁRIO-C / +C-Form,Formulário-C +C-Form Applicable,Formulário-C Aplicável +C-Form Invoice Detail,Detalhe Fatura do Formulário-C +C-Form No,Nº do Formulário-C +CGHelp,CGHelp +CI/2010-2011/,CI/2010-2011 / +COMM-,COMM- +CSS,CSS +CTC,CTC +CUST,CUST +CUSTMUM,CUSTMUM +Calculate Charges,Calcular Encargos +Calculate Tax,Calcular Imposto +Calculate Taxes and Charges,Calcular Impostos e Encargos +Calculate Total Score,Calcular a Pontuação Total +Calendar,Calendário +Calendar Events,Calendário de Eventos +Call,Chamar +Campaign,Campanha +Campaign Name,Nome da Campanha +Can only be exported by users with role 'Report Manager',Só podem ser exportados por usuários com função de "Gerente de Relatórios" +Cancel,Cancelar +Cancel Reason,Motivo do Cancelar +Cancel permission also allows the user to delete a document (if it is not linked to any other document).,Permissão de cancelamento também permite ao usuário excluir um documento (se ele não está vinculado a qualquer outro documento). +Cancelled,Cancelado +Cannot ,Não pode +Cannot approve leave as you are not authorized to approve leaves on Block Dates.,Não pode aprovar deixar que você não está autorizado a aprovar folhas em datas Block. +Cannot continue.,Não pode continuar. +Capacity,Capacidade +Capacity Units,Unidades de Capacidade +Career History,Histórico da carreira +Carry Forward,Encaminhar +Carry Forwarded Leaves,Encaminhar Licenças +Cash,Numerário +Cash Voucher,Comprovante de Caixa +Cash/Bank Account,Conta do Caixa/Banco +Category,Categoria +Category of customer as entered in Customer master,Categoria de cliente como no Cadastrado de Cliente +Cell Number,Telefone Celular +Center,Centro +"Certain documents should not be changed once final, like an Invoice for example. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Alguns documentos não devem ser alterados uma vez finalizados, como uma nota fiscal, por exemplo. O estado final de tais documentos é chamado Enviado. Você pode restringir as funções que podem Enviar." +Certificate,Certidão +Challan Date,Data do Recibo +Challan No,Nº do Recibo +Change UOM for an Item.,Alterar UDM de um item. +Change background fonts etc,"Alterar fontes, fundo, etc" +"Change entry properties (hide fields, make mandatory etc)","Alterar as propriedades do lançamento (ocultar campos, tornar obrigatório, etc)" +Change the starting / current sequence number of an existing series.,Alterar o número sequencial de início/atual de uma série existente. +Channel Partner,Parceiro de Canal +Charge,Carga +Chargeable,Taxável +Chart of Accounts,Plano de Contas +Chart of Cost Centers,Plano de Centros de Custo +Chat,Conversar +Cheating FieldPlease do not delete ,Engano FieldPlease não exclua +Check,Verificar +Check / Uncheck roles assigned to the Profile. Click on the Role to find out what permissions that Role has.,Marque / Desmarque funções atribuídas ao perfil. Clique sobre a Função para verificar que permissões a função tem. +Check all the items below that you want to send in this digest.,Marque todos os itens abaixo que você deseja enviar neste resumo. +Check how the newsletter looks in an email by sending it to your email.,Verifique como a newsletter é exibido em um e-mail enviando-o para o seu e-mail. +"Check if recurring invoice, uncheck to stop recurring or put proper End Date","Marque se é uma nota fiscal recorrente, desmarque para parar a recorrência ou colocar uma Data Final adequada" +"Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.","Marque se você precisa de notas fiscais recorrentes automáticas. Depois de enviar qualquer nota fiscal de venda, a seção Recorrente será visível." +Check if you want to send salary slip in mail to each employee while submitting salary slip,Marque se você quiser enviar a folha de pagamento pelo correio a cada empregado ao enviar a folha de pagamento +Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Marque esta opção se você deseja forçar o usuário a selecionar uma série antes de salvar. Não haverá nenhum padrão se você marcar isso. +Check this if you want to show in website,Marque esta opção se você deseja mostrar no site +Check this to make this the default letter head in all prints,Marque esta opção para tornar este o cabeçalho padrão em todas as impressões +Check this to pull emails from your mailbox,Marque esta a puxar os e-mails de sua caixa de correio +Check to activate,Marque para ativar +Check to make Shipping Address,Marque para criar Endereço de Remessa +Check to make primary address,Marque para criar Endereço Principal +Checked,Marcado +"Checking Operator (To Fld, Operator, From Fld)","Verificando Operador (Para Fld, Operador, De Fld)" +Cheque,Cheque +Cheque Date,Data do Cheque +Cheque Number,Número do cheque +Child Tables are shown as a Grid in other DocTypes.,Tabelas-filhas são mostradas como uma grade nos outros DocTypes. +City,Cidade +City/Town,Cidade / Município +Claim Amount,Valor Requerido +Claims for expenses made on behalf of the organization.,Os pedidos de reembolsos por despesas feitas em favor da organização. +Class / Percentage,Classe / Percentual +Classification of Customers by region,Classificação de Clientes por região +Clear Cache & Refresh,Limpar Cache & Atualizar +Clear Pending,Limpar Pendentes +Clear Table,Limpar Tabela +Clearance Date,Data de Liberação +Click on button in the 'Condition' column and select the option 'User is the creator of the document',Clique no botão na coluna 'Condição' e selecione a opção "Usuário é o criador do documento' +Click to Expand / Collapse,Clique para Expandir / Recolher +Client,Cliente +Client Script,Script de Cliente +Closed,Fechado +Closing Account Head,Conta de Fechamento +Closing Date,Data de Encerramento +Closing Fiscal Year,Encerramento do exercício fiscal +CoA Help,Ajuda CoA +Code,Código +Cold Calling,Cold Calling +Collections,Coleções +Color,Cor +Column Break,Quebra de coluna +Columns,Colunas +Comma separated list of email addresses,Lista separada por vírgulas de endereços de e-mail +Comment,Comentário +Comment By,Comentário por +Comment By Fullname,Comentário por Nome Completo +Comment Date,Data do Comentário +Comment Docname,Comentário docName +Comment Doctype,Comentário Doctype +Comment Time,Horário do Comentário +Comments,Comentários +Commission Rate,Taxa de Comissão +Commission Rate (%),Taxa de Comissão (%) +Commission partners and targets,Parceiros de comissão e metas +Communication,Comunicação +Communication HTML,Comunicação HTML +Communication History,Histórico da comunicação +Communication Log,Log de Comunicação +Communication Medium,Meio de comunicação +Communication by,Comunicação por +Communication log.,Log de Comunicação. +Communication type,Tipo de comunicação +Company,Empresa +Company Control,Controle da Empresa +Company Details,Detalhes da Empresa +Company History,Histórico da Empresa +Company History Heading,Título do Histórico da Empresa +Company Info,Informações da Empresa +Company Introduction,Introdução da Empresa +Company Name,Nome da Empresa +Company branches.,Filiais da Empresa. +Company departments.,Departamentos da Empresa. +Company registration numbers for your reference. Example: VAT Registration Numbers etc.,"Números de registro da empresa para sua referência. Exemplo: CNPJ, IE, etc" +Company registration numbers for your reference. Tax numbers etc.,"Números da empresa de registro para sua referência. Números fiscais, etc" +Complaint,Reclamação +Complete By,Completar em +Completed,Concluído +Completed Qty,Qtde concluída +Completion Date,Data de Conclusão +Completion Status,Estado de Conclusão +Confirmed orders from Customers.,Pedidos confirmados de clientes. +Consider Tax or Charge for,Considere Imposto ou Encargo para +"Consider this Price List for fetching rate. (only which have ""For Buying"" as checked)",Considere esta Lista de Preços para a obtenção do valor. (Só onde "Para Comprar" estiver marcado) +Consultant,Consultor +Consumed Qty,Qtde consumida +Contact,Contato +Contact Control,Controle de Contato +Contact Desc,Descrição do Contato +Contact Details,Detalhes do Contato +Contact Email,E-mail do Contato +Contact HTML,Contato HTML +Contact Info,Informações para Contato +Contact Mobile No,Celular do Contato +Contact Name,Nome do Contato +Contact No.,Nº Contato. +Contact Person,Pessoa de Contato +Contact Type,Tipo de Contato +Contact Us Settings,Configurações do Fale Conosco +Contact in Future,Fale no Futuro +"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opções de contato, como "Consulta de Vendas, Consulta de suporte", etc cada uma em uma nova linha ou separadas por vírgulas." +Contacted,Contactado +Content,Conteúdo +Content Type,Tipo de Conteúdo +Content in markdown format that appears on the main side of your page,Conteúdos em formato markdown que aparecem no lado principal de sua página +Content web page.,Página web de conteúdo. +Contra Voucher,Comprovante de Caixa +Contract End Date,Data Final do contrato +Control Panel,Painel de Controle +Conversion Factor,Fator de Conversão +Conversion Rate,Taxa de Conversão +Convert into Recurring Invoice,Converter em Nota Fiscal Recorrente +Converted,Convertido +Copyright,Direitos autorais +Core,Núcleo +Cost Center,Centro de Custos +Cost Center Details,Detalhes do Centro de Custo +Cost Center Name,Nome do Centro de Custo +Cost Center must be specified for PL Account: ,Centro de custos deve ser especificado para Conta PL: +Cost to Company,Custo para Empresa +Costing,Custeio +Country,País +Country Name,Nome do País +Create,Criar +Create Bank Voucher for the total salary paid for the above selected criteria,Criar Comprovante Bancário para o salário total pago para os critérios acima selecionados +Create Production Orders,Criar Ordens de Produção +Create Receiver List,Criar Lista de Receptor +Create Salary Slip,Criar Folha de Pagamento +"Create a price list from Price List master and enter standard ref rates against each of them. On selection of a price list in Quotation, Sales Order or Delivery Note, corresponding ref rate will be fetched for this item.","Criar uma lista de preços a partir do cadastro de Lista de Preços e introduzir valores padrão de ref. para cada um deles. Na seleção de uma lista de preços em Cotação, Ordem de Venda, ou Guia de Remessa, o valor de ref. correspondente será buscado para este item." +Create and Send Newsletters,Criar e enviar Newsletters +Created Account Head: ,Chefe Conta criada: +Created Customer Issue,Problema do Cliente Criado +Created Group ,Grupo criado +Created Opportunity,Oportunidade Criada +Created Support Ticket,Ticket de Suporte Criado +Creates salary slip for above mentioned criteria.,Cria folha de pagamento para os critérios acima mencionados. +Credit,Crédito +Credit Amt,Montante de Crédito +Credit Card Voucher,Comprovante do cartão de crédito +Credit Controller,Controlador de crédito +Credit Days,Dias de Crédito +Credit Limit,Limite de Crédito +Credit Note,Nota de Crédito +Credit To,Crédito Para +Criteria Name,Nome dos Critérios +Cross List Item Group,Grupo de Itens da Lista Cruzada +Cross Listing of Item in multiple groups,Listagem Cruzada dos itens em múltiplos grupos +Currency,Moeda +Currency & Price List,Moeda e Lista de Preços +Currency Format,Formato da Moeda +Currency Name,Nome da Moeda +Current Accommodation Type,Tipo de Acomodação atual +Current Address,Endereço Atual +Current BOM,LDM atual +Current Fiscal Year,Ano Fiscal Atual +Current Stock,Estoque Atual +Current Stock UOM,UDM de Estoque Atual +Current Value,Valor Atual +Current status,Estado Atual +Cust/Supp Address,Endereço do Cliente/Fornecedor +Cust/Supp Name,Nome do Cliente/Fornecedor +Custom,Personalizado +Custom Autoreply Message,Mensagem de resposta automática personalizada +Custom CSS,CSS personalizado +Custom Field,Campo personalizado +Custom Message,Mensagem personalizada +Custom Query,Consulta personalizada +Custom Reports,Relatórios personalizados +Custom Script,Script personalizado +Custom Startup Code,Código de inicialização personalizado +Custom?,Personalizado? +Customer,Cliente +Customer / Item Name,Cliente / Nome do item +Customer Account,Conta de Cliente +Customer Address,Endereço do cliente +Customer Addresses And Contacts,Endereços e contatos do cliente +Customer Code,Código do Cliente +Customer Codes,Códigos de Clientes +Customer Details,Detalhes do Cliente +Customer Feedback,Comentário do Cliente +Customer Group,Grupo de Clientes +Customer Group Name,Nome do grupo de Clientes +Customer Intro,Introdução do Cliente +Customer Issue,Questão do Cliente +Customer Issue No,Nº da Questão do Cliente +Customer Issue against a Serial No (warranty).,Questão do Cliente contra um Nº de Série (garantia). +Customer Master created by ,Cadastro de Clientes criado por +Customer Name,Nome do cliente +Customer Type,Tipo de Cliente +Customer classification tree.,Árvore de classificação do cliente. +Customer database.,Banco de dados do cliente. +Customer's Currency,Moeda do Cliente +Customer's Item Code,Código do Item do Cliente +Customer's Vendor,Vendedor do cliente +Customer's currency,Moeda do Cliente +"Customer's currency - If you want to select a currency that is not the default currency, then you must also specify the Currency Conversion Rate.","Moeda do cliente - Se você deseja selecionar uma moeda que não é a moeda padrão, então você também deve especificar a taxa de conversão." +Customer/Supplier,Cliente / Fornecedor +Customerwise Discount,Desconto referente ao Cliente +Customize,Personalize +Customize Form,Personalize Formulário +Customize Form Field,Personalize campo de formulário +"Customize Label, Print Hide, Default etc.","Personalize Etiquetas, Cabeçalhos, Padrões, etc" +Customize the Notification,Personalize a Notificação +Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Personalize o texto introdutório que vai como uma parte do que e-mail. Cada transação tem um texto introdutório separado. +DN,DN +DN Detail,Detalhe DN +Daily,Diário +"Daily, weekly, monthly email Digests","Resumos diários, semanais e mensais por e-mail" +Danger,Perigo +Data,Dados +Data Import,Importação de Dados +Data Import Tool,Ferramenta de Importação de Dados +Database,Banco de dados +Database of potential customers.,Banco de dados de clientes potenciais. +Date,Data +Date Format,Formato da data +Date Of Retirement,Data da aposentadoria +Date is repeated,Data é repetido +Date of Birth,Data de Nascimento +Date of Issue,Data de Emissão +Date of Joining,Data da Efetivação +Date on which lorry started from supplier warehouse,Data em que o caminhão partiu do almoxarifado do fornecedor +Date on which lorry started from your warehouse,Data em que o caminhão partiu do seu almoxarifado +Date on which the lead was last contacted,Última data em que o Prospecto foi contatado +Dates,Datas +Datetime,Datetime +Days for which Holidays are blocked for this department.,Dias para que feriados são bloqueados para este departamento. +Dealer,Revendedor +Dear,Caro +Debit,Débito +Debit Amt,Montante de Débito +Debit Note,Nota de Débito +Debit To,Débito Para +Debit or Credit,Débito ou crédito +Deduct,Subtrair +Deduction,Dedução +Deduction Type,Tipo de dedução +Deduction1,Deduction1 +Deductions,Deduções +Default,Padrão +Default Account,Conta Padrão +Default BOM,LDM padrão +Default Bank / Cash account will be automatically updated in POS Invoice when this mode is selected.,Conta do Banco/Caixa padrão será atualizada automaticamente na nota fiscal do PDV quando este modo for selecionado. +Default Bank Account,Conta Bancária Padrão +Default Commission Rate,Taxa de Comissão padrão +Default Company,Empresa padrão +Default Cost Center,Centro de Custo Padrão +Default Cost Center for tracking expense for this item.,Centro de Custo padrão para controle de despesas para este item. +Default Currency,Moeda padrão +Default Customer Group,Grupo de Clientes padrão +Default Expense Account,Conta Despesa padrão +Default Home Page,Página Inicial padrão +Default Home Pages,Páginas Iniciais padrão +Default Income Account,Conta de Rendimento padrão +Default Item Group,Grupo de Itens padrão +Default Price List,Lista de Preços padrão +Default Price List Currency,Moeda padrão da Lista de Preços +Default Print Format,Formato de impressão padrão +Default Product Category,Categoria de produto padrão +Default Purchase Account in which cost of the item will be debited.,Conta de compra padrão em que o custo do item será debitado. +Default Reserved Warehouse,Almoxarifado Reservado padrão +Default Sales Partner,Parceiro de vendas padrão +Default Settings,Configurações padrão +Default Source Warehouse,Almoxarifado da origem padrão +Default Stock UOM,Padrão da UDM do Estouqe +Default Supplier Type,Tipo de fornecedor padrão +Default Target Warehouse,Almoxarifado de destino padrão +Default Territory,Território padrão +Default Unit of Measure,Unidade de medida padrão +Default Valuation Method,Método de Avaliação padrão +Default Value,Valor padrão +Default Warehouse Type,Tipo de Almoxarifado padrão +"Default: ""Contact Us""",Default: "Fale Conosco" +"Default: ""Product Search""",Padrão: "Pesquisa de Produto" +DefaultValue,Valor padrão +Defaults,Padrões +"Define Budget for this Cost Center. To set budget action, see Company Master","Definir Orçamento para este Centro de Custo. Para definir ação do orçamento, consulte Cadastro de Empresa" +Define Rule,Definir regra +Defines actions on states and the next step and allowed roles.,Define ações em estados e no próximo passo e funções permitidos. +Defines workflow states and rules for a document.,Define os estados do fluxo de trabalho e regras para um documento. +Delete,Excluir +Delivered,Entregue +Delivered Items To Be Billed,Itens entregues a serem faturados +Delivered Qty,Qtde entregue +Delivery (shipment) to customers.,Entrega (embarque) para os clientes. +Delivery Address,Endereço de entrega +Delivery Date,Data de entrega +Delivery Details,Detalhes da entrega +Delivery Document No,Nº do Documento de Entrega +Delivery Document Type,Tipo do Documento de Entrega +Delivery Note,Guia de Remessa +Delivery Note Item,Item da Guia de Remessa +Delivery Note Items,Itens da Guia de Remessa +Delivery Note Message,Mensagem da Guia de Remessa +Delivery Note No,Nº da Guia de Remessa +Delivery Note Packing Item,Item do Pacote da Guia de Remessa +Delivery Note Required,Guia de Remessa Obrigatória +Delivery Status,Estado da entrega +Delivery Time,Prazo de entrega +Department,Departamento +Depend on LWP,Depende do LWP +Depends On,Depende +Depends on LWP,Dependem do LWP +Descending,Descendente +Description,Descrição +Description HTML,Descrição HTML +"Description for listing page, in plain text, only a couple of lines.","Descrição página de listagem, em texto simples, apenas um par de linhas." +Description of a Job Opening,Descrição de uma vaga de emprego +Desert,Deserto +Designation,Designação +Desktop,Área de trabalho +Detail Name,Nome do Detalhe +Detailed Breakup of the totals,Detalhamento dos totais +Details,Detalhes +Did not add.,Não adicionou. +Did not cancel,Não cancelou +Did not save,Não salvou +Difference,Diferença +"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",""Estados" diferentes em que esse documento pode existir. Como "Aberto", "Aprovação Pendente", etc" +Disable Rounded Total,Desativar total arredondado +Disabled,Desativado +Disabled Filters,Filtros desativados +Discount %,% De desconto +Discount %,% De desconto +Discount (%),Desconto (%) +"Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice","Campos de desconto estarão disponíveis em Ordem de Compra, Recibo de Compra, Nota Fiscal de Compra" +Discount(%),Desconto (%) +Display,Exibir +Display Settings,Configurações de exibição +Display all the individual items delivered with the main items,Exibir todos os itens individuais entregues com os itens principais +Distinct unit of an Item,Unidade distinta de um item +Distribute transport overhead across items.,Distribuir o custo de transporte através dos itens. +Distribution Id,Id da distribuição +Distribution Name,Nome da distribuição +Distributor,Distribuidor +Divorced,Divorciado +Do not show any symbol like $ etc next to currencies.,Não mostrar qualquer símbolo como US $ etc ao lado de moedas. +Doc Name,Nome do Documento +Doc Status,Estado do Documento +Doc Type,Tipo do Documento +DocField,DocField +DocPerm,DocPerm +DocType,DocType +DocType Details,Detalhes do DocType +DocType Label,Etiqueta do DocType +DocType Mapper,Mapeador do DocType +DocType is a Table / Form in the application.,DocType é uma Tabela / Formulário na aplicação. +DocType on which this Workflow is applicable.,DocType em que este fluxo de trabalho é aplicável. +DocType or Field,DocType ou Campo +Document,Documento +Document Description,Descrição do documento +Document Status transition from ,Transição do estado do Documento de +Document Type,Tipo de Documento +Document is only editable by users of role,Documento só é editável por usuários da função +Document to rename,Documento para renomear +Documentation,Documentação +Documents,Documentos +Domain List,Lista de Domínios +Download Backup,Baixar o Backup +Download Materials Required,Baixar Materiais Necessários +Download Template,Baixar o Modelo +Download a report containing all raw materials with their latest inventory status,Baixar um relatório contendo todas as matérias-primas com o seu estado mais recente do inventário +Draft,Rascunho +Drafts,Rascunhos +Drag to sort columns,Arraste para classificar colunas +Due Date,Data de Vencimento +Duration,Duração +EMP/,EMP / +ESIC CARD No,Nº CARTÃO ESIC +ESIC No.,Nº ESIC. +Earning,Ganho +Earning & Deduction,Ganho & Dedução +Earning Type,Tipo de Ganho +Earning1,Earning1 +Edit,Editar +Editable,Editável +Educational Qualification,Qualificação Educacional +Educational Qualification Details,Detalhes da Qualificação Educacional +Eg. smsgateway.com/api/send_sms.cgi,Por exemplo: smsgateway.com / api / send_sms.cgi +Eligible Amount,Montante elegível +Email,E-mail +Email (By company),E-mail (por empresa) +Email Digest,Resumo por E-mail +Email Digest Settings,Configurações do Resumo por E-mail +Email Host,Host do e-mail +Email Id,Endereço de e-mail +"Email Id must be unique, already exists for: ","Endereço de e-mail deve ser único, já existe para: " +"Email Id where a job applicant will email e.g. ""jobs@example.com""","Endereço do e-mail onde um candidato a emprego vai enviar e-mail, por exemplo: "empregos@exemplo.com"" +Email Login,Login do e-mail +Email Password,Senha do e-mail +Email Sent,E-mail enviado +Email Sent?,E-mail enviado? +Email Settings,Configurações de e-mail +Email Settings for Outgoing and Incoming Emails.,Configurações de e-mail para e-mails enviados e recebidos. +Email Signature,Assinatura de e-mail +Email Use SSL,Usar SSL no e-mail +"Email addresses, separted by commas","Endereços de email, separados por vírgulas" +"Email settings for jobs email id ""jobs@example.com""",Configurações de e-mail para e-mail de empregos "empregos@exemplo.com" +"Email settings to extract Leads from sales email id e.g. ""sales@example.com""","Configurações de e-mail para extrair Prospectos do e-mail de vendas, por exemplo "vendas@exemplo.com"" +Embed image slideshows in website pages.,Incorporar apresentações de imagem em páginas do site. +Emergency Contact Details,Detalhes do contato de emergência +Emergency Phone Number,Número do telefone de emergência +Employee,Funcionário +Employee Designation.,Designação empregado. +Employee Details,Detalhes do Funcionário +Employee Education,Escolaridade do Funcionário +Employee External Work History,Histórico de trabalho externo do Funcionário +Employee Internal Work History,Histórico de trabalho interno do Funcionário +Employee Internal Work Historys,Histórico de trabalho interno do Funcionário +Employee Leave Balance,Equilíbrio Leave empregado +Employee Name,Nome do Funcionário +Employee Number,Número do Funcionário +Employee Records to be created by ,Registros de Funcionário a serem criados por +Employee Setup,Configuração do Funcionário +Employee Training,Treinamento de funcionários +Employee Type,Tipo de empregado +Employee grades,Notas do funcionário +Employee record is created using selected field. ,Registro de funcionário é criado usando o campo selecionado. +Employee records.,Registros de funcionários. +Employees Email Id,Endereços de e-mail dos Funcionários +Employment Details,Detalhes de emprego +Employment Type,Tipo de emprego +Enable / disable currencies.,Ativar / desativar moedas. +Enabled,Habilitado +Enables More Info. in all documents,Habilitar Mais informações. em todos os documentos +Encashment Date,Data da cobrança +End Date,Data final +End date of current invoice's period,Data final do período de fatura atual +End of Life,Fim de Vida +Ends on,Termina em +Enter Email Id to receive Error Report sent by users.E.g.: support@iwebnotes.com,Digite o Id-mail para receber Relatório de erros enviados por users.Eg: support@iwebnotes.com +Enter Form Type,Digite o Tipo de Formulário +Enter Row,Digite a Linha +Enter campaign name if the source of lead is campaign.,Digite o nome da campanha se a origem do Prospecto foi uma campanha. +"Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set ""match"" permission rules. To see list of fields, go to Customize Form.","Digite campos de valor padrão (chaves) e valores. Se você adicionar vários valores para um campo, o primeiro vai ser escolhido. Esses padrões são usados também para definir regras de permissão de "combinação". Para ver a lista de campos, vá para Personalizar formulário ." +Enter department to which this Contact belongs,Entre com o departamento a que este contato pertence +Enter designation of this Contact,Digite a designação deste contato +"Enter domain names associated to this website, each on a new line","Digite os nomes de domínio associados a este site, cada um em uma nova linha" +"Enter email id separated by commas, invoice will be mailed automatically on particular date","Digite os endereços de e-mail separados por vírgulas, a fatura será enviada automaticamente na data determinada" +Enter items and planned qty for which you want to raise production orders or download raw materials for analysis.,Digite itens e qtde. planejada para o qual você quer levantar ordens de produção ou fazer o download de matérias-primas para a análise. +Enter message,Digite a mensagem +Enter name of campaign if source of enquiry is campaign,Digite o nome da campanha se o motivo da consulta foi uma campanha. +"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Digite os parâmetros da URL estática aqui (por exemplo remetente=ERPNext, usuario=ERPNext, senha=1234, etc)" +Enter the company name under which Account Head will be created for this Supplier,Digite o nome da empresa sob a qual a Conta será criada para este fornecedor +Enter the date by which payments from customer is expected against this invoice.,Digite a data em que o pagamento do cliente é esperado para esta fatura. +Enter url parameter for message,Digite o parâmetro da url para mensagem +Enter url parameter for receiver nos,Digite o parâmetro da url para os números de receptores +Entries,Lançamentos +Entries are not allowed against this Fiscal Year if the year is closed.,Lançamentos não são permitidos contra este Ano Fiscal se o ano está fechado. +Error,Erro +Estimated Material Cost,Custo estimado de Material +Event,Evento +Event Individuals,Indivíduos do Evento +Event Role,Função do Evento +Event Roles,Funções do Evento +Event Type,Tipo de Evento +Event Updates,Atualizações do Eento +Event User,Usuário do Evento +Example:,Exemplo: +Exchange Rate,Taxa de Câmbio +Excise Page Number,Número de página do imposto +Excise Voucher,Comprovante do imposto +Execute,Executar +Exemption Limit,Limite de isenção +Exhibition,Exposição +Existing Customer,Cliente existente +Exit,Sair +Exit Interview Details,Detalhes da Entrevista de saída +Expected,Esperado +Expected Delivery Date,Data de entrega prevista +Expected End Date,Data Final prevista +Expected Start Date,Data Inicial prevista +Expense Account,Conta de Despesas +Expense Claim,Pedido de Reembolso de Despesas +Expense Claim Approved,Pedido de Reembolso de Despesas Aprovado +Expense Claim Approved Message,Mensagem de aprovação do Pedido de Reembolso de Despesas +Expense Claim Detail,Detalhe do Pedido de Reembolso de Despesas +Expense Claim Details,Detalhes do Pedido de Reembolso de Despesas +Expense Claim Rejected,Pedido de Reembolso de Despesas Rejeitado +Expense Claim Rejected Message,Mensagem de recusa do Pedido de Reembolso de Despesas +Expense Claim Type,Tipo de Pedido de Reembolso de Despesas +Expense Date,Data da despesa +Expense Details,Detalhes da despesa +Expense Head,Conta de despesas +Expenses Booked,Despesas agendadas +Expiry Date,Data de validade +Export,Exportar +Exports,Exportações +External,Externo +Extra Condition,Condição extra +Extract Emails,Extrair e-mails +Extract Job Applicant from jobs email id e.g. jobs@example.com,"Extraia Candidado a Emprego do e-mail de empregos, por exemplo empregos@exemplo.com" +Extract Leads from sales email id e.g. sales@example.com,"Extraia Prospectos do e-mail de vendas, por exemplo vendas@exemplo.com" +FCFS Rate,Taxa FCFS +FIFO,PEPS +Facebook Share,Compartilhar Facebook +Family Background,Antecedentes familiares +FavIcon,FavIcon +Fax,Fax +Featured Item,Item Destacado +Featured Item in Item Group,Item destacado no Grupo de Itens +Features Setup,Configuração de características +Feed,Alimentar +Feed Type,Tipo de alimentação +Feedback,Comentários +Female,Feminino +Fetch lead which will be converted into customer.,Extrair prospecto que vai se tornar cliente. +Field,Campo +Field Description,Descrição do Campo +Field Mapper Detail,Detalhe do Mapeador do Campo +Field Mapper Details,Detalhes do Mapeador do Campo +Field Name,Nome do Campo +Field Type,Tipo de Campo +"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Campo disponível na Guia de Remessa, Cotação, Nota Fiscal de Venda, Ordem de Venda" +Field from other forms,Campo de outros formulários +"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)","Campo que representa o Estado da transação do fluxo de trabalho (se o campo não estiver presente, um novo campo oculto personalizado será criado)" +Fieldname,Nome do Campo +Fields,Campos +"Fields separated by comma (,) will be included in the
    Search By list of Search dialog box","Campos separados por vírgula (,) serão incluídos na lista
    Pesquisa por da caixa de diálogo Pesquisar" +File Data,Dados de arquivo +File LIst,Lista de Arquivos +File List,Lista de Arquivos +File Name,Nome do arquivo +File URL,URL do arquivo +File Uploaded Sucessfully.,Arquivo enviado com sucesso. +Filing in Additional Information about the Material Request will help you analyze your data better.,Apresentação de informações adicionais sobre a solicitar material vai ajudar a analisar melhor seus dados. +Filing in Additional Information about the Opportunity will help you analyze your data better.,Preenchimento de informações adicionais sobre o Opportunity vai ajudar a analisar melhor seus dados. +Filing in Additional Information about the Purchase Receipt will help you analyze your data better.,Preenchimento de informações adicionais sobre o Recibo de compra vai ajudar a analisar melhor seus dados. +Filing in Additional Information about the Purchase Requisition will help you analyze your data better.,Preenchimento de informações adicionais sobre o pedido de compra vai ajudar a analisar melhor seus dados. +Filling in Additional Information about the Delivery Note will help you analyze your data better.,Preenchimento de informações adicionais sobre a Guia de Remessa irá ajudá-lo a analisar os seus dados melhor. +Filling in additional information about the Quotation will help you analyze your data better.,Preenchimento de informações adicionais sobre a cotação irá ajudá-lo a analisar os seus dados melhor. +Filling in additional information about the Sales Order will help you analyze your data better.,Preenchimento de informações adicionais sobre a Ordem de Venda vai ajudar a analisar melhor seus dados. +Filter By Amount,Filtrar por Quantidade +Filter By Date,Filtrar por data +Filter based on customer,Filtrar baseado em cliente +Filter based on item,Filtrar baseado no item +Filters,Filtros +Final Confirmation Date,Data final de confirmação +Financial Analytics,Análise Financeira +Financial Statements,Demonstrações Financeiras +Financial Years for books of accounts,Exercícios para os livros-caixas +First Name,Nome +First Responded On,Primeira resposta em +Fiscal Year,Exercício fiscal +Fiscal Year Details,Detalhes do Exercício Fiscal +Fixed Asset Account,Conta de ativo fixo +Float,Float +Float Precision,Precisão flutuante +Floral,Floral +Follow via Email,Siga por e-mail +"Following table will show values if items are sub - contracted. These values will be fetched from the master of ""Bill of Materials"" of sub - contracted items.",A tabela a seguir mostrará valores se os itens são sub-contratados. Estes valores serão obtidos a partir do cadastro da "Lista de Materiais" de itens sub-contratados. +Font,Fonte +Font Size,Tamanho da Fonte +Footer,Rodapé +Footer Items,Itens do Rodapé +For All Users,Para todos os usuários +For Buying,Para Comprar +For Company,Para a Empresa +For Employee,Para o Funcionário +For Employee Name,Para Nome do Funcionário +For Item ,Para o Item +"For Links, enter the DocType as rangeFor Select, enter list of Options separated by comma","Para Links, digite o DocType como rangeFor Select, entrar na lista de opções separadas por vírgula" +For Production,Para Produção +For Reference Only.,Apenas para referência. +For Selling,Para Venda +For Warehouse,Para Almoxarifado +"For comparative filters, start with","Para filtros comparativos, comece com" +"For e.g. 2012, 2012-13","Para por exemplo 2012, 2012-13" +For example if you cancel and amend 'INV004' it will become a new document 'INV004-1'. This helps you to keep track of each amendment.,"Por exemplo, se você cancelar e alterar 'INV004' ele vai se tornar um novo documento "INV004-1'. Isso ajuda você a manter o controle de cada alteração." +For example: You want to restrict users to transactions marked with a certain property called 'Territory',Por exemplo: Você quer restringir os usuários a transações marcadas com uma certa propriedade chamado 'Território' +For opening balance entry account can not be a PL account,Para a abertura de conta de entrada saldo não pode ser uma conta de PL +"For opening invoice entry, this date will reflect in the period-wise aging report.","Para a abertura do lançamento da fatura, esta data vai refletir no relatório período sábio envelhecimento." +For ranges,Para faixas +For reference,Para referência +For reference only.,Apenas para referência. +"For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes","Para a comodidade dos clientes, estes códigos podem ser usados ​​em formatos de impressão, como Notas Fiscais e Guias de Remessa" +Form,Forma +Format: hh:mm example for one hour expiry set as 01:00. Max expiry will be 72 hours. Default is 24 hours,Formato: hh: mm para um exemplo de validade definido como hora 01:00. Max termo será de 72 horas. Padrão é de 24 horas +Forum,Fórum +Fraction,Fração +Fraction Units,Unidades fracionadas +Friday,Sexta-feira +From Company,Da Empresa +From Customer,Do Cliente +From Date,A partir da data +From Date must be before To Date,A data inicial deve ser anterior a data final +From DocType,De DocType +From Employee,De Empregado +From Field,De Campo +From PR Date,De PR Data +From Package No.,De No. Package +From Table,A partir da Tabela +Frozen,Congelado +Full Name,Nome Completo +Fully Billed,Totalmente faturado +Fully Completed,Totalmente concluída +GL Control,GL Controle +GL Entry,Lançamento GL +GL Entry: Debit or Credit amount is mandatory for ,GL Entrada: montante de crédito ou débito é obrigatória para +GL Mapper,Mapeamento GL +GL Mapper Detail,Detalhe do Mapeamento GL +GRN,GRN +Gantt Chart,Gráfico de Gantt +Gantt chart of all tasks.,Gráfico de Gantt de todas as tarefas. +Gender,Sexo +General,Geral +General Ledger,Razão Geral +Generate Description HTML,Gerar Descrição HTML +Generate Material Requests (MRP) and Production Orders.,Gerar Pedidos de Materiais (MRP) e ordens de produção. +Generate Salary Slips,Gerar folhas de pagamento +Generate Schedule,Gerar Agenda +"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Gerar guias de remessa de pacotes a serem entregues. Usado para notificar o número do pacote, o conteúdo do pacote e seu peso." +Generates HTML to include selected image in the description,Gera HTML para incluir a imagem selecionada na descrição +Georgia,Geórgia +Get Advances Paid,Obter adiantamentos pagos +Get Advances Received,Obter adiantamentos recebidos +Get Current Stock,Obter Estoque atual +Get Items,Obter itens +Get Last Purchase Rate,Obter Valor da Última Compra +Get Non Reconciled Entries,Obter lançamentos não Reconciliados +Get Open Sales Order,Obter Ordens de Venda abertas +Get Outstanding Invoices,Obter faturas pendentes +Get Purchase Receipt,Obter Recibo de compra +Get Sales Orders,Obter Ordens de Venda +Get Specification Details,Obter detalhes da Especificação +Get Stock and Rate,Obter Estoque e Valor +Get Tax Detail,Obtenha detalhes de Imposto +Get Taxes and Charges,Obter Impostos e Encargos +Get Template,Obter Modelo +Get Terms and Conditions,Obter os Termos e Condições +Get Weekly Off Dates,Obter datas de descanso semanal +Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.,Obter o modelo do atendimento para o qual você deseja importar no formato CSV (valores separados por vírgulas) format.Fill dados no modelo. Salve o modelo na CSV atendimento format.All data 'Presença De Data' inbetween e 'Atendimento Conhecer' virá no modelo com lista de funcionários. +"Get valuation rate and available stock at source/target warehouse on mentioned posting date-time. If serialized item, please press this button after entering serial nos.","Obter valorização e estoque disponível no almoxarifado de origem/destino na data e hora de postagem mencionada. Se for item serializado, pressione este botão depois de entrar os nº de série." +Global Defaults,Padrões globais +Go back to home,Volte para Início +Go to Setup > User Properties to set \ 'territory' for diffent Users.,Vá para Configuração> Propriedades do usuário para definir \ 'território' para usuários diffent. +Goal,Meta +Goals,Metas +Goods received from Suppliers.,Mercadorias recebidas de fornecedores. +Google Analytics ID,ID do Google Analytics +Google Plus One,Google Plus One +Grade,Grau +Graduate,Pós-graduação +Grand Total,Total Geral +Grand Total (Export),Total Geral (Exportação) +Grand Total (Import),Total Geral (Importação) +Grand Total*,Total Geral* +Gratuity LIC ID,ID LIC gratuidade +Gross Margin %,Margem Bruta % +Gross Margin Value,Valor Margem Bruta +Gross Pay,Salário bruto +Gross Pay + Arrear Amount +Encashment Amount - Total Deduction,Salário bruto + Valor em atraso + Valor de cobrança - Dedução Total +Gross Profit,Lucro bruto +Gross Profit (%),Lucro Bruto (%) +Gross Weight,Peso bruto +Gross Weight UOM,UDM do Peso Bruto +Group,Grupo +Group By,Agrupar por +Group or Ledger,Grupo ou Razão +Groups,Grupos +HR,RH +HTML,HTML +HTML / Banner that will show on the top of product list.,HTML / Faixa que vai ser mostrada no topo da lista de produtos. +"HTML print formats for quotes, invoices etc","Formatos de impressão em HTML para cotações, notas fiscais, etc" +Half Day,Meio Dia +Half Yearly,Semestral +Half-yearly,Semestral +Has Batch No,Tem nº de Lote +Has Child Node,Tem nó filho +Has Serial No,Tem nº de Série +Header,Cabeçalho +Heading,Título +Heading Font,Título da fonte +Heads (or groups) against which Accounting Entries are made and balances are maintained.,Contas (ou grupos) contra a qual os lançamentos de contabilidade são feitos e os saldos são mantidos. +Health Concerns,Preocupações com a Saúde +Health Details,Detalhes sobre a Saúde +Held On,Realizada em +Help,Ajudar +Help HTML,Ajuda HTML +Helper for managing return of goods (sales or purchase),Auxiliar para a gestão de devolução de mercadorias (venda ou compra) +Helvetica Neue,Helvetica Neue +"Hence, maximum allowed Manufacturing Quantity","Assim, a Quantidade de Fabricação máxima permitida" +"Here you can maintain family details like name and occupation of parent, spouse and children","Aqui você pode manter detalhes familiares como o nome e ocupação do cônjuge, pai e filhos" +"Here you can maintain height, weight, allergies, medical concerns etc","Aqui você pode manter a altura, peso, alergias, preocupações médica, etc" +Hey there! You need to put at least one item in \ the item table.,Hey there! Você precisa colocar pelo menos um item em \ tabela do item. +Hey! You seem to be using the wrong template. \ Click on 'Download Template' button to get the correct template.,Hey! Você parece estar usando o modelo errado. \ Clique no botão 'Template Download' para obter o modelo correto. +Hidden,Escondido +Hide Actions,Ocultar Ações +Hide Copy,Ocultar Copia +Hide Currency Symbol,Ocultar Símbolo de Moeda +Hide Email,Ocultar E-mail +Hide Heading,Ocultar Título +Hide Print,Ocultar Impressão +Hide Toolbar,Ocultar barra de ferramentas +High,Alto +Highlight,Realçar +History In Company,Histórico na Empresa +Hold,Segurar +Holiday,Feriado +Holiday Block List,Lista de Bloqueios de férias +Holiday Block List Allow,Lista de Bloqueios de férias Permitir +Holiday Block List Allowed,Lista de feriado Bloco admitidos +Holiday Block List Date,Data feriado Lista de Bloqueios +Holiday Block List Dates,Datas de férias Lista de Bloqueios +Holiday Block List Name,Nome de férias Lista de Bloqueios +Holiday List,Lista de feriado +Holiday List Name,Nome da lista de feriados +Holidays,Feriados +Home,Início +Home Control,Início de Controle +Home Page,Página Inicial +Home Page is Products,Página Inicial é Produtos +Home Pages,Páginas Iniciais +Host,Host +"Host, Email and Password required if emails are to be pulled","Host, E-mail e Senha são necessários se desejar obter e-mails" +Hour Rate,Valor por hora +Hour Rate Consumable,Valor por hora de Consumíveis +Hour Rate Electricity,Valor por hora de Eletricidade +Hour Rate Labour,Valor por hora de mão-de-obra +Hour Rate Rent,Valor por hora de Aluguel +Hours,Horas +How frequently?,Com que frequência? +"How should this currency be formatted? If not set, will use system defaults","Como essa moeda deve ser formatada? Se não for definido, serão usados os padrões do sistema" +How to upload,Como fazer o carregamento +Hrvatski,Hrvatski +Human Resources,Recursos Humanos +Human Resources Home,Início de Recursos Humanos +Hurray! The day(s) on which you are applying for leave \ coincide with holiday(s). You need not apply for leave.,Viva! O dia (s) em que você está aplicando para deixar \ coincidir com feriado (s). Você não precisa pedir licença. +I,Eu +ID (name) of the entity whose property is to be set,ID (nome) da entidade cuja propriedade é para ser definida +IDT,IDT +IGHelp,IGHelp +II,II +III,III +IN,EM +INV,INV +INV/10-11/,INV/10-11 / +IV,IV +Icon,Ícone +Icon will appear on the button,O ícone aparecerá no botão +Id of the profile will be the email.,O ID do perfil será o e-mail. +Identification of the package for the delivery (for print),Identificação do pacote para a Entrega (para impressão) +If Monthly Budget Exceeded,Se o orçamento mensal for excedido +"If Sale BOM is defined, the actual BOM of the Pack is displayed as table.Available in Delivery Note and Sales Order","Se BOM venda é definido, o BOM real do pacote é exibido como table.Available na nota de entrega e Ordem de Vendas" +"If Supplier Part Number exists for given Item, it gets stored here","Se Número da Peça do Fornecedor existir para um determinado item, ele fica armazenado aqui" +If Yearly Budget Exceeded,Se orçamento anual for excedido +"If a User does not have access at Level 0, then higher levels are meaningless","Se um usuário não tem acesso nível 0, então os níveis mais altos são irrelevantes" +"If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.","Se marcado, os itens da LDM para a Sub-Montagem serão considerados para obter matérias-primas. Caso contrário, todos os itens da sub-montagem vão ser tratados como matéria-prima." +"If checked, all other workflows become inactive.","Se marcada, todos os outros fluxos de trabalho tornam-se inativos." +"If checked, the Home page will be the default Item Group for the website.","Se marcado, a página inicial do site será o Grupo de Itens padrão." +"If checked, the tax amount will be considered as already included in the Print Rate / Print Amount","Se marcado, o valor do imposto será considerado como já incluído na Impressão de Taxa / Impressão do Valor" +"If disable, 'Rounded Total' field will not be visible in any transaction","Se desativar, 'Arredondado Total' campo não será visível em qualquer transação" +"If image is selected, color will be ignored (attach first)","Se a imagem for selecionada, a cor será ignorada (anexar primeiro)" +If more than one package of the same type (for print),Se mais do que uma embalagem do mesmo tipo (para impressão) +If non standard port (e.g. 587),"Se não for a porta padrão (por exemplo, 587)" +If not applicable please enter: NA,Se não for aplicável digite: NA +"If not checked, the list will have to be added to each Department where it has to be applied.","Se não for controlada, a lista deverá ser adicionado a cada departamento onde tem de ser aplicado." +"If not, create a","Se não, crie um(a)" +"If set, data entry is only allowed for specified users. Else, entry is allowed for all users with requisite permissions.","Se definido, a entrada de dados só é permitida para usuários especificados. Outra, a entrada é permitida para todos os usuários com permissões necessárias." +"If specified, send the newsletter using this email address","Se especificado, enviar a newsletter usando esse endereço de e-mail" +"If the 'territory' Link Field exists, it will give you an option to select it","Se o campo com Link 'território' existe, ele vai te dar uma opção para selecioná-lo" +"If the account is frozen, entries are allowed for the ""Account Manager"" only.","Se a conta estiver congelada, os lançamentos são permitidos apenas para o "Gerente da Conta"." +"If this Account represents a Customer, Supplier or Employee, set it here.","Se essa conta representa um cliente, fornecedor ou funcionário, estabeleça aqui." +If you follow Quality Inspection
    Enables item QA Required and QA No in Purchase Receipt,Se você seguir Inspeção de Qualidade
    Permite Nenhum item obrigatório e QA QA no Recibo de compra +If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Se você tiver Equipe de Vendas e Parceiros de Venda (Parceiros de Canal) eles podem ser marcadas e manter suas contribuições na atividade de vendas +"If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.","Se você criou um modelo padrão no cadastro de Impostos de Compra e Encargos, selecione um e clique no botão abaixo." +"If you have created a standard template in Sales Taxes and Charges Master, select one and click on the button below.","Se você criou um modelo padrão no cadastro de Impostos de Vendas e Encargos, selecione um e clique no botão abaixo." +"If you have long print formats, this feature can be used to split the page to be printed on multiple pages with all headers and footers on each page","Se você formatos longos de impressão, esse recurso pode ser usado para dividir a página a ser impressa em várias páginas com todos os cabeçalhos e rodapés em cada página" +If you involve in manufacturing activity
    Enables item Is Manufactured,Se você envolver na atividade industrial
    Permite que o item é fabricado +Ignore,Ignorar +Image,Imagem +Image View,Ver imagem +Implementation Partner,Parceiro de implementação +Import,Importar +Import Date Format ,Formato de importação de data +Import Log,Importar Log +Import Log1,Importar Log1 +Import data from spreadsheet (csv) files,Importar dados de planilhas (csv) +Important dates and commitments in your project life cycle,Datas importantes e compromissos no ciclo de vida do seu projeto +Imports,Importações +In Dialog,Em diálogo +In Filter,Em Filtro +In List View,Na exibição de lista +In Process,Em Processo +In Report Filter,No Filtro do Relatório +In Store,Na loja +In Words,Por extenso +In Words (Export),Por extenso (Exportação) +In Words (Export) will be visible once you save the Delivery Note.,Por extenso (Exportação) será visível quando você salvar a Guia de Remessa. +In Words (Import),Por extenso (Import) +In Words will be visible once you save the Delivery Note.,Por extenso será visível quando você salvar a Guia de Remessa. +In Words will be visible once you save the Purchase Invoice.,Por extenso será visível quando você salvar a Nota Fiscal de Compra. +In Words will be visible once you save the Purchase Order.,Por extenso será visível quando você salvar a Ordem de Compra. +In Words will be visible once you save the Purchase Receipt.,Por extenso será visível quando você salvar o recibo de compra. +In Words will be visible once you save the Quotation.,Por extenso será visível quando você salvar a cotação. +In Words will be visible once you save the Sales Invoice.,Por extenso será visível quando você salvar a Nota Fiscal de Venda. +In Words will be visible once you save the Sales Order.,Por extenso será visível quando você salvar a Ordem de Venda. +In Words(Import),Por extenso (Importar) +In response to,Em resposta ao(s) +"In the Permission Manager, click on the button in the 'Condition' column for the Role you want to restrict.","No Gerenciador de Permissão, clique no botão na coluna 'Condição' para a função que deseja restringir." +Inactive,Inativo +Incentives,Incentivos +Incharge Name,Nome do Responsável +Income,Renda +Income Account,Conta de Renda +Income Year to Date,Ano de rendimento até a Data +Incoming,Entrada +Incoming Mail Setting,Configuração de entrada de emails +Incoming Rate,Taxa de entrada +Incoming Time,Tempo de entrada +Incoming quality inspection.,Inspeção de qualidade de entrada. +Indent,Recuar +Index,Índice +Indicates that the package is a part of this delivery,Indica que o pacote é uma parte desta entrega +Individual,Individual +Individuals,Indivíduos +Industry,Indústria +Industry Type,Tipo de indústria +Info,Informações +Insert After,Inserir Após +Insert Code,Inserir Código +Insert Style,Inserir Estilo +Inspected By,Inspecionado por +Inspection Criteria,Critérios de Inspeção +Inspection Required,Inspeção Obrigatória +Inspection Type,Tipo de Inspeção +Installation Date,Data de Instalação +Installation Note,Nota de Instalação +Installation Note Item,Item da Nota de Instalação +Installation Status,Estado da Instalação +Installation Time,O tempo de Instalação +Installation record for a Serial No.,Registro de instalação de um nº de série +Installed Qty,Quantidade Instalada +Institute / Conducted By,Instituto / Conduzido por +Instructions,Instruções +Int,Int +Integrations,Integrações +Interested,Interessado +Internal,Interno +Intro HTML,Intro HTML +Introduce your company to the website visitor.,Apresente sua empresa para o visitante do site. +Introduction,Introdução +Introductory information for the Contact Us Page,Informação introdutória para a página Fale Conosco +Invalid Email Address,Endereço de email inválido +Inventory,Inventário +Inverse,Inverso +Invoice Date,Data da nota fiscal +Invoice Details,Detalhes da nota fiscal +Invoice No,Nota Fiscal nº +Invoice Period From Date,Período Inicial de Fatura +Invoice Period To Date,Período Final de Fatura +Is Active,É Ativo +Is Advance,É antecipado +Is Asset Item,É item de ativo +Is Cancelled,É cancelado +Is Carry Forward,É encaminhado +Is Child Table,É tabela filho +Is Default,É padrão +Is Encash,É cobrança +Is LWP,É LWP +Is Mandatory Field,É campo obrigatório +Is Opening,É abertura +Is PL Account,É Conta PL +Is POS,É PDV +Is Primary Address,É o endereço principal +Is Primary Contact,É o contato principal +Is Purchase Item,É item de compra +Is Sales Item,É item de venda +Is Service Item,É item de serviço +Is Shipping Address,É endereço de envio +Is Single,É único +Is Standard,É Padrão +Is Stock Item,É item de estoque +Is Sub Contracted Item,É item subcontratado +Is Subcontracted,É subcontratada +Is Submittable,É enviável +Is it a Custom DocType created by you?,É um DocType personalizado criado por você? +Is this Tax included in Basic Rate?,Este imposto está incluído no Valor Base? +Issue,Questão +Issue Date,Data da Questão +Issue Details,Detalhes da Questão +It was raised because the (actual + ordered + indented - reserved) quantity reaches re-order level when the following record was created,Foi levantada porque a (real + + ordenou recuado - reservado) a quantidade chega a novo pedido de nível quando o registro a seguir foi criado +Item,Item +Item Advanced,Item antecipado +Item Barcode,Código de barras do Item +Item Batch Nos,Nº do Lote do Item +Item Classification,Classificação do Item +Item Code,Código do Item +Item Customer Detail,Detalhe do Cliente do Item +Item Description,Descrição do Item +Item Desription,Descrição do Item +Item Details,Detalhes do Item +Item Group,Grupo de Itens +Item Group Name,Nome do Grupo de Itens +Item Groups in Details,Detalhes dos Grupos de Itens +Item Image (if not slideshow),Imagem do Item (se não for slideshow) +Item Name,Nome do Item +Item Price,Preço do Item +Item Prices,Preços de itens +Item Quality Inspection Parameter,Parâmetro de Inspeção de Qualidade do Item +Item Reorder,Item Reordenar +Item Serial No,Nº de série do Item +Item Serial Nos,Nº de série de Itens +Item Supplier,Fornecedor do Item +Item Supplier Details,Detalhes do Fornecedor do Item +Item Tax,Imposto do Item +Item Tax Amount,Valor do Imposto do Item +Item Tax Rate,Taxa de Imposto do Item +Item Tax1,Item Tax1 +Item To Manufacture,Item Para Fabricação +Item UOM,UDM do Item +Item Website Specification,Especificação do Site do Item +Item Website Specifications,Especificações do Site do Item +Item Wise Tax Detail ,Detalhe Imposto relativo ao Item +Item classification.,Classificação do Item. +Item to be manufactured or repacked,Item a ser fabricado ou reembalado +Item will be saved by this name in the data base.,O Item será salvo com este nome na base de dados. +"Item, Warranty, AMC (Annual Maintenance Contract) details will be automatically fetched when Serial Number is selected.","Detalhes do Item, Garantia, CAM (Contrato Anual de Manutenção) serão carregados automaticamente quando o número de série for selecionado." +Item-Wise Price List,Lista de Preços relativa ao Item +Item: ',Item: ' +Items,Itens +"Items to be requested which are ""Out of Stock"" considering all warehouses based on projected qty and minimum order qty","Os itens a serem solicitados que estão "Fora de Estoque", considerando todos os almoxarifados com base na quantidade projetada e pedido mínimo" +Items which do not exist in Item master can also be entered on customer's request,Itens que não existem no Cadastro de Itens também podem ser inseridos na requisição do cliente +Itemwise Discount,Desconto relativo ao Item +JSON,JSON +JV,JV +Javascript,Javascript +Javascript to append to the head section of the page.,Javascript para acrescentar ao cabeçalho da página. +Job Applicant,Candidato a emprego +Job Opening,Vaga de emprego +Job Profile,Perfil da vaga +Job Title,Cargo +"Job profile, qualifications required etc.","Perfil da vaga, qualificações exigidas, etc" +Jobs Email Settings,Configurações do e-mail de empregos +Journal Entries,Lançamentos do livro Diário +Journal Entry,Lançamento do livro Diário +Journal Voucher,Comprovante do livro Diário +Journal Voucher Detail,Detalhe do Comprovante do livro Diário +Journal Voucher Detail No,Nº do Detalhe do Comprovante do livro Diário +KRA,KRA +"Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ","Mantenha o controle das campanhas de vendas. Mantenha o controle de prospectos, cotações, Ordens de Venda, etc para mensurar o Retorno do Investimento." +Keep a track of all communications,Mantenha o controle de todas as comunicações +Keep a track of communication related to this enquiry which will help for future reference.,"Mantenha o controle de comunicações relacionadas a esta consulta, o que irá ajudar para futuras referências." +Keep a track on communications regarding this Quotation. This will help you remember earlier communications in case the Customer comes back again,Mantenha o controle sobre as comunicações relativas a este Orçamento. Isso vai ajudar você a lembrar de comunicações anteriores para o caso de o cliente voltar novamente +Key,Chave +Key Performance Area,Área Chave de Performance +Key Responsibility Area,Área Chave de Responsabilidade +Knowledge Base,Base de Conhecimento +LEAD,LEAD +LEAD/10-11/,LEAD/10-11 / +LEAD/MUMBAI/,LEAD / MUMBAI / +LR Date,Data LR +LR No,Nº LR +Label,Etiqueta +Label Help,Ajuda sobre etiquetas +Lacs,Lacs +Landed Cost Item,Custo de desembarque do Item +Landed Cost Items,Custo de desembarque dos Itens +Landed Cost Purchase Receipt,Recibo de compra do custo de desembarque +Landed Cost Purchase Receipts,Recibos de compra do custo de desembarque +Landed Cost Wizard,Assistente de Custo de Desembarque +Landing Page,Página de chegada +Language,Idioma +Language preference for user interface (only if available).,Idioma de preferência para interface de usuário (se disponível). +Last Contact Date,Data do último contato +Last IP,Último IP +Last Login,Último Login +Last Modified On,Última modificação em +Last Name,Sobrenome +Last Purchase Rate,Valor da última compra +Last Update,Última Atualização +Last Update By,Última Atualização por +Latest Updates,Últimas Atualizações +Lato,Lato +Lead,Prospecto +Lead Details,Detalhes do Prospecto +Lead Lost,Prospecto Perdido +Lead Name,Nome do Prospecto +Lead Owner,Proprietário do Prospecto +Lead Ref,Ref. do Prospecto +Lead Source,Chumbo Fonte +Lead Status,Chumbo Estado +Lead Time Date,Prazo de entrega +Lead Time Days,Prazo de entrega +Lead Time days is number of days by which this item is expected in your warehouse. This days is fetched in Material Request when you select this item.,Levar dias Tempo é o número de dias em que este item é esperado no seu armazém. Este dia é buscada em solicitar material ao selecionar este item. +Lead Type,Tipo de Prospecto +Leave Allocation,Alocação de Licenças +Leave Allocation Tool,Ferramenta de Alocação de Licenças +Leave Application,Solicitação de Licenças +Leave Approver,Aprovador de Licenças +Leave Balance Before Application,Saldo de Licenças antes da solicitação +Leave Block List,Deixe Lista de Bloqueios +Leave Block List Allow,Deixe Lista de Bloqueios Permitir +Leave Block List Allowed,Deixe Lista de Bloqueios admitidos +Leave Block List Date,Deixe Data Lista de Bloqueios +Leave Block List Dates,Deixe as datas Lista de Bloqueios +Leave Block List Name,Deixe o nome Lista de Bloqueios +Leave Blocked,Deixe Bloqueados +Leave Control Panel,Painel de Controle de Licenças +Leave Encashed?,Licenças cobradas? +Leave Encashment Amount,Valor das Licenças cobradas +Leave Setup,Configurar Licenças +Leave Type,Tipo de Licenças +Leave Type Name,Nome do Tipo de Licença +Leave Without Pay,Licença sem pagamento +Leave allocations.,Alocações de Licenças. +Leave blank if considered for all branches,Deixe em branco se considerado para todos os ramos +Leave blank if considered for all departments,Deixe em branco se considerado para todos os departamentos +Leave blank if considered for all designations,Deixe em branco se considerado para todas as designações +Leave blank if considered for all employee types,Deixe em branco se considerado para todos os tipos de empregados +Leave blank if considered for all grades,Deixe em branco se considerado para todos os graus +Leave by,Deixe por +"Leave can be approved by users with Role, ""Leave Approver""",A licença pode ser aprovado por usuários com função de "Aprovador de Licenças" +Ledger,Razão +Left,Esquerda +Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.,"Pessoa Jurídica / Subsidiária, com um plano de Contas separado, pertencentes à Organização." +Letter Head,Timbrado +Letter Head Image,Imagem do timbrado +Letter Head Name,Nome do timbrado +Letter heads for print,Timbrado para impressão +Level,Nível +"Level 0 is for document level permissions, higher levels for field level permissions.","Nível 0 é para permissões em nível de documento, os níveis mais elevados são permissões em nível de campo." +Lft,Esq. +Link,Link +Link to other pages in the side bar and next section,Link para outras páginas na barra lateral e seção seguinte +Linked In Share,Linked In Compartilhar +Linked With,Ligado com +List,Lista +List items that form the package.,Lista de itens que compõem o pacote. +"List of Item Groups to be shown in ""All Products"" menu - in the sequence wanted and with number of indents (left spacing to show a tree effect).",Lista de Grupos de Itens a serem mostrado no menu "Todos os Produtos" - na sequência desejada e com o número de recuos (espaçamento à esquerda para mostrar um efeito de árvore). +List of companies (not customers / suppliers),Lista das empresas (não clientes / fornecedores) +List of holidays.,Lista de feriados. +List of patches executed,Lista de patches executados +List of records in which this document is linked,Lista de registros a que este documento está ligado +List this Item in multiple groups on the website.,Listar este item em vários grupos no site. +Live Chat,Chat ao vivo +Load Print View on opening of an existing form,Carregar a visualização de impressão na abertura de um formulário existente +Loading,Carregando +Loading Report,Relatório de carregamento +Location,Localização +Log of Scheduler Errors,Log de erros do agendador +Login After,Login após +Login Before,Login antes +Login Id,ID de Login +Login Page,Página de Login +Logout,Sair +Long Text,Texto Longo +Lost Reason,Razão da perda +Low,Baixo +Lower Income,Baixa Renda +Lucida Grande,Lucida Grande +MIS Control,Controle MIS +MREQ-,Mreq- +MTN Details,Detalhes da MTN +Mail Footer,Rodapé do E-mail +Mail Password,Senha do E-mail +Mail Port,Porta do E-mail +Mail Server,Servidor de E-mail +Main Reports,Relatórios principais +Main Section,Seção Principal +Maintain same rate throughout purchase cycle,Manter o mesmo valor através de todo o ciclo de compra +Maintenance,Manutenção +Maintenance Date,Data de manutenção +Maintenance Details,Detalhes da manutenção +Maintenance Schedule,Programação da Manutenção +Maintenance Schedule Detail,Detalhe da Programação da Manutenção +Maintenance Schedule Item,Item da Programação da Manutenção +Maintenance Status,Estado da manutenção +Maintenance Time,Tempo da manutenção +Maintenance Type,Tipo de manutenção +Maintenance Visit,Visita de manutenção +Maintenance Visit Purpose,Finalidade da visita de manutenção +Major/Optional Subjects,Assuntos Principais / Opcionais +Make Bank Voucher,Fazer Comprovante Bancário +Make Credit Note,Fazer Nota de Crédito +Make Debit Note,Fazer Nota de Débito +Make Difference Entry,Fazer Lançamento da Diferença +Make Excise Invoice,Fazer fatura de imposto +Make Stock Entry,Fazer lançamento de estoque +Make a new,Fazer um novo +Make sure that the transactions you want to restrict have a Link field 'territory' that maps to a 'Territory' master.,Certifique-se de que as operações que pretende restringir tenham um campo de ligação "Território" que mapeia para um cadastro de "Território". +Male,Masculino +Manage cost of operations,Gerenciar custo das operações +Manage numbering series,Gerenciar séries de numeração +Manage sales or purchase returns,Gerenciar devoluções de compra e venda +Mandatory,Obrigatório +"Mandatory if Stock Item is ""Yes""",Obrigatório se Item de estoque for "Sim" +Manufacture against Sales Order,Fabricação contra a Ordem de Venda +Manufacture/Repack,Fabricar / Reembalar +Manufactured Qty,Qtde. fabricada +Manufactured quantity will be updated in this warehouse,Quantidade fabricada será atualizada neste almoxarifado +Manufacturer,Fabricante +Manufacturer Part Number,Número de peça do fabricante +Manufacturing,Fabricação +Manufacturing Home,Início de Fabricação +Manufacturing Quantity,Quantidade de fabricação +Map,Mapa +Margin,Margem +Marital Status,Estado civil +Markdown Reference,Referência de Desconto +Market Segment,Segmento de mercado +Married,Casado +Mass Mailing,Divulgação em massa +Master,Cadastro +Master Name,Nome do Cadastro +Master Type,Tipo de Cadastro +Masters,Cadastros +Mat Detail No,Nº do Detalhe Mat +Match,Combinar +Match Id,ID da combinação +Match non-linked Invoices and Payments.,Combinar Faturas e Pagamentos não relacionados. +Material Issue,Emissão de material +Material Receipt,Recebimento de material +Material Request,Pedido de material +Material Request Date,Data de Solicitação de material +Material Request Detail No,Detalhe materiais Pedido Não +Material Request For Warehouse,Pedido de material para Armazém +Material Request Item,Item de solicitação de material +Material Request Items,Pedido de itens de material +Material Request No,Pedido de material no +Material Request Type,Tipo de solicitação de material +Material Request used to make this Stock Entry,Pedido de material usado para fazer essa entrada de material +Material Transfer,Transferência de material +Materials,Materiais +Materials Required (Exploded),Materiais necessários (explodida) +Materials Requirement Planning (MRP),Planejamento dos Recursos de Manufatura (PRM) +Max Attachments,Anexos Max. +Max Days Leave Allowed,Período máximo de Licença +Max Discount (%),Desconto Máx. (%) +Max. Limit,Max. Limitar +"Meaning of Submit, Cancel, Amend","Significado do Enviar, Cancelar, Alterar" +Medium,Médio +Merge,Unir +Merge Warehouses,Unir Almoxarifados +Merge With,Unir com +Message,Mensagem +Message Parameter,Parâmetro da mensagem +Message greater than 160 character will be splitted into multiple mesage,Mensagens maiores do que 160 caracteres vão ser divididos em múltiplas mensagens +Message when Cond. False,Mensagem quando Condição for Falsa +Messages,Mensagens +Method,Método +Middle Income,Rendimento Médio +Middle Name (Optional),Nome do Meio (Opcional) +Milestone,Marco +Milestone Date,Data do Marco +Milestones,Marcos +Milestones will be added as Events in the Calendar,Marcos serão adicionados como eventos no calendário +Millions,Milhões +Min Order Qty,Pedido Mínimo +Minimum Order Qty,Pedido Mínimo +Misc,Diversos +Misc Details,Detalhes Diversos +Miscellaneous,Diversos +Miscelleneous,Diversos +Mobile No,Telefone Celular +Mobile No.,Telefone Celular. +Mode of Payment,Forma de Pagamento +Modified Amount,Quantidade modificada +Modified by,Modificado(a) por +Module,Módulo +Module Def,Módulo Def +Module Name,Nome do Módulo +Modules,Módulos +Modules Setup,Configuração dos Módulos +Monday,Segunda-feira +Month,Mês +Monthly,Mensal +Monthly salary statement.,Declaração salarial mensal. +Monthly salary template.,Modelo de declaração salarial mensal. +More,Mais +More Details,Mais detalhes +More Info,Mais informações +More content for the bottom of the page.,Mais conteúdo para a parte de baixo da página. +Moving Average,Média móvel +Moving Average Rate,Taxa da Média Móvel +Mr,Sr. +Ms,Sra. +Multi Ledger Report Detail,Detalhe do Relatório de múltiplos Livros-Razão +Multiple Item Prices,Preços de múltiplos itens +Mupltiple Item prices.,Preços de múltiplos itens. +Must have report permission to access this report.,Deve ter permissão para acessar relatório deste relatório. +Must specify a Query to run,Deve especificar uma consulta para executar +My Company,Minha Empresa +My Settings,Minhas Configurações +NL-,NL- +Name,Nome +Name Case,Caso Nome +Name as entered in Sales Partner master,Nome como consta no cadastro de Parceiros de Vendas +Name of organization from where lead has come,Nome da Organização de onde veio o Prospecto +Name of person or organization that this address belongs to.,Nome da pessoa ou organização a que este endereço pertence. +Name of the Budget Distribution,Nome da Distribuição de Orçamento +Name of the entity who has requested for the Material Request,Nome da entidade que solicitou para a solicitação de materiais +Name of the entity who has requested for the Purchase Requisition,Nome da entidade que solicitou para o Pedido de Compra +Naming,Nomeando +Naming Series,Séries nomeadas +Naming Series Options,Opções das Séries nomeadas +Negative balance is not allowed for account ,Saldo negativo não é permitido por conta +Net Pay,Pagamento Líquido +Net Pay (in words) will be visible once you save the Salary Slip.,Pagamento líquido (por extenso) será visível quando você salvar a folha de pagamento. +Net Total,Total Líquido +Net Total (Import),Total Líquido (Importação) +Net Total*,Total Líquido* +Net Weight,Peso Líquido +Net Weight UOM,UDM do Peso Líquido +Net Weight of each Item,Peso líquido de cada item +New,Novo +New BOM,Nova LDM +New Communications,Nova Comunicação +New Delivery Notes,Novas Guias de Remessa +New Enquiries,Novas Consultas +New Leads,Novos Prospectos +New Leave Application,Aplicação deixar Nova +New Leaves Allocated,Novas Licenças alocadas +New Leaves Allocated (In Days),Novas Licenças alocadas (em dias) +New Material Requests,Novos Pedidos Materiais +New Name,Novo nome +New Password,Nova senha +New Projects,Novos Projetos +New Purchase Orders,Novas Ordens de Compra +New Purchase Receipts,Novos Recibos de Compra +New Quotations,Novas Cotações +New Record,Novo Registro +New Sales Orders,Novos Pedidos de Venda +New Stock Entries,Novos lançamentos de estoque +New Stock UOM,Nova UDM de estoque +New Supplier Quotations,Novas cotações de fornecedores +New Support Tickets,Novos pedidos de suporte +New Update,Nova Atualização +New Workplace,Novo local de trabalho +New value to be set,Novo valor a ser definido +Newsletter,Boletim informativo +Newsletter Content,Conteúdo do boletim +Newsletter Status,Estado do boletim +Next Communcation On,Próximo Comunicação em +Next Contact By,Próximo Contato Por +Next Contact Date,Data do próximo Contato +Next Date,Próxima data +Next State,Próximo Estado +Next actions,Próximas ações +Next email will be sent on:,Próximo e-mail será enviado em: +No,Não +No Action,Nenhuma ação +No Communication tagged with this ,Nenhuma comunicação marcada com esta +No Copy,Nenhuma cópia +No Permission,Nenhuma permissão +No Permission to ,Sem permissão para +No Permissions set for this criteria.,Sem permissões definidas para este critério. +No Report Loaded. Please use query-report/[Report Name] to run a report.,"Não Relatório Loaded. Por favor, use-consulta do relatório / [Nome do relatório] para executar um relatório." +No User Properties found.,Propriedades do Usuário não encontradas. +No of Requested SMS,Nº de SMS pedidos +No of Sent SMS,Nº de SMS enviados +No of Visits,Nº de Visitas +No records tagged.,Não há registros marcados. +"No table is created for Single DocTypes, all values are stored in tabSingles as a tuple.","Nenhuma tabela é criada para DocTypes simples, todos os valores são armazenados em tabSingles como uma tupla." +None: End of Workflow,Nenhum: Fim do fluxo de trabalho +Not,Não +Not Active,Não Ativo +Not Applicable,Não Aplicável +Not Billed,Não Faturado +Not Delivered,Não Entregue +Not Found,Não Encontrado +Not Linked to any record.,Não relacionado a qualquer registro. +Not Permitted,Não Permitido +Not allowed for: ,Não é permitido para: +Not enough permission to see links.,Sem permissão suficiente para ver os links. +Not in Use,Não está em uso +Not interested,Não está interessado +Not linked,Não ligados +Note: Email will not be sent to disabled users,Nota: e-mails não serão enviado para usuários desabilitados +Note: Other permission rules may also apply,Nota: Outras regras de permissão também podem se aplicar +Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts,Nota: você pode gerenciar Múltiplos Endereços ou Contatos através de Endereços & Contatos +Note: maximum attachment size = 1mb,Nota: tamanho máximo do anexo = 1MB +Notes,Notas +Nothing to show,Nada para mostrar +Notice - Number of Days,Aviso - número de dias +Notification Control,Controle de Notificação +Notification Email Address,Endereço de email de notificação +Notify By Email,Notificar por e-mail +Notify by Email on Re-order,Notificar por e-mail ao Reordenar +Number Format,Formato de número +O+,O+ +O-,O- +OPPT,OPPT +Ocean,Oceano +Old Parent,Pai Velho +Old Style Reports,Relatórios no Estilo Antigo +On,Em +On Net Total,No Total Líquido +On Previous Row Amount,No Valor na linha anterior +On Previous Row Total,No Total na linha anterior +"Once you have set this, the users will only be able access documents with that property.","Depois de ter definido isso, os usuários só poderão acessar documentos com esta propriedade." +One or multiple Sales Order no which generated this Material Request,Um ou nenhum Ordem múltipla de vendas que gerou este pedido se +One or multiple Sales Order no which generated this Purchase Requisition,Um ou vários nº de Ordens de Venda que gerou este Pedido de Compra +Only Administrator allowed to create Query / Script Reports,Administrador só é permitido para criar Consulta / Script Relatórios +Only Administrator can save a standard report. Please rename and save.,"Somente o administrador pode salvar um relatório padrão. Por favor, renomear e salvar." +Only Allow Edit For,Somente permite edição para +Only System Manager can create / edit reports,Somente o Gerente do Sistema pode criar / editar relatórios +Only leaf nodes are allowed in transaction,Somente nós-folha são permitidos em transações +Open,Abrir +Open Sans,Open Sans +Open Tickets,Tickets abertos +Opening Date,Data de abertura +Opening Time,Horário de abertura +Opening for a Job.,Vaga de emprego. +Operating Cost,Custo de Operação +Operation Description,Descrição da operação +Operation No,Nº da operação +Operation Time (mins),Tempo de Operação (minutos) +Operations,Operações +Operator,Operador +Opportunity,Oportunidade +Opportunity Date,Data da oportunidade +Opportunity From,Oportunidade De +Opportunity Item,Item da oportunidade +Opportunity Items,Itens da oportunidade +Opportunity Lost,Oportunidade perdida +Opportunity No,Nº da oportunidade +Opportunity Type,Tipo de Oportunidade +Options,Opções +Options Help,Ajuda sobre Opções +Order Confirmed,Ordem Confirmada +Order Lost,Ordem Perdida +Order Type,Tipo de Ordem +Ordered Items To Be Billed,Itens encomendados a serem faturados +Ordered Items To Be Delivered,Itens encomendados a serem entregues +Ordered Qty,Qtde. encomendada +Ordered Quantity,Quantidade encomendada +Orders released for production.,Ordens liberadas para produção. +Organization,Organização +Original Message,Mensagem original +Other,Outro +Other Details,Outros detalhes +Other Income Detail,Detalhe sobre Outras Receitas +Out going mail server and support ticket mailbox,Servidor de e-mail de saída e caixa de correio de tickets de suporte +Out of AMC,Fora do CAM +Out of Warranty,Fora de Garantia +Outgoing,De Saída +Outgoing Mail Server,Servidor de e-mails de saída +Outgoing Mails,E-mails de saída +Outstanding Amount,Quantia em aberto +Outstanding cannot be less than zero. \ Please match exact outstanding.,Excelente não pode ser menor que zero. \ Por favor correspondência exata excelente. +Outstanding for Voucher ,Destaque para Vale +Over Heads,Despesas gerais +Overhead,Despesas gerais +Overload Query,Consulta sobrecarregada +Overwrite,Sobrescrever +Owned,Pertencente +P.O. Date,Data PO +P.O. No,Nº PO +PAN Number,Número PAN +PF No.,Nº PF. +PF Number,Número PF +PI/2011/,PI/2011 / +PIN,PIN +PO,PO +PO Date,Data PO +PO No,Nº PO +POP3 Mail Server,Servidor de e-mail POP3 +POP3 Mail Server (e.g. pop.gmail.com),"Servidor de e-mail POP3 (por exemplo, pop.gmail.com)" +POP3 Mail Settings,Configurações de e-mail pop3 +POP3 mail server (e.g. pop.gmail.com),"Servidor de e-mail POP3 (por exemplo, pop.gmail.com)" +POP3 server e.g. (pop.gmail.com),"Servidor de e-mail POP3 (por exemplo, pop.gmail.com)" +POS Setting,Configuração de PDV +PR Detail,Detalhe PR +PRO,PRO +PS,PS +Package Item Details,Detalhes do Item do Pacote +Package Items,Itens do pacote +Package Weight Details,Detalhes do peso do pacote +Packed Quantity,Quantidade embalada +Packing Details,Detalhes da embalagem +Packing Detials,Detalhes da embalagem +Packing List,Lista de embalagem +Packing Slip,Guia de Remessa +Packing Slip Item,Item da Guia de Remessa +Packing Slip Items,Itens da Guia de Remessa +Page,Página +Page Break,Quebra de página +Page HTML,Página HTML +Page Len,Página Len +Page Name,Nome da Página +Page Role,Função da página +Page content,Conteúdo da página +Page not found,Página não encontrada +Page to show on the website,Página para mostrar no site +"Page url name (auto-generated) (add "".html"")",Nome da página url (gerado automaticamente) (adicione ".html") +Paid Amount,Valor pago +Parameter,Parâmetro +Parent Account,Conta pai +Parent BOM,LDM pai +Parent Cost Center,Centro de Custo pai +Parent Customer Group,Grupo de Clientes pai +Parent Detail docname,Docname do Detalhe pai +Parent Doc Type,Tipo Doc pai +Parent Item,Item Pai +Parent Item Group,Grupo de item pai +Parent Label,Etiqueta pai +Parent Sales Person,Vendedor pai +Parent Territory,Território pai +Parenttype,Parenttype +Partially Completed,Parcialmente concluída +Participants,Participantes +Particulars,Características +Partly Billed,Parcialmente faturado +Partly Delivered,Parcialmente entregue +Partner,Parceiro +Partner Target Detail,Detalhe da Meta do parceiro +Partner Type,Tipo de parceiro +Passport Number,Número do Passaporte +Password,Senha +Password Expires in (days),Senha expira em (dias) +Patch,Remendo +Patch Log,Log de Patches +Pay To / Recd From,Pagar Para/ Recebido De +Payables,Contas a pagar +Payables Group,Grupo de contas a pagar +Payment Entries,Lançamentos de pagamento +Payment Entry has been modified after you pulled it. Please pull it again.,"Entrada de pagamento foi modificada depois que você tirou isso. Por favor, puxe-o novamente." +Payment Reconciliation,Reconciliação de pagamento +Payment Terms,Condições de Pagamento +Payment days,Dias de pagamento +Payment to Invoice Matching Tool,Ferramenta de Pagamento contra Fatura correspondente +Payment to Invoice Matching Tool Detail,Detalhe da Ferramenta de Pagamento contra Fatura correspondente +Payments,Pagamentos +Payroll Setup,Configuração da folha de pagamento +Pending,Pendente +Pending Review,Revisão pendente +Percent,Por cento +Percent Complete,Porcentagem Concluída +Percentage Allocation,Alocação percentual +Percentage variation in quantity to be allowed while receiving or delivering this item.,Variação percentual na quantidade a ser permitido ao receber ou entregar este item. +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

    ,"Percentagem que estão autorizados a receber ou entregar além da quantidade encomendada.

    Por exemplo: Se você encomendou 100 unidades e seu limite é de 10%, então você está autorizado a receber 110 unidades

    " +Performance appraisal.,Avaliação de desempenho. +Period Closing Voucher,Comprovante de Encerramento período +Periodicity,Periodicidade +Perm Level,Nível Permanente +Permanent Accommodation Type,Tipo de Alojamento Permanente +Permanent Address,Endereço permanente +Permission Control,Controle de Permissão +Permission Engine,Mecanismo de Permissão +Permission Level,Nível de Permissão +Permission Levels,Níveis de Permissão +Permission Manager,Gerenciador de Permissão +Permission Rules,Regras de Permissão +Permissions,Permissões +Permissions Settings,Configurações de Permissões +Permissions are automatically translated to Standard Reports and Searches,As permissões são automaticamente traduzidos para Relatórios Padrão e Pesquisas +"Permissions are set on Roles and Document Types (called DocTypes) by restricting read, edit, make new, submit, cancel, amend and report rights.","As permissões são definidas em Funções e Tipos de Documentos (chamados DocTypes) restringindo direitos de leitura, edição, criação, envio, cancelamento e alteração." +Permissions at higher levels are 'Field Level' permissions. All Fields have a 'Permission Level' set against them and the rules defined at that permissions apply to the field. This is useful incase you want to hide or make certain field read-only.,Permissões em níveis mais elevados são permissões em "Nível de Campo". Todos os campos têm um 'Nível de Permissão" estabelecido contra eles e as regras definidas naquele Nível de Permissão se aplicam ao campo. Isto é útil no caso de você querer ocultar ou tornar um determinado campo em somente leitura. +"Permissions at level 0 are 'Document Level' permissions, i.e. they are primary for access to the document.","Permissões no nível 0 são permissões ao 'Nível de Documento", ou seja, são básicas para o acesso ao documento." +Permissions translate to Users based on what Role they are assigned,As Permissões passam aos usuários com base na função a que são atribuídos +Person,Pessoa +Person To Be Contacted,Pessoa a ser contatada +Personal Details,Detalhes pessoais +Personal Email,E-mail pessoal +Phone,Telefone +Phone No,Nº de telefone +Phone No.,Nº de telefone. +Pick Columns,Escolha as Colunas +Pin Code,Código PIN +Pincode,PINCODE +Place of Issue,Local de Emissão +Plan for scheduled maintenance contracts.,Plano para contratos de manutenção programados. +Planned Qty,Qtde. planejada +Planned Quantity,Quantidade planejada +Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.,Por favor insira a correta Abreviação ou Nome Curto pois ele será adicionado como sufixo a todas as Contas. +Please check,"Por favor, verifique" +Please enter Bill Date,Por favor insira Data Bill +Please enter valid ,"Por favor, insira válido" +Please save the Newsletter before sending.,"Por favor, salve o boletim antes de enviar." +Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year,Por favor selecione Encaminhar se você também quer incluir o saldo de licenças do ano fiscal anterior neste ano fiscal +Please select: ,"Por favor, selecione: " +Please specify Default Currency in Company Master \ and Global Defaults,"Por favor, especificar a moeda padrão na empresa MASTER \ e Padrões Globais" +Please specify a valid,"Por favor, especifique um válido" +Point of Sale,Ponto de Venda +Point-of-Sale Setting,Configurações de Ponto-de-Venda +Points,Pontos +Post Graduate,Pós-Graduação +Post Topic,Postar Tópico +Posting Date,Data da Postagem +Posting Time,Horário da Postagem +Potential Sales Deal,Negócio de Vendas em potencial +Potential opportunities for selling.,Oportunidades potenciais para a venda. +"Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.","Precisão para campos Float (quantidade, descontos, percentuais, etc) é apenas para exibição. Floats ainda serão calculado até 6 casas decimais." +Prefix,Prefixo +Present,Apresentar +Prevdoc DocType,Prevdoc DocType +Prevdoc Doctype,Prevdoc Doctype +Preview,Visualização +Previous Work Experience,Experiência anterior de trabalho +Price List,Lista de Preços +Price List Currency,Moeda da Lista de Preços +Price List Currency Conversion Rate,Taxa de conversão da moeda da lista de preços +Price List Exchange Rate,Taxa de Câmbio da Lista de Preços +Price List Master,Cadastro de Lista de Preços +Price List Name,Nome da Lista de Preços +Price List Rate,Taxa de Lista de Preços +Price List Rate*,Taxa de Lista de Preços* +Price List and Currency,Lista de Preços e Moeda +Price Lists and Rates,Listas de Preços e Tarifas +Primary,Primário +Print Format,Formato de impressão +Print Heading,Cabeçalho de impressão +Print Hide,Ocultar impressão +Print Width,Largura de impressão +Print Without Amount,Imprimir Sem Quantia +Priority,Prioridade +Private,Privado +Process,Processo +Process Payroll,Processa folha de pagamento +Produced Quantity,Quantidade produzida +Product Categories,Categorias de Produtos +Product Category for website,Categoria de Produto para o site +Product Enquiry,Consulta de Produto +Product Group,Grupo de Produtos +"Product Groups that are listed on the website. The first product group from this list will be listed by default on the ""Products Page""",Grupos de produtos listados no site. O primeiro grupo de produtos desta lista serão listados por padrão na "Página de Produtos" +Product Settings,Configurações do produto +Production,Produção +Production Order,Ordem de Produção +Production Plan Item,Item do plano de produção +Production Plan Items,Itens do plano de produção +Production Plan Sales Order,Ordem de Venda do Plano de Produção +Production Plan Sales Orders,Ordens de Venda do Plano de Produção +Production Planning (MRP),Planejamento de Produção (PRM) +Production Planning Tool,Ferramenta de Planejamento da Produção +Products Settings,Configurações de produtos +"Products will be sorted by weight-age in default searches. More the weight-age, higher the product will appear in the list.","Os produtos serão classificados por peso em buscas padrão. Maior o peso, mais alto o produto irá aparecer na lista." +Profile,Perfil +Profile Control,Controle de Perfil +Profile Defaults,Padrões de Perfil +Profile Represents a User in the system.,Perfil representa um usuário no sistema. +Program / Seminar Title,Programa / Título do Seminário +Project,Projeto +Project Activity,Atividade do Projeto +Project Activity Update,Atualização da Atividade do Projeto +Project Control,Controle de Projeto +Project Costing,Custo do Projeto +Project Details,Detalhes do Projeto +Project Milestone,Marco do Projeto +Project Milestones,Marcos do Projeto +Project Name,Nome do Projeto +Project Start Date,Data de início do Projeto +Project Tasks,Tarefas do Projeto +Project Type,Tipo de Projeto +Project Value,Valor do Projeto +Project activity / task.,Atividade / tarefa do projeto. +Project master.,Cadastro de Projeto. +Project will get saved and will be searchable with project name given,O Projeto será salvo e poderá ser pesquisado através do nome dado +Projected Qty,Qtde. Projetada +Projects,Projetos +Projects Home,Início de Projetos +Prompt email sending to customers and suppliers,E-mail Prompt envio a clientes e fornecedores +Prompt for Email on Submission of,Solicitar e-mail no envio da +Properties,Propriedades +Property,Propriedade +Property Setter,Setter propriedade +Property Setter overrides a standard DocType or Field property,Setter propriedade substitui uma propriedade DocType ou Campo padrão +Property Type,Tipo de propriedade +Provide email id registered in company,Fornecer Endereço de E-mail registrado na empresa +Public,Público +Published,Publicado +Pull Emails from the Inbox and attach them as Communication records (for known contacts).,Puxar e-mails da caixa de entrada e anexe-os como registros de comunicação (para contatos conhecidos). +Pull Opportunity Detail,Puxar Detalhe da oportunidade +Pull Payment Entries,Puxar os lançamentos de pagamento +Pull Purchase Order Details,Puxar Detalhes da Ordem de Compra +Pull Quotation Items,Puxar Itens da cotação +Pull Sales Order Items,Puxar itens da Ordem de Venda +Pull items from Sales Order mentioned in the above table.,Puxar itens da Ordem de Venda mencionada na tabela acima. +Pull sales orders (pending to deliver) based on the above criteria,Puxar as Ordens de Venda (pendentes de entrega) com base nos critérios acima +Pur Order,Ordem Pur +Pur Receipt,Recibo Pur +Purchase,Compras +Purchase Analytics,Análise de compras +Purchase Common,Compras comum +Purchase Date,Data da compra +Purchase Details,Detalhes da compra +Purchase Discounts,Descontos da compra +Purchase Document No,Nº do Documento de Compra +Purchase Document Type,Tipo do Documento de Compra +Purchase Invoice,Nota Fiscal de Compra +Purchase Invoice Advance,Antecipação da Nota Fiscal de Compra +Purchase Invoice Advances,Antecipações da Nota Fiscal de Compra +Purchase Invoice Item,Item da Nota Fiscal de Compra +Purchase Order,Ordem de Compra +Purchase Order Date,Data da Ordem de Compra +Purchase Order Item,Item da Ordem de Compra +Purchase Order Item No,Nº do Item da Ordem de Compra +Purchase Order Item Supplied,Item da Ordem de Compra fornecido +Purchase Order Items,Itens da Ordem de Compra +Purchase Order Items Supplied,Itens da Ordem de Compra fornecidos +Purchase Order Items To Be Received,Comprar itens para ser recebido +Purchase Order Message,Mensagem da Ordem de Compra +Purchase Order Required,Ordem de Compra Obrigatória +Purchase Order sent by customer,Ordem de Compra enviada pelo cliente +Purchase Orders given to Suppliers.,Ordens de Compra dadas a fornecedores. +Purchase Receipt,Recibo de Compra +Purchase Receipt Item,Item do Recibo de Compra +Purchase Receipt Item Supplied,Item do Recibo de Compra Fornecido +Purchase Receipt Item Supplieds,Item do Recibo de Compra Fornecido +Purchase Receipt Items,Itens do Recibo de Compra +Purchase Receipt Message,Mensagem do Recibo de Compra +Purchase Receipt No,Nº do Recibo de Compra +Purchase Receipt Required,Recibo de Compra Obrigatório +Purchase Request,Pedido de Compra +Purchase Request Item,Item do Pedido de Compra +Purchase Requisition Details,Detalhes da Pedido de Compra +Purchase Return,Devolução de Compra +Purchase Returned,Compra Devolvida +Purchase Returns,Devoluções de Compra +Purchase Taxes and Charges,Impostos e Encargos sobre Compras +Purchase Taxes and Charges Master,Cadastro de Impostos e Encargos sobre Compras +Purpose,Finalidade +Purpose must be one of ,Finalidade deve ser um dos +QA Inspection,Inspeção QA +QA No,Nº QA +QAI/11-12/,QAI/11-12 / +QTN,QTN +Qty,Qtde. +Qty Consumed Per Unit,Qtde. consumida por unidade +Qty To Manufacture,Qtde. Para Fabricação +Qty as per Stock UOM,Qtde. como por UDM de estoque +Qualification,Qualificação +Quality,Qualidade +Quality Inspection,Inspeção de Qualidade +Quality Inspection Parameters,Parâmetros da Inspeção de Qualidade +Quality Inspection Reading,Leitura da Inspeção de Qualidade +Quality Inspection Readings,Leituras da Inspeção de Qualidade +Quantity,Quantidade +Quantity Requested for Purchase,Quantidade Solicitada para Compra +Quantity already manufactured,Quantidade já fabricada +Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Quantidade do item obtido após a fabricação / reembalagem a partir de determinadas quantidades de matéria-prima +Quantity should be equal to Manufacturing Quantity. ,Quantidade deve ser igual à Quantidade de Fabricação. +Quarter,Trimestre +Quarterly,Trimestral +Query,Consulta +Query Options,Opções de Consulta +Query Report,Relatório da Consulta +Query must be a SELECT,Consulta deve ser um SELECT +Question,Pergunta +Quick Help for Setting Permissions,Ajuda rápida para Configurar Permissões +Quick Help for User Properties,Ajuda rápida para Propriedades do Usuário +Quotation,Cotação +Quotation Date,Data da Cotação +Quotation Item,Item da Cotação +Quotation Items,Itens da Cotação +Quotation Lost Reason,Razão da perda da Cotação +Quotation Message,Mensagem da Cotação +Quotation No,Nº da Cotação +Quotation No.,Nº da Cotação. +Quotation Sent,Cotação Enviada +Quotation To,Cotação para +Quotation no against which this Sales Order is made ,Nº da Cotação contra a qual esta Ordem de Venda é feita +Quotes to Leads or Customers.,Cotações para Prospectos ou Clientes. +Raise Exception,Levantar Exceção +Raise Material Request,Levante solicitar material +Raise Material Request when stock reaches re-order level,Levante solicitar material quando o estoque atinge novo pedido de nível +Raise Production Order,Levantar Ordem de Produção +Raised By,Levantadas por +Raised By (Email),Levantadas por (e-mail) +Random,Aleatório +Range,Alcance +Rate,Taxa +Rate ,Taxa +Rate Of Materials Based On,Taxa de materiais com base em +Rate at which Customer Currency is converted to customer's base currency,Taxa na qual a moeda do cliente é convertida para a moeda base do cliente +Rate at which Price list currency is converted to company's base currency,Taxa na qual a moeda da lista de preços é convertida para a moeda base da empresa +Rate at which Price list currency is converted to customer's base currency,Taxa na qual a moeda da lista de preços é convertida para a moeda base do cliente +Rate at which customer's currency is converted to company's base currency,Taxa na qual a moeda do cliente é convertida para a moeda base da empresa +Rate at which supplier's currency is converted to company's base currency,Taxa na qual a moeda do fornecedor é convertida para a moeda base da empresa +Rate at which this tax is applied,Taxa em que este imposto é aplicado +Rate*,Taxa* +Raw Material Details,Detalhes de Materias-Primas +Raw Material Item Code,Código de Item de Matérias-Primas +Raw Materials Supplied Cost,Custo de fornecimento de Matérias-Primas +Re-Calculate Values,Re-calcular valores +Re-Order Level,Nível para novo pedido +Re-Order Qty,Qtde. para novo pedido +Re-order,Re-vista +Re-order Level,Re fim-Level +Re-order Qty,Re-vista Qtde +Read,Ler +Read Only,Somente leitura +Reading 1,Leitura 1 +Reading 10,Leitura 10 +Reading 2,Leitura 2 +Reading 3,Leitura 3 +Reading 4,Leitura 4 +Reading 5,Leitura 5 +Reading 6,Leitura 6 +Reading 7,Leitura 7 +Reading 8,Leitura 8 +Reading 9,Leitura 9 +Reason,Motivo +Reason for Leaving,Motivo da saída +Reason for Resignation,Motivo para Demissão +Recalculate,Recalcular +Recd Quantity,Quantidade Recebida +Receivables,Recebíveis +Receivables Group,Grupo de recebíveis +Received Date,Data de recebimento +Received Qty,Qtde. recebida +Receiver List,Lista de recebedores +Receiver Name,Nome do recebedor +Receiver Parameter,Parâmetro do recebedor +Recent,Recente +Recipient,Destinatário +Recipients,Destinatários +Reconciliation Data,Dados de reconciliação +Reconciliation HTML,Reconciliação HTML +Reconciliation JSON,Reconciliação JSON +Recurring Id,Id recorrente +Recurring Invoice,Nota Fiscal Recorrente +Recurring Type,Tipo de recorrência +Ref Code,Código de Ref. +Ref Doc should be submitted?,Doc de Ref. deve ser enviado? +Ref DocType,DocType de Ref. +Ref Name,Nome de Ref. +Ref Rate,Taxa de Ref. +Ref Rate ,Taxa de Ref. +Ref Rate*,* Taxa de Ref. +Ref SQ,Ref SQ +Ref Type,Tipo de Ref. +Reference,Referência +Reference Date,Data de Referência +Reference DocType Key,Referência DocType chave +Reference Docname Key,Referência Docname chave +Reference Name,Nome de Referência +Reference Number,Número de Referência +Reference Type,Tipo de Referência +Refresh,Atualizar +Registration Details,Detalhes de Registro +Registration Info,Informações do Registro +Reject HTML,Rejeitar HTML +Rejected,Rejeitado +Rejected Quantity,Quantidade rejeitada +Rejected Serial No,Nº de Série Rejeitado +Rejected Warehouse,Almoxarifado Rejeitado +Related Page,Página Relacionada +Relation,Relação +Relieving Date,Data da Liberação +Remark,Observação +Remarks,Observações +Remove,Remover +Remove Bookmark,Remover Bookmark +Rename,Renomear +Rename Tool,Ferramenta de Renomear +Rented,Alugado +Repeat on Day of Month,Repita no Dia do Mês +Replace,Substituir +Replace Item / BOM in all BOMs,Substituir item / LDM em todas as LDMs +"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Substituir uma LDM específica em todas as LDMs outros onde ela é usada. Isso irá substituir o link da LDM antiga, atualizar o custo e regenerar a tabela "Item de Explosão da LDM" com a nova LDM" +Replied,Respondeu +Report,Relatório +Report Builder,Report Builder +Report Builder reports are managed directly by the report builder. Nothing to do.,Os relatórios do Report Builder são gerenciados diretamente pelo construtor relatório. Nada a fazer. +Report Date,Data do Relatório +Report Hide,Ocultar Relatório +Report Name,Nome do Relatório +Report Script,Script do relatório +Report Server Script,Script do Servidor de Relatório +Report Type,Tipo de relatório +Report was not saved (there were errors),O Relatório não foi salvo (houve erros) +Reports,Relatórios +Reports to,Relatórios para +Represents the states allowed in one document and role assigned to change the state.,Representa os estados permitidos em um documento a função atribuída a alterações do estado. +Reqd,Requerido +Reqd By Date,Requisições Por Data +Request Material for Transfer or Purchase.,Material para solicitar transferência ou compra. +Request Type,Tipo de Solicitação +Request for Information,Pedido de Informação +Request for purchase.,Pedido de Compra. +Requested By,Solicitado por +Required By,Exigido por +Required Date,Data Obrigatória +Required Qty,Quantidade requerida +Required only for sample item.,Necessário apenas para o item de amostra. +Required raw materials issued to the supplier for producing a sub - contracted item.,Matérias-primas necessárias emitidas para o fornecedor para a produção de um item sub-contratado. +Reseller,Revendedor +Reserved Quantity,Quantidade Reservada +Reserved Warehouse,Almoxarifado Reservado +Resignation Letter Date,Data da carta de demissão +Resolution,Resolução +Resolution Date,Data da Resolução +Resolution Details,Detalhes da Resolução +Resolved By,Resolvido por +Restrict IP,Restringir IP +Restrict submission rights based on amount,Restringir direitos de envio com base no valor +Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Restringir usuário a partir deste endereço IP. Vários endereços IP podem ser adicionados ao separar com vírgulas. São aceitos também endereços IP parciais como (111.111.111) +Restricting By User,Restringindo por Usuário +Retailer,Varejista +Return Date,Data de retorno +Return Type,Tipo de retorno +Returned Qty,Qtde. retornada +Review Date,Data da Revisão +Rgt,Dir. +Right,Direito +Role,Função +Role Name,Nome da Função +Roles,Funções +Roles Assigned,Funções atribuídas +Roles Assigned To User,Funções atribuídas ao Usuário +Roles HTML,Funções HTML +Rounded Total,Total arredondado +Rounded Total (Export),Total arredondado (Exportação) +Row,Linha +Row #,Linha # +Row # ,Linha # +Rule Definition,Definição da regra +Rule Name,Nome da regra +Rule Priority,Prioridade da regra +Rule Status,Estado da regra +Rules defining transition of state in the workflow.,Regras que definem a transição de estado no fluxo de trabalho. +"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Regras de como os estados são transições, como o próximo estado e que função terá permissão para mudar de estado, etc" +Run,Executar +SLE Exists,SLE existe +SMS,SMS +SMS Center,Centro de SMS +SMS Control,Controle de SMS +SMS Gateway URL,URL de Gateway para SMS +SMS Log,Log de SMS +SMS Parameter,Parâmetro de SMS +SMS Parameters,Parâmetros de SMS +SMS Receiver,Receptor do SMS +SMS Sender Name,Nome do remetente do SMS +SMS Settings,Definições de SMS +SMTP Server (e.g. smtp.gmail.com),"Servidor SMTP(por exemplo, smtp.gmail.com)" +SO,OV +SO Date,Data da OV +SO Detail ,Detalhe da OV +SO Pending Qty,Qtde. pendente na OV +SO/10-11/,SO/10-11 / +SO1112,SO1112 +SQTN,SQTN +STE,STO +SUP,SUP +SUPP,SUPP +SUPP/10-11/,SUPP/10-11 / +Salary,Salário +Salary Information,Informação sobre salário +Salary Manager,Gerenciador de salário +Salary Mode,Modo de salário +Salary Slip,Folha de pagamento +Salary Slip Deduction,Dedução da folha de pagamento +Salary Slip Earning,Ganhos da folha de pagamento +Salary Structure,Estrutura Salarial +Salary Structure Deduction,Dedução da Estrutura Salarial +Salary Structure Earning,Ganho da Estrutura Salarial +Salary Structure Earnings,Ganhos da Estrutura Salarial +Salary components.,Componentes salariais. +Sales,Vendas +Sales Analytics,Análise de Vendas +Sales BOM,LDM de Vendas +Sales BOM Help,Ajuda da LDM de Vendas +Sales BOM Item,Item da LDM de Vendas +Sales BOM Items,Itens da LDM de Vendas +Sales Browser,Navegador de Vendas +Sales Browser Control,Controle do Navegador de Vendas +Sales Common,Vendas comuns +Sales Dashboard,Painel de Vendas +Sales Details,Detalhes de Vendas +Sales Discounts,Descontos de Vendas +Sales Email Settings,Configurações do Email de Vendas +Sales Extras,Extras de Vendas +Sales Invoice,Nota Fiscal de Venda +Sales Invoice Advance,Antecipação da Nota Fiscal de Venda +Sales Invoice Item,Item da Nota Fiscal de Venda +Sales Invoice Message,Mensagem da Nota Fiscal de Venda +Sales Invoice No,Nº da Nota Fiscal de Venda +Sales Order,Ordem de Venda +Sales Order Date,Data da Ordem de Venda +Sales Order Item,Item da Ordem de Venda +Sales Order Items,Itens da Ordem de Venda +Sales Order Message,Mensagem da Ordem de Venda +Sales Order No,Nº da Ordem de Venda +Sales Order Required,Ordem de Venda Obrigatória +Sales Orders Pending To Be Delivered,Ordens de Venda pendentes de entregua +Sales Orders Pending to be Delivered,Ordens de Venda pendentes de entregua +Sales Partner,Parceiro de Vendas +Sales Partner Details,Detalhes do Parceiro de Vendas +Sales Partner Name,Nome do Parceiro de Vendas +Sales Partner Target,Metas do Parceiro de Vendas +Sales Person,Vendedor +Sales Person Name,Nome do Vendedor +Sales Person Targets,Metas do Vendedor +Sales Rate,Taxa de vendas +Sales Return,Retorno de Vendas +Sales Returns,Retornos de Vendas +Sales Taxes and Charges,Impostos e Taxas sobre Vendas +Sales Taxes and Charges Master,Cadastro de Impostos e Taxas sobre Vendas +Sales Team,Equipe de Vendas +Sales Team Details,Detalhes da Equipe de Vendas +Sales Team1,Equipe de Vendas +Sales and Purchase,Compra e Venda +Sales and Purchase Return Item,Item de retorno de compra e venda +Sales and Purchase Return Items,Itens de retorno de compra e venda +Sales and Purchase Return Tool,Ferramenta de retorno de compra e venda +Sales campaigns,Campanhas de Vendas +Sales persons and targets,Vendedores e Metas +Sales taxes template.,Modelo de Impostos sobre as Vendas. +Sales territories.,Territórios de Vendas. +Salutation,Saudação +Sample Size,Tamanho da amostra +Sanctioned Amount,Quantidade sancionada +Sandbox,Sandbox +Saturday,Sábado +Save,Salvar +Schedule,Agendar +Scheduled,Agendado +Scheduled Confirmation Date,Data de Confirmação agendada +Scheduled Date,Data Agendada +Scheduler Log,Log do Agendador +School/University,Escola / Universidade +Score (0-5),Pontuação (0-5) +Score Earned,Pontuação Obtida +Scrap %,Sucata % +Script,Script +Script Report,Relatório Script +Script Type,Tipo de Script +Script to attach to all web pages.,Script para anexar a todas as páginas da web. +Search,Pesquisar +Search Criteria,Critérios da pesquisa +Search Fields,Campos de Pesquisa +Search Help,Procurar Ajuda +Seasonality for setting budgets.,Sazonalidade para definir orçamentos. +Section Break,Quebra de seção +Security Settings,Configurações de Segurança +Segment Name,Nome do Segmento +Select,Selecionar +"Select ""Yes"" for sub - contracting items",Selecione "Sim" para a itens sub-contratados +"Select ""Yes"" if this item is to be sent to a customer or received from a supplier as a sample. Delivery notes and Purchase Receipts will update stock levels but there will be no invoice against this item.","Selecione "Sim" se este item é para ser enviado para um cliente ou recebido de um fornecedor como amostra. Guias de Remessa e recibos de compra irão atualizar os níveis de estoque, mas não haverá fatura contra este item." +"Select ""Yes"" if this item is used for some internal purpose in your company.",Selecione "Sim" se este item é usado para alguma finalidade interna na sua empresa. +"Select ""Yes"" if this item represents some work like training, designing, consulting etc.","Selecione "Sim" se esse item representa algum trabalho como treinamento, design, consultoria, etc" +"Select ""Yes"" if you are maintaining stock of this item in your Inventory.",Selecione "Sim" se você está mantendo estoque deste item no seu Inventário. +"Select ""Yes"" if you supply raw materials to your supplier to manufacture this item.",Selecione "Sim" se você fornece as matérias-primas para o seu fornecedor fabricar este item. +Select All,Selecionar tudo +Select Attachments,Selecione os Anexos +Select Budget Distribution to unevenly distribute targets across months.,Selecione distribuição do orçamento para distribuir metas diferentes para os meses. +"Select Budget Distribution, if you want to track based on seasonality.","Selecione distribuição do orçamento, se você quiser acompanhar baseado em sazonalidade." +Select Customer,Selecione o Cliente +Select Digest Content,Selecione o conteúdo para o Resumo por E-mail +Select DocType,Selecione o DocType +Select Document Type,Selecione o Tipo de Documento +Select Document Type or Role to start.,Selecione o tipo de documento ou função para começar. +Select Form,Selecione o Formulário +Select Items from Delivery Note,Selecione os itens da Guia de Remessa +Select Items from Purchase Order,Selecione os itens da Ordem de Compra +Select Items from Purchase Receipt,Selecione os itens de Recibo de Compra +Select Items from Sales Order,Selecione os itens da Ordem de Venda +Select Material Request,Selecione solicitar material +Select PR,Selecionar PR +Select Print Format,Selecione o Formato de Impressão +Select Print Heading,Selecione o Cabeçalho de Impressão +Select Report Name,Selecione o Nome do Relatório +Select Role,Selecione a Função +Select Sales Orders,Selecione as Ordens de Venda +Select Sales Orders from which you want to create Production Orders.,Selecione as Ordens de Venda a partir das quais você deseja criar Ordens de Produção. +Select Shipping Address,Selecione o Endereço para Envio +Select Supplier Quotation,Selecione a Cotação do Fornecedor +Select Terms and Conditions,Selecione os Termos e Condições +Select Transaction,Selecione a Transação +Select Type,Selecione o Tipo +Select User or Property to start.,Selecione o Usuário ou Propriedade para começar. +Select account head of the bank where cheque was deposited.,Selecione a Conta do banco onde o cheque foi depositado. +Select company name first.,Selecione o nome da empresa por primeiro. +Select dates to create a new ,Seleccione datas para criar um novo +Select name of Customer to whom project belongs,Selecione o nome do cliente a quem pertence o projeto +Select or drag across dates to create a new event.,Selecione ou arraste as datas para criar um novo evento. +Select template from which you want to get the Goals,Selecione o modelo a partir do qual você deseja obter as Metas +Select the Employee for whom you are creating the Appraisal.,Selecione o funcionário para quem você está criando a Avaliação. +Select the currency in which price list is maintained,Selecione a moeda na qual a lista de preços é mantida +Select the label after which you want to insert new field.,Selecione a etiqueta após a qual você deseja inserir um novo campo. +Select the period when the invoice will be generated automatically,Selecione o período em que a fatura será gerada automaticamente +"Select the price list as entered in ""Price List"" master. This will pull the reference rates of items against this price list as specified in ""Item"" master.","Selecione a lista de preços como cadastrada em "Lista de Preço". Isso vai puxar os valores de referência dos itens contra esta lista de preços, conforme especificado no cadastro "Item"." +Select the relevant company name if you have multiple companies,"Selecione o nome da empresa em questão, se você tem várias empresas" +Select the relevant company name if you have multiple companies.,"Selecione o nome da empresa em questão, se você tem várias empresas." +Select who you want to send this newsletter to,Selecione para quem você deseja enviar esta newsletter +Selected Attendance date will comes in the attendance template.,Data de comparecimento selecionada virá no modelo de comparecimento. +"Selecting ""Yes"" will allow this item to appear in Purchase Order , Purchase Receipt.","Selecionando "Sim" vai permitir que este item apareça na Ordem de Compra, Recibo de Compra." +"Selecting ""Yes"" will allow this item to figure in Sales Order, Delivery Note","Selecionando "Sim" vai permitir que este item conste na Ordem de Venda, Guia de Remessa" +"Selecting ""Yes"" will allow you to create Bill of Material showing raw material and operational costs incurred to manufacture this item.",Selecionando "Sim" vai permitir que você crie uma Lista de Materiais mostrando as matérias-primas e os custos operacionais incorridos para fabricar este item. +"Selecting ""Yes"" will allow you to make a Production Order for this item.",Selecionando "Sim" vai permitir que você faça uma Ordem de Produção para este item. +"Selecting ""Yes"" will give a unique identity to each entity of this item which can be viewed in the Serial No master.",Selecionando "Sim" vai dar uma identificação única para cada entidade deste item que pode ser vista no cadastro do Número de Série. +Selling,Vendas +Selling Home,Início de Vendas +Send,Enviar +Send Autoreply,Enviar Resposta Automática +Send Email,Enviar E-mail +Send From,Enviar de +Send Invite Email,Enviar convite mail +Send Me A Copy,Envie-me uma cópia +"Send Newsletters to your contacts, leads.",Enviar Newsletters aos seus contatos e prospectos. +Send SMS,Envie SMS +Send To,Enviar para +Send To Type,Enviar para Digite +"Send an email to users of role ""Material Manager"" and ""Purchase Manager"" when re-order level is crossed.",Enviar um e-mail para os usuários com função "Gerente de Material" e "Gerente de Compras" quando o nível para novo pedido for atingido. +Send automatic emails to Contacts on Submitting transactions.,Enviar e-mails automáticos para os Contatos ao Submeter transações. +"Send bulk SMS to leads, customers, contacts","Enviar SMS em massa para prospectos, clientes e contatos" +Send mass SMS to your contacts,Enviar SMS em massa para seus contatos +Send regular summary reports via Email.,Enviar relatórios resumidos regularmente via e-mail. +Send to this list,Enviar para esta lista +Sender,Remetente +Sender Name,Nome do Remetente +"Sending newsletters is not allowed for Trial users, \ to prevent abuse of this feature.","Envio de newsletters não é permitido para usuários experimentais, \ para evitar o abuso deste recurso." +Sent Mail,E-mails Enviados +Sent On,Enviado em +Sent Quotation,Cotação Enviada +Separate production order will be created for each finished good item.,Uma Ordem de Produção separada será criada para cada item acabado. +Serial No,Nº de Série +Serial No Details,Detalhes do Nº de Série +Serial No Service Contract Expiry,Vencimento do Contrato de Serviço com Nº de Série +Serial No Status,Estado do Nº de Série +Serial No Warranty Expiry,Vencimento da Garantia com Nº de Série +Serialized Item: ',Item serializado: ' +Series,Séries +Series Detail,Detalhe da Séries +Series List for this Transaction,Lista de séries para esta transação +Series Options,Opções de Séries +Server,Servidor +Server Script,Script do servidor +Service Address,Endereço de Serviço +Service Person,Pessoa de Serviço +Session Expired. Logging you out,A sessão expirou. Você será deslogado +Session Expires in (time),A sessão expira em (tempo) +Session Expiry,Duração da sessão +Session Expiry in Hours e.g. 06:00,"Duração da sessão em Horas, por exemplo 06:00" +Set From Image,Definir a partir da imagem +Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"Definir orçamentos para Grupos de Itens neste território. Você também pode incluir a sazonalidade, defininda na Distribuição." +Set Login and Password if authentication is required.,Defina Login e Senha se a autenticação for necessária. +Set New Password,Definir nova senha +Set Value,Definir valor +"Set a new password and ""Save""",Definir uma nova senha e "Salvar" +Set default values for entry,Definir valores padrão para o lançamento +Set default values for users (also used for permissions).,Definir valores padrão para os usuários (também usados para permissões). +Set multiple numbering series for transactions,Definir multiplas séries de numeração para transações +Set permissions on transactions / masters,Definir permissões em transações / cadastros +Set prefix for numbering series on your transactions,Definir prefixo para séries de numeração em suas transações +Set targets Item Group-wise for this Sales Person.,Estabelecer metas para Grupos de Itens para este Vendedor. +Set the POP3 email settings to pull emails directly from a mailbox and create Support Tickets,Definir as configurações de e-mail POP3 para puxar e-mails diretamente a partir de uma caixa de correio e criar tickets de suporte +Set workflow rules.,Definir regras do fluxo de trabalho. +"Set your background color, font and image (tiled)","Defina sua cor de fundo, fonte e imagem (lado a lado)" +"Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.","Defina suas configurações de de e-mail SMTP aqui. Todas as notificações geradas pelo sistema e e-mails são enviados a partir deste servidor de correio. Se você não tem certeza, deixe este campo em branco para usar servidores ERPNext (e-mails ainda serão enviadas a partir do seu endereço de e-mail) ou entre em contato com seu provedor de e-mail." +Setting Account Type helps in selecting this Account in transactions.,Definir o Tipo de Conta ajuda na seleção desta Conta nas transações. +Settings for About Us Page.,Configurações da Página Sobre Nós. +Settings for Contact Us Page,Configurações da Página Fale Conosco. +Settings for Contact Us Page.,Configurações da Página Fale Conosco. +Settings for Product Catalog on the website,Configurações da Página Catálogo de Produtos no site +Settings for Product Catalog on the website.,Configurações da Página Catálogo de Produtos no site. +Settings for the About Us Page,Configurações da Página Sobre Nós. +"Settings to extract Job Applicants from a mailbox e.g. ""jobs@example.com""","Definições para extrair os candidatos a emprego a partir de um e-mail, por exemplo: "empregos@exemplo.com"" +Setup,Configuração +Setup Control,Controle de configuração +Setup Series,Configuração de Séries +Setup of fonts and background.,Configuração de fontes e de fundo. +"Setup of top navigation bar, footer and logo.","Configuração de barra de navegação do topo, rodapé, e logotipo." +Setup outgoing SMS via your bulk SMS provider,Configurar envio de SMS através de seu provedor de SMS em massa +Setup to pull emails from support email account,Configuração para puxar e-mails da conta do e-mail de suporte +Ship To,Enviar Para +Shipping Address,Endereço de envio +Shipping Address Name,Nome do Endereço de envio +Shipping Details,Detalhes do envio +Short Bio,Curta Bio +Short biography for website and other publications.,Breve biografia para o site e outras publicações. +Shortcut,Atalho +"Show ""In Stock"" or ""Not in Stock"" based on stock available in this warehouse.",Mostrar "Em Stock" ou "Fora de Estoque" baseado no estoque disponível neste almoxarifado. +Show / Hide Modules,Mostrar / Ocultar Módulos +Show Details,Ver detalhes +Show Filters,Mostrar Filtros +Show Price in Website (if set),Mostrar Preço no Website (se definido) +Show Print First,Mostrar Impressão Primeiro +Show a slideshow at the top of the page,Mostrar uma apresentação de slides no topo da página +Show in Website,Mostrar no site +Show rows with zero values,Mostrar as linhas com valores zero +Show this slideshow at the top of the page,Mostrar esta apresentação de slides no topo da página +"Show, hide modules",Mostrar / Ocultar Módulos +Showing only for,Mostrando apenas para +Signature,Assinatura +Signature to be appended at the end of every email,Assinatura para ser inserida no final de cada e-mail +Simplify entry forms by disabling features,Simplificar os formulários de entrada pela desativação de recursos +Single,Único +Single unit of an Item.,Unidade única de um item. +Sky,Céu +Slideshow,Apresentação de slides +Slideshow Items,Itens da Apresentação de slides +Slideshow Name,Nome da Apresentação de slides +Slideshow like display for the website,Exibição do tipo Apresentação de slides para o site +Small Text,Texto Pequeno +Snow,Neve +Solid background color (default light gray),Cor de fundo sólida (padrão cinza claro) +Sorry we were unable to find what you were looking for.,"Desculpe, não encontramos o que você estava procurando." +Sorry you are not permitted to view this page.,"Desculpe, você não tem permissão para visualizar esta página." +Sorry! We can only allow upto 100 rows for Stock Reconciliation.,Desculpe! Nós só podemos permitir no máximo 100 linhas para Reconciliação de Estoque. +Sort By,Classificar por +Sort Order,Ordem de Classificação +Source,Fonte +Source Warehouse,Almoxarifado de origem +Source and Target Warehouse cannot be same,O Almoxarifado de origem e destino não pode ser o mesmo +Source of th,Origem do +"Source of the lead. If via a campaign, select ""Campaign""","Origem do Prospecto. Se foi através de uma campanha, selecione "Campanha"" +Special Page Settings,Configurações Especiais de página +Specification Details,Detalhes da especificação +Split Delivery Note into packages.,Dividir Guia de Remessa em pacotes. +Standard,Padrão +Standard Rate,Taxa normal +"Standard Terms and Conditions that can be added to Sales and Purchases.Examples:1. Validity of the offer.1. Payment Terms (In Advance, On Credit, part advance etc).1. What is extra (or payable by the Customer).1. Safety / usage warning.1. Warranty if any.1. Returns Policy.1. Terms of shipping, if applicable.1. Ways of addressing disputes, indemnity, liability, etc.1. Address and Contact of your Company.","Termos e Condições Padrão que pode ser adicionado para Vendas e Purchases.Examples: 1. Validade do offer.1. Condições de pagamento (adiantado, no crédito etc antecedência, parte) 0,1. O que é muito (ou a pagar pelo Cliente) .1. Segurança / uso warning.1. Garantia se any.1. Retorna Policy.1. Condições de entrega, se applicable.1. Formas de disputas de endereçamento, indenização, responsabilidade, etc.1. Endereço e contato da sua empresa." +"Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like ""Shipping"", ""Insurance"", ""Handling"" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on ""Previous Row Total"" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.10. Add or Deduct: Whether you want to add or deduct the tax.","Modelo imposto padrão que pode ser aplicado a todas as operações de compra. Este modelo pode conter lista de cabeças de impostos e também chefes de despesas outras como "Frete", "Seguro", "Manipulação", etc taxa de imposto # # # # ObservaçãoO você definir aqui será a taxa normal do IVA para todos os itens ** ** . Se houver ** ** Itens que têm taxas diferentes, eles devem ser adicionados no Imposto item ** ** tabela no item ** ** mestre. # # # # Descrição do Columns1. Tipo de Cálculo: - Isto pode ser em ** Total Líquida ** (que é a soma do valor de base). - ** Na linha anterior Total / Montante ** (para impostos cumulativos ou encargos). Se você selecionar esta opção, o imposto será aplicado como um percentual da linha anterior (na tabela do imposto) ou montante total. - ** Real ** (como mencionado) .2. Chefe da conta: O livro conta em que este imposto será booked3. Custo Center: Se o imposto / carga é uma renda (como o transporte) ou despesa que precisa ser contabilizadas a um Custo Center.4. Descrição: Descrição do imposto (que será impresso nas faturas / cotações) .5. Taxa: Imposto rate.6. Quantidade: Imposto amount.7. Total: total acumulado a este point.8. Digite Row: Se com base em "Total linha anterior" você pode escolher o número da linha que será tomado como base para este cálculo (o padrão é a linha anterior) .9. Considere imposto ou encargo para: Nesta seção, você pode especificar se o imposto / carga é apenas para avaliação (não uma parte do total) ou apenas para total (não adiciona valor ao produto) ou para both.10. Adicionar ou Deduzir: Se você quiser adicionar ou deduzir o imposto." +"Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like ""Shipping"", ""Insurance"", ""Handling"" etc.#### NoteThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.#### Description of Columns1. Calculation Type: - This can be on **Net Total** (that is the sum of basic amount). - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total. - **Actual** (as mentioned).2. Account Head: The Account ledger under which this tax will be booked3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.4. Description: Description of the tax (that will be printed in invoices / quotes).5. Rate: Tax rate.6. Amount: Tax amount.7. Total: Cumulative total to this point.8. Enter Row: If based on ""Previous Row Total"" you can select the row number which will be taken as a base for this calculation (default is the previous row).9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.","Modelo imposto padrão que pode ser aplicado a todas as suas vendas. Este modelo pode conter lista de cabeças de impostos e também outras despesas / receitas cabeças como "Frete", "Seguro", "Manipulação", etc taxa de imposto # # # # ObservaçãoO você definir aqui será a taxa normal do IVA para todos os itens ** . ** Se houver ** ** Itens que têm taxas diferentes, eles devem ser adicionados no Imposto item ** ** tabela no item ** ** mestre. # # # # Descrição do Columns1. Tipo de Cálculo: - Isto pode ser em ** Total Líquida ** (que é a soma do valor de base). - ** Na linha anterior Total / Montante ** (para impostos cumulativos ou encargos). Se você selecionar esta opção, o imposto será aplicado como um percentual da linha anterior (na tabela do imposto) ou montante total. - ** Real ** (como mencionado) .2. Chefe da conta: O livro conta em que este imposto será booked3. Custo Center: Se o imposto / carga é uma renda (como o transporte) ou despesa que precisa ser contabilizadas a um Custo Center.4. Descrição: Descrição do imposto (que será impresso nas faturas / cotações) .5. Taxa: Imposto rate.6. Quantidade: Imposto amount.7. Total: total acumulado a este point.8. Digite Row: Se com base em "Total linha anterior" você pode escolher o número da linha que será tomado como base para este cálculo (o padrão é a linha anterior) .9. É este imposto incluído na tarifa básica:? Se você verificar isso, significa que este imposto não será mostrado abaixo da tabela item, mas será incluída na taxa básica em sua mesa principal item. Isso é útil quando você quer dar um preço fixo (incluindo todos os impostos) preço aos clientes." +Start Date,Data de Início +Start Report For,Começar Relatório para +Start date of current invoice's period,Data de início do período de fatura atual +Starts on,Inicia em +Startup,Startup +State,Estado +State Name,Nome do Estado +States,Estados +Static Parameters,Parâmetros estáticos +Status,Estado +Status must be one of ,Estado deve ser um dos +Statutory info and other general information about your Supplier,Informações estatutárias e outras informações gerais sobre o seu Fornecedor +Stock,Estoque +Stock Ageing,Envelhecimento do Estoque +Stock Analytics,Análise do Estoque +Stock Balance,Balanço de Estoque +Stock Entry,Lançamento no Estoque +Stock Entry Detail,Detalhe do lançamento no Estoque +Stock Frozen Upto,Estoque congelado até +Stock Home,Início de Estoque +Stock Ledger,Livro de Inventário +Stock Ledger Entry,Lançamento do Livro de Inventário +Stock Level,Nível de Estoque +Stock Qty,Qtde. em Estoque +Stock Queue (FIFO),Fila do estoque (PEPS) +Stock Reconciliation,Reconciliação de Estoque +Stock Reconciliation file not uploaded,Arquivo da Reconciliação de Estoque não carregado +Stock UOM,UDM do Estoque +Stock UOM Replace Utility,Utilitário para Substituir UDM do Estoque +Stock Uom,UDM do Estoque +Stock Value,Valor do Estoque +"Stock level frozen up to this date, nobody can do / modify entry except authorized person","Nível de estoque congelado até a presente data, ninguém pode fazer / modificar um lançamento, exceto pessoal autorizado" +Stop,Pare +Stop users from making Leave Applications on following days.,Pare de usuários de fazer aplicações deixam nos dias seguintes. +Stopped,Parado +Structure cost centers for budgeting.,Estrutura dos centros de custo para orçamentação. +Structure of books of accounts.,Estrutura de livros de contas. +Style,Estilo +Style Settings,Configurações de Estilo +"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Estilo representa a cor do botão: Sucesso - Verde, Perigo - Vermelho, Inverso - Preto, Primário - Azul Escuro, Informação - Azul Claro, Aviso - Laranja" +"Sub-currency. For e.g. ""Cent""",Sub-moeda. Por exemplo "Centavo" +Sub-domain provided by erpnext.com,Sub-domínio fornecido pelo erpnext.com +Subcontract,Subcontratar +Subdomain,Subdomínio +Subject,Assunto +Submit,Enviar +Submit Salary Slip,Enviar folha de pagamento +Submit all salary slips for the above selected criteria,Enviar todas as folhas de pagamento para os critérios acima selecionados +Submitted,Enviado +Success,Sucesso +Suggestion,Sugestão +Suggestions,Sugestões +Sunday,Domingo +Sunny,Ensolarado +Supplier,Fornecedor +Supplier (vendor) name as entered in supplier master,"Nome do fornecedor (vendedor), como inscritos no cadastro de fornecedores" +Supplier Address,Endereço do Fornecedor +Supplier Details,Detalhes do Fornecedor +Supplier Intro,Introdução do Fornecedor +Supplier Master created by ,Cadastro de Fornecedor criado por +Supplier Name,Nome do Fornecedor +Supplier Part Number,Número da peça do Fornecedor +Supplier Quotation,Cotação do Fornecedor +Supplier Quotation Item,Item da Cotação do Fornecedor +Supplier Reference,Referência do Fornecedor +Supplier Type,Tipo de Fornecedor +Supplier Warehouse,Almoxarifado do Fornecedor +Supplier classification.,Classificação do Fornecedor. +Supplier database.,Banco de dados do Fornecedor. +Supplier of Goods or Services.,Fornecedor de Bens ou Serviços. +Supplier warehouse where you have issued raw materials for sub - contracting,Almoxarifado do fornecedor onde você emitiu matérias-primas para a subcontratação +Supplier's currency,Moeda do Fornecedor +Support,Suporte +Support Analytics,Análise do Suporte +Support Email,E-mail de Suporte +Support Email Id,Endereço de E-mail de Suporte +Support Home,Início de Suporte +Support Password,Senha do Suporte +Support Ticket,Ticket de Suporte +Support Ticket Mail Settings,Configurações do E-mail de Tickets de Suporte +Support queries from customers via email or website.,Consultas ao Suporte de clientes via e-mail ou site. +Symbol,Símbolo +Sync Inbox,Sincronizar Caixa de Entrada +Sync Support Mails,Sincronizar E-mails de Suporte +System,Sistema +System Console,Console do Sistema +System Defaults,Padrões do Sistema +System User,Usuário do Sistema +"System User (login) ID. If set, it will become default for all HR forms.","Identificação do usuário do sistema (login). Se for marcado, ele vai se tornar padrão para todos os formulários de RH." +System generated mails will be sent from this email id.,E-mails gerados pelo sistema serão enviados a partir deste endereço de e-mail. +Table,Tabela +Table Field,Campo da Tabela +Table Mapper Detail,Detalhe do mapeamento da tabela +Table Mapper Details,Detalhes do mapeamento da tabela +Table for Item that will be shown in Web Site,Tabela para Item que será mostrado no site +Tag,Etiqueta +Tag Name,Nome da etiqueta +Tags,Etiquetas +Tahoma,Tahoma +Target,Meta +Target Amount,Valor da meta +Target Detail,Detalhe da meta +Target Details,Detalhes da meta +Target Details1,Detalhes da meta +Target Distribution,Distribuição de metas +Target Qty,Qtde. de metas +Target Warehouse,Almoxarifado de destino +Task,Tarefa +Task Details,Detalhes da Tarefa +Task Id,ID da Tarefa +Task Name,Nome da Tarefa +Tasks,Tarefas +Tasks belonging to this Project.,Tarefas pertencentes a este projeto. +Tax,Imposto +Tax Amount,Valor do Imposto +Tax Calculation,Cálculo do Imposto +Tax Rate,Taxa de Imposto +Tax Template for Purchase,Modelo de Impostos para compra +Tax Template for Sales,Modelo de Impostos para vendas +Tax and other salary deductions.,Impostos e outras deduções salariais. +Tax detail table fetched from item master as a string and stored in this field.Used for Taxes and Charges,Tabela de detalhes fiscal obtido a partir do cadastro de itens como uma string e armazenada neste field.Used dos Impostos e Encargos +Taxable,Tributável +Taxes,Impostos +Taxes and Charges,Impostos e Encargos +Taxes and Charges Added,Impostos e Encargos Adicionados +Taxes and Charges Added (Import),Impostos e Encargos Adicionados (Importação) +Taxes and Charges Calculation,Cálculo de Impostos e Encargos +Taxes and Charges Deducted,Impostos e Encargos Deduzidos +Taxes and Charges Deducted (Import),Impostos e Encargos Deduzidos (Importação) +Taxes and Charges Total,Total de Impostos e Encargos +Taxes and Charges Total*,Total de Impostos e Encargos* +Taxes and Charges1,Impostos e Encargos +Team Members,Membros da Equipe +Team Members Heading,Título da página Membros da Equipe +Template for employee performance appraisals.,Modelo para avaliação do desempenho dos funcionários. +Template of terms or contract.,Modelo de termos ou contratos. +Term Details,Detalhes dos Termos +Terms and Conditions,Termos e Condições +Terms and Conditions Content,Conteúdos dos Termos e Condições +Terms and Conditions Details,Detalhes dos Termos e Condições +Terms and Conditions HTML,Termos e Condições HTML +Terms and Conditions Template,Modelo de Termos e Condições +Terms and Conditions1,Termos e Condições +Territory,Território +Territory Manager,Gerenciador de Territórios +Territory Name,Nome do Território +Territory Targets,Metas do Território +TerritoryHelp,Ajuda do Território +Test,Teste +Test Data,Dados de Teste +Test Date,Data do Teste +Test Email Id,Endereço de Email de Teste +Test Link,Testar Link +Test Runner,Test Runner +Test Select,Selecione o Teste +Test Text,Texto de Teste +Test the Newsletter,Newsletter de Teste +Text,Texto +Text Align,Alinhar Texto +Text Editor,Editor de Texto +"The ""Web Page"" that is the website home page",A "Página Web" que é a página inicial do site +The BOM which will be replaced,A LDM que será substituída +"The Item that represents the Package. This Item must have ""Is Stock Item"" as ""No"" and ""Is Sales Item"" as ""Yes""",O item que representa o pacote. Este item deve ter "É Item de Estoque" como "Não" e "É Item de Venda" como "Sim" +The account to which you will pay (have paid) the money to.,A conta para a qual você vai pagar (ou paguou) o dinheiro. +The date at which current entry is corrected in the system.,A data em que o lançamento atual é corrigido no sistema. +The date at which current entry is made in system.,A data em que o lançamento atual é feito no sistema. +The date at which current entry will get or has actually executed.,A data em que o lançamento atual vai ser ou foi realmente executado. +The date on which next invoice will be generated. It is generated on submit.,A data em que próxima fatura será gerada. Ele é gerado em enviar. +The date on which recurring invoice will be stop,A data em que fatura recorrente será interrompida +"The day of the month on which auto invoice will be generated e.g. 05, 28 etc ","O dia do mês em que a fatura automática será gerada por exemplo, 05, 28, etc" +The gross weight of the package. Usually net weight + packaging material weight. (for print),O peso bruto do pacote. Normalmente peso líquido + peso do material de embalagem. (Para impressão) +The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.,O nome da sua empresa / site da forma que você quer que apareça na barra de título do navegador. Todas as páginas vão ter isso como o prefixo para o título. +The net weight of this package. (calculated automatically as sum of net weight of items),O peso líquido do pacote. (Calculado automaticamente como soma do peso líquido dos itens) +The new BOM after replacement,A nova LDM após substituição +The rate at which Bill Currency is converted into company's base currency,A taxa na qual a moeda de faturamento é convertida na moeda base da empresa +"The system provides pre-defined roles, but you can add new roles to set finer permissions","O sistema fornece funções pré-definidas, mas você pode adicionar novas funções para estabelecer as permissões mais precisas" +The unique id for tracking all recurring invoices. It is generated on submit.,O ID único para acompanhar todas as faturas recorrentes. Ele é gerado ao enviar. +Theme,Tema +Then By (optional),"Em seguida, por (opcional)" +These properties are Link Type fields from all Documents.,Estas propriedades são campos do tipo ligação de todos os documentos. +"These properties can also be used to 'assign' a particular document, whose property matches with the User's property to a User. These can be set using the Permission Manager","Essas propriedades também podem ser usados ​​para "atribuir" um documento específico, cuja propriedade coincide com a propriedade do usuário para um usuário. Estas podem ser definidas usando o Gerenciador de Permissão" +These properties will appear as values in forms that contain them.,Estas propriedades aparecerão como valores em formulários que as contêm. +These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Esses valores serão atualizados automaticamente em transações e também serão úteis para restringir as permissões para este usuário em operações que contenham esses valores. +"This Item Group represents ""products.html""",Este Grupo de Itens representa "produtos.html" +This Price List will be selected as default for all Customers under this Group.,Esta lista de preços será selecionado como padrão para todos os clientes sob este grupo. +This currency will get fetched in Purchase transactions of this supplier,Essa moeda vai ser buscada em transações de compra deste fornecedor +This currency will get fetched in Sales transactions of this customer,Essa moeda vai ser buscada em transações de vendas deste cliente +"This feature is for merging duplicate warehouses. It will replace all the links of this warehouse by ""Merge With"" warehouse. After merging you can delete this warehouse, as stock level for this warehouse will be zero.","Este recurso é para a fusão almoxarifados duplicados. Ele irá substituir todos os links deste almoxarifado pelos do almoxarifado "Mesclar Com". Após a fusão você pode excluir este almoxarifado, pois o nível de estoque para este almoxarifado vai ser zero." +This field will appear only if the fieldname defined here has value OR the rules are true (examples):
    myfieldeval:doc.myfield=='My Value'
    eval:doc.age>18,Este campo só aparece se o nome do campo definido aqui tem valor ou as regras são verdadeiras (exemplos):
    myfieldeval: doc.myfield == 'o meu valor'
    eval: doc.age> 18 +This goes above the slideshow.,Isto vai acima do slideshow. +This is PERMANENT action and you cannot undo. Continue?,Esta é uma ação PERMANENTE e não pode ser desfeita. Continuar? +This is an auto generated Material Request.,Este é um auto solicitar material gerado. +This is permanent action and you cannot undo. Continue?,Esta é uma ação PERMANENTE e não pode ser desfeita. Continuar? +This is the number of the last created transaction with this prefix,Este é o número da última transação criada com este prefixo +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.,Esta ferramenta ajuda a atualizar ou corrigir a quantidade e a valorização do estoque no sistema. Ela é geralmente usada para sincronizar os valores do sistema e o que realmente existe em seus almoxarifados. +This will be used for setting rule in HR module,Isso será usado para a definição de regras no módulo RH +Thread HTML,Tópico HTML +Thursday,Quinta-feira +Time,Tempo +Time Zone,Fuso horário +Time Zones,Fusos horários +Time and Budget,Tempo e Orçamento +Time at which items were delivered from warehouse,Horário em que os itens foram entregues do almoxarifado +Time at which materials were received,Horário em que os materiais foram recebidos +Timesheet,Quadro de Horários +Timesheet By,Quadro de Horários Por +Timesheet Date,Data do Quadro de Horários +Timesheet Detail,Detalhe do Quadro de Horários +Timesheet Details,Detalhes do Quadro de Horários +Timesheet for tasks.,Quadro de Horários para as tarefas. +Title,Título +Title / headline of your page,Título / chamada da sua página +Title Case,Caixa do Título +Title Prefix,Prefixo do Título +To,Para +To Date,Até a Data +To Discuss,Para Discutir +To Do,Lista de Tarefas +To Do List,Para fazer a lista +To DocType,Para DocType +To Field,Para Campo +To PR Date,Data de PR +To Package No.,Para Pacote Nº. +To Reply,Para Responder +To Table,Para Tabela +To Warehouse,Para Almoxarifado +"To add a tag, open the document and click on ""Add Tag"" on the sidebar","Para adicionar uma etiqueta, abra o documento e clique em "Adicionar Etiqueta" na barra lateral" +"To assign this issue, use the ""Assign"" button in the sidebar.","Para atribuir esse problema a alguém, use o botão "Atribuir" na barra lateral." +"To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.","Para criar automaticamente Tickets de Suporte a partir da sua caixa de entrada, defina as configurações de POP3 aqui. Você deve, idealmente, criar um E-mail separado para o Sistema ERP para que todas as mensagens sejam sincronizadas com o sistema a partir daquele E-mail. Se você não tiver certeza, entre em contato com seu provedor de e-mail." +"To create Quotation against Opportunity, Select Opportunity No. and click on 'Pull Opportunity Details' ","Para criar uma Cotação para uma Oportunidade, selecione o Nº da Oportunidade e clique em 'Obter Detalhes da Oportunidade"" +"To create an Account Head under a different company, select the company and save customer.","Para criar uma Conta, sob uma empresa diferente, selecione a empresa e salve o Cliente." +To enable Point of Sale features,Para habilitar as características de Ponto de Venda +"To fetch items again, click on 'Get Items' button \ or update the Quantity manually.","Para buscar itens novamente, clique em "Obter itens 'botão \ ou atualizar a quantidade manualmente." +"To format columns, give column labels in the query.","Para formatar colunas, dar rótulos de coluna na consulta." +"To further restrict permissions based on certain values in a document, use the 'Condition' settings.","Para restringir ainda mais as permissões com base em determinados valores em um documento, use as definições de 'Condição'." +To get Item Group in details table,Para obter Grupo de Itens na tabela de detalhes +"To import attendance data, click on ""Add"" button, select the saved CSV file and click on ""Upload"".Select the date format as attendance date format in CSV file.Click on ""Import"".","Para importar dados de atendimento, clique no botão "Adicionar", selecione o arquivo CSV salvo e clique em "Upload". Selecione o formato de data no formato de data em atendimento CSV file.Click em "Importar"." +To manage multiple series please go to Setup > Manage Series,"Para gerenciar várias séries por favor, vá para Configuração > Gerenciar Séries" +To restrict a User of a particular Role to documents that are explicitly assigned to them,Para restringir um usuário de uma função a documentos que são explicitamente atribuídos a ele +To restrict a User of a particular Role to documents that are only self-created.,Para restringir um usuário de uma função a apenas documentos que ele próprio criou. +"To set user roles, just go to Setup > Users and click on the user to assign roles.","Para definir funções ao usuário, basta ir a Configuração> Usuários e clicar sobre o usuário para atribuir funções." +To track any installation or commissioning related work after sales,Para rastrear qualquer trabalho relacionado à instalação ou colocação em funcionamento após a venda +"To track brand name in the following documents
    Delivery Note, Enuiry, Material Request, Item, Purchase Order, Purchase Voucher, Purchaser Receipt, Quotation, Sales Invoice, Sales BOM, Sales Order, Serial No","Para acompanhar marca nos seguintes documentos
    Nota de Entrega, Enuiry, solicitar material, Item, Ordem de Compra, comprovante de compra, recebimento Comprador, cotação, nota fiscal de venda, BOM Vendas, Ordem de Vendas, N º de Série" +To track item in sales and purchase documents based on their serial nos. This is can also used to track warranty details of the product.,Para acompanhar o item em documentos de vendas e de compras com base em seus números de série. Isso também pode ser usado para rastrear detalhes sobre a garantia do produto. +To track items in sales and purchase documents with batch nos
    Preferred Industry: Chemicals etc,"Para controlar os itens de vendas e documentos de compra pelo nº do lote
    Por Ex.: Indústria Química, etc" +To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Para rastrear itens usando código de barras. Você será capaz de inserir itens na Guia de Remessa e Nota Fiscal de Venda através do escaneamento do código de barras do item. +"To update your HTML from attachment, click here","Para atualizar seu código HTML a partir do anexo, clique aqui" +ToDo,Lista de Tarefas +Tools,Ferramentas +Top Bar,Barra Superior +Top Bar Background,Fundo da barra superior +Top Bar Item,Item da barra superior +Top Bar Items,Itens da barra superior +Total,Total +Total (sum of) points distribution for all goals should be 100.,Total (soma) da distribuição de pontos para todos os objetivos deve ser 100. +Total +Tax,Total + Impostos +Total Advance,Antecipação Total +Total Amount,Valor Total +Total Amount To Pay,Valor total a pagar +Total Amount in Words,Valor Total por extenso +Total Claimed Amount,Montante Total Requerido +Total Commission,Total da Comissão +Total Cost,Custo Total +Total Credit,Crédito Total +Total Debit,Débito Total +Total Deduction,Dedução Total +Total Earning,Total de Ganhos +Total Experience,Experiência total +Total Hours (Actual),Total de Horas (Real) +Total Hours (Expected),Total de Horas (Esperado) +Total Invoiced Amount,Valor Total Faturado +Total Leave Days,Total de dias de licença +Total Leaves Allocated,Total de licenças alocadas +Total Operating Cost,Custo de Operacional Total +Total Points,Total de pontos +Total Raw Material Cost,Custo Total das matérias-primas +Total SMS Sent,Total de SMS enviados +Total Sanctioned Amount,Valor Total Sancionado +Total Score (Out of 5),Pontuação total (sobre 5) +Total Tax,Total de Impostos +Total Tax Amount,Valor Total do Imposto +Total Tax*,Total de Impostos* +Total Taxes and Charges,Total de Impostos e Encargos +Total days in month,Total de dias no mês +Total in words,Total por extenso +Totals,Totais +Track Quotations received from Suppliers.,Acompanhar cotações recebidos dos fornecedores. +Track separate Income and Expense for product verticals or divisions.,Acompanhar Receitas e Gastos separados para produtos verticais ou divisões. +Track this Delivery Note against any Project,Acompanhar este Guia de Remessa contra qualquer projeto +Track this Sales Invoice against any Project,Acompanhar esta Nota Fiscal de Venda contra qualquer projeto +Track this Sales Order against any Project,Acompanhar este Ordem de Venda contra qualquer projeto +Transaction,Transação +Transaction Date,Data da Transação +Transfer,Transferir +Transfer stock from one warehouse to another.,Transferir o estoque de um almoxarifado para outro. +Transition Rules,Regras de transição +Transporter Info,Informações da Transportadora +Transporter Name,Nome da Transportadora +Transporter lorry number,Número do caminhão da Transportadora +Trash,Lixo +Trash Control,Controle de lixo +Trash Reason,Razão de pôr no lixo +Tree of item classification,Árvore de classificação de itens +Trend Analyzer,Analisador de tendência +Trend Analyzer Control,Controle do Analisador de tendência +Trial Balance,Balancete +Tropic,Trópico +Tuesday,Terça-feira +Tweet will be shared via your user account (if specified),Tweet serão compartilhados através da sua conta de usuário (se especificado) +Twitter Share,Compartilhar Twitter +Twitter Share via,Twitter Partilhar através do +Type,Tipo +Type of employment master.,Tipo de cadastro de emprego. +"Type of leaves like casual, sick etc.","Tipo de licenças como casual, doença, etc." +Types of Expense Claim.,Tipos de reembolso de despesas. +Types of activities for Time Sheets,Tipos de atividades para quadro de horários +Types of warehouse,Tipos de almoxarifado +UOM,UDM +UOM Conversion Detail,Detalhe da Conversão de UDM +UOM Conversion Details,Detalhes da Conversão de UDM +UOM Conversion Factor,Fator de Conversão da UDM +UOM Details,Detalhes da UDM +UOM Name,Nome da UDM +UOM Replace Utility,Utilitário para Substituir UDM +UPPER CASE,MAIÚSCULAS +URL,URL +Unable to complete request: ,Não foi possível concluir pedido: +Under AMC,Sob CAM +Under Graduate,Em Graduação +Under Section,Segundo a Seção +Under Warranty,Sob Garantia +Unit of Measure,Unidade de Medida +"Unit of measurement of this item (e.g. Kg, Unit, No, Pair).","Unidade de medida do item (por exemplo: kg, unidade, nº, par)." +Units/Hour,Unidades/hora +Units/Shifts,Unidades/Turnos +Unmatched Amount,Quantidade incomparável +Unread Messages,Mensagens não lidas +Unscheduled,Sem agendamento +Unsubscribe,Cancelar Inscrição +Unsubscribed,Inscrição Cancelada +Update,Atualizar +Update Clearance Date,Atualizar Data Liquidação +Update Delivery Date,Atualizar Data de Entrega +Update Field,Atualizar Campo +Update PR,Atualizar PR +Update Sales Order,Atualizar Ordem de Venda +Update Series,Atualizar Séries +Update Series Number,Atualizar Números de Séries +Update Stock,Atualizar Estoque +Update Value,Atualizar Valor +"Update allocated amount in the above table and then click ""Allocate"" button",Atualize o montante atribuído na tabela acima e clique no botão "Alocar" +Update bank payment dates with journals.,Atualizar datas de pagamento bancário com livro Diário. +Updates,Atualizações +Updates HTML,Atualizações HTML +Upload Attachment,Carregar anexos +Upload Attendance Data,Carregar dados de comparecimento +Upload HTML,Carregar HTML +Upload a file,Carregar um arquivo +Upload attendance,Carregar comparecimento +Upload attendance from a .csv file,Carregar comparecimento a partir de um arquivo CSV. +Upload stock balance via csv.,Carregar saldo de estoque a partir de um arquivo CSV. +Upper Income,Renda superior +Urgent,Urgente +Use Multi-Level BOM,Utilize LDM de Vários Níveis +Use SSL,Use SSL +User,Usuário +User Cannot Create,O Usuário não pode criar +User Cannot Search,O Usuário não pode pesquisar +User ID,ID de Usuário +User Image,Imagem do Usuário +User Name,Nome de Usuário +User Properties,Propriedades do Usuário +User Remark,Observação do Usuário +User Remark will be added to Auto Remark,Observação do usuário será adicionado à observação automática +User Tags,Etiquetas de Usuários +User Type,Tipo de Usuário +User must always select,O Usuário deve sempre selecionar +User not allowed entry in the Warehouse,Entrada do usuário não é permitido no Armazém +UserRole,Função do Usuário +Username,Nome do Usuário +Users,Usuários +Users Voted,Votos de usuários +Users with this role are allowed to do / modify accounting entry before frozen date,Usuários com esta função estão autorizados a fazer / modificar lançamentos de contabilidade antes da data de congelamento +Users with this role are allowed to do / modify stock entry before frozen date,Usuários com esta função estão autorizados a fazer / modificar lançamentos de material no estoque antes da data de congelamento +Utilities,Utilitários +Utility,Utilitário +Valid Upto,Válido até +Validation Logic,Lógica de Validação +Valuation,Avaliação +Valuation Control,Controle de Avaliação +Valuation Method,Método de Avaliação +Valuation Rate,Taxa de Avaliação +Valuation and Total,Avaliação e Total +Value,Valor +Verdana,Verdana +Verified By,Verificado Por +Visit,Visita +Visit report for maintenance call.,Relatório da visita da chamada de manutenção. +Voucher Detail No,Nº do Detalhe do comprovante +Voucher ID,ID do Comprovante +Voucher Import Tool,Ferramenta de Importação de comprovantes +Voucher No,Nº do comprovante +Voucher Type,Tipo de comprovante +WIP Monitor,Monitor do WIP +Waiting for Customer,À espera de Cliente +Walk In,Walk In +Warehouse,Almoxarifado +Warehouse Contact Info,Informações de Contato do Almoxarifado +Warehouse Detail,Detalhe do Almoxarifado +Warehouse Name,Nome do Almoxarifado +Warehouse Type,Tipo de Almoxarifado +Warehouse User,Usuário Armazém +Warehouse Users,Usuários do Warehouse +Warehouse where you are maintaining stock of rejected items,Almoxarifado onde você está mantendo estoque de itens rejeitados +Warehouse-wise Item Reorder,Armazém-sábio item Reordenar +Warn,Avisar +Warning,Aviso +Warning: Leave application contains following block dates,Aviso: pedido de férias contém as datas de blocos seguintes +Warranty / AMC Details,Garantia / Detalhes do CAM +Warranty / AMC Status,Garantia / Estado do CAM +Warranty Expiry Date,Data de validade da garantia +Warranty Period (Days),Período de Garantia (Dias) +Warranty Period (in days),Período de Garantia (em dias) +Web Content,Conteúdo da Web +Web Page,Página Web +Webforms,Formulários Web +Website,Site +Website Description,Descrição do site +Website Home,Página Inicial do Site +Website Item Group,Grupo de Itens do site +Website Item Groups,Grupos de Itens do site +Website Overall Settings,Configurações gerais do site +Website Price List,Lista de Preços do site +Website Product Categories,Categorias de Produto do site +Website Product Category,Categoria de Produto do site +Website Script,Script do site +Website Settings,Configurações do site +Website Slideshow,Slideshow do site +Website Slideshow Item,Item do Slideshow do site +Website Warehouse,Almoxarifado do site +Wednesday,Quarta-feira +Weekly,Semanal +Weekly Off,Descanso semanal +Weight UOM,UDM de Peso +Weightage,Peso +Weightage (%),Peso (%) +"When any of the checked transactions are ""Submitted"", an email pop-up automatically opened to send an email to the associated ""Contact"" in that transaction, with the transaction as an attachment. The user may or may not send the email.","Quando qualquer uma das operações marcadas são "Enviadas", um pop-up abre automaticamente para enviar um e-mail para o "Contato" associado a transação, com a transação como um anexo. O usuário pode ou não enviar o e-mail." +"When you Amend a document after cancel and save it, it will get a new number that is a version of the old number.","Quando você Alterar um documento depois de cancelar e salvá-lo, ele vai ter um novo número que é uma versão do número antigo." +Where items are stored.,Onde os itens são armazenados. +Where manufacturing operations are carried out.,Onde as operações de fabricação são realizadas. +White,Branco +Widowed,Viúvo(a) +Width,Largura +Will be calculated automatically when you enter the details,Será calculado automaticamente quando você digitar os detalhes +Will be fetched from Customer,Será obtido a partir do Cliente +With Operations,Com Operações +Work Done,Trabalho feito +Work In Progress,Trabalho em andamento +Workflow,Fluxo de Trabalho +Workflow Action,Ação do Fluxo de Trabalho +Workflow Action Detail,Detalhe da Ação do Fluxo de Trabalho +Workflow Action Details,Detalhes da Ação do Fluxo de Trabalho +Workflow Action Master,Cadastro da Ação do Fluxo de Trabalho +Workflow Action Name,Nome da Ação do Fluxo de Trabalho +Workflow Document State,Estado do Documento do Fluxo de Trabalho +Workflow Document States,Estados do Documento do Fluxo de Trabalho +Workflow Engine,Mecanismo do Fluxo de Trabalho +Workflow Name,Nome do Fluxo de Trabalho +Workflow Rule,Regra do Fluxo de Trabalho +Workflow Rule Detail,Detalhe da Regra do Fluxo de Trabalho +Workflow Rule Details,Detalhes da Regra do Fluxo de Trabalho +Workflow State,Estado do Fluxo de Trabalho +Workflow State Field,Campo do Estado do Fluxo de Trabalho +Workflow State Name,Nome do Estado do Fluxo de Trabalho +Workflow Transition,Transição do Fluxo de Trabalho +Workflow Transitions,Transições do Fluxo de Trabalho +Workflow state represents the current state of a document.,O estado do Fluxo de Trabalho representa o estado atual de um documento. +Workflow will start after saving.,Fluxo de trabalho será iníciado após salvar. +Workfow,Fluxo de Trabalho +Working,Trabalhando +Workstation,Estação de Trabalho +Workstation Name,Nome da Estação de Trabalho +Write,Escrever +Write Off Account,Eliminar Conta +Write Off Amount,Eliminar Valor +Write Off Amount <=,Eliminar Valor <= +Write Off Based On,Eliminar Baseado em +Write Off Cost Center,Eliminar Centro de Custos +Write Off Outstanding Amount,Eliminar saldo devedor +Write Off Voucher,Eliminar comprovante +Write a Python file in the same folder where this is saved and return column and result.,Gravar um arquivo Python na mesma pasta onde este é guardado e coluna de retorno e resultado. +Write a SELECT query. Note result is not paged (all data is sent in one go).,Escreva uma consulta SELECT. Resultado nota não é paginada (todos os dados são enviados de uma só vez). +Year,Ano +Year Closed,Ano Encerrado +Year Name,Nome do Ano +Year Start Date,Data de início do ano +Year of Passing,Ano de Passagem +Yearly,Anual +Yes,Sim +Yesterday,Ontem +You are not authorized to do/modify back dated entries before ,Você não está autorizado a fazer / modificar volta entradas datadas antes +You can create more earning and deduction type from Setup --> HR,Você pode criar mais tipos de Ganhos e Deduções a partir de Configuração -> RH +You can enter any date manually,Você pode entrar qualquer data manualmente +You can enter the minimum quantity of this item to be ordered.,Você pode inserir a quantidade mínima deste item a ser encomendada. +You can make a delivery note from multiple sales orders. Select sales orders one by one and click on the button below.,"Você pode fazer uma Guia de Remessa a partir de várias Ordens de Venda. Selecione as Ordens de Venda, uma a uma e clique no botão abaixo." +You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.,Você pode fazer um pedido de compra de materiais pedidos múltiplos. Selecione pedidos se um por um e clique no botão abaixo. +You can make a purchase order from multiple Supplier Quotations. Select Supplier Quotations one by one and click on the button below.,"Você pode fazer uma Ordem de Compra a partir de várias Cotações do Fornecedor. Selecione as Cotações do Fornecedor, uma a uma e clique no botão abaixo." +You can make a purchase receipt from multiple purchase orders. Select purchase orders one by one and click on the button below.,"Você pode fazer um Recibo de Compra a partir de várias Ordens de Compra. Selecione as Ordens de Compra, uma a uma e clique no botão abaixo." +You can set various 'properties' to Users to set default values and apply permission rules based on the value of these properties in various forms.,Você pode definir vários 'propriedades' para usuários para definir os valores padrão e aplicar regras de permissão com base no valor dessas propriedades em várias formas. +You can use Customize Form to set levels on fields.,Você pode usar Personalizar Formulário para definir os níveis nos campos. +Your Customer's TAX registration numbers (if applicable) or any general information,Os números de inscrição fiscal do seu Cliente (se aplicável) ou qualquer outra informação geral +"Your download is being built, this may take a few moments...","O seu download está sendo construído, isso pode demorar alguns instantes ..." +Your letter head content in HTML.,O conteúdo do seu cabeçalho em HTML. +Your sales person who will contact the customer in future,Seu vendedor que entrará em contato com o cliente no futuro +Your sales person who will contact the lead in future,Seu vendedor que entrará em contato com o prospecto no futuro +Your sales person will get a reminder on this date to contact the customer,Seu vendedor receberá um lembrete nesta data para contatar o cliente +Your sales person will get a reminder on this date to contact the lead,Seu vendedor receberá um lembrete nesta data para contatar o prospecto +Your support email id - must be a valid email - this is where your emails will come!,O seu E-mail de suporte - deve ser um e-mail válido - este é o lugar de onde seus e-mails virão! +[Label]:[Field Type]/[Options]:[Width],[Label]: [Tipo do Campo] / [Opções]: [Largura] +add your own CSS (careful!),adicione seu próprio CSS (cuidado!) +adjust,ajustar +align-center,Centralizar +align-justify,Justificar +align-left,alinhar à esquerda +align-right,alinhar à direita +and,e +arrow-down,seta para baixo +arrow-left,seta para a esquerda +arrow-right,seta para a direita +arrow-up,seta para cima +asterisk,asterisco +backward,para trás +ban-circle,círculo de proibição +barcode,código de barras +bell,sino +bold,negrito +book,livro +bookmark,favorito +briefcase,pasta +bullhorn,megafone +calendar,calendário +camera,câmera +cancel,cancelar +certificate,certificado +check,marcar +chevron-down,divisa-abaixo +chevron-left,divisa-esquerda +chevron-right,divisa-direito +chevron-up,divisa-acima +circle-arrow-down,círculo de seta para baixo +circle-arrow-left,círculo de seta para a esquerda +circle-arrow-right,círculo de seta à direita +circle-arrow-up,círculo de seta para cima +cog,roda dentada +comment,comentário +create a Custom Field of type Link (Profile) and then use the 'Condition' settings to map that field to the Permission rule.,Criar um Campo Personalizado do tipo ligação (Perfil) e depois usar as configurações de 'Condição' para mapear o campo para a regra de Permissão. +dashboard,painel de instrumentos +dd-mm-yyyy,dd-mm-aaaa +dd/mm/yyyy,dd/mm/aaaa +deactivate,desativar +does not belong to BOM: ,não pertence a LDM: +does not match,não corresponde +download,baixar +download-alt,download-alt +"e.g. 0.5, 2.5 etc","por exemplo, 0,5, 2,5, etc" +"e.g. Bank, Cash, Credit Card","por exemplo Banco, Dinheiro, Cartão de Crédito" +"e.g. Kg, Unit, Nos, m","por exemplo, kg, Unidade, nº, m" +"e.g. Office, Billing, Shipping","por exemplo Escritório, Faturamento, Expedição" +edit,editar +eg. Cheque Number,"por exemplo, Número do cheque" +eject,ejetar +english,Inglês +envelope,envelope +equal,igual +español,español +exclamation-sign,sinal de exclamação +eye-close,olho fechado +eye-open,olho aberto +facetime-video,vídeo do facetime +fast-backward,retrocesso rápido +fast-forward,avanço rápido +file,arquivo +film,filme +filter,filtrar +fire,fogo +flag,bandeira +folder-close,fechar pasta +folder-open,abrir pasta +font,fonte +forward,para a frente +français,français +fullscreen,tela cheia +gift,presente +glass,vidro +globe,globo +greater than,maior que +greater than equal,maior ou igual +hand-down,mão abaixo +hand-left,mão à esquerda +hand-right,mão à direita +hand-up,mão acima +has been entered atleast twice,foi inserido pelo menos duas vezes +hdd,hd +headphones,fones de ouvido +heart,coração +home,início +inbox,caixa de entrada +indent-left,indentar à esquerda +indent-right,indentar à direita +info-sign,Sinal de Informações +is a cancelled Item,é um Item cancelado +is not a Stock Item,não é um Item de Estoque +is not allowed.,não é permitido. +italic,itálico +leaf,folha +less than,menor que +less than equal,menor ou igual +lft,esq. +list,lista +list-alt,lista de alt- +lock,trancar +magnet,ímã +map-marker,marcador do mapa +minus,menos +minus-sign,sinal de menos +mm-dd-yyyy,mm-dd-aaaa +mm/dd/yy,mm/dd/aa +mm/dd/yyyy,mm/dd/aaaa +move,mover +music,música +nederlands,nederlands +not equal,não igual +not within Fiscal Year,não está dentro do Ano Fiscal +of,de +of type Link,do tipo ligação +off,fora +ok,ok +ok-circle,ok círculo +ok-sign,ok-sinal +old_parent,old_parent +or,ou +pause,pausa +pencil,lápis +picture,imagem +plane,avião +play,jogar +play-circle,jogo-círculo +plus,mais +plus-sign,sinal de mais +português,português +print,imprimir +qrcode,QRCode +question-sign,ponto de interrogação +question-view,pergunta-view +questions,perguntas +random,aleatório +reached its end of life on,chegou ao fim de vida em +refresh,atualizar +remove,remover +remove-circle,remove-círculo +remove-sign,remover-assinar +repeat,repetir +resize-full,redimensionamento completo +resize-horizontal,redimensionamento horizontal +resize-small,redimensionamento pequeno +resize-vertical,redimensionamento vertical +retweet,retwitar +rgt,dir. +road,estrada +screenshot,captura de tela +search,pesquisar +share,ação +share-alt,partes-alt +shopping-cart,carrinho de compras +signal,sinalizar +star,estrela +star-empty,estrelas vazio +step-backward,passo para trás +step-forward,passo para frente +stop,parar +tag,etiqueta +tags,etiquetas +"target = ""_blank""",target = "_blank" +tasks,tarefas +text-height,altura de texto +text-width,largura de texto +th,ª +th-large,ª-grande +th-list,ª-lista +thumbs-down,polegar para baixo +thumbs-up,polegar para cima +time,tempo +tint,matiz +to,para +to be dropped,de ser abandonada +trash,lixo +upload,carregar +user,usuário +user_image_show,user_image_show +values and dates,valores e datas +volume-down,diminuir volume +volume-off,mudo +volume-up,aumentar volume +warning-sign,sinal de alerta +website page link,link da página do site +wrench,chave inglesa +yyyy-mm-dd,aaaa-mm-dd +zoom-in,aumentar zoom +zoom-out,diminuir zoom diff --git a/utilities/doctype/address/locale/pt-BR-doc.json b/utilities/doctype/address/locale/pt-BR-doc.json new file mode 100644 index 0000000000..6908c68bd4 --- /dev/null +++ b/utilities/doctype/address/locale/pt-BR-doc.json @@ -0,0 +1,28 @@ +{ + "Address": "Endere\u00e7o", + "Address Details": "Detalhes do Endere\u00e7o", + "Address Line1": "Endere\u00e7o Linha 1", + "Address Line2": "Endere\u00e7o Linha 2", + "Address Title": "T\u00edtulo do Endere\u00e7o", + "Address Type": "Tipo de Endere\u00e7o", + "Check to make Shipping Address": "Marque para criar Endere\u00e7o de Remessa", + "Check to make primary address": "Marque para criar Endere\u00e7o Principal", + "City/Town": "Cidade / Munic\u00edpio", + "Country": "Pa\u00eds", + "Customer": "Cliente", + "Customer Name": "Nome do cliente", + "Email Id": "Endere\u00e7o de e-mail", + "Fax": "Fax", + "Is Primary Address": "\u00c9 o endere\u00e7o principal", + "Is Shipping Address": "\u00c9 endere\u00e7o de envio", + "Linked With": "Ligado com", + "Name of person or organization that this address belongs to.": "Nome da pessoa ou organiza\u00e7\u00e3o a que este endere\u00e7o pertence.", + "Phone": "Telefone", + "Pincode": "PINCODE", + "Sales Partner": "Parceiro de Vendas", + "State": "Estado", + "Supplier": "Fornecedor", + "Supplier Name": "Nome do Fornecedor", + "Utilities": "Utilit\u00e1rios", + "e.g. Office, Billing, Shipping": "por exemplo Escrit\u00f3rio, Faturamento, Expedi\u00e7\u00e3o" +} \ No newline at end of file diff --git a/utilities/doctype/answer/locale/pt-BR-doc.json b/utilities/doctype/answer/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b8b74d7a3b --- /dev/null +++ b/utilities/doctype/answer/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Answer": "Resposta", + "Points": "Pontos", + "Question": "Pergunta", + "Users Voted": "Votos de usu\u00e1rios", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/doctype/contact/locale/pt-BR-doc.json b/utilities/doctype/contact/locale/pt-BR-doc.json new file mode 100644 index 0000000000..647dbcdf95 --- /dev/null +++ b/utilities/doctype/contact/locale/pt-BR-doc.json @@ -0,0 +1,26 @@ +{ + "Communication HTML": "Comunica\u00e7\u00e3o HTML", + "Contact": "Contato", + "Contact Details": "Detalhes do Contato", + "Customer": "Cliente", + "Customer Name": "Nome do cliente", + "Department": "Departamento", + "Designation": "Designa\u00e7\u00e3o", + "Email Id": "Endere\u00e7o de e-mail", + "Enter department to which this Contact belongs": "Entre com o departamento a que este contato pertence", + "Enter designation of this Contact": "Digite a designa\u00e7\u00e3o deste contato", + "First Name": "Nome", + "Is Primary Contact": "\u00c9 o contato principal", + "Last Name": "Sobrenome", + "Mobile No": "Telefone Celular", + "Open": "Abrir", + "Phone": "Telefone", + "Replied": "Respondeu", + "Sales Partner": "Parceiro de Vendas", + "Status": "Estado", + "Supplier": "Fornecedor", + "Supplier Name": "Nome do Fornecedor", + "Trash Reason": "Raz\u00e3o de p\u00f4r no lixo", + "Unsubscribed": "Inscri\u00e7\u00e3o Cancelada", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/doctype/gl_mapper/locale/pt-BR-doc.json b/utilities/doctype/gl_mapper/locale/pt-BR-doc.json new file mode 100644 index 0000000000..167ffa7388 --- /dev/null +++ b/utilities/doctype/gl_mapper/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Doc Type": "Tipo do Documento", + "Fields": "Campos", + "GL Mapper": "Mapeamento GL", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/doctype/gl_mapper_detail/locale/pt-BR-doc.json b/utilities/doctype/gl_mapper_detail/locale/pt-BR-doc.json new file mode 100644 index 0000000000..63b65f3c0e --- /dev/null +++ b/utilities/doctype/gl_mapper_detail/locale/pt-BR-doc.json @@ -0,0 +1,24 @@ +{ + "Account": "Conta", + "Against": "Contra", + "Against Voucher": "Contra Comprovante", + "Against Voucher Type": "Contra Tipo de Comprovante", + "Aging Date": "Data de Envelhecimento", + "Company": "Empresa", + "Cost Center": "Centro de Custos", + "Credit": "Cr\u00e9dito", + "Debit": "D\u00e9bito", + "Fiscal Year": "Exerc\u00edcio fiscal", + "GL Mapper Detail": "Detalhe do Mapeamento GL", + "Is Advance": "\u00c9 antecipado", + "Is Opening": "\u00c9 abertura", + "Posting Date": "Data da Postagem", + "Remarks": "Observa\u00e7\u00f5es", + "Table Field": "Campo da Tabela", + "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", + "The date at which current entry will get or has actually executed.": "A data em que o lan\u00e7amento atual vai ser ou foi realmente executado.", + "Transaction Date": "Data da Transa\u00e7\u00e3o", + "Utilities": "Utilit\u00e1rios", + "Voucher No": "N\u00ba do comprovante", + "Voucher Type": "Tipo de comprovante" +} \ No newline at end of file diff --git a/utilities/doctype/profile_control/locale/pt-BR-doc.json b/utilities/doctype/profile_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..bf95a3a89f --- /dev/null +++ b/utilities/doctype/profile_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Profile Control": "Controle de Perfil", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/doctype/question/locale/pt-BR-doc.json b/utilities/doctype/question/locale/pt-BR-doc.json new file mode 100644 index 0000000000..36a2804f8c --- /dev/null +++ b/utilities/doctype/question/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Answer": "Resposta", + "File List": "Lista de Arquivos", + "Points": "Pontos", + "Question": "Pergunta", + "User Tags": "Etiquetas de Usu\u00e1rios", + "Users Voted": "Votos de usu\u00e1rios", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/doctype/rename_tool/locale/pt-BR-doc.json b/utilities/doctype/rename_tool/locale/pt-BR-doc.json new file mode 100644 index 0000000000..8cf6a1b6b5 --- /dev/null +++ b/utilities/doctype/rename_tool/locale/pt-BR-doc.json @@ -0,0 +1,17 @@ +{ + "Account": "Conta", + "Company": "Empresa", + "Customer": "Cliente", + "Document to rename": "Documento para renomear", + "Employee": "Funcion\u00e1rio", + "Item": "Item", + "New Name": "Novo nome", + "Profile": "Perfil", + "Rename": "Renomear", + "Rename Tool": "Ferramenta de Renomear", + "Select DocType": "Selecione o DocType", + "Serial No": "N\u00ba de S\u00e9rie", + "Supplier": "Fornecedor", + "Utilities": "Utilit\u00e1rios", + "Warehouse": "Almoxarifado" +} \ No newline at end of file diff --git a/utilities/doctype/sms_control/locale/pt-BR-doc.json b/utilities/doctype/sms_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..53b2d54d92 --- /dev/null +++ b/utilities/doctype/sms_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "SMS Control": "Controle de SMS", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/doctype/sms_log/locale/pt-BR-doc.json b/utilities/doctype/sms_log/locale/pt-BR-doc.json new file mode 100644 index 0000000000..c89092ff46 --- /dev/null +++ b/utilities/doctype/sms_log/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "Message": "Mensagem", + "No of Requested SMS": "N\u00ba de SMS pedidos", + "No of Sent SMS": "N\u00ba de SMS enviados", + "Receiver List": "Lista de recebedores", + "SMS Log": "Log de SMS", + "Sender Name": "Nome do Remetente", + "Sent On": "Enviado em", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/doctype/sms_receiver/locale/pt-BR-doc.json b/utilities/doctype/sms_receiver/locale/pt-BR-doc.json new file mode 100644 index 0000000000..c4fb837c1e --- /dev/null +++ b/utilities/doctype/sms_receiver/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Customer Name": "Nome do cliente", + "Mobile No": "Telefone Celular", + "Receiver Name": "Nome do recebedor", + "SMS Receiver": "Receptor do SMS", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/doctype/trash_control/locale/pt-BR-doc.json b/utilities/doctype/trash_control/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2c4e803c64 --- /dev/null +++ b/utilities/doctype/trash_control/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Trash Control": "Controle de lixo", + "Utilities": "Utilit\u00e1rios" +} \ No newline at end of file diff --git a/utilities/locale/pt-BR-py.json b/utilities/locale/pt-BR-py.json new file mode 100644 index 0000000000..0e96fbdc0d --- /dev/null +++ b/utilities/locale/pt-BR-py.json @@ -0,0 +1,3 @@ +{ + "Status must be one of ": "Estado deve ser um dos" +} \ No newline at end of file diff --git a/utilities/module_def/utilities/locale/pt-BR-doc.json b/utilities/module_def/utilities/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a0e6ea8d72 --- /dev/null +++ b/utilities/module_def/utilities/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "Markdown Reference": "Refer\u00eancia de Desconto", + "Messages": "Mensagens", + "To Do": "Lista de Tarefas", + "Trash": "Lixo", + "Users": "Usu\u00e1rios", + "WIP Monitor": "Monitor do WIP", + "question-view": "pergunta-view", + "questions": "perguntas" +} \ No newline at end of file diff --git a/website/doctype/about_us_settings/locale/pt-BR-doc.json b/website/doctype/about_us_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..9b2dda5677 --- /dev/null +++ b/website/doctype/about_us_settings/locale/pt-BR-doc.json @@ -0,0 +1,16 @@ +{ + "\"Company History\"": ""Hist\u00f3rico da Empresa"", + "\"Team Members\" or \"Management\"": ""Membros da Equipe" ou "Gerenciamento"", + "About Us Settings": "Configura\u00e7\u00f5es do Quem Somos", + "Company History": "Hist\u00f3rico da Empresa", + "Company History Heading": "T\u00edtulo do Hist\u00f3rico da Empresa", + "Company Introduction": "Introdu\u00e7\u00e3o da Empresa", + "Footer": "Rodap\u00e9", + "Help": "Ajudar", + "Introduce your company to the website visitor.": "Apresente sua empresa para o visitante do site.", + "More content for the bottom of the page.": "Mais conte\u00fado para a parte de baixo da p\u00e1gina.", + "Settings for the About Us Page": "Configura\u00e7\u00f5es da P\u00e1gina Sobre N\u00f3s.", + "Team Members": "Membros da Equipe", + "Team Members Heading": "T\u00edtulo da p\u00e1gina Membros da Equipe", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/about_us_team_member/locale/pt-BR-doc.json b/website/doctype/about_us_team_member/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d509e0b67c --- /dev/null +++ b/website/doctype/about_us_team_member/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "About Us Team Member": "Sobre Membro da Equipe", + "Employee": "Funcion\u00e1rio", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/blog/locale/pt-BR-doc.json b/website/doctype/blog/locale/pt-BR-doc.json new file mode 100644 index 0000000000..b30e539a05 --- /dev/null +++ b/website/doctype/blog/locale/pt-BR-doc.json @@ -0,0 +1,12 @@ +{ + "Blog": "Blog", + "Blog Intro": "Blog Intro", + "Content": "Conte\u00fado", + "Description for listing page, in plain text, only a couple of lines.": "Descri\u00e7\u00e3o p\u00e1gina de listagem, em texto simples, apenas um par de linhas.", + "Email Sent": "E-mail enviado", + "File List": "Lista de Arquivos", + "Page Name": "Nome da P\u00e1gina", + "Published": "Publicado", + "Title": "T\u00edtulo", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/blog_subscriber/locale/pt-BR-doc.json b/website/doctype/blog_subscriber/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d070aa3743 --- /dev/null +++ b/website/doctype/blog_subscriber/locale/pt-BR-doc.json @@ -0,0 +1,4 @@ +{ + "Blog Subscriber": "Assinante do Blog", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/company_history/locale/pt-BR-doc.json b/website/doctype/company_history/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d1980e88dc --- /dev/null +++ b/website/doctype/company_history/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Company History": "Hist\u00f3rico da Empresa", + "Highlight": "Real\u00e7ar", + "Website": "Site", + "Year": "Ano" +} \ No newline at end of file diff --git a/website/doctype/contact_us_settings/locale/pt-BR-doc.json b/website/doctype/contact_us_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d65c6d333d --- /dev/null +++ b/website/doctype/contact_us_settings/locale/pt-BR-doc.json @@ -0,0 +1,14 @@ +{ + "Address": "Endere\u00e7o", + "Address to be displayed on the Contact Page": "O endere\u00e7o a ser exibida na P\u00e1gina de Contato", + "Contact Us Settings": "Configura\u00e7\u00f5es do Fale Conosco", + "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas.": "Op\u00e7\u00f5es de contato, como "Consulta de Vendas, Consulta de suporte", etc cada uma em uma nova linha ou separadas por v\u00edrgulas.", + "Default: \"Contact Us\"": "Default: "Fale Conosco"", + "Heading": "T\u00edtulo", + "Help": "Ajudar", + "Introduction": "Introdu\u00e7\u00e3o", + "Introductory information for the Contact Us Page": "Informa\u00e7\u00e3o introdut\u00f3ria para a p\u00e1gina Fale Conosco", + "Query Options": "Op\u00e7\u00f5es de Consulta", + "Settings for Contact Us Page": "Configura\u00e7\u00f5es da P\u00e1gina Fale Conosco.", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/cross_list_item_group/locale/pt-BR-doc.json b/website/doctype/cross_list_item_group/locale/pt-BR-doc.json new file mode 100644 index 0000000000..cac3f176e2 --- /dev/null +++ b/website/doctype/cross_list_item_group/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Cross List Item Group": "Grupo de Itens da Lista Cruzada", + "Cross Listing of Item in multiple groups": "Listagem Cruzada dos itens em m\u00faltiplos grupos", + "Item Group": "Grupo de Itens", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/product_group/locale/pt-BR-doc.json b/website/doctype/product_group/locale/pt-BR-doc.json new file mode 100644 index 0000000000..03047ce119 --- /dev/null +++ b/website/doctype/product_group/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Item Group": "Grupo de Itens", + "Label": "Etiqueta", + "Product Group": "Grupo de Produtos", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/product_settings/locale/pt-BR-doc.json b/website/doctype/product_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..d1a980de7e --- /dev/null +++ b/website/doctype/product_settings/locale/pt-BR-doc.json @@ -0,0 +1,13 @@ +{ + "Default Product Category": "Categoria de produto padr\u00e3o", + "Default: \"Product Search\"": "Padr\u00e3o: "Pesquisa de Produto"", + "Help": "Ajudar", + "List of Item Groups to be shown in \"All Products\" menu - in the sequence wanted and with number of indents (left spacing to show a tree effect).": "Lista de Grupos de Itens a serem mostrado no menu "Todos os Produtos" - na sequ\u00eancia desejada e com o n\u00famero de recuos (espa\u00e7amento \u00e0 esquerda para mostrar um efeito de \u00e1rvore).", + "Product Categories": "Categorias de Produtos", + "Product Settings": "Configura\u00e7\u00f5es do produto", + "Search Help": "Procurar Ajuda", + "Settings for Product Catalog on the website": "Configura\u00e7\u00f5es da P\u00e1gina Cat\u00e1logo de Produtos no site", + "This Item Group represents \"products.html\"": "Este Grupo de Itens representa "produtos.html"", + "Website": "Site", + "Website Product Categories": "Categorias de Produto do site" +} \ No newline at end of file diff --git a/website/doctype/products_settings/locale/pt-BR-doc.json b/website/doctype/products_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..f8f474f4d5 --- /dev/null +++ b/website/doctype/products_settings/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Groups": "Grupos", + "Product Groups that are listed on the website. The first product group from this list will be listed by default on the \"Products Page\"": "Grupos de produtos listados no site. O primeiro grupo de produtos desta lista ser\u00e3o listados por padr\u00e3o na "P\u00e1gina de Produtos"", + "Products Settings": "Configura\u00e7\u00f5es de produtos", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/related_page/locale/pt-BR-doc.json b/website/doctype/related_page/locale/pt-BR-doc.json new file mode 100644 index 0000000000..92acc67dd7 --- /dev/null +++ b/website/doctype/related_page/locale/pt-BR-doc.json @@ -0,0 +1,5 @@ +{ + "Page": "P\u00e1gina", + "Related Page": "P\u00e1gina Relacionada", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/style_settings/locale/pt-BR-doc.json b/website/doctype/style_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..be43b770b9 --- /dev/null +++ b/website/doctype/style_settings/locale/pt-BR-doc.json @@ -0,0 +1,31 @@ +{ + "12px": "12px", + "13px": "13px", + "14px": "14px", + "15px": "15px", + "16px": "16px", + "Add CSS": "Adicionar CSS", + "Arial": "Arial", + "Auto generated": "Gerado Automaticamente", + "Background Color": "Cor de Fundo", + "Background Image": "Imagem de Fundo", + "CSS": "CSS", + "Custom CSS": "CSS personalizado", + "File List": "Lista de Arquivos", + "Font": "Fonte", + "Font Size": "Tamanho da Fonte", + "Georgia": "Ge\u00f3rgia", + "Heading Font": "T\u00edtulo da fonte", + "Helvetica Neue": "Helvetica Neue", + "If image is selected, color will be ignored (attach first)": "Se a imagem for selecionada, a cor ser\u00e1 ignorada (anexar primeiro)", + "Lato": "Lato", + "Lucida Grande": "Lucida Grande", + "Open Sans": "Open Sans", + "Set your background color, font and image (tiled)": "Defina sua cor de fundo, fonte e imagem (lado a lado)", + "Solid background color (default light gray)": "Cor de fundo s\u00f3lida (padr\u00e3o cinza claro)", + "Style Settings": "Configura\u00e7\u00f5es de Estilo", + "Tahoma": "Tahoma", + "Verdana": "Verdana", + "Website": "Site", + "add your own CSS (careful!)": "adicione seu pr\u00f3prio CSS (cuidado!)" +} \ No newline at end of file diff --git a/website/doctype/top_bar_item/locale/pt-BR-doc.json b/website/doctype/top_bar_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..7dbfbac71c --- /dev/null +++ b/website/doctype/top_bar_item/locale/pt-BR-doc.json @@ -0,0 +1,9 @@ +{ + "Label": "Etiqueta", + "Parent Label": "Etiqueta pai", + "Target": "Meta", + "Top Bar Item": "Item da barra superior", + "URL": "URL", + "Website": "Site", + "target = \"_blank\"": "target = "_blank"" +} \ No newline at end of file diff --git a/website/doctype/web_page/locale/pt-BR-doc.json b/website/doctype/web_page/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2799fb236f --- /dev/null +++ b/website/doctype/web_page/locale/pt-BR-doc.json @@ -0,0 +1,27 @@ +{ + "Add code as <script>": "Adicionar c\u00f3digo como <script>", + "Begin this page with a slideshow of images": "Comece esta p\u00e1gina com um slideshow de imagens", + "CSS": "CSS", + "Center": "Centro", + "Content": "Conte\u00fado", + "Content in markdown format that appears on the main side of your page": "Conte\u00fados em formato markdown que aparecem no lado principal de sua p\u00e1gina", + "File List": "Lista de Arquivos", + "Insert Code": "Inserir C\u00f3digo", + "Insert Style": "Inserir Estilo", + "Javascript": "Javascript", + "Left": "Esquerda", + "Link to other pages in the side bar and next section": "Link para outras p\u00e1ginas na barra lateral e se\u00e7\u00e3o seguinte", + "Main Section": "Se\u00e7\u00e3o Principal", + "More": "Mais", + "Page Name": "Nome da P\u00e1gina", + "Page content": "Conte\u00fado da p\u00e1gina", + "Page url name (auto-generated) (add \".html\")": "Nome da p\u00e1gina url (gerado automaticamente) (adicione ".html")", + "Published": "Publicado", + "Right": "Direito", + "Slideshow": "Apresenta\u00e7\u00e3o de slides", + "Text Align": "Alinhar Texto", + "Title": "T\u00edtulo", + "Title / headline of your page": "T\u00edtulo / chamada da sua p\u00e1gina", + "Web Page": "P\u00e1gina Web", + "Website": "Site" +} \ No newline at end of file diff --git a/website/doctype/website_item_group/locale/pt-BR-doc.json b/website/doctype/website_item_group/locale/pt-BR-doc.json new file mode 100644 index 0000000000..30adcc9073 --- /dev/null +++ b/website/doctype/website_item_group/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Cross Listing of Item in multiple groups": "Listagem Cruzada dos itens em m\u00faltiplos grupos", + "Item Group": "Grupo de Itens", + "Website": "Site", + "Website Item Group": "Grupo de Itens do site" +} \ No newline at end of file diff --git a/website/doctype/website_product_category/locale/pt-BR-doc.json b/website/doctype/website_product_category/locale/pt-BR-doc.json new file mode 100644 index 0000000000..5fc8d29173 --- /dev/null +++ b/website/doctype/website_product_category/locale/pt-BR-doc.json @@ -0,0 +1,7 @@ +{ + "Indent": "Recuar", + "Item Group": "Grupo de Itens", + "Product Category for website": "Categoria de Produto para o site", + "Website": "Site", + "Website Product Category": "Categoria de Produto do site" +} \ No newline at end of file diff --git a/website/doctype/website_script/locale/pt-BR-doc.json b/website/doctype/website_script/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a52dfe34d0 --- /dev/null +++ b/website/doctype/website_script/locale/pt-BR-doc.json @@ -0,0 +1,6 @@ +{ + "Javascript": "Javascript", + "Script to attach to all web pages.": "Script para anexar a todas as p\u00e1ginas da web.", + "Website": "Site", + "Website Script": "Script do site" +} \ No newline at end of file diff --git a/website/doctype/website_settings/locale/pt-BR-doc.json b/website/doctype/website_settings/locale/pt-BR-doc.json new file mode 100644 index 0000000000..a60d6264cc --- /dev/null +++ b/website/doctype/website_settings/locale/pt-BR-doc.json @@ -0,0 +1,40 @@ +{ + "Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.": "Adicionar ID do Google Analytics: ex. UA-89XXX57-1. Por favor, procure ajuda no Google Analytics para obter mais informa\u00e7\u00f5es.", + "Address": "Endere\u00e7o", + "Address and other legal information you may want to put in the footer.": "Endere\u00e7o e outras informa\u00e7\u00f5es legais que voc\u00ea possa querer colocar no rodap\u00e9.", + "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]": "Um arquivo de \u00edcone com extens\u00e3o .ico. Deve ser de 16 x 16 px. Gerado usando um gerador de favicon. [ favicon-generator.org ]", + "Background shade of the top menu bar": "Sombra de fundo da barra do menu superior", + "Black": "Preto", + "Brand HTML": "Marca HTML", + "Copyright": "Direitos autorais", + "Domain List": "Lista de Dom\u00ednios", + "Enter domain names associated to this website, each on a new line": "Digite os nomes de dom\u00ednio associados a este site, cada um em uma nova linha", + "Facebook Share": "Compartilhar Facebook", + "FavIcon": "FavIcon", + "File List": "Lista de Arquivos", + "Footer": "Rodap\u00e9", + "Footer Items": "Itens do Rodap\u00e9", + "Google Analytics ID": "ID do Google Analytics", + "Google Plus One": "Google Plus One", + "Home Page": "P\u00e1gina Inicial", + "Home Page is Products": "P\u00e1gina Inicial \u00e9 Produtos", + "If checked, the Home page will be the default Item Group for the website.": "Se marcado, a p\u00e1gina inicial do site ser\u00e1 o Grupo de Itens padr\u00e3o.", + "Integrations": "Integra\u00e7\u00f5es", + "Landing Page": "P\u00e1gina de chegada", + "Linked In Share": "Linked In Compartilhar", + "Misc": "Diversos", + "Sub-domain provided by erpnext.com": "Sub-dom\u00ednio fornecido pelo erpnext.com", + "Subdomain": "Subdom\u00ednio", + "The \"Web Page\" that is the website home page": "A "P\u00e1gina Web" que \u00e9 a p\u00e1gina inicial do site", + "The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.": "O nome da sua empresa / site da forma que voc\u00ea quer que apare\u00e7a na barra de t\u00edtulo do navegador. Todas as p\u00e1ginas v\u00e3o ter isso como o prefixo para o t\u00edtulo.", + "Title Prefix": "Prefixo do T\u00edtulo", + "Top Bar": "Barra Superior", + "Top Bar Background": "Fundo da barra superior", + "Top Bar Items": "Itens da barra superior", + "Tweet will be shared via your user account (if specified)": "Tweet ser\u00e3o compartilhados atrav\u00e9s da sua conta de usu\u00e1rio (se especificado)", + "Twitter Share": "Compartilhar Twitter", + "Twitter Share via": "Twitter Partilhar atrav\u00e9s do", + "Website": "Site", + "Website Settings": "Configura\u00e7\u00f5es do site", + "White": "Branco" +} \ No newline at end of file diff --git a/website/doctype/website_slideshow/locale/pt-BR-doc.json b/website/doctype/website_slideshow/locale/pt-BR-doc.json new file mode 100644 index 0000000000..07a59486ef --- /dev/null +++ b/website/doctype/website_slideshow/locale/pt-BR-doc.json @@ -0,0 +1,10 @@ +{ + "File List": "Lista de Arquivos", + "Header": "Cabe\u00e7alho", + "Slideshow Items": "Itens da Apresenta\u00e7\u00e3o de slides", + "Slideshow Name": "Nome da Apresenta\u00e7\u00e3o de slides", + "Slideshow like display for the website": "Exibi\u00e7\u00e3o do tipo Apresenta\u00e7\u00e3o de slides para o site", + "This goes above the slideshow.": "Isto vai acima do slideshow.", + "Website": "Site", + "Website Slideshow": "Slideshow do site" +} \ No newline at end of file diff --git a/website/doctype/website_slideshow_item/locale/pt-BR-doc.json b/website/doctype/website_slideshow_item/locale/pt-BR-doc.json new file mode 100644 index 0000000000..2d5959c72e --- /dev/null +++ b/website/doctype/website_slideshow_item/locale/pt-BR-doc.json @@ -0,0 +1,8 @@ +{ + "Description": "Descri\u00e7\u00e3o", + "File List": "Lista de Arquivos", + "Heading": "T\u00edtulo", + "Image": "Imagem", + "Website": "Site", + "Website Slideshow Item": "Item do Slideshow do site" +} \ No newline at end of file diff --git a/website/module_def/website/locale/pt-BR-doc.json b/website/module_def/website/locale/pt-BR-doc.json new file mode 100644 index 0000000000..40d1ff43df --- /dev/null +++ b/website/module_def/website/locale/pt-BR-doc.json @@ -0,0 +1,12 @@ +{ + "Cross Listing of Item in multiple groups": "Listagem Cruzada dos itens em m\u00faltiplos grupos", + "Product Category for website": "Categoria de Produto para o site", + "Script to attach to all web pages.": "Script para anexar a todas as p\u00e1ginas da web.", + "Set your background color, font and image (tiled)": "Defina sua cor de fundo, fonte e imagem (lado a lado)", + "Settings for Contact Us Page": "Configura\u00e7\u00f5es da P\u00e1gina Fale Conosco.", + "Settings for Product Catalog on the website": "Configura\u00e7\u00f5es da P\u00e1gina Cat\u00e1logo de Produtos no site", + "Settings for the About Us Page": "Configura\u00e7\u00f5es da P\u00e1gina Sobre N\u00f3s.", + "Slideshow like display for the website": "Exibi\u00e7\u00e3o do tipo Apresenta\u00e7\u00e3o de slides para o site", + "Unsubscribe": "Cancelar Inscri\u00e7\u00e3o", + "Website Home": "P\u00e1gina Inicial do Site" +} \ No newline at end of file diff --git a/website/page/website_home/locale/pt-BR-js.json b/website/page/website_home/locale/pt-BR-js.json new file mode 100644 index 0000000000..5bd29c1af4 --- /dev/null +++ b/website/page/website_home/locale/pt-BR-js.json @@ -0,0 +1,24 @@ +{ + "About Us Settings": "Configura\u00e7\u00f5es do Quem Somos", + "Advanced Scripting": "Scripts Avan\u00e7ados", + "Blog": "Blog", + "Blog entry.": "Entrada do Blog.", + "Contact Us Settings": "Configura\u00e7\u00f5es do Fale Conosco", + "Content web page.": "P\u00e1gina web de conte\u00fado.", + "Embed image slideshows in website pages.": "Incorporar apresenta\u00e7\u00f5es de imagem em p\u00e1ginas do site.", + "Javascript to append to the head section of the page.": "Javascript para acrescentar ao cabe\u00e7alho da p\u00e1gina.", + "Product Settings": "Configura\u00e7\u00f5es do produto", + "Settings for About Us Page.": "Configura\u00e7\u00f5es da P\u00e1gina Sobre N\u00f3s.", + "Settings for Contact Us Page.": "Configura\u00e7\u00f5es da P\u00e1gina Fale Conosco.", + "Settings for Product Catalog on the website.": "Configura\u00e7\u00f5es da P\u00e1gina Cat\u00e1logo de Produtos no site.", + "Setup of fonts and background.": "Configura\u00e7\u00e3o de fontes e de fundo.", + "Setup of top navigation bar, footer and logo.": "Configura\u00e7\u00e3o de barra de navega\u00e7\u00e3o do topo, rodap\u00e9, e logotipo.", + "Special Page Settings": "Configura\u00e7\u00f5es Especiais de p\u00e1gina", + "Style Settings": "Configura\u00e7\u00f5es de Estilo", + "Web Content": "Conte\u00fado da Web", + "Web Page": "P\u00e1gina Web", + "Website Overall Settings": "Configura\u00e7\u00f5es gerais do site", + "Website Script": "Script do site", + "Website Settings": "Configura\u00e7\u00f5es do site", + "Website Slideshow": "Slideshow do site" +} \ No newline at end of file From 14ab44801954c3dfc986f2a63e1020e0ecdac945 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 25 Feb 2013 13:11:38 +0530 Subject: [PATCH 030/982] reload report before running patches --- patches/patch_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patches/patch_list.py b/patches/patch_list.py index 6d05ad5174..f7b0842ad8 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -191,6 +191,7 @@ patch_list = [ "execute:webnotes.delete_doc('Search Criteria', 'employeewise_balance_leave_report')", "execute:webnotes.delete_doc('Search Criteria', 'employee_leave_balance_report')", "patches.february_2013.repost_reserved_qty", + "execute:reload_doc('core', 'doctype', 'report') # 2013-02-25", "execute:webnotes.conn.sql(\"update `tabReport` set report_type=if(ifnull(query, '')='', 'Report Builder', 'Query Report') where is_standard='No'\")", "execute:webnotes.conn.sql(\"update `tabReport` set report_name=name where ifnull(report_name,'')='' and is_standard='No'\")" ] \ No newline at end of file From 7bc7aefcbb1c0990da7be69c7891532ad4e9411a Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 25 Feb 2013 13:12:37 +0530 Subject: [PATCH 031/982] reload report before running patches --- patches/patch_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index f7b0842ad8..6603648bea 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -191,7 +191,7 @@ patch_list = [ "execute:webnotes.delete_doc('Search Criteria', 'employeewise_balance_leave_report')", "execute:webnotes.delete_doc('Search Criteria', 'employee_leave_balance_report')", "patches.february_2013.repost_reserved_qty", - "execute:reload_doc('core', 'doctype', 'report') # 2013-02-25", + "execute:webnotes.reload_doc('core', 'doctype', 'report') # 2013-02-25", "execute:webnotes.conn.sql(\"update `tabReport` set report_type=if(ifnull(query, '')='', 'Report Builder', 'Query Report') where is_standard='No'\")", "execute:webnotes.conn.sql(\"update `tabReport` set report_name=name where ifnull(report_name,'')='' and is_standard='No'\")" ] \ No newline at end of file From 98e78e7ccbbb992fc37b7a852e24f9610a918395 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 25 Feb 2013 13:13:04 +0530 Subject: [PATCH 032/982] fixes in email digest --- setup/doctype/email_digest/email_digest.py | 82 ++++++++++++--------- setup/doctype/email_digest/email_digest.txt | 52 ++++++++----- 2 files changed, 82 insertions(+), 52 deletions(-) diff --git a/setup/doctype/email_digest/email_digest.py b/setup/doctype/email_digest/email_digest.py index 9f28f13286..cb49f3cf99 100644 --- a/setup/doctype/email_digest/email_digest.py +++ b/setup/doctype/email_digest/email_digest.py @@ -17,14 +17,16 @@ from __future__ import unicode_literals import webnotes from webnotes import _ -from webnotes.utils import fmt_money, formatdate, now_datetime, cstr, esc, get_url_to_form +from webnotes.utils import fmt_money, formatdate, now_datetime, cstr, esc, \ + get_url_to_form, get_fullname from webnotes.utils.dateutils import datetime_in_user_format from datetime import timedelta from dateutil.relativedelta import relativedelta content_sequence = [ - ["Accounts", ["income_year_to_date", "bank_balance", - "income", "expenses_booked", "collections", "payments", + ["Income / Expenses", ["income_year_to_date", "bank_balance", + "income", "expenses_booked"]], + ["Receivables / Payables", ["collections", "payments", "invoiced_amount", "payables"]], ["Buying", ["new_purchase_requests", "new_supplier_quotations", "new_purchase_orders"]], ["Selling", ["new_leads", "new_enquiries", "new_quotations", "new_sales_orders"]], @@ -53,7 +55,8 @@ row_template = """

    %(currency)s%(value)s

    """ -class DocType: +from webnotes.model.controller import DocListController +class DocType(DocListController): def __init__(self, doc, doclist=[]): self.doc, self.doclist = doc, doclist self.from_date, self.to_date = self.get_from_to_date() @@ -156,7 +159,7 @@ class DocType: def get_income_year_to_date(self): return self.get_income(webnotes.conn.get_defaults("year_start_date"), - "Income Year To Date") + self.meta.get_label("income_year_to_date")) def get_bank_balance(self): # account is of type "Bank or Cash" @@ -186,7 +189,8 @@ class DocType: if gle["account"] in accounts: income += gle["credit"] - gle["debit"] - return income, self.get_html(label or "Income", self.currency, fmt_money(income)) + return income, self.get_html(label or self.meta.get_label("income"), self.currency, + fmt_money(income)) def get_expenses_booked(self): # account is PL Account and Debit type account @@ -198,13 +202,14 @@ class DocType: if gle["account"] in accounts: expense += gle["debit"] - gle["credit"] - return expense, self.get_html("Expenses", self.currency, fmt_money(expense)) + return expense, self.get_html(self.meta.get_label("expenses_booked"), self.currency, + fmt_money(expense)) def get_collections(self): - return self.get_party_total("Customer", "credit", "Collections") + return self.get_party_total("Customer", "credit", self.meta.get_label("collections")) def get_payments(self): - return self.get_party_total("Supplier", "debit", "Payments") + return self.get_party_total("Supplier", "debit", self.meta.get_label("payments")) def get_party_total(self, party_type, gle_field, label): import re @@ -222,16 +227,17 @@ class DocType: # check that its made against a bank or cash account if gle["account"] in accounts and gle["against"] and \ bc_regex.findall(gle["against"]): - total += gle[gle_field] - + val = gle["debit"] - gle["credit"] + total += (gle_field=="debit" and 1 or -1) * val + return total, self.get_html(label, self.currency, fmt_money(total)) def get_invoiced_amount(self): # aka receivables - return self.get_booked_total("Customer", "debit", "Receivables") + return self.get_booked_total("Customer", "debit", self.meta.get_label("invoiced_amount")) def get_payables(self): - return self.get_booked_total("Supplier", "credit", "Payables") + return self.get_booked_total("Supplier", "credit", self.meta.get_label("payables")) def get_booked_total(self, party_type, gle_field, label): # account is of master_type Customer or Supplier @@ -246,45 +252,46 @@ class DocType: return total, self.get_html(label, self.currency, fmt_money(total)) def get_new_leads(self): - return self.get_new_count("Lead", "New Leads") + return self.get_new_count("Lead", self.meta.get_label("new_leads")) def get_new_enquiries(self): - return self.get_new_count("Opportunity", "New Opportunities") + return self.get_new_count("Opportunity", self.meta.get_label("new_enquiries")) def get_new_quotations(self): - return self.get_new_sum("Quotation", "New Quotations", "grand_total") + return self.get_new_sum("Quotation", self.meta.get_label("new_quotations"), "grand_total") def get_new_sales_orders(self): - return self.get_new_sum("Sales Order", "New Sales Orders", "grand_total") + return self.get_new_sum("Sales Order", self.meta.get_label("new_sales_orders"), "grand_total") def get_new_delivery_notes(self): - return self.get_new_sum("Delivery Note", "New Delivery Notes", "grand_total") + return self.get_new_sum("Delivery Note", self.meta.get_label("new_delivery_notes"), "grand_total") def get_new_purchase_requests(self): - return self.get_new_count("Material Request", "New Material Requests") + return self.get_new_count("Material Request", self.meta.get_label("new_purchase_requests")) def get_new_supplier_quotations(self): - return self.get_new_sum("Supplier Quotation", "New Supplier Quotations", + return self.get_new_sum("Supplier Quotation", self.meta.get_label("new_supplier_quotations"), "grand_total") def get_new_purchase_orders(self): - return self.get_new_sum("Purchase Order", "New Purchase Orders", "grand_total") + return self.get_new_sum("Purchase Order", self.meta.get_label("new_purchase_orders"), + "grand_total") def get_new_purchase_receipts(self): - return self.get_new_sum("Purchase Receipt", "New Purchase Receipts", + return self.get_new_sum("Purchase Receipt", self.meta.get_label("new_purchase_receipts"), "grand_total") def get_new_stock_entries(self): - return self.get_new_sum("Stock Entry", "New Stock Entries", "total_amount") + return self.get_new_sum("Stock Entry", self.meta.get_label("new_stock_entries"), "total_amount") def get_new_support_tickets(self): - return self.get_new_count("Support Ticket", "New Support Tickets", False) + return self.get_new_count("Support Ticket", self.meta.get_label("new_support_tickets"), False) def get_new_communications(self): - return self.get_new_count("Communication", "New Communications", False) + return self.get_new_count("Communication", self.meta.get_label("new_communications"), False) def get_new_projects(self): - return self.get_new_count("Project", "New Projects", False) + return self.get_new_count("Project", self.meta.get_label("new_projects"), False) def get_calendar_events(self, user_id): from core.doctype.event.event import get_events @@ -302,7 +309,10 @@ class DocType: html += "
  • %s [%s - %s]
  • " % \ (e.subject, datetime_in_user_format(e.starts_on), datetime_in_user_format(e.ends_on)) - return html and 1 or 0, "

    Upcoming Calendar Events (max 10):

      " + html + "

    " + if html: + return 1, "

    Upcoming Calendar Events (max 10):

      " + html + "

    " + else: + return 0, "

    Calendar Events

    " def get_todo_list(self, user_id): from utilities.page.todo.todo import get @@ -313,11 +323,17 @@ class DocType: for i, todo in enumerate([todo for todo in todo_list if not todo.checked]): if i>= 10: break - html += "
  • %s [%s]
  • " % (todo.description or \ - get_url_to_form(todo.reference_type, todo.reference_name), todo.priority) + if not todo.description and todo.reference_type: + todo.description = "%s: %s - %s %s" % \ + (todo.reference_type, get_url_to_form(todo.reference_type, todo.reference_name), + _("assigned by"), get_fullname(todo.assigned_by)) + + html += "
  • %s [%s]
  • " % (todo.description, todo.priority) - - return html and 1 or 0, "

    To Do (max 10):

      " + html + "

    " + if html: + return 1, "

    To Do (max 10):

      " + html + "

    " + else: + return 0, "

    To Do

    " def get_new_count(self, doctype, label, filter_by_company=True): if filter_by_company: @@ -376,7 +392,7 @@ class DocType: self.accounts = webnotes.conn.sql("""select name, is_pl_account, debit_or_credit, account_type, account_name, master_type from `tabAccount` where company=%s and docstatus < 2 - order by lft""", + and group_or_ledger = "Ledger" order by lft""", (self.doc.company,), as_dict=1) return self.accounts @@ -449,7 +465,7 @@ class DocType: def onload(self): self.get_next_sending() - + def send(): from webnotes.model.code import get_obj from webnotes.utils import getdate diff --git a/setup/doctype/email_digest/email_digest.txt b/setup/doctype/email_digest/email_digest.txt index 0b40fb4b0c..7817429ad3 100644 --- a/setup/doctype/email_digest/email_digest.txt +++ b/setup/doctype/email_digest/email_digest.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-18 13:36:19", + "creation": "2013-02-21 14:15:31", "docstatus": 0, - "modified": "2013-02-18 13:43:50", + "modified": "2013-02-25 13:08:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -109,7 +109,7 @@ "doctype": "DocField", "fieldname": "accounts_module", "fieldtype": "Column Break", - "label": "Accounts" + "label": "Income / Expense" }, { "doctype": "DocField", @@ -118,47 +118,67 @@ "label": "Income Year to Date" }, { + "description": "Balances of Accounts of type \"Bank or Cash\"", "doctype": "DocField", "fieldname": "bank_balance", "fieldtype": "Check", - "label": "Bank Balance" + "label": "Bank/Cash Balance" }, { + "description": "Income booked for the digest period", "doctype": "DocField", "fieldname": "income", "fieldtype": "Check", - "label": "Income" + "label": "Income Booked" }, { + "description": "Expenses booked for the digest period", "doctype": "DocField", "fieldname": "expenses_booked", "fieldtype": "Check", "label": "Expenses Booked" }, { + "description": "Receivable / Payable account will be identified based on the field Master Type", + "doctype": "DocField", + "fieldname": "column_break_16", + "fieldtype": "Column Break", + "label": "Receivables / Payables" + }, + { + "description": "Payments received during the digest period", "doctype": "DocField", "fieldname": "collections", "fieldtype": "Check", - "label": "Collections" + "label": "Payments Received" }, { + "description": "Payments made during the digest period", "doctype": "DocField", "fieldname": "payments", "fieldtype": "Check", - "label": "Payments" + "label": "Payments Made" }, { + "description": "Total amount of invoices sent to the customer during the digest period", "doctype": "DocField", "fieldname": "invoiced_amount", "fieldtype": "Check", "label": "Receivables" }, { + "description": "Total amount of invoices received from suppliers during the digest period", "doctype": "DocField", "fieldname": "payables", "fieldtype": "Check", "label": "Payables" }, + { + "doctype": "DocField", + "fieldname": "section_break_20", + "fieldtype": "Section Break", + "options": "Simple" + }, { "doctype": "DocField", "fieldname": "buying_module", @@ -213,12 +233,6 @@ "fieldtype": "Check", "label": "New Sales Orders" }, - { - "doctype": "DocField", - "fieldname": "section_break_34", - "fieldtype": "Section Break", - "options": "Simple" - }, { "doctype": "DocField", "fieldname": "stock_module", @@ -243,6 +257,12 @@ "fieldtype": "Check", "label": "New Stock Entries" }, + { + "doctype": "DocField", + "fieldname": "section_break_34", + "fieldtype": "Section Break", + "options": "Simple" + }, { "doctype": "DocField", "fieldname": "support_module", @@ -279,12 +299,6 @@ "fieldtype": "Check", "label": "New Projects" }, - { - "doctype": "DocField", - "fieldname": "section_break_41", - "fieldtype": "Section Break", - "options": "Simple" - }, { "doctype": "DocField", "fieldname": "utilities_module", From b60aef5595694a865eef50dbac56dbd94097a699 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 25 Feb 2013 15:22:20 +0530 Subject: [PATCH 033/982] added report button in todo page --- .../employee_leave_balance/employee_leave_balance.py | 3 ++- patches/february_2013/p08_todo_query_report.py | 8 ++++++++ patches/patch_list.py | 3 ++- utilities/page/todo/todo.js | 6 ++++++ 4 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 patches/february_2013/p08_todo_query_report.py diff --git a/hr/report/employee_leave_balance/employee_leave_balance.py b/hr/report/employee_leave_balance/employee_leave_balance.py index 23b4bd438f..d7ad472568 100644 --- a/hr/report/employee_leave_balance/employee_leave_balance.py +++ b/hr/report/employee_leave_balance/employee_leave_balance.py @@ -2,7 +2,8 @@ from __future__ import unicode_literals import webnotes from webnotes.widgets.reportview import execute as runreport -def execute(filters={}): +def execute(filters=None): + if not filters: filters = {} employees = runreport(doctype="Employee", fields=["name", "employee_name", "department"]) leave_types = webnotes.conn.sql_list("select name from `tabLeave Type`") diff --git a/patches/february_2013/p08_todo_query_report.py b/patches/february_2013/p08_todo_query_report.py new file mode 100644 index 0000000000..6b25aba9ca --- /dev/null +++ b/patches/february_2013/p08_todo_query_report.py @@ -0,0 +1,8 @@ +import webnotes + +def execute(): + webnotes.clear_perms("Report") + webnotes.clear_perms("ToDo") + webnotes.reload_doc("core", "doctype", "report") + webnotes.reload_doc("core", "doctype", "todo") + webnotes.reload_doc("core", "report", "todo") diff --git a/patches/patch_list.py b/patches/patch_list.py index 6603648bea..1e30b7ecba 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -193,5 +193,6 @@ patch_list = [ "patches.february_2013.repost_reserved_qty", "execute:webnotes.reload_doc('core', 'doctype', 'report') # 2013-02-25", "execute:webnotes.conn.sql(\"update `tabReport` set report_type=if(ifnull(query, '')='', 'Report Builder', 'Query Report') where is_standard='No'\")", - "execute:webnotes.conn.sql(\"update `tabReport` set report_name=name where ifnull(report_name,'')='' and is_standard='No'\")" + "execute:webnotes.conn.sql(\"update `tabReport` set report_name=name where ifnull(report_name,'')='' and is_standard='No'\")", + "patches.february_2013.p08_todo_query_report", ] \ No newline at end of file diff --git a/utilities/page/todo/todo.js b/utilities/page/todo/todo.js index cad5fbd28b..fa82002ea7 100644 --- a/utilities/page/todo/todo.js +++ b/utilities/page/todo/todo.js @@ -193,6 +193,12 @@ wn.pages.todo.onload = function(wrapper) { date:get_today(), priority:'Medium', checked:0, description:''}); }, 'icon-plus'); wrapper.appframe.add_ripped_paper_effect(wrapper); + + // show report button for System Manager + if(wn.boot.profile.roles.indexOf("System Manager") !== -1) { + wrapper.appframe.add_button("Report", function() { wn.set_route("query-report", "todo"); }, + "icon-table"); + } // load todos erpnext.todo.refresh(); From 7f27d34f81f973882f2e3867379691e060d058c9 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 25 Feb 2013 15:38:28 +0530 Subject: [PATCH 034/982] Material Request - Print Heading as a Link field --- stock/doctype/material_request/material_request.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stock/doctype/material_request/material_request.txt b/stock/doctype/material_request/material_request.txt index 0668bdf5f1..f2e6b3573a 100644 --- a/stock/doctype/material_request/material_request.txt +++ b/stock/doctype/material_request/material_request.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-20 13:25:31", + "creation": "2013-02-21 14:15:25", "docstatus": 0, - "modified": "2013-02-21 10:59:09", + "modified": "2013-02-25 15:38:02", "modified_by": "Administrator", "owner": "Administrator" }, @@ -326,7 +326,7 @@ "allow_on_submit": 1, "doctype": "DocField", "fieldname": "select_print_heading", - "fieldtype": "Select", + "fieldtype": "Link", "label": "Select Print Heading", "options": "Print Heading", "print_hide": 1 From 3be594a7ed28bcae4873df4365726bfc00bb9b70 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 25 Feb 2013 16:48:44 +0530 Subject: [PATCH 035/982] fixes in sms control --- utilities/doctype/sms_control/sms_control.py | 48 +++++--------------- 1 file changed, 11 insertions(+), 37 deletions(-) diff --git a/utilities/doctype/sms_control/sms_control.py b/utilities/doctype/sms_control/sms_control.py index 857dfdb1a5..653eb77e14 100644 --- a/utilities/doctype/sms_control/sms_control.py +++ b/utilities/doctype/sms_control/sms_control.py @@ -30,8 +30,6 @@ class DocType: self.doc = doc self.doclist = doclist - # validate receiver numbers - # ========================================================= def validate_receiver_nos(self,receiver_list): validated_receiver_list = [] for d in receiver_list: @@ -39,38 +37,21 @@ class DocType: invalid_char_list = [' ', '+', '-', '(', ')'] for x in invalid_char_list: d = d.replace(x, '') - - # mobile no validation for erpnext gateway - if webnotes.conn.get_value('SMS Settings', None, 'sms_gateway_url'): - mob_no = d - else: - if not d.startswith("0") and len(d) == 10: - mob_no = "91" + d - elif d.startswith("0") and len(d) == 11: - mob_no = "91" + d[1:] - elif len(d) == 12: - mob_no = d - else: - msgprint("Invalid mobile no : " + cstr(d)) - raise Exception - - if not mob_no.isdigit(): - msgprint("Invalid mobile no : " + cstr(mob_no)) - raise Exception - - validated_receiver_list.append(mob_no) + + validated_receiver_list.append(d) if not validated_receiver_list: - msgprint("Please enter valid mobile nos") - raise Exception + msgprint("Please enter valid mobile nos", raise_exception=1) return validated_receiver_list def get_sender_name(self): "returns name as SMS sender" - sender_name = webnotes.conn.get_value('Global Defaults', None, 'sms_sender_name') or 'ERPNXT' - if len(sender_name) > 6: + sender_name = webnotes.conn.get_value('Global Defaults', None, 'sms_sender_name') or \ + 'ERPNXT' + if len(sender_name) > 6 and \ + webnotes.conn.get_value("Control Panel", None, "country") == "India": msgprint(""" As per TRAI rule, sender name must be exactly 6 characters. Kindly change sender name in Setup --> Global Defaults. @@ -82,8 +63,8 @@ class DocType: def get_contact_number(self, arg): "returns mobile number of the contact" args = load_json(arg) - number = sql('select mobile_no, phone from tabContact where name=%s and %s=%s' % ('%s', args['key'], '%s'),\ - (args['contact_name'], args['value'])) + number = sql("""select mobile_no, phone from tabContact where name=%s and %s=%s""" % + ('%s', args['key'], '%s'), (args['contact_name'], args['value'])) return number and (number[0][0] or number[0][1]) or '' def send_form_sms(self, arg): @@ -91,9 +72,6 @@ class DocType: args = load_json(arg) self.send_sms([str(args['number'])], str(args['message'])) - - # Send SMS - # ========================================================= def send_sms(self, receiver_list, msg, sender_name = ''): receiver_list = self.validate_receiver_nos(receiver_list) @@ -103,15 +81,11 @@ class DocType: 'sender_name' : sender_name or self.get_sender_name() } - # personalized or erpnext gateway if webnotes.conn.get_value('SMS Settings', None, 'sms_gateway_url'): - ret = self.send_via_personalized_gateway(arg) + ret = self.send_via_gateway(arg) msgprint(ret) - - # Send sms via personalized gateway - # ========================================================== - def send_via_personalized_gateway(self, arg): + def send_via_gateway(self, arg): ss = get_obj('SMS Settings', 'SMS Settings', with_children=1) args = {ss.doc.message_parameter : arg.get('message')} for d in getlist(ss.doclist, 'static_parameter_details'): From 258c3fb228c4fc3e27f7d91d37f7c44c6720cb27 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 25 Feb 2013 18:17:51 +0530 Subject: [PATCH 036/982] new gross profit report based on query report --- accounts/report/gross_profit/__init__.py | 0 accounts/report/gross_profit/gross_profit.js | 11 +++ accounts/report/gross_profit/gross_profit.py | 89 +++++++++++++++++++ accounts/report/gross_profit/gross_profit.txt | 21 +++++ 4 files changed, 121 insertions(+) create mode 100644 accounts/report/gross_profit/__init__.py create mode 100644 accounts/report/gross_profit/gross_profit.js create mode 100644 accounts/report/gross_profit/gross_profit.py create mode 100644 accounts/report/gross_profit/gross_profit.txt diff --git a/accounts/report/gross_profit/__init__.py b/accounts/report/gross_profit/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/accounts/report/gross_profit/gross_profit.js b/accounts/report/gross_profit/gross_profit.js new file mode 100644 index 0000000000..77ac5813a2 --- /dev/null +++ b/accounts/report/gross_profit/gross_profit.js @@ -0,0 +1,11 @@ +wn.query_reports["Gross Profit"] = { + "filters": [ + { + "fieldname":"company", + "label": "Company", + "fieldtype": "Link", + "options": "Company", + "default": wn.defaults.get_user_default("company") + } + ] +} \ No newline at end of file diff --git a/accounts/report/gross_profit/gross_profit.py b/accounts/report/gross_profit/gross_profit.py new file mode 100644 index 0000000000..a9a4532c5e --- /dev/null +++ b/accounts/report/gross_profit/gross_profit.py @@ -0,0 +1,89 @@ +from __future__ import unicode_literals +import webnotes +from webnotes.utils import flt + +stock_ledger_entries = None +item_sales_bom = None + +def execute(filters=None): + if not filters: filters = {} + + get_stock_ledger_entries(filters) + get_sales_bom() + + delivery_note_items = webnotes.conn.sql("""select dn.name, dn.posting_date, dn.posting_time, + dn.project_name, item.item_code, item.item_name, item.description, item.warehouse, + item.qty, item.basic_rate, item.amount, item.name as "item_row" + from `tabDelivery Note` dn, `tabDelivery Note Item` item + where item.parent = dn.name and dn.docstatus = 1 + order by dn.posting_date desc, dn.posting_time desc""", as_dict=1) + + columns = ["Delivery Note:Link/Delivery Note", "Posting Date:Date", "Posting Time", + "Item Code:Link/Item", "Item Name", "Description", "Warehouse:Link/Warehouse", + "Qty:Float", "Selling Rate:Currency", "Selling Amount:Currency", "Buying Amount:Currency", + "Gross Profit:Currency", "Gross Profit %:Percent", "Project:Link/Project"] + + data = [] + for row in delivery_note_items: + selling_amount = flt(row.amount) + buying_amount = get_buying_amount(row) + if selling_amount: + gross_profit = selling_amount - buying_amount + gross_profit_percent = (gross_profit / selling_amount) * 100.0 + else: + gross_profit = gross_profit_percent = 0.0 + + data.append([row.name, row.posting_date, row.posting_time, row.item_code, row.item_name, + row.description, row.warehouse, row.qty, row.basic_rate, row.amount, buying_amount, + gross_profit, gross_profit_percent, row.project]) + + return columns, data + +def get_buying_amount(row): + if item_sales_bom.get(row.item_code): + # sales bom item + buying_amount = 0.0 + for bom_item in item_sales_bom[row.item_code]: + buying_amount += _get_buying_amount(row.name, "[** No Item Row **]", + bom_item.item_code, row.warehouse, bom_item.qty * row.qty) + return buying_amount + else: + # doesn't have sales bom + return _get_buying_amount(row.name, row.item_row, row.item_code, row.warehouse, row.qty) + +def _get_buying_amount(voucher_no, item_row, item_code, warehouse, qty): + for i, sle in enumerate(stock_ledger_entries): + if sle.voucher_type == "Delivery Note" and sle.voucher_no == voucher_no: + if (sle.voucher_detail_no == item_row) or \ + (sle.item_code == item_code and sle.warehouse == warehouse and \ + abs(sle.qty) == qty): + buying_amount = flt(stock_ledger_entries[i+1].stock_value) - flt(sle.stock_value) + if buying_amount < 0: + webnotes.errprint([voucher_no, item_row, item_code, warehouse, qty]) + webnotes.errprint(["previous", stock_ledger_entries[i+1]]) + webnotes.errprint(["current", sle]) + return buying_amount + + return 0.0 + +def get_sales_bom(): + global item_sales_bom + + item_sales_bom = {} + + for r in webnotes.conn.sql("""select parent, item_code, qty from `tabSales BOM Item`""", as_dict=1): + item_sales_bom.setdefault(r.parent, []).append(r) + +def get_stock_ledger_entries(filters): + global stock_ledger_entries + + query = """select item_code, voucher_type, voucher_no, + voucher_detail_no, posting_date, posting_time, stock_value + from `tabStock Ledger Entry` where ifnull(`is_cancelled`, "No") = "No" """ + + if filters.get("company"): + query += """ and company=%(company)s""" + + query += " order by item_code desc, warehouse desc, posting_date desc, posting_time desc, name desc" + + stock_ledger_entries = webnotes.conn.sql(query, filters, as_dict=True, debug=1) diff --git a/accounts/report/gross_profit/gross_profit.txt b/accounts/report/gross_profit/gross_profit.txt new file mode 100644 index 0000000000..bc21484f1c --- /dev/null +++ b/accounts/report/gross_profit/gross_profit.txt @@ -0,0 +1,21 @@ +[ + { + "creation": "2013-02-25 17:03:34", + "docstatus": 0, + "modified": "2013-02-25 17:03:34", + "modified_by": "Administrator", + "owner": "Administrator" + }, + { + "doctype": "Report", + "is_standard": "Yes", + "name": "__common__", + "ref_doctype": "Sales Invoice", + "report_name": "Gross Profit", + "report_type": "Script Report" + }, + { + "doctype": "Report", + "name": "Gross Profit" + } +] \ No newline at end of file From 6dfa84164e68c67058826d994bb2e05be21a62ad Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 25 Feb 2013 18:57:41 +0530 Subject: [PATCH 037/982] fixes in new gross profit report --- accounts/page/accounts_home/accounts_home.js | 5 +++++ accounts/report/gross_profit/gross_profit.py | 12 +++++------- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/accounts/page/accounts_home/accounts_home.js b/accounts/page/accounts_home/accounts_home.js index 237b51fd8d..f2faf93785 100644 --- a/accounts/page/accounts_home/accounts_home.js +++ b/accounts/page/accounts_home/accounts_home.js @@ -151,6 +151,11 @@ wn.module_page["Accounts"] = [ route: "Report/Profile/Trend Analyzer", doctype: "Sales Invoice" }, + { + "label":wn._("Gross Profit"), + route: "query-report/Gross Profit", + doctype: "Sales Invoice" + }, ] }, { diff --git a/accounts/report/gross_profit/gross_profit.py b/accounts/report/gross_profit/gross_profit.py index a9a4532c5e..de8651bb66 100644 --- a/accounts/report/gross_profit/gross_profit.py +++ b/accounts/report/gross_profit/gross_profit.py @@ -56,12 +56,9 @@ def _get_buying_amount(voucher_no, item_row, item_code, warehouse, qty): if sle.voucher_type == "Delivery Note" and sle.voucher_no == voucher_no: if (sle.voucher_detail_no == item_row) or \ (sle.item_code == item_code and sle.warehouse == warehouse and \ - abs(sle.qty) == qty): + abs(flt(sle.qty)) == qty): buying_amount = flt(stock_ledger_entries[i+1].stock_value) - flt(sle.stock_value) - if buying_amount < 0: - webnotes.errprint([voucher_no, item_row, item_code, warehouse, qty]) - webnotes.errprint(["previous", stock_ledger_entries[i+1]]) - webnotes.errprint(["current", sle]) + return buying_amount return 0.0 @@ -78,7 +75,8 @@ def get_stock_ledger_entries(filters): global stock_ledger_entries query = """select item_code, voucher_type, voucher_no, - voucher_detail_no, posting_date, posting_time, stock_value + voucher_detail_no, posting_date, posting_time, stock_value, + warehouse, actual_qty as qty from `tabStock Ledger Entry` where ifnull(`is_cancelled`, "No") = "No" """ if filters.get("company"): @@ -86,4 +84,4 @@ def get_stock_ledger_entries(filters): query += " order by item_code desc, warehouse desc, posting_date desc, posting_time desc, name desc" - stock_ledger_entries = webnotes.conn.sql(query, filters, as_dict=True, debug=1) + stock_ledger_entries = webnotes.conn.sql(query, filters, as_dict=True) From 6054ae2becfcaccdb14f785d7d30a730ae727345 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 26 Feb 2013 10:51:24 +0530 Subject: [PATCH 038/982] delete gross profit based on search criteria --- patches/patch_list.py | 1 + .../search_criteria/gross_profit/__init__.py | 1 - .../gross_profit/gross_profit.js | 38 ------- .../gross_profit/gross_profit.py | 104 ------------------ .../gross_profit/gross_profit.sql | 15 --- .../gross_profit/gross_profit.txt | 28 ----- 6 files changed, 1 insertion(+), 186 deletions(-) delete mode 100644 selling/search_criteria/gross_profit/__init__.py delete mode 100644 selling/search_criteria/gross_profit/gross_profit.js delete mode 100644 selling/search_criteria/gross_profit/gross_profit.py delete mode 100644 selling/search_criteria/gross_profit/gross_profit.sql delete mode 100644 selling/search_criteria/gross_profit/gross_profit.txt diff --git a/patches/patch_list.py b/patches/patch_list.py index 1e30b7ecba..d262da2b08 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -195,4 +195,5 @@ patch_list = [ "execute:webnotes.conn.sql(\"update `tabReport` set report_type=if(ifnull(query, '')='', 'Report Builder', 'Query Report') where is_standard='No'\")", "execute:webnotes.conn.sql(\"update `tabReport` set report_name=name where ifnull(report_name,'')='' and is_standard='No'\")", "patches.february_2013.p08_todo_query_report", + "execute:webnotes.delete_doc('Search Criteria', 'gross_profit') # 2013-02-26" ] \ No newline at end of file diff --git a/selling/search_criteria/gross_profit/__init__.py b/selling/search_criteria/gross_profit/__init__.py deleted file mode 100644 index baffc48825..0000000000 --- a/selling/search_criteria/gross_profit/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/selling/search_criteria/gross_profit/gross_profit.js b/selling/search_criteria/gross_profit/gross_profit.js deleted file mode 100644 index 29c7e72ccf..0000000000 --- a/selling/search_criteria/gross_profit/gross_profit.js +++ /dev/null @@ -1,38 +0,0 @@ -// ERPNext - web based ERP (http://erpnext.com) -// Copyright (C) 2012 Web Notes Technologies Pvt Ltd -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -report.customize_filters = function() { - this.mytabs.items['Select Columns'].hide(); - this.mytabs.tabs['More Filters'].hide(); - this.hide_all_filters(); - this.filter_fields_dict['Delivery Note'+FILTER_SEP +'ID'].df.filter_hide = 0; - this.filter_fields_dict['Delivery Note'+FILTER_SEP +'From Posting Date'].df.filter_hide = 0; - this.filter_fields_dict['Delivery Note'+FILTER_SEP +'To Posting Date'].df.filter_hide = 0; - this.filter_fields_dict['Delivery Note Item'+FILTER_SEP +'Item Code'].df.filter_hide = 0; - this.filter_fields_dict['Delivery Note'+FILTER_SEP +'Project Name'].df.filter_hide = 0; - - this.filter_fields_dict['Delivery Note'+FILTER_SEP +'ID'].df.in_first_page = 1; - this.filter_fields_dict['Delivery Note'+FILTER_SEP +'From Posting Date'].df.in_first_page = 1; - this.filter_fields_dict['Delivery Note'+FILTER_SEP +'To Posting Date'].df.in_first_page = 1; - this.filter_fields_dict['Delivery Note Item'+FILTER_SEP +'Item Code'].df.in_first_page = 1; - this.filter_fields_dict['Delivery Note'+FILTER_SEP +'Project Name'].df.in_first_page = 1; - - this.filter_fields_dict['Delivery Note' + FILTER_SEP + - 'From Posting Date'].df['report_default'] = sys_defaults["year_start_date"] - this.filter_fields_dict['Delivery Note' + FILTER_SEP + - 'To Posting Date'].df['report_default'] = dateutil.obj_to_str(new Date()); - -} \ No newline at end of file diff --git a/selling/search_criteria/gross_profit/gross_profit.py b/selling/search_criteria/gross_profit/gross_profit.py deleted file mode 100644 index 34719226e3..0000000000 --- a/selling/search_criteria/gross_profit/gross_profit.py +++ /dev/null @@ -1,104 +0,0 @@ -# ERPNext - web based ERP (http://erpnext.com) -# Copyright (C) 2012 Web Notes Technologies Pvt Ltd -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -from __future__ import unicode_literals -from webnotes.utils import flt - -if not (filter_values.get('posting_date') or filter_values.get('posting_date1')): - msgprint("Please select From and To Posting Date", raise_exception=1) - -columns = [ - ['Delivery Note', 'Link', '120px', 'Delivery Note'], - ['Posting Date', 'Date', '120px', ''], - ['Posting Time', 'Data', '120px', ''], - ['Item Code', 'Link', '120px', 'Item'], - ['Item Name', 'Data', '120px', ''], - ['Description', 'Data', '120px', ''], - ['Warehouse', 'Link', '120px', 'Warehouse'], - ['Project Name', 'Link', '120px', 'Project'], - ['Quantity', 'Currency', '120px', ''], - ['Rate', 'Currency', '120px', ''], - ['Amount', 'Currency', '120px', ''], - #['DN Item Row Id', 'Data', '120px', ''], - ['Purchase Cost', 'Currency', '150px', ''], - ['Gross Profit', 'Currency', '150px', ''], - ['Gross Profit (%)', 'Currrency', '150px', ''] -] - -for c in columns: - colnames.append(c[0]) - coltypes.append(c[1]) - colwidths.append(c[2]) - coloptions.append(c[3]) - col_idx[c[0]] = len(colnames)-1 - -sle = sql(""" - select - actual_qty, incoming_rate, voucher_no, item_code, warehouse, voucher_detail_no - from - `tabStock Ledger Entry` - where - voucher_type = 'Delivery Note' - and ifnull(is_cancelled, 'No') = 'No' - order by posting_date desc, posting_time desc, name desc -""", as_dict=1) - -def get_purchase_cost(dn, item, wh, qty, dn_item_row_id): - from webnotes.utils import flt - global sle - purchase_cost = 0 - packing_items = sql("select item_code, qty from `tabSales BOM Item` where parent = %s", item) - if packing_items: - packing_items = [[t[0], flt(t[1])*qty] for t in packing_items] - else: - packing_items = [[item, qty]] - for d in sle: - if packing_items: - if d['voucher_no'] == dn \ - and [d['item_code'], flt(abs(d['actual_qty']))] in packing_items \ - and (not d['voucher_detail_no'] or d['voucher_detail_no'] == dn_item_row_id): - purchase_cost += flt(d['incoming_rate'])*flt(abs(d['actual_qty'])) - packing_items.remove([d['item_code'], flt(abs(d['actual_qty']))]) - else: - break - - return purchase_cost - -out, tot_amount, tot_pur_cost = [], 0, 0 -for r in res: - purchase_cost = get_purchase_cost(r[col_idx['Delivery Note']], r[col_idx['Item Code']], \ - r[col_idx['Warehouse']], r[col_idx['Quantity']], r[-1]) - r.pop(-1) - r.append(purchase_cost) - - gp = flt(r[col_idx['Amount']]) - flt(purchase_cost) - gp_percent = r[col_idx['Amount']] and purchase_cost and \ - round((gp*100/flt(r[col_idx['Amount']])), 2) or 0 - r.append(fmt_money(gp)) - r.append(fmt_money(gp_percent)) - out.append(r) - - tot_amount += flt(r[col_idx['Amount']]) - tot_pur_cost += flt(purchase_cost) -# Add Total Row -l_row = ['' for i in range(len(colnames))] -l_row[col_idx['Project Name']] = 'TOTALS' -l_row[col_idx['Amount']] = fmt_money(tot_amount) -l_row[col_idx['Purchase Cost']] = fmt_money(tot_pur_cost) -l_row[col_idx['Gross Profit']] = fmt_money(flt(tot_amount) - flt(tot_pur_cost)) -l_row[col_idx['Gross Profit (%)']] = tot_amount and \ - round((flt(tot_amount) - flt(tot_pur_cost))*100 / flt(tot_amount), 2) -out.append(l_row) \ No newline at end of file diff --git a/selling/search_criteria/gross_profit/gross_profit.sql b/selling/search_criteria/gross_profit/gross_profit.sql deleted file mode 100644 index ce176c2ca9..0000000000 --- a/selling/search_criteria/gross_profit/gross_profit.sql +++ /dev/null @@ -1,15 +0,0 @@ -SELECT - dn.name, dn.posting_date, dn.posting_time, dn_item.item_code, - dn_item.item_name, dn_item.description, dn_item.warehouse, - dn.project_name, dn_item.qty, dn_item.basic_rate, dn_item.amount, dn_item.name -FROM - `tabDelivery Note Item` dn_item, `tabDelivery Note` dn -WHERE - dn_item.parent = dn.name - AND dn.docstatus = 1 - AND dn.name like '%(name)s%%' - AND ifnull(dn_item.item_code, '') like '%(item_code)s%%' - AND ifnull(dn.project_name, '') like '%(project_name)s%%' - AND dn.posting_date >= '%(posting_date)s' - AND dn.posting_date <= '%(posting_date1)s' -ORDER BY dn.name DESC \ No newline at end of file diff --git a/selling/search_criteria/gross_profit/gross_profit.txt b/selling/search_criteria/gross_profit/gross_profit.txt deleted file mode 100644 index f726faab95..0000000000 --- a/selling/search_criteria/gross_profit/gross_profit.txt +++ /dev/null @@ -1,28 +0,0 @@ -[ - { - "owner": "Administrator", - "docstatus": 0, - "creation": "2012-05-14 18:22:18", - "modified_by": "Administrator", - "modified": "2012-09-24 14:11:39" - }, - { - "description": "Invoice wise", - "parent_doc_type": "Delivery Note", - "module": "Selling", - "standard": "Yes", - "sort_order": "DESC", - "filters": "{\"Delivery Note\\u0001Submitted\":1,\"Delivery Note\\u0001Status\":[],\"Delivery Note\\u0001Fiscal Year\":[]}", - "doc_type": "Delivery Note Item", - "name": "__common__", - "doctype": "Search Criteria", - "sort_by": "`tabDelivery Note`.`name`", - "page_len": 50, - "criteria_name": "Gross Profit", - "columns": "Delivery Note\u0001ID,Delivery Note\u0001Posting Date,Delivery Note\u0001Posting Time,Delivery Note Item\u0001Item Code,Delivery Note Item\u0001Item Name,Delivery Note Item\u0001Description,Delivery Note Item\u0001Warehouse,Delivery Note\u0001Project Name,Delivery Note Item\u0001Quantity,Delivery Note Item\u0001Rate*,Delivery Note Item\u0001Amount*" - }, - { - "name": "gross_profit", - "doctype": "Search Criteria" - } -] \ No newline at end of file From adebebfccf06193de99550280f49cb58aa52f984 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 26 Feb 2013 11:00:44 +0530 Subject: [PATCH 039/982] updated latest_updates page --- home/page/latest_updates/latest_updates.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/page/latest_updates/latest_updates.js b/home/page/latest_updates/latest_updates.js index 4fdb6e5100..79bd8aa073 100644 --- a/home/page/latest_updates/latest_updates.js +++ b/home/page/latest_updates/latest_updates.js @@ -1,4 +1,8 @@ erpnext.updates = [ + ["26th February", [ + "Gross Profit: The report has been rewritten and now it is under Accounts module" + ] + ], ["21st February, 2013", [ "Item: Warehouse-wise Re-order Level and Quantity", "Buying: Purchase Request renamed to Material Request" From d09cec71da3eda5bc02cb1d44fe768c54cf0a21d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 26 Feb 2013 11:13:21 +0530 Subject: [PATCH 040/982] fixes in print format for recurring invoice period --- .../Sales Invoice Classic/Sales Invoice Classic.txt | 6 +++--- .../Sales Invoice Modern/Sales Invoice Modern.txt | 6 +++--- .../Sales Invoice Spartan/Sales Invoice Spartan.txt | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/accounts/Print Format/Sales Invoice Classic/Sales Invoice Classic.txt b/accounts/Print Format/Sales Invoice Classic/Sales Invoice Classic.txt index 10debe5adb..d72c847850 100644 --- a/accounts/Print Format/Sales Invoice Classic/Sales Invoice Classic.txt +++ b/accounts/Print Format/Sales Invoice Classic/Sales Invoice Classic.txt @@ -1,15 +1,15 @@ [ { - "creation": "2012-05-15 19:26:43", + "creation": "2013-02-01 14:16:04", "docstatus": 0, - "modified": "2013-01-25 17:21:48", + "modified": "2013-02-26 11:11:20", "modified_by": "Administrator", "owner": "Administrator" }, { "doc_type": "Sales Invoice", "doctype": "Print Format", - "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", + "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", "module": "Accounts", "name": "__common__", "standard": "Yes" diff --git a/accounts/Print Format/Sales Invoice Modern/Sales Invoice Modern.txt b/accounts/Print Format/Sales Invoice Modern/Sales Invoice Modern.txt index 8a3859f109..97c50fd6df 100644 --- a/accounts/Print Format/Sales Invoice Modern/Sales Invoice Modern.txt +++ b/accounts/Print Format/Sales Invoice Modern/Sales Invoice Modern.txt @@ -1,15 +1,15 @@ [ { - "creation": "2012-05-15 19:26:43", + "creation": "2012-05-15 18:39:02", "docstatus": 0, - "modified": "2013-01-25 17:21:32", + "modified": "2013-02-26 11:10:58", "modified_by": "Administrator", "owner": "Administrator" }, { "doc_type": "Sales Invoice", "doctype": "Print Format", - "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", + "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", "module": "Accounts", "name": "__common__", "standard": "Yes" diff --git a/accounts/Print Format/Sales Invoice Spartan/Sales Invoice Spartan.txt b/accounts/Print Format/Sales Invoice Spartan/Sales Invoice Spartan.txt index c385e6ccac..6be83d45d1 100644 --- a/accounts/Print Format/Sales Invoice Spartan/Sales Invoice Spartan.txt +++ b/accounts/Print Format/Sales Invoice Spartan/Sales Invoice Spartan.txt @@ -1,15 +1,15 @@ [ { - "creation": "2012-05-15 19:26:43", + "creation": "2012-05-15 18:39:02", "docstatus": 0, - "modified": "2013-01-25 17:22:06", + "modified": "2013-02-26 11:11:40", "modified_by": "Administrator", "owner": "Administrator" }, { "doc_type": "Sales Invoice", "doctype": "Print Format", - "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", + "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", "module": "Accounts", "name": "__common__", "standard": "Yes" From a4d8e6b177d87f282c375d5a484bcd5c3774610b Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 26 Feb 2013 11:15:34 +0530 Subject: [PATCH 041/982] reload sales invoice print formats --- patches/patch_list.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index d262da2b08..f60b204da7 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -195,5 +195,8 @@ patch_list = [ "execute:webnotes.conn.sql(\"update `tabReport` set report_type=if(ifnull(query, '')='', 'Report Builder', 'Query Report') where is_standard='No'\")", "execute:webnotes.conn.sql(\"update `tabReport` set report_name=name where ifnull(report_name,'')='' and is_standard='No'\")", "patches.february_2013.p08_todo_query_report", - "execute:webnotes.delete_doc('Search Criteria', 'gross_profit') # 2013-02-26" + "execute:webnotes.delete_doc('Search Criteria', 'gross_profit') # 2013-02-26", + 'execute:webnotes.reload_doc("accounts", "Print Format", "Sales Invoice Classic") # 2013-02-26', + 'execute:webnotes.reload_doc("accounts", "Print Format", "Sales Invoice Modern") # 2013-02-26', + 'execute:webnotes.reload_doc("accounts", "Print Format", "Sales Invoice Spartan") # 2013-02-26', ] \ No newline at end of file From 805fdf313c866d909edd92ef381beb48f612214c Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 26 Feb 2013 12:23:39 +0530 Subject: [PATCH 042/982] shifted item name and description fields to the left of stock reports --- public/js/stock_analytics.js | 2 +- startup/report_data_map.py | 2 +- stock/page/stock_ageing/stock_ageing.js | 10 +++++----- stock/page/stock_balance/stock_balance.js | 11 +++++------ stock/page/stock_ledger/stock_ledger.js | 5 +++-- stock/page/stock_level/stock_level.js | 14 +++++++------- 6 files changed, 22 insertions(+), 22 deletions(-) diff --git a/public/js/stock_analytics.js b/public/js/stock_analytics.js index 5ebe65f803..d6a994cd1c 100644 --- a/public/js/stock_analytics.js +++ b/public/js/stock_analytics.js @@ -53,8 +53,8 @@ erpnext.StockAnalytics = erpnext.StockGridReport.extend({ formatter: this.check_formatter}, {id: "name", name: "Item", field: "name", width: 300, formatter: this.tree_formatter}, - {id: "stock_uom", name: "UOM", field: "stock_uom", width: 100}, {id: "brand", name: "Brand", field: "brand", width: 100}, + {id: "stock_uom", name: "UOM", field: "stock_uom", width: 100}, {id: "opening", name: "Opening", field: "opening", hidden: true, formatter: this.currency_formatter} ]; diff --git a/startup/report_data_map.py b/startup/report_data_map.py index 93995a9922..ba3b546b2c 100644 --- a/startup/report_data_map.py +++ b/startup/report_data_map.py @@ -87,7 +87,7 @@ data_map = { }, "Stock Ledger Entry": { "columns": ["name", "posting_date", "posting_time", "item_code", "warehouse", "actual_qty as qty", - "voucher_type", "voucher_no", "ifnull(incoming_rate,0) as incoming_rate"], + "voucher_type", "voucher_no", "ifnull(incoming_rate,0) as incoming_rate", "stock_uom"], "conditions": ["ifnull(is_cancelled, 'No')='No'"], "order_by": "posting_date, posting_time, name", "links": { diff --git a/stock/page/stock_ageing/stock_ageing.js b/stock/page/stock_ageing/stock_ageing.js index fb607712c8..edad9a76a1 100644 --- a/stock/page/stock_ageing/stock_ageing.js +++ b/stock/page/stock_ageing/stock_ageing.js @@ -48,6 +48,11 @@ erpnext.StockAgeing = erpnext.StockGridReport.extend({ open_btn: true, doctype: '"Item"' }}, + {id: "item_name", name: "Item Name", field: "item_name", + width: 100, formatter: this.text_formatter}, + {id: "description", name: "Description", field: "description", + width: 200, formatter: this.text_formatter}, + {id: "brand", name: "Brand", field: "brand", width: 100}, {id: "average_age", name: "Average Age", field: "average_age", formatter: this.currency_formatter}, {id: "earliest", name: "Earliest", field: "earliest", @@ -55,11 +60,6 @@ erpnext.StockAgeing = erpnext.StockGridReport.extend({ {id: "latest", name: "Latest", field: "latest", formatter: this.currency_formatter}, {id: "stock_uom", name: "UOM", field: "stock_uom", width: 100}, - {id: "brand", name: "Brand", field: "brand", width: 100}, - {id: "item_name", name: "Item Name", field: "item_name", - width: 100, formatter: this.text_formatter}, - {id: "description", name: "Description", field: "description", - width: 200, formatter: this.text_formatter}, ]; }, filters: [ diff --git a/stock/page/stock_balance/stock_balance.js b/stock/page/stock_balance/stock_balance.js index bec13372b3..dccf498a9e 100644 --- a/stock/page/stock_balance/stock_balance.js +++ b/stock/page/stock_balance/stock_balance.js @@ -42,7 +42,11 @@ erpnext.StockBalance = erpnext.StockAnalytics.extend({ this.columns = [ {id: "name", name: "Item", field: "name", width: 300, formatter: this.tree_formatter}, - + {id: "item_name", name: "Item Name", field: "item_name", width: 100}, + {id: "description", name: "Description", field: "description", width: 200, + formatter: this.text_formatter}, + {id: "brand", name: "Brand", field: "brand", width: 100}, + {id: "stock_uom", name: "UOM", field: "stock_uom", width: 100}, {id: "opening_qty", name: "Opening Qty", field: "opening_qty", width: 100, formatter: this.currency_formatter}, {id: "inflow_qty", name: "In Qty", field: "inflow_qty", width: 100, @@ -60,11 +64,6 @@ erpnext.StockBalance = erpnext.StockAnalytics.extend({ formatter: this.currency_formatter}, {id: "closing_value", name: "Closing Value", field: "closing_value", width: 100, formatter: this.currency_formatter}, - {id: "stock_uom", name: "UOM", field: "stock_uom", width: 100}, - {id: "brand", name: "Brand", field: "brand", width: 100}, - {id: "item_name", name: "Item Name", field: "item_name", width: 100}, - {id: "description", name: "Description", field: "description", width: 200, - formatter: this.text_formatter}, ]; }, diff --git a/stock/page/stock_ledger/stock_ledger.js b/stock/page/stock_ledger/stock_ledger.js index 6d945bb5f2..9af8894761 100644 --- a/stock/page/stock_ledger/stock_ledger.js +++ b/stock/page/stock_ledger/stock_ledger.js @@ -52,9 +52,12 @@ erpnext.StockLedger = erpnext.StockGridReport.extend({ open_btn: true, doctype: '"Item"', }}, + {id: "description", name: "Description", field: "description", width: 200, + formatter: this.text_formatter}, {id: "warehouse", name: "Warehouse", field: "warehouse", width: 100, link_formatter: {filter_input: "warehouse"}}, {id: "brand", name: "Brand", field: "brand", width: 100}, + {id: "stock_uom", name: "UOM", field: "stock_uom", width: 100}, {id: "qty", name: "Qty", field: "qty", width: 100, formatter: this.currency_formatter}, {id: "balance", name: "Balance Qty", field: "balance", width: 100, @@ -69,8 +72,6 @@ erpnext.StockLedger = erpnext.StockGridReport.extend({ open_btn: true, doctype: "dataContext.voucher_type" }}, - {id: "description", name: "Description", field: "description", width: 200, - formatter: this.text_formatter}, ]; }, diff --git a/stock/page/stock_level/stock_level.js b/stock/page/stock_level/stock_level.js index 3607b00fa4..75819a5f11 100644 --- a/stock/page/stock_level/stock_level.js +++ b/stock/page/stock_level/stock_level.js @@ -69,8 +69,15 @@ erpnext.StockLevel = erpnext.StockGridReport.extend({ open_btn: true, doctype: '"Item"', }}, + {id: "item_name", name: "Item Name", field: "item_name", width: 100, + formatter: this.text_formatter}, + {id: "description", name: "Description", field: "description", width: 200, + formatter: this.text_formatter}, + {id: "brand", name: "Brand", field: "brand", width: 100, + link_formatter: {filter_input: "brand"}}, {id: "warehouse", name: "Warehouse", field: "warehouse", width: 100, link_formatter: {filter_input: "warehouse"}}, + {id: "uom", name: "UOM", field: "uom", width: 60}, {id: "actual_qty", name: "Actual Qty", field: "actual_qty", width: 80, formatter: this.currency_formatter}, {id: "planned_qty", name: "Planned Qty", @@ -87,13 +94,6 @@ erpnext.StockLevel = erpnext.StockGridReport.extend({ field: "re_order_level", width: 80, formatter: this.currency_formatter}, {id: "re_order_qty", name: "Re-Order Qty", field: "re_order_qty", width: 80, formatter: this.currency_formatter}, - {id: "uom", name: "UOM", field: "uom", width: 60}, - {id: "brand", name: "Brand", field: "brand", width: 100, - link_formatter: {filter_input: "brand"}}, - {id: "item_name", name: "Item Name", field: "item_name", width: 100, - formatter: this.text_formatter}, - {id: "description", name: "Description", field: "description", width: 200, - formatter: this.text_formatter}, ]; }, From 29786e38dfcfee4758e5fb0f65ab40c9f93e7af3 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 26 Feb 2013 14:27:03 +0530 Subject: [PATCH 043/982] added get_value, fixed appframe from Single --- .../accounts/locale/_messages_doc.json | 1 + .../accounts_home/locale/_messages_js.json | 1 + projects/doctype/timesheet/timesheet.txt | 130 +++++++++++------- .../email_digest/locale/_messages_doc.json | 27 ++-- .../email_digest/locale/_messages_py.json | 1 + .../locale/_messages_doc.json | 3 +- translations/si.csv | 1 - 7 files changed, 104 insertions(+), 60 deletions(-) delete mode 100644 translations/si.csv diff --git a/accounts/module_def/accounts/locale/_messages_doc.json b/accounts/module_def/accounts/locale/_messages_doc.json index a1a323668c..912db812b9 100644 --- a/accounts/module_def/accounts/locale/_messages_doc.json +++ b/accounts/module_def/accounts/locale/_messages_doc.json @@ -5,6 +5,7 @@ "Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.", "Track separate Income and Expense for product verticals or divisions.", "Delivered Items To Be Billed", + "Gross Profit", "**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.\n\nTo distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**", "Financial Statements", "General Ledger", diff --git a/accounts/page/accounts_home/locale/_messages_js.json b/accounts/page/accounts_home/locale/_messages_js.json index 4a1144a301..3f1cd7b90e 100644 --- a/accounts/page/accounts_home/locale/_messages_js.json +++ b/accounts/page/accounts_home/locale/_messages_js.json @@ -28,6 +28,7 @@ "Setup", "Manage sales or purchase returns", "Purchase Taxes and Charges Master", + "Gross Profit", "Reports", "Period Closing Voucher", "Structure cost centers for budgeting.", diff --git a/projects/doctype/timesheet/timesheet.txt b/projects/doctype/timesheet/timesheet.txt index 649be404fa..d64a3e17a0 100644 --- a/projects/doctype/timesheet/timesheet.txt +++ b/projects/doctype/timesheet/timesheet.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:17", + "creation": "2013-01-29 19:25:50", "docstatus": 0, - "modified": "2013-01-29 14:36:53", + "modified": "2013-02-26 13:44:35", "modified_by": "Administrator", "owner": "ashwini@webnotestech.com" }, @@ -23,19 +23,12 @@ "permlevel": 0 }, { - "amend": 1, - "cancel": 1, - "create": 1, "doctype": "DocPerm", "name": "__common__", "parent": "Timesheet", "parentfield": "permissions", "parenttype": "DocType", - "permlevel": 0, - "read": 1, - "report": 1, - "submit": 1, - "write": 1 + "read": 1 }, { "doctype": "DocType", @@ -47,6 +40,23 @@ "fieldtype": "Section Break", "label": "Timesheet Details" }, + { + "default": "Today", + "doctype": "DocField", + "fieldname": "timesheet_date", + "fieldtype": "Date", + "in_filter": 1, + "label": "Timesheet Date", + "oldfieldname": "timesheet_date", + "oldfieldtype": "Date", + "reqd": 1, + "search_index": 1 + }, + { + "doctype": "DocField", + "fieldname": "column_break_3", + "fieldtype": "Column Break" + }, { "default": "Draft", "doctype": "DocField", @@ -63,16 +73,31 @@ "search_index": 1 }, { - "default": "Today", "doctype": "DocField", - "fieldname": "timesheet_date", - "fieldtype": "Date", - "in_filter": 1, - "label": "Timesheet Date", - "oldfieldname": "timesheet_date", - "oldfieldtype": "Date", - "reqd": 1, - "search_index": 1 + "fieldname": "section_break0", + "fieldtype": "Section Break", + "options": "Simple" + }, + { + "doctype": "DocField", + "fieldname": "timesheet_details", + "fieldtype": "Table", + "label": "Timesheet Details", + "oldfieldname": "timesheet_details", + "oldfieldtype": "Table", + "options": "Timesheet Detail" + }, + { + "doctype": "DocField", + "fieldname": "section_break_7", + "fieldtype": "Section Break" + }, + { + "doctype": "DocField", + "fieldname": "notes", + "fieldtype": "Text", + "in_list_view": 1, + "label": "Notes" }, { "doctype": "DocField", @@ -109,38 +134,47 @@ "read_only": 1 }, { - "doctype": "DocField", - "fieldname": "column_break0", - "fieldtype": "Column Break" - }, - { - "doctype": "DocField", - "fieldname": "notes", - "fieldtype": "Text", - "in_list_view": 1, - "label": "Notes" - }, - { - "doctype": "DocField", - "fieldname": "section_break0", - "fieldtype": "Section Break", - "options": "Simple" - }, - { - "doctype": "DocField", - "fieldname": "timesheet_details", - "fieldtype": "Table", - "label": "Timesheet Details", - "oldfieldname": "timesheet_details", - "oldfieldtype": "Table", - "options": "Timesheet Detail" - }, - { + "amend": 1, + "cancel": 1, + "create": 1, "doctype": "DocPerm", - "role": "Projects User" + "permlevel": 0, + "report": 1, + "role": "Projects User", + "submit": 0, + "write": 1 }, { + "amend": 0, + "cancel": 0, + "create": 0, "doctype": "DocPerm", - "role": "System Manager" + "permlevel": 1, + "report": 0, + "role": "Projects User", + "submit": 0, + "write": 0 + }, + { + "amend": 1, + "cancel": 1, + "create": 1, + "doctype": "DocPerm", + "permlevel": 0, + "report": 1, + "role": "System Manager", + "submit": 1, + "write": 1 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1, + "report": 0, + "role": "System Manager", + "submit": 0, + "write": 0 } ] \ No newline at end of file diff --git a/setup/doctype/email_digest/locale/_messages_doc.json b/setup/doctype/email_digest/locale/_messages_doc.json index 3e21e3d75e..1e15703f6b 100644 --- a/setup/doctype/email_digest/locale/_messages_doc.json +++ b/setup/doctype/email_digest/locale/_messages_doc.json @@ -1,21 +1,27 @@ [ - "New Leads", - "Add/Remove Recipients", + "Income Booked", + "Bank/Cash Balance", "Monthly", "Support", "New Material Requests", + "New Leads", + "Expenses booked for the digest period", "Send regular summary reports via Email.", "Select Digest Content", "Expenses Booked", - "Income", - "Stock", + "Payments received during the digest period", + "Add/Remove Recipients", "To Do List", "Selling", + "Payments Made", "Recipients", "Email Digest Settings", "Check all the items below that you want to send in this digest.", + "Payments made during the digest period", "New Quotations", "New Support Tickets", + "Payments Received", + "Income booked for the digest period", "Buying", "New Communications", "New Projects", @@ -23,16 +29,19 @@ "Setup", "Enabled", "Daily", + "Balances of Accounts of type \"Bank or Cash\"", + "Income / Expense", "New Delivery Notes", - "Payments", - "Bank Balance", + "Stock", "How frequently?", "Payables", "New Enquiries", + "New Purchase Orders", "New Sales Orders", "Calendar Events", "New Purchase Receipts", - "New Purchase Orders", + "Total amount of invoices sent to the customer during the digest period", + "Receivable / Payable account will be identified based on the field Master Type", "Receivables", "For Company", "Note: Email will not be sent to disabled users", @@ -40,10 +49,10 @@ "New Supplier Quotations", "Income Year to Date", "General", + "Receivables / Payables", "Open Tickets", - "Accounts", "Projects", - "Collections", + "Total amount of invoices received from suppliers during the digest period", "Email Digest", "Weekly" ] \ No newline at end of file diff --git a/setup/doctype/email_digest/locale/_messages_py.json b/setup/doctype/email_digest/locale/_messages_py.json index 7915fc92be..6bd8607425 100644 --- a/setup/doctype/email_digest/locale/_messages_py.json +++ b/setup/doctype/email_digest/locale/_messages_py.json @@ -1,3 +1,4 @@ [ + "assigned by", "All Day" ] \ No newline at end of file diff --git a/stock/doctype/material_request/locale/_messages_doc.json b/stock/doctype/material_request/locale/_messages_doc.json index 7ecd1f71fc..6227d2f6e2 100644 --- a/stock/doctype/material_request/locale/_messages_doc.json +++ b/stock/doctype/material_request/locale/_messages_doc.json @@ -40,6 +40,5 @@ "More Info", "MREQ-", "Draft", - "Terms and Conditions Content", - "Print Heading" + "Terms and Conditions Content" ] \ No newline at end of file diff --git a/translations/si.csv b/translations/si.csv deleted file mode 100644 index c528f0f4f1..0000000000 --- a/translations/si.csv +++ /dev/null @@ -1 +0,0 @@ -, From ed19666e1bd8f11f213ed43d32613d0b453c9ff1 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 26 Feb 2013 16:36:41 +0530 Subject: [PATCH 044/982] added Time Log --- patches/patch_list.py | 1 + .../locale/_messages_doc.json | 10 -- .../bom_replace_tool/locale/ar-doc.json | 10 -- .../bom_replace_tool/locale/es-doc.json | 10 -- .../bom_replace_tool/locale/fr-doc.json | 10 -- .../bom_replace_tool/locale/hi-doc.json | 10 -- .../bom_replace_tool/locale/hr-doc.json | 10 -- .../bom_replace_tool/locale/nl-doc.json | 10 -- .../bom_replace_tool/locale/pt-BR-doc.json | 10 -- .../bom_replace_tool/locale/pt-doc.json | 10 -- .../bom_replace_tool/locale/sr-doc.json | 10 -- .../bom_replace_tool/locale/ta-doc.json | 10 -- .../bom_replace_tool/locale/th-doc.json | 10 -- projects/doctype/time_log/__init__.py | 0 projects/doctype/time_log/time_log.py | 45 +++++++ projects/doctype/time_log/time_log.txt | 121 ++++++++++++++++++ .../doctype/time_log/time_log_calendar.js | 10 ++ projects/doctype/timesheet/timesheet.py | 3 +- .../projects/locale/_messages_doc.json | 4 - .../module_def/projects/locale/ar-doc.json | 4 - .../module_def/projects/locale/es-doc.json | 4 - .../module_def/projects/locale/fr-doc.json | 4 - .../module_def/projects/locale/hi-doc.json | 4 - .../module_def/projects/locale/hr-doc.json | 4 - .../module_def/projects/locale/nl-doc.json | 4 - .../module_def/projects/locale/pt-BR-doc.json | 4 - .../module_def/projects/locale/pt-doc.json | 4 - .../module_def/projects/locale/sr-doc.json | 4 - .../module_def/projects/locale/ta-doc.json | 4 - .../module_def/projects/locale/th-doc.json | 4 - projects/page/projects_home/projects_home.js | 5 + startup/install.py | 2 +- 32 files changed, 185 insertions(+), 170 deletions(-) delete mode 100644 production/doctype/bom_replace_tool/locale/_messages_doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/ar-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/es-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/fr-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/hi-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/hr-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/nl-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/pt-BR-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/pt-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/sr-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/ta-doc.json delete mode 100644 production/doctype/bom_replace_tool/locale/th-doc.json create mode 100644 projects/doctype/time_log/__init__.py create mode 100644 projects/doctype/time_log/time_log.py create mode 100644 projects/doctype/time_log/time_log.txt create mode 100644 projects/doctype/time_log/time_log_calendar.js delete mode 100644 projects/module_def/projects/locale/_messages_doc.json delete mode 100644 projects/module_def/projects/locale/ar-doc.json delete mode 100644 projects/module_def/projects/locale/es-doc.json delete mode 100644 projects/module_def/projects/locale/fr-doc.json delete mode 100644 projects/module_def/projects/locale/hi-doc.json delete mode 100644 projects/module_def/projects/locale/hr-doc.json delete mode 100644 projects/module_def/projects/locale/nl-doc.json delete mode 100644 projects/module_def/projects/locale/pt-BR-doc.json delete mode 100644 projects/module_def/projects/locale/pt-doc.json delete mode 100644 projects/module_def/projects/locale/sr-doc.json delete mode 100644 projects/module_def/projects/locale/ta-doc.json delete mode 100644 projects/module_def/projects/locale/th-doc.json diff --git a/patches/patch_list.py b/patches/patch_list.py index f60b204da7..11608098c1 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -199,4 +199,5 @@ patch_list = [ 'execute:webnotes.reload_doc("accounts", "Print Format", "Sales Invoice Classic") # 2013-02-26', 'execute:webnotes.reload_doc("accounts", "Print Format", "Sales Invoice Modern") # 2013-02-26', 'execute:webnotes.reload_doc("accounts", "Print Format", "Sales Invoice Spartan") # 2013-02-26', + "execute:(not webnotes.conn.exists('Role', 'Projects Manager')) and webnotes.doc({'doctype':'Role', 'role_name':'Projects Manager'}).insert()", ] \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/_messages_doc.json b/production/doctype/bom_replace_tool/locale/_messages_doc.json deleted file mode 100644 index d6c8d69198..0000000000 --- a/production/doctype/bom_replace_tool/locale/_messages_doc.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - "BOM Replace Tool", - "The BOM which will be replaced", - "New BOM", - "The new BOM after replacement", - "Production", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM", - "Replace", - "Current BOM" -] \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/ar-doc.json b/production/doctype/bom_replace_tool/locale/ar-doc.json deleted file mode 100644 index f7461310e9..0000000000 --- a/production/doctype/bom_replace_tool/locale/ar-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "BOM \u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0623\u062f\u0627\u0629", - "Current BOM": "BOM \u0627\u0644\u062d\u0627\u0644\u064a", - "New BOM": "BOM \u062c\u062f\u064a\u062f\u0629", - "Production": "\u0627\u0644\u0625\u0646\u062a\u0627\u062c", - "Replace": "\u0627\u0633\u062a\u0628\u062f\u0644", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "\u0627\u0633\u062a\u0628\u062f\u0627\u0644 BOM \u062e\u0627\u0635\u0629 \u0641\u064a \u062c\u0645\u064a\u0639 BOMs \u0627\u0644\u0623\u062e\u0631\u0649 \u0627\u0644\u062a\u064a \u064a\u0633\u062a\u062e\u062f\u0645 \u0641\u064a\u0647\u0627. \u0648\u0627\u0646\u0647 \u0633\u064a\u062d\u0644 \u0645\u062d\u0644 \u0627\u0644\u0631\u0627\u0628\u0637 BOM \u0627\u0644\u0642\u062f\u064a\u0645\u0629\u060c \u0648\u062a\u062d\u062f\u064a\u062b \u0648\u062a\u062c\u062f\u064a\u062f \u0627\u0644\u062a\u0643\u0644\u0641\u0629 "\u0627\u0644\u0628\u0646\u062f \u0627\u0646\u0641\u062c\u0627\u0631 BOM" \u0627\u0644\u062c\u062f\u0648\u0644 \u0627\u0644\u062c\u062f\u064a\u062f \u0648\u0641\u0642\u0627 BOM", - "The BOM which will be replaced": "\u0648BOM \u0627\u0644\u062a\u064a \u0633\u064a\u062a\u0645 \u0627\u0633\u062a\u0628\u062f\u0627\u0644\u0647\u0627", - "The new BOM after replacement": "\u0648BOM \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0628\u0639\u062f \u0627\u0633\u062a\u0628\u062f\u0627\u0644" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/es-doc.json b/production/doctype/bom_replace_tool/locale/es-doc.json deleted file mode 100644 index 9834598af4..0000000000 --- a/production/doctype/bom_replace_tool/locale/es-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "BOM Tool Reemplazar", - "Current BOM": "BOM actual", - "New BOM": "Nueva lista de materiales", - "Production": "Producci\u00f3n", - "Replace": "Reemplazar", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Reemplazar un BOM particular en todas las listas de materiales de otros en los que se utiliza. Se sustituir\u00e1 el enlace BOM viejo, actualizar el costo y regenerar "Explosi\u00f3n lista de materiales Item" tabla seg\u00fan nueva lista de materiales", - "The BOM which will be replaced": "La lista de materiales que ser\u00e1 sustituido", - "The new BOM after replacement": "La lista de materiales nuevo despu\u00e9s de sustituirlo" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/fr-doc.json b/production/doctype/bom_replace_tool/locale/fr-doc.json deleted file mode 100644 index 9284cad148..0000000000 --- a/production/doctype/bom_replace_tool/locale/fr-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "Outil Remplacer BOM", - "Current BOM": "Nomenclature actuelle", - "New BOM": "Nouvelle nomenclature", - "Production": "Production", - "Replace": "Remplacer", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Remplacer une nomenclature particuli\u00e8re dans toutes les nomenclatures d'autres o\u00f9 il est utilis\u00e9. Il remplacera le lien de nomenclature ancienne, mettre \u00e0 jour les co\u00fbts et r\u00e9g\u00e9n\u00e9rer "Explosion de nomenclature article" la table comme pour une nouvelle nomenclature", - "The BOM which will be replaced": "La nomenclature qui sera remplac\u00e9", - "The new BOM after replacement": "La nouvelle nomenclature apr\u00e8s le remplacement" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/hi-doc.json b/production/doctype/bom_replace_tool/locale/hi-doc.json deleted file mode 100644 index 3d9e9b4fb1..0000000000 --- a/production/doctype/bom_replace_tool/locale/hi-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "\u092c\u0940\u0913\u090f\u092e \u092c\u0926\u0932\u0947\u0902 \u0909\u092a\u0915\u0930\u0923", - "Current BOM": "\u0935\u0930\u094d\u0924\u092e\u093e\u0928 \u092c\u0940\u0913\u090f\u092e", - "New BOM": "\u0928\u0908 \u092c\u0940\u0913\u090f\u092e", - "Production": "\u0909\u0924\u094d\u092a\u093e\u0926\u0928", - "Replace": "\u092c\u0926\u0932\u0947\u0902", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "\u0905\u0928\u094d\u092f \u0938\u092d\u0940 BOMs \u091c\u0939\u093e\u0902 \u092f\u0939 \u092a\u094d\u0930\u092f\u094b\u0917 \u0915\u093f\u092f\u093e \u091c\u093e\u0924\u093e \u0939\u0948 \u092e\u0947\u0902 \u090f\u0915 \u0935\u093f\u0936\u0947\u0937 \u092c\u0940\u0913\u090f\u092e \u092c\u0926\u0932\u0947\u0902. \u092f\u0939 \u092a\u0941\u0930\u093e\u0928\u0947 \u092c\u0940\u0913\u090f\u092e \u0932\u093f\u0902\u0915 \u0915\u0940 \u091c\u0917\u0939, \u0932\u093e\u0917\u0924 \u0905\u0926\u094d\u092f\u0924\u0928 \u0914\u0930 \u0928\u092f\u093e \u092c\u0940\u0913\u090f\u092e \u0915\u0947 \u0905\u0928\u0941\u0938\u093e\u0930 "BOM \u0927\u092e\u093e\u0915\u093e \u0906\u0907\u091f\u092e" \u0924\u093e\u0932\u093f\u0915\u093e \u092a\u0941\u0928\u0930\u094d\u091c\u0928\u094d\u092e", - "The BOM which will be replaced": "\u092c\u0940\u0913\u090f\u092e \u091c\u094b \u092a\u094d\u0930\u0924\u093f\u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u093f\u092f\u093e \u091c\u093e\u090f\u0917\u093e", - "The new BOM after replacement": "\u092c\u0926\u0932\u0928\u0947 \u0915\u0947 \u092c\u093e\u0926 \u0928\u090f \u092c\u0940\u0913\u090f\u092e" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/hr-doc.json b/production/doctype/bom_replace_tool/locale/hr-doc.json deleted file mode 100644 index c6ff6b6e77..0000000000 --- a/production/doctype/bom_replace_tool/locale/hr-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "BOM Zamijenite alat", - "Current BOM": "Trenutni BOM", - "New BOM": "Novi BOM", - "Production": "Proizvodnja", - "Replace": "Zamijeniti", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Zamijenite odre\u0111eni BOM u svim drugim sastavnicama gdje se koriste. To \u0107e zamijeniti staru vezu BOM, a\u017eurirati tro\u0161kove i regenerirati "BOM eksploziju predmeta" stol kao i po novom BOM", - "The BOM which will be replaced": "BOM koji \u0107e biti zamijenjen", - "The new BOM after replacement": "Novi BOM nakon zamjene" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/nl-doc.json b/production/doctype/bom_replace_tool/locale/nl-doc.json deleted file mode 100644 index 26a07e8158..0000000000 --- a/production/doctype/bom_replace_tool/locale/nl-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "BOM Replace Tool", - "Current BOM": "Actueel BOM", - "New BOM": "Nieuwe BOM", - "Production": "Productie", - "Replace": "Vervang", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Vervang een bepaalde BOM in alle andere BOMs waar het wordt gebruikt. Deze vervangt de oude BOM link, updaten kosten en regenereren "BOM Explosion Item" tafel als per nieuwe BOM", - "The BOM which will be replaced": "De BOM die zal worden vervangen", - "The new BOM after replacement": "De nieuwe BOM na vervanging" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/pt-BR-doc.json b/production/doctype/bom_replace_tool/locale/pt-BR-doc.json deleted file mode 100644 index 69ebd0fbb4..0000000000 --- a/production/doctype/bom_replace_tool/locale/pt-BR-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "Ferramenta de Substitui\u00e7\u00e3o da LDM", - "Current BOM": "LDM atual", - "New BOM": "Nova LDM", - "Production": "Produ\u00e7\u00e3o", - "Replace": "Substituir", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Substituir uma LDM espec\u00edfica em todas as LDMs outros onde ela \u00e9 usada. Isso ir\u00e1 substituir o link da LDM antiga, atualizar o custo e regenerar a tabela "Item de Explos\u00e3o da LDM" com a nova LDM", - "The BOM which will be replaced": "A LDM que ser\u00e1 substitu\u00edda", - "The new BOM after replacement": "A nova LDM ap\u00f3s substitui\u00e7\u00e3o" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/pt-doc.json b/production/doctype/bom_replace_tool/locale/pt-doc.json deleted file mode 100644 index a189dcd87c..0000000000 --- a/production/doctype/bom_replace_tool/locale/pt-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "BOM Ferramenta Substituir", - "Current BOM": "BOM atual", - "New BOM": "Novo BOM", - "Production": "Produ\u00e7\u00e3o", - "Replace": "Substituir", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Substituir um BOM particular em todas as BOMs outros onde ele \u00e9 usado. Ele ir\u00e1 substituir o link BOM antigo, atualizar o custo e regenerar "Explos\u00e3o BOM Item" tabela como por novo BOM", - "The BOM which will be replaced": "O BOM que ser\u00e1 substitu\u00eddo", - "The new BOM after replacement": "O BOM novo ap\u00f3s substitui\u00e7\u00e3o" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/sr-doc.json b/production/doctype/bom_replace_tool/locale/sr-doc.json deleted file mode 100644 index 6d0ecb0b56..0000000000 --- a/production/doctype/bom_replace_tool/locale/sr-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "\u0411\u041e\u041c \u0417\u0430\u043c\u0435\u043d\u0430 \u0430\u043b\u0430\u0442\u0430", - "Current BOM": "\u0422\u0440\u0435\u043d\u0443\u0442\u043d\u0438 \u0411\u041e\u041c", - "New BOM": "\u041d\u043e\u0432\u0438 \u0411\u041e\u041c", - "Production": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u045a\u0430", - "Replace": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u0438", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u0435 \u043f\u043e\u0441\u0435\u0431\u043d\u0443 \u0431\u043e\u043c \u0443 \u0441\u0432\u0438\u043c \u043e\u0441\u0442\u0430\u043b\u0438\u043c \u0411\u041e\u041c\u0441 \u0433\u0434\u0435 \u0441\u0435 \u043e\u043d \u043a\u043e\u0440\u0438\u0441\u0442\u0438. \u041e\u043d\u0430 \u045b\u0435 \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u0438 \u0441\u0442\u0430\u0440\u0443 \u0432\u0435\u0437\u0443 \u0431\u043e\u043c, \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u0442\u0440\u043e\u0448\u043a\u043e\u0432\u0435 \u0438 \u0440\u0435\u0433\u0435\u043d\u0435\u0440\u0438\u0448\u0443 "\u0431\u043e\u043c \u0435\u043a\u0441\u043f\u043b\u043e\u0437\u0438\u0458\u0435 \u0458\u0435\u0434\u0438\u043d\u0438\u0446\u0435" \u0442\u0430\u0431\u0435\u043b\u0443 \u043f\u043e \u043d\u043e\u0432\u043e\u043c \u0411\u041e\u041c", - "The BOM which will be replaced": "\u0411\u041e\u041c \u043a\u043e\u0458\u0438 \u045b\u0435 \u0431\u0438\u0442\u0438 \u0437\u0430\u043c\u0435\u045a\u0435\u043d", - "The new BOM after replacement": "\u041d\u043e\u0432\u0438 \u0411\u041e\u041c \u043d\u0430\u043a\u043e\u043d \u0437\u0430\u043c\u0435\u043d\u0435" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/ta-doc.json b/production/doctype/bom_replace_tool/locale/ta-doc.json deleted file mode 100644 index c2e816d700..0000000000 --- a/production/doctype/bom_replace_tool/locale/ta-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "BOM \u0baa\u0ba4\u0bbf\u0bb2\u0bbe\u0b95 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf", - "Current BOM": "\u0ba4\u0bb1\u0bcd\u0baa\u0bc7\u0bbe\u0ba4\u0bc8\u0baf BOM", - "New BOM": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf BOM", - "Production": "\u0b89\u0bb1\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bbf", - "Replace": "\u0baa\u0ba4\u0bbf\u0bb2\u0bbe\u0b95", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "\u0b87\u0ba4\u0bc1 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 \u0b85\u0bae\u0bc8\u0ba8\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3 \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1 BOM \u0b95\u0bb3\u0bcd \u0b92\u0bb0\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f BOM \u0baa\u0ba4\u0bbf\u0bb2\u0bbe\u0b95. \u0b87\u0ba4\u0bc1, \u0baa\u0bb4\u0bc8\u0baf BOM \u0b87\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0ba4\u0bbf\u0bb2\u0bbe\u0b95 \u0b9a\u0bc6\u0bb2\u0bb5\u0bc1 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95 \u0baa\u0bc1\u0ba4\u0bbf\u0baf BOM \u0baa\u0b9f\u0bbf "BOM \u0bb5\u0bc6\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd" \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8 \u0bae\u0bb1\u0bc1\u0b89\u0bb1\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bbf", - "The BOM which will be replaced": "\u0baa\u0ba4\u0bbf\u0bb2\u0bc0\u0b9f\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd BOM", - "The new BOM after replacement": "\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 \u0baa\u0bbf\u0ba9\u0bcd\u0ba9\u0bb0\u0bcd \u0baa\u0bc1\u0ba4\u0bbf\u0baf BOM" -} \ No newline at end of file diff --git a/production/doctype/bom_replace_tool/locale/th-doc.json b/production/doctype/bom_replace_tool/locale/th-doc.json deleted file mode 100644 index c699223fda..0000000000 --- a/production/doctype/bom_replace_tool/locale/th-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "BOM Replace Tool": "\u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e37\u0e2d\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM", - "Current BOM": "BOM \u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19", - "New BOM": "BOM \u0e43\u0e2b\u0e21\u0e48", - "Production": "\u0e01\u0e32\u0e23\u0e1c\u0e25\u0e34\u0e15", - "Replace": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48 BOM \u0e42\u0e14\u0e22\u0e40\u0e09\u0e1e\u0e32\u0e30\u0e43\u0e19 BOMs \u0e2d\u0e37\u0e48\u0e19 \u0e46 \u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e19\u0e33\u0e21\u0e32\u0e43\u0e0a\u0e49 \u0e21\u0e31\u0e19\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e21\u0e42\u0e22\u0e07 BOM \u0e40\u0e01\u0e48\u0e32\u0e1b\u0e23\u0e31\u0e1a\u0e1b\u0e23\u0e38\u0e07\u0e04\u0e48\u0e32\u0e43\u0e0a\u0e49\u0e08\u0e48\u0e32\u0e22\u0e41\u0e25\u0e30\u0e43\u0e2b\u0e49\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e43\u0e2b\u0e21\u0e48 "\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 BOM" \u0e15\u0e32\u0e23\u0e32\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e48\u0e2d\u0e43\u0e2b\u0e21\u0e48 BOM", - "The BOM which will be replaced": "BOM \u0e0b\u0e36\u0e48\u0e07\u0e08\u0e30\u0e16\u0e39\u0e01\u0e41\u0e17\u0e19\u0e17\u0e35\u0e48", - "The new BOM after replacement": "BOM \u0e43\u0e2b\u0e21\u0e48\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19" -} \ No newline at end of file diff --git a/projects/doctype/time_log/__init__.py b/projects/doctype/time_log/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/projects/doctype/time_log/time_log.py b/projects/doctype/time_log/time_log.py new file mode 100644 index 0000000000..4188503c9f --- /dev/null +++ b/projects/doctype/time_log/time_log.py @@ -0,0 +1,45 @@ +# For license information, please see license.txt + +from __future__ import unicode_literals +import webnotes +from webnotes import _ + +from webnotes.widgets.reportview import build_match_conditions + +class DocType: + def __init__(self, d, dl): + self.doc, self.doclist = d, dl + + def validate(self): + self.validate_overlap() + + def validate_overlap(self): + existing = webnotes.conn.sql_list("""select name from `tabTime Log` where owner=%s and + ((from_time between %s and %s) or (to_time between %s and %s)) and name!=%s""", + (self.doc.owner, self.doc.from_time, self.doc.to_time, self.doc.from_time, + self.doc.to_time, self.doc.name)) + + if existing: + webnotes.msgprint(_("This Time Log conflicts with") + ":" + ', '.join(existing), + raise_exception=True) + +@webnotes.whitelist() +def get_events(start, end): + match = build_match_conditions("Time Log") + data = webnotes.conn.sql("""select name, from_time, to_time, + activity_type, task, project from `tabTime Log` + where from_time between '%(start)s' and '%(end)s' or to_time between '%(start)s' and '%(end)s' + %(match)s""" % { + "start": start, + "end": end, + "match": match and (" and " + match) or "" + }, as_dict=True, update={"allDay": 0}) + + for d in data: + d.title = d.name + ": " + d.activity_type + if d.task: + d.title += " for Task: " + d.task + if d.project: + d.title += " for Project: " + d.project + + return data diff --git a/projects/doctype/time_log/time_log.txt b/projects/doctype/time_log/time_log.txt new file mode 100644 index 0000000000..b8e927a169 --- /dev/null +++ b/projects/doctype/time_log/time_log.txt @@ -0,0 +1,121 @@ +[ + { + "creation": "2013-02-26 14:58:28", + "docstatus": 0, + "modified": "2013-02-26 16:09:53", + "modified_by": "Administrator", + "owner": "Administrator" + }, + { + "autoname": "TL-.######", + "description": "Log of Activities performed by users against Tasks that can be used for tracking time, billing.", + "doctype": "DocType", + "document_type": "Master", + "module": "Projects", + "name": "__common__" + }, + { + "doctype": "DocField", + "name": "__common__", + "parent": "Time Log", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 + }, + { + "doctype": "DocPerm", + "name": "__common__", + "parent": "Time Log", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "read": 1, + "write": 1 + }, + { + "doctype": "DocType", + "name": "Time Log" + }, + { + "doctype": "DocField", + "fieldname": "from_time", + "fieldtype": "Datetime", + "label": "From Time", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "to_time", + "fieldtype": "Datetime", + "label": "To Time", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "column_break_3", + "fieldtype": "Column Break" + }, + { + "doctype": "DocField", + "fieldname": "activity_type", + "fieldtype": "Link", + "in_list_view": 1, + "label": "Activity Type", + "options": "Activity Type", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "task", + "fieldtype": "Link", + "label": "Task", + "options": "Task" + }, + { + "doctype": "DocField", + "fieldname": "billable", + "fieldtype": "Check", + "label": "Billable" + }, + { + "doctype": "DocField", + "fieldname": "section_break_7", + "fieldtype": "Section Break" + }, + { + "doctype": "DocField", + "fieldname": "note", + "fieldtype": "Text Editor", + "label": "Note" + }, + { + "doctype": "DocField", + "fieldname": "section_break_9", + "fieldtype": "Section Break" + }, + { + "doctype": "DocField", + "fieldname": "project", + "fieldtype": "Link", + "in_list_view": 1, + "label": "Project", + "options": "Project" + }, + { + "doctype": "DocField", + "fieldname": "sales_invoice", + "fieldtype": "Link", + "label": "Sales Invoice", + "options": "Sales Invoice" + }, + { + "create": 1, + "doctype": "DocPerm", + "match": "owner", + "role": "Projects User" + }, + { + "doctype": "DocPerm", + "role": "Projects Manager" + } +] \ No newline at end of file diff --git a/projects/doctype/time_log/time_log_calendar.js b/projects/doctype/time_log/time_log_calendar.js new file mode 100644 index 0000000000..e5bb774a0c --- /dev/null +++ b/projects/doctype/time_log/time_log_calendar.js @@ -0,0 +1,10 @@ +wn.views.calendar["Time Log"] = wn.views.Calendar.extend({ + field_map: { + "start": "from_time", + "end": "to_time", + "id": "name", + "title": "title", + "allDay": "allDay" + }, + get_events_method: "projects.doctype.time_log.time_log.get_events" +}) \ No newline at end of file diff --git a/projects/doctype/timesheet/timesheet.py b/projects/doctype/timesheet/timesheet.py index 6e6e27acd3..560bc5fdce 100644 --- a/projects/doctype/timesheet/timesheet.py +++ b/projects/doctype/timesheet/timesheet.py @@ -91,4 +91,5 @@ class DocType: webnotes.conn.set(self.doc, 'status', 'Submitted') def on_cancel(self): - webnotes.conn.set(self.doc, 'status', 'Cancelled') \ No newline at end of file + webnotes.conn.set(self.doc, 'status', 'Cancelled') + \ No newline at end of file diff --git a/projects/module_def/projects/locale/_messages_doc.json b/projects/module_def/projects/locale/_messages_doc.json deleted file mode 100644 index da33435bc9..0000000000 --- a/projects/module_def/projects/locale/_messages_doc.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "Projects Home", - "Projects" -] \ No newline at end of file diff --git a/projects/module_def/projects/locale/ar-doc.json b/projects/module_def/projects/locale/ar-doc.json deleted file mode 100644 index 7e4aaaf3f7..0000000000 --- a/projects/module_def/projects/locale/ar-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "\u0645\u0634\u0627\u0631\u064a\u0639", - "Projects Home": "\u0635\u0641\u062d\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639\u0627\u062a" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/es-doc.json b/projects/module_def/projects/locale/es-doc.json deleted file mode 100644 index 7ca0100b5d..0000000000 --- a/projects/module_def/projects/locale/es-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "Proyectos", - "Projects Home": "Home Proyectos" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/fr-doc.json b/projects/module_def/projects/locale/fr-doc.json deleted file mode 100644 index d29293617e..0000000000 --- a/projects/module_def/projects/locale/fr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "Projets", - "Projects Home": "Accueil Projets" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/hi-doc.json b/projects/module_def/projects/locale/hi-doc.json deleted file mode 100644 index 6ec7020c39..0000000000 --- a/projects/module_def/projects/locale/hi-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e\u0913\u0902", - "Projects Home": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e\u0913\u0902 \u0918\u0930" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/hr-doc.json b/projects/module_def/projects/locale/hr-doc.json deleted file mode 100644 index cdf6a7b1d2..0000000000 --- a/projects/module_def/projects/locale/hr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "Projekti", - "Projects Home": "Projekti Po\u010detna" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/nl-doc.json b/projects/module_def/projects/locale/nl-doc.json deleted file mode 100644 index a8b753e29b..0000000000 --- a/projects/module_def/projects/locale/nl-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "Projecten", - "Projects Home": "Projecten Home" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/pt-BR-doc.json b/projects/module_def/projects/locale/pt-BR-doc.json deleted file mode 100644 index d50cdd8c84..0000000000 --- a/projects/module_def/projects/locale/pt-BR-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "Projetos", - "Projects Home": "In\u00edcio de Projetos" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/pt-doc.json b/projects/module_def/projects/locale/pt-doc.json deleted file mode 100644 index 602e521055..0000000000 --- a/projects/module_def/projects/locale/pt-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "Projetos", - "Projects Home": "Home Projetos" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/sr-doc.json b/projects/module_def/projects/locale/sr-doc.json deleted file mode 100644 index b831f426ec..0000000000 --- a/projects/module_def/projects/locale/sr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "\u041f\u0440\u043e\u0458\u0435\u043a\u0442\u0438", - "Projects Home": "\u041f\u0440\u043e\u0458\u0435\u043a\u0442\u0438" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/ta-doc.json b/projects/module_def/projects/locale/ta-doc.json deleted file mode 100644 index 71fd303b78..0000000000 --- a/projects/module_def/projects/locale/ta-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Projects Home": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1" -} \ No newline at end of file diff --git a/projects/module_def/projects/locale/th-doc.json b/projects/module_def/projects/locale/th-doc.json deleted file mode 100644 index 17d8bfa457..0000000000 --- a/projects/module_def/projects/locale/th-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Projects": "\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23", - "Projects Home": "\u0e2b\u0e19\u0e49\u0e32\u0e41\u0e23\u0e01\u0e42\u0e04\u0e23\u0e07\u0e01\u0e32\u0e23" -} \ No newline at end of file diff --git a/projects/page/projects_home/projects_home.js b/projects/page/projects_home/projects_home.js index 3f91468030..c9a6b9375f 100644 --- a/projects/page/projects_home/projects_home.js +++ b/projects/page/projects_home/projects_home.js @@ -21,6 +21,11 @@ wn.module_page["Projects"] = [ description: wn._("Timesheet for tasks."), doctype:"Timesheet" }, + { + label: wn._("Time Log"), + description: wn._("Time Log for tasks."), + doctype:"Time Log" + }, ] }, { diff --git a/startup/install.py b/startup/install.py index b42b7163c0..5ddbf094c8 100644 --- a/startup/install.py +++ b/startup/install.py @@ -30,7 +30,7 @@ def make_roles(): "HR Manager", "HR User", "Leave Approver", "Maintenance Manager", "Maintenance User", "Manufacturing Manager", "Manufacturing User", "Material Manager", "Material Master Manager", "Material User", - "Partner", "Projects User", "Purchase Manager", "Purchase Master Manager", + "Partner", "Projects User", "Projects Manager", "Purchase Manager", "Purchase Master Manager", "Purchase User", "Quality Manager", "Sales Manager", "Sales Master Manager", "Sales User", "Supplier", "Support Manager", "Support Team", "Website Manager"] From a1d4b78fbe946c213288d4c681a8b36a38fdc099 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 26 Feb 2013 18:09:47 +0530 Subject: [PATCH 045/982] started with Auto Inventory Accounting - test case for purchase receipt --- accounts/doctype/account/test_account.py | 18 +- .../purchase_invoice/purchase_invoice.py | 2 +- controllers/accounts_controller.py | 33 ++- controllers/buying_controller.py | 25 +- setup/doctype/company/company.py | 211 +++++++------- setup/doctype/company/company.txt | 29 +- stock/doctype/delivery_note/delivery_note.py | 7 +- .../purchase_receipt/purchase_receipt.py | 64 ++++- .../purchase_receipt/test_purchase_receipt.py | 267 +++++++----------- 9 files changed, 341 insertions(+), 315 deletions(-) diff --git a/accounts/doctype/account/test_account.py b/accounts/doctype/account/test_account.py index db2ca19ec0..ad6319c2b5 100644 --- a/accounts/doctype/account/test_account.py +++ b/accounts/doctype/account/test_account.py @@ -1,27 +1,41 @@ +from __future__ import unicode_literals +import webnotes + def make_test_records(verbose): from webnotes.test_runner import make_test_objects accounts = [ # [account_name, parent_account, group_or_ledger] ["_Test Account Bank Account", "Bank Accounts - _TC", "Ledger"], + ["_Test Account Stock Expenses", "Direct Expenses - _TC", "Group"], ["_Test Account Shipping Charges", "_Test Account Stock Expenses - _TC", "Ledger"], ["_Test Account Customs Duty", "_Test Account Stock Expenses - _TC", "Ledger"], + ["_Test Account Tax Assets", "Current Assets - _TC", "Group"], ["_Test Account VAT", "_Test Account Tax Assets - _TC", "Ledger"], ["_Test Account Service Tax", "_Test Account Tax Assets - _TC", "Ledger"], + ["_Test Account Cost for Goods Sold", "Expenses - _TC", "Ledger"], ["_Test Account Excise Duty", "_Test Account Tax Assets - _TC", "Ledger"], ["_Test Account Education Cess", "_Test Account Tax Assets - _TC", "Ledger"], ["_Test Account S&H Education Cess", "_Test Account Tax Assets - _TC", "Ledger"], ["_Test Account CST", "Direct Expenses - _TC", "Ledger"], ["_Test Account Discount", "Direct Expenses - _TC", "Ledger"], + + # related to Account Inventory Integration + ["_Test Account Stock In Hand", "Current Assets - _TC", "Ledger"], ] - return make_test_objects("Account", [[{ + test_objects = make_test_objects("Account", [[{ "doctype": "Account", "account_name": account_name, "parent_account": parent_account, "company": "_Test Company", "group_or_ledger": group_or_ledger - }] for account_name, parent_account, group_or_ledger in accounts]) \ No newline at end of file + }] for account_name, parent_account, group_or_ledger in accounts]) + + webnotes.conn.set_value("Company", "_Test Company", "stock_in_hand_account", + "_Test Account Stock In Hand - _TC") + + return test_objects \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.py b/accounts/doctype/purchase_invoice/purchase_invoice.py index 3318e4e5dc..96cfc006be 100644 --- a/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -385,7 +385,7 @@ class DocType(BuyingController): gl_entries = [] valuation_tax = 0 auto_inventory_accounting = webnotes.conn.get_value("Global Defaults", None, - "automatic_inventory_accounting") + "auto_inventory_accounting") abbr = self.get_company_abbr() # parent's gl entry diff --git a/controllers/accounts_controller.py b/controllers/accounts_controller.py index 60535ccfb2..47a0138fa8 100644 --- a/controllers/accounts_controller.py +++ b/controllers/accounts_controller.py @@ -16,6 +16,7 @@ from __future__ import unicode_literals import webnotes +from webnotes import msgprint, _ from webnotes.utils import flt from utilities.transaction_base import TransactionBase @@ -37,15 +38,7 @@ class AccountsController(TransactionBase): } gl_dict.update(args) return gl_dict - - def get_stock_in_hand_account(self): - stock_in_hand = webnotes.conn.get_value("Company", self.doc.company, "stock_in_hand") - if not stock_in_hand: - webnotes.msgprint("""Please specify "Stock In Hand" account - for company: %s""" % (self.doc.company,), raise_exception=1) - - return stock_in_hand - + def clear_unallocated_advances(self, childtype, parentfield): self.doclist.remove_items({"parentfield": parentfield, "allocated_amount": ["in", [0, None, ""]]}) @@ -73,4 +66,24 @@ class AccountsController(TransactionBase): "remarks": d.remark, "advance_amount": flt(d.amount), "allocate_amount": 0 - }) \ No newline at end of file + }) + + def get_stock_in_hand_account(self): + stock_in_hand_account = webnotes.conn.get_value("Company", self.doc.company, "stock_in_hand_account") + + if not stock_in_hand_account: + msgprint(_("Missing") + ": " + + _(webnotes.get_doctype("company").get_label("stock_in_hand_account") + + " " + _("for Company") + " " + self.doc.company), raise_exception=True) + + return stock_in_hand_account + + @property + def stock_items(self): + if not hasattr(self, "_stock_items"): + item_codes = list(set(item.item_code for item in self.doclist.get({"parentfield": self.fname}))) + self._stock_items = [r[0] for r in webnotes.conn.sql("""select name + from `tabItem` where name in (%s) and is_stock_item='Yes'""" % \ + (", ".join((["%s"]*len(item_codes))),), item_codes)] + + return self._stock_items \ No newline at end of file diff --git a/controllers/buying_controller.py b/controllers/buying_controller.py index df2f429a14..bbcd4926c3 100644 --- a/controllers/buying_controller.py +++ b/controllers/buying_controller.py @@ -113,6 +113,14 @@ class BuyingController(AccountsController): for item in self.item_doclist: round_floats_in_doc(item, self.precision.item) + + # hack! - cleaned up in _cleanup() + if self.doc.doctype != "Purchase Invoice": + item.rate = item.purchase_rate + self.precision.item.rate = self.precision.item.purchase_rate + + item.discount = item.discount_rate + self.precision.item.discount = self.precision.item.discount_rate if item.discount == 100: if not item.import_ref_rate: @@ -128,10 +136,10 @@ class BuyingController(AccountsController): item.import_ref_rate = flt(item.import_rate / (1.0 - (item.discount_rate / 100.0)), self.precision.item.import_ref_rate) - + item.import_amount = flt(item.import_rate * item.qty, self.precision.item.import_amount) - + _set_base(item, "import_ref_rate", "purchase_ref_rate") _set_base(item, "import_rate", "rate") _set_base(item, "import_amount", "amount") @@ -256,6 +264,9 @@ class BuyingController(AccountsController): for item in self.item_doclist: item.purchase_rate = item.rate del item.fields["rate"] + + item.discount_rate = item.discount + del item.fields["discount"] def validate_on_previous_row(self, tax): """ @@ -315,16 +326,6 @@ class BuyingController(AccountsController): item.item_tax_amount += flt(current_tax_amount, self.precision.item.item_tax_amount) - @property - def stock_items(self): - if not hasattr(self, "_stock_items"): - item_codes = list(set(item.item_code for item in self.item_doclist)) - self._stock_items = [r[0] for r in webnotes.conn.sql("""select name - from `tabItem` where name in (%s) and is_stock_item='Yes'""" % \ - (", ".join((["%s"]*len(item_codes))),), item_codes)] - - return self._stock_items - @property def precision(self): if not hasattr(self, "_precision"): diff --git a/setup/doctype/company/company.py b/setup/doctype/company/company.py index 94c8f1c929..552dae2a9a 100644 --- a/setup/doctype/company/company.py +++ b/setup/doctype/company/company.py @@ -37,111 +37,116 @@ class DocType: # --------------------------------------------------- def create_default_accounts(self): self.fld_dict = {'account_name':0,'parent_account':1,'group_or_ledger':2,'is_pl_account':3,'account_type':4,'debit_or_credit':5,'company':6,'tax_rate':7} - acc_list_common = [['Application of Funds (Assets)','','Group','No','','Debit',self.doc.name,''], - ['Current Assets','Application of Funds (Assets)','Group','No','','Debit',self.doc.name,''], - ['Accounts Receivable','Current Assets','Group','No','','Debit',self.doc.name,''], - ['Bank Accounts','Current Assets','Group','No','Bank or Cash','Debit',self.doc.name,''], - ['Cash In Hand','Current Assets','Group','No','Bank or Cash','Debit',self.doc.name,''], - ['Cash','Cash In Hand','Ledger','No','Bank or Cash','Debit',self.doc.name,''], - ['Loans and Advances (Assets)','Current Assets','Group','No','','Debit',self.doc.name,''], - ['Securities and Deposits','Current Assets','Group','No','','Debit',self.doc.name,''], - ['Earnest Money','Securities and Deposits','Ledger','No','','Debit',self.doc.name,''], - ['Stock In Hand','Current Assets','Group','No','','Debit',self.doc.name,''], - ['Stock','Stock In Hand','Ledger','No','','Debit',self.doc.name,''], - ['Tax Assets','Current Assets','Group','No','','Debit',self.doc.name,''], - ['Fixed Assets','Application of Funds (Assets)','Group','No','','Debit',self.doc.name,''], - ['Capital Equipments','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], - ['Computers','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], - ['Furniture and Fixture','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], - ['Office Equipments','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], - ['Plant and Machinery','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], - ['Investments','Application of Funds (Assets)','Group','No','','Debit',self.doc.name,''], - ['Temporary Accounts (Assets)','Application of Funds (Assets)','Group','No','','Debit',self.doc.name,''], - ['Temporary Account (Assets)','Temporary Accounts (Assets)','Ledger','No','','Debit',self.doc.name,''], - ['Expenses','','Group','Yes','Expense Account','Debit',self.doc.name,''], - ['Direct Expenses','Expenses','Group','Yes','Expense Account','Debit',self.doc.name,''], - ['Cost of Goods Sold','Direct Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Indirect Expenses','Expenses','Group','Yes','Expense Account','Debit',self.doc.name,''], - ['Advertising and Publicity','Indirect Expenses','Ledger','Yes','Chargeable','Debit',self.doc.name,''], - ['Bad Debts Written Off','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Bank Charges','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Books and Periodicals','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Charity and Donations','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Commission on Sales','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Conveyance Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Customer Entertainment Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Depreciation Account','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Freight and Forwarding Charges','Indirect Expenses','Ledger','Yes','Chargeable','Debit',self.doc.name,''], - ['Legal Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Miscellaneous Expenses','Indirect Expenses','Ledger','Yes','Chargeable','Debit',self.doc.name,''], - ['Office Maintenance Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Office Rent','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Postal Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Print and Stationary','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Rounded Off','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Salary','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Sales Promotion Expenses','Indirect Expenses','Ledger','Yes','Chargeable','Debit',self.doc.name,''], - ['Service Charges Paid','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Staff Welfare Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Telephone Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Travelling Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Water and Electricity Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], - ['Income','','Group','Yes','','Credit',self.doc.name,''], - ['Direct Income','Income','Group','Yes','Income Account','Credit',self.doc.name,''], - ['Sales','Direct Income','Ledger','Yes','Income Account','Credit',self.doc.name,''], - ['Service','Direct Income','Ledger','Yes','Income Account','Credit',self.doc.name,''], - ['Indirect Income','Income','Group','Yes','Income Account','Credit',self.doc.name,''], - ['Source of Funds (Liabilities)','','Group','No','','Credit',self.doc.name,''], - ['Capital Account','Source of Funds (Liabilities)','Group','No','','Credit',self.doc.name,''], - ['Reserves and Surplus','Capital Account','Group','No','','Credit',self.doc.name,''], - ['Shareholders Funds','Capital Account','Group','No','','Credit',self.doc.name,''], - ['Current Liabilities','Source of Funds (Liabilities)','Group','No','','Credit',self.doc.name,''], - ['Accounts Payable','Current Liabilities','Group','No','','Credit',self.doc.name,''], - ['Duties and Taxes','Current Liabilities','Group','No','','Credit',self.doc.name,''], - ['Loans (Liabilities)','Current Liabilities','Group','No','','Credit',self.doc.name,''], - ['Secured Loans','Loans (Liabilities)','Group','No','','Credit',self.doc.name,''], - ['Unsecured Loans','Loans (Liabilities)','Group','No','','Credit',self.doc.name,''], - ['Bank Overdraft Account','Loans (Liabilities)','Group','No','','Credit',self.doc.name,''], - ['Temporary Accounts (Liabilities)','Source of Funds (Liabilities)','Group','No','','Credit',self.doc.name,''], - ['Temporary Account (Liabilities)','Temporary Accounts (Liabilities)','Ledger','No','','Credit',self.doc.name,''] - ] + acc_list_common = [ + ['Application of Funds (Assets)','','Group','No','','Debit',self.doc.name,''], + ['Current Assets','Application of Funds (Assets)','Group','No','','Debit',self.doc.name,''], + ['Accounts Receivable','Current Assets','Group','No','','Debit',self.doc.name,''], + ['Bank Accounts','Current Assets','Group','No','Bank or Cash','Debit',self.doc.name,''], + ['Cash In Hand','Current Assets','Group','No','Bank or Cash','Debit',self.doc.name,''], + ['Cash','Cash In Hand','Ledger','No','Bank or Cash','Debit',self.doc.name,''], + ['Loans and Advances (Assets)','Current Assets','Group','No','','Debit',self.doc.name,''], + ['Securities and Deposits','Current Assets','Group','No','','Debit',self.doc.name,''], + ['Earnest Money','Securities and Deposits','Ledger','No','','Debit',self.doc.name,''], + ['Stock In Hand','Current Assets','Group','No','','Debit',self.doc.name,''], + ['Stock','Stock In Hand','Ledger','No','','Debit',self.doc.name,''], + ['Tax Assets','Current Assets','Group','No','','Debit',self.doc.name,''], + ['Stock Delivered But Not Billed','Current Assets','Ledger','No','','Debit',self.doc.name,''], + ['Fixed Assets','Application of Funds (Assets)','Group','No','','Debit',self.doc.name,''], + ['Capital Equipments','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], + ['Computers','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], + ['Furniture and Fixture','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], + ['Office Equipments','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], + ['Plant and Machinery','Fixed Assets','Ledger','No','Fixed Asset Account','Debit',self.doc.name,''], + ['Investments','Application of Funds (Assets)','Group','No','','Debit',self.doc.name,''], + ['Temporary Accounts (Assets)','Application of Funds (Assets)','Group','No','','Debit',self.doc.name,''], + ['Temporary Account (Assets)','Temporary Accounts (Assets)','Ledger','No','','Debit',self.doc.name,''], + ['Expenses','','Group','Yes','Expense Account','Debit',self.doc.name,''], + ['Direct Expenses','Expenses','Group','Yes','Expense Account','Debit',self.doc.name,''], + ['Cost of Goods Sold','Direct Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Expenses Included In Valuation','Direct Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Stock Adjustment','Direct Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Indirect Expenses','Expenses','Group','Yes','Expense Account','Debit',self.doc.name,''], + ['Advertising and Publicity','Indirect Expenses','Ledger','Yes','Chargeable','Debit',self.doc.name,''], + ['Bad Debts Written Off','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Bank Charges','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Books and Periodicals','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Charity and Donations','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Commission on Sales','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Conveyance Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Customer Entertainment Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Depreciation Account','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Freight and Forwarding Charges','Indirect Expenses','Ledger','Yes','Chargeable','Debit',self.doc.name,''], + ['Legal Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Miscellaneous Expenses','Indirect Expenses','Ledger','Yes','Chargeable','Debit',self.doc.name,''], + ['Office Maintenance Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Office Rent','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Postal Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Print and Stationary','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Rounded Off','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Salary','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Sales Promotion Expenses','Indirect Expenses','Ledger','Yes','Chargeable','Debit',self.doc.name,''], + ['Service Charges Paid','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Staff Welfare Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Telephone Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Travelling Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Water and Electricity Expenses','Indirect Expenses','Ledger','Yes','Expense Account','Debit',self.doc.name,''], + ['Income','','Group','Yes','','Credit',self.doc.name,''], + ['Direct Income','Income','Group','Yes','Income Account','Credit',self.doc.name,''], + ['Sales','Direct Income','Ledger','Yes','Income Account','Credit',self.doc.name,''], + ['Service','Direct Income','Ledger','Yes','Income Account','Credit',self.doc.name,''], + ['Indirect Income','Income','Group','Yes','Income Account','Credit',self.doc.name,''], + ['Source of Funds (Liabilities)','','Group','No','','Credit',self.doc.name,''], + ['Capital Account','Source of Funds (Liabilities)','Group','No','','Credit',self.doc.name,''], + ['Reserves and Surplus','Capital Account','Group','No','','Credit',self.doc.name,''], + ['Shareholders Funds','Capital Account','Group','No','','Credit',self.doc.name,''], + ['Current Liabilities','Source of Funds (Liabilities)','Group','No','','Credit',self.doc.name,''], + ['Accounts Payable','Current Liabilities','Group','No','','Credit',self.doc.name,''], + ['Duties and Taxes','Current Liabilities','Group','No','','Credit',self.doc.name,''], + ['Loans (Liabilities)','Current Liabilities','Group','No','','Credit',self.doc.name,''], + ['Secured Loans','Loans (Liabilities)','Group','No','','Credit',self.doc.name,''], + ['Unsecured Loans','Loans (Liabilities)','Group','No','','Credit',self.doc.name,''], + ['Bank Overdraft Account','Loans (Liabilities)','Group','No','','Credit',self.doc.name,''], + ['Stock Received But Not Billed','Current Liabilities','Ledger','No','','Credit',self.doc.name,''], + ['Temporary Accounts (Liabilities)','Source of Funds (Liabilities)','Group','No','','Credit',self.doc.name,''], + ['Temporary Account (Liabilities)','Temporary Accounts (Liabilities)','Ledger','No','','Credit',self.doc.name,''] + ] acc_list_india = [ - ['CENVAT Capital Goods','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['CENVAT','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['CENVAT Service Tax','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['CENVAT Service Tax Cess 1','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['CENVAT Service Tax Cess 2','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['CENVAT Edu Cess','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['CENVAT SHE Cess','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['Excise Duty 4','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'4.00'], - ['Excise Duty 8','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'8.00'], - ['Excise Duty 10','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'10.00'], - ['Excise Duty 14','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'14.00'], - ['Excise Duty Edu Cess 2','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'2.00'], - ['Excise Duty SHE Cess 1','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'1.00'], - ['P L A','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['P L A - Cess Portion','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], - ['Edu. Cess on Excise','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'2.00'], - ['Edu. Cess on Service Tax','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'2.00'], - ['Edu. Cess on TDS','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'2.00'], - ['Excise Duty @ 4','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'4.00'], - ['Excise Duty @ 8','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'8.00'], - ['Excise Duty @ 10','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'10.00'], - ['Excise Duty @ 14','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'14.00'], - ['Service Tax','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'10.3'], - ['SHE Cess on Excise','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'1.00'], - ['SHE Cess on Service Tax','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'1.00'], - ['SHE Cess on TDS','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'1.00'], - ['Professional Tax','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], - ['VAT','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], - ['TDS (Advertisement)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], - ['TDS (Commission)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], - ['TDS (Contractor)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], - ['TDS (Interest)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], - ['TDS (Rent)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], - ['TDS (Salary)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''] - ] + ['CENVAT Capital Goods','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['CENVAT','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['CENVAT Service Tax','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['CENVAT Service Tax Cess 1','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['CENVAT Service Tax Cess 2','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['CENVAT Edu Cess','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['CENVAT SHE Cess','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['Excise Duty 4','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'4.00'], + ['Excise Duty 8','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'8.00'], + ['Excise Duty 10','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'10.00'], + ['Excise Duty 14','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'14.00'], + ['Excise Duty Edu Cess 2','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'2.00'], + ['Excise Duty SHE Cess 1','Tax Assets','Ledger','No','Tax','Debit',self.doc.name,'1.00'], + ['P L A','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['P L A - Cess Portion','Tax Assets','Ledger','No','Chargeable','Debit',self.doc.name,''], + ['Edu. Cess on Excise','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'2.00'], + ['Edu. Cess on Service Tax','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'2.00'], + ['Edu. Cess on TDS','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'2.00'], + ['Excise Duty @ 4','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'4.00'], + ['Excise Duty @ 8','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'8.00'], + ['Excise Duty @ 10','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'10.00'], + ['Excise Duty @ 14','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'14.00'], + ['Service Tax','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'10.3'], + ['SHE Cess on Excise','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'1.00'], + ['SHE Cess on Service Tax','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'1.00'], + ['SHE Cess on TDS','Duties and Taxes','Ledger','No','Tax','Credit',self.doc.name,'1.00'], + ['Professional Tax','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], + ['VAT','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], + ['TDS (Advertisement)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], + ['TDS (Commission)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], + ['TDS (Contractor)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], + ['TDS (Interest)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], + ['TDS (Rent)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''], + ['TDS (Salary)','Duties and Taxes','Ledger','No','Chargeable','Credit',self.doc.name,''] + ] # load common account heads for d in acc_list_common: self.add_acc(d) diff --git a/setup/doctype/company/company.txt b/setup/doctype/company/company.txt index a43ec938da..d97cfc34af 100644 --- a/setup/doctype/company/company.txt +++ b/setup/doctype/company/company.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-22 16:50:36", + "creation": "2013-02-22 01:27:54", "docstatus": 0, - "modified": "2013-01-23 16:51:54", + "modified": "2013-02-26 10:57:39", "modified_by": "Administrator", "owner": "Administrator" }, @@ -51,12 +51,13 @@ "oldfieldtype": "Section Break" }, { + "description": "Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.", "doctype": "DocField", - "fieldname": "company_name", + "fieldname": "abbr", "fieldtype": "Data", - "label": "Company", + "label": "Abbr", "no_copy": 0, - "oldfieldname": "company_name", + "oldfieldname": "abbr", "oldfieldtype": "Data", "reqd": 1 }, @@ -66,13 +67,12 @@ "fieldtype": "Column Break" }, { - "description": "Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.", "doctype": "DocField", - "fieldname": "abbr", + "fieldname": "company_name", "fieldtype": "Data", - "label": "Abbr", + "label": "Company", "no_copy": 0, - "oldfieldname": "abbr", + "oldfieldname": "company_name", "oldfieldtype": "Data", "reqd": 1 }, @@ -124,6 +124,17 @@ "oldfieldtype": "Link", "options": "Account" }, + { + "depends_on": "eval:!doc.__islocal", + "description": "This account will be used to maintain value of available stock", + "doctype": "DocField", + "fieldname": "stock_in_hand_account", + "fieldtype": "Link", + "label": "Stock In Hand Account", + "no_copy": 1, + "options": "Account", + "read_only": 0 + }, { "doctype": "DocField", "fieldname": "column_break0", diff --git a/stock/doctype/delivery_note/delivery_note.py b/stock/doctype/delivery_note/delivery_note.py index f54edf221a..35d008bcca 100644 --- a/stock/doctype/delivery_note/delivery_note.py +++ b/stock/doctype/delivery_note/delivery_note.py @@ -174,7 +174,12 @@ class DocType(SellingController): def validate_reference_value(self): """Validate values with reference document with previous document""" - get_obj('DocType Mapper', 'Sales Order-Delivery Note', with_children = 1).validate_reference_value(self, self.doc.name) + validate_ref = any([d.prevdoc_docname for d in self.doclist.get({"parentfield": self.fname}) + if d.prevdoc_doctype == "Sales Order"]) + + if validate_ref: + get_obj('DocType Mapper', 'Sales Order-Delivery Note', + with_children = 1).validate_reference_value(self, self.doc.name) def validate_for_items(self): diff --git a/stock/doctype/purchase_receipt/purchase_receipt.py b/stock/doctype/purchase_receipt/purchase_receipt.py index 8858fd52e1..a957468032 100644 --- a/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/stock/doctype/purchase_receipt/purchase_receipt.py @@ -17,7 +17,7 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import cstr, flt +from webnotes.utils import cstr, flt, cint from webnotes.model.doc import addchild from webnotes.model.bean import getlist from webnotes.model.code import get_obj @@ -92,11 +92,12 @@ class DocType(BuyingController): # update valuation rate def update_valuation_rate(self): - total_b_cost = flt(self.doc.buying_cost_transport) + flt(self.doc.buying_cost_taxes) + flt(self.doc.buying_cost_other) - for d in getlist(self.doclist, 'purchase_receipt_details'): - if flt(self.doc.net_total) and flt(d.qty): - #d.valuation_rate = (flt(d.purchase_rate) + ((flt(d.amount) * (total_b_cost)) / (self.doc.net_total * flt(d.qty))) + (flt(d.rm_supp_cost) / flt(d.qty))) / flt(d.conversion_factor) - d.valuation_rate = (flt(d.purchase_rate) + ((flt(d.amount) * (total_b_cost)) / (self.doc.net_total * flt(d.qty))) + (flt(d.rm_supp_cost) / flt(d.qty)) + (flt(d.item_tax_amount)/flt(d.qty))) / flt(d.conversion_factor) + for d in self.doclist.get({"parentfield": "purchase_receipt_details"}): + if d.qty: + d.valuation_rate = (flt(d.purchase_rate) + flt(d.item_tax_amount)/flt(d.qty) + + flt(d.rm_supp_cost) / flt(d.qty)) / flt(d.conversion_factor) + else: + d.valuation_rate = 0.0 #check in manage account if purchase order required or not. # ==================================================================================== @@ -263,11 +264,9 @@ class DocType(BuyingController): # Update last purchase rate purchase_controller.update_last_purchase_rate(self, 1) + + self.make_gl_entries() - - - #On Cancel - #---------------------------------------------------------------------------------------------------- def check_next_docstatus(self): submit_rv = sql("select t1.name from `tabPurchase Invoice` t1,`tabPurchase Invoice Item` t2 where t1.name = t2.parent and t2.purchase_receipt = '%s' and t1.docstatus = 1" % (self.doc.name)) if submit_rv: @@ -301,10 +300,10 @@ class DocType(BuyingController): # 6. Update last purchase rate pc_obj.update_last_purchase_rate(self, 0) + + self.make_gl_entries() -#----------- code for Sub-contracted Items ------------------- - #--------check for sub-contracted items and accordingly update PR raw material detail table-------- def update_rw_material_detail(self): for d in getlist(self.doclist,'purchase_receipt_details'): @@ -431,3 +430,44 @@ class DocType(BuyingController): def get_purchase_tax_details(self): self.doclist = get_obj('Purchase Common').get_purchase_tax_details(self) + + def make_gl_entries(self): + if not cint(webnotes.defaults.get_global_default("auto_inventory_accounting")): + return + + abbr = webnotes.conn.get_value("Company", self.doc.company, "abbr") + stock_received_account = "Stock Received But Not Billed - %s" % (abbr,) + stock_in_hand_account = self.get_stock_in_hand_account() + + total_valuation_amount = self.get_total_valuation_amount() + + if total_valuation_amount: + gl_entries = [ + # debit stock in hand account + self.get_gl_dict({ + "account": stock_in_hand_account, + "against": stock_received_account, + "debit": total_valuation_amount, + "remarks": self.doc.remarks or "Accounting Entry for Stock", + }, self.doc.docstatus == 2), + + # credit stock received but not billed account + self.get_gl_dict({ + "account": stock_received_account, + "against": stock_in_hand_account, + "credit": total_valuation_amount, + "remarks": self.doc.remarks or "Accounting Entry for Stock", + }, self.doc.docstatus == 2), + ] + from accounts.general_ledger import make_gl_entries + make_gl_entries(gl_entries, cancel=self.doc.docstatus == 2) + + def get_total_valuation_amount(self): + total_valuation_amount = 0.0 + + for item in self.doclist.get({"parentfield": "purchase_receipt_details"}): + if item.item_code in self.stock_items: + total_valuation_amount += flt(item.valuation_rate) * \ + flt(item.qty) * flt(item.conversion_factor) + + return total_valuation_amount \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/test_purchase_receipt.py b/stock/doctype/purchase_receipt/test_purchase_receipt.py index f91455f4d3..d833d65b2b 100644 --- a/stock/doctype/purchase_receipt/test_purchase_receipt.py +++ b/stock/doctype/purchase_receipt/test_purchase_receipt.py @@ -18,178 +18,115 @@ from __future__ import unicode_literals import unittest import webnotes -import webnotes.model -from webnotes.model.doclist import DocList -from webnotes.utils import nowdate - -company = webnotes.conn.get_default("company") -abbr = webnotes.conn.get_value("Company", company, "abbr") - -def load_data(): - insert_accounts() - - # create default warehouse - if not webnotes.conn.exists("Warehouse", "Default Warehouse"): - webnotes.insert({"doctype": "Warehouse", - "warehouse_name": "Default Warehouse", - "warehouse_type": "Stores"}) - - # create UOM: Nos. - if not webnotes.conn.exists("UOM", "Nos"): - webnotes.insert({"doctype": "UOM", "uom_name": "Nos"}) - - from webnotes.tests import insert_test_data - # create item groups and items - insert_test_data("Item Group", - sort_fn=lambda ig: (ig[0].get('parent_item_group'), ig[0].get('name'))) - insert_test_data("Item") - - # create supplier type - webnotes.insert({"doctype": "Supplier Type", "supplier_type": "Manufacturing"}) - - # create supplier - webnotes.insert({"doctype": "Supplier", "supplier_name": "East Wind Inc.", - "supplier_type": "Manufacturing", "company": company}) - - # create default cost center if not exists - if not webnotes.conn.exists("Cost Center", "Default Cost Center - %s" % abbr): - webnotes.insert({"doctype": "Cost Center", "group_or_ledger": "Ledger", - "cost_center_name": "Default Cost Center", - "parent_cost_center": "Root - %s" % abbr, - "company_name": company}) - - # create account heads for taxes - - webnotes.insert({"doctype": "Account", "account_name": "Shipping Charges", - "parent_account": "Stock Expenses - %s" % abbr, "company": company, - "group_or_ledger": "Ledger"}) - - webnotes.insert({"doctype": "Account", "account_name": "Customs Duty", - "parent_account": "Stock Expenses - %s" % abbr, "company": company, - "group_or_ledger": "Ledger"}) - webnotes.insert({"doctype": "Account", "account_name": "_Test Tax Assets", - "parent_account": "Current Assets - %s" % abbr, "company": company, - "group_or_ledger": "Group"}) - webnotes.insert({"doctype": "Account", "account_name": "VAT - Test", - "parent_account": "_Test Tax Assets - %s" % abbr, "company": company, - "group_or_ledger": "Ledger"}) - - # create BOM - # webnotes.insert(DocList([ - # {"doctype": "BOM", "item": "Nebula 7", "quantity": 1, - # "is_active": "Yes", "is_default": 1, "uom": "Nos"}, - # {"doctype": "BOM Operation", "operation_no": 1, "parentfield": "bom_operations", - # "opn_description": "Development"}, - # {"doctype": "BOM Item", "item_code": "Android Jack D", "operation_no": 1, "qty": 5, - # "rate": 20, "amount": 100, "stock_uom": "Nos", "parentfield": "bom_materials"} - # ])) - - -base_purchase_receipt = [ - { - "doctype": "Purchase Receipt", "supplier": "East Wind Inc.", - "naming_series": "PR", "posting_date": nowdate(), "posting_time": "12:05", - "company": company, "fiscal_year": webnotes.conn.get_default("fiscal_year"), - "currency": webnotes.conn.get_default("currency"), "conversion_rate": 1 - }, - { - "doctype": "Purchase Receipt Item", - "item_code": "Home Desktop 100", - "qty": 10, "received_qty": 10, "rejected_qty": 0, "purchase_rate": 50, - "amount": 500, "warehouse": "Default Warehouse", - "parentfield": "purchase_receipt_details", - "conversion_factor": 1, "uom": "Nos", "stock_uom": "Nos" - }, - { - "doctype": "Purchase Taxes and Charges", "charge_type": "Actual", - "account_head": "Shipping Charges - %s" % abbr, "rate": 100, "tax_amount": 100, - "category": "Valuation and Total", "parentfield": "purchase_tax_details", - "cost_center": "Default Cost Center - %s" % abbr - }, - { - "doctype": "Purchase Taxes and Charges", "charge_type": "Actual", - "account_head": "VAT - Test - %s" % abbr, "rate": 120, "tax_amount": 120, - "category": "Total", "parentfield": "purchase_tax_details" - }, - { - "doctype": "Purchase Taxes and Charges", "charge_type": "Actual", - "account_head": "Customs Duty - %s" % abbr, "rate": 150, "tax_amount": 150, - "category": "Valuation", "parentfield": "purchase_tax_details", - "cost_center": "Default Cost Center - %s" % abbr - } -] - -def insert_accounts(): - for d in webnotes.conn.sql("""select name, abbr from tabCompany""", as_dict=1): - acc_list = [ - make_account_dict('Stock Assets', 'Current Assets', d, 'Group'), - make_account_dict('Stock In Hand', 'Stock Assets', d, 'Ledger'), - make_account_dict('Stock Delivered But Not Billed', 'Stock Assets', - d, 'Ledger'), - make_account_dict('Stock Liabilities', 'Current Liabilities', d, 'Group'), - make_account_dict('Stock Received But Not Billed', 'Stock Liabilities', - d, 'Ledger'), - make_account_dict('Stock Expenses', 'Direct Expenses', d, 'Group'), - make_account_dict('Stock Variance', 'Stock Expenses', d, 'Ledger'), - make_account_dict('Expenses Included In Valuation', 'Stock Expenses', - d, 'Ledger'), - ] - for acc in acc_list: - acc_name = "%s - %s" % (acc['account_name'], d['abbr']) - if not webnotes.conn.exists('Account', acc_name): - webnotes.insert(acc) - -def make_account_dict(account, parent, company_detail, group_or_ledger): - return { - "doctype": "Account", - "account_name": account, - "parent_account": "%s - %s" % (parent, company_detail['abbr']), - "company": company_detail['name'], - "group_or_ledger": group_or_ledger - } - +import webnotes.defaults +from webnotes.utils import cint class TestPurchaseReceipt(unittest.TestCase): - def setUp(self): - webnotes.conn.begin() - load_data() - webnotes.conn.set_value("Global Defaults", None, "automatic_inventory_accounting", 1) + def test_purchase_receipt_no_gl_entry(self): + pr = webnotes.bean(copy=test_records[0]) + pr.run_method("calculate_taxes_and_totals") + pr.insert() + pr.submit() - def test_purchase_receipt(self): - # warehouse does not have stock in hand specified - self.run_purchase_receipt_test(base_purchase_receipt, - "Stock In Hand - %s" % (abbr,), - "Stock Received But Not Billed - %s" % (abbr,), 750.0) - - def run_purchase_receipt_test(self, purchase_receipt, debit_account, - credit_account, stock_value): - dl = webnotes.insert(DocList(purchase_receipt)) + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Purchase Receipt' and voucher_no=%s + order by account desc""", pr.doc.name, as_dict=1) + + self.assertTrue(not gl_entries) - from controllers.tax_controller import TaxController - tax_controller = TaxController(dl.doc, dl.doclist) - tax_controller.item_table_field = "purchase_receipt_details" - tax_controller.calculate_taxes_and_totals() - dl.doc = tax_controller.doc - dl.doclist = tax_controller.doclist + def test_purchase_receipt_gl_entry(self): + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) - dl.submit() - dl.load_from_db() + self.assertEqual(cint(webnotes.defaults.get_global_default("auto_inventory_accounting")), 1) - gle = webnotes.conn.sql("""select account, ifnull(debit, 0), ifnull(credit, 0) - from `tabGL Entry` where voucher_no = %s""", dl.doclist[0].name) + pr = webnotes.bean(copy=test_records[0]) + pr.run_method("calculate_taxes_and_totals") + pr.insert() + pr.submit() - gle_map = dict(((entry[0], entry) for entry in gle)) + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Purchase Receipt' and voucher_no=%s + order by account desc""", pr.doc.name, as_dict=1) + + self.assertTrue(gl_entries) - self.assertEquals(gle_map[debit_account], (debit_account, stock_value, 0.0)) - self.assertEquals(gle_map[credit_account], (credit_account, 0.0, stock_value)) + stock_in_hand_account = webnotes.conn.get_value("Company", pr.doc.company, + "stock_in_hand_account") - def atest_subcontracting(self): - pr = base_purchase_receipt.copy() - pr[1].update({"item_code": "Nebula 7"}) + expected_values = [ + [stock_in_hand_account, 750.0, 0.0], + ["Stock Received But Not Billed - _TC", 0.0, 750.0] + ] - self.run_purchase_receipt_test(pr, - "Stock In Hand - %s" % (abbr,), - "Stock Received But Not Billed - %s" % (abbr,), 1750.0) - - def tearDown(self): - webnotes.conn.rollback() \ No newline at end of file + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_values[i][0], gle.account) + self.assertEquals(expected_values[i][1], gle.debit) + self.assertEquals(expected_values[i][2], gle.credit) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + +test_records = [ + [ + { + "company": "_Test Company", + "conversion_rate": 1.0, + "currency": "INR", + "doctype": "Purchase Receipt", + "fiscal_year": "_Test Fiscal Year 2013", + "posting_date": "2013-02-12", + "posting_time": "15:33:30", + "supplier": "_Test Supplier", + "net_total": 500.0, + "grand_total": 720.0, + }, + { + "conversion_factor": 1.0, + "description": "_Test Item", + "doctype": "Purchase Receipt Item", + "item_code": "_Test Item", + "item_name": "_Test Item", + "parentfield": "purchase_receipt_details", + "received_qty": 10.0, + "qty": 10.0, + "rejected_qty": 0.0, + "import_rate": 50.0, + "amount": 500.0, + "warehouse": "_Test Warehouse", + "stock_uom": "Nos", + "uom": "_Test UOM", + }, + { + "account_head": "_Test Account Shipping Charges - _TC", + "add_deduct_tax": "Add", + "category": "Valuation and Total", + "charge_type": "Actual", + "description": "Shipping Charges", + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "rate": 100.0, + "tax_amount": 100.0, + }, + { + "account_head": "_Test Account VAT - _TC", + "add_deduct_tax": "Add", + "category": "Total", + "charge_type": "Actual", + "description": "VAT", + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "rate": 120.0, + "tax_amount": 120.0, + }, + { + "account_head": "_Test Account Customs Duty - _TC", + "add_deduct_tax": "Add", + "category": "Valuation", + "charge_type": "Actual", + "description": "Customs Duty", + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "rate": 150.0, + "tax_amount": 150.0, + }, + ], +] \ No newline at end of file From 891ff09ac1f20fb296836757a40c4841948d10e3 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 27 Feb 2013 10:51:26 +0530 Subject: [PATCH 046/982] website: fixed social icons and don't take lang from session for demo --- website/utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/utils.py b/website/utils.py index 16d8505664..0983f62517 100644 --- a/website/utils.py +++ b/website/utils.py @@ -253,6 +253,9 @@ def get_outer_env(page_name, args): if k in settings.fields: args[k] = settings.fields.get(k) + for k in ["facebook_share", "google_plus_one", "twitter_share", "linked_in_share"]: + args[k] = int(args.get(k) or 0) + if not args.brand_html: args.brand_html = "ERPNext" if not args.top_bar_background: From 9d794fccc14cd6a56fdf00de28b2becd88e24155 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 27 Feb 2013 13:34:22 +0530 Subject: [PATCH 047/982] fixes in jv test and purchase invoice test --- .../journal_voucher/test_journal_voucher.py | 1 - .../purchase_invoice/purchase_invoice.py | 2 +- .../purchase_invoice/test_purchase_invoice.py | 335 ++++++++++-------- controllers/buying_controller.py | 4 +- 4 files changed, 182 insertions(+), 160 deletions(-) diff --git a/accounts/doctype/journal_voucher/test_journal_voucher.py b/accounts/doctype/journal_voucher/test_journal_voucher.py index 67fd1c0867..bb846d1634 100644 --- a/accounts/doctype/journal_voucher/test_journal_voucher.py +++ b/accounts/doctype/journal_voucher/test_journal_voucher.py @@ -26,7 +26,6 @@ test_records = [[ "fiscal_year": "_Test Fiscal Year 2013", "naming_series": "_T-Journal Voucher-", "posting_date": "2013-02-14", - "tds_applicable": "No", "user_remark": "test", "voucher_type": "Bank Voucher", "cheque_no": "33", diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.py b/accounts/doctype/purchase_invoice/purchase_invoice.py index 96cfc006be..950cac38ea 100644 --- a/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -493,4 +493,4 @@ class DocType(BuyingController): def on_update(self): pass - + \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/accounts/doctype/purchase_invoice/test_purchase_invoice.py index 62296bf5bf..0944b81e35 100644 --- a/accounts/doctype/purchase_invoice/test_purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/test_purchase_invoice.py @@ -24,14 +24,9 @@ import json test_dependencies = ["Item", "Cost Center"] class TestPurchaseInvoice(unittest.TestCase): - def test_gl_entries(self): - wrapper = webnotes.bean(self.get_test_doclist()) - - # circumvent the disabled calculation call - obj = webnotes.get_obj(doc=wrapper.doc, doclist=wrapper.doclist) - obj.calculate_taxes_and_totals() - wrapper.set_doclist(obj.doclist) - + def test_gl_entries_without_auto_inventory_accounting(self): + wrapper = webnotes.bean(copy=test_records[0]) + wrapper.run_method("calculate_taxes_and_totals") wrapper.insert() wrapper.submit() wrapper.load_from_db() @@ -53,14 +48,12 @@ class TestPurchaseInvoice(unittest.TestCase): for d in gl_entries: self.assertEqual([d.debit, d.credit], expected_gl_entries.get(d.account)) + def test_gl_entries_with_auto_inventory_accounting(self): + pi = webnotes.bean(copy=test_records[1]) + def test_purchase_invoice_calculation(self): - wrapper = webnotes.bean(self.get_test_doclist()) - - # circumvent the disabled calculation call - obj = webnotes.get_obj(doc=wrapper.doc, doclist=wrapper.doclist) - obj.calculate_taxes_and_totals() - wrapper.set_doclist(obj.doclist) - + wrapper = webnotes.bean(copy=test_records[0]) + wrapper.run_method("calculate_taxes_and_totals") wrapper.insert() wrapper.load_from_db() @@ -91,145 +84,173 @@ class TestPurchaseInvoice(unittest.TestCase): for i, item in enumerate(wrapper.doclist.get({"parentfield": "entries"})): self.assertEqual(item.item_code, expected_values[i][0]) self.assertEqual(item.item_tax_amount, expected_values[i][1]) - - def get_test_doclist(self): - return [ - # parent - { - "doctype": "Purchase Invoice", - "naming_series": "BILL", - "supplier_name": "_Test Supplier", - "credit_to": "_Test Supplier - _TC", - "bill_no": "NA", - "posting_date": "2013-02-03", - "fiscal_year": "_Test Fiscal Year 2013", - "company": "_Test Company", - "currency": "INR", - "conversion_rate": 1, - "grand_total_import": 0 # for feed - }, - # items - { - "doctype": "Purchase Invoice Item", - "parentfield": "entries", - "item_code": "_Test Item Home Desktop 100", - "item_name": "_Test Item Home Desktop 100", - "qty": 10, - "import_rate": 50, - "import_amount": 500, - "rate": 50, - "amount": 500, - "uom": "_Test UOM", - "item_tax_rate": json.dumps({"_Test Account Excise Duty - _TC": 10}), - "expense_head": "_Test Account Cost for Goods Sold - _TC", - "cost_center": "_Test Cost Center - _TC" - - }, - { - "doctype": "Purchase Invoice Item", - "parentfield": "entries", - "item_code": "_Test Item Home Desktop 200", - "item_name": "_Test Item Home Desktop 200", - "qty": 5, - "import_rate": 150, - "import_amount": 750, - "rate": 150, - "amount": 750, - "uom": "_Test UOM", - "expense_head": "_Test Account Cost for Goods Sold - _TC", - "cost_center": "_Test Cost Center - _TC" - }, - # taxes - { - "doctype": "Purchase Taxes and Charges", - "parentfield": "purchase_tax_details", - "charge_type": "Actual", - "account_head": "_Test Account Shipping Charges - _TC", - "cost_center": "_Test Cost Center - _TC", - "description": "Shipping Charges", - "category": "Valuation and Total", - "add_deduct_tax": "Add", - "rate": 100 - }, - { - "doctype": "Purchase Taxes and Charges", - "parentfield": "purchase_tax_details", - "charge_type": "On Net Total", - "account_head": "_Test Account Customs Duty - _TC", - "cost_center": "_Test Cost Center - _TC", - "description": "Customs Duty", - "category": "Valuation", - "add_deduct_tax": "Add", - "rate": 10 - }, - { - "doctype": "Purchase Taxes and Charges", - "parentfield": "purchase_tax_details", - "charge_type": "On Net Total", - "account_head": "_Test Account Excise Duty - _TC", - "cost_center": "_Test Cost Center - _TC", - "description": "Excise Duty", - "category": "Total", - "add_deduct_tax": "Add", - "rate": 12 - }, - { - "doctype": "Purchase Taxes and Charges", - "parentfield": "purchase_tax_details", - "charge_type": "On Previous Row Amount", - "account_head": "_Test Account Education Cess - _TC", - "cost_center": "_Test Cost Center - _TC", - "description": "Education Cess", - "category": "Total", - "add_deduct_tax": "Add", - "rate": 2, - "row_id": 3 - }, - { - "doctype": "Purchase Taxes and Charges", - "parentfield": "purchase_tax_details", - "charge_type": "On Previous Row Amount", - "account_head": "_Test Account S&H Education Cess - _TC", - "cost_center": "_Test Cost Center - _TC", - "description": "S&H Education Cess", - "category": "Total", - "add_deduct_tax": "Add", - "rate": 1, - "row_id": 3 - }, - { - "doctype": "Purchase Taxes and Charges", - "parentfield": "purchase_tax_details", - "charge_type": "On Previous Row Total", - "account_head": "_Test Account CST - _TC", - "cost_center": "_Test Cost Center - _TC", - "description": "CST", - "category": "Total", - "add_deduct_tax": "Add", - "rate": 2, - "row_id": 5 - }, - { - "doctype": "Purchase Taxes and Charges", - "parentfield": "purchase_tax_details", - "charge_type": "On Net Total", - "account_head": "_Test Account VAT - _TC", - "cost_center": "_Test Cost Center - _TC", - "description": "VAT", - "category": "Total", - "add_deduct_tax": "Add", - "rate": 12.5 - }, - { - "doctype": "Purchase Taxes and Charges", - "parentfield": "purchase_tax_details", - "charge_type": "On Previous Row Total", - "account_head": "_Test Account Discount - _TC", - "cost_center": "_Test Cost Center - _TC", - "description": "Discount", - "category": "Total", - "add_deduct_tax": "Deduct", - "rate": 10, - "row_id": 7 - }, - ] \ No newline at end of file + +test_records = [ + [ + # parent + { + "doctype": "Purchase Invoice", + "naming_series": "BILL", + "supplier_name": "_Test Supplier", + "credit_to": "_Test Supplier - _TC", + "bill_no": "NA", + "posting_date": "2013-02-03", + "fiscal_year": "_Test Fiscal Year 2013", + "company": "_Test Company", + "currency": "INR", + "conversion_rate": 1, + "grand_total_import": 0 # for feed + }, + # items + { + "doctype": "Purchase Invoice Item", + "parentfield": "entries", + "item_code": "_Test Item Home Desktop 100", + "item_name": "_Test Item Home Desktop 100", + "qty": 10, + "import_rate": 50, + "import_amount": 500, + "rate": 50, + "amount": 500, + "uom": "_Test UOM", + "item_tax_rate": json.dumps({"_Test Account Excise Duty - _TC": 10}), + "expense_head": "_Test Account Cost for Goods Sold - _TC", + "cost_center": "_Test Cost Center - _TC" + + }, + { + "doctype": "Purchase Invoice Item", + "parentfield": "entries", + "item_code": "_Test Item Home Desktop 200", + "item_name": "_Test Item Home Desktop 200", + "qty": 5, + "import_rate": 150, + "import_amount": 750, + "rate": 150, + "amount": 750, + "uom": "_Test UOM", + "expense_head": "_Test Account Cost for Goods Sold - _TC", + "cost_center": "_Test Cost Center - _TC" + }, + # taxes + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "Actual", + "account_head": "_Test Account Shipping Charges - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "Shipping Charges", + "category": "Valuation and Total", + "add_deduct_tax": "Add", + "rate": 100 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "On Net Total", + "account_head": "_Test Account Customs Duty - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "Customs Duty", + "category": "Valuation", + "add_deduct_tax": "Add", + "rate": 10 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "On Net Total", + "account_head": "_Test Account Excise Duty - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "Excise Duty", + "category": "Total", + "add_deduct_tax": "Add", + "rate": 12 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "On Previous Row Amount", + "account_head": "_Test Account Education Cess - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "Education Cess", + "category": "Total", + "add_deduct_tax": "Add", + "rate": 2, + "row_id": 3 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "On Previous Row Amount", + "account_head": "_Test Account S&H Education Cess - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "S&H Education Cess", + "category": "Total", + "add_deduct_tax": "Add", + "rate": 1, + "row_id": 3 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "On Previous Row Total", + "account_head": "_Test Account CST - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "CST", + "category": "Total", + "add_deduct_tax": "Add", + "rate": 2, + "row_id": 5 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "On Net Total", + "account_head": "_Test Account VAT - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "VAT", + "category": "Total", + "add_deduct_tax": "Add", + "rate": 12.5 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "On Previous Row Total", + "account_head": "_Test Account Discount - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "Discount", + "category": "Total", + "add_deduct_tax": "Deduct", + "rate": 10, + "row_id": 7 + }, + ], + [ + # parent + { + "doctype": "Purchase Invoice", + "supplier_name": "_Test Supplier", + "credit_to": "_Test Supplier - _TC", + "bill_no": "NA", + "posting_date": "2013-02-03", + "fiscal_year": "_Test Fiscal Year 2013", + "company": "_Test Company", + "currency": "INR", + "conversion_rate": 1, + }, + # items + { + "doctype": "Purchase Invoice Item", + "parentfield": "entries", + "item_code": "_Test Item", + "item_name": "_Test Item", + "qty": 10, + "import_rate": 50, + "uom": "_Test UOM", + "expense_head": "_Test Account Cost for Goods Sold - _TC", + "cost_center": "_Test Cost Center - _TC" + + }, + ] +] \ No newline at end of file diff --git a/controllers/buying_controller.py b/controllers/buying_controller.py index bbcd4926c3..2514bfc956 100644 --- a/controllers/buying_controller.py +++ b/controllers/buying_controller.py @@ -250,7 +250,9 @@ class BuyingController(AccountsController): if self.doc.doctype == "Purchase Invoice" and self.doc.docstatus == 0: self.doc.total_advance = flt(self.doc.total_advance, self.precision.main.total_advance) - self.doc.outstanding_amount = flt(self.doc.grand_total - self.doc.total_advance, + self.doc.total_amount_to_pay = flt(self.doc.grand_total - flt(self.doc.write_off_amount, + self.precision.main.write_off_amount), self.precision.main.total_amount_to_pay) + self.doc.outstanding_amount = flt(self.doc.total_amount_to_pay - self.doc.total_advance, self.precision.main.outstanding_amount) def _cleanup(self): From 03fead184e55a62ca9ae0e224da8b2ca9ad0a067 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 27 Feb 2013 15:44:12 +0530 Subject: [PATCH 048/982] added time log --- home/page/latest_updates/latest_updates.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/home/page/latest_updates/latest_updates.js b/home/page/latest_updates/latest_updates.js index 79bd8aa073..a2ea8ca487 100644 --- a/home/page/latest_updates/latest_updates.js +++ b/home/page/latest_updates/latest_updates.js @@ -1,8 +1,14 @@ erpnext.updates = [ + ["27th February", [ + "Time Log: Created Time Log System, with Calendar View." + ]], ["26th February", [ "Gross Profit: The report has been rewritten and now it is under Accounts module" - ] - ], + ]], + ["25th February", [ + "Employee Leave Balance: New Report", + "Scripted Reports: Ability to create reports via Script", + ]], ["21st February, 2013", [ "Item: Warehouse-wise Re-order Level and Quantity", "Buying: Purchase Request renamed to Material Request" From 4a7248ee0b188f104b251eb7cfbb0ab30ae6de5f Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 27 Feb 2013 18:10:30 +0530 Subject: [PATCH 049/982] commonified some purchase code, added test case for auto inventory accounting for purchase invoice --- .../purchase_invoice/purchase_invoice.py | 139 +++++++++++------- .../purchase_invoice/test_purchase_invoice.py | 85 ++++++++++- controllers/accounts_controller.py | 9 +- controllers/buying_controller.py | 12 +- setup/doctype/company/company.py | 6 + .../purchase_receipt/purchase_receipt.py | 13 +- .../purchase_receipt/test_purchase_receipt.py | 2 - 7 files changed, 186 insertions(+), 80 deletions(-) diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.py b/accounts/doctype/purchase_invoice/purchase_invoice.py index 950cac38ea..4e53d04201 100644 --- a/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -35,7 +35,7 @@ class DocType(BuyingController): self.fname = 'entries' def get_credit_to(self): - acc_head = sql("select name, credit_days from `tabAccount` where (name = %s or (master_name = %s and master_type = 'supplier')) and docstatus != 2", (cstr(self.doc.supplier) + " - " + self.get_company_abbr(),self.doc.supplier)) + acc_head = sql("select name, credit_days from `tabAccount` where (name = %s or (master_name = %s and master_type = 'supplier')) and docstatus != 2", (cstr(self.doc.supplier) + " - " + self.company_abbr,self.doc.supplier)) ret = {} if acc_head and acc_head[0][0]: @@ -54,20 +54,32 @@ class DocType(BuyingController): ret['due_date'] = add_days(cstr(self.doc.posting_date), acc and cint(acc[1]) or 0) return ret - - def get_default_values(self,args): - import json - args = json.loads(args) - ret = {} - if sql("select name from `tabItem` where name = '%s'" % args['item_code']): - if not args['expense_head'] or args['expense_head'] == 'undefined': - expense_head = sql("select name from `tabAccount` where account_name in (select purchase_account from `tabItem` where name = '%s')" % args['item_code']) - ret['expense_head'] = expense_head and expense_head[0][0] or '' - if not args['cost_center'] or args['cost_center'] == 'undefined': - cost_center = sql("select cost_center from `tabItem` where name = '%s'" % args['item_code']) - ret['cost_center'] = cost_center and cost_center[0][0] or '' - return ret - + + def get_default_values(self, args): + if isinstance(args, basestring): + import json + args = json.loads(args) + + out = webnotes._dict() + + item = webnotes.conn.sql("""select name, purchase_account, cost_center, + is_stock_item from `tabItem` where name=%s""", args.get("item_code"), as_dict=1) + + if item and item[0]: + item = item[0] + + if cint(webnotes.defaults.get_global_default("auto_inventory_accounting")) and \ + item.is_stock_item == "Yes": + # unset expense head for stock item and auto inventory accounting + out.expense_head = out.cost_center = None + else: + if not args.get("expense_head"): + out.expense_head = item.purchase_account + if not args.get("cost_center"): + out.cost_center = item.cost_center + + return out + def pull_details(self): if self.doc.purchase_receipt_main: self.validate_duplicate_docname('purchase_receipt') @@ -86,9 +98,7 @@ class DocType(BuyingController): def get_expense_account(self, doctype): for d in getlist(self.doclist, doctype): if d.item_code: - item = webnotes.conn.sql("select purchase_account, cost_center from tabItem where name = '%s'" %(d.item_code), as_dict=1) - d.expense_head = item and item[0]['purchase_account'] or '' - d.cost_center = item and item[0]['cost_center'] or '' + d.fields.update(self.get_default_values(d.fields)) def get_advances(self): super(DocType, self).get_advances(self.doc.credit_to, @@ -110,9 +120,6 @@ class DocType(BuyingController): ret={'add_tax_rate' :rate and flt(rate[0][0]) or 0 } return ret - def get_company_abbr(self): - return sql("select abbr from tabCompany where name=%s", self.doc.company)[0][0] - def validate_duplicate_docname(self,doctype): for d in getlist(self.doclist, 'entries'): if doctype == 'purchase_receipt' and cstr(self.doc.purchase_receipt_main) == cstr(d.purchase_receipt): @@ -186,7 +193,7 @@ class DocType(BuyingController): if self.doc.supplier and self.doc.credit_to: acc_head = sql("select master_name from `tabAccount` where name = %s", self.doc.credit_to) - if (acc_head and cstr(acc_head[0][0]) != cstr(self.doc.supplier)) or (not acc_head and (self.doc.credit_to != cstr(self.doc.supplier) + " - " + self.get_company_abbr())): + if (acc_head and cstr(acc_head[0][0]) != cstr(self.doc.supplier)) or (not acc_head and (self.doc.credit_to != cstr(self.doc.supplier) + " - " + self.company_abbr)): msgprint("Credit To: %s do not match with Supplier: %s for Company: %s.\n If both correctly entered, please select Master Type and Master Name in account master." %(self.doc.credit_to,self.doc.supplier,self.doc.company), raise_exception=1) # Check for Stopped PO @@ -256,11 +263,25 @@ class DocType(BuyingController): raise Exception def set_against_expense_account(self): - against_acc = [] - for d in getlist(self.doclist, 'entries'): - if d.expense_account not in against_acc: - against_acc.append(d.expense_account) - self.doc.against_expense_account = ','.join(against_acc) + auto_inventory_accounting = \ + cint(webnotes.defaults.get_global_default("auto_inventory_accounting")) + stock_not_billed_account = "Stock Received But Not Billed - %s" % self.company_abbr + + against_accounts = [] + for item in self.doclist.get({"parentfield": "entries"}): + if auto_inventory_accounting and item.item_code in self.stock_items: + # in case of auto inventory accounting, against expense account is always + # Stock Received But Not Billed for a stock item + item.expense_head = item.cost_center = None + + if stock_not_billed_account not in against_accounts: + against_accounts.append(stock_not_billed_account) + + elif item.expense_head not in against_accounts: + # if no auto_inventory_accounting or not a stock item + against_accounts.append(item.expense_head) + + self.doc.against_expense_account = ",".join(against_accounts) def po_required(self): res = sql("select value from `tabSingles` where doctype = 'Global Defaults' and field = 'po_required'") @@ -320,6 +341,8 @@ class DocType(BuyingController): self.doc.posting_date,'Posting Date') self.validate_write_off_account() + + self.update_valuation_rate("entries") def check_prev_docstatus(self): for d in getlist(self.doclist,'entries'): @@ -382,11 +405,10 @@ class DocType(BuyingController): def make_gl_entries(self, is_cancel = 0): from accounts.general_ledger import make_gl_entries + auto_inventory_accounting = \ + cint(webnotes.defaults.get_global_default("auto_inventory_accounting")) + gl_entries = [] - valuation_tax = 0 - auto_inventory_accounting = webnotes.conn.get_value("Global Defaults", None, - "auto_inventory_accounting") - abbr = self.get_company_abbr() # parent's gl entry if self.doc.grand_total: @@ -402,11 +424,9 @@ class DocType(BuyingController): ) # tax table gl entries - for tax in getlist(self.doclist, "purchase_tax_details"): + valuation_tax = 0 + for tax in self.doclist.get({"parentfield": "purchase_tax_details"}): if tax.category in ("Total", "Valuation and Total") and flt(tax.tax_amount): - valuation_tax += tax.add_deduct_tax == "Add" \ - and flt(tax.tax_amount) or -1 * flt(tax.tax_amount) - gl_entries.append( self.get_gl_dict({ "account": tax.account_head, @@ -417,25 +437,31 @@ class DocType(BuyingController): "cost_center": tax.cost_center }, is_cancel) ) + + # accumulate valuation tax + if tax.category in ("Valuation", "Valuation and Total") and flt(tax.tax_amount): + valuation_tax += (tax.add_deduct_tax == "Add" and 1 or -1) * flt(tax.tax_amount) # item gl entries - stock_item_and_auto_accounting = False + stock_item_and_auto_inventory_accounting = False for item in self.doclist.get({"parentfield": "entries"}): - if auto_inventory_accounting and flt(item.valuation_rate) and \ - webnotes.conn.get_value("Item", item.item_code, "is_stock_item")=="Yes": - # if auto inventory accounting enabled and stock item, - # then do stock related gl entries, expense will be booked in sales invoice - gl_entries.append( - self.get_gl_dict({ - "account": "Stock Received But Not Billed - %s" % (abbr,), - "against": self.doc.credit_to, - "debit": flt(item.valuation_rate) * flt(item.conversion_factor) \ - * item.qty, - "remarks": self.doc.remarks or "Accounting Entry for Stock" - }, is_cancel) - ) - - stock_item_and_auto_accounting = True + if auto_inventory_accounting and item.item_code in self.stock_items: + if flt(item.valuation_rate): + # if auto inventory accounting enabled and stock item, + # then do stock related gl entries + # expense will be booked in sales invoice + + stock_item_and_auto_inventory_accounting = True + + gl_entries.append( + self.get_gl_dict({ + "account": "Stock Received But Not Billed - %s" % (self.company_abbr,), + "against": self.doc.credit_to, + "debit": flt(item.valuation_rate) * flt(item.conversion_factor) \ + * flt(item.qty), + "remarks": self.doc.remarks or "Accounting Entry for Stock" + }, is_cancel) + ) elif flt(item.amount): # if not a stock item or auto inventory accounting disabled, book the expense @@ -449,13 +475,13 @@ class DocType(BuyingController): }, is_cancel) ) - if stock_item_and_auto_accounting and valuation_tax: + if stock_item_and_auto_inventory_accounting and valuation_tax: # credit valuation tax amount in "Expenses Included In Valuation" # this will balance out valuation amount included in cost of goods sold gl_entries.append( self.get_gl_dict({ - "account": "Expenses Included In Valuation - %s" % (abbr,), - "cost_center": "ERP - %s" % abbr, # to-do + "account": "Expenses Included In Valuation - %s" % (self.company_abbr,), + "cost_center": "Auto Inventory Accounting - %s" % self.company_abbr, "against": self.doc.credit_to, "credit": valuation_tax, "remarks": self.doc.remarks or "Accounting Entry for Stock" @@ -464,12 +490,12 @@ class DocType(BuyingController): # writeoff account includes petty difference in the invoice amount # and the amount that is paid - if self.doc.write_off_account and self.doc.write_off_amount: + if self.doc.write_off_account and flt(self.doc.write_off_amount): gl_entries.append( self.get_gl_dict({ "account": self.doc.write_off_account, "against": self.doc.credit_to, - "credit": self.doc.write_off_amount, + "credit": flt(self.doc.write_off_amount), "remarks": self.doc.remarks, "cost_center": self.doc.write_off_cost_center }, is_cancel) @@ -478,7 +504,6 @@ class DocType(BuyingController): if gl_entries: make_gl_entries(gl_entries, cancel=is_cancel) - def check_next_docstatus(self): submit_jv = sql("select t1.name from `tabJournal Voucher` t1,`tabJournal Voucher Detail` t2 where t1.name = t2.parent and t2.against_voucher = '%s' and t1.docstatus = 1" % (self.doc.name)) if submit_jv: diff --git a/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/accounts/doctype/purchase_invoice/test_purchase_invoice.py index 0944b81e35..c1c0540824 100644 --- a/accounts/doctype/purchase_invoice/test_purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/test_purchase_invoice.py @@ -20,11 +20,16 @@ import unittest import webnotes import webnotes.model import json +from webnotes.utils import cint +import webnotes.defaults test_dependencies = ["Item", "Cost Center"] class TestPurchaseInvoice(unittest.TestCase): def test_gl_entries_without_auto_inventory_accounting(self): + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + self.assertTrue(not cint(webnotes.defaults.get_global_default("auto_inventory_accounting"))) + wrapper = webnotes.bean(copy=test_records[0]) wrapper.run_method("calculate_taxes_and_totals") wrapper.insert() @@ -49,7 +54,36 @@ class TestPurchaseInvoice(unittest.TestCase): self.assertEqual([d.debit, d.credit], expected_gl_entries.get(d.account)) def test_gl_entries_with_auto_inventory_accounting(self): + print "Testing with auto inventory" + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + self.assertEqual(cint(webnotes.defaults.get_global_default("auto_inventory_accounting")), 1) + pi = webnotes.bean(copy=test_records[1]) + pi.run_method("calculate_taxes_and_totals") + pi.insert() + pi.submit() + + print "auto inventory submitted" + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Purchase Receipt' and voucher_no=%s + order by account desc""", pi.doc.name, as_dict=1) + self.assertTrue(gl_entries) + + expected_values = [ + ["_Test Supplier - _TC", 0, 720], + ["Stock Received But Not Billed - _TC", 750.0, 0], + ["_Test Account Shipping Charges - _TC", 100.0, 0], + ["_Test Account VAT - _TC", 120.0, 0], + ["Expenses Included In Valuation - _TC", 0, 250.0] + ].sort() + + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_values[i][0], gle.account) + self.assertEquals(expected_values[i][1], gle.debit) + self.assertEquals(expected_values[i][2], gle.credit) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) def test_purchase_invoice_calculation(self): wrapper = webnotes.bean(copy=test_records[0]) @@ -115,7 +149,8 @@ test_records = [ "uom": "_Test UOM", "item_tax_rate": json.dumps({"_Test Account Excise Duty - _TC": 10}), "expense_head": "_Test Account Cost for Goods Sold - _TC", - "cost_center": "_Test Cost Center - _TC" + "cost_center": "_Test Cost Center - _TC", + "conversion_factor": 1.0, }, { @@ -130,7 +165,8 @@ test_records = [ "amount": 750, "uom": "_Test UOM", "expense_head": "_Test Account Cost for Goods Sold - _TC", - "cost_center": "_Test Cost Center - _TC" + "cost_center": "_Test Cost Center - _TC", + "conversion_factor": 1.0, }, # taxes { @@ -237,7 +273,8 @@ test_records = [ "fiscal_year": "_Test Fiscal Year 2013", "company": "_Test Company", "currency": "INR", - "conversion_rate": 1, + "conversion_rate": 1.0, + "grand_total_import": 0 # for feed }, # items { @@ -245,12 +282,46 @@ test_records = [ "parentfield": "entries", "item_code": "_Test Item", "item_name": "_Test Item", - "qty": 10, - "import_rate": 50, + "qty": 10.0, + "import_rate": 50.0, "uom": "_Test UOM", "expense_head": "_Test Account Cost for Goods Sold - _TC", - "cost_center": "_Test Cost Center - _TC" - + "cost_center": "_Test Cost Center - _TC", + "conversion_factor": 1.0, + }, + # taxes + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "Actual", + "account_head": "_Test Account Shipping Charges - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "Shipping Charges", + "category": "Valuation and Total", + "add_deduct_tax": "Add", + "rate": 100.0 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "Actual", + "account_head": "_Test Account VAT - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "VAT", + "category": "Total", + "add_deduct_tax": "Add", + "rate": 120.0 + }, + { + "doctype": "Purchase Taxes and Charges", + "parentfield": "purchase_tax_details", + "charge_type": "Actual", + "account_head": "_Test Account Customs Duty - _TC", + "cost_center": "_Test Cost Center - _TC", + "description": "Customs Duty", + "category": "Valuation", + "add_deduct_tax": "Add", + "rate": 150.0 }, ] ] \ No newline at end of file diff --git a/controllers/accounts_controller.py b/controllers/accounts_controller.py index 47a0138fa8..aa52b5e412 100644 --- a/controllers/accounts_controller.py +++ b/controllers/accounts_controller.py @@ -86,4 +86,11 @@ class AccountsController(TransactionBase): from `tabItem` where name in (%s) and is_stock_item='Yes'""" % \ (", ".join((["%s"]*len(item_codes))),), item_codes)] - return self._stock_items \ No newline at end of file + return self._stock_items + + @property + def company_abbr(self): + if not hasattr(self, "_abbr"): + self._abbr = webnotes.conn.get_value("Company", self.doc.company, "abbr") + + return self._abbr \ No newline at end of file diff --git a/controllers/buying_controller.py b/controllers/buying_controller.py index 2514bfc956..8a230e1bb8 100644 --- a/controllers/buying_controller.py +++ b/controllers/buying_controller.py @@ -232,7 +232,7 @@ class BuyingController(AccountsController): else: self.doc.grand_total = flt(self.doc.net_total, self.precision.main.grand_total) - self.doc.grand_total_print = flt( + self.doc.grand_total_import = flt( self.doc.grand_total / self.doc.conversion_rate, self.precision.main.grand_total_import) @@ -327,6 +327,16 @@ class BuyingController(AccountsController): item.item_code in self.stock_items: item.item_tax_amount += flt(current_tax_amount, self.precision.item.item_tax_amount) + + # update valuation rate + def update_valuation_rate(self, parentfield): + for d in self.doclist.get({"parentfield": parentfield}): + if d.qty: + d.valuation_rate = (flt(d.purchase_rate or d.rate) + + (flt(d.item_tax_amount) + flt(d.rm_supp_cost)) / flt(d.qty) + ) / flt(d.conversion_factor) + else: + d.valuation_rate = 0.0 @property def precision(self): diff --git a/setup/doctype/company/company.py b/setup/doctype/company/company.py index 552dae2a9a..9cf722fca4 100644 --- a/setup/doctype/company/company.py +++ b/setup/doctype/company/company.py @@ -211,6 +211,12 @@ class DocType: 'company_name':self.doc.name, 'group_or_ledger':'Ledger', 'parent_cost_center':'Root - ' + self.doc.abbr + }, + { + 'cost_center_name': 'Auto Inventory Accounting', + 'company_name': self.doc.name, + 'group_or_ledger': 'Ledger', + 'parent_cost_center': 'Root - ' + self.doc.abbr } ] for cc in cc_list: diff --git a/stock/doctype/purchase_receipt/purchase_receipt.py b/stock/doctype/purchase_receipt/purchase_receipt.py index a957468032..f3f453e685 100644 --- a/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/stock/doctype/purchase_receipt/purchase_receipt.py @@ -89,16 +89,6 @@ class DocType(BuyingController): webnotes.msgprint("Another Purchase Receipt using the same Challan No. already exists.\ Please enter a valid Challan No.", raise_exception=1) - - # update valuation rate - def update_valuation_rate(self): - for d in self.doclist.get({"parentfield": "purchase_receipt_details"}): - if d.qty: - d.valuation_rate = (flt(d.purchase_rate) + flt(d.item_tax_amount)/flt(d.qty) - + flt(d.rm_supp_cost) / flt(d.qty)) / flt(d.conversion_factor) - else: - d.valuation_rate = 0.0 - #check in manage account if purchase order required or not. # ==================================================================================== def po_required(self): @@ -134,8 +124,7 @@ class DocType(BuyingController): pc_obj.validate_reference_value(self) self.check_for_stopped_status(pc_obj) - # update valuation rate - self.update_valuation_rate() + self.update_valuation_rate("purchase_receipt_details") # On Update diff --git a/stock/doctype/purchase_receipt/test_purchase_receipt.py b/stock/doctype/purchase_receipt/test_purchase_receipt.py index d833d65b2b..f99fe7fb78 100644 --- a/stock/doctype/purchase_receipt/test_purchase_receipt.py +++ b/stock/doctype/purchase_receipt/test_purchase_receipt.py @@ -36,7 +36,6 @@ class TestPurchaseReceipt(unittest.TestCase): def test_purchase_receipt_gl_entry(self): webnotes.defaults.set_global_default("auto_inventory_accounting", 1) - self.assertEqual(cint(webnotes.defaults.get_global_default("auto_inventory_accounting")), 1) pr = webnotes.bean(copy=test_records[0]) @@ -47,7 +46,6 @@ class TestPurchaseReceipt(unittest.TestCase): gl_entries = webnotes.conn.sql("""select account, debit, credit from `tabGL Entry` where voucher_type='Purchase Receipt' and voucher_no=%s order by account desc""", pr.doc.name, as_dict=1) - self.assertTrue(gl_entries) stock_in_hand_account = webnotes.conn.get_value("Company", pr.doc.company, From 5418d71fc0b281f3246d1e790b38ff08c60b1248 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 27 Feb 2013 18:11:17 +0530 Subject: [PATCH 050/982] sub-contracting rewrite with testcases --- .../purchase_invoice/purchase_invoice.py | 14 + .../purchase_invoice_item.txt | 33 +- controllers/buying_controller.py | 24 +- manufacturing/doctype/bom/test_bom.py | 282 ++++++++++-------- stock/doctype/item/test_item.py | 77 ++--- .../purchase_receipt/purchase_receipt.py | 169 ++++------- .../purchase_receipt/test_purchase_receipt.py | 43 +++ 7 files changed, 344 insertions(+), 298 deletions(-) diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.py b/accounts/doctype/purchase_invoice/purchase_invoice.py index 96cfc006be..01359d3ecf 100644 --- a/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -320,6 +320,7 @@ class DocType(BuyingController): self.doc.posting_date,'Posting Date') self.validate_write_off_account() + self.update_raw_material_cost() def check_prev_docstatus(self): for d in getlist(self.doclist,'entries'): @@ -494,3 +495,16 @@ class DocType(BuyingController): def on_update(self): pass + def update_raw_material_cost(self): + if self.sub_contracted_items: + for d in self.doclist.get({"parentfield": "entries"}): + rm_cost = webnotes.conn.sql(""" select raw_material_cost / quantity + from `tabBOM` where item = %s and is_default = 1 and docstatus = 1 + and is_active = 1 """, (d.item_code,)) + rm_cost = rm_cost and flt(rm_cost[0][0]) or 0 + + d.conversion_factor = d.conversion_factor or webnotes.conn.get_value( + "UOM Conversion Detail", {"parent": d.item_code, "uom": d.uom}, + "conversion_factor") or 1 + + d.rm_supp_cost = rm_cost * flt(d.qty) * flt(d.conversion_factor) \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_item/purchase_invoice_item.txt b/accounts/doctype/purchase_invoice_item/purchase_invoice_item.txt index ecd981de69..553041e780 100755 --- a/accounts/doctype/purchase_invoice_item/purchase_invoice_item.txt +++ b/accounts/doctype/purchase_invoice_item/purchase_invoice_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-29 20:53:00", + "creation": "2013-02-11 10:54:51", "docstatus": 0, - "modified": "2013-02-08 14:06:17", + "modified": "2013-02-27 18:10:04", "modified_by": "Administrator", "owner": "Administrator" }, @@ -282,6 +282,35 @@ "search_index": 0, "width": "150px" }, + { + "doctype": "DocField", + "fieldname": "valuation_rate", + "fieldtype": "Currency", + "hidden": 1, + "label": "Valuation Rate", + "no_copy": 1, + "options": "Company:company:default_currency", + "print_hide": 1, + "read_only": 1 + }, + { + "doctype": "DocField", + "fieldname": "conversion_factor", + "fieldtype": "Float", + "label": "Conversion Factor", + "print_hide": 1 + }, + { + "doctype": "DocField", + "fieldname": "rm_supp_cost", + "fieldtype": "Currency", + "hidden": 1, + "label": "Raw Materials Supplied Cost", + "no_copy": 1, + "options": "Company:company:default_currency", + "print_hide": 1, + "read_only": 1 + }, { "allow_on_submit": 1, "doctype": "DocField", diff --git a/controllers/buying_controller.py b/controllers/buying_controller.py index bbcd4926c3..2b76ad1e9e 100644 --- a/controllers/buying_controller.py +++ b/controllers/buying_controller.py @@ -232,7 +232,7 @@ class BuyingController(AccountsController): else: self.doc.grand_total = flt(self.doc.net_total, self.precision.main.grand_total) - self.doc.grand_total_print = flt( + self.doc.grand_total_import = flt( self.doc.grand_total / self.doc.conversion_rate, self.precision.main.grand_total_import) @@ -336,3 +336,25 @@ class BuyingController(AccountsController): self._precision.tax = self.meta.get_precision_map(parentfield = \ "purchase_tax_details") return self._precision + + @property + def sub_contracted_items(self): + if not hasattr(self, "_sub_contracted_items"): + item_codes = list(set(item.item_code for item in + self.doclist.get({"parentfield": self.fname}))) + self._sub_contracted_items = [r[0] for r in webnotes.conn.sql("""select name + from `tabItem` where name in (%s) and is_sub_contracted_item='Yes'""" % \ + (", ".join((["%s"]*len(item_codes))),), item_codes)] + + return self._sub_contracted_items + + @property + def purchase_items(self): + if not hasattr(self, "_purchase_items"): + item_codes = list(set(item.item_code for item in + self.doclist.get({"parentfield": self.fname}))) + self._purchase_items = [r[0] for r in webnotes.conn.sql("""select name + from `tabItem` where name in (%s) and is_purchase_item='Yes'""" % \ + (", ".join((["%s"]*len(item_codes))),), item_codes)] + + return self._purchase_items \ No newline at end of file diff --git a/manufacturing/doctype/bom/test_bom.py b/manufacturing/doctype/bom/test_bom.py index 68d9ce85f4..e742c0c8ac 100644 --- a/manufacturing/doctype/bom/test_bom.py +++ b/manufacturing/doctype/bom/test_bom.py @@ -18,130 +18,164 @@ from __future__ import unicode_literals import unittest import webnotes -import webnotes.model -from webnotes.utils import nowdate, flt -from accounts.utils import get_fiscal_year -from webnotes.model.doclist import DocList -import copy -company = webnotes.conn.get_default("company") - - -def load_data(): - - # create default warehouse - if not webnotes.conn.exists("Warehouse", "Default Warehouse"): - webnotes.insert({"doctype": "Warehouse", - "warehouse_name": "Default Warehouse", - "warehouse_type": "Stores"}) - - # create UOM: Nos. - if not webnotes.conn.exists("UOM", "Nos"): - webnotes.insert({"doctype": "UOM", "uom_name": "Nos"}) - - from webnotes.tests import insert_test_data - # create item groups and items - insert_test_data("Item Group", - sort_fn=lambda ig: (ig[0].get('parent_item_group'), ig[0].get('name'))) - insert_test_data("Item") - -base_bom_fg = [ - {"doctype": "BOM", "item": "Android Jack D", "quantity": 1, - "is_active": "Yes", "is_default": 1, "uom": "Nos"}, - {"doctype": "BOM Operation", "operation_no": 1, "parentfield": "bom_operations", - "opn_description": "Development", "hour_rate": 10, "time_in_mins": 90}, - {"doctype": "BOM Item", "item_code": "Home Desktop 300", "operation_no": 1, - "qty": 2, "rate": 20, "stock_uom": "Nos", "parentfield": "bom_materials"}, - {"doctype": "BOM Item", "item_code": "Home Desktop 100", "operation_no": 1, - "qty": 1, "rate": 300, "stock_uom": "Nos", "parentfield": "bom_materials"}, - {"doctype": "BOM Item", "item_code": "Nebula 7", "operation_no": 1, - "qty": 5, "stock_uom": "Nos", "parentfield": "bom_materials"}, -] - -base_bom_child = [ - {"doctype": "BOM", "item": "Nebula 7", "quantity": 5, - "is_active": "Yes", "is_default": 1, "uom": "Nos"}, - {"doctype": "BOM Operation", "operation_no": 1, "parentfield": "bom_operations", - "opn_description": "Development"}, - {"doctype": "BOM Item", "item_code": "Android Jack S", "operation_no": 1, - "qty": 10, "stock_uom": "Nos", "parentfield": "bom_materials"} -] - -base_bom_grandchild = [ - {"doctype": "BOM", "item": "Android Jack S", "quantity": 1, - "is_active": "Yes", "is_default": 1, "uom": "Nos"}, - {"doctype": "BOM Operation", "operation_no": 1, "parentfield": "bom_operations", - "opn_description": "Development"}, - {"doctype": "BOM Item", "item_code": "Home Desktop 300", "operation_no": 1, - "qty": 3, "rate": 10, "stock_uom": "Nos", "parentfield": "bom_materials"} -] - - -class TestPurchaseReceipt(unittest.TestCase): - def setUp(self): - webnotes.conn.begin() - load_data() - - def test_bom_validation(self): - # show throw error bacause bom no missing for sub-assembly item - bom_fg = copy.deepcopy(base_bom_fg) - self.assertRaises(webnotes.ValidationError, webnotes.insert, DocList(bom_fg)) - - # main item is not a manufacturing item - bom_fg = copy.deepcopy(base_bom_fg) - bom_fg[0]["item"] = "Home Desktop 200" - bom_fg.pop(4) - self.assertRaises(webnotes.ValidationError, webnotes.insert, DocList(bom_fg)) - - # operation no mentioed in material table not matching with operation table - bom_fg = copy.deepcopy(base_bom_fg) - bom_fg.pop(4) - bom_fg[2]["operation_no"] = 2 - self.assertRaises(webnotes.ValidationError, webnotes.insert, DocList(bom_fg)) - - - def test_bom(self): - gc_wrapper = webnotes.insert(DocList(base_bom_grandchild)) - gc_wrapper.submit() - - bom_child = copy.deepcopy(base_bom_child) - bom_child[2]["bom_no"] = gc_wrapper.doc.name - child_wrapper = webnotes.insert(DocList(bom_child)) - child_wrapper.submit() - - bom_fg = copy.deepcopy(base_bom_fg) - bom_fg[4]["bom_no"] = child_wrapper.doc.name - fg_wrapper = webnotes.insert(DocList(bom_fg)) - fg_wrapper.load_from_db() - - self.check_bom_cost(fg_wrapper) - - self.check_flat_bom(fg_wrapper, child_wrapper, gc_wrapper) - - def check_bom_cost(self, fg_wrapper): - expected_values = { - "operating_cost": 15, - "raw_material_cost": 640, - "total_cost": 655 +test_records = [ + [ + { + "doctype": "BOM", + "item": "_Test FG Item", + "quantity": 1.0, + "is_active": 1, + "is_default": 1, + "docstatus": 1 + }, + { + "doctype": "BOM Item", + "item_code": "_Test Item", + "parentfield": "bom_materials", + "qty": 1.0, + "rate": 5000.0, + "amount": 5000.0, + "stock_uom": "No." + }, + { + "doctype": "BOM Item", + "item_code": "_Test Item Home Desktop 100", + "parentfield": "bom_materials", + "qty": 2.0, + "rate": 1000.0, + "amount": 2000.0, + "stock_uom": "No." } + ] +] - for key in expected_values: - self.assertEqual(flt(expected_values[key]), flt(fg_wrapper.doc.fields.get(key))) - - def check_flat_bom(self, fg_wrapper, child_wrapper, gc_wrapper): - expected_flat_bom_items = { - ("Home Desktop 300", fg_wrapper.doc.name): (2, 20), - ("Home Desktop 100", fg_wrapper.doc.name): (1, 300), - ("Home Desktop 300", gc_wrapper.doc.name): (30, 10) - } - - self.assertEqual(len(fg_wrapper.doclist.get({"parentfield": "flat_bom_details"})), 3) - - for key, val in expected_flat_bom_items.items(): - flat_bom = fg_wrapper.doclist.get({"parentfield": "flat_bom_details", - "item_code": key[0], "parent_bom": key[1]})[0] - self.assertEqual(val, (flat_bom.qty, flat_bom.rate)) - - - def tearDown(self): - webnotes.conn.rollback() \ No newline at end of file + + +# import webnotes.model +# from webnotes.utils import nowdate, flt +# from accounts.utils import get_fiscal_year +# from webnotes.model.doclist import DocList +# import copy +# +# company = webnotes.conn.get_default("company") +# +# +# def load_data(): +# +# # create default warehouse +# if not webnotes.conn.exists("Warehouse", "Default Warehouse"): +# webnotes.insert({"doctype": "Warehouse", +# "warehouse_name": "Default Warehouse", +# "warehouse_type": "Stores"}) +# +# # create UOM: Nos. +# if not webnotes.conn.exists("UOM", "Nos"): +# webnotes.insert({"doctype": "UOM", "uom_name": "Nos"}) +# +# from webnotes.tests import insert_test_data +# # create item groups and items +# insert_test_data("Item Group", +# sort_fn=lambda ig: (ig[0].get('parent_item_group'), ig[0].get('name'))) +# insert_test_data("Item") +# +# base_bom_fg = [ +# {"doctype": "BOM", "item": "Android Jack D", "quantity": 1, +# "is_active": "Yes", "is_default": 1, "uom": "Nos"}, +# {"doctype": "BOM Operation", "operation_no": 1, "parentfield": "bom_operations", +# "opn_description": "Development", "hour_rate": 10, "time_in_mins": 90}, +# {"doctype": "BOM Item", "item_code": "Home Desktop 300", "operation_no": 1, +# "qty": 2, "rate": 20, "stock_uom": "Nos", "parentfield": "bom_materials"}, +# {"doctype": "BOM Item", "item_code": "Home Desktop 100", "operation_no": 1, +# "qty": 1, "rate": 300, "stock_uom": "Nos", "parentfield": "bom_materials"}, +# {"doctype": "BOM Item", "item_code": "Nebula 7", "operation_no": 1, +# "qty": 5, "stock_uom": "Nos", "parentfield": "bom_materials"}, +# ] +# +# base_bom_child = [ +# {"doctype": "BOM", "item": "Nebula 7", "quantity": 5, +# "is_active": "Yes", "is_default": 1, "uom": "Nos"}, +# {"doctype": "BOM Operation", "operation_no": 1, "parentfield": "bom_operations", +# "opn_description": "Development"}, +# {"doctype": "BOM Item", "item_code": "Android Jack S", "operation_no": 1, +# "qty": 10, "stock_uom": "Nos", "parentfield": "bom_materials"} +# ] +# +# base_bom_grandchild = [ +# {"doctype": "BOM", "item": "Android Jack S", "quantity": 1, +# "is_active": "Yes", "is_default": 1, "uom": "Nos"}, +# {"doctype": "BOM Operation", "operation_no": 1, "parentfield": "bom_operations", +# "opn_description": "Development"}, +# {"doctype": "BOM Item", "item_code": "Home Desktop 300", "operation_no": 1, +# "qty": 3, "rate": 10, "stock_uom": "Nos", "parentfield": "bom_materials"} +# ] +# +# +# class TestPurchaseReceipt(unittest.TestCase): +# def setUp(self): +# webnotes.conn.begin() +# load_data() +# +# def test_bom_validation(self): +# # show throw error bacause bom no missing for sub-assembly item +# bom_fg = copy.deepcopy(base_bom_fg) +# self.assertRaises(webnotes.ValidationError, webnotes.insert, DocList(bom_fg)) +# +# # main item is not a manufacturing item +# bom_fg = copy.deepcopy(base_bom_fg) +# bom_fg[0]["item"] = "Home Desktop 200" +# bom_fg.pop(4) +# self.assertRaises(webnotes.ValidationError, webnotes.insert, DocList(bom_fg)) +# +# # operation no mentioed in material table not matching with operation table +# bom_fg = copy.deepcopy(base_bom_fg) +# bom_fg.pop(4) +# bom_fg[2]["operation_no"] = 2 +# self.assertRaises(webnotes.ValidationError, webnotes.insert, DocList(bom_fg)) +# +# +# def test_bom(self): +# gc_wrapper = webnotes.insert(DocList(base_bom_grandchild)) +# gc_wrapper.submit() +# +# bom_child = copy.deepcopy(base_bom_child) +# bom_child[2]["bom_no"] = gc_wrapper.doc.name +# child_wrapper = webnotes.insert(DocList(bom_child)) +# child_wrapper.submit() +# +# bom_fg = copy.deepcopy(base_bom_fg) +# bom_fg[4]["bom_no"] = child_wrapper.doc.name +# fg_wrapper = webnotes.insert(DocList(bom_fg)) +# fg_wrapper.load_from_db() +# +# self.check_bom_cost(fg_wrapper) +# +# self.check_flat_bom(fg_wrapper, child_wrapper, gc_wrapper) +# +# def check_bom_cost(self, fg_wrapper): +# expected_values = { +# "operating_cost": 15, +# "raw_material_cost": 640, +# "total_cost": 655 +# } +# +# for key in expected_values: +# self.assertEqual(flt(expected_values[key]), flt(fg_wrapper.doc.fields.get(key))) +# +# def check_flat_bom(self, fg_wrapper, child_wrapper, gc_wrapper): +# expected_flat_bom_items = { +# ("Home Desktop 300", fg_wrapper.doc.name): (2, 20), +# ("Home Desktop 100", fg_wrapper.doc.name): (1, 300), +# ("Home Desktop 300", gc_wrapper.doc.name): (30, 10) +# } +# +# self.assertEqual(len(fg_wrapper.doclist.get({"parentfield": "flat_bom_details"})), 3) +# +# for key, val in expected_flat_bom_items.items(): +# flat_bom = fg_wrapper.doclist.get({"parentfield": "flat_bom_details", +# "item_code": key[0], "parent_bom": key[1]})[0] +# self.assertEqual(val, (flat_bom.qty, flat_bom.rate)) +# +# +# def tearDown(self): +# webnotes.conn.rollback() \ No newline at end of file diff --git a/stock/doctype/item/test_item.py b/stock/doctype/item/test_item.py index 853283e4c6..035774b50b 100644 --- a/stock/doctype/item/test_item.py +++ b/stock/doctype/item/test_item.py @@ -17,64 +17,8 @@ from __future__ import unicode_literals import unittest import webnotes -import copy - -from webnotes.model.bean import Bean -from webnotes.model.doc import Document -from webnotes.utils import flt - -sql = webnotes.conn.sql - - -class TestItem(unittest.TestCase): - def setUp(self): - webnotes.conn.begin() - - def tearDown(self): - webnotes.conn.rollback() - - def testInsert(self): - d = Bean() - - count_before = flt(sql("select count(*) from tab"+_doctype)[0][0]) - if docok: - for i in docok: - d.doc = i - d.children = None - d.doc.fields['__islocal']=1 - d.save(1) - count_after = flt(sql("select count(*) from tab"+_doctype)[0][0]) - self.assertTrue(count_before+len(docok)==count_after) - - def testFailAssert(self): - if docnotok: - with self.assertRaises(Exception) as context: - d = Bean() - d.doc = docnotok[0] - d.children = None - d.doc.fields['__islocal']=1 - d.save(1) - -# Test Data - -tabOK = [ - {'is_purchase_item': None, 'is_pro_applicable': 'No', 'is_manufactured_item': None, 'description': 'Gel Ink', 'default_warehouse': None, 'item_name': 'Gel Ink', 'item_group': 'Ink', 'item_code': 'GELINK', 'is_sub_contracted_item': None, 'is_stock_item': 'Yes', 'stock_uom': 'Nos', 'docstatus': '0'}, - {'is_purchase_item': None, 'is_pro_applicable': 'No', 'is_manufactured_item': None, 'description': 'Gel Refill', 'default_warehouse': None, 'item_name': 'Gel Refill', 'item_group': 'Refill', 'item_code': 'GELREF', 'is_sub_contracted_item': None, 'is_stock_item': 'Yes', 'stock_uom': 'Nos', 'docstatus': '0'}, - {'is_purchase_item': None, 'is_pro_applicable': 'No', 'is_manufactured_item': None, 'description': 'Gel Pen', 'default_warehouse': None, 'item_name': 'Gel Pen', 'item_group': 'Pen', 'item_code': 'GELPEN', 'is_sub_contracted_item': None, 'is_stock_item': 'Yes', 'stock_uom': 'Nos', 'docstatus': '0'} - ] - -tabNotOK = [ - {'is_purchase_item': None, 'is_pro_applicable': None, 'is_manufactured_item': None, 'description': 'F Ink', 'default_warehouse': None, 'item_name': 'F Ink', 'item_group': 'F Ink', 'item_code': None, 'is_sub_contracted_item': None, 'is_stock_item': 'No', 'stock_uom': 'Nos', 'docstatus': '0'} - ] - -_doctype = 'Item' - -for i in tabOK: i['doctype']=_doctype -for i in tabNotOK: i['doctype']=_doctype - -docok = [Document(fielddata=r) for r in tabOK] -docnotok = [Document(fielddata=r) for r in tabNotOK] +test_ignore = ["BOM"] test_records = [ [{ @@ -164,4 +108,23 @@ test_records = [ "is_sub_contracted_item": "No", "stock_uom": "_Test UOM" }], + [{ + "doctype": "Item", + "item_code": "_Test FG Item", + "item_name": "_Test FG Item", + "description": "_Test FG Item", + "item_group": "_Test Item Group Desktops", + "is_stock_item": "Yes", + "is_asset_item": "No", + "has_batch_no": "No", + "has_serial_no": "No", + "is_purchase_item": "Yes", + "is_sales_item": "Yes", + "is_service_item": "No", + "is_sample_item": "No", + "inspection_required": "No", + "is_pro_applicable": "Yes", + "is_sub_contracted_item": "Yes", + "stock_uom": "_Test UOM" + }], ] \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/purchase_receipt.py b/stock/doctype/purchase_receipt/purchase_receipt.py index a957468032..ef4fc3079d 100644 --- a/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/stock/doctype/purchase_receipt/purchase_receipt.py @@ -18,10 +18,10 @@ from __future__ import unicode_literals import webnotes from webnotes.utils import cstr, flt, cint -from webnotes.model.doc import addchild from webnotes.model.bean import getlist from webnotes.model.code import get_obj -from webnotes import msgprint +from webnotes.model.doc import Document +from webnotes import msgprint, _ sql = webnotes.conn.sql @@ -89,8 +89,6 @@ class DocType(BuyingController): webnotes.msgprint("Another Purchase Receipt using the same Challan No. already exists.\ Please enter a valid Challan No.", raise_exception=1) - - # update valuation rate def update_valuation_rate(self): for d in self.doclist.get({"parentfield": "purchase_receipt_details"}): if d.qty: @@ -99,8 +97,6 @@ class DocType(BuyingController): else: d.valuation_rate = 0.0 - #check in manage account if purchase order required or not. - # ==================================================================================== def po_required(self): res = sql("select value from `tabSingles` where doctype = 'Global Defaults' and field = 'po_required'") if res and res[0][0]== 'Yes': @@ -109,8 +105,6 @@ class DocType(BuyingController): msgprint("Purchse Order No. required against item %s"%d.item_code) raise Exception - - # validate def validate(self): super(DocType, self).validate() @@ -136,16 +130,15 @@ class DocType(BuyingController): # update valuation rate self.update_valuation_rate() + # sub-contracting + self.validate_for_subcontracting() + self.update_raw_materials_supplied() - - # On Update - # ---------------------------------------------------------------------------------------------------- def on_update(self): if self.doc.rejected_warehouse: for d in getlist(self.doclist,'purchase_receipt_details'): d.rejected_warehouse = self.doc.rejected_warehouse - self.update_rw_material_detail() get_obj('Stock Ledger').scrub_serial_nos(self) self.scrub_rejected_serial_nos() @@ -303,118 +296,66 @@ class DocType(BuyingController): self.make_gl_entries() + def validate_for_subcontracting(self): + if self.sub_contracted_items and self.purchase_items and not self.doc.is_subcontracted: + webnotes.msgprint(_("""Please enter whether Purchase Recipt is made for subcontracting + or purchasing, in 'Is Subcontracted' field"""), raise_exception=1) + + if self.doc.is_subcontracted and not self.doc.supplier_warehouse: + webnotes.msgprint(_("Please Enter Supplier Warehouse for subcontracted Items"), + raise_exception=1) + + def update_raw_materials_supplied(self): + self.doclist = self.doc.clear_table(self.doclist, 'pr_raw_material_details') + if self.sub_contracted_items: + for item in self.doclist.get({"parentfield": "purchase_receipt_details"}): + if item.item_code in self.sub_contracted_items: + self.add_bom_items(item) - def update_rw_material_detail(self): + def add_bom_items(self, d): + bom_items = self.get_items_from_default_bom(d.item_code) + raw_materials_cost = 0 + for item in bom_items: + required_qty = flt(item.qty_consumed_per_unit) * flt(d.qty) * flt(d.conversion_factor) + self.doclist.append({ + "parentfield": "pr_raw_material_details", + "doctype": "Purchase Receipt Item Supplied", + "reference_name": d.name, + "bom_detail_no": item.name, + "main_item_code": d.item_code, + "rm_item_code": item.item_code, + "description": item.description, + "stock_uom": item.stock_uom, + "required_qty": required_qty, + "consumed_qty": required_qty, + "conversion_factor": d.conversion_factor, + "rate": item.rate, + "amount": required_qty * flt(item.rate) + }) + + raw_materials_cost += required_qty * flt(item.rate) + + d.rm_supp_cost = raw_materials_cost - for d in getlist(self.doclist,'purchase_receipt_details'): - item_det = sql("select is_sub_contracted_item, is_purchase_item from `tabItem` where name = '%s'"%(d.item_code)) - - if item_det[0][0] == 'Yes': - if item_det[0][1] == 'Yes': - if not self.doc.is_subcontracted: - msgprint("Please enter whether purchase receipt to be made for subcontracting or for purchase in 'Is Subcontracted' field .") - raise Exception - if self.doc.is_subcontracted == 'Yes': - if not self.doc.supplier_warehouse: - msgprint("Please Enter Supplier Warehouse for subcontracted Items") - raise Exception - self.add_bom(d) - else: - self.doclist = self.doc.clear_table(self.doclist,'pr_raw_material_details',1) - self.doc.save() - elif item_det[0][1] == 'No': - if not self.doc.supplier_warehouse: - msgprint("Please Enter Supplier Warehouse for subcontracted Items") - raise Exception - self.add_bom(d) - - self.delete_irrelevant_raw_material() - #---------------calculate amt in Purchase Receipt Item Supplied------------- - self.calculate_amount(d) - - - def add_bom(self, d): - #----- fetching default bom from Bill of Materials instead of Item Master -- - bom_det = sql("""select t1.item, t2.item_code, t2.qty_consumed_per_unit, - t2.moving_avg_rate, t2.value_as_per_mar, t2.stock_uom, t2.name, t2.description + def get_items_from_default_bom(self, item_code): + # print webnotes.conn.sql("""select name from `tabBOM` where item = '_Test FG Item'""") + bom_items = sql("""select t2.item_code, t2.qty_consumed_per_unit, + t2.rate, t2.stock_uom, t2.name, t2.description from `tabBOM` t1, `tabBOM Item` t2 where t2.parent = t1.name and t1.item = %s and t1.is_default = 1 - and t1.docstatus = 1 and t2.docstatus =1 and t1.is_active = 1""", d.item_code) - if not bom_det: - msgprint("No default BOM exists for item: %s" % d.item_code) - raise Exception - else: - #-------------- add child function-------------------- - chgd_rqd_qty = [] - for i in bom_det: + and t1.docstatus = 1 and t1.is_active = 1""", item_code, as_dict=1) + if not bom_items: + msgprint(_("No default BOM exists for item: ") + item_code, raise_exception=1) + + return bom_items - if i and not sql("select name from `tabPurchase Receipt Item Supplied` where reference_name = '%s' and bom_detail_no = '%s' and parent = '%s' " %(d.name, i[6], self.doc.name)): - - rm_child = addchild(self.doc, 'pr_raw_material_details', 'Purchase Receipt Item Supplied', self.doclist) - - rm_child.reference_name = d.name - rm_child.bom_detail_no = i and i[6] or '' - rm_child.main_item_code = i and i[0] or '' - rm_child.rm_item_code = i and i[1] or '' - rm_child.description = i and i[7] or '' - rm_child.stock_uom = i and i[5] or '' - rm_child.rate = i and flt(i[3]) or flt(i[4]) - rm_child.conversion_factor = d.conversion_factor - rm_child.required_qty = flt(i and flt(i[2]) or 0) * flt(d.qty) * flt(d.conversion_factor) - rm_child.consumed_qty = flt(i and flt(i[2]) or 0) * flt(d.qty) * flt(d.conversion_factor) - rm_child.amount = flt(flt(rm_child.consumed_qty)*flt(rm_child.rate)) - rm_child.save() - chgd_rqd_qty.append(cstr(i[1])) - else: - act_qty = flt(i and flt(i[2]) or 0) * flt(d.qty) * flt(d.conversion_factor) - for pr_rmd in getlist(self.doclist, 'pr_raw_material_details'): - if i and i[6] == pr_rmd.bom_detail_no and (flt(act_qty) != flt(pr_rmd.required_qty) or i[1] != pr_rmd.rm_item_code or i[7] != pr_rmd.description): - chgd_rqd_qty.append(cstr(i[1])) - pr_rmd.main_item_code = i[0] - pr_rmd.rm_item_code = i[1] - pr_rmd.description = i[7] - pr_rmd.stock_uom = i[5] - pr_rmd.required_qty = flt(act_qty) - pr_rmd.consumed_qty = flt(act_qty) - pr_rmd.rate = i and flt(i[3]) or flt(i[4]) - pr_rmd.amount = flt(flt(pr_rmd.consumed_qty)*flt(pr_rmd.rate)) - pr_rmd.save() - if chgd_rqd_qty: - msgprint("Please check consumed quantity for Raw Material Item Code: '%s'in Raw materials Detail Table" % ((len(chgd_rqd_qty) > 1 and ','.join(chgd_rqd_qty[:-1]) +' and ' + cstr(chgd_rqd_qty[-1:][0]) ) or cstr(chgd_rqd_qty[0]))) - - - # Delete irrelevant raw material from PR Raw material details - #-------------------------------------------------------------- - def delete_irrelevant_raw_material(self): - for d in getlist(self.doclist,'pr_raw_material_details'): - if not sql("select name from `tabPurchase Receipt Item` where name = '%s' and parent = '%s' and item_code = '%s'" % (d.reference_name, self.doc.name, d.main_item_code)): - d.parent = 'old_par:'+self.doc.name - d.save() - - def calculate_amount(self, d): - amt = 0 - for i in getlist(self.doclist,'pr_raw_material_details'): - - if(i.reference_name == d.name): - #if i.consumed_qty == 0: - # msgprint("consumed qty cannot be 0. Please Enter consumed qty ") - #raise Exception - i.amount = flt(i.consumed_qty)* flt(i.rate) - amt += i.amount - d.rm_supp_cost = amt - d.save() - - - # --------------- Back Flush function called on submit and on cancel from update stock def bk_flush_supp_wh(self, is_submit): for d in getlist(self.doclist, 'pr_raw_material_details'): - #--------- -ve quantity is passed as raw material qty has to be decreased when PR is submitted and it has to be increased when PR is cancelled + # negative quantity is passed as raw material qty has to be decreased + # when PR is submitted and it has to be increased when PR is cancelled consumed_qty = - flt(d.consumed_qty) self.make_sl_entry(d, self.doc.supplier_warehouse, flt(consumed_qty), 0, is_submit) - - # get current_stock - # ---------------- def get_current_stock(self): for d in getlist(self.doclist, 'pr_raw_material_details'): if self.doc.supplier_warehouse: diff --git a/stock/doctype/purchase_receipt/test_purchase_receipt.py b/stock/doctype/purchase_receipt/test_purchase_receipt.py index d833d65b2b..6c317c40d7 100644 --- a/stock/doctype/purchase_receipt/test_purchase_receipt.py +++ b/stock/doctype/purchase_receipt/test_purchase_receipt.py @@ -64,6 +64,17 @@ class TestPurchaseReceipt(unittest.TestCase): self.assertEquals(expected_values[i][2], gle.credit) webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + + def test_subcontracting(self): + pr = webnotes.bean(copy=test_records[1]) + pr.run_method("calculate_taxes_and_totals") + pr.insert() + + self.assertEquals(pr.doclist[1].rm_supp_cost, 70000.0) + self.assertEquals(len(pr.doclist.get({"parentfield": "pr_raw_material_details"})), 2) + + +test_dependencies = ["BOM"] test_records = [ [ @@ -129,4 +140,36 @@ test_records = [ "tax_amount": 150.0, }, ], + [ + { + "company": "_Test Company", + "conversion_rate": 1.0, + "currency": "INR", + "doctype": "Purchase Receipt", + "fiscal_year": "_Test Fiscal Year 2013", + "posting_date": "2013-02-12", + "posting_time": "15:33:30", + "is_subcontracted": "Yes", + "supplier_warehouse": "_Test Warehouse", + "supplier": "_Test Supplier", + "net_total": 5000.0, + "grand_total": 5000.0, + }, + { + "conversion_factor": 1.0, + "description": "_Test FG Item", + "doctype": "Purchase Receipt Item", + "item_code": "_Test FG Item", + "item_name": "_Test FG Item", + "parentfield": "purchase_receipt_details", + "received_qty": 10.0, + "qty": 10.0, + "rejected_qty": 0.0, + "import_rate": 500.0, + "amount": 5000.0, + "warehouse": "_Test Warehouse", + "stock_uom": "Nos", + "uom": "_Test UOM", + } + ], ] \ No newline at end of file From d4d02885403a35ce50373f7f74d4a9e6b54c2984 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 27 Feb 2013 18:29:13 +0530 Subject: [PATCH 051/982] fixed test case of purchase invoice for auto inventory accounting --- .../doctype/purchase_invoice/test_purchase_invoice.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/accounts/doctype/purchase_invoice/test_purchase_invoice.py index c1c0540824..b9f7ec928b 100644 --- a/accounts/doctype/purchase_invoice/test_purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/test_purchase_invoice.py @@ -54,7 +54,6 @@ class TestPurchaseInvoice(unittest.TestCase): self.assertEqual([d.debit, d.credit], expected_gl_entries.get(d.account)) def test_gl_entries_with_auto_inventory_accounting(self): - print "Testing with auto inventory" webnotes.defaults.set_global_default("auto_inventory_accounting", 1) self.assertEqual(cint(webnotes.defaults.get_global_default("auto_inventory_accounting")), 1) @@ -63,20 +62,18 @@ class TestPurchaseInvoice(unittest.TestCase): pi.insert() pi.submit() - print "auto inventory submitted" - gl_entries = webnotes.conn.sql("""select account, debit, credit - from `tabGL Entry` where voucher_type='Purchase Receipt' and voucher_no=%s - order by account desc""", pi.doc.name, as_dict=1) + from `tabGL Entry` where voucher_type='Purchase Invoice' and voucher_no=%s + order by account asc""", pi.doc.name, as_dict=1) self.assertTrue(gl_entries) - expected_values = [ + expected_values = sorted([ ["_Test Supplier - _TC", 0, 720], ["Stock Received But Not Billed - _TC", 750.0, 0], ["_Test Account Shipping Charges - _TC", 100.0, 0], ["_Test Account VAT - _TC", 120.0, 0], ["Expenses Included In Valuation - _TC", 0, 250.0] - ].sort() + ]) for i, gle in enumerate(gl_entries): self.assertEquals(expected_values[i][0], gle.account) From 89e70d77cae61c62e454a94de498986fa98ce074 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 27 Feb 2013 18:46:21 +0530 Subject: [PATCH 052/982] show leave application of other employees in deparment if user has Employee role, but also show leave applications based on permissions - show unique of both --- .../leave_application/leave_application.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/hr/doctype/leave_application/leave_application.py b/hr/doctype/leave_application/leave_application.py index 81177180f6..313f27f8ec 100755 --- a/hr/doctype/leave_application/leave_application.py +++ b/hr/doctype/leave_application/leave_application.py @@ -236,14 +236,11 @@ def get_events(start, end): match_conditions = build_match_conditions("Leave Application") # show department leaves for employee - show_department_leaves = match_conditions and \ - len(match_conditions.split("or"))==1 and "employee" in match_conditions - - if show_department_leaves: + if "Employee" in webnotes.get_roles(): add_department_leaves(events, start, end, employee, company) - else: - add_leaves(events, start, end, employee, company, match_conditions) - + + add_leaves(events, start, end, employee, company, match_conditions) + add_block_dates(events, start, end, employee, company) add_holidays(events, start, end, employee, company) @@ -273,7 +270,7 @@ def add_leaves(events, start, end, employee, company, match_conditions=None): query += " and " + match_conditions for d in webnotes.conn.sql(query, (start, end, start, end), as_dict=True): - events.append({ + e = { "name": d.name, "doctype": "Leave Application", "from_date": d.from_date, @@ -282,7 +279,9 @@ def add_leaves(events, start, end, employee, company, match_conditions=None): "title": _("Leave by") + " " + cstr(d.employee_name) + \ (d.half_day and _(" (Half Day)") or ""), "docstatus": d.docstatus - }) + } + if e not in events: + events.append(e) def add_block_dates(events, start, end, employee, company): # block days From 46d437e2efd906ca1f7960b5fe96c0289795019e Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 27 Feb 2013 18:55:37 +0530 Subject: [PATCH 053/982] fix in get previous fiscal year for leave allocation --- hr/doctype/leave_allocation/leave_allocation.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hr/doctype/leave_allocation/leave_allocation.py b/hr/doctype/leave_allocation/leave_allocation.py index 870a040a27..d2d940f6c9 100755 --- a/hr/doctype/leave_allocation/leave_allocation.py +++ b/hr/doctype/leave_allocation/leave_allocation.py @@ -103,8 +103,10 @@ class DocType: def get_carry_forwarded_leaves(self): if self.doc.carry_forward: self.allow_carry_forward() - prev_fiscal_year = sql("""select name from `tabFiscal Year` - where name < %s order by name desc limit 1""", self.doc.fiscal_year) + prev_fiscal_year = webnotes.conn.sql("""select name from `tabFiscal Year` + where year_start_date = (select date_add(year_start_date, interval -1 year) + from `tabFiscal Year` where name=%s) + order by name desc limit 1""", self.doc.fiscal_year) prev_fiscal_year = prev_fiscal_year and prev_fiscal_year[0][0] or '' prev_bal = 0 if prev_fiscal_year and cint(self.doc.carry_forward) == 1: From 5c6fc62b9eb6275d2d7539ccab70dddf2114202d Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 27 Feb 2013 19:08:01 +0530 Subject: [PATCH 054/982] added company filter in employee leave balance report --- .../employee_leave_balance/employee_leave_balance.js | 7 +++++++ .../employee_leave_balance/employee_leave_balance.py | 10 ++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/hr/report/employee_leave_balance/employee_leave_balance.js b/hr/report/employee_leave_balance/employee_leave_balance.js index 9f63e04c1a..d19b48f497 100644 --- a/hr/report/employee_leave_balance/employee_leave_balance.js +++ b/hr/report/employee_leave_balance/employee_leave_balance.js @@ -6,6 +6,13 @@ wn.query_reports["Employee Leave Balance"] = { "fieldtype": "Link", "options": "Fiscal Year", "default": wn.defaults.get_user_default("fiscal_year") + }, + { + "fieldname":"company", + "label": "Company", + "fieldtype": "Link", + "options": "Company", + "default": wn.defaults.get_user_default("company") } ] } \ No newline at end of file diff --git a/hr/report/employee_leave_balance/employee_leave_balance.py b/hr/report/employee_leave_balance/employee_leave_balance.py index d7ad472568..6d34c8a8e9 100644 --- a/hr/report/employee_leave_balance/employee_leave_balance.py +++ b/hr/report/employee_leave_balance/employee_leave_balance.py @@ -4,17 +4,19 @@ from webnotes.widgets.reportview import execute as runreport def execute(filters=None): if not filters: filters = {} - employees = runreport(doctype="Employee", fields=["name", "employee_name", "department"]) + + employee_filters = filters.get("company") and \ + [["Employee", "company", "=", filters.get("company")]] or None + employees = runreport(doctype="Employee", fields=["name", "employee_name", "department"], + filters=employee_filters) leave_types = webnotes.conn.sql_list("select name from `tabLeave Type`") if filters.get("fiscal_year"): fiscal_years = [filters["fiscal_year"]] else: fiscal_years = webnotes.conn.sql_list("select name from `tabFiscal Year` order by name desc") - - employee_in = '", "'.join([e.name for e in employees]) - + employee_in = '", "'.join([e.name for e in employees]) allocations = webnotes.conn.sql("""select employee, fiscal_year, leave_type, total_leaves_allocated from `tabLeave Allocation` From 9b352309c6e5d6dc7e3569647f8753d1df69bcd9 Mon Sep 17 00:00:00 2001 From: billyfordson Date: Wed, 27 Feb 2013 17:36:23 +0100 Subject: [PATCH 055/982] Adding German translation --- accounts/doctype/account/locale/de-doc.json | 41 + .../locale/_messages_doc.json | 2 +- .../bank_reconciliation/locale/de-doc.json | 13 + .../locale/de-doc.json | 13 + .../budget_control/locale/_messages_doc.json | 4 +- .../doctype/budget_control/locale/de-doc.json | 4 + .../doctype/budget_detail/locale/de-doc.json | 8 + .../budget_distribution/locale/de-doc.json | 9 + .../locale/_messages_doc.json | 2 +- .../locale/de-doc.json | 6 + .../doctype/c_form/locale/_messages_doc.json | 4 +- accounts/doctype/c_form/locale/de-doc.json | 22 + .../c_form_invoice_detail/locale/de-doc.json | 9 + .../doctype/cost_center/locale/de-doc.json | 22 + .../fiscal_year/locale/_messages_doc.json | 2 +- .../doctype/fiscal_year/locale/de-doc.json | 14 + .../gl_control/locale/_messages_doc.json | 4 +- .../doctype/gl_control/locale/de-doc.json | 4 + .../gl_entry/locale/_messages_doc.json | 4 +- accounts/doctype/gl_entry/locale/de-doc.json | 29 + accounts/doctype/gl_entry/locale/de-py.json | 3 + .../journal_voucher/locale/_messages_doc.json | 2 +- .../journal_voucher/locale/de-doc.json | 57 + .../locale/_messages_doc.json | 8 +- .../journal_voucher_detail/locale/de-doc.json | 16 + .../doctype/mis_control/locale/de-doc.json | 4 + .../mode_of_payment/locale/de-doc.json | 7 + .../locale/_messages_doc.json | 4 +- .../locale/de-doc.json | 5 + .../locale/_messages_doc.json | 4 +- .../locale/de-doc.json | 25 + .../locale/_messages_doc.json | 2 +- .../locale/de-doc.json | 12 + .../locale/_messages_doc.json | 2 +- .../period_closing_voucher/locale/de-doc.json | 14 + .../pos_setting/locale/_messages_doc.json | 4 +- .../doctype/pos_setting/locale/de-doc.json | 20 + .../locale/_messages_doc.json | 6 +- .../purchase_invoice/locale/de-doc.json | 84 + .../purchase_invoice/locale/de-py.json | 3 + .../locale/_messages_doc.json | 2 +- .../locale/de-doc.json | 9 + .../purchase_invoice_item/locale/de-doc.json | 26 + .../locale/_messages_doc.json | 4 +- .../locale/de-doc.json | 25 + .../locale/de-doc.json | 8 + .../sales_invoice/locale/_messages_doc.json | 8 +- .../doctype/sales_invoice/locale/de-doc.json | 141 + .../doctype/sales_invoice/locale/de-py.json | 4 + .../locale/_messages_doc.json | 4 +- .../sales_invoice_advance/locale/de-doc.json | 9 + .../sales_invoice_item/locale/de-doc.json | 33 + .../locale/de-doc.json | 21 + .../locale/de-doc.json | 8 + .../trend_analyzer_control/locale/de-doc.json | 4 + accounts/locale/de-py.json | 3 + .../accounts/locale/_messages_doc.json | 4 +- .../module_def/accounts/locale/de-doc.json | 15 + accounts/page/accounts_home/locale/de-js.json | 47 + .../purchase_common/locale/de-doc.json | 4 + .../purchase_order/locale/_messages_doc.json | 2 +- .../doctype/purchase_order/locale/de-doc.json | 92 + .../purchase_order_item/locale/de-doc.json | 34 + .../locale/de-doc.json | 13 + .../locale/de-doc.json | 16 + .../purchase_request/locale/de-doc.json | 39 + .../purchase_request_item/locale/de-doc.json | 18 + .../quality_inspection/locale/de-doc.json | 27 + .../locale/de-doc.json | 19 + buying/doctype/supplier/locale/de-doc.json | 27 + buying/doctype/supplier/locale/de-py.json | 3 + .../locale/_messages_doc.json | 4 +- .../supplier_quotation/locale/de-doc.json | 78 + .../locale/de-doc.json | 26 + buying/module_def/buying/locale/de-doc.json | 5 + buying/page/buying_home/locale/de-js.json | 33 + controllers/locale/_messages_py.json | 2 + controllers/locale/de-py.json | 4 + .../company_control/locale/de-doc.json | 4 + home/doctype/feed/locale/de-doc.json | 10 + home/doctype/home_control/locale/de-doc.json | 4 + home/module_def/home/locale/de-doc.json | 9 + .../appraisal/locale/_messages_doc.json | 4 +- hr/doctype/appraisal/locale/de-doc.json | 28 + hr/doctype/appraisal_goal/locale/de-doc.json | 9 + .../appraisal_template/locale/de-doc.json | 8 + .../appraisal_template/locale/de-py.json | 4 + .../locale/de-doc.json | 7 + .../attendance/locale/_messages_doc.json | 2 +- hr/doctype/attendance/locale/de-doc.json | 20 + .../locale/de-doc.json | 21 + hr/doctype/branch/locale/de-doc.json | 5 + hr/doctype/deduction_type/locale/de-doc.json | 7 + hr/doctype/department/locale/de-doc.json | 7 + hr/doctype/designation/locale/de-doc.json | 5 + hr/doctype/earning_type/locale/de-doc.json | 11 + hr/doctype/employee/locale/_messages_doc.json | 4 +- hr/doctype/employee/locale/de-doc.json | 117 + .../locale/_messages_doc.json | 2 +- .../employee_education/locale/de-doc.json | 13 + .../locale/de-doc.json | 10 + .../locale/_messages_doc.json | 4 +- .../locale/de-doc.json | 10 + .../locale/_messages_doc.json | 4 +- .../employee_training/locale/de-doc.json | 9 + hr/doctype/employment_type/locale/de-doc.json | 5 + hr/doctype/expense_claim/locale/de-doc.json | 22 + .../expense_claim_detail/locale/de-doc.json | 9 + .../expense_claim_type/locale/de-doc.json | 5 + hr/doctype/grade/locale/_messages_doc.json | 4 +- hr/doctype/grade/locale/de-doc.json | 5 + hr/doctype/holiday/locale/_messages_doc.json | 4 +- hr/doctype/holiday/locale/de-doc.json | 6 + .../holiday_block_list/locale/de-doc.json | 16 + .../locale/de-doc.json | 5 + .../locale/de-doc.json | 6 + .../holiday_list/locale/_messages_doc.json | 2 +- hr/doctype/holiday_list/locale/de-doc.json | 19 + hr/doctype/job_applicant/locale/de-doc.json | 15 + hr/doctype/job_opening/locale/de-doc.json | 11 + .../locale/_messages_doc.json | 2 +- .../leave_allocation/locale/de-doc.json | 17 + .../leave_application/locale/de-doc.json | 27 + .../leave_application/locale/de-py.json | 8 + .../locale/_messages_doc.json | 4 +- .../leave_block_list/locale/de-doc.json | 15 + hr/doctype/leave_block_list/locale/de-py.json | 4 + .../leave_block_list_allow/locale/de-doc.json | 5 + .../leave_block_list_date/locale/de-doc.json | 6 + .../locale/_messages_doc.json | 8 +- .../leave_control_panel/locale/de-doc.json | 20 + hr/doctype/leave_type/locale/de-doc.json | 10 + .../other_income_detail/locale/de-doc.json | 10 + hr/doctype/salary_manager/locale/de-doc.json | 21 + .../salary_slip/locale/_messages_doc.json | 4 +- hr/doctype/salary_slip/locale/de-doc.json | 39 + .../locale/_messages_doc.json | 4 +- .../salary_slip_deduction/locale/de-doc.json | 8 + .../salary_slip_earning/locale/de-doc.json | 8 + .../salary_structure/locale/de-doc.json | 27 + .../locale/de-doc.json | 7 + .../locale/de-doc.json | 7 + hr/module_def/hr/locale/de-doc.json | 7 + hr/page/hr_home/locale/de-js.json | 58 + manufacturing/doctype/bom/locale/de-doc.json | 29 + manufacturing/doctype/bom/locale/de-py.json | 7 + .../bom_explosion_item/locale/de-doc.json | 13 + .../doctype/bom_item/locale/de-doc.json | 14 + .../doctype/bom_operation/locale/de-doc.json | 10 + .../bom_replace_tool/locale/de-doc.json | 10 + .../bom_replace_tool/locale/de-py.json | 3 + .../locale/_messages_doc.json | 2 +- .../production_order/locale/de-doc.json | 30 + .../production_plan_item/locale/de-doc.json | 11 + .../locale/de-doc.json | 8 + .../locale/de-doc.json | 30 + .../update_delivery_date/locale/de-doc.json | 13 + .../workstation/locale/_messages_doc.json | 4 +- .../doctype/workstation/locale/de-doc.json | 19 + .../manufacturing/locale/_messages_doc.json | 4 +- .../manufacturing/locale/de-doc.json | 4 + .../page/manufacturing_home/locale/de-js.json | 18 + .../locale/_messages_doc.json | 13 + .../doctype/activity_type/locale/de-doc.json | 4 + projects/doctype/project/locale/de-doc.json | 46 + .../project_activity/locale/de-doc.json | 14 + .../locale/de-doc.json | 7 + .../project_control/locale/de-doc.json | 4 + .../project_milestone/locale/de-doc.json | 9 + projects/doctype/task/locale/de-doc.json | 34 + .../doctype/time_log/locale/_messages_js.json | 1 + .../doctype/time_log/locale/_messages_py.json | 3 + .../timesheet/locale/_messages_doc.json | 6 +- projects/doctype/timesheet/locale/de-doc.json | 14 + .../locale/_messages_doc.json | 2 +- .../timesheet_detail/locale/de-doc.json | 13 + .../projects/locale/_messages_doc.json | 4 + .../projects_home/locale/_messages_js.json | 2 + projects/page/projects_home/locale/de-js.json | 15 + public/js/locale/_messages_js.json | 13 +- public/js/locale/de-js.json | 315 ++ selling/doctype/campaign/locale/de-doc.json | 8 + .../communication_log/locale/de-doc.json | 13 + selling/doctype/customer/locale/de-doc.json | 40 + selling/doctype/customer/locale/de-py.json | 3 + .../doctype/industry_type/locale/de-doc.json | 5 + .../locale/_messages_doc.json | 6 +- .../installation_note/locale/de-doc.json | 34 + .../installation_note_item/locale/de-doc.json | 12 + .../doctype/lead/locale/_messages_doc.json | 2 +- selling/doctype/lead/locale/de-doc.json | 81 + selling/doctype/lead/locale/de-py.json | 3 + .../opportunity/locale/_messages_doc.json | 2 +- .../doctype/opportunity/locale/de-doc.json | 67 + .../locale/_messages_doc.json | 2 +- .../opportunity_item/locale/de-doc.json | 12 + selling/doctype/quotation/locale/de-doc.json | 96 + .../doctype/quotation_item/locale/de-doc.json | 23 + .../locale/de-doc.json | 13 + .../doctype/sales_common/locale/de-doc.json | 4 + .../doctype/sales_common/locale/de-py.json | 3 + .../sales_order/locale/_messages_doc.json | 2 +- .../doctype/sales_order/locale/de-doc.json | 123 + .../sales_order_item/locale/de-doc.json | 32 + selling/doctype/sales_team/locale/de-doc.json | 11 + .../locale/_messages_doc.json | 2 +- .../shipping_address/locale/de-doc.json | 13 + .../sms_center/locale/_messages_doc.json | 2 +- selling/doctype/sms_center/locale/de-doc.json | 21 + selling/module_def/selling/locale/de-doc.json | 11 + selling/page/selling_home/locale/de-js.json | 52 + .../authorization_control/locale/de-doc.json | 4 + .../authorization_rule/locale/de-doc.json | 30 + setup/doctype/brand/locale/de-doc.json | 6 + .../doctype/company/locale/_messages_doc.json | 8 +- setup/doctype/company/locale/de-doc.json | 32 + .../contact_control/locale/de-doc.json | 7 + .../doctype/country/locale/_messages_doc.json | 4 +- setup/doctype/country/locale/de-doc.json | 7 + setup/doctype/currency/locale/de-doc.json | 14 + .../doctype/customer_group/locale/de-doc.json | 16 + .../email_digest/locale/_messages_doc.json | 4 +- setup/doctype/email_digest/locale/de-doc.json | 44 + setup/doctype/email_digest/locale/de-py.json | 3 + .../email_settings/locale/_messages_doc.json | 2 +- .../doctype/email_settings/locale/de-doc.json | 34 + .../features_setup/locale/_messages_doc.json | 8 +- .../doctype/features_setup/locale/de-doc.json | 41 + .../global_defaults/locale/_messages_doc.json | 2 +- .../global_defaults/locale/de-doc.json | 69 + setup/doctype/item_group/locale/de-doc.json | 23 + .../locale/_messages_doc.json | 2 +- .../jobs_email_settings/locale/de-doc.json | 16 + .../jobs_email_settings/locale/de-js.json | 3 + .../jobs_email_settings/locale/de-py.json | 3 + .../doctype/market_segment/locale/de-doc.json | 7 + .../doctype/naming_series/locale/de-doc.json | 18 + .../naming_series_options/locale/de-doc.json | 6 + .../notification_control/locale/de-doc.json | 31 + .../permission_control/locale/de-doc.json | 4 + setup/doctype/price_list/locale/de-doc.json | 8 + .../doctype/print_heading/locale/de-doc.json | 6 + .../quotation_lost_reason/locale/de-doc.json | 5 + .../sales_browser_control/locale/de-doc.json | 4 + .../sales_email_settings/locale/de-doc.json | 15 + .../sales_email_settings/locale/de-js.json | 3 + .../sales_email_settings/locale/de-py.json | 3 + .../doctype/sales_partner/locale/de-doc.json | 27 + .../sales_person/locale/_messages_doc.json | 10 +- setup/doctype/sales_person/locale/de-doc.json | 21 + .../doctype/series_detail/locale/de-doc.json | 6 + .../doctype/setup_control/locale/de-doc.json | 4 + .../sms_parameter/locale/_messages_doc.json | 2 +- .../doctype/sms_parameter/locale/de-doc.json | 6 + setup/doctype/sms_settings/locale/de-doc.json | 13 + setup/doctype/state/locale/de-doc.json | 6 + .../doctype/supplier_type/locale/de-doc.json | 5 + .../doctype/target_detail/locale/de-doc.json | 8 + .../terms_and_conditions/locale/de-doc.json | 6 + setup/doctype/territory/locale/de-doc.json | 22 + setup/doctype/uom/locale/_messages_doc.json | 4 +- setup/doctype/uom/locale/de-doc.json | 7 + .../doctype/warehouse_type/locale/de-doc.json | 5 + .../locale/_messages_doc.json | 6 +- .../workflow_action_detail/locale/de-doc.json | 6 + .../workflow_engine/locale/_messages_doc.json | 4 +- .../workflow_engine/locale/de-doc.json | 4 + .../doctype/workflow_rule/locale/de-doc.json | 23 + .../locale/_messages_doc.json | 4 +- .../workflow_rule_detail/locale/de-doc.json | 18 + .../setup/locale/_messages_doc.json | 4 +- setup/module_def/setup/locale/de-doc.json | 19 + setup/page/setup/locale/de-js.json | 61 + startup/__init__.py | 5 +- stock/doctype/batch/locale/de-doc.json | 11 + stock/doctype/bin/locale/_messages_doc.json | 2 +- stock/doctype/bin/locale/de-doc.json | 18 + .../delivery_note/locale/_messages_doc.json | 2 +- .../doctype/delivery_note/locale/de-doc.json | 122 + .../delivery_note_item/locale/de-doc.json | 33 + .../locale/_messages_doc.json | 2 +- .../locale/de-doc.json | 18 + .../doctype/featured_item/locale/de-doc.json | 6 + stock/doctype/item/locale/_messages_doc.json | 2 +- stock/doctype/item/locale/de-doc.json | 116 + .../item_customer_detail/locale/de-doc.json | 7 + stock/doctype/item_price/locale/de-doc.json | 11 + .../locale/_messages_doc.json | 2 +- .../locale/de-doc.json | 6 + .../item_reorder/locale/_messages_doc.json | 2 +- stock/doctype/item_reorder/locale/de-doc.json | 10 + .../doctype/item_supplier/locale/de-doc.json | 6 + .../item_tax/locale/_messages_doc.json | 2 +- stock/doctype/item_tax/locale/de-doc.json | 6 + .../locale/de-doc.json | 7 + .../landed_cost_item/locale/de-doc.json | 7 + .../locale/_messages_doc.json | 2 +- .../locale/de-doc.json | 6 + .../landed_cost_wizard/locale/de-doc.json | 12 + .../locale/_messages_doc.json | 4 +- .../material_request/locale/de-doc.json | 37 + .../material_request/locale/de-py.json | 3 + .../locale/_messages_doc.json | 2 +- .../material_request_item/locale/de-doc.json | 18 + stock/doctype/packing_slip/locale/de-doc.json | 27 + .../packing_slip_item/locale/de-doc.json | 11 + .../locale/_messages_doc.json | 4 +- .../purchase_receipt/locale/_messages_js.json | 1 + .../purchase_receipt/locale/_messages_py.json | 5 + .../purchase_receipt/locale/de-doc.json | 104 + .../purchase_receipt_item/locale/de-doc.json | 40 + .../locale/_messages_doc.json | 2 +- .../locale/de-doc.json | 21 + stock/doctype/sales_bom/locale/de-doc.json | 10 + .../doctype/sales_bom_item/locale/de-doc.json | 9 + .../serial_no/locale/_messages_doc.json | 2 +- stock/doctype/serial_no/locale/de-doc.json | 59 + .../stock_entry/locale/_messages_doc.json | 2 +- stock/doctype/stock_entry/locale/de-doc.json | 48 + stock/doctype/stock_entry/locale/de-py.json | 14 + .../stock_entry_detail/locale/de-doc.json | 22 + stock/doctype/stock_ledger/locale/de-doc.json | 4 + .../stock_ledger_entry/locale/de-doc.json | 27 + .../stock_ledger_entry/locale/de-py.json | 3 + .../stock_reconciliation/locale/de-doc.json | 12 + .../stock_reconciliation/locale/de-py.json | 5 + .../locale/de-doc.json | 9 + .../uom_conversion_detail/locale/de-doc.json | 6 + .../valuation_control/locale/de-doc.json | 4 + stock/doctype/warehouse/locale/de-doc.json | 25 + .../doctype/warehouse_user/locale/de-doc.json | 5 + stock/locale/de-py.json | 7 + stock/module_def/stock/locale/de-doc.json | 22 + stock/page/stock_home/locale/de-js.json | 59 + .../doctype/customer_issue/locale/de-doc.json | 50 + .../maintenance_schedule/locale/de-doc.json | 30 + .../locale/de-doc.json | 10 + .../locale/_messages_doc.json | 4 +- .../locale/de-doc.json | 20 + .../maintenance_visit/locale/de-doc.json | 38 + .../locale/_messages_doc.json | 2 +- .../locale/de-doc.json | 13 + .../newsletter/locale/_messages_doc.json | 4 +- support/doctype/newsletter/locale/de-doc.json | 32 + support/doctype/newsletter/locale/de-py.json | 3 + .../support_ticket/locale/_messages_doc.json | 4 +- .../doctype/support_ticket/locale/de-doc.json | 28 + support/module_def/support/locale/de-doc.json | 5 + support/page/support_home/locale/de-js.json | 23 + translations/de.csv | 3297 +++++++++++++++++ utilities/doctype/address/locale/de-doc.json | 28 + .../doctype/answer/locale/_messages_doc.json | 2 +- utilities/doctype/answer/locale/de-doc.json | 7 + .../doctype/contact/locale/_messages_doc.json | 6 +- utilities/doctype/contact/locale/de-doc.json | 26 + .../doctype/gl_mapper/locale/de-doc.json | 6 + .../gl_mapper_detail/locale/de-doc.json | 24 + .../profile_control/locale/de-doc.json | 4 + .../question/locale/_messages_doc.json | 2 +- utilities/doctype/question/locale/de-doc.json | 9 + .../rename_tool/locale/_messages_doc.json | 5 +- .../doctype/rename_tool/locale/de-doc.json | 17 + .../doctype/sms_control/locale/de-doc.json | 4 + utilities/doctype/sms_log/locale/de-doc.json | 10 + .../doctype/sms_receiver/locale/de-doc.json | 7 + .../doctype/trash_control/locale/de-doc.json | 4 + .../module_def/utilities/locale/de-doc.json | 10 + .../locale/_messages_doc.json | 2 +- .../about_us_settings/locale/de-doc.json | 16 + .../about_us_team_member/locale/de-doc.json | 5 + .../doctype/blog/locale/_messages_doc.json | 2 +- website/doctype/blog/locale/de-doc.json | 10 + .../blog_subscriber/locale/de-doc.json | 4 + .../company_history/locale/_messages_doc.json | 2 +- .../company_history/locale/de-doc.json | 6 + .../locale/_messages_doc.json | 2 +- .../contact_us_settings/locale/de-doc.json | 13 + .../cross_list_item_group/locale/de-doc.json | 6 + .../product_group/locale/_messages_doc.json | 4 +- .../doctype/product_group/locale/de-doc.json | 6 + .../product_settings/locale/de-doc.json | 13 + .../products_settings/locale/de-doc.json | 6 + .../doctype/related_page/locale/de-doc.json | 5 + .../style_settings/locale/_messages_doc.json | 2 +- .../doctype/style_settings/locale/de-doc.json | 31 + .../doctype/top_bar_item/locale/de-doc.json | 9 + website/doctype/web_page/locale/de-doc.json | 27 + .../website_item_group/locale/de-doc.json | 6 + .../locale/de-doc.json | 7 + .../website_script/locale/_messages_doc.json | 2 +- .../doctype/website_script/locale/de-doc.json | 6 + .../locale/_messages_doc.json | 6 +- .../website_settings/locale/de-doc.json | 31 + .../website_slideshow/locale/de-doc.json | 10 + .../website_slideshow_item/locale/de-doc.json | 8 + .../website/locale/_messages_doc.json | 2 +- website/module_def/website/locale/de-doc.json | 12 + website/page/website_home/locale/de-js.json | 24 + 398 files changed, 9261 insertions(+), 170 deletions(-) create mode 100644 accounts/doctype/account/locale/de-doc.json create mode 100644 accounts/doctype/bank_reconciliation/locale/de-doc.json create mode 100644 accounts/doctype/bank_reconciliation_detail/locale/de-doc.json create mode 100644 accounts/doctype/budget_control/locale/de-doc.json create mode 100644 accounts/doctype/budget_detail/locale/de-doc.json create mode 100644 accounts/doctype/budget_distribution/locale/de-doc.json create mode 100644 accounts/doctype/budget_distribution_detail/locale/de-doc.json create mode 100644 accounts/doctype/c_form/locale/de-doc.json create mode 100644 accounts/doctype/c_form_invoice_detail/locale/de-doc.json create mode 100644 accounts/doctype/cost_center/locale/de-doc.json create mode 100644 accounts/doctype/fiscal_year/locale/de-doc.json create mode 100644 accounts/doctype/gl_control/locale/de-doc.json create mode 100644 accounts/doctype/gl_entry/locale/de-doc.json create mode 100644 accounts/doctype/gl_entry/locale/de-py.json create mode 100644 accounts/doctype/journal_voucher/locale/de-doc.json create mode 100644 accounts/doctype/journal_voucher_detail/locale/de-doc.json create mode 100644 accounts/doctype/mis_control/locale/de-doc.json create mode 100644 accounts/doctype/mode_of_payment/locale/de-doc.json create mode 100644 accounts/doctype/multi_ledger_report_detail/locale/de-doc.json create mode 100644 accounts/doctype/payment_to_invoice_matching_tool/locale/de-doc.json create mode 100644 accounts/doctype/payment_to_invoice_matching_tool_detail/locale/de-doc.json create mode 100644 accounts/doctype/period_closing_voucher/locale/de-doc.json create mode 100644 accounts/doctype/pos_setting/locale/de-doc.json create mode 100644 accounts/doctype/purchase_invoice/locale/de-doc.json create mode 100644 accounts/doctype/purchase_invoice/locale/de-py.json create mode 100644 accounts/doctype/purchase_invoice_advance/locale/de-doc.json create mode 100644 accounts/doctype/purchase_invoice_item/locale/de-doc.json create mode 100644 accounts/doctype/purchase_taxes_and_charges/locale/de-doc.json create mode 100644 accounts/doctype/purchase_taxes_and_charges_master/locale/de-doc.json create mode 100644 accounts/doctype/sales_invoice/locale/de-doc.json create mode 100644 accounts/doctype/sales_invoice/locale/de-py.json create mode 100644 accounts/doctype/sales_invoice_advance/locale/de-doc.json create mode 100644 accounts/doctype/sales_invoice_item/locale/de-doc.json create mode 100644 accounts/doctype/sales_taxes_and_charges/locale/de-doc.json create mode 100644 accounts/doctype/sales_taxes_and_charges_master/locale/de-doc.json create mode 100644 accounts/doctype/trend_analyzer_control/locale/de-doc.json create mode 100644 accounts/locale/de-py.json create mode 100644 accounts/module_def/accounts/locale/de-doc.json create mode 100644 accounts/page/accounts_home/locale/de-js.json create mode 100644 buying/doctype/purchase_common/locale/de-doc.json create mode 100644 buying/doctype/purchase_order/locale/de-doc.json create mode 100644 buying/doctype/purchase_order_item/locale/de-doc.json create mode 100644 buying/doctype/purchase_order_item_supplied/locale/de-doc.json create mode 100644 buying/doctype/purchase_receipt_item_supplied/locale/de-doc.json create mode 100644 buying/doctype/purchase_request/locale/de-doc.json create mode 100644 buying/doctype/purchase_request_item/locale/de-doc.json create mode 100644 buying/doctype/quality_inspection/locale/de-doc.json create mode 100644 buying/doctype/quality_inspection_reading/locale/de-doc.json create mode 100644 buying/doctype/supplier/locale/de-doc.json create mode 100644 buying/doctype/supplier/locale/de-py.json create mode 100644 buying/doctype/supplier_quotation/locale/de-doc.json create mode 100644 buying/doctype/supplier_quotation_item/locale/de-doc.json create mode 100644 buying/module_def/buying/locale/de-doc.json create mode 100644 buying/page/buying_home/locale/de-js.json create mode 100644 controllers/locale/de-py.json create mode 100644 home/doctype/company_control/locale/de-doc.json create mode 100644 home/doctype/feed/locale/de-doc.json create mode 100644 home/doctype/home_control/locale/de-doc.json create mode 100644 home/module_def/home/locale/de-doc.json create mode 100644 hr/doctype/appraisal/locale/de-doc.json create mode 100644 hr/doctype/appraisal_goal/locale/de-doc.json create mode 100644 hr/doctype/appraisal_template/locale/de-doc.json create mode 100644 hr/doctype/appraisal_template/locale/de-py.json create mode 100644 hr/doctype/appraisal_template_goal/locale/de-doc.json create mode 100644 hr/doctype/attendance/locale/de-doc.json create mode 100644 hr/doctype/attendance_control_panel/locale/de-doc.json create mode 100644 hr/doctype/branch/locale/de-doc.json create mode 100644 hr/doctype/deduction_type/locale/de-doc.json create mode 100644 hr/doctype/department/locale/de-doc.json create mode 100644 hr/doctype/designation/locale/de-doc.json create mode 100644 hr/doctype/earning_type/locale/de-doc.json create mode 100644 hr/doctype/employee/locale/de-doc.json create mode 100644 hr/doctype/employee_education/locale/de-doc.json create mode 100644 hr/doctype/employee_external_work_history/locale/de-doc.json create mode 100644 hr/doctype/employee_internal_work_history/locale/de-doc.json create mode 100644 hr/doctype/employee_training/locale/de-doc.json create mode 100644 hr/doctype/employment_type/locale/de-doc.json create mode 100644 hr/doctype/expense_claim/locale/de-doc.json create mode 100644 hr/doctype/expense_claim_detail/locale/de-doc.json create mode 100644 hr/doctype/expense_claim_type/locale/de-doc.json create mode 100644 hr/doctype/grade/locale/de-doc.json create mode 100644 hr/doctype/holiday/locale/de-doc.json create mode 100644 hr/doctype/holiday_block_list/locale/de-doc.json create mode 100644 hr/doctype/holiday_block_list_allow/locale/de-doc.json create mode 100644 hr/doctype/holiday_block_list_date/locale/de-doc.json create mode 100644 hr/doctype/holiday_list/locale/de-doc.json create mode 100644 hr/doctype/job_applicant/locale/de-doc.json create mode 100644 hr/doctype/job_opening/locale/de-doc.json create mode 100644 hr/doctype/leave_allocation/locale/de-doc.json create mode 100644 hr/doctype/leave_application/locale/de-doc.json create mode 100644 hr/doctype/leave_application/locale/de-py.json create mode 100644 hr/doctype/leave_block_list/locale/de-doc.json create mode 100644 hr/doctype/leave_block_list/locale/de-py.json create mode 100644 hr/doctype/leave_block_list_allow/locale/de-doc.json create mode 100644 hr/doctype/leave_block_list_date/locale/de-doc.json create mode 100644 hr/doctype/leave_control_panel/locale/de-doc.json create mode 100644 hr/doctype/leave_type/locale/de-doc.json create mode 100644 hr/doctype/other_income_detail/locale/de-doc.json create mode 100644 hr/doctype/salary_manager/locale/de-doc.json create mode 100644 hr/doctype/salary_slip/locale/de-doc.json create mode 100644 hr/doctype/salary_slip_deduction/locale/de-doc.json create mode 100644 hr/doctype/salary_slip_earning/locale/de-doc.json create mode 100644 hr/doctype/salary_structure/locale/de-doc.json create mode 100644 hr/doctype/salary_structure_deduction/locale/de-doc.json create mode 100644 hr/doctype/salary_structure_earning/locale/de-doc.json create mode 100644 hr/module_def/hr/locale/de-doc.json create mode 100644 hr/page/hr_home/locale/de-js.json create mode 100644 manufacturing/doctype/bom/locale/de-doc.json create mode 100644 manufacturing/doctype/bom/locale/de-py.json create mode 100644 manufacturing/doctype/bom_explosion_item/locale/de-doc.json create mode 100644 manufacturing/doctype/bom_item/locale/de-doc.json create mode 100644 manufacturing/doctype/bom_operation/locale/de-doc.json create mode 100644 manufacturing/doctype/bom_replace_tool/locale/de-doc.json create mode 100644 manufacturing/doctype/bom_replace_tool/locale/de-py.json create mode 100644 manufacturing/doctype/production_order/locale/de-doc.json create mode 100644 manufacturing/doctype/production_plan_item/locale/de-doc.json create mode 100644 manufacturing/doctype/production_plan_sales_order/locale/de-doc.json create mode 100644 manufacturing/doctype/production_planning_tool/locale/de-doc.json create mode 100644 manufacturing/doctype/update_delivery_date/locale/de-doc.json create mode 100644 manufacturing/doctype/workstation/locale/de-doc.json create mode 100644 manufacturing/module_def/manufacturing/locale/de-doc.json create mode 100644 manufacturing/page/manufacturing_home/locale/de-js.json create mode 100644 production/doctype/update_delivery_date/locale/_messages_doc.json create mode 100644 projects/doctype/activity_type/locale/de-doc.json create mode 100644 projects/doctype/project/locale/de-doc.json create mode 100644 projects/doctype/project_activity/locale/de-doc.json create mode 100644 projects/doctype/project_activity_update/locale/de-doc.json create mode 100644 projects/doctype/project_control/locale/de-doc.json create mode 100644 projects/doctype/project_milestone/locale/de-doc.json create mode 100644 projects/doctype/task/locale/de-doc.json create mode 100644 projects/doctype/time_log/locale/_messages_js.json create mode 100644 projects/doctype/time_log/locale/_messages_py.json create mode 100644 projects/doctype/timesheet/locale/de-doc.json create mode 100644 projects/doctype/timesheet_detail/locale/de-doc.json create mode 100644 projects/module_def/projects/locale/_messages_doc.json create mode 100644 projects/page/projects_home/locale/de-js.json create mode 100644 public/js/locale/de-js.json create mode 100644 selling/doctype/campaign/locale/de-doc.json create mode 100644 selling/doctype/communication_log/locale/de-doc.json create mode 100644 selling/doctype/customer/locale/de-doc.json create mode 100644 selling/doctype/customer/locale/de-py.json create mode 100644 selling/doctype/industry_type/locale/de-doc.json create mode 100644 selling/doctype/installation_note/locale/de-doc.json create mode 100644 selling/doctype/installation_note_item/locale/de-doc.json create mode 100644 selling/doctype/lead/locale/de-doc.json create mode 100644 selling/doctype/lead/locale/de-py.json create mode 100644 selling/doctype/opportunity/locale/de-doc.json create mode 100644 selling/doctype/opportunity_item/locale/de-doc.json create mode 100644 selling/doctype/quotation/locale/de-doc.json create mode 100644 selling/doctype/quotation_item/locale/de-doc.json create mode 100644 selling/doctype/sales_and_purchase_return_item/locale/de-doc.json create mode 100644 selling/doctype/sales_common/locale/de-doc.json create mode 100644 selling/doctype/sales_common/locale/de-py.json create mode 100644 selling/doctype/sales_order/locale/de-doc.json create mode 100644 selling/doctype/sales_order_item/locale/de-doc.json create mode 100644 selling/doctype/sales_team/locale/de-doc.json create mode 100644 selling/doctype/shipping_address/locale/de-doc.json create mode 100644 selling/doctype/sms_center/locale/de-doc.json create mode 100644 selling/module_def/selling/locale/de-doc.json create mode 100644 selling/page/selling_home/locale/de-js.json create mode 100644 setup/doctype/authorization_control/locale/de-doc.json create mode 100644 setup/doctype/authorization_rule/locale/de-doc.json create mode 100644 setup/doctype/brand/locale/de-doc.json create mode 100644 setup/doctype/company/locale/de-doc.json create mode 100644 setup/doctype/contact_control/locale/de-doc.json create mode 100644 setup/doctype/country/locale/de-doc.json create mode 100644 setup/doctype/currency/locale/de-doc.json create mode 100644 setup/doctype/customer_group/locale/de-doc.json create mode 100644 setup/doctype/email_digest/locale/de-doc.json create mode 100644 setup/doctype/email_digest/locale/de-py.json create mode 100644 setup/doctype/email_settings/locale/de-doc.json create mode 100644 setup/doctype/features_setup/locale/de-doc.json create mode 100644 setup/doctype/global_defaults/locale/de-doc.json create mode 100644 setup/doctype/item_group/locale/de-doc.json create mode 100644 setup/doctype/jobs_email_settings/locale/de-doc.json create mode 100644 setup/doctype/jobs_email_settings/locale/de-js.json create mode 100644 setup/doctype/jobs_email_settings/locale/de-py.json create mode 100644 setup/doctype/market_segment/locale/de-doc.json create mode 100644 setup/doctype/naming_series/locale/de-doc.json create mode 100644 setup/doctype/naming_series_options/locale/de-doc.json create mode 100644 setup/doctype/notification_control/locale/de-doc.json create mode 100644 setup/doctype/permission_control/locale/de-doc.json create mode 100644 setup/doctype/price_list/locale/de-doc.json create mode 100644 setup/doctype/print_heading/locale/de-doc.json create mode 100644 setup/doctype/quotation_lost_reason/locale/de-doc.json create mode 100644 setup/doctype/sales_browser_control/locale/de-doc.json create mode 100644 setup/doctype/sales_email_settings/locale/de-doc.json create mode 100644 setup/doctype/sales_email_settings/locale/de-js.json create mode 100644 setup/doctype/sales_email_settings/locale/de-py.json create mode 100644 setup/doctype/sales_partner/locale/de-doc.json create mode 100644 setup/doctype/sales_person/locale/de-doc.json create mode 100644 setup/doctype/series_detail/locale/de-doc.json create mode 100644 setup/doctype/setup_control/locale/de-doc.json create mode 100644 setup/doctype/sms_parameter/locale/de-doc.json create mode 100644 setup/doctype/sms_settings/locale/de-doc.json create mode 100644 setup/doctype/state/locale/de-doc.json create mode 100644 setup/doctype/supplier_type/locale/de-doc.json create mode 100644 setup/doctype/target_detail/locale/de-doc.json create mode 100644 setup/doctype/terms_and_conditions/locale/de-doc.json create mode 100644 setup/doctype/territory/locale/de-doc.json create mode 100644 setup/doctype/uom/locale/de-doc.json create mode 100644 setup/doctype/warehouse_type/locale/de-doc.json create mode 100644 setup/doctype/workflow_action_detail/locale/de-doc.json create mode 100644 setup/doctype/workflow_engine/locale/de-doc.json create mode 100644 setup/doctype/workflow_rule/locale/de-doc.json create mode 100644 setup/doctype/workflow_rule_detail/locale/de-doc.json create mode 100644 setup/module_def/setup/locale/de-doc.json create mode 100644 setup/page/setup/locale/de-js.json create mode 100644 stock/doctype/batch/locale/de-doc.json create mode 100644 stock/doctype/bin/locale/de-doc.json create mode 100644 stock/doctype/delivery_note/locale/de-doc.json create mode 100644 stock/doctype/delivery_note_item/locale/de-doc.json create mode 100644 stock/doctype/delivery_note_packing_item/locale/de-doc.json create mode 100644 stock/doctype/featured_item/locale/de-doc.json create mode 100644 stock/doctype/item/locale/de-doc.json create mode 100644 stock/doctype/item_customer_detail/locale/de-doc.json create mode 100644 stock/doctype/item_price/locale/de-doc.json create mode 100644 stock/doctype/item_quality_inspection_parameter/locale/de-doc.json create mode 100644 stock/doctype/item_reorder/locale/de-doc.json create mode 100644 stock/doctype/item_supplier/locale/de-doc.json create mode 100644 stock/doctype/item_tax/locale/de-doc.json create mode 100644 stock/doctype/item_website_specification/locale/de-doc.json create mode 100644 stock/doctype/landed_cost_item/locale/de-doc.json create mode 100644 stock/doctype/landed_cost_purchase_receipt/locale/de-doc.json create mode 100644 stock/doctype/landed_cost_wizard/locale/de-doc.json create mode 100644 stock/doctype/material_request/locale/de-doc.json create mode 100644 stock/doctype/material_request/locale/de-py.json create mode 100644 stock/doctype/material_request_item/locale/de-doc.json create mode 100644 stock/doctype/packing_slip/locale/de-doc.json create mode 100644 stock/doctype/packing_slip_item/locale/de-doc.json create mode 100644 stock/doctype/purchase_receipt/locale/_messages_js.json create mode 100644 stock/doctype/purchase_receipt/locale/_messages_py.json create mode 100644 stock/doctype/purchase_receipt/locale/de-doc.json create mode 100644 stock/doctype/purchase_receipt_item/locale/de-doc.json create mode 100644 stock/doctype/sales_and_purchase_return_tool/locale/de-doc.json create mode 100644 stock/doctype/sales_bom/locale/de-doc.json create mode 100644 stock/doctype/sales_bom_item/locale/de-doc.json create mode 100644 stock/doctype/serial_no/locale/de-doc.json create mode 100644 stock/doctype/stock_entry/locale/de-doc.json create mode 100644 stock/doctype/stock_entry/locale/de-py.json create mode 100644 stock/doctype/stock_entry_detail/locale/de-doc.json create mode 100644 stock/doctype/stock_ledger/locale/de-doc.json create mode 100644 stock/doctype/stock_ledger_entry/locale/de-doc.json create mode 100644 stock/doctype/stock_ledger_entry/locale/de-py.json create mode 100644 stock/doctype/stock_reconciliation/locale/de-doc.json create mode 100644 stock/doctype/stock_reconciliation/locale/de-py.json create mode 100644 stock/doctype/stock_uom_replace_utility/locale/de-doc.json create mode 100644 stock/doctype/uom_conversion_detail/locale/de-doc.json create mode 100644 stock/doctype/valuation_control/locale/de-doc.json create mode 100644 stock/doctype/warehouse/locale/de-doc.json create mode 100644 stock/doctype/warehouse_user/locale/de-doc.json create mode 100644 stock/locale/de-py.json create mode 100644 stock/module_def/stock/locale/de-doc.json create mode 100644 stock/page/stock_home/locale/de-js.json create mode 100644 support/doctype/customer_issue/locale/de-doc.json create mode 100644 support/doctype/maintenance_schedule/locale/de-doc.json create mode 100644 support/doctype/maintenance_schedule_detail/locale/de-doc.json create mode 100644 support/doctype/maintenance_schedule_item/locale/de-doc.json create mode 100644 support/doctype/maintenance_visit/locale/de-doc.json create mode 100644 support/doctype/maintenance_visit_purpose/locale/de-doc.json create mode 100644 support/doctype/newsletter/locale/de-doc.json create mode 100644 support/doctype/newsletter/locale/de-py.json create mode 100644 support/doctype/support_ticket/locale/de-doc.json create mode 100644 support/module_def/support/locale/de-doc.json create mode 100644 support/page/support_home/locale/de-js.json create mode 100644 translations/de.csv create mode 100644 utilities/doctype/address/locale/de-doc.json create mode 100644 utilities/doctype/answer/locale/de-doc.json create mode 100644 utilities/doctype/contact/locale/de-doc.json create mode 100644 utilities/doctype/gl_mapper/locale/de-doc.json create mode 100644 utilities/doctype/gl_mapper_detail/locale/de-doc.json create mode 100644 utilities/doctype/profile_control/locale/de-doc.json create mode 100644 utilities/doctype/question/locale/de-doc.json create mode 100644 utilities/doctype/rename_tool/locale/de-doc.json create mode 100644 utilities/doctype/sms_control/locale/de-doc.json create mode 100644 utilities/doctype/sms_log/locale/de-doc.json create mode 100644 utilities/doctype/sms_receiver/locale/de-doc.json create mode 100644 utilities/doctype/trash_control/locale/de-doc.json create mode 100644 utilities/module_def/utilities/locale/de-doc.json create mode 100644 website/doctype/about_us_settings/locale/de-doc.json create mode 100644 website/doctype/about_us_team_member/locale/de-doc.json create mode 100644 website/doctype/blog/locale/de-doc.json create mode 100644 website/doctype/blog_subscriber/locale/de-doc.json create mode 100644 website/doctype/company_history/locale/de-doc.json create mode 100644 website/doctype/contact_us_settings/locale/de-doc.json create mode 100644 website/doctype/cross_list_item_group/locale/de-doc.json create mode 100644 website/doctype/product_group/locale/de-doc.json create mode 100644 website/doctype/product_settings/locale/de-doc.json create mode 100644 website/doctype/products_settings/locale/de-doc.json create mode 100644 website/doctype/related_page/locale/de-doc.json create mode 100644 website/doctype/style_settings/locale/de-doc.json create mode 100644 website/doctype/top_bar_item/locale/de-doc.json create mode 100644 website/doctype/web_page/locale/de-doc.json create mode 100644 website/doctype/website_item_group/locale/de-doc.json create mode 100644 website/doctype/website_product_category/locale/de-doc.json create mode 100644 website/doctype/website_script/locale/de-doc.json create mode 100644 website/doctype/website_settings/locale/de-doc.json create mode 100644 website/doctype/website_slideshow/locale/de-doc.json create mode 100644 website/doctype/website_slideshow_item/locale/de-doc.json create mode 100644 website/module_def/website/locale/de-doc.json create mode 100644 website/page/website_home/locale/de-js.json diff --git a/accounts/doctype/account/locale/de-doc.json b/accounts/doctype/account/locale/de-doc.json new file mode 100644 index 0000000000..817703b704 --- /dev/null +++ b/accounts/doctype/account/locale/de-doc.json @@ -0,0 +1,41 @@ +{ + "Account": "Konto", + "Account Details": "Kontodetails", + "Account Name": "Account Name", + "Account Type": "Kontotyp", + "Accounts": "Konten", + "Allow Negative Balance": "Lassen Negative Bilanz", + "Bank or Cash": "Bank oder Bargeld", + "Chargeable": "Geb\u00fchrenpflichtig", + "Company": "Firma", + "Credit Days": "Kredit-Tage", + "Credit Limit": "Kreditlimit", + "Customer": "Kunde", + "Debit or Credit": "Debit-oder Kreditkarten", + "Employee": "Mitarbeiter", + "Expense Account": "Expense Konto", + "Fixed Asset Account": "Fixed Asset Konto", + "Frozen": "Eingefroren", + "Group": "Gruppe", + "Group or Ledger": "Gruppe oder Ledger", + "Heads (or groups) against which Accounting Entries are made and balances are maintained.": "Heads (oder Gruppen), gegen die Accounting-Eintr\u00e4ge und sind Guthaben gehalten werden.", + "If the account is frozen, entries are allowed for the \"Account Manager\" only.": "Wenn das Konto eingefroren ist, werden die Eintr\u00e4ge f\u00fcr die \"Account Manager\" gestattet.", + "If this Account represents a Customer, Supplier or Employee, set it here.": "Wenn dieses Konto ein Kunde, Lieferant oder Mitarbeiter, stellen Sie es hier.", + "Income Account": "Income Konto", + "Is PL Account": "Ist PL Konto", + "Ledger": "Hauptbuch", + "Level": "Ebene", + "Lft": "Lft", + "Master Name": "Master Name", + "Master Type": "Master Type", + "No": "Auf", + "Old Parent": "Old Eltern", + "Parent Account": "Hauptkonto", + "Rate": "Rate", + "Rate at which this tax is applied": "Geschwindigkeit, mit der dieser Steuer an", + "Rgt": "Rgt", + "Setting Account Type helps in selecting this Account in transactions.": "Einstellung Kontotyp hilft bei der Auswahl der Transaktionen in diesem Konto.", + "Supplier": "Lieferant", + "Tax": "Steuer", + "Yes": "Ja" +} \ No newline at end of file diff --git a/accounts/doctype/bank_reconciliation/locale/_messages_doc.json b/accounts/doctype/bank_reconciliation/locale/_messages_doc.json index 76f900844b..01eb6ba6e5 100644 --- a/accounts/doctype/bank_reconciliation/locale/_messages_doc.json +++ b/accounts/doctype/bank_reconciliation/locale/_messages_doc.json @@ -1,12 +1,12 @@ [ "Select account head of the bank where cheque was deposited.", - "Entries", "Update Clearance Date", "Company", "Bank Account", "To Date", "Accounts", "From Date", + "Entries", "Get Non Reconciled Entries", "Bank Reconciliation", "Total Amount" diff --git a/accounts/doctype/bank_reconciliation/locale/de-doc.json b/accounts/doctype/bank_reconciliation/locale/de-doc.json new file mode 100644 index 0000000000..2febec066f --- /dev/null +++ b/accounts/doctype/bank_reconciliation/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Accounts": "Konten", + "Bank Account": "Bankkonto", + "Bank Reconciliation": "Kontenabstimmung", + "Company": "Firma", + "Entries": "Eintr\u00e4ge", + "From Date": "Von Datum", + "Get Non Reconciled Entries": "Holen Non vers\u00f6hnt Eintr\u00e4ge", + "Select account head of the bank where cheque was deposited.": "W\u00e4hlen Sie den Kopf des Bankkontos, wo Kontrolle abgelagert wurde.", + "To Date": "To Date", + "Total Amount": "Gesamtbetrag", + "Update Clearance Date": "Aktualisieren Restposten Datum" +} \ No newline at end of file diff --git a/accounts/doctype/bank_reconciliation_detail/locale/de-doc.json b/accounts/doctype/bank_reconciliation_detail/locale/de-doc.json new file mode 100644 index 0000000000..174ea29ed5 --- /dev/null +++ b/accounts/doctype/bank_reconciliation_detail/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Accounts": "Konten", + "Against Account": "Vor Konto", + "Bank Reconciliation Detail": "Kontenabstimmung Details", + "Cheque Date": "Scheck Datum", + "Cheque Number": "Scheck-Nummer", + "Clearance Date": "Clearance Datum", + "Credit": "Kredit", + "Debit": "Soll", + "Posting Date": "Buchungsdatum", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "Voucher ID": "Gutschein ID" +} \ No newline at end of file diff --git a/accounts/doctype/budget_control/locale/_messages_doc.json b/accounts/doctype/budget_control/locale/_messages_doc.json index f42d3befaf..5e1218a936 100644 --- a/accounts/doctype/budget_control/locale/_messages_doc.json +++ b/accounts/doctype/budget_control/locale/_messages_doc.json @@ -1,4 +1,4 @@ [ - "Accounts", - "Budget Control" + "Budget Control", + "Accounts" ] \ No newline at end of file diff --git a/accounts/doctype/budget_control/locale/de-doc.json b/accounts/doctype/budget_control/locale/de-doc.json new file mode 100644 index 0000000000..0f2e15d2db --- /dev/null +++ b/accounts/doctype/budget_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "Konten", + "Budget Control": "Budget Control" +} \ No newline at end of file diff --git a/accounts/doctype/budget_detail/locale/de-doc.json b/accounts/doctype/budget_detail/locale/de-doc.json new file mode 100644 index 0000000000..a1256d1dd9 --- /dev/null +++ b/accounts/doctype/budget_detail/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "Account": "Konto", + "Accounts": "Konten", + "Actual": "Tats\u00e4chlich", + "Budget Allocated": "Budget", + "Budget Detail": "Budget Detailansicht", + "Fiscal Year": "Gesch\u00e4ftsjahr" +} \ No newline at end of file diff --git a/accounts/doctype/budget_distribution/locale/de-doc.json b/accounts/doctype/budget_distribution/locale/de-doc.json new file mode 100644 index 0000000000..fd157b5f50 --- /dev/null +++ b/accounts/doctype/budget_distribution/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "Konten", + "Budget Distribution": "Budget Verteilung", + "Budget Distribution Details": "Budget Aussch\u00fcttungsinformationen", + "Distribution Name": "Namen der Distribution", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Name of the Budget Distribution": "Name der Verteilung Budget", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/accounts/doctype/budget_distribution_detail/locale/_messages_doc.json b/accounts/doctype/budget_distribution_detail/locale/_messages_doc.json index 321e638340..ad64d35fe1 100644 --- a/accounts/doctype/budget_distribution_detail/locale/_messages_doc.json +++ b/accounts/doctype/budget_distribution_detail/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ "Budget Distribution Detail", - "Accounts", "Percentage Allocation", + "Accounts", "Month" ] \ No newline at end of file diff --git a/accounts/doctype/budget_distribution_detail/locale/de-doc.json b/accounts/doctype/budget_distribution_detail/locale/de-doc.json new file mode 100644 index 0000000000..e609373125 --- /dev/null +++ b/accounts/doctype/budget_distribution_detail/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Accounts": "Konten", + "Budget Distribution Detail": "Budget Verteilung Detailansicht", + "Month": "Monat", + "Percentage Allocation": "Prozentuale Aufteilung" +} \ No newline at end of file diff --git a/accounts/doctype/c_form/locale/_messages_doc.json b/accounts/doctype/c_form/locale/_messages_doc.json index c7f6667681..e877c435a7 100644 --- a/accounts/doctype/c_form/locale/_messages_doc.json +++ b/accounts/doctype/c_form/locale/_messages_doc.json @@ -7,7 +7,7 @@ "Amended From", "Total Invoiced Amount", "File List", - "Accounts", + "Invoice Details", "III", "Customer", "I", @@ -16,7 +16,7 @@ "Fiscal Year", "Quarter", "Series", - "Invoice Details", + "Accounts", "C-Form No", "Total Amount" ] \ No newline at end of file diff --git a/accounts/doctype/c_form/locale/de-doc.json b/accounts/doctype/c_form/locale/de-doc.json new file mode 100644 index 0000000000..4aa3ef4b33 --- /dev/null +++ b/accounts/doctype/c_form/locale/de-doc.json @@ -0,0 +1,22 @@ +{ + "Accounts": "Konten", + "Amended From": "Ge\u00e4ndert von", + "C-FORM/": "C-FORM /", + "C-Form": "C-Form", + "C-Form No": "C-Form nicht", + "Company": "Firma", + "Customer": "Kunde", + "File List": "Dateiliste", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "I": "Ich", + "II": "II", + "III": "III", + "IV": "IV", + "Invoice Details": "Rechnungsdetails", + "Quarter": "Quartal", + "Received Date": "Datum empfangen", + "Series": "Serie", + "State": "Zustand", + "Total Amount": "Gesamtbetrag", + "Total Invoiced Amount": "Insgesamt Rechnungsbetrag" +} \ No newline at end of file diff --git a/accounts/doctype/c_form_invoice_detail/locale/de-doc.json b/accounts/doctype/c_form_invoice_detail/locale/de-doc.json new file mode 100644 index 0000000000..a06624d967 --- /dev/null +++ b/accounts/doctype/c_form_invoice_detail/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "Konten", + "C-Form Invoice Detail": "C-Form Rechnungsdetails", + "Grand Total": "Grand Total", + "Invoice Date": "Rechnungsdatum", + "Invoice No": "Rechnungsnummer", + "Net Total": "Total Net", + "Territory": "Gebiet" +} \ No newline at end of file diff --git a/accounts/doctype/cost_center/locale/de-doc.json b/accounts/doctype/cost_center/locale/de-doc.json new file mode 100644 index 0000000000..94f0886c9c --- /dev/null +++ b/accounts/doctype/cost_center/locale/de-doc.json @@ -0,0 +1,22 @@ +{ + "Accounts": "Konten", + "Add rows to set annual budgets on Accounts.": "F\u00fcgen Sie Zeilen hinzu j\u00e4hrlichen Budgets f\u00fcr Konten festgelegt.", + "Budget": "Budget", + "Budget Details": "Budget Einzelheiten", + "Company": "Firma", + "Cost Center": "Kostenstellenrechnung", + "Cost Center Details": "Kosten Center Details", + "Cost Center Name": "Kosten Center Name", + "Define Budget for this Cost Center. To set budget action, see Company Master": "Definieren Budget f\u00fcr diese Kostenstelle. Um Budget Aktion finden Sie unter Firma Master ", + "Distribution Id": "Verteilung Id", + "Group": "Gruppe", + "Group or Ledger": "Gruppe oder Ledger", + "Ledger": "Hauptbuch", + "Parent Cost Center": "Eltern Kostenstellenrechnung", + "Select Budget Distribution, if you want to track based on seasonality.": "W\u00e4hlen Budget Distribution, wenn Sie basierend auf Saisonalit\u00e4t verfolgen m\u00f6chten.", + "Track separate Income and Expense for product verticals or divisions.": "Verfolgen separaten Ertr\u00e4ge und Aufwendungen f\u00fcr die Produktentwicklung Branchen oder Gesch\u00e4ftsbereichen.", + "Trash Reason": "Trash Reason", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "rgt" +} \ No newline at end of file diff --git a/accounts/doctype/fiscal_year/locale/_messages_doc.json b/accounts/doctype/fiscal_year/locale/_messages_doc.json index 07be4e630c..450be4aa78 100644 --- a/accounts/doctype/fiscal_year/locale/_messages_doc.json +++ b/accounts/doctype/fiscal_year/locale/_messages_doc.json @@ -2,10 +2,10 @@ "Trash Reason", "No", "For e.g. 2012, 2012-13", - "Year Name", "Fiscal Year Details", "Fiscal Year", "Accounts", + "Year Name", "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.", "Year Start Date", "Yes", diff --git a/accounts/doctype/fiscal_year/locale/de-doc.json b/accounts/doctype/fiscal_year/locale/de-doc.json new file mode 100644 index 0000000000..352b0d4b85 --- /dev/null +++ b/accounts/doctype/fiscal_year/locale/de-doc.json @@ -0,0 +1,14 @@ +{ + "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.": "** Gesch\u00e4ftsjahr ** ein Gesch\u00e4ftsjahr. Alle Buchungen und anderen wichtigen Transaktionen gegen ** Gesch\u00e4ftsjahr ** verfolgt.", + "Accounts": "Konten", + "Entries are not allowed against this Fiscal Year if the year is closed.": "Die Eintr\u00e4ge sind nicht gegen diese Gesch\u00e4ftsjahr zul\u00e4ssig, wenn die Jahre geschlossen ist.", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Fiscal Year Details": "Gesch\u00e4ftsjahr Einzelheiten", + "For e.g. 2012, 2012-13": "F\u00fcr z.B. 2012, 2012-13", + "No": "Auf", + "Trash Reason": "Trash Reason", + "Year Closed": "Jahr geschlossen", + "Year Name": "Jahr Name", + "Year Start Date": "Jahr Startdatum", + "Yes": "Ja" +} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/_messages_doc.json b/accounts/doctype/gl_control/locale/_messages_doc.json index 09c89e5cd1..e7bfed9bec 100644 --- a/accounts/doctype/gl_control/locale/_messages_doc.json +++ b/accounts/doctype/gl_control/locale/_messages_doc.json @@ -1,4 +1,4 @@ [ - "Accounts", - "GL Control" + "GL Control", + "Accounts" ] \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/de-doc.json b/accounts/doctype/gl_control/locale/de-doc.json new file mode 100644 index 0000000000..39eaf86a5e --- /dev/null +++ b/accounts/doctype/gl_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "Konten", + "GL Control": "GL Steuerung" +} \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/_messages_doc.json b/accounts/doctype/gl_entry/locale/_messages_doc.json index 9de3b0b534..9bf382ef9c 100644 --- a/accounts/doctype/gl_entry/locale/_messages_doc.json +++ b/accounts/doctype/gl_entry/locale/_messages_doc.json @@ -8,7 +8,7 @@ "Aging Date", "Journal Voucher", "Remarks", - "Accounts", + "Sales Invoice", "Purchase Invoice", "GL Entry", "Posting Date", @@ -23,7 +23,7 @@ "The date at which current entry is made in system.", "Transaction Date", "The date at which current entry will get or has actually executed.", - "Sales Invoice", + "Accounts", "Yes", "Company" ] \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/de-doc.json b/accounts/doctype/gl_entry/locale/de-doc.json new file mode 100644 index 0000000000..80ea4d7077 --- /dev/null +++ b/accounts/doctype/gl_entry/locale/de-doc.json @@ -0,0 +1,29 @@ +{ + "Account": "Konto", + "Accounts": "Konten", + "Against": "Gegen", + "Against Voucher": "Gegen Gutschein", + "Against Voucher Type": "Gegen Gutschein Type", + "Aging Date": "Aging Datum", + "Company": "Firma", + "Cost Center": "Kostenstellenrechnung", + "Credit Amt": "Kredit-Amt", + "Debit Amt": "Debit Amt", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "GL Entry": "GL Eintrag", + "Is Advance": "Ist Advance", + "Is Cancelled": "Wird abgebrochen", + "Is Opening": "Er\u00f6ffnet", + "Journal Voucher": "Journal Gutschein", + "No": "Auf", + "Posting Date": "Buchungsdatum", + "Purchase Invoice": "Kaufrechnung", + "Remarks": "Bemerkungen", + "Sales Invoice": "Sales Invoice", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "Transaction Date": "Transaction Datum", + "Voucher No": "Gutschein Nein", + "Voucher Type": "Gutschein Type", + "Yes": "Ja" +} \ No newline at end of file diff --git a/accounts/doctype/gl_entry/locale/de-py.json b/accounts/doctype/gl_entry/locale/de-py.json new file mode 100644 index 0000000000..392ee6e611 --- /dev/null +++ b/accounts/doctype/gl_entry/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "For opening balance entry account can not be a PL account": "F\u00fcr Er\u00f6ffnungsbilanz Eintrag Konto kann nicht ein PL-Konto sein" +} \ No newline at end of file diff --git a/accounts/doctype/journal_voucher/locale/_messages_doc.json b/accounts/doctype/journal_voucher/locale/_messages_doc.json index 092f7e3330..5876abe2a3 100644 --- a/accounts/doctype/journal_voucher/locale/_messages_doc.json +++ b/accounts/doctype/journal_voucher/locale/_messages_doc.json @@ -15,7 +15,6 @@ "Journal Voucher", "Make Difference Entry", "Entries", - "Write Off Amount <=", "More Info", "Difference", "Total Credit", @@ -30,6 +29,7 @@ "For opening invoice entry, this date will reflect in the period-wise aging report.", "Total Debit", "Debit Note", + "Write Off Amount <=", "Accounts Payable", "Bill No", "User Remark", diff --git a/accounts/doctype/journal_voucher/locale/de-doc.json b/accounts/doctype/journal_voucher/locale/de-doc.json new file mode 100644 index 0000000000..d3b2d9494c --- /dev/null +++ b/accounts/doctype/journal_voucher/locale/de-doc.json @@ -0,0 +1,57 @@ +{ + "Accounts": "Konten", + "Accounts Payable": "Kreditorenbuchhaltung", + "Accounts Receivable": "Debitorenbuchhaltung", + "Aging Date": "Aging Datum", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Bank Voucher": "Bankgutschein", + "Bill Date": "Bill Datum", + "Bill No": "Bill No", + "Cancel Reason": "Abbrechen Reason", + "Cash Voucher": "Cash Gutschein", + "Clearance Date": "Clearance Datum", + "Company": "Firma", + "Contra Voucher": "Contra Gutschein", + "Credit Card Voucher": "Credit Card Gutschein", + "Credit Note": "Gutschrift", + "Debit Note": "Lastschrift", + "Difference": "Unterschied", + "Due Date": "Due Date", + "Entries": "Eintr\u00e4ge", + "Excise Voucher": "Excise Gutschein", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "For opening invoice entry, this date will reflect in the period-wise aging report.": "Zum \u00d6ffnen Rechnungserfassung, wird dieses Datum in der Zeit-weise alternden Berichts anzupassen.", + "Get Outstanding Invoices": "Holen Ausstehende Rechnungen", + "Is Opening": "Er\u00f6ffnet", + "JV": "JV", + "Journal Entries": "Journal Entries", + "Journal Entry": "Journal Entry", + "Journal Voucher": "Journal Gutschein", + "Make Difference Entry": "Machen Difference Eintrag", + "More Info": "Mehr Info", + "No": "Auf", + "Pay To / Recd From": "Pay To / From RECD", + "Posting Date": "Buchungsdatum", + "Reference": "Referenz", + "Reference Date": "Stichtag", + "Reference Number": "Reference Number", + "Remark": "Bemerkung", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Series": "Serie", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Total Amount": "Gesamtbetrag", + "Total Amount in Words": "Insgesamt Betrag in Worten", + "Total Credit": "Insgesamt Kredit", + "Total Debit": "Insgesamt Debit", + "User Remark": "Benutzer Bemerkung", + "User Remark will be added to Auto Remark": "Benutzer Bemerkung auf Auto Bemerkung hinzugef\u00fcgt werden", + "Voucher Type": "Gutschein Type", + "Write Off Amount <=": "Write Off Betrag <=", + "Write Off Based On": "Write Off Based On", + "Write Off Voucher": "Write Off Gutschein", + "Yes": "Ja", + "eg. Cheque Number": "zB. Scheck-Nummer" +} \ No newline at end of file diff --git a/accounts/doctype/journal_voucher_detail/locale/_messages_doc.json b/accounts/doctype/journal_voucher_detail/locale/_messages_doc.json index c3d2225342..8e8fff4449 100644 --- a/accounts/doctype/journal_voucher_detail/locale/_messages_doc.json +++ b/accounts/doctype/journal_voucher_detail/locale/_messages_doc.json @@ -1,15 +1,15 @@ [ "Against Journal Voucher", "Account", - "No", + "Credit", "Against Sales Invoice", + "No", "Cost Center", "Account Balance", - "Is Advance", - "Credit", + "Journal Voucher Detail", "Accounts", "Debit", - "Journal Voucher Detail", + "Is Advance", "Yes", "Against Purchase Invoice", "Against Account" diff --git a/accounts/doctype/journal_voucher_detail/locale/de-doc.json b/accounts/doctype/journal_voucher_detail/locale/de-doc.json new file mode 100644 index 0000000000..4144ab576f --- /dev/null +++ b/accounts/doctype/journal_voucher_detail/locale/de-doc.json @@ -0,0 +1,16 @@ +{ + "Account": "Konto", + "Account Balance": "Kontostand", + "Accounts": "Konten", + "Against Account": "Vor Konto", + "Against Journal Voucher": "Vor Journal Gutschein", + "Against Purchase Invoice": "Vor Kaufrechnung", + "Against Sales Invoice": "Vor Sales Invoice", + "Cost Center": "Kostenstellenrechnung", + "Credit": "Kredit", + "Debit": "Soll", + "Is Advance": "Ist Advance", + "Journal Voucher Detail": "Journal Voucher Detail", + "No": "Auf", + "Yes": "Ja" +} \ No newline at end of file diff --git a/accounts/doctype/mis_control/locale/de-doc.json b/accounts/doctype/mis_control/locale/de-doc.json new file mode 100644 index 0000000000..61863db6c5 --- /dev/null +++ b/accounts/doctype/mis_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "Konten", + "MIS Control": "MIS Kontrolle" +} \ No newline at end of file diff --git a/accounts/doctype/mode_of_payment/locale/de-doc.json b/accounts/doctype/mode_of_payment/locale/de-doc.json new file mode 100644 index 0000000000..31a38cc5a6 --- /dev/null +++ b/accounts/doctype/mode_of_payment/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Accounts": "Konten", + "Company": "Firma", + "Default Account": "Default-Konto", + "Default Bank / Cash account will be automatically updated in POS Invoice when this mode is selected.": "Standard Bank / Cash-Konto werden automatisch in POS Rechnung aktualisiert werden, wenn dieser Modus ausgew\u00e4hlt ist.", + "Mode of Payment": "Zahlungsweise" +} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json b/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json index 25f36272b0..ee7393edbd 100644 --- a/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json +++ b/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json @@ -1,5 +1,5 @@ [ - "Accounts", + "Multi Ledger Report Detail", "Account", - "Multi Ledger Report Detail" + "Accounts" ] \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/de-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/de-doc.json new file mode 100644 index 0000000000..c7f03178a5 --- /dev/null +++ b/accounts/doctype/multi_ledger_report_detail/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Account": "Konto", + "Accounts": "Konten", + "Multi Ledger Report Detail": "Multi Ledger Detail Report" +} \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool/locale/_messages_doc.json b/accounts/doctype/payment_to_invoice_matching_tool/locale/_messages_doc.json index 560ec21ea5..9b2ee61a6e 100644 --- a/accounts/doctype/payment_to_invoice_matching_tool/locale/_messages_doc.json +++ b/accounts/doctype/payment_to_invoice_matching_tool/locale/_messages_doc.json @@ -7,7 +7,7 @@ "Journal Voucher", "Payment to Invoice Matching Tool", "Filter By Date", - "Accounts", + "Sales Invoice", "Purchase Invoice", "Amount >=", "Account", @@ -19,7 +19,7 @@ "Help HTML", "Voucher No", "Filter By Amount", - "Sales Invoice", + "Accounts", "Total Amount", "Allocate" ] \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool/locale/de-doc.json b/accounts/doctype/payment_to_invoice_matching_tool/locale/de-doc.json new file mode 100644 index 0000000000..2389a28516 --- /dev/null +++ b/accounts/doctype/payment_to_invoice_matching_tool/locale/de-doc.json @@ -0,0 +1,25 @@ +{ + "Account": "Konto", + "Account Type": "Kontotyp", + "Accounts": "Konten", + "Allocate": "Zuweisen", + "Amount <=": "Betrag <=", + "Amount >=": "Betrag> =", + "Company": "Firma", + "Filter By Amount": "Filtern nach Betrag", + "Filter By Date": "Nach Datum filtern", + "From Date": "Von Datum", + "Help HTML": "Helfen Sie HTML", + "Journal Voucher": "Journal Gutschein", + "Outstanding Amount": "Ausstehenden Betrag", + "Payment Entries": "Payment Eintr\u00e4ge", + "Payment to Invoice Matching Tool": "Zahlung an Rechnung Matching-Tool", + "Pull Payment Entries": "Ziehen Sie Payment Eintr\u00e4ge", + "Purchase Invoice": "Kaufrechnung", + "Sales Invoice": "Sales Invoice", + "To Date": "To Date", + "Total Amount": "Gesamtbetrag", + "Update allocated amount in the above table and then click \"Allocate\" button": "Aktualisieren Zuteilungsbetrag in der obigen Tabelle und klicken Sie dann auf \"Allocate\"-Taste", + "Voucher No": "Gutschein Nein", + "Voucher Type": "Gutschein Type" +} \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/_messages_doc.json b/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/_messages_doc.json index 6ca7b70e38..9a8ebb0ec3 100644 --- a/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/_messages_doc.json +++ b/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/_messages_doc.json @@ -4,8 +4,8 @@ "Unmatched Amount", "Total Amount", "Payment to Invoice Matching Tool Detail", - "Accounts", "Remarks", + "Accounts", "Voucher Detail No", "Posting Date", "Against Account" diff --git a/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/de-doc.json b/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/de-doc.json new file mode 100644 index 0000000000..63664dfa07 --- /dev/null +++ b/accounts/doctype/payment_to_invoice_matching_tool_detail/locale/de-doc.json @@ -0,0 +1,12 @@ +{ + "Accounts": "Konten", + "Against Account": "Vor Konto", + "Allocated Amount": "Zugeteilten Betrag", + "Payment to Invoice Matching Tool Detail": "Zahlung an Rechnung Matching Werkzeug-Detail", + "Posting Date": "Buchungsdatum", + "Remarks": "Bemerkungen", + "Total Amount": "Gesamtbetrag", + "Unmatched Amount": "Un\u00fcbertroffene Betrag", + "Voucher Detail No": "Gutschein Detailaufnahme", + "Voucher No": "Gutschein Nein" +} \ No newline at end of file diff --git a/accounts/doctype/period_closing_voucher/locale/_messages_doc.json b/accounts/doctype/period_closing_voucher/locale/_messages_doc.json index b5caecc73a..c57e9a1de6 100644 --- a/accounts/doctype/period_closing_voucher/locale/_messages_doc.json +++ b/accounts/doctype/period_closing_voucher/locale/_messages_doc.json @@ -6,9 +6,9 @@ "Closing Account Head", "Company", "Amended From", + "Remarks", "Accounts", "Period Closing Voucher", - "Remarks", "Closing Fiscal Year", "Posting Date" ] \ No newline at end of file diff --git a/accounts/doctype/period_closing_voucher/locale/de-doc.json b/accounts/doctype/period_closing_voucher/locale/de-doc.json new file mode 100644 index 0000000000..481fbb4ddc --- /dev/null +++ b/accounts/doctype/period_closing_voucher/locale/de-doc.json @@ -0,0 +1,14 @@ +{ + "Accounts": "Konten", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Cancel Reason": "Abbrechen Reason", + "Closing Account Head": "Konto schlie\u00dfen Leiter", + "Closing Fiscal Year": "Schlie\u00dfen Gesch\u00e4ftsjahr", + "CoA Help": "CoA Hilfe", + "Company": "Firma", + "Period Closing Voucher": "Periodenverschiebung Gutschein", + "Posting Date": "Buchungsdatum", + "Remarks": "Bemerkungen", + "Transaction Date": "Transaction Datum" +} \ No newline at end of file diff --git a/accounts/doctype/pos_setting/locale/_messages_doc.json b/accounts/doctype/pos_setting/locale/_messages_doc.json index 9d0814fefe..22a20b7166 100644 --- a/accounts/doctype/pos_setting/locale/_messages_doc.json +++ b/accounts/doctype/pos_setting/locale/_messages_doc.json @@ -1,5 +1,6 @@ [ "Conversion Rate", + "Letter Head", "Select Print Heading", "Terms and Conditions", "POS Setting", @@ -7,13 +8,12 @@ "Company", "Cost Center", "Charge", - "Letter Head", + "Warehouse", "Currency", "Cash/Bank Account", "Accounts", "User", "Income Account", - "Warehouse", "Territory", "Customer Account", "Price List" diff --git a/accounts/doctype/pos_setting/locale/de-doc.json b/accounts/doctype/pos_setting/locale/de-doc.json new file mode 100644 index 0000000000..37b138a8ea --- /dev/null +++ b/accounts/doctype/pos_setting/locale/de-doc.json @@ -0,0 +1,20 @@ +{ + "Accounts": "Konten", + "Cash/Bank Account": "Cash / Bank Account", + "Charge": "Ladung", + "Company": "Firma", + "Conversion Rate": "Conversion Rate", + "Cost Center": "Kostenstellenrechnung", + "Currency": "W\u00e4hrung", + "Customer Account": "Kundenkonto", + "Income Account": "Income Konto", + "Letter Head": "Briefkopf", + "POS Setting": "POS Setting", + "Price List": "Preisliste", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Series": "Serie", + "Terms and Conditions": "AGB", + "Territory": "Gebiet", + "User": "Benutzer", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/locale/_messages_doc.json b/accounts/doctype/purchase_invoice/locale/_messages_doc.json index 9de230e498..326ff24066 100644 --- a/accounts/doctype/purchase_invoice/locale/_messages_doc.json +++ b/accounts/doctype/purchase_invoice/locale/_messages_doc.json @@ -10,6 +10,7 @@ "Totals", "Supplier Address", "Net Total (Import)", + "Grand Total (Import)", "Select Items from Purchase Order", "Credit To", "Supplier", @@ -26,12 +27,10 @@ "Will be calculated automatically when you enter the details", "Amended From", "Taxes and Charges Deducted", - "Yes", "Get Items", "Tax Calculation", "Purchase Receipt", "Entries", - "Remarks", "Purchase Taxes and Charges", "Cancel Reason", "Purchase Invoice", @@ -50,6 +49,7 @@ "Total Advance", "Taxes", "Purchase Order", + "Remarks", "Outstanding Amount", "Bill No", "In Words", @@ -75,7 +75,7 @@ "Accounts", "The rate at which Bill Currency is converted into company's base currency", "Series", - "Grand Total (Import)", + "Yes", "Recalculate", "Total Tax", "Company", diff --git a/accounts/doctype/purchase_invoice/locale/de-doc.json b/accounts/doctype/purchase_invoice/locale/de-doc.json new file mode 100644 index 0000000000..81ead1348b --- /dev/null +++ b/accounts/doctype/purchase_invoice/locale/de-doc.json @@ -0,0 +1,84 @@ +{ + "Accounts": "Konten", + "Add / Edit Taxes and Charges": "Hinzuf\u00fcgen / Bearbeiten Steuern und Abgaben", + "Address": "Adresse", + "Advances": "Advances", + "Against Expense Account": "Vor Expense Konto", + "Aging Date": "Aging Datum", + "Amended From": "Ge\u00e4ndert von", + "BILL": "BILL", + "BILLJ": "BILLJ", + "Bill Date": "Bill Datum", + "Bill No": "Bill No", + "Calculate Tax": "Steuer rechnen", + "Cancel Reason": "Abbrechen Reason", + "Company": "Firma", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "Betrachten Sie diese Preisliste f\u00fcr das Abrufen bewerten. (Nur die haben \"f\u00fcr den Kauf\", wie gepr\u00fcft)", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Credit To": "Kredite an", + "Currency": "W\u00e4hrung", + "Currency & Price List": "W\u00e4hrung & Preisliste", + "Due Date": "Due Date", + "Entries": "Eintr\u00e4ge", + "Exchange Rate": "Wechselkurs", + "File List": "Dateiliste", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Advances Paid": "Holen Geleistete", + "Get Items": "Holen Artikel", + "Get Tax Detail": "Holen MwSt. Details", + "Grand Total": "Grand Total", + "Grand Total (Import)": "Grand Total (Import)", + "If not applicable please enter: NA": "Soweit dies nicht zutrifft, geben Sie bitte: NA", + "In Words": "In Worte", + "In Words (Import)": "In Words (Import)", + "In Words will be visible once you save the Purchase Invoice.": "In Worte sichtbar sein wird, wenn Sie den Kaufbeleg speichern.", + "Is Opening": "Er\u00f6ffnet", + "Items": "Artikel", + "Mobile No": "In Mobile", + "Mode of Payment": "Zahlungsweise", + "More Info": "Mehr Info", + "Name": "Name", + "Net Total": "Total Net", + "Net Total (Import)": "Net Total (Import)", + "No": "Auf", + "Outstanding Amount": "Ausstehenden Betrag", + "Posting Date": "Buchungsdatum", + "Price List": "Preisliste", + "Price List Currency": "W\u00e4hrung Preisliste", + "Price List Exchange Rate": "Preisliste Wechselkurs", + "Purchase Invoice": "Kaufrechnung", + "Purchase Invoice Advances": "Kaufrechnung Advances", + "Purchase Order": "Auftragsbest\u00e4tigung", + "Purchase Receipt": "Kaufbeleg", + "Purchase Taxes and Charges": "Purchase Steuern und Abgaben", + "Recalculate": "Recalculate", + "Remarks": "Bemerkungen", + "Select Items from Purchase Order": "W\u00e4hlen Sie Elemente aus Purchase Order", + "Select Items from Purchase Receipt": "W\u00e4hlen Sie Elemente aus Kaufbeleg", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Series": "Serie", + "Supplier": "Lieferant", + "Supplier Address": "Lieferant Adresse", + "Tax Calculation": "Steuerberechnung", + "Taxes": "Steuern", + "Taxes and Charges Added": "Steuern und Abgaben am", + "Taxes and Charges Added (Import)": "Steuern und Geb\u00fchren Added (Import)", + "Taxes and Charges Deducted": "Steuern und Geb\u00fchren Abgezogen", + "Taxes and Charges Deducted (Import)": "Steuern und Geb\u00fchren abgezogen (Import)", + "The account to which you will pay (have paid) the money to.": "Das Konto, auf die Sie bezahlen (bezahlt) das Geld.", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "The rate at which Bill Currency is converted into company's base currency": "Die Rate, mit der Bill W\u00e4hrung in Unternehmen Basisw\u00e4hrung umgewandelt wird", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Total Advance": "Insgesamt Geleistete", + "Total Amount To Pay": "Insgesamt zu zahlenden Betrag", + "Total Tax": "Total Tax", + "Totals": "Totals", + "Will be calculated automatically when you enter the details": "Wird automatisch berechnet, wenn Sie die Daten eingeben", + "Write Off Account": "Write Off Konto", + "Write Off Amount": "Write Off Betrag", + "Write Off Cost Center": "Write Off Kostenstellenrechnung", + "Yes": "Ja" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/locale/de-py.json b/accounts/doctype/purchase_invoice/locale/de-py.json new file mode 100644 index 0000000000..8bbfd97526 --- /dev/null +++ b/accounts/doctype/purchase_invoice/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "Please enter Bill Date": "Bitte geben Sie Bill Datum" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_advance/locale/_messages_doc.json b/accounts/doctype/purchase_invoice_advance/locale/_messages_doc.json index 4c938f40e9..0bb52e8461 100644 --- a/accounts/doctype/purchase_invoice_advance/locale/_messages_doc.json +++ b/accounts/doctype/purchase_invoice_advance/locale/_messages_doc.json @@ -3,7 +3,7 @@ "Allocated Amount", "Journal Voucher Detail No", "Journal Voucher", - "Accounts", "Remarks", + "Accounts", "Purchase Invoice Advance" ] \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_advance/locale/de-doc.json b/accounts/doctype/purchase_invoice_advance/locale/de-doc.json new file mode 100644 index 0000000000..13e6c813b2 --- /dev/null +++ b/accounts/doctype/purchase_invoice_advance/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "Konten", + "Advance Amount": "Voraus Betrag", + "Allocated Amount": "Zugeteilten Betrag", + "Journal Voucher": "Journal Gutschein", + "Journal Voucher Detail No": "In Journal Voucher Detail", + "Purchase Invoice Advance": "Advance Purchase Rechnung", + "Remarks": "Bemerkungen" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_item/locale/de-doc.json b/accounts/doctype/purchase_invoice_item/locale/de-doc.json new file mode 100644 index 0000000000..b62f81c9ca --- /dev/null +++ b/accounts/doctype/purchase_invoice_item/locale/de-doc.json @@ -0,0 +1,26 @@ +{ + "Accounts": "Konten", + "Amount": "Menge", + "Amount*": "Betrag *", + "Brand": "Marke", + "Cost Center": "Kostenstellenrechnung", + "Description": "Beschreibung", + "Discount %": "Discount%", + "Expense Head": "Expense Leiter", + "Item": "Artikel", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Item Tax Amount": "Artikel Steuerbetrag", + "Item Tax Rate": "Artikel Tax Rate", + "PR Detail": "PR Detailansicht", + "Page Break": "Seitenwechsel", + "Project Name": "Project Name", + "Pur Order": "Bestellen Pur", + "Pur Receipt": "Pur Receipt", + "Purchase Invoice Item": "Kaufrechnung Artikel", + "Purchase Order Item": "Bestellposition", + "Qty": "Menge", + "Rate*": "Rate *", + "Ref Rate*": "Ref Rate *", + "UOM": "UOM" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_taxes_and_charges/locale/_messages_doc.json b/accounts/doctype/purchase_taxes_and_charges/locale/_messages_doc.json index b13e0ed7b5..c6e9b519ad 100644 --- a/accounts/doctype/purchase_taxes_and_charges/locale/_messages_doc.json +++ b/accounts/doctype/purchase_taxes_and_charges/locale/_messages_doc.json @@ -4,17 +4,17 @@ "On Previous Row Amount", "Cost Center", "Add", - "Purchase Taxes and Charges", "Type", "Description", "Item Wise Tax Detail ", - "Accounts", + "Purchase Taxes and Charges", "Valuation", "Actual", "Tax Amount", "Amount", "Deduct", "Add or Deduct", + "Accounts", "Enter Row", "Cheating Field\nPlease do not delete ", "Parenttype", diff --git a/accounts/doctype/purchase_taxes_and_charges/locale/de-doc.json b/accounts/doctype/purchase_taxes_and_charges/locale/de-doc.json new file mode 100644 index 0000000000..d7abe5a581 --- /dev/null +++ b/accounts/doctype/purchase_taxes_and_charges/locale/de-doc.json @@ -0,0 +1,25 @@ +{ + "Account Head": "Konto Leiter", + "Accounts": "Konten", + "Actual": "Tats\u00e4chlich", + "Add": "Hinzuf\u00fcgen", + "Add or Deduct": "Hinzuf\u00fcgen oder abziehen", + "Amount": "Menge", + "Consider Tax or Charge for": "Betrachten Sie Steuern oder Geb\u00fchren f\u00fcr die", + "Cost Center": "Kostenstellenrechnung", + "Deduct": "Abziehen", + "Description": "Beschreibung", + "Enter Row": "Geben Row", + "On Net Total": "On Net Total", + "On Previous Row Amount": "Auf Previous Row Betrag", + "On Previous Row Total": "Auf Previous Row insgesamt", + "Parenttype": "ParentType", + "Purchase Taxes and Charges": "Purchase Steuern und Abgaben", + "Rate": "Rate", + "Tax Amount": "Steuerbetrag", + "Total": "Gesamt", + "Total +Tax": "Total + MwSt.", + "Type": "Typ", + "Valuation": "Bewertung", + "Valuation and Total": "Bewertung und insgesamt" +} \ No newline at end of file diff --git a/accounts/doctype/purchase_taxes_and_charges_master/locale/de-doc.json b/accounts/doctype/purchase_taxes_and_charges_master/locale/de-doc.json new file mode 100644 index 0000000000..8ef07e5f0a --- /dev/null +++ b/accounts/doctype/purchase_taxes_and_charges_master/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "Accounts": "Konten", + "Company": "Firma", + "Default": "Default", + "Purchase Taxes and Charges": "Purchase Steuern und Abgaben", + "Purchase Taxes and Charges Master": "Steuern und Geb\u00fchren Meister Kauf", + "Title": "Titel" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/locale/_messages_doc.json b/accounts/doctype/sales_invoice/locale/_messages_doc.json index 88e5fe6631..47479e7417 100644 --- a/accounts/doctype/sales_invoice/locale/_messages_doc.json +++ b/accounts/doctype/sales_invoice/locale/_messages_doc.json @@ -33,7 +33,7 @@ "Conversion Rate", "Reference", "Campaign", - "The date at which current entry will get or has actually executed.", + "The account to which you will pay (have paid) the money to.", "More Info", "C-Form Applicable", "Paid Amount", @@ -61,7 +61,7 @@ "The unique id for tracking all recurring invoices.\u00a0It is generated on submit.", "The date at which current entry is corrected in the system.", "Gross Profit (%)", - "Sales Invoice", + "Accounts", "Rounded Total", "To manage multiple series please go to Setup > Manage Series", "Items", @@ -70,7 +70,6 @@ "Contact", "Recurring Id", "INV/10-11/", - "Accounts", "Is Opening", "Total Commission", "INV", @@ -85,6 +84,7 @@ "Rounded Total (Export)", "Totals", "In Words (Export)", + "Sales Invoice", "Quarterly", "Contact Info", "Select the currency in which price list is maintained", @@ -110,8 +110,8 @@ "Customer Group", "Mode of Payment", "Basic Info", + "The date at which current entry will get or has actually executed.", "Next Date", - "The account to which you will pay (have paid) the money to.", "Repeat on Day of Month", "Convert into Recurring Invoice", "Taxes and Charges Calculation", diff --git a/accounts/doctype/sales_invoice/locale/de-doc.json b/accounts/doctype/sales_invoice/locale/de-doc.json new file mode 100644 index 0000000000..e762052127 --- /dev/null +++ b/accounts/doctype/sales_invoice/locale/de-doc.json @@ -0,0 +1,141 @@ +{ + "Accounts": "Konten", + "Address": "Adresse", + "Advances": "Advances", + "Advertisement": "Anzeige", + "Against Income Account": "Vor Income Konto", + "Aging Date": "Aging Datum", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Basic Info": "Basic Info", + "C-Form Applicable": "C-Form,", + "C-Form No": "C-Form nicht", + "Calculate Taxes and Charges": "Berechnen Sie Steuern und Abgaben", + "Campaign": "Kampagne", + "Cancel Reason": "Abbrechen Reason", + "Cash/Bank Account": "Cash / Bank Account", + "Check if recurring invoice, uncheck to stop recurring or put proper End Date": "Pr\u00fcfen Sie, ob wiederkehrende Rechnung, deaktivieren zu stoppen wiederkehrende oder legen richtigen Enddatum", + "Cold Calling": "Cold Calling", + "Commission Rate (%)": "Kommission Rate (%)", + "Company": "Firma", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Conversion Rate": "Conversion Rate", + "Convert into Recurring Invoice": "Konvertieren in Wiederkehrende Rechnung", + "Currency": "W\u00e4hrung", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Group": "Customer Group", + "Customer's Vendor": "Kunden Hersteller", + "Debit To": "Debit Um", + "Delivery Note": "Lieferschein", + "Due Date": "Due Date", + "End Date": "Enddatum", + "End date of current invoice's period": "Ende der laufenden Rechnung der Zeit", + "Enter email id separated by commas, invoice will be mailed automatically on particular date": "Geben Sie E-Mail-ID durch Kommata getrennt, wird Rechnung automatisch auf bestimmte Zeitpunkt zugeschickt", + "Enter the date by which payments from customer is expected against this invoice.": "Geben Sie das Datum der Zahlungen von Kunden gegen diese Rechnung erwartet wird.", + "Entries": "Eintr\u00e4ge", + "Exhibition": "Ausstellung", + "Existing Customer": "Bestehende Kunden", + "File List": "Dateiliste", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Advances Received": "Holen Erhaltene Anzahlungen", + "Get Items": "Holen Artikel", + "Get Taxes and Charges": "Holen Steuern und Abgaben", + "Get Terms and Conditions": "Holen AGB", + "Grand Total": "Grand Total", + "Grand Total (Export)": "Grand Total (Export)", + "Gross Profit": "Bruttogewinn", + "Gross Profit (%)": "Gross Profit (%)", + "Half-yearly": "Halbj\u00e4hrlich", + "INV": "INV", + "INV/10-11/": "INV/10-11 /", + "In Words": "In Worte", + "In Words (Export)": "In Words (Export)", + "In Words will be visible once you save the Sales Invoice.": "In Worte sichtbar sein wird, sobald Sie das Sales Invoice speichern.", + "Invoice Period From Date": "Rechnung ab Kaufdatum", + "Invoice Period To Date": "Rechnung Zeitraum To Date", + "Is Opening": "Er\u00f6ffnet", + "Is POS": "Ist POS", + "Items": "Artikel", + "Letter Head": "Briefkopf", + "Mass Mailing": "Mass Mailing", + "Mobile No": "In Mobile", + "Mode of Payment": "Zahlungsweise", + "Monthly": "Monatlich", + "More Info": "Mehr Info", + "Name": "Name", + "Net Total*": "* Net Total", + "Next Date": "N\u00e4chster Termin", + "No": "Auf", + "Notification Email Address": "Benachrichtigung per E-Mail-Adresse", + "Outstanding Amount": "Ausstehenden Betrag", + "Packing Details": "Verpackungs-Details", + "Packing List": "Packliste", + "Paid Amount": "Gezahlten Betrag", + "Payments": "Zahlungen", + "Posting Date": "Buchungsdatum", + "Posting Time": "Posting Zeit", + "Price List": "Preisliste", + "Price List Currency": "W\u00e4hrung Preisliste", + "Price List Currency Conversion Rate": "Preisliste Currency Conversion Rate", + "Price List and Currency": "Listenpreis und W\u00e4hrungsrechner", + "Project Name": "Project Name", + "Quarterly": "Viertelj\u00e4hrlich", + "Rate at which Customer Currency is converted to customer's base currency": "Kunden Rate, mit der W\u00e4hrung wird nach Kundenwunsch Basisw\u00e4hrung umgerechnet", + "Rate at which Price list currency is converted to customer's base currency": "Geschwindigkeit, mit der W\u00e4hrung der Preisliste des Kunden Basisw\u00e4hrung umgewandelt wird", + "Re-Calculate Values": "Neu berechnen Werte", + "Recurring Id": "Wiederkehrende Id", + "Recurring Invoice": "Wiederkehrende Rechnung", + "Recurring Type": "Wiederkehrende Typ", + "Reference": "Referenz", + "Remarks": "Bemerkungen", + "Repeat on Day of Month": "Wiederholen Sie auf Tag des Monats", + "Rounded Total": "Abgerundete insgesamt", + "Rounded Total (Export)": "Abgerundete Total (Export)", + "Sales BOM Help": "Vertrieb BOM Hilfe", + "Sales Invoice": "Sales Invoice", + "Sales Invoice Advance": "Sales Invoice Geleistete", + "Sales Order": "Sales Order", + "Sales Partner": "Vertriebspartner", + "Sales Team": "Sales Team", + "Sales Team1": "Vertrieb Team1", + "Select Items from Delivery Note": "W\u00e4hlen Sie Elemente aus Lieferschein", + "Select Items from Sales Order": "W\u00e4hlen Sie Objekte aus Kundenauftrag", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the currency in which price list is maintained": "W\u00e4hlen Sie die W\u00e4hrung, in der Preisliste wird beibehalten", + "Select the period when the invoice will be generated automatically": "W\u00e4hlen Sie den Zeitraum auf der Rechnung wird automatisch erzeugt werden", + "Series": "Serie", + "Source": "Quelle", + "Start date of current invoice's period": "Startdatum der laufenden Rechnung der Zeit", + "Supplier Reference": "Lieferant Reference", + "Taxes and Charges": "Steuern und Abgaben", + "Taxes and Charges Calculation": "Steuern und Geb\u00fchren Berechnung", + "Taxes and Charges1": "Steuern und Kosten1", + "Terms and Conditions": "AGB", + "Terms and Conditions Details": "AGB Einzelheiten", + "Terms and Conditions HTML": "AGB HTML", + "Territory": "Gebiet", + "The account to which you will pay (have paid) the money to.": "Das Konto, auf die Sie bezahlen (bezahlt) das Geld.", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "The date on which recurring invoice will be stop": "Der Tag, an dem wiederkehrende Rechnung werden aufh\u00f6ren wird", + "The day of the month on which auto invoice will be generated e.g. 05, 28 etc ": "Der Tag des Monats, an dem auto Rechnung generiert zB werden 05, 28 etc", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Total Advance": "Insgesamt Geleistete", + "Total Commission": "Gesamt Kommission", + "Total Taxes and Charges": "Insgesamt Steuern und Abgaben", + "Totals": "Totals", + "Track this Sales Invoice against any Project": "Verfolgen Sie diesen Sales Invoice gegen Projekt", + "Update Stock": "Aktualisieren Lager", + "Will be calculated automatically when you enter the details": "Wird automatisch berechnet, wenn Sie die Daten eingeben", + "Write Off Account": "Write Off Konto", + "Write Off Amount": "Write Off Betrag", + "Write Off Cost Center": "Write Off Kostenstellenrechnung", + "Write Off Outstanding Amount": "Write Off ausstehenden Betrag", + "Yearly": "J\u00e4hrlich", + "Yes": "Ja" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/locale/de-py.json b/accounts/doctype/sales_invoice/locale/de-py.json new file mode 100644 index 0000000000..42d59acc06 --- /dev/null +++ b/accounts/doctype/sales_invoice/locale/de-py.json @@ -0,0 +1,4 @@ +{ + ": Mandatory for a Recurring Invoice.": ": Obligatorisch f\u00fcr ein Recurring Invoice.", + "Invalid Email Address": "Ung\u00fcltige E-Mail-Adresse" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_advance/locale/_messages_doc.json b/accounts/doctype/sales_invoice_advance/locale/_messages_doc.json index 66c723235c..4169b1fc62 100644 --- a/accounts/doctype/sales_invoice_advance/locale/_messages_doc.json +++ b/accounts/doctype/sales_invoice_advance/locale/_messages_doc.json @@ -4,6 +4,6 @@ "Journal Voucher Detail No", "Journal Voucher", "Sales Invoice Advance", - "Accounts", - "Remarks" + "Remarks", + "Accounts" ] \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_advance/locale/de-doc.json b/accounts/doctype/sales_invoice_advance/locale/de-doc.json new file mode 100644 index 0000000000..0af7212d59 --- /dev/null +++ b/accounts/doctype/sales_invoice_advance/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Accounts": "Konten", + "Advance amount": "Vorschuss in H\u00f6he", + "Allocated amount": "Zugeteilten Betrag", + "Journal Voucher": "Journal Gutschein", + "Journal Voucher Detail No": "In Journal Voucher Detail", + "Remarks": "Bemerkungen", + "Sales Invoice Advance": "Sales Invoice Geleistete" +} \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_item/locale/de-doc.json b/accounts/doctype/sales_invoice_item/locale/de-doc.json new file mode 100644 index 0000000000..5280507f11 --- /dev/null +++ b/accounts/doctype/sales_invoice_item/locale/de-doc.json @@ -0,0 +1,33 @@ +{ + "Accounts": "Konten", + "Amount": "Menge", + "Amount*": "Betrag *", + "Available Qty at Warehouse": "Verf\u00fcgbare Menge bei Warehouse", + "Barcode": "Strichcode", + "Basic Rate": "Basic Rate", + "Basic Rate*": "Basic Rate *", + "Batch No": "Batch No", + "Brand Name": "Markenname", + "Clear Pending": "L\u00f6schen Pending", + "Cost Center": "Kostenstellenrechnung", + "Customer's Item Code": "Kunden Item Code", + "DN Detail": "DN Detailansicht", + "Delivered Qty": "Geliefert Menge", + "Delivery Note": "Lieferschein", + "Description": "Beschreibung", + "Discount (%)": "Rabatt (%)", + "Income Account": "Income Konto", + "Item": "Artikel", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Item Tax Rate": "Artikel Tax Rate", + "Page Break": "Seitenwechsel", + "Price List Rate": "Preis List", + "Price List Rate*": "Preis List *", + "Qty": "Menge", + "Sales Invoice Item": "Sales Invoice Artikel", + "Sales Order": "Sales Order", + "Serial No": "Serial In", + "UOM": "UOM", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges/locale/de-doc.json b/accounts/doctype/sales_taxes_and_charges/locale/de-doc.json new file mode 100644 index 0000000000..4a1792c48a --- /dev/null +++ b/accounts/doctype/sales_taxes_and_charges/locale/de-doc.json @@ -0,0 +1,21 @@ +{ + "Account Head": "Konto Leiter", + "Accounts": "Konten", + "Actual": "Tats\u00e4chlich", + "Amount": "Menge", + "Cost Center": "Kostenstellenrechnung", + "Description": "Beschreibung", + "Enter Row": "Geben Row", + "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount": "Wenn aktiviert, wird der Steuerbetrag als bereits in der Print Rate / Print Menge aufgenommen werden", + "Is this Tax included in Basic Rate?": "Wird diese Steuer in Basic Rate inbegriffen?", + "On Net Total": "On Net Total", + "On Previous Row Amount": "Auf Previous Row Betrag", + "On Previous Row Total": "Auf Previous Row insgesamt", + "Parenttype": "ParentType", + "Rate": "Rate", + "Sales Taxes and Charges": "Vertrieb Steuern und Abgaben", + "Total": "Gesamt", + "Total Amount": "Gesamtbetrag", + "Total Tax Amount": "Total Tax Amount", + "Type": "Typ" +} \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges_master/locale/de-doc.json b/accounts/doctype/sales_taxes_and_charges_master/locale/de-doc.json new file mode 100644 index 0000000000..42cd091d78 --- /dev/null +++ b/accounts/doctype/sales_taxes_and_charges_master/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "* Will be calculated in the transaction.": "* Wird in der Transaktion berechnet werden.", + "Accounts": "Konten", + "Company": "Firma", + "Default": "Default", + "Sales Taxes and Charges Master": "Vertrieb Steuern und Abgaben Meister", + "Title": "Titel" +} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/de-doc.json b/accounts/doctype/trend_analyzer_control/locale/de-doc.json new file mode 100644 index 0000000000..ef575dd584 --- /dev/null +++ b/accounts/doctype/trend_analyzer_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Accounts": "Konten", + "Trend Analyzer Control": "Trend Analyzer Steuerung" +} \ No newline at end of file diff --git a/accounts/locale/de-py.json b/accounts/locale/de-py.json new file mode 100644 index 0000000000..30a69ba456 --- /dev/null +++ b/accounts/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "not within Fiscal Year": "nicht innerhalb Gesch\u00e4ftsjahr" +} \ No newline at end of file diff --git a/accounts/module_def/accounts/locale/_messages_doc.json b/accounts/module_def/accounts/locale/_messages_doc.json index 912db812b9..3f8fcdcfcf 100644 --- a/accounts/module_def/accounts/locale/_messages_doc.json +++ b/accounts/module_def/accounts/locale/_messages_doc.json @@ -1,5 +1,4 @@ [ - "Trial Balance", "Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.\n10. Add or Deduct: Whether you want to add or deduct the tax.", "Voucher Import Tool", "Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.", @@ -9,10 +8,11 @@ "**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.\n\nTo distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**", "Financial Statements", "General Ledger", + "Accounts Home", "Ordered Items To Be Billed", "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.", "Financial Analytics", "Accounts Browser", "Heads (or groups) against which Accounting Entries are made and balances are maintained.", - "Accounts Home" + "Trial Balance" ] \ No newline at end of file diff --git a/accounts/module_def/accounts/locale/de-doc.json b/accounts/module_def/accounts/locale/de-doc.json new file mode 100644 index 0000000000..27cc23ed82 --- /dev/null +++ b/accounts/module_def/accounts/locale/de-doc.json @@ -0,0 +1,15 @@ +{ + "**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.": "** Gesch\u00e4ftsjahr ** ein Gesch\u00e4ftsjahr. Alle Buchungen und anderen wichtigen Transaktionen gegen ** Gesch\u00e4ftsjahr ** verfolgt.", + "Accounts Browser": "Konten Browser", + "Accounts Home": "Accounts Startseite", + "Delivered Items To Be Billed": "Liefergegenst\u00e4nde in Rechnung gestellt werden", + "Financial Analytics": "Financial Analytics", + "Financial Statements": "Financial Statements", + "General Ledger": "General Ledger", + "Gross Profit": "Bruttogewinn", + "Heads (or groups) against which Accounting Entries are made and balances are maintained.": "Heads (oder Gruppen), gegen die Accounting-Eintr\u00e4ge und sind Guthaben gehalten werden.", + "Ordered Items To Be Billed": "Bestellte Artikel in Rechnung gestellt werden", + "Track separate Income and Expense for product verticals or divisions.": "Verfolgen separaten Ertr\u00e4ge und Aufwendungen f\u00fcr die Produktentwicklung Branchen oder Gesch\u00e4ftsbereichen.", + "Trial Balance": "Rohbilanz", + "Voucher Import Tool": "Gutschein Import Tool" +} \ No newline at end of file diff --git a/accounts/page/accounts_home/locale/de-js.json b/accounts/page/accounts_home/locale/de-js.json new file mode 100644 index 0000000000..2bea89d442 --- /dev/null +++ b/accounts/page/accounts_home/locale/de-js.json @@ -0,0 +1,47 @@ +{ + "Accounting journal entries.": "Accounting Journaleintr\u00e4ge.", + "Analytics": "Analytics", + "Bank Reconciliation": "Kontenabstimmung", + "Bills raised by Suppliers.": "Bills erh\u00f6ht durch den Lieferanten.", + "Bills raised to Customers.": "Bills angehoben, um Kunden.", + "Budget Distribution": "Budget Verteilung", + "C-Form": "C-Form", + "Chart of Accounts": "Kontenplan", + "Chart of Cost Centers": "Abbildung von Kostenstellen", + "Delivered Items To Be Billed": "Liefergegenst\u00e4nde in Rechnung gestellt werden", + "Documents": "Unterlagen", + "Financial Analytics": "Financial Analytics", + "Financial Statements": "Financial Statements", + "General Ledger": "General Ledger", + "Gross Profit": "Bruttogewinn", + "Journal Voucher": "Journal Gutschein", + "Main Reports": "Haupt-Reports", + "Manage sales or purchase returns": "Verwalten Verkauf oder Kauf Renditen", + "Masters": "Masters", + "Match non-linked Invoices and Payments.": "Spiel nicht verkn\u00fcpften Rechnungen und Zahlungen.", + "Mode of Payment": "Zahlungsweise", + "Ordered Items To Be Billed": "Bestellte Artikel in Rechnung gestellt werden", + "Payment Reconciliation": "Payment Vers\u00f6hnung", + "Period Closing Voucher": "Periodenverschiebung Gutschein", + "Point-of-Sale Setting": "Point-of-Sale-Einstellung", + "Purchase Invoice": "Kaufrechnung", + "Purchase Taxes and Charges Master": "Steuern und Geb\u00fchren Meister Kauf", + "Reports": "Reports", + "Sales Invoice": "Sales Invoice", + "Sales Taxes and Charges Master": "Vertrieb Steuern und Abgaben Meister", + "Sales and Purchase Return Tool": "Sales and Purchase Return-Tool", + "Seasonality for setting budgets.": "Saisonalit\u00e4t setzt Budgets.", + "Setup": "Setup", + "Structure cost centers for budgeting.": "Structure Kostenstellen f\u00fcr die Budgetierung.", + "Structure of books of accounts.": "Struktur der B\u00fccher von Konten.", + "Tax Template for Purchase": "MwSt. Vorlage f\u00fcr Kauf", + "Tax Template for Sales": "MwSt. Template f\u00fcr Vertrieb", + "Template of terms or contract.": "Vorlage von Begriffen oder Vertrag.", + "Terms and Conditions Template": "AGB Template", + "Tools": "Werkzeuge", + "Trend Analyzer": "Trend Analyzer", + "Trial Balance": "Rohbilanz", + "Update bank payment dates with journals.": "Update Bank Zahlungstermine mit Zeitschriften.", + "Voucher Import Tool": "Gutschein Import Tool", + "e.g. Bank, Cash, Credit Card": "z.B. Bank, Bargeld, Kreditkarte" +} \ No newline at end of file diff --git a/buying/doctype/purchase_common/locale/de-doc.json b/buying/doctype/purchase_common/locale/de-doc.json new file mode 100644 index 0000000000..f7cd928fa0 --- /dev/null +++ b/buying/doctype/purchase_common/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Buying": "Kauf", + "Purchase Common": "Erwerb Eigener" +} \ No newline at end of file diff --git a/buying/doctype/purchase_order/locale/_messages_doc.json b/buying/doctype/purchase_order/locale/_messages_doc.json index 4da9445b92..31be1c1ade 100644 --- a/buying/doctype/purchase_order/locale/_messages_doc.json +++ b/buying/doctype/purchase_order/locale/_messages_doc.json @@ -21,7 +21,6 @@ "Currency & Price List", "More Info", "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.", - "Draft", "Net Total (Import)", "% Received", "Select Print Heading", @@ -52,6 +51,7 @@ "No", "Calculate Tax", "Totals", + "Draft", "Terms and Conditions HTML", "Status", "Cancel Reason", diff --git a/buying/doctype/purchase_order/locale/de-doc.json b/buying/doctype/purchase_order/locale/de-doc.json new file mode 100644 index 0000000000..91a955b75b --- /dev/null +++ b/buying/doctype/purchase_order/locale/de-doc.json @@ -0,0 +1,92 @@ +{ + "% Billed": "% Billed", + "% Received": "% Erhaltene", + "% of materials billed against this Purchase Order.": "% Der Materialien gegen diese Bestellung in Rechnung gestellt.", + "% of materials received against this Purchase Order": "% Der Materialien erhalten gegen diese Bestellung", + "Address": "Adresse", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Buying": "Kauf", + "Calculate Tax": "Steuer rechnen", + "Cancel Reason": "Abbrechen Reason", + "Cancelled": "Abgesagt", + "Company": "Firma", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "Betrachten Sie diese Preisliste f\u00fcr das Abrufen bewerten. (Nur die haben \"f\u00fcr den Kauf\", wie gepr\u00fcft)", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Currency": "W\u00e4hrung", + "Currency & Price List": "W\u00e4hrung & Preisliste", + "Draft": "Entwurf", + "Exchange Rate": "Wechselkurs", + "File List": "Dateiliste", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Items": "Holen Artikel", + "Get Last Purchase Rate": "Get Last Purchase Rate", + "Get Tax Detail": "Holen MwSt. Details", + "Get Terms and Conditions": "Holen AGB", + "Grand Total": "Grand Total", + "Grand Total (Import)": "Grand Total (Import)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "Wenn Sie ein Standard-Template in Kauf Steuern und Abgaben Meister erstellt haben, w\u00e4hlen Sie eine aus und klicken Sie auf den Button unten.", + "In Words": "In Worte", + "In Words will be visible once you save the Purchase Order.": "In Worte sichtbar sein wird, wenn Sie die Bestellung zu speichern.", + "In Words(Import)": "In Words (Import)", + "Instructions": "Anleitung", + "Is Subcontracted": "Ist Fremdleistungen", + "Items": "Artikel", + "Letter Head": "Briefkopf", + "Mobile No": "In Mobile", + "More Info": "Mehr Info", + "Name": "Name", + "Net Total (Import)": "Net Total (Import)", + "Net Total*": "* Net Total", + "No": "Auf", + "PO": "PO", + "Payment Terms": "Zahlungsbedingungen", + "Price List": "Preisliste", + "Price List Currency": "W\u00e4hrung Preisliste", + "Price List Exchange Rate": "Preisliste Wechselkurs", + "Purchase Order": "Auftragsbest\u00e4tigung", + "Purchase Order Date": "Bestelldatum", + "Purchase Order Items": "Bestellpositionen", + "Purchase Order Items Supplied": "Bestellung Lieferumfang", + "Purchase Taxes and Charges": "Purchase Steuern und Abgaben", + "Rate at which supplier's currency is converted to company's base currency": "Geschwindigkeit, mit der Lieferanten W\u00e4hrung Unternehmens Basisw\u00e4hrung umgewandelt wird", + "Raw Material Details": "Raw Material Einzelheiten", + "Re-Calculate Values": "Neu berechnen Werte", + "Ref SQ": "Ref SQ", + "Remarks": "Bemerkungen", + "Required raw materials issued to the supplier for producing a sub - contracted item.": "Erforderliche Rohstoffe Ausgestellt an den Lieferanten produziert eine sub - Vertragsgegenstand.", + "Rounded Total": "Abgerundete insgesamt", + "Select Material Request": "Markieren Sie das Material anfordern", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Select Supplier Quotation": "W\u00e4hlen Sie Lieferant Quotation", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the relevant company name if you have multiple companies": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben", + "Series": "Serie", + "Status": "Status", + "Stopped": "Gestoppt", + "Submitted": "Eingereicht", + "Supplier": "Lieferant", + "Supplier (vendor) name as entered in supplier master": "Lieferant (Kreditor) Namen wie im Lieferantenstamm eingetragen", + "Supplier Address": "Lieferant Adresse", + "Supplier's currency": "Lieferant W\u00e4hrung", + "Tax Calculation": "Steuerberechnung", + "Taxes": "Steuern", + "Taxes and Charges Added": "Steuern und Abgaben am", + "Taxes and Charges Added (Import)": "Steuern und Geb\u00fchren Added (Import)", + "Taxes and Charges Deducted": "Steuern und Geb\u00fchren Abgezogen", + "Taxes and Charges Deducted (Import)": "Steuern und Geb\u00fchren abgezogen (Import)", + "Terms and Conditions": "AGB", + "Terms and Conditions HTML": "AGB HTML", + "Terms and Conditions1": "Allgemeine Bedingungen1", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Total Tax*": "Total Tax *", + "Totals": "Totals", + "Yes": "Ja", + "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.": "Sie k\u00f6nnen eine Bestellung von mehreren Werkstoff Requests machen. Markieren Sie das Material Requests nacheinander aus und klicken Sie auf den Button unten.", + "You can make a purchase order from multiple Supplier Quotations. Select Supplier Quotations one by one and click on the button below.": "Sie k\u00f6nnen eine Bestellung von mehreren Lieferanten Angebote zu machen. W\u00e4hlen Sie Lieferant Zitate eins nach dem anderen, und klicken Sie auf den Button unten." +} \ No newline at end of file diff --git a/buying/doctype/purchase_order_item/locale/de-doc.json b/buying/doctype/purchase_order_item/locale/de-doc.json new file mode 100644 index 0000000000..ae04929661 --- /dev/null +++ b/buying/doctype/purchase_order_item/locale/de-doc.json @@ -0,0 +1,34 @@ +{ + "Amount": "Menge", + "Amount*": "Betrag *", + "Billed Quantity": "Angek\u00fcndigt Menge", + "Brand": "Marke", + "Buying": "Kauf", + "Description": "Beschreibung", + "Discount %": "Discount%", + "If Supplier Part Number exists for given Item, it gets stored here": "Wenn der Lieferant Teilenummer existiert f\u00fcr bestimmte Artikel, wird es hier gespeichert", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Item Tax Rate": "Artikel Tax Rate", + "Material Request Date": "Material Request Date", + "Material Request Detail No": "Material anfordern Im Detail", + "Material Request No": "Material anfordern On", + "Page Break": "Seitenwechsel", + "Prevdoc DocType": "Prevdoc DocType", + "Project Name": "Project Name", + "Purchase Order Item": "Bestellposition", + "Quantity": "Menge", + "Rate*": "Rate *", + "Received Qty": "Erhaltene Menge", + "Ref Rate*": "Ref Rate *", + "Reqd By Date": "Reqd Nach Datum", + "Stock Qty": "Lieferbar Menge", + "Stock UOM": "Lager UOM", + "Supplier Part Number": "Lieferant Teilenummer", + "Supplier Quotation": "Lieferant Angebot", + "Supplier Quotation Item": "Lieferant Angebotsposition", + "UOM": "UOM", + "UOM Conversion Factor": "UOM Umrechnungsfaktor", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/buying/doctype/purchase_order_item_supplied/locale/de-doc.json b/buying/doctype/purchase_order_item_supplied/locale/de-doc.json new file mode 100644 index 0000000000..bad67697d5 --- /dev/null +++ b/buying/doctype/purchase_order_item_supplied/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Amount": "Menge", + "BOM Detail No": "BOM Detailaufnahme", + "Buying": "Kauf", + "Conversion Factor": "Umrechnungsfaktor", + "Item Code": "Item Code", + "Purchase Order Item Supplied": "Bestellposition geliefert", + "Rate": "Rate", + "Raw Material Item Code": "Artikel Raw Material Code", + "Reference Name": "Reference Name", + "Required Qty": "Erw\u00fcnschte St\u00fcckzahl", + "Stock Uom": "Lager ME" +} \ No newline at end of file diff --git a/buying/doctype/purchase_receipt_item_supplied/locale/de-doc.json b/buying/doctype/purchase_receipt_item_supplied/locale/de-doc.json new file mode 100644 index 0000000000..8fe5454c21 --- /dev/null +++ b/buying/doctype/purchase_receipt_item_supplied/locale/de-doc.json @@ -0,0 +1,16 @@ +{ + "Amount": "Menge", + "BOM Detail No": "BOM Detailaufnahme", + "Buying": "Kauf", + "Consumed Qty": "Verbrauchte Menge", + "Conversion Factor": "Umrechnungsfaktor", + "Current Stock": "Aktuelle Stock", + "Description": "Beschreibung", + "Item Code": "Item Code", + "Purchase Receipt Item Supplied": "Kaufbeleg Liefergegenstand", + "Rate": "Rate", + "Raw Material Item Code": "Artikel Raw Material Code", + "Reference Name": "Reference Name", + "Required Qty": "Erw\u00fcnschte St\u00fcckzahl", + "Stock Uom": "Lager ME" +} \ No newline at end of file diff --git a/buying/doctype/purchase_request/locale/de-doc.json b/buying/doctype/purchase_request/locale/de-doc.json new file mode 100644 index 0000000000..7d05e3f57b --- /dev/null +++ b/buying/doctype/purchase_request/locale/de-doc.json @@ -0,0 +1,39 @@ +{ + "% Ordered": "% Geordnete", + "% of materials ordered against this Purchase Requisition": "% Der bestellten Materialien gegen diese Bestellanforderung", + "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template": "F\u00fcgen AGB f\u00fcr die Bestellanforderung. Sie k\u00f6nnen auch eine AGB-Master und verwenden Sie die Vorlage", + "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field": "Nach dem Abbruch der Bestellanforderung, wird ein Dialogfeld bitten Grund f\u00fcr die Stornierung, die in diesem Bereich reflektiert werden", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Buying": "Kauf", + "Cancel Reason": "Abbrechen Reason", + "Cancelled": "Abgesagt", + "Company": "Firma", + "Draft": "Entwurf", + "File List": "Dateiliste", + "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.": "Die Einreichung in Weitere Informationen \u00fcber die Bestellanforderung wird Ihnen helfen, Ihre Daten analysieren besser.", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Terms and Conditions": "Holen AGB", + "IDT": "IDT", + "Items": "Artikel", + "Letter Head": "Briefkopf", + "More Info": "Mehr Info", + "Name of the entity who has requested for the Purchase Requisition": "Name der Organisation, die f\u00fcr die Bestellanforderung angefordert hat", + "One or multiple Sales Order no which generated this Purchase Requisition": "Eine oder mehrere Sales Order zur Requisition, die diese generiert Kauf", + "Pull Sales Order Items": "Ziehen Sie Sales Order Artikel", + "Remarks": "Bemerkungen", + "Requested By": "Angefordert von", + "Sales Order No": "In Sales Order", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the relevant company name if you have multiple companies": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben", + "Series": "Serie", + "Status": "Status", + "Stopped": "Gestoppt", + "Submitted": "Eingereicht", + "Terms and Conditions": "AGB", + "Terms and Conditions Content": "AGB Inhalt", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Transaction Date": "Transaction Datum" +} \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/de-doc.json b/buying/doctype/purchase_request_item/locale/de-doc.json new file mode 100644 index 0000000000..6e5eff8979 --- /dev/null +++ b/buying/doctype/purchase_request_item/locale/de-doc.json @@ -0,0 +1,18 @@ +{ + "Brand": "Marke", + "Buying": "Kauf", + "Description": "Beschreibung", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Lead Time Date": "Lead Time Datum", + "Min Order Qty": "Mindestbestellmenge", + "Ordered Qty": "Bestellte Menge", + "Page Break": "Seitenwechsel", + "Projected Qty": "Prognostizierte Anzahl", + "Quantity": "Menge", + "Required Date": "Erforderlich Datum", + "Sales Order No": "In Sales Order", + "Stock UOM": "Lager UOM", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/buying/doctype/quality_inspection/locale/de-doc.json b/buying/doctype/quality_inspection/locale/de-doc.json new file mode 100644 index 0000000000..c73b891686 --- /dev/null +++ b/buying/doctype/quality_inspection/locale/de-doc.json @@ -0,0 +1,27 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Batch No": "Batch No", + "Buying": "Kauf", + "Delivery Note No": "Lieferschein Nein", + "Description": "Beschreibung", + "Get Specification Details": "Holen Sie Ausschreibungstexte", + "In Process": "In Process", + "Incoming": "Eingehende", + "Inspected By": "Gepr\u00fcft von", + "Inspection Type": "Pr\u00fcfart", + "Item Code": "Item Code", + "Item Serial No": "Artikel Serial In", + "Naming Series": "Benennen Series", + "Outgoing": "Abgehend", + "Purchase Receipt No": "Kaufbeleg", + "QA Inspection": "QA Inspection", + "QAI/11-12/": "QAI/11-12 /", + "Quality Inspection": "Qualit\u00e4tspr\u00fcfung", + "Quality Inspection Readings": "Qualit\u00e4tspr\u00fcfung Readings", + "Remarks": "Bemerkungen", + "Report Date": "Report Date", + "Sample Size": "Stichprobenumfang", + "Specification Details": "Ausschreibungstexte", + "Verified By": "Verified By" +} \ No newline at end of file diff --git a/buying/doctype/quality_inspection_reading/locale/de-doc.json b/buying/doctype/quality_inspection_reading/locale/de-doc.json new file mode 100644 index 0000000000..3d25788a47 --- /dev/null +++ b/buying/doctype/quality_inspection_reading/locale/de-doc.json @@ -0,0 +1,19 @@ +{ + "Acceptance Criteria": "Akzeptanzkriterien", + "Accepted": "Akzeptiert", + "Buying": "Kauf", + "Parameter": "Parameter", + "Quality Inspection Reading": "Qualit\u00e4tspr\u00fcfung Lesen", + "Reading 1": "Reading 1", + "Reading 10": "Lesen 10", + "Reading 2": "Reading 2", + "Reading 3": "Reading 3", + "Reading 4": "Reading 4", + "Reading 5": "Reading 5", + "Reading 6": "Lesen 6", + "Reading 7": "Lesen 7", + "Reading 8": "Lesen 8", + "Reading 9": "Lesen 9", + "Rejected": "Abgelehnt", + "Status": "Status" +} \ No newline at end of file diff --git a/buying/doctype/supplier/locale/de-doc.json b/buying/doctype/supplier/locale/de-doc.json new file mode 100644 index 0000000000..33eee17a35 --- /dev/null +++ b/buying/doctype/supplier/locale/de-doc.json @@ -0,0 +1,27 @@ +{ + "Address & Contacts": "Adresse und Kontakte", + "Address Desc": "Adresse Desc", + "Address HTML": "Adresse HTML", + "Basic Info": "Basic Info", + "Buying": "Kauf", + "Communication HTML": "Communication HTML", + "Company": "Firma", + "Contact Desc": "Kontakt Desc", + "Contact HTML": "Kontakt HTML", + "Credit Days": "Kredit-Tage", + "Default Currency": "Standardw\u00e4hrung", + "Enter the company name under which Account Head will be created for this Supplier": "Geben Sie den Namen des Unternehmens, unter denen Konto Leiter f\u00fcr diesen Lieferant erstellt werden", + "More Info": "Mehr Info", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "Hinweis: Sie k\u00f6nnen mehrere Kontakte oder Adresse via Adressen & Kontakte verwalten", + "SUPP": "SUPP", + "SUPP/10-11/": "SUPP/10-11 /", + "Series": "Serie", + "Statutory info and other general information about your Supplier": "Gesetzliche Informationen und andere allgemeine Informationen \u00fcber Ihr Lieferant", + "Supplier": "Lieferant", + "Supplier Details": "Supplier Details", + "Supplier Name": "Name des Anbieters", + "Supplier Type": "Lieferant Typ", + "Supplier of Goods or Services.": "Lieferant von Waren oder Dienstleistungen.", + "This currency will get fetched in Purchase transactions of this supplier": "Diese W\u00e4hrung wird in Kauf Transaktionen dieser Lieferanten bekommen geholt", + "Website": "Webseite" +} \ No newline at end of file diff --git a/buying/doctype/supplier/locale/de-py.json b/buying/doctype/supplier/locale/de-py.json new file mode 100644 index 0000000000..0232cb6038 --- /dev/null +++ b/buying/doctype/supplier/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "A Customer exists with same name": "Ein Kunde gibt mit dem gleichen Namen" +} \ No newline at end of file diff --git a/buying/doctype/supplier_quotation/locale/_messages_doc.json b/buying/doctype/supplier_quotation/locale/_messages_doc.json index 7c7cd0ac6e..515c3c8c15 100644 --- a/buying/doctype/supplier_quotation/locale/_messages_doc.json +++ b/buying/doctype/supplier_quotation/locale/_messages_doc.json @@ -10,8 +10,8 @@ "In Words", "Amendment Date", "Select Terms and Conditions", + "Grand Total (Import)", "File List", - "Draft", "Cancel Reason", "Supplier", "Supplier Address", @@ -70,7 +70,7 @@ "Supplier Quotation", "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.", "Series", - "Grand Total (Import)", + "Draft", "Yes", "Total Tax*", "In Words will be visible once you save the Purchase Order.", diff --git a/buying/doctype/supplier_quotation/locale/de-doc.json b/buying/doctype/supplier_quotation/locale/de-doc.json new file mode 100644 index 0000000000..f2b40ab6fe --- /dev/null +++ b/buying/doctype/supplier_quotation/locale/de-doc.json @@ -0,0 +1,78 @@ +{ + "Address": "Adresse", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Buying": "Kauf", + "Calculate Tax": "Steuer rechnen", + "Cancel Reason": "Abbrechen Reason", + "Cancelled": "Abgesagt", + "Company": "Firma", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "Betrachten Sie diese Preisliste f\u00fcr das Abrufen bewerten. (Nur die haben \"f\u00fcr den Kauf\", wie gepr\u00fcft)", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Currency": "W\u00e4hrung", + "Currency & Price List": "W\u00e4hrung & Preisliste", + "Draft": "Entwurf", + "Exchange Rate": "Wechselkurs", + "File List": "Dateiliste", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Items": "Holen Artikel", + "Get Tax Detail": "Holen MwSt. Details", + "Get Terms and Conditions": "Holen AGB", + "Grand Total": "Grand Total", + "Grand Total (Import)": "Grand Total (Import)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "Wenn Sie ein Standard-Template in Kauf Steuern und Abgaben Meister erstellt haben, w\u00e4hlen Sie eine aus und klicken Sie auf den Button unten.", + "In Words": "In Worte", + "In Words will be visible once you save the Purchase Order.": "In Worte sichtbar sein wird, wenn Sie die Bestellung zu speichern.", + "In Words(Import)": "In Words (Import)", + "Is Subcontracted": "Ist Fremdleistungen", + "Items": "Artikel", + "Letter Head": "Briefkopf", + "Mobile No": "In Mobile", + "More Info": "Mehr Info", + "Name": "Name", + "Net Total (Import)": "Net Total (Import)", + "Net Total*": "* Net Total", + "No": "Auf", + "Price List": "Preisliste", + "Price List Currency": "W\u00e4hrung Preisliste", + "Price List Exchange Rate": "Preisliste Wechselkurs", + "Purchase Taxes and Charges": "Purchase Steuern und Abgaben", + "Quotation Date": "Quotation Datum", + "Quotation Items": "Angebotspositionen", + "Rate at which supplier's currency is converted to company's base currency": "Geschwindigkeit, mit der Lieferanten W\u00e4hrung Unternehmens Basisw\u00e4hrung umgewandelt wird", + "Re-Calculate Values": "Neu berechnen Werte", + "Rounded Total": "Abgerundete insgesamt", + "SQTN": "SQTN", + "Select Material Request": "Markieren Sie das Material anfordern", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the relevant company name if you have multiple companies": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben", + "Series": "Serie", + "Status": "Status", + "Stopped": "Gestoppt", + "Submitted": "Eingereicht", + "Supplier": "Lieferant", + "Supplier (vendor) name as entered in supplier master": "Lieferant (Kreditor) Namen wie im Lieferantenstamm eingetragen", + "Supplier Address": "Lieferant Adresse", + "Supplier Quotation": "Lieferant Angebot", + "Supplier's currency": "Lieferant W\u00e4hrung", + "Tax Calculation": "Steuerberechnung", + "Taxes": "Steuern", + "Taxes and Charges Added": "Steuern und Abgaben am", + "Taxes and Charges Added (Import)": "Steuern und Geb\u00fchren Added (Import)", + "Taxes and Charges Deducted": "Steuern und Geb\u00fchren Abgezogen", + "Taxes and Charges Deducted (Import)": "Steuern und Geb\u00fchren abgezogen (Import)", + "Terms and Conditions": "AGB", + "Terms and Conditions HTML": "AGB HTML", + "Terms and Conditions1": "Allgemeine Bedingungen1", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Total Tax*": "Total Tax *", + "Totals": "Totals", + "Yes": "Ja", + "You can make a purchase order from multiple Material Requests. Select Material Requests one by one and click on the button below.": "Sie k\u00f6nnen eine Bestellung von mehreren Werkstoff Requests machen. Markieren Sie das Material Requests nacheinander aus und klicken Sie auf den Button unten." +} \ No newline at end of file diff --git a/buying/doctype/supplier_quotation_item/locale/de-doc.json b/buying/doctype/supplier_quotation_item/locale/de-doc.json new file mode 100644 index 0000000000..642e7c19fc --- /dev/null +++ b/buying/doctype/supplier_quotation_item/locale/de-doc.json @@ -0,0 +1,26 @@ +{ + "Amount": "Menge", + "Amount*": "Betrag *", + "Brand": "Marke", + "Buying": "Kauf", + "Description": "Beschreibung", + "Discount %": "Discount%", + "If Supplier Part Number exists for given Item, it gets stored here": "Wenn der Lieferant Teilenummer existiert f\u00fcr bestimmte Artikel, wird es hier gespeichert", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Item Tax Rate": "Artikel Tax Rate", + "Material Request Date": "Material Request Date", + "Material Request Detail No": "Material anfordern Im Detail", + "Material Request No": "Material anfordern On", + "Page Break": "Seitenwechsel", + "Prevdoc DocType": "Prevdoc DocType", + "Project Name": "Project Name", + "Quantity": "Menge", + "Rate*": "Rate *", + "Ref Rate*": "Ref Rate *", + "Supplier Part Number": "Lieferant Teilenummer", + "Supplier Quotation Item": "Lieferant Angebotsposition", + "UOM": "UOM", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/buying/module_def/buying/locale/de-doc.json b/buying/module_def/buying/locale/de-doc.json new file mode 100644 index 0000000000..c4375d5e29 --- /dev/null +++ b/buying/module_def/buying/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Buying Home": "Kauf Startseite", + "Purchase Analytics": "Kauf Analytics", + "Supplier of Goods or Services.": "Lieferant von Waren oder Dienstleistungen." +} \ No newline at end of file diff --git a/buying/page/buying_home/locale/de-js.json b/buying/page/buying_home/locale/de-js.json new file mode 100644 index 0000000000..9af92f8968 --- /dev/null +++ b/buying/page/buying_home/locale/de-js.json @@ -0,0 +1,33 @@ +{ + "Address": "Adresse", + "All Addresses.": "Alle Adressen.", + "All Contacts.": "Alle Kontakte.", + "All Products or Services.": "Alle Produkte oder Dienstleistungen.", + "Analytics": "Analytics", + "Contact": "Kontakt", + "Documents": "Unterlagen", + "Helper for managing return of goods (sales or purchase)": "Helper f\u00fcr die Verwaltung R\u00fccksendung der Ware (Verkauf oder Kauf)", + "Item": "Artikel", + "Item Group": "Artikel-Gruppe", + "Masters": "Masters", + "Material Request": "Material anfordern", + "Purchase Analytics": "Kauf Analytics", + "Purchase Order": "Auftragsbest\u00e4tigung", + "Purchase Orders given to Suppliers.": "Bestellungen Angesichts zu Lieferanten.", + "Purchase Returns": "Kauf und Versandkosten", + "Purchase Taxes and Charges Master": "Steuern und Geb\u00fchren Meister Kauf", + "Request for purchase.": "Ankaufsgesuch.", + "Setup": "Setup", + "Supplier": "Lieferant", + "Supplier Quotation": "Lieferant Angebot", + "Supplier Type": "Lieferant Typ", + "Supplier classification.": "Lieferant Klassifizierung.", + "Supplier database.": "Lieferanten-Datenbank.", + "Tax Template for Purchase": "MwSt. Vorlage f\u00fcr Kauf", + "Template of terms or contract.": "Vorlage von Begriffen oder Vertrag.", + "Terms and Conditions": "AGB", + "Tools": "Werkzeuge", + "Track Quotations received from Suppliers.": "Verfolgen Sie Angebote von Lieferanten erhalten.", + "Tree of item classification": "Tree of Artikelzugeh\u00f6rigkeit", + "Trend Analyzer": "Trend Analyzer" +} \ No newline at end of file diff --git a/controllers/locale/_messages_py.json b/controllers/locale/_messages_py.json index 12025d5154..0b6ba065bf 100644 --- a/controllers/locale/_messages_py.json +++ b/controllers/locale/_messages_py.json @@ -1,5 +1,7 @@ [ " cannot be 0", + "for Company", + "Missing", "Please enter valid ", "Please specify a valid", "Row" diff --git a/controllers/locale/de-py.json b/controllers/locale/de-py.json new file mode 100644 index 0000000000..f33b130441 --- /dev/null +++ b/controllers/locale/de-py.json @@ -0,0 +1,4 @@ +{ + "Please specify a valid": "Bitte geben Sie eine g\u00fcltige", + "Row": "Reihe" +} \ No newline at end of file diff --git a/home/doctype/company_control/locale/de-doc.json b/home/doctype/company_control/locale/de-doc.json new file mode 100644 index 0000000000..5b1d41d1b4 --- /dev/null +++ b/home/doctype/company_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Company Control": "Firma Control", + "Home": "Zuhause" +} \ No newline at end of file diff --git a/home/doctype/feed/locale/de-doc.json b/home/doctype/feed/locale/de-doc.json new file mode 100644 index 0000000000..caf052e772 --- /dev/null +++ b/home/doctype/feed/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "Color": "Farbe", + "Doc Name": "Doc Namen", + "Doc Type": "Doc Type", + "Feed": "F\u00fcttern", + "Feed Type": "Eingabetyp", + "Full Name": "Vollst\u00e4ndiger Name", + "Home": "Zuhause", + "Subject": "Thema" +} \ No newline at end of file diff --git a/home/doctype/home_control/locale/de-doc.json b/home/doctype/home_control/locale/de-doc.json new file mode 100644 index 0000000000..84774ebf0f --- /dev/null +++ b/home/doctype/home_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Home": "Zuhause", + "Home Control": "Home Control" +} \ No newline at end of file diff --git a/home/module_def/home/locale/de-doc.json b/home/module_def/home/locale/de-doc.json new file mode 100644 index 0000000000..a0a9c2c0e5 --- /dev/null +++ b/home/module_def/home/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Activity": "Aktivit\u00e4t", + "Attributions": "Zuschreibungen", + "Desktop": "Desktop", + "Event Updates": "Event-Updates", + "Latest Updates": "Neueste Updates", + "My Company": "My Company", + "dashboard": "Armaturenbrett" +} \ No newline at end of file diff --git a/hr/doctype/appraisal/locale/_messages_doc.json b/hr/doctype/appraisal/locale/_messages_doc.json index 1d32ed6d9f..984664258c 100644 --- a/hr/doctype/appraisal/locale/_messages_doc.json +++ b/hr/doctype/appraisal/locale/_messages_doc.json @@ -1,6 +1,7 @@ [ "HR", "Comments", + "Draft", "Status", "Appraisal Template", "Completed", @@ -15,14 +16,13 @@ "Select template from which you want to get the Goals", "Submitted", "Employee Details", - "Other Details", "Cancelled", "Appraisal", "For Employee Name", "Calculate Total Score", "Fiscal Year", "Select the Employee for whom you are creating the Appraisal.", - "Draft", + "Other Details", "Start Date", "Company" ] \ No newline at end of file diff --git a/hr/doctype/appraisal/locale/de-doc.json b/hr/doctype/appraisal/locale/de-doc.json new file mode 100644 index 0000000000..e2879bf915 --- /dev/null +++ b/hr/doctype/appraisal/locale/de-doc.json @@ -0,0 +1,28 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Any other comments, noteworthy effort that should go in the records.": "Weitere Kommentare, bemerkenswerte Anstrengungen, die in den Aufzeichnungen gehen sollte.", + "Appraisal": "Bewertung", + "Appraisal Goals": "Bewertung Details", + "Appraisal Template": "Bewertung Template", + "Calculate Total Score": "Berechnen Gesamtpunktzahl", + "Cancelled": "Abgesagt", + "Comments": "Kommentare", + "Company": "Firma", + "Completed": "Fertiggestellt", + "Draft": "Entwurf", + "Employee Details": "Mitarbeiterdetails", + "End Date": "Enddatum", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "For Employee": "F\u00fcr Mitarbeiter", + "For Employee Name": "F\u00fcr Employee Name", + "Goals": "Ziele", + "HR": "HR", + "Other Details": "Weitere Details", + "Select template from which you want to get the Goals": "W\u00e4hlen Sie aus, welche Vorlage Sie die Ziele erhalten m\u00f6chten", + "Select the Employee for whom you are creating the Appraisal.": "W\u00e4hlen Sie den Mitarbeiter, f\u00fcr den Sie erstellen Appraisal.", + "Start Date": "Startdatum", + "Status": "Status", + "Submitted": "Eingereicht", + "Total Score (Out of 5)": "Gesamtpunktzahl (von 5)" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_goal/locale/de-doc.json b/hr/doctype/appraisal_goal/locale/de-doc.json new file mode 100644 index 0000000000..e7d0aa33a7 --- /dev/null +++ b/hr/doctype/appraisal_goal/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Appraisal Goal": "Bewertung Goal", + "Goal": "Ziel", + "HR": "HR", + "Key Responsibility Area": "Key Responsibility Bereich", + "Score (0-5)": "Score (0-5)", + "Score Earned": "Ergebnis Bekommen", + "Weightage (%)": "Gewichtung (%)" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template/locale/de-doc.json b/hr/doctype/appraisal_template/locale/de-doc.json new file mode 100644 index 0000000000..a0af762121 --- /dev/null +++ b/hr/doctype/appraisal_template/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "Appraisal Template": "Bewertung Template", + "Appraisal Template Goal": "Bewertung Template Goal", + "Appraisal Template Title": "Bewertung Template Titel", + "Description": "Beschreibung", + "HR": "HR", + "Total Points": "Total Points" +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template/locale/de-py.json b/hr/doctype/appraisal_template/locale/de-py.json new file mode 100644 index 0000000000..b0d2b7986d --- /dev/null +++ b/hr/doctype/appraisal_template/locale/de-py.json @@ -0,0 +1,4 @@ +{ + "Not": "Nicht", + "Total (sum of) points distribution for all goals should be 100.": "Total (Summe) Punkte Verteilung f\u00fcr alle Ziele sollten 100 sein." +} \ No newline at end of file diff --git a/hr/doctype/appraisal_template_goal/locale/de-doc.json b/hr/doctype/appraisal_template_goal/locale/de-doc.json new file mode 100644 index 0000000000..bed3ced850 --- /dev/null +++ b/hr/doctype/appraisal_template_goal/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Appraisal Template Goal": "Bewertung Template Goal", + "HR": "HR", + "KRA": "KRA", + "Key Performance Area": "Key Performance Area", + "Weightage (%)": "Gewichtung (%)" +} \ No newline at end of file diff --git a/hr/doctype/attendance/locale/_messages_doc.json b/hr/doctype/attendance/locale/_messages_doc.json index 617fc7269f..a6c718cefc 100644 --- a/hr/doctype/attendance/locale/_messages_doc.json +++ b/hr/doctype/attendance/locale/_messages_doc.json @@ -10,9 +10,9 @@ "Amended From", "Amendment Date", "Attendance Date", + "Employee", "ATT", "Present", - "Employee", "Employee Name", "Company", "Naming Series", diff --git a/hr/doctype/attendance/locale/de-doc.json b/hr/doctype/attendance/locale/de-doc.json new file mode 100644 index 0000000000..1c727772ae --- /dev/null +++ b/hr/doctype/attendance/locale/de-doc.json @@ -0,0 +1,20 @@ +{ + "ATT": "ATT", + "Absent": "Abwesend", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Attendance": "Teilnahme", + "Attendance Date": "Teilnahme seit", + "Attendance Details": "Teilnahme Einzelheiten", + "Company": "Firma", + "Employee": "Mitarbeiter", + "Employee Name": "Name des Mitarbeiters", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "HR": "HR", + "Half Day": "Half Day", + "Leave Type": "Lassen Typ", + "Naming Series": "Benennen Series", + "Present": "Pr\u00e4sentieren", + "Status": "Status", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert." +} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/de-doc.json b/hr/doctype/attendance_control_panel/locale/de-doc.json new file mode 100644 index 0000000000..fb0d98a925 --- /dev/null +++ b/hr/doctype/attendance_control_panel/locale/de-doc.json @@ -0,0 +1,21 @@ +{ + "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "All die Teilnahme datiert dazwischen gew\u00e4hlt Teilnahme ab Datum und die Teilnahme an Datum wird in der Vorlage mit den Mitarbeitern Liste kommen.", + "Attendance Control Panel": "Teilnahme Control Panel", + "Attendance From Date": "Teilnahme ab-Datum", + "Attendance To Date": "Teilnahme To Date", + "Download Template": "Vorlage herunterladen", + "File List": "Dateiliste", + "Get Template": "Holen Template", + "HR": "HR", + "Import": "Importieren", + "Import Log": "Import-Logbuch", + "Import Log1": "Importieren Log1", + "Overwrite": "\u00dcberschreiben", + "Selected Attendance date will comes in the attendance template.": "Ausgew\u00e4hlte Datum wird Teilnahme in der Anwesenheitsliste Vorlage essen.", + "Upload Attendance Data": "Hochladen Teilnahme Daten", + "dd-mm-yyyy": "dd-mm-yyyy", + "dd/mm/yyyy": "dd / mm / yyyy", + "mm/dd/yy": "mm / tt / jj", + "mm/dd/yyyy": "mm / dd / yyyy", + "yyyy-mm-dd": "yyyy-mm-dd" +} \ No newline at end of file diff --git a/hr/doctype/branch/locale/de-doc.json b/hr/doctype/branch/locale/de-doc.json new file mode 100644 index 0000000000..bbf9800dbf --- /dev/null +++ b/hr/doctype/branch/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Branch": "Zweig", + "HR": "HR", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/hr/doctype/deduction_type/locale/de-doc.json b/hr/doctype/deduction_type/locale/de-doc.json new file mode 100644 index 0000000000..251005b363 --- /dev/null +++ b/hr/doctype/deduction_type/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Deduction Type": "Abzug Typ", + "Description": "Beschreibung", + "HR": "HR", + "Name": "Name", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/hr/doctype/department/locale/de-doc.json b/hr/doctype/department/locale/de-doc.json new file mode 100644 index 0000000000..062357a1a1 --- /dev/null +++ b/hr/doctype/department/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Days for which Holidays are blocked for this department.": "Tage, f\u00fcr die Feiertage sind f\u00fcr diese Abteilung blockiert.", + "Department": "Abteilung", + "HR": "HR", + "Leave Block List": "Lassen Block List", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/hr/doctype/designation/locale/de-doc.json b/hr/doctype/designation/locale/de-doc.json new file mode 100644 index 0000000000..ffdd4c9faf --- /dev/null +++ b/hr/doctype/designation/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Designation": "Bezeichnung", + "HR": "HR", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/hr/doctype/earning_type/locale/de-doc.json b/hr/doctype/earning_type/locale/de-doc.json new file mode 100644 index 0000000000..bdd61f6264 --- /dev/null +++ b/hr/doctype/earning_type/locale/de-doc.json @@ -0,0 +1,11 @@ +{ + "Description": "Beschreibung", + "Earning Type": "Earning Typ", + "Exemption Limit": "Freigrenze", + "HR": "HR", + "Name": "Name", + "No": "Auf", + "Taxable": "Steuerpflichtig", + "Trash Reason": "Trash Reason", + "Yes": "Ja" +} \ No newline at end of file diff --git a/hr/doctype/employee/locale/_messages_doc.json b/hr/doctype/employee/locale/_messages_doc.json index 67e9a40865..10eb738584 100644 --- a/hr/doctype/employee/locale/_messages_doc.json +++ b/hr/doctype/employee/locale/_messages_doc.json @@ -8,7 +8,6 @@ "Branch", "Department", "Bio", - "Exit", "PF Number", "Company", "User ID", @@ -60,17 +59,18 @@ "Contract End Date", "No", "Leave Encashed?", + "Exit", "Educational Qualification Details", "Final Confirmation Date", "Status", "Bank Name", "Cheque", - "Active", "Employment Type", "Notice - Number of Days", "Designation", "Salary Information", "Personal Details", + "Active", "Encashment Date", "Reason for Resignation", "Left", diff --git a/hr/doctype/employee/locale/de-doc.json b/hr/doctype/employee/locale/de-doc.json new file mode 100644 index 0000000000..a4131d0c90 --- /dev/null +++ b/hr/doctype/employee/locale/de-doc.json @@ -0,0 +1,117 @@ +{ + "To setup, please go to Setup > Naming Series": " Um einzurichten, gehen Sie bitte auf Setup> Naming Series ", + "A+": "A +", + "A-": "A-", + "AB+": "AB +", + "AB-": "AB-", + "Active": "Aktiv", + "Applicable Holiday List": "Anwendbar Ferienwohnung Liste", + "B+": "B +", + "B-": "B-", + "Bank": "Bank", + "Bank A/C No.": "Bank A / C Nr.", + "Bank Name": "Name der Bank", + "Basic Information": "Grundlegende Informationen", + "Better Prospects": "Bessere Aussichten", + "Bio": "Bio", + "Blood Group": "Blutgruppe", + "Branch": "Zweig", + "Career History": "Karriere Geschichte", + "Cash": "Bargeld", + "Cell Number": "Cell Number", + "Cheque": "Scheck", + "Company": "Firma", + "Contact Details": "Kontakt Details", + "Contract End Date": "Contract End Date", + "Current Accommodation Type": "Aktuelle Unterkunftstyp", + "Current Address": "Aktuelle Adresse", + "Date Of Retirement": "Datum der Pensionierung", + "Date of Birth": "Geburtsdatum", + "Date of Issue": "Datum der Ausgabe", + "Date of Joining": "Datum der Verbindungstechnik", + "Department": "Abteilung", + "Designation": "Bezeichnung", + "Divorced": "Geschieden", + "EMP/": "EMP /", + "ESIC CARD No": "ESIC CARD Nein", + "Educational Qualification": "Educational Qualifikation", + "Educational Qualification Details": "Educational Qualifikation Einzelheiten", + "Email (By company)": "Email (nach Unternehmen)", + "Emergency Contact Details": "Notfall Kontakt", + "Emergency Phone Number": "Notrufnummer", + "Employee": "Mitarbeiter", + "Employee External Work History": "Mitarbeiter Externe Arbeit Geschichte", + "Employee Internal Work Historys": "Mitarbeiter Interner Arbeitsbereich Historys", + "Employee Number": "Mitarbeiternummer", + "Employment Details": "Besch\u00e4ftigung Einzelheiten", + "Employment Type": "Besch\u00e4ftigungsart", + "Encashment Date": "Inkasso Datum", + "Exit": "Verlassen", + "Exit Interview Details": "Verlassen Interview Einzelheiten", + "Family Background": "Famili\u00e4rer Hintergrund", + "Feedback": "R\u00fcckkopplung", + "Female": "Weiblich", + "File List": "Dateiliste", + "Final Confirmation Date": "Final Confirmation Datum", + "Full Name": "Vollst\u00e4ndiger Name", + "Gender": "Geschlecht", + "Grade": "Klasse", + "Gratuity LIC ID": "Gratuity LIC ID", + "HR": "HR", + "Health Concerns": "Gesundheitliche Bedenken", + "Health Details": "Gesundheit Details", + "Held On": "Hielt", + "Here you can maintain family details like name and occupation of parent, spouse and children": "Hier k\u00f6nnen Sie pflegen Familie Details wie Name und Beruf der Eltern, Ehepartner und Kinder", + "Here you can maintain height, weight, allergies, medical concerns etc": "Hier k\u00f6nnen Sie pflegen Gr\u00f6\u00dfe, Gewicht, Allergien, medizinischen Bedenken etc", + "History In Company": "Geschichte Im Unternehmen", + "Holiday List": "Ferienwohnung Liste", + "Image": "Bild", + "Image View": "Bild anzeigen", + "Job Profile": "Job Profil", + "Leave Encashed?": "Lassen eingel\u00f6st?", + "Left": "Links", + "Male": "M\u00e4nnlich", + "Marital Status": "Familienstand", + "Married": "Verheiratet", + "Mr": "Herr", + "Ms": "Ms", + "Naming Series": "Benennen Series", + "New Workplace": "New Workplace", + "No": "Auf", + "Notice - Number of Days": "Hinweis - Anzahl der Tage", + "O+": "Die +", + "O-": "O-", + "Owned": "Besitz", + "PAN Number": "PAN-Nummer", + "PF Number": "PF-Nummer", + "Passport Number": "Passnummer", + "Permanent Accommodation Type": "Permanent Art der Unterkunft", + "Permanent Address": "Permanent Address", + "Person To Be Contacted": "Person kontaktiert werden", + "Personal Details": "Pers\u00f6nliche Details", + "Personal Email": "Pers\u00f6nliche E-Mail", + "Place of Issue": "Ausstellungsort", + "Previous Work Experience": "Berufserfahrung", + "Provide email id registered in company": "Bieten E-Mail-ID in Unternehmen registriert", + "Reason for Leaving": "Grund f\u00fcr das Verlassen", + "Reason for Resignation": "Grund zur Resignation", + "Relation": "Relation", + "Relieving Date": "Entlastung Datum", + "Rented": "Gemietet", + "Reports to": "Berichte an", + "Resignation Letter Date": "R\u00fccktrittsschreiben Datum", + "Salary Information": "Angaben \u00fcber den Lohn", + "Salary Mode": "Gehalt Modus", + "Salutation": "Gru\u00df", + "Scheduled Confirmation Date": "Voraussichtlicher Best\u00e4tigung", + "Short biography for website and other publications.": "Kurzbiographie f\u00fcr die Website und anderen Publikationen.", + "Single": "Single", + "Status": "Status", + "System User (login) ID. If set, it will become default for all HR forms.": "System User (login) ID. Wenn gesetzt, wird es standardm\u00e4\u00dfig f\u00fcr alle HR-Formulare werden.", + "Trash Reason": "Trash Reason", + "User ID": "Benutzer-ID", + "Valid Upto": "G\u00fcltig Bis", + "Widowed": "Verwitwet", + "Yes": "Ja", + "You can enter any date manually": "Sie k\u00f6nnen ein beliebiges Datum manuell eingeben" +} \ No newline at end of file diff --git a/hr/doctype/employee_education/locale/_messages_doc.json b/hr/doctype/employee_education/locale/_messages_doc.json index cbcb8f810e..4ee11a593b 100644 --- a/hr/doctype/employee_education/locale/_messages_doc.json +++ b/hr/doctype/employee_education/locale/_messages_doc.json @@ -7,7 +7,7 @@ "Graduate", "Employee Education", "Under Graduate", - "Qualification", "Post Graduate", + "Qualification", "Class / Percentage" ] \ No newline at end of file diff --git a/hr/doctype/employee_education/locale/de-doc.json b/hr/doctype/employee_education/locale/de-doc.json new file mode 100644 index 0000000000..0f4d43ed49 --- /dev/null +++ b/hr/doctype/employee_education/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Class / Percentage": "Klasse / Anteil", + "Employee Education": "Mitarbeiterschulung", + "Graduate": "Absolvent", + "HR": "HR", + "Level": "Ebene", + "Major/Optional Subjects": "Major / Wahlf\u00e4cher", + "Post Graduate": "Post Graduate", + "Qualification": "Qualifikation", + "School/University": "Schule / Universit\u00e4t", + "Under Graduate": "Unter Graduate", + "Year of Passing": "Jahr der \u00dcbergabe" +} \ No newline at end of file diff --git a/hr/doctype/employee_external_work_history/locale/de-doc.json b/hr/doctype/employee_external_work_history/locale/de-doc.json new file mode 100644 index 0000000000..b25eb8305d --- /dev/null +++ b/hr/doctype/employee_external_work_history/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "Address": "Adresse", + "Company": "Firma", + "Contact": "Kontakt", + "Designation": "Bezeichnung", + "Employee External Work History": "Mitarbeiter Externe Arbeit Geschichte", + "HR": "HR", + "Salary": "Gehalt", + "Total Experience": "Total Experience" +} \ No newline at end of file diff --git a/hr/doctype/employee_internal_work_history/locale/_messages_doc.json b/hr/doctype/employee_internal_work_history/locale/_messages_doc.json index 103933f4a6..f1f08af91e 100644 --- a/hr/doctype/employee_internal_work_history/locale/_messages_doc.json +++ b/hr/doctype/employee_internal_work_history/locale/_messages_doc.json @@ -3,8 +3,8 @@ "Designation", "HR", "Grade", + "Department", "To Date", "From Date", - "Branch", - "Department" + "Branch" ] \ No newline at end of file diff --git a/hr/doctype/employee_internal_work_history/locale/de-doc.json b/hr/doctype/employee_internal_work_history/locale/de-doc.json new file mode 100644 index 0000000000..4634bbcbdb --- /dev/null +++ b/hr/doctype/employee_internal_work_history/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "Branch": "Zweig", + "Department": "Abteilung", + "Designation": "Bezeichnung", + "Employee Internal Work History": "Mitarbeiter Interner Arbeitsbereich Geschichte", + "From Date": "Von Datum", + "Grade": "Klasse", + "HR": "HR", + "To Date": "To Date" +} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/_messages_doc.json b/hr/doctype/employee_training/locale/_messages_doc.json index bfc0d0e961..cb49386a96 100644 --- a/hr/doctype/employee_training/locale/_messages_doc.json +++ b/hr/doctype/employee_training/locale/_messages_doc.json @@ -3,7 +3,7 @@ "Certificate", "HR", "Employee Training", - "Institute / Conducted By", + "Duration", "Location", - "Duration" + "Institute / Conducted By" ] \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/de-doc.json b/hr/doctype/employee_training/locale/de-doc.json new file mode 100644 index 0000000000..9a378eb4f7 --- /dev/null +++ b/hr/doctype/employee_training/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Certificate": "Zertifikat", + "Duration": "Dauer", + "Employee Training": "Mitarbeiterschulung", + "HR": "HR", + "Institute / Conducted By": "Institute / By Geleitete", + "Location": "Lage", + "Program / Seminar Title": "Programm / Seminar Titel" +} \ No newline at end of file diff --git a/hr/doctype/employment_type/locale/de-doc.json b/hr/doctype/employment_type/locale/de-doc.json new file mode 100644 index 0000000000..f25d66e94d --- /dev/null +++ b/hr/doctype/employment_type/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Employment Type": "Besch\u00e4ftigungsart", + "HR": "HR", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim/locale/de-doc.json b/hr/doctype/expense_claim/locale/de-doc.json new file mode 100644 index 0000000000..69adcbada1 --- /dev/null +++ b/hr/doctype/expense_claim/locale/de-doc.json @@ -0,0 +1,22 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Approval Status": "Genehmigungsstatus", + "Approved": "Genehmigt", + "Approver": "Approver", + "Company": "Firma", + "Draft": "Entwurf", + "Employee Name": "Name des Mitarbeiters", + "Employees Email Id": "Mitarbeiter Email Id", + "Expense Claim": "Expense Anspruch", + "Expense Claim Details": "Expense Anspruch Einzelheiten", + "Expense Details": "Expense Einzelheiten", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "From Employee": "Von Mitarbeiter", + "HR": "HR", + "Posting Date": "Buchungsdatum", + "Rejected": "Abgelehnt", + "Remark": "Bemerkung", + "Total Claimed Amount": "Insgesamt geforderten Betrag", + "Total Sanctioned Amount": "Insgesamt Sanctioned Betrag" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim_detail/locale/de-doc.json b/hr/doctype/expense_claim_detail/locale/de-doc.json new file mode 100644 index 0000000000..b5cdc3caed --- /dev/null +++ b/hr/doctype/expense_claim_detail/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Claim Amount": "Schadenh\u00f6he", + "Description": "Beschreibung", + "Expense Claim Detail": "Expense Anspruch Details", + "Expense Claim Type": "Expense Anspruch Type", + "Expense Date": "Expense Datum", + "HR": "HR", + "Sanctioned Amount": "Sanktioniert Betrag" +} \ No newline at end of file diff --git a/hr/doctype/expense_claim_type/locale/de-doc.json b/hr/doctype/expense_claim_type/locale/de-doc.json new file mode 100644 index 0000000000..fb88654599 --- /dev/null +++ b/hr/doctype/expense_claim_type/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Description": "Beschreibung", + "Expense Claim Type": "Expense Anspruch Type", + "HR": "HR" +} \ No newline at end of file diff --git a/hr/doctype/grade/locale/_messages_doc.json b/hr/doctype/grade/locale/_messages_doc.json index ece62144df..c5037b2029 100644 --- a/hr/doctype/grade/locale/_messages_doc.json +++ b/hr/doctype/grade/locale/_messages_doc.json @@ -1,5 +1,5 @@ [ "HR", - "Grade", - "Trash Reason" + "Trash Reason", + "Grade" ] \ No newline at end of file diff --git a/hr/doctype/grade/locale/de-doc.json b/hr/doctype/grade/locale/de-doc.json new file mode 100644 index 0000000000..52cbb20f09 --- /dev/null +++ b/hr/doctype/grade/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Grade": "Klasse", + "HR": "HR", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/hr/doctype/holiday/locale/_messages_doc.json b/hr/doctype/holiday/locale/_messages_doc.json index b3a06eda7e..a46bf59083 100644 --- a/hr/doctype/holiday/locale/_messages_doc.json +++ b/hr/doctype/holiday/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ "HR", - "Date", "Holiday", - "Description" + "Description", + "Date" ] \ No newline at end of file diff --git a/hr/doctype/holiday/locale/de-doc.json b/hr/doctype/holiday/locale/de-doc.json new file mode 100644 index 0000000000..e25b63b94a --- /dev/null +++ b/hr/doctype/holiday/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Date": "Datum", + "Description": "Beschreibung", + "HR": "HR", + "Holiday": "Urlaub" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/de-doc.json b/hr/doctype/holiday_block_list/locale/de-doc.json new file mode 100644 index 0000000000..7814136a5b --- /dev/null +++ b/hr/doctype/holiday_block_list/locale/de-doc.json @@ -0,0 +1,16 @@ +{ + "Allow Users": "Erm\u00f6glichen", + "Allow the following users to make Leave Applications for block days.": "Lassen Sie die folgenden Benutzer Leave Anwendungen f\u00fcr Block Tag machen.", + "Applies to Company": "Gilt f\u00fcr Unternehmen", + "Block Days": "Block Tage", + "Block Holidays on important days.": "Blockieren Urlaub auf wichtige Tage.", + "Company": "Firma", + "HR": "HR", + "Holiday Block List": "Ferienwohnung Block List", + "Holiday Block List Allowed": "Ferienwohnung Block List erlaubt", + "Holiday Block List Dates": "Ferienwohnung Block List Termine", + "Holiday Block List Name": "Urlaub Blockieren Name", + "If not checked, the list will have to be added to each Department where it has to be applied.": "Falls nicht, wird die Liste m\u00fcssen auf jeden Abteilung, wo sie angewendet werden hinzugef\u00fcgt werden.", + "Stop users from making Leave Applications on following days.": "Stoppen Sie den Nutzer von Leave Anwendungen auf folgenden Tagen.", + "Year": "Jahr" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_allow/locale/de-doc.json b/hr/doctype/holiday_block_list_allow/locale/de-doc.json new file mode 100644 index 0000000000..82df344920 --- /dev/null +++ b/hr/doctype/holiday_block_list_allow/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Allow User": "Benutzer zulassen", + "HR": "HR", + "Holiday Block List Allow": "Ferienwohnung Block List zulassen" +} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/de-doc.json b/hr/doctype/holiday_block_list_date/locale/de-doc.json new file mode 100644 index 0000000000..d4d6d69db2 --- /dev/null +++ b/hr/doctype/holiday_block_list_date/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Block Date": "Blockieren Datum", + "HR": "HR", + "Holiday Block List Date": "Ferienwohnung Block List Datum", + "Reason": "Grund" +} \ No newline at end of file diff --git a/hr/doctype/holiday_list/locale/_messages_doc.json b/hr/doctype/holiday_list/locale/_messages_doc.json index 9c51fcf990..dddc749879 100644 --- a/hr/doctype/holiday_list/locale/_messages_doc.json +++ b/hr/doctype/holiday_list/locale/_messages_doc.json @@ -1,5 +1,6 @@ [ "Trash Reason", + "Clear Table", "Monday", "HR", "Tuesday", @@ -13,7 +14,6 @@ "Fiscal Year", "Get Weekly Off Dates", "Wednesday", - "Clear Table", "Holidays", "Saturday" ] \ No newline at end of file diff --git a/hr/doctype/holiday_list/locale/de-doc.json b/hr/doctype/holiday_list/locale/de-doc.json new file mode 100644 index 0000000000..7174c7f926 --- /dev/null +++ b/hr/doctype/holiday_list/locale/de-doc.json @@ -0,0 +1,19 @@ +{ + "Clear Table": "Tabelle l\u00f6schen", + "Default": "Default", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Friday": "Freitag", + "Get Weekly Off Dates": "Holen Weekly Off Dates", + "HR": "HR", + "Holiday List": "Ferienwohnung Liste", + "Holiday List Name": "Ferienwohnung Name", + "Holidays": "Ferien", + "Monday": "Montag", + "Saturday": "Samstag", + "Sunday": "Sonntag", + "Thursday": "Donnerstag", + "Trash Reason": "Trash Reason", + "Tuesday": "Dienstag", + "Wednesday": "Mittwoch", + "Weekly Off": "W\u00f6chentliche Off" +} \ No newline at end of file diff --git a/hr/doctype/job_applicant/locale/de-doc.json b/hr/doctype/job_applicant/locale/de-doc.json new file mode 100644 index 0000000000..e586ad3fac --- /dev/null +++ b/hr/doctype/job_applicant/locale/de-doc.json @@ -0,0 +1,15 @@ +{ + "Applicant Name": "Name des Antragstellers", + "Applicant for a Job": "Antragsteller f\u00fcr einen Job", + "Email Id": "Email Id", + "File List": "Dateiliste", + "HR": "HR", + "Hold": "Halten", + "Job Applicant": "Job Applicant", + "Job Opening": "Stellenangebot", + "Open": "\u00d6ffnen", + "Rejected": "Abgelehnt", + "Replied": "Beantwortet", + "Status": "Status", + "Thread HTML": "Themen HTML" +} \ No newline at end of file diff --git a/hr/doctype/job_opening/locale/de-doc.json b/hr/doctype/job_opening/locale/de-doc.json new file mode 100644 index 0000000000..77651f24b8 --- /dev/null +++ b/hr/doctype/job_opening/locale/de-doc.json @@ -0,0 +1,11 @@ +{ + "Closed": "Geschlossen", + "Description": "Beschreibung", + "Description of a Job Opening": "Beschreibung eines Job Opening", + "HR": "HR", + "Job Opening": "Stellenangebot", + "Job Title": "Berufsbezeichnung", + "Job profile, qualifications required etc.": "Job-Profil, etc. erforderlichen Qualifikationen.", + "Open": "\u00d6ffnen", + "Status": "Status" +} \ No newline at end of file diff --git a/hr/doctype/leave_allocation/locale/_messages_doc.json b/hr/doctype/leave_allocation/locale/_messages_doc.json index 5e1c8de1ca..28dd65cd6b 100644 --- a/hr/doctype/leave_allocation/locale/_messages_doc.json +++ b/hr/doctype/leave_allocation/locale/_messages_doc.json @@ -7,10 +7,10 @@ "Leave Type", "Amended From", "Total Leaves Allocated", + "Employee", "Fiscal Year", "Carry Forward", "Leave Allocation", - "Employee", "New Leaves Allocated", "Employee Name", "Posting Date" diff --git a/hr/doctype/leave_allocation/locale/de-doc.json b/hr/doctype/leave_allocation/locale/de-doc.json new file mode 100644 index 0000000000..db1a8f1368 --- /dev/null +++ b/hr/doctype/leave_allocation/locale/de-doc.json @@ -0,0 +1,17 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Carry Forward": "Vortragen", + "Carry Forwarded Leaves": "Carry Weitergeleitete Leaves", + "Description": "Beschreibung", + "Employee": "Mitarbeiter", + "Employee Name": "Name des Mitarbeiters", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "HR": "HR", + "Leave Allocation": "Lassen Allocation", + "Leave Type": "Lassen Typ", + "New Leaves Allocated": "Neue Bl\u00e4tter Allocated", + "Posting Date": "Buchungsdatum", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "Total Leaves Allocated": "Insgesamt Leaves Allocated" +} \ No newline at end of file diff --git a/hr/doctype/leave_application/locale/de-doc.json b/hr/doctype/leave_application/locale/de-doc.json new file mode 100644 index 0000000000..f7e321a9a3 --- /dev/null +++ b/hr/doctype/leave_application/locale/de-doc.json @@ -0,0 +1,27 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Apply / Approve Leaves": "\u00dcbernehmen / Genehmigen Leaves", + "Approved": "Genehmigt", + "Company": "Firma", + "Employee": "Mitarbeiter", + "Employee Name": "Name des Mitarbeiters", + "File List": "Dateiliste", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "From Date": "Von Datum", + "HR": "HR", + "Half Day": "Half Day", + "Leave Application": "Lassen Anwendung", + "Leave Approver": "Lassen Approver", + "Leave Balance Before Application": "Lassen Vor Saldo Anwendung", + "Leave Type": "Lassen Typ", + "Leave can be approved by users with Role, \"Leave Approver\"": "Kann von Benutzern mit Role zugelassen zu verlassen, \"Leave Approver\"", + "Letter Head": "Briefkopf", + "More Info": "Mehr Info", + "Open": "\u00d6ffnen", + "Posting Date": "Buchungsdatum", + "Reason": "Grund", + "Rejected": "Abgelehnt", + "Status": "Status", + "To Date": "To Date", + "Total Leave Days": "Insgesamt Leave Tage" +} \ No newline at end of file diff --git a/hr/doctype/leave_application/locale/de-py.json b/hr/doctype/leave_application/locale/de-py.json new file mode 100644 index 0000000000..6eb61b3ef7 --- /dev/null +++ b/hr/doctype/leave_application/locale/de-py.json @@ -0,0 +1,8 @@ +{ + "Employee": "Mitarbeiter", + "Holiday": "Urlaub", + "Leave Application": "Lassen Anwendung", + "Leave Blocked": "Lassen Blockierte", + "Leave by": "Lassen Sie von", + "New Leave Application": "New Leave Anwendung" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list/locale/_messages_doc.json b/hr/doctype/leave_block_list/locale/_messages_doc.json index 0a165a731a..b8b9977eaa 100644 --- a/hr/doctype/leave_block_list/locale/_messages_doc.json +++ b/hr/doctype/leave_block_list/locale/_messages_doc.json @@ -6,10 +6,10 @@ "Allow the following users to approve Leave Applications for block days.", "Company", "Leave Block List", - "Stop users from making Leave Applications on following days.", - "Year", "If not checked, the list will have to be added to each Department where it has to be applied.", + "Stop users from making Leave Applications on following days.", "Applies to Company", + "Year", "Leave Block List Name", "Leave Block List Allowed", "Leave Block List Dates" diff --git a/hr/doctype/leave_block_list/locale/de-doc.json b/hr/doctype/leave_block_list/locale/de-doc.json new file mode 100644 index 0000000000..a86d8e1db1 --- /dev/null +++ b/hr/doctype/leave_block_list/locale/de-doc.json @@ -0,0 +1,15 @@ +{ + "Allow Users": "Erm\u00f6glichen", + "Applies to Company": "Gilt f\u00fcr Unternehmen", + "Block Days": "Block Tage", + "Block Holidays on important days.": "Blockieren Urlaub auf wichtige Tage.", + "Company": "Firma", + "HR": "HR", + "If not checked, the list will have to be added to each Department where it has to be applied.": "Falls nicht, wird die Liste m\u00fcssen auf jeden Abteilung, wo sie angewendet werden hinzugef\u00fcgt werden.", + "Leave Block List": "Lassen Block List", + "Leave Block List Allowed": "Lassen Sie erlaubt Block List", + "Leave Block List Dates": "Lassen Block List Termine", + "Leave Block List Name": "Lassen Blockieren Name", + "Stop users from making Leave Applications on following days.": "Stoppen Sie den Nutzer von Leave Anwendungen auf folgenden Tagen.", + "Year": "Jahr" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list/locale/de-py.json b/hr/doctype/leave_block_list/locale/de-py.json new file mode 100644 index 0000000000..86ad129773 --- /dev/null +++ b/hr/doctype/leave_block_list/locale/de-py.json @@ -0,0 +1,4 @@ +{ + "Block Date": "Blockieren Datum", + "Date is repeated": "Datum wird wiederholt" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list_allow/locale/de-doc.json b/hr/doctype/leave_block_list_allow/locale/de-doc.json new file mode 100644 index 0000000000..600880b60f --- /dev/null +++ b/hr/doctype/leave_block_list_allow/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Allow User": "Benutzer zulassen", + "HR": "HR", + "Leave Block List Allow": "Lassen Lassen Block List" +} \ No newline at end of file diff --git a/hr/doctype/leave_block_list_date/locale/de-doc.json b/hr/doctype/leave_block_list_date/locale/de-doc.json new file mode 100644 index 0000000000..c3f7c588cc --- /dev/null +++ b/hr/doctype/leave_block_list_date/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Block Date": "Blockieren Datum", + "HR": "HR", + "Leave Block List Date": "Lassen Block List Datum", + "Reason": "Grund" +} \ No newline at end of file diff --git a/hr/doctype/leave_control_panel/locale/_messages_doc.json b/hr/doctype/leave_control_panel/locale/_messages_doc.json index 9e06b36dc3..92d04e5014 100644 --- a/hr/doctype/leave_control_panel/locale/_messages_doc.json +++ b/hr/doctype/leave_control_panel/locale/_messages_doc.json @@ -6,15 +6,15 @@ "Designation", "HR", "Leave blank if considered for all designations", - "Leave Type", - "Leave blank if considered for all grades", - "New Leaves Allocated (In Days)", "Grade", + "Leave blank if considered for all grades", + "Leave Type", + "New Leaves Allocated (In Days)", + "Department", "Fiscal Year", "Carry Forward", "Allocate", "Branch", - "Department", "Leave blank if considered for all employee types", "Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year" ] \ No newline at end of file diff --git a/hr/doctype/leave_control_panel/locale/de-doc.json b/hr/doctype/leave_control_panel/locale/de-doc.json new file mode 100644 index 0000000000..d2f984cae7 --- /dev/null +++ b/hr/doctype/leave_control_panel/locale/de-doc.json @@ -0,0 +1,20 @@ +{ + "Allocate": "Zuweisen", + "Branch": "Zweig", + "Carry Forward": "Vortragen", + "Department": "Abteilung", + "Designation": "Bezeichnung", + "Employee Type": "Arbeitnehmertyp", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Grade": "Klasse", + "HR": "HR", + "Leave Control Panel": "Lassen Sie Control Panel", + "Leave Type": "Lassen Typ", + "Leave blank if considered for all branches": "Freilassen, wenn f\u00fcr alle Branchen betrachtet", + "Leave blank if considered for all departments": "Freilassen, wenn f\u00fcr alle Abteilungen betrachtet", + "Leave blank if considered for all designations": "Freilassen, wenn f\u00fcr alle Bezeichnungen betrachtet", + "Leave blank if considered for all employee types": "Freilassen, wenn f\u00fcr alle Mitarbeiter Typen betrachtet", + "Leave blank if considered for all grades": "Freilassen, wenn f\u00fcr alle Typen gilt als", + "New Leaves Allocated (In Days)": "New Leaves Allocated (in Tagen)", + "Please select Carry Forward if you also want to include previous fiscal year's balance leaves to this fiscal year": "Bitte w\u00e4hlen Sie Carry Forward Auch wenn Sie zum vorherigen Gesch\u00e4ftsjahr die Bl\u00e4tter aufnehmen m\u00f6chten zum Ausgleich in diesem Gesch\u00e4ftsjahr" +} \ No newline at end of file diff --git a/hr/doctype/leave_type/locale/de-doc.json b/hr/doctype/leave_type/locale/de-doc.json new file mode 100644 index 0000000000..460563928e --- /dev/null +++ b/hr/doctype/leave_type/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "HR": "HR", + "Is Carry Forward": "Ist Carry Forward", + "Is Encash": "Ist einl\u00f6sen", + "Is LWP": "Ist LWP", + "Leave Type": "Lassen Typ", + "Leave Type Name": "Lassen Typ Name", + "Max Days Leave Allowed": "Max Leave Tage erlaubt", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/de-doc.json b/hr/doctype/other_income_detail/locale/de-doc.json new file mode 100644 index 0000000000..9f6b886378 --- /dev/null +++ b/hr/doctype/other_income_detail/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "Actual Amount": "Istmenge", + "Eligible Amount": "Anrechnungsbetrag", + "HR": "HR", + "Max. Limit": "Max Limit", + "Modified Amount": "Ge\u00e4ndert Betrag", + "Other Income Detail": "Sonstige Ertr\u00e4ge Detailansicht", + "Particulars": "Einzelheiten", + "Under Section": "Gem\u00e4\u00df \u00a7" +} \ No newline at end of file diff --git a/hr/doctype/salary_manager/locale/de-doc.json b/hr/doctype/salary_manager/locale/de-doc.json new file mode 100644 index 0000000000..77e4ca0d01 --- /dev/null +++ b/hr/doctype/salary_manager/locale/de-doc.json @@ -0,0 +1,21 @@ +{ + "Activity Log": "Activity Log", + "Branch": "Zweig", + "Check if you want to send salary slip in mail to each employee while submitting salary slip": "\u00dcberpr\u00fcfen Sie, ob Sie Gehaltsabrechnung in Mail an jeden Mitarbeiter wollen, w\u00e4hrend Einreichung Gehaltsabrechnung", + "Company": "Firma", + "Create Bank Voucher for the total salary paid for the above selected criteria": "Erstellen Bankgutschein f\u00fcr die Lohnsumme f\u00fcr die oben ausgew\u00e4hlten Kriterien gezahlt", + "Create Salary Slip": "Erstellen Gehaltsabrechnung", + "Creates salary slip for above mentioned criteria.": "Erstellt Gehaltsabrechnung f\u00fcr die oben genannten Kriterien.", + "Department": "Abteilung", + "Designation": "Bezeichnung", + "Document Description": "Document Beschreibung", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Grade": "Klasse", + "HR": "HR", + "Make Bank Voucher": "Machen Bankgutschein", + "Month": "Monat", + "Salary Manager": "Manager Gehalt", + "Send Email": "E-Mail senden", + "Submit Salary Slip": "Senden Gehaltsabrechnung", + "Submit all salary slips for the above selected criteria": "Reichen Sie alle Gehaltsabrechnungen f\u00fcr die oben ausgew\u00e4hlten Kriterien" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip/locale/_messages_doc.json b/hr/doctype/salary_slip/locale/_messages_doc.json index 52389a9d7b..7b404ba3e0 100644 --- a/hr/doctype/salary_slip/locale/_messages_doc.json +++ b/hr/doctype/salary_slip/locale/_messages_doc.json @@ -4,10 +4,10 @@ "ESIC No.", "HR", "Totals", - "Employee", + "Department", "Earning & Deduction", "Branch", - "Department", + "Employee", "Employee Name", "Email", "Company", diff --git a/hr/doctype/salary_slip/locale/de-doc.json b/hr/doctype/salary_slip/locale/de-doc.json new file mode 100644 index 0000000000..5e91a3b3a7 --- /dev/null +++ b/hr/doctype/salary_slip/locale/de-doc.json @@ -0,0 +1,39 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Arrear Amount": "Nachtr\u00e4glich Betrag", + "Bank Account No.": "Bank Konto-Nr", + "Bank Name": "Name der Bank", + "Branch": "Zweig", + "Company": "Firma", + "Deduction": "Abzug", + "Deductions": "Abz\u00fcge", + "Department": "Abteilung", + "Designation": "Bezeichnung", + "ESIC No.": "ESIC Nr.", + "Earning": "Earning", + "Earning & Deduction": "Earning & Abzug", + "Email": "E-Mail", + "Employee": "Mitarbeiter", + "Employee Name": "Name des Mitarbeiters", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Grade": "Klasse", + "Gross Pay": "Gross Pay", + "Gross Pay + Arrear Amount +Encashment Amount - Total Deduction": "Gross Pay + nachtr\u00e4glich Betrag + Inkasso Betrag - Total Abzug", + "HR": "HR", + "Leave Encashment Amount": "Lassen Einl\u00f6sung Betrag", + "Leave Without Pay": "Unbezahlten Urlaub", + "Letter Head": "Briefkopf", + "Month": "Monat", + "Net Pay": "Net Pay", + "Net Pay (in words) will be visible once you save the Salary Slip.": "Net Pay (in Worten) sichtbar sein wird, sobald Sie die Gehaltsabrechnung zu speichern.", + "PF No.": "PF Nr.", + "Payment days": "Payment Tag", + "Rounded Total": "Abgerundete insgesamt", + "Salary Slip": "Gehaltsabrechnung", + "Salary Structure Earnings": "Ergebnis Gehaltsstruktur", + "Total Deduction": "Insgesamt Abzug", + "Total days in month": "Insgesamt Tage im Monat", + "Total in words": "Total in Worten", + "Totals": "Totals" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip_deduction/locale/_messages_doc.json b/hr/doctype/salary_slip_deduction/locale/_messages_doc.json index 222cc4be26..6f771a02c9 100644 --- a/hr/doctype/salary_slip_deduction/locale/_messages_doc.json +++ b/hr/doctype/salary_slip_deduction/locale/_messages_doc.json @@ -1,8 +1,8 @@ [ "Modified Amount", "HR", - "Type", - "Amount", "Salary Slip Deduction", + "Amount", + "Type", "Depends on LWP" ] \ No newline at end of file diff --git a/hr/doctype/salary_slip_deduction/locale/de-doc.json b/hr/doctype/salary_slip_deduction/locale/de-doc.json new file mode 100644 index 0000000000..a3337609f0 --- /dev/null +++ b/hr/doctype/salary_slip_deduction/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "Amount": "Menge", + "Depends on LWP": "Abh\u00e4ngig von LWP", + "HR": "HR", + "Modified Amount": "Ge\u00e4ndert Betrag", + "Salary Slip Deduction": "Lohnabzug Rutsch", + "Type": "Typ" +} \ No newline at end of file diff --git a/hr/doctype/salary_slip_earning/locale/de-doc.json b/hr/doctype/salary_slip_earning/locale/de-doc.json new file mode 100644 index 0000000000..e704243d1c --- /dev/null +++ b/hr/doctype/salary_slip_earning/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "Amount": "Menge", + "Depends on LWP": "Abh\u00e4ngig von LWP", + "HR": "HR", + "Modified Amount": "Ge\u00e4ndert Betrag", + "Salary Slip Earning": "Earning Gehaltsabrechnung", + "Type": "Typ" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure/locale/de-doc.json b/hr/doctype/salary_structure/locale/de-doc.json new file mode 100644 index 0000000000..14df4ad513 --- /dev/null +++ b/hr/doctype/salary_structure/locale/de-doc.json @@ -0,0 +1,27 @@ +{ + "Branch": "Zweig", + "CTC": "CTC", + "Company": "Firma", + "Cost to Company": "Kosten Unternehmen", + "Deduction": "Abzug", + "Deduction1": "Deduction1", + "Department": "Abteilung", + "Designation": "Bezeichnung", + "Earning": "Earning", + "Earning & Deduction": "Earning & Abzug", + "Earning1": "Earning1", + "Employee": "Mitarbeiter", + "Employee Name": "Name des Mitarbeiters", + "From Date": "Von Datum", + "Grade": "Klasse", + "HR": "HR", + "Is Active": "Aktiv ist", + "Net Pay": "Net Pay", + "No": "Auf", + "Salary Structure": "Gehaltsstruktur", + "To Date": "To Date", + "Total Deduction": "Insgesamt Abzug", + "Total Earning": "Insgesamt Earning", + "Yes": "Ja", + "You can create more earning and deduction type from Setup --> HR": "Sie k\u00f6nnen mehr verdienen und Deduktion Typ aus Setup -> HR" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure_deduction/locale/de-doc.json b/hr/doctype/salary_structure_deduction/locale/de-doc.json new file mode 100644 index 0000000000..81d209645c --- /dev/null +++ b/hr/doctype/salary_structure_deduction/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Amount": "Menge", + "Depend on LWP": "Verlassen Sie sich auf LWP", + "HR": "HR", + "Salary Structure Deduction": "Gehaltsstruktur Abzug", + "Type": "Typ" +} \ No newline at end of file diff --git a/hr/doctype/salary_structure_earning/locale/de-doc.json b/hr/doctype/salary_structure_earning/locale/de-doc.json new file mode 100644 index 0000000000..66f76749af --- /dev/null +++ b/hr/doctype/salary_structure_earning/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Amount": "Menge", + "Depend on LWP": "Verlassen Sie sich auf LWP", + "HR": "HR", + "Salary Structure Earning": "Earning Gehaltsstruktur", + "Type": "Typ" +} \ No newline at end of file diff --git a/hr/module_def/hr/locale/de-doc.json b/hr/module_def/hr/locale/de-doc.json new file mode 100644 index 0000000000..62b7dbd760 --- /dev/null +++ b/hr/module_def/hr/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Applicant for a Job": "Antragsteller f\u00fcr einen Job", + "Apply / Approve Leaves": "\u00dcbernehmen / Genehmigen Leaves", + "Block Holidays on important days.": "Blockieren Urlaub auf wichtige Tage.", + "Description of a Job Opening": "Beschreibung eines Job Opening", + "Human Resources Home": "Human Resources Startseite" +} \ No newline at end of file diff --git a/hr/page/hr_home/locale/de-js.json b/hr/page/hr_home/locale/de-js.json new file mode 100644 index 0000000000..7627256c82 --- /dev/null +++ b/hr/page/hr_home/locale/de-js.json @@ -0,0 +1,58 @@ +{ + "Allocate leaves for the year.": "Weisen Bl\u00e4tter f\u00fcr das Jahr.", + "Applicant for a Job (extracted from jobs email).": "Antragsteller f\u00fcr einen Job (extrahiert aus Jobs E-Mail).", + "Applications for leave.": "Bei Antr\u00e4gen auf Urlaub.", + "Appraisal": "Bewertung", + "Appraisal Template": "Bewertung Template", + "Attendance": "Teilnahme", + "Attendance record.": "Zuschauerrekord.", + "Block leave applications by department.": "Block verlassen Anwendungen nach Abteilung.", + "Branch": "Zweig", + "Claims for expenses made on behalf of the organization.": "Anspr\u00fcche f\u00fcr Aufwendungen im Namen der Organisation gemacht.", + "Company branches.": "Unternehmen Niederlassungen.", + "Company departments.": "Abteilungen des Unternehmens.", + "Deduction Type": "Abzug Typ", + "Department": "Abteilung", + "Designation": "Bezeichnung", + "Documents": "Unterlagen", + "Earning Type": "Earning Typ", + "Employee": "Mitarbeiter", + "Employee Designation.": "Mitarbeiter Bezeichnung.", + "Employee Setup": "Mitarbeiter-Setup", + "Employee grades": "Mitarbeiter-Typen", + "Employee records.": "Mitarbeiter-Datens\u00e4tze.", + "Employment Type": "Besch\u00e4ftigungsart", + "Expense Claim": "Expense Anspruch", + "Expense Claim Type": "Expense Anspruch Type", + "Generate Salary Slips": "Generieren Gehaltsabrechnungen", + "Grade": "Klasse", + "Holiday List": "Ferienwohnung Liste", + "Job Applicant": "Job Applicant", + "Job Opening": "Stellenangebot", + "Leave Allocation": "Lassen Allocation", + "Leave Allocation Tool": "Lassen Allocation-Tool", + "Leave Application": "Lassen Anwendung", + "Leave Block List": "Lassen Block List", + "Leave Setup": "Lassen Sie Setup-", + "Leave Type": "Lassen Typ", + "Leave allocations.": "Lassen Zuweisungen.", + "List of holidays.": "Liste der Feiertage.", + "Masters": "Masters", + "Monthly salary statement.": "Monatsgehalt Aussage.", + "Monthly salary template.": "Monatsgehalt Vorlage.", + "Opening for a Job.": "\u00d6ffnung f\u00fcr den Job.", + "Payroll Setup": "Payroll-Setup", + "Performance appraisal.": "Leistungsbeurteilung.", + "Process Payroll": "Payroll-Prozess", + "Reports": "Reports", + "Salary Slip": "Gehaltsabrechnung", + "Salary Structure": "Gehaltsstruktur", + "Salary components.": "Gehaltsbestandteile.", + "Tax and other salary deductions.": "Steuer-und sonstige Lohnabz\u00fcge.", + "Template for employee performance appraisals.": "Vorlage f\u00fcr Mitarbeiter Leistungsbeurteilungen.", + "Type of employment master.": "Art der Besch\u00e4ftigung Master.", + "Type of leaves like casual, sick etc.": "Art der Bl\u00e4tter wie beil\u00e4ufig, krank usw.", + "Types of Expense Claim.": "Arten von Expense Anspruch.", + "Upload attendance": "Hochladen Teilnahme", + "Upload attendance from a .csv file": "Fotogalerie Besuch aus einer. Csv-Datei" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom/locale/de-doc.json b/manufacturing/doctype/bom/locale/de-doc.json new file mode 100644 index 0000000000..b5acbed52b --- /dev/null +++ b/manufacturing/doctype/bom/locale/de-doc.json @@ -0,0 +1,29 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "BOM": "BOM", + "BOM Item": "St\u00fccklistenposition", + "BOM Operations": "BOM Operationen", + "Costing": "Kalkulation", + "Is Active": "Aktiv ist", + "Is Default": "Ist Standard", + "Item": "Artikel", + "Item Desription": "Artikel Desription", + "Item UOM": "Artikel UOM", + "Item to be manufactured or repacked": "Artikel hergestellt oder umgepackt werden", + "Last Purchase Rate": "Last Purchase Rate", + "Manage cost of operations": "Verwalten Kosten der Operationen", + "Manufacturing": "Herstellung", + "Materials": "Materialien", + "Materials Required (Exploded)": "Ben\u00f6tigte Materialien (Explosionszeichnung)", + "More Info": "Mehr Info", + "Operations": "Gesch\u00e4ftst\u00e4tigkeit", + "Project Name": "Project Name", + "Quantity": "Menge", + "Quantity of item obtained after manufacturing / repacking from given quantities of raw materials": "Anzahl der Artikel nach der Herstellung / Umpacken vom Angesichts quantities von Rohstoffen Erhalten", + "Rate Of Materials Based On": "Rate Of Materialien auf Basis von", + "Total Cost": "Total Cost", + "Total Operating Cost": "Gesamten Betriebskosten", + "Total Raw Material Cost": "Insgesamt Rohstoffkosten", + "Valuation Rate": "Valuation bewerten", + "With Operations": "Mit Operations" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom/locale/de-py.json b/manufacturing/doctype/bom/locale/de-py.json new file mode 100644 index 0000000000..cd631f9314 --- /dev/null +++ b/manufacturing/doctype/bom/locale/de-py.json @@ -0,0 +1,7 @@ +{ + ": It is linked to other active BOM(s)": ": Es wird mit anderen aktiven BOM (s) verbunden", + "Item": "Artikel", + "cancel": "k\u00fcndigen", + "deactivate": "deaktivieren", + "has been entered atleast twice": "wurde atleast zweimal eingegeben" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_explosion_item/locale/de-doc.json b/manufacturing/doctype/bom_explosion_item/locale/de-doc.json new file mode 100644 index 0000000000..cf28699b27 --- /dev/null +++ b/manufacturing/doctype/bom_explosion_item/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Amount": "Menge", + "BOM Explosion Item": "St\u00fccklistenaufl\u00f6sung Artikel", + "Description": "Beschreibung", + "Item Code": "Item Code", + "Manufacturing": "Herstellung", + "Mat Detail No": "Mat im Detail", + "Parent BOM": "Eltern GUT", + "Qty": "Menge", + "Qty Consumed Per Unit": "Menge pro verbrauchter", + "Rate": "Rate", + "Stock UOM": "Lager UOM" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_item/locale/de-doc.json b/manufacturing/doctype/bom_item/locale/de-doc.json new file mode 100644 index 0000000000..3d47c34fa9 --- /dev/null +++ b/manufacturing/doctype/bom_item/locale/de-doc.json @@ -0,0 +1,14 @@ +{ + "Amount": "Menge", + "BOM Item": "St\u00fccklistenposition", + "BOM No": "BOM Nein", + "Item Code": "Item Code", + "Item Description": "Artikelbeschreibung", + "Manufacturing": "Herstellung", + "Operation No": "In Betrieb", + "Qty": "Menge", + "Qty Consumed Per Unit": "Menge pro verbrauchter", + "Rate": "Rate", + "Scrap %": "Scrap%", + "Stock UOM": "Lager UOM" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_operation/locale/de-doc.json b/manufacturing/doctype/bom_operation/locale/de-doc.json new file mode 100644 index 0000000000..ed4cc63221 --- /dev/null +++ b/manufacturing/doctype/bom_operation/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "BOM Operation": "BOM Betrieb", + "Hour Rate": "Hour Rate", + "Manufacturing": "Herstellung", + "Operating Cost": "Betriebskosten", + "Operation Description": "Operation Beschreibung", + "Operation No": "In Betrieb", + "Operation Time (mins)": "Betriebszeit (Min.)", + "Workstation": "Arbeitsplatz" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_replace_tool/locale/de-doc.json b/manufacturing/doctype/bom_replace_tool/locale/de-doc.json new file mode 100644 index 0000000000..f9a245739f --- /dev/null +++ b/manufacturing/doctype/bom_replace_tool/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "BOM Replace Tool": "BOM Replace Tool", + "Current BOM": "Aktuelle St\u00fcckliste", + "Manufacturing": "Herstellung", + "New BOM": "New BOM", + "Replace": "Ersetzen", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Ersetzen Sie die insbesondere gut in allen anderen St\u00fccklisten, wo sie verwendet wird. Es wird die alte BOM Link zu ersetzen, aktualisieren kosten und regenerieren \"Explosion St\u00fccklistenposition\" Tabelle pro neuen GOOD", + "The BOM which will be replaced": "Die St\u00fcckliste, die ersetzt werden", + "The new BOM after replacement": "Der neue BOM nach dem Austausch" +} \ No newline at end of file diff --git a/manufacturing/doctype/bom_replace_tool/locale/de-py.json b/manufacturing/doctype/bom_replace_tool/locale/de-py.json new file mode 100644 index 0000000000..3a9764f044 --- /dev/null +++ b/manufacturing/doctype/bom_replace_tool/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "BOM replaced": "BOM ersetzt" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_order/locale/_messages_doc.json b/manufacturing/doctype/production_order/locale/_messages_doc.json index 1707c88fe6..37a83a4e04 100644 --- a/manufacturing/doctype/production_order/locale/_messages_doc.json +++ b/manufacturing/doctype/production_order/locale/_messages_doc.json @@ -1,6 +1,7 @@ [ "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.", "Qty To Manufacture", + "Draft", "Use Multi-Level BOM", "Status", "Project Name", @@ -24,7 +25,6 @@ "Manufactured quantity will be updated in this warehouse", "Item To Manufacture", "Manufacture against Sales Order", - "Draft", "Sales Order", "Completed" ] \ No newline at end of file diff --git a/manufacturing/doctype/production_order/locale/de-doc.json b/manufacturing/doctype/production_order/locale/de-doc.json new file mode 100644 index 0000000000..c819e8b73a --- /dev/null +++ b/manufacturing/doctype/production_order/locale/de-doc.json @@ -0,0 +1,30 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Automatically updated via Stock Entry of type Manufacture/Repack": "Automatisch \u00fcber Lager Eintrag vom Typ Manufacture / Repack aktualisiert", + "BOM No": "BOM Nein", + "Bill of Material to be considered for manufacturing": "Bill of Material, um f\u00fcr die Fertigung ber\u00fccksichtigt werden", + "Cancelled": "Abgesagt", + "Company": "Firma", + "Completed": "Fertiggestellt", + "Draft": "Entwurf", + "For Warehouse": "F\u00fcr Warehouse", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "Wenn aktiviert, wird St\u00fcckliste Baugruppe Artikel f\u00fcr immer Rohstoff betrachtet werden. Andernfalls werden alle Unterbaugruppe Elemente als Ausgangsmaterial behandelt werden.", + "In Process": "In Process", + "Item To Manufacture": "Artikel in der Herstellung", + "Manufacture against Sales Order": "Herstellung gegen Sales Order", + "Manufactured Qty": "Hergestellt Menge", + "Manufactured quantity will be updated in this warehouse": "Menge hergestellt werden in diesem Lager aktualisiert werden", + "Manufacturing": "Herstellung", + "More Info": "Mehr Info", + "PRO": "PRO", + "Production Order": "Fertigungsauftrag", + "Project Name": "Project Name", + "Qty To Manufacture": "Um Qty Herstellung", + "Sales Order": "Sales Order", + "Series": "Serie", + "Status": "Status", + "Stock UOM": "Lager UOM", + "Stopped": "Gestoppt", + "Submitted": "Eingereicht", + "Use Multi-Level BOM": "Verwenden Sie Multi-Level BOM" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_plan_item/locale/de-doc.json b/manufacturing/doctype/production_plan_item/locale/de-doc.json new file mode 100644 index 0000000000..304f45d0c2 --- /dev/null +++ b/manufacturing/doctype/production_plan_item/locale/de-doc.json @@ -0,0 +1,11 @@ +{ + "BOM No": "BOM Nein", + "Description": "Beschreibung", + "Item Code": "Item Code", + "Manufacturing": "Herstellung", + "Planned Qty": "Geplante Menge", + "Production Plan Item": "Production Plan Artikel", + "SO Pending Qty": "SO Pending Menge", + "Sales Order": "Sales Order", + "UOM": "UOM" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_plan_sales_order/locale/de-doc.json b/manufacturing/doctype/production_plan_sales_order/locale/de-doc.json new file mode 100644 index 0000000000..dc939ba6c5 --- /dev/null +++ b/manufacturing/doctype/production_plan_sales_order/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "Customer": "Kunde", + "Grand Total": "Grand Total", + "Manufacturing": "Herstellung", + "Production Plan Sales Order": "Production Plan Sales Order", + "SO Date": "SO Datum", + "Sales Order": "Sales Order" +} \ No newline at end of file diff --git a/manufacturing/doctype/production_planning_tool/locale/de-doc.json b/manufacturing/doctype/production_planning_tool/locale/de-doc.json new file mode 100644 index 0000000000..dc74b1f39c --- /dev/null +++ b/manufacturing/doctype/production_planning_tool/locale/de-doc.json @@ -0,0 +1,30 @@ +{ + "Clear Table": "Tabelle l\u00f6schen", + "Company": "Firma", + "Create Production Orders": "Erstellen Fertigungsauftr\u00e4ge", + "Download Materials Required": "Herunterladen ben\u00f6tigte Materialien", + "Download a report containing all raw materials with their latest inventory status": "Laden Sie einen Bericht mit allen Rohstoffen mit ihren neuesten Inventar Status", + "Enter items and planned qty for which you want to raise production orders or download raw materials for analysis.": "Geben Sie die Posten und geplante Menge f\u00fcr die Sie Fertigungsauftr\u00e4ge erh\u00f6hen oder downloaden Rohstoffe f\u00fcr die Analyse.", + "Filter based on customer": "Filtern basierend auf Kunden-", + "Filter based on item": "Filtern basierend auf Artikel", + "From Date": "Von Datum", + "Get Items": "Holen Artikel", + "Get Sales Orders": "Holen Sie Kundenauftr\u00e4ge", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "Wenn aktiviert, wird St\u00fcckliste Baugruppe Artikel f\u00fcr immer Rohstoff betrachtet werden. Andernfalls werden alle Unterbaugruppe Elemente als Ausgangsmaterial behandelt werden.", + "Items to be requested which are \"Out of Stock\" considering all warehouses based on projected qty and minimum order qty": "Welche Gegenst\u00e4nde werden gebeten, sich \"Out of Stock\" unter Ber\u00fccksichtigung aller Hallen auf projizierte minimale Bestellmenge und Menge der Basis", + "Manufacturing": "Herstellung", + "Material Request For Warehouse": "Material Request For Warehouse", + "Materials Requirement Planning (MRP)": "Materialien Requirement Planning (MRP)", + "Production Plan Items": "Production Plan Artikel", + "Production Plan Sales Orders": "Production Plan Kundenauftr\u00e4ge", + "Production Planning Tool": "Production Planning-Tool", + "Pull items from Sales Order mentioned in the above table.": "Ziehen Sie Elemente aus Sales Order in der obigen Tabelle erw\u00e4hnt.", + "Pull sales orders (pending to deliver) based on the above criteria": "Ziehen Sie Kundenauftr\u00e4ge (anh\u00e4ngig zu liefern), basierend auf den oben genannten Kriterien", + "Raise Material Request": "Heben Material anfordern", + "Raise Production Order": "Heben Fertigungsauftrag", + "Select Sales Orders": "W\u00e4hlen Sie Kundenauftr\u00e4ge", + "Select Sales Orders from which you want to create Production Orders.": "W\u00e4hlen Sie Auftr\u00e4ge aus der Sie Fertigungsauftr\u00e4ge erstellen.", + "Separate production order will be created for each finished good item.": "Separate Fertigungsauftrag wird f\u00fcr jeden fertigen gute Position geschaffen werden.", + "To Date": "To Date", + "Use Multi-Level BOM": "Verwenden Sie Multi-Level BOM" +} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/de-doc.json b/manufacturing/doctype/update_delivery_date/locale/de-doc.json new file mode 100644 index 0000000000..a21240b132 --- /dev/null +++ b/manufacturing/doctype/update_delivery_date/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Company": "Firma", + "Customer": "Kunde", + "Entries": "Eintr\u00e4ge", + "From Date": "Von Datum", + "Get Open Sales Order": "Sie \u00f6ffnen Sales Order", + "Manufacturing": "Herstellung", + "Sales Order": "Sales Order", + "Territory": "Gebiet", + "To Date": "To Date", + "Update Delivery Date": "Aktualisieren Lieferdatum", + "Update Sales Order": "Aktualisieren Sie Sales Order" +} \ No newline at end of file diff --git a/manufacturing/doctype/workstation/locale/_messages_doc.json b/manufacturing/doctype/workstation/locale/_messages_doc.json index 6ab9889c4f..2df5d820ad 100644 --- a/manufacturing/doctype/workstation/locale/_messages_doc.json +++ b/manufacturing/doctype/workstation/locale/_messages_doc.json @@ -3,15 +3,15 @@ "Units/Shifts", "Capacity", "Description", + "Over Heads", "Hour Rate", "Trash Reason", "Hour Rate Consumable", "Capacity Units", "Units/Hour", - "Over Heads", - "Hour Rate Electricity", "Warehouse", "Overhead", + "Hour Rate Electricity", "Manufacturing", "Hour Rate Rent", "Workstation Name", diff --git a/manufacturing/doctype/workstation/locale/de-doc.json b/manufacturing/doctype/workstation/locale/de-doc.json new file mode 100644 index 0000000000..1c60c68a3f --- /dev/null +++ b/manufacturing/doctype/workstation/locale/de-doc.json @@ -0,0 +1,19 @@ +{ + "Capacity": "Kapazit\u00e4t", + "Capacity Units": "Capacity Units", + "Description": "Beschreibung", + "Hour Rate": "Hour Rate", + "Hour Rate Consumable": "Hour Rate Verbrauchsmaterial", + "Hour Rate Electricity": "Hour Rate Strom", + "Hour Rate Labour": "Hour Rate Labour", + "Hour Rate Rent": "Hour Rate Miete", + "Manufacturing": "Herstellung", + "Over Heads": "\u00dcber Heads", + "Overhead": "Oben", + "Trash Reason": "Trash Reason", + "Units/Hour": "Einheiten / Stunde", + "Units/Shifts": "Units / Shifts", + "Warehouse": "Lager", + "Workstation": "Arbeitsplatz", + "Workstation Name": "Name der Arbeitsstation" +} \ No newline at end of file diff --git a/manufacturing/module_def/manufacturing/locale/_messages_doc.json b/manufacturing/module_def/manufacturing/locale/_messages_doc.json index c8da7cfe6a..b47bc77f1d 100644 --- a/manufacturing/module_def/manufacturing/locale/_messages_doc.json +++ b/manufacturing/module_def/manufacturing/locale/_messages_doc.json @@ -1,4 +1,4 @@ [ - "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM", - "Manufacturing Home" + "Manufacturing Home", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM" ] \ No newline at end of file diff --git a/manufacturing/module_def/manufacturing/locale/de-doc.json b/manufacturing/module_def/manufacturing/locale/de-doc.json new file mode 100644 index 0000000000..a7a9ee11a5 --- /dev/null +++ b/manufacturing/module_def/manufacturing/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Manufacturing Home": "Herstellung Home", + "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM": "Ersetzen Sie die insbesondere gut in allen anderen St\u00fccklisten, wo sie verwendet wird. Es wird die alte BOM Link zu ersetzen, aktualisieren kosten und regenerieren \"Explosion St\u00fccklistenposition\" Tabelle pro neuen GOOD" +} \ No newline at end of file diff --git a/manufacturing/page/manufacturing_home/locale/de-js.json b/manufacturing/page/manufacturing_home/locale/de-js.json new file mode 100644 index 0000000000..7c4db43aeb --- /dev/null +++ b/manufacturing/page/manufacturing_home/locale/de-js.json @@ -0,0 +1,18 @@ +{ + "All Products or Services.": "Alle Produkte oder Dienstleistungen.", + "BOM Replace Tool": "BOM Replace Tool", + "Bill of Materials": "Bill of Materials", + "Bill of Materials (BOM)": "Bill of Materials (BOM)", + "Documents": "Unterlagen", + "Generate Material Requests (MRP) and Production Orders.": "Generieren Werkstoff Requests (MRP) und Fertigungsauftr\u00e4ge.", + "Item": "Artikel", + "Masters": "Masters", + "Orders released for production.": "Bestellungen f\u00fcr die Produktion freigegeben.", + "Production Order": "Fertigungsauftrag", + "Production Planning (MRP)": "Production Planning (MRP)", + "Production Planning Tool": "Production Planning-Tool", + "Replace Item / BOM in all BOMs": "Ersetzen Item / BOM in allen St\u00fccklisten", + "Utility": "Nutzen", + "Where manufacturing operations are carried out.": "Wo Herstellungsvorg\u00e4nge werden durchgef\u00fchrt.", + "Workstation": "Arbeitsplatz" +} \ No newline at end of file diff --git a/production/doctype/update_delivery_date/locale/_messages_doc.json b/production/doctype/update_delivery_date/locale/_messages_doc.json new file mode 100644 index 0000000000..1c747f1d6e --- /dev/null +++ b/production/doctype/update_delivery_date/locale/_messages_doc.json @@ -0,0 +1,13 @@ +[ + "Customer", + "Get Open Sales Order", + "Territory", + "Company", + "Update Delivery Date", + "To Date", + "Production", + "From Date", + "Entries", + "Sales Order", + "Update Sales Order" +] \ No newline at end of file diff --git a/projects/doctype/activity_type/locale/de-doc.json b/projects/doctype/activity_type/locale/de-doc.json new file mode 100644 index 0000000000..f2869edb37 --- /dev/null +++ b/projects/doctype/activity_type/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Activity Type": "Art der T\u00e4tigkeit", + "Projects": "Projekte" +} \ No newline at end of file diff --git a/projects/doctype/project/locale/de-doc.json b/projects/doctype/project/locale/de-doc.json new file mode 100644 index 0000000000..27eba02059 --- /dev/null +++ b/projects/doctype/project/locale/de-doc.json @@ -0,0 +1,46 @@ +{ + "Actual Completion Date": "Tats\u00e4chliche Datum der Fertigstellung", + "Cancelled": "Abgesagt", + "Company": "Firma", + "Completed": "Fertiggestellt", + "Completion Date": "Datum der Fertigstellung", + "Customer": "Kunde", + "Customer Details": "Customer Details", + "Dates": "Termine", + "Estimated Material Cost": "Gesch\u00e4tzter Materialkalkulationen", + "External": "Extern", + "File List": "Dateiliste", + "Gross Margin %": "Gross Margin%", + "Gross Margin Value": "Gross Margin Wert", + "High": "Hoch", + "Important dates and commitments in your project life cycle": "Wichtige Termine und Verpflichtungen in Ihrem Projekt-Lebenszyklus", + "Internal": "Intern", + "Is Active": "Aktiv ist", + "Low": "Gering", + "Margin": "Marge", + "Medium": "Medium", + "Milestones": "Meilensteine", + "Milestones will be added as Events in the Calendar": "Meilensteine \u200b\u200bwerden die Veranstaltungen in der hinzugef\u00fcgt werden", + "No": "Auf", + "Notes": "Aufzeichnungen", + "Open": "\u00d6ffnen", + "Other": "Andere", + "Priority": "Priorit\u00e4t", + "Project": "Projekt", + "Project Costing": "Projektkalkulation", + "Project Details": "Project Details", + "Project Milestones": "Projektmeilensteine", + "Project Name": "Project Name", + "Project Start Date": "Projekt Startdatum", + "Project Tasks": "Projektaufgaben", + "Project Type": "Projekttyp", + "Project Value": "Projekt Wert", + "Project will get saved and will be searchable with project name given": "Projekt wird gespeichert und erhalten werden durchsuchbare mit Projekt-Namen", + "Projects": "Projekte", + "Select name of Customer to whom project belongs": "W\u00e4hlen Sie den Namen des Kunden, dem geh\u00f6rt Projekts", + "Status": "Status", + "Tasks": "Aufgaben", + "Tasks belonging to this Project.": "Aufgaben geh\u00f6ren zu diesem Projekt.", + "Trash Reason": "Trash Reason", + "Yes": "Ja" +} \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/de-doc.json b/projects/doctype/project_activity/locale/de-doc.json new file mode 100644 index 0000000000..f436f5a6e5 --- /dev/null +++ b/projects/doctype/project_activity/locale/de-doc.json @@ -0,0 +1,14 @@ +{ + "Activity Name": "Aktivit\u00e4t Name", + "Add": "Hinzuf\u00fcgen", + "Hours": "Stunden", + "Last Update": "Letztes Update", + "Last Update By": "Letzte Aktualisierung durch", + "New Update": "Neues Update", + "Percent Complete": "Percent Complete", + "Project": "Projekt", + "Project Activity": "Projekt Activity", + "Projects": "Projekte", + "Updates": "Updates", + "Updates HTML": "Updates HTML" +} \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/de-doc.json b/projects/doctype/project_activity_update/locale/de-doc.json new file mode 100644 index 0000000000..a685dece87 --- /dev/null +++ b/projects/doctype/project_activity_update/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Hours": "Stunden", + "Project Activity Update": "Projekt Activity aktualisieren", + "Projects": "Projekte", + "Update": "Aktualisieren", + "e.g. 0.5, 2.5 etc": "z.B. 0,5, 2,5 etc." +} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/de-doc.json b/projects/doctype/project_control/locale/de-doc.json new file mode 100644 index 0000000000..45a7808f03 --- /dev/null +++ b/projects/doctype/project_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Project Control": "Project Control", + "Projects": "Projekte" +} \ No newline at end of file diff --git a/projects/doctype/project_milestone/locale/de-doc.json b/projects/doctype/project_milestone/locale/de-doc.json new file mode 100644 index 0000000000..91d64f1957 --- /dev/null +++ b/projects/doctype/project_milestone/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Completed": "Fertiggestellt", + "Milestone": "Meilenstein", + "Milestone Date": "Milestone Datum", + "Pending": "Schwebend", + "Project Milestone": "Projekt Milestone", + "Projects": "Projekte", + "Status": "Status" +} \ No newline at end of file diff --git a/projects/doctype/task/locale/de-doc.json b/projects/doctype/task/locale/de-doc.json new file mode 100644 index 0000000000..9edc445d92 --- /dev/null +++ b/projects/doctype/task/locale/de-doc.json @@ -0,0 +1,34 @@ +{ + "Actual": "Tats\u00e4chlich", + "Actual Budget": "Tats\u00e4chliche Budget", + "Actual End Date": "Actual End Datum", + "Actual Start Date": "Tats\u00e4chliche Startdatum", + "Allocated Budget": "Zugeteilten Budget", + "Cancelled": "Abgesagt", + "Closed": "Geschlossen", + "Closing Date": "Einsendeschluss", + "Company": "Firma", + "Details": "Details", + "Expected": "Voraussichtlich", + "Expected End Date": "Erwartete Enddatum", + "Expected Start Date": "Fr\u00fchestes Eintrittsdatum", + "File List": "Dateiliste", + "High": "Hoch", + "Low": "Gering", + "Medium": "Medium", + "More Details": "Mehr Details", + "Open": "\u00d6ffnen", + "Pending Review": "Bis Bewertung", + "Priority": "Priorit\u00e4t", + "Project": "Projekt", + "Projects": "Projekte", + "Review Date": "Bewerten Datum", + "Status": "Status", + "Subject": "Thema", + "Task": "Aufgabe", + "Task Details": "Task Details", + "Time and Budget": "Zeit und Budget", + "Total Hours (Expected)": "Total Hours (Erwartete)", + "Urgent": "Dringend", + "Working": "Arbeit" +} \ No newline at end of file diff --git a/projects/doctype/time_log/locale/_messages_js.json b/projects/doctype/time_log/locale/_messages_js.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/projects/doctype/time_log/locale/_messages_js.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/projects/doctype/time_log/locale/_messages_py.json b/projects/doctype/time_log/locale/_messages_py.json new file mode 100644 index 0000000000..c594d545c5 --- /dev/null +++ b/projects/doctype/time_log/locale/_messages_py.json @@ -0,0 +1,3 @@ +[ + "This Time Log conflicts with" +] \ No newline at end of file diff --git a/projects/doctype/timesheet/locale/_messages_doc.json b/projects/doctype/timesheet/locale/_messages_doc.json index 7c5d2978c5..fab2534615 100644 --- a/projects/doctype/timesheet/locale/_messages_doc.json +++ b/projects/doctype/timesheet/locale/_messages_doc.json @@ -3,12 +3,12 @@ "Timesheet By", "Notes", "Timesheet", - "Submitted", - "Amendment Date", "Timesheet Date", - "Timesheet Details", + "Amendment Date", "Cancelled", "Draft", + "Submitted", + "Timesheet Details", "Amended From", "Projects" ] \ No newline at end of file diff --git a/projects/doctype/timesheet/locale/de-doc.json b/projects/doctype/timesheet/locale/de-doc.json new file mode 100644 index 0000000000..e070b215b6 --- /dev/null +++ b/projects/doctype/timesheet/locale/de-doc.json @@ -0,0 +1,14 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Cancelled": "Abgesagt", + "Draft": "Entwurf", + "Notes": "Aufzeichnungen", + "Projects": "Projekte", + "Status": "Status", + "Submitted": "Eingereicht", + "Timesheet": "Timesheet", + "Timesheet By": "Timesheet By", + "Timesheet Date": "Timesheet Datum", + "Timesheet Details": "Timesheet Einzelheiten" +} \ No newline at end of file diff --git a/projects/doctype/timesheet_detail/locale/_messages_doc.json b/projects/doctype/timesheet_detail/locale/_messages_doc.json index eff7cbd756..a51a3e2464 100644 --- a/projects/doctype/timesheet_detail/locale/_messages_doc.json +++ b/projects/doctype/timesheet_detail/locale/_messages_doc.json @@ -5,9 +5,9 @@ "Actual Start Time", "Project", "Total Hours (Actual)", + "Customer Name", "Additional Info", "Timesheet Detail", - "Customer Name", "Task Name", "Projects" ] \ No newline at end of file diff --git a/projects/doctype/timesheet_detail/locale/de-doc.json b/projects/doctype/timesheet_detail/locale/de-doc.json new file mode 100644 index 0000000000..9a29d33e25 --- /dev/null +++ b/projects/doctype/timesheet_detail/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Activity Type": "Art der T\u00e4tigkeit", + "Actual End Time": "Tats\u00e4chliche Endzeit", + "Actual Start Time": "Tats\u00e4chliche Startzeit", + "Additional Info": "Zus\u00e4tzliche Informationen", + "Customer Name": "Name des Kunden", + "Project": "Projekt", + "Projects": "Projekte", + "Task Id": "Task-Id", + "Task Name": "Task-Name", + "Timesheet Detail": "Timesheet Details", + "Total Hours (Actual)": "Total Hours (Actual)" +} \ No newline at end of file diff --git a/projects/module_def/projects/locale/_messages_doc.json b/projects/module_def/projects/locale/_messages_doc.json new file mode 100644 index 0000000000..da33435bc9 --- /dev/null +++ b/projects/module_def/projects/locale/_messages_doc.json @@ -0,0 +1,4 @@ +[ + "Projects Home", + "Projects" +] \ No newline at end of file diff --git a/projects/page/projects_home/locale/_messages_js.json b/projects/page/projects_home/locale/_messages_js.json index c2539f0776..fe4cb6b063 100644 --- a/projects/page/projects_home/locale/_messages_js.json +++ b/projects/page/projects_home/locale/_messages_js.json @@ -1,4 +1,5 @@ [ + "Time Log", "Masters", "Task", "Project master.", @@ -7,6 +8,7 @@ "Gantt Chart", "Timesheet", "Project", + "Time Log for tasks.", "Project activity / task.", "Documents", "Timesheet for tasks.", diff --git a/projects/page/projects_home/locale/de-js.json b/projects/page/projects_home/locale/de-js.json new file mode 100644 index 0000000000..49f2412f21 --- /dev/null +++ b/projects/page/projects_home/locale/de-js.json @@ -0,0 +1,15 @@ +{ + "Activity Type": "Art der T\u00e4tigkeit", + "Documents": "Unterlagen", + "Gantt Chart": "Gantt Chart", + "Gantt chart of all tasks.": "Gantt-Diagramm aller Aufgaben.", + "Masters": "Masters", + "Project": "Projekt", + "Project activity / task.": "Projektaktivit\u00e4t / Aufgabe.", + "Project master.": "Projekt Meister.", + "Task": "Aufgabe", + "Timesheet": "Timesheet", + "Timesheet for tasks.": "Timesheet f\u00fcr Aufgaben.", + "Tools": "Werkzeuge", + "Types of activities for Time Sheets": "Arten von Aktivit\u00e4ten f\u00fcr Time Sheets" +} \ No newline at end of file diff --git a/public/js/locale/_messages_js.json b/public/js/locale/_messages_js.json index 4e6cc39577..acb06e71e7 100644 --- a/public/js/locale/_messages_js.json +++ b/public/js/locale/_messages_js.json @@ -66,7 +66,6 @@ "Campaign", "Maintenance Visit Purpose", "Purchase Invoice", - "Product Settings", "Item Reorder", "Leave Type", "Sales and Purchase Return Tool", @@ -117,6 +116,7 @@ "Utilities", "Warehouse User", "Website Slideshow", + "Valuation Control", "Profile Control", "Purchase Taxes and Charges", "Landed Cost Wizard", @@ -136,7 +136,6 @@ "Project Activity", "Documentation", "Purchase Order Item Supplied", - "Purchase Request", "Quotation Lost Reason", "Event Role", "Contact", @@ -170,10 +169,10 @@ "Support", "Activity Type", "Cost Center", - "Holiday Block List", + "Product Settings", "Delivery Note Item", "Company Control", - "Purchase Request Item", + "Website Settings", "Answer", "Email Settings", "Holiday", @@ -190,7 +189,6 @@ "Payment to Invoice Matching Tool Detail", "Contact Us Settings", "Expense Claim Detail", - "Communication Log", "Stock Ledger Entry", "Bank Reconciliation", "Multi Ledger Report Detail", @@ -229,20 +227,18 @@ "Control Panel", "Delivery Note", "Trend Analyzer Control", - "Valuation Control", + "Production", "Search Criteria", "Salary Structure", "Purchase Receipt Item Supplied", "Customer Group", "Opportunity Item", - "Holiday Block List Date", "Quotation", "Sales Invoice Item", "GL Mapper", "Workflow Document State", "Item Website Specification", "Mode of Payment", - "Website Settings", "Leave Block List Date", "System Console", "To Do", @@ -268,7 +264,6 @@ "Trash Control", "Salary Structure Earning", "DocType", - "Holiday Block List Allow", "SMS Parameter", "Maintenance Schedule", "Event User", diff --git a/public/js/locale/de-js.json b/public/js/locale/de-js.json new file mode 100644 index 0000000000..fb5359b9e9 --- /dev/null +++ b/public/js/locale/de-js.json @@ -0,0 +1,315 @@ +{ + "About Us Settings": "\u00dcber uns Settings", + "About Us Team Member": "\u00dcber uns Team Member", + "Account": "Konto", + "Accounts": "Konten", + "Activity": "Aktivit\u00e4t", + "Activity Type": "Art der T\u00e4tigkeit", + "Address": "Adresse", + "Answer": "Beantworten", + "Appraisal": "Bewertung", + "Appraisal Goal": "Bewertung Goal", + "Appraisal Template": "Bewertung Template", + "Appraisal Template Goal": "Bewertung Template Goal", + "Attendance": "Teilnahme", + "Attendance Control Panel": "Teilnahme Control Panel", + "Authorization Control": "Authorization Control", + "Authorization Rule": "Autorisierungsregel", + "BOM": "BOM", + "BOM Explosion Item": "St\u00fccklistenaufl\u00f6sung Artikel", + "BOM Item": "St\u00fccklistenposition", + "BOM Operation": "BOM Betrieb", + "BOM Replace Tool": "BOM Replace Tool", + "Bank Reconciliation": "Kontenabstimmung", + "Bank Reconciliation Detail": "Kontenabstimmung Details", + "Batch": "Stapel", + "Bin": "Kasten", + "Blog": "Blog", + "Blog Subscriber": "Blog Subscriber", + "Branch": "Zweig", + "Brand": "Marke", + "Budget Control": "Budget Control", + "Budget Detail": "Budget Detailansicht", + "Budget Distribution": "Budget Verteilung", + "Budget Distribution Detail": "Budget Verteilung Detailansicht", + "Bulk Email": "Bulk Email", + "Buying": "Kauf", + "C-Form": "C-Form", + "C-Form Invoice Detail": "C-Form Rechnungsdetails", + "Calendar": "Kalender", + "Campaign": "Kampagne", + "Comment": "Kommentar", + "Communication": "Kommunikation", + "Communication Log": "Communication Log", + "Company": "Firma", + "Company Control": "Firma Control", + "Company History": "Unternehmensgeschichte", + "Contact": "Kontakt", + "Contact Control": "Kontakt Kontrolle", + "Contact Us Settings": "Kontakt Settings", + "Control Panel": "Control Panel", + "Core": "Kern", + "Cost Center": "Kostenstellenrechnung", + "Country": "Land", + "Currency": "W\u00e4hrung", + "Custom Field": "Custom Field", + "Custom Script": "Custom Script", + "Customer": "Kunde", + "Customer Group": "Customer Group", + "Customer Issue": "Das Anliegen des Kunden", + "Customize Form": "Formular anpassen", + "Customize Form Field": "Passen Form Field", + "Deduction Type": "Abzug Typ", + "Default Home Page": "Standard Home Page", + "DefaultValue": "DefaultValue", + "Delivery Note": "Lieferschein", + "Delivery Note Item": "Lieferscheinposition", + "Delivery Note Packing Item": "Lieferschein Verpackung Artikel", + "Department": "Abteilung", + "Designation": "Bezeichnung", + "DocField": "DocField", + "DocPerm": "DocPerm", + "DocType": "DOCTYPE", + "DocType Label": "DocType Etikett", + "DocType Mapper": "DocType Mapper", + "Documentation": "Dokumentation", + "Earning Type": "Earning Typ", + "Email Digest": "Email Digest", + "Email Settings": "E-Mail-Einstellungen", + "Employee": "Mitarbeiter", + "Employee Education": "Mitarbeiterschulung", + "Employee External Work History": "Mitarbeiter Externe Arbeit Geschichte", + "Employee Internal Work History": "Mitarbeiter Interner Arbeitsbereich Geschichte", + "Employee Training": "Mitarbeiterschulung", + "Employment Type": "Besch\u00e4ftigungsart", + "Event": "Veranstaltung", + "Event Role": "Event Rolle", + "Event User": "Ereignis Benutzer", + "Expense Claim": "Expense Anspruch", + "Expense Claim Detail": "Expense Anspruch Details", + "Expense Claim Type": "Expense Anspruch Type", + "Featured Item": "Feature-Produkt", + "Features Setup": "Features Setup", + "Feed": "F\u00fcttern", + "Field Mapper Detail": "Feld Mapper Details", + "File Data": "File Data", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Forum": "Forum", + "GL Control": "GL Steuerung", + "GL Entry": "GL Eintrag", + "GL Mapper": "GL Mapper", + "GL Mapper Detail": "GL Mapper Details", + "Global Defaults": "Globale Defaults", + "Grade": "Klasse", + "HR": "HR", + "Help": "Hilfe", + "Holiday": "Urlaub", + "Holiday Block List": "Ferienwohnung Block List", + "Holiday Block List Allow": "Ferienwohnung Block List zulassen", + "Holiday Block List Date": "Ferienwohnung Block List Datum", + "Holiday List": "Ferienwohnung Liste", + "Home": "Zuhause", + "Home Control": "Home Control", + "Human Resources": "Human Resources", + "Industry Type": "Industry Typ", + "Installation Note": "Installation Hinweis", + "Installation Note Item": "Installation Hinweis Artikel", + "Item": "Artikel", + "Item Customer Detail": "Artikel Kundenrezensionen", + "Item Group": "Artikel-Gruppe", + "Item Price": "Artikel Preis", + "Item Quality Inspection Parameter": "Qualit\u00e4tspr\u00fcfung Artikel Parameter", + "Item Reorder": "Artikel Reorder", + "Item Supplier": "Artikel Lieferant", + "Item Tax": "MwSt. Artikel", + "Item Website Specification": "Artikelbeschreibung Webseite", + "Job Applicant": "Job Applicant", + "Job Opening": "Stellenangebot", + "Jobs Email Settings": "Jobs per E-Mail Einstellungen", + "Journal Voucher": "Journal Gutschein", + "Journal Voucher Detail": "Journal Voucher Detail", + "Knowledge Base": "Knowledge Base", + "Landed Cost Item": "Landed Cost Artikel", + "Landed Cost Purchase Receipt": "Landed Cost Kaufbeleg", + "Landed Cost Wizard": "Landed Cost Wizard", + "Lead": "F\u00fchren", + "Leave Allocation": "Lassen Allocation", + "Leave Application": "Lassen Anwendung", + "Leave Block List": "Lassen Block List", + "Leave Block List Allow": "Lassen Lassen Block List", + "Leave Block List Date": "Lassen Block List Datum", + "Leave Control Panel": "Lassen Sie Control Panel", + "Leave Type": "Lassen Typ", + "Letter Head": "Briefkopf", + "Live Chat": "Live-Chat", + "MIS Control": "MIS Kontrolle", + "Maintenance Schedule": "Wartungsplan", + "Maintenance Schedule Detail": "Wartungsplan Details", + "Maintenance Schedule Item": "Wartungsplan Artikel", + "Maintenance Visit": "Wartung Besuch", + "Maintenance Visit Purpose": "Wartung Visit Zweck", + "Manufacturing": "Herstellung", + "Market Segment": "Market Segment", + "Material Request": "Material anfordern", + "Material Request Item": "Material anfordern Artikel", + "Messages": "Nachrichten", + "Mode of Payment": "Zahlungsweise", + "Module Def": "Module Def", + "Modules": "Module", + "Multi Ledger Report Detail": "Multi Ledger Detail Report", + "My Settings": "Meine Einstellungen", + "Naming Series": "Benennen Series", + "Naming Series Options": "Benennen Optionen Series", + "Newsletter": "Mitteilungsblatt", + "Notification Control": "Meldungssteuervorrichtung", + "Opportunity": "Gelegenheit", + "Opportunity Item": "Gelegenheit Artikel", + "Other Income Detail": "Sonstige Ertr\u00e4ge Detailansicht", + "POS Setting": "POS Setting", + "Packing Slip": "Packzettel", + "Packing Slip Item": "Packzettel Artikel", + "Page": "Seite", + "Page Role": "Seite Role", + "Patch Log": "Anmelden Patch-", + "Payment to Invoice Matching Tool": "Zahlung an Rechnung Matching-Tool", + "Payment to Invoice Matching Tool Detail": "Zahlung an Rechnung Matching Werkzeug-Detail", + "Period Closing Voucher": "Periodenverschiebung Gutschein", + "Permission Control": "Permission Steuerung", + "Price List": "Preisliste", + "Print Format": "Drucken Format", + "Print Heading": "Unterwegs drucken", + "Product Group": "Product Group", + "Product Settings": "Produkt-Settings", + "Production Order": "Fertigungsauftrag", + "Production Plan Item": "Production Plan Artikel", + "Production Plan Sales Order": "Production Plan Sales Order", + "Production Planning Tool": "Production Planning-Tool", + "Products Settings": "Produkte Einstellungen", + "Profile": "Profil", + "Profile Control": "Profile Control", + "Project": "Projekt", + "Project Activity": "Projekt Activity", + "Project Activity Update": "Projekt Activity aktualisieren", + "Project Control": "Project Control", + "Project Milestone": "Projekt Milestone", + "Projects": "Projekte", + "Property Setter": "Property Setter", + "Purchase Common": "Erwerb Eigener", + "Purchase Invoice": "Kaufrechnung", + "Purchase Invoice Advance": "Advance Purchase Rechnung", + "Purchase Invoice Item": "Kaufrechnung Artikel", + "Purchase Order": "Auftragsbest\u00e4tigung", + "Purchase Order Item": "Bestellposition", + "Purchase Order Item Supplied": "Bestellposition geliefert", + "Purchase Receipt": "Kaufbeleg", + "Purchase Receipt Item": "Kaufbeleg Artikel", + "Purchase Receipt Item Supplied": "Kaufbeleg Liefergegenstand", + "Purchase Taxes and Charges": "Purchase Steuern und Abgaben", + "Purchase Taxes and Charges Master": "Steuern und Geb\u00fchren Meister Kauf", + "Quality Inspection": "Qualit\u00e4tspr\u00fcfung", + "Quality Inspection Reading": "Qualit\u00e4tspr\u00fcfung Lesen", + "Question": "Frage", + "Quotation": "Zitat", + "Quotation Item": "Zitat Artikel", + "Quotation Lost Reason": "Zitat Passwort Reason", + "Related Page": "Verwandte Seite", + "Rename Tool": "Umbenennen-Tool", + "Report": "Bericht", + "Role": "Rolle", + "SMS Center": "SMS Center", + "SMS Control": "SMS Control", + "SMS Log": "SMS Log", + "SMS Parameter": "SMS Parameter", + "SMS Receiver": "SMS-Empf\u00e4nger", + "SMS Settings": "SMS-Einstellungen", + "Salary Manager": "Manager Gehalt", + "Salary Slip": "Gehaltsabrechnung", + "Salary Slip Deduction": "Lohnabzug Rutsch", + "Salary Slip Earning": "Earning Gehaltsabrechnung", + "Salary Structure": "Gehaltsstruktur", + "Salary Structure Deduction": "Gehaltsstruktur Abzug", + "Salary Structure Earning": "Earning Gehaltsstruktur", + "Sales BOM": "Vertrieb BOM", + "Sales BOM Item": "Vertrieb St\u00fccklistenposition", + "Sales Browser Control": "Vertrieb Browser Control", + "Sales Common": "Vertrieb Gemeinsame", + "Sales Email Settings": "Vertrieb E-Mail-Einstellungen", + "Sales Invoice": "Sales Invoice", + "Sales Invoice Advance": "Sales Invoice Geleistete", + "Sales Invoice Item": "Sales Invoice Artikel", + "Sales Order": "Sales Order", + "Sales Order Item": "Auftragsposition", + "Sales Partner": "Vertriebspartner", + "Sales Person": "Sales Person", + "Sales Taxes and Charges": "Vertrieb Steuern und Abgaben", + "Sales Taxes and Charges Master": "Vertrieb Steuern und Abgaben Meister", + "Sales Team": "Sales Team", + "Sales and Purchase Return Item": "Sales and Purchase Zur\u00fcck Artikel", + "Sales and Purchase Return Tool": "Sales and Purchase Return-Tool", + "Sandbox": "Sandkasten", + "Scheduler Log": "Scheduler Log", + "Search Criteria": "Suchkriterien", + "Selling": "Verkauf", + "Serial No": "Serial In", + "Series Detail": "Series Detailansicht", + "Setup": "Setup", + "Setup Control": "Setup Control", + "Shipping Address": "Versandadresse", + "State": "Zustand", + "Stock": "Lager", + "Stock Entry": "Lager Eintrag", + "Stock Entry Detail": "Lager Eintrag Details", + "Stock Ledger": "Lager Ledger", + "Stock Ledger Entry": "Lager Ledger Eintrag", + "Stock Reconciliation": "Lager Vers\u00f6hnung", + "Stock UOM Replace Utility": "Lager UOM ersetzen Dienstprogramm", + "Style Settings": "Style Einstellungen", + "Supplier": "Lieferant", + "Supplier Quotation": "Lieferant Angebot", + "Supplier Quotation Item": "Lieferant Angebotsposition", + "Supplier Type": "Lieferant Typ", + "Support": "Unterst\u00fctzen", + "Support Ticket": "Support Ticket", + "System Console": "System Console", + "Table Mapper Detail": "Tabelle Mapper Details", + "Tag": "Anh\u00e4nger", + "Target Detail": "Ziel Detailansicht", + "Task": "Aufgabe", + "Terms and Conditions": "AGB", + "Territory": "Gebiet", + "Timesheet": "Timesheet", + "Timesheet Detail": "Timesheet Details", + "To Do": "To Do", + "ToDo": "ToDo", + "Top Bar Item": "Top Bar Artikel", + "Trash Control": "Trash Steuerung", + "Trend Analyzer Control": "Trend Analyzer Steuerung", + "UOM": "UOM", + "UOM Conversion Detail": "UOM Conversion Details", + "Unread Messages": "Ungelesene Nachrichten", + "Update Delivery Date": "Aktualisieren Lieferdatum", + "UserRole": "UserRole", + "Utilities": "Dienstprogramme", + "Valuation Control": "Valuation Control-", + "Warehouse": "Lager", + "Warehouse Type": "Warehouse Typ", + "Warehouse User": "Warehouse Benutzer", + "Web Page": "Web Page", + "Website": "Webseite", + "Website Item Group": "Website-Elementgruppe", + "Website Product Category": "Website Produktkategorie", + "Website Script": "Website Script", + "Website Settings": "Website-Einstellungen", + "Website Slideshow": "Website Slideshow", + "Website Slideshow Item": "Website Slideshow Artikel", + "Workflow": "Workflow", + "Workflow Action": "Workflow-Aktion", + "Workflow Action Detail": "Workflow-Aktion Details", + "Workflow Document State": "Workflow Document Staat", + "Workflow Engine": "Workflow Engine", + "Workflow Rule": "Workflow-Regel", + "Workflow Rule Detail": "Workflow Rule Details", + "Workflow State": "Workflow-Status", + "Workflow Transition": "Workflow Transition", + "Workstation": "Arbeitsplatz" +} \ No newline at end of file diff --git a/selling/doctype/campaign/locale/de-doc.json b/selling/doctype/campaign/locale/de-doc.json new file mode 100644 index 0000000000..646bb1804d --- /dev/null +++ b/selling/doctype/campaign/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "Campaign": "Kampagne", + "Campaign Name": "Kampagnenname", + "Description": "Beschreibung", + "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ": "Behalten Sie den \u00dcberblick of Sales Campaigns. Verfolgen Sie Leads, Angebote, Sales Order etc von Kampagnen zur Return on Investment messen.", + "Selling": "Verkauf", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/de-doc.json b/selling/doctype/communication_log/locale/de-doc.json new file mode 100644 index 0000000000..94b0e5ab67 --- /dev/null +++ b/selling/doctype/communication_log/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Communication Log": "Communication Log", + "Communication by": "Kommunikation durch", + "Communication type": "Art der Kommunikation", + "Date": "Datum", + "Email": "E-Mail", + "Notes": "Aufzeichnungen", + "Other": "Andere", + "Phone": "Telefon", + "SMS": "SMS", + "Selling": "Verkauf", + "Visit": "Besuchen" +} \ No newline at end of file diff --git a/selling/doctype/customer/locale/de-doc.json b/selling/doctype/customer/locale/de-doc.json new file mode 100644 index 0000000000..304a1a3994 --- /dev/null +++ b/selling/doctype/customer/locale/de-doc.json @@ -0,0 +1,40 @@ +{ + "To manage Customer Groups, click here": " Kundengruppen zu verwalten, klicken Sie hier ", + "To manage Territory, click here": " Um Territory zu verwalten, klicken Sie hier ", + "Address & Contacts": "Adresse und Kontakte", + "Address Desc": "Adresse Desc", + "Address HTML": "Adresse HTML", + "Basic Info": "Basic Info", + "Buyer of Goods and Services.": "K\u00e4ufer von Waren und Dienstleistungen.", + "CUST": "CUST", + "CUSTMUM": "CUSTMUM", + "Communication HTML": "Communication HTML", + "Company": "Firma", + "Contact Desc": "Kontakt Desc", + "Contact HTML": "Kontakt HTML", + "Credit Days": "Kredit-Tage", + "Credit Limit": "Kreditlimit", + "Customer": "Kunde", + "Customer Details": "Customer Details", + "Customer Group": "Customer Group", + "Customer Name": "Name des Kunden", + "Customer Type": "Kundentyp", + "Default Commission Rate": "Standard Kommission bewerten", + "Default Currency": "Standardw\u00e4hrung", + "Default Price List": "Standard Preisliste", + "Default Sales Partner": "Standard Vertriebspartner", + "Fetch lead which will be converted into customer.": "Fetch Blei, die in Kunden konvertiert werden.", + "Individual": "Einzelne", + "Lead Ref": "Blei Ref", + "More Info": "Mehr Info", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "Hinweis: Sie k\u00f6nnen mehrere Kontakte oder Adresse via Adressen & Kontakte verwalten", + "Sales Team": "Sales Team", + "Sales Team Details": "Sales Team Details", + "Selling": "Verkauf", + "Series": "Serie", + "Territory": "Gebiet", + "This currency will get fetched in Sales transactions of this customer": "Diese W\u00e4hrung wird in Sales Transaktionen dieser Kunden erhalten geholt", + "To create an Account Head under a different company, select the company and save customer.": "Um ein Konto Kopf unter einem anderen Unternehmen zu erstellen, w\u00e4hlen das Unternehmen und sparen Kunden.", + "Website": "Webseite", + "Your Customer's TAX registration numbers (if applicable) or any general information": "Ihre Kunden TAX Kennzeichen (falls zutreffend) oder allgemeine Informationen" +} \ No newline at end of file diff --git a/selling/doctype/customer/locale/de-py.json b/selling/doctype/customer/locale/de-py.json new file mode 100644 index 0000000000..12b9ac76ec --- /dev/null +++ b/selling/doctype/customer/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "A Supplier exists with same name": "Ein Lieferant existiert mit dem gleichen Namen" +} \ No newline at end of file diff --git a/selling/doctype/industry_type/locale/de-doc.json b/selling/doctype/industry_type/locale/de-doc.json new file mode 100644 index 0000000000..1df9fe1aff --- /dev/null +++ b/selling/doctype/industry_type/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Industry": "Industrie", + "Industry Type": "Industry Typ", + "Selling": "Verkauf" +} \ No newline at end of file diff --git a/selling/doctype/installation_note/locale/_messages_doc.json b/selling/doctype/installation_note/locale/_messages_doc.json index 00d81750df..9a00afc699 100644 --- a/selling/doctype/installation_note/locale/_messages_doc.json +++ b/selling/doctype/installation_note/locale/_messages_doc.json @@ -1,6 +1,7 @@ [ "Installation Note Item", "Customer Address", + "Draft", "Cancel Reason", "Territory", "Installation Note", @@ -11,13 +12,13 @@ "Amended From", "Get Items", "Address", - "Remarks", "Delivery Note No", "Customer", "Name", "The date at which current entry is corrected in the system.", "Customer Group", "Submitted", + "Remarks", "Fiscal Year", "Contact", "Mobile No", @@ -29,6 +30,5 @@ "Installation Date", "Contact Email", "Item Details", - "Series", - "Draft" + "Series" ] \ No newline at end of file diff --git a/selling/doctype/installation_note/locale/de-doc.json b/selling/doctype/installation_note/locale/de-doc.json new file mode 100644 index 0000000000..7f7058192b --- /dev/null +++ b/selling/doctype/installation_note/locale/de-doc.json @@ -0,0 +1,34 @@ +{ + "Address": "Adresse", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Cancel Reason": "Abbrechen Reason", + "Cancelled": "Abgesagt", + "Company": "Firma", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Person": "Ansprechpartner", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Group": "Customer Group", + "Delivery Note No": "Lieferschein Nein", + "Draft": "Entwurf", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Items": "Holen Artikel", + "IN": "IN", + "Installation Date": "Installation Date", + "Installation Note": "Installation Hinweis", + "Installation Note Item": "Installation Hinweis Artikel", + "Installation Time": "Installation Time", + "Item Details": "Artikeldetails", + "Mobile No": "In Mobile", + "Name": "Name", + "Remarks": "Bemerkungen", + "Select the relevant company name if you have multiple companies.": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben.", + "Selling": "Verkauf", + "Series": "Serie", + "Status": "Status", + "Submitted": "Eingereicht", + "Territory": "Gebiet", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert." +} \ No newline at end of file diff --git a/selling/doctype/installation_note_item/locale/de-doc.json b/selling/doctype/installation_note_item/locale/de-doc.json new file mode 100644 index 0000000000..8eb8a15843 --- /dev/null +++ b/selling/doctype/installation_note_item/locale/de-doc.json @@ -0,0 +1,12 @@ +{ + "Against Document Detail No": "Vor Document Detailaufnahme", + "Against Document No": "Gegen Dokument Nr.", + "Delivery Date": "Liefertermin", + "Description": "Beschreibung", + "Document Type": "Document Type", + "Installation Note Item": "Installation Hinweis Artikel", + "Installed Qty": "Installierte Anzahl", + "Item Code": "Item Code", + "Selling": "Verkauf", + "Serial No": "Serial In" +} \ No newline at end of file diff --git a/selling/doctype/lead/locale/_messages_doc.json b/selling/doctype/lead/locale/_messages_doc.json index 55eea2d37b..d8e7e054d1 100644 --- a/selling/doctype/lead/locale/_messages_doc.json +++ b/selling/doctype/lead/locale/_messages_doc.json @@ -11,6 +11,7 @@ "Source", "Country", "Interested", + "Call", "Exhibition", "Your sales person who will contact the lead in future", "Supplier", @@ -34,7 +35,6 @@ "Lead Owner", "Advertisement", "Consultant", - "Call", "Date on which the lead was last contacted", "Naming Series", "To manage Territory, click here", diff --git a/selling/doctype/lead/locale/de-doc.json b/selling/doctype/lead/locale/de-doc.json new file mode 100644 index 0000000000..b258873895 --- /dev/null +++ b/selling/doctype/lead/locale/de-doc.json @@ -0,0 +1,81 @@ +{ + "To manage Territory, click here": " Um Territory zu verwalten, klicken Sie hier ", + "Address Line 1": "Address Line 1", + "Address Line 2": "Address Line 2", + "Advertisement": "Anzeige", + "Attempted to Contact": "Versucht, Kontakt", + "Blog": "Blog", + "Blog Subscriber": "Blog Subscriber", + "Call": "Rufen", + "Campaign": "Kampagne", + "Campaign Name": "Kampagnenname", + "Channel Partner": "Channel Partner", + "City": "City", + "Client": "Auftraggeber", + "Communication HTML": "Communication HTML", + "Company": "Firma", + "Company Name": "Firmenname", + "Consultant": "Berater", + "Contact Info": "Kontakt Info", + "Contact Name": "Kontakt Name", + "Contact in Future": "Kontakt in Zukunft", + "Contacted": "Kontaktiert", + "Converted": "Umgerechnet", + "Country": "Land", + "Customer": "Kunde", + "Date on which the lead was last contacted": "Datum, an dem das Blei letzten kontaktiert wurde", + "Email": "E-Mail", + "Email Id": "Email Id", + "Enter campaign name if the source of lead is campaign.": "Geben Sie Namen der Kampagne, wenn die Quelle von Blei-Kampagne.", + "Exhibition": "Ausstellung", + "Fax": "Fax", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "From Customer": "Von Kunden", + "Industry": "Industrie", + "Interested": "Interessiert", + "LEAD": "F\u00dcHREN", + "LEAD/10-11/": "LEAD/10-11 /", + "LEAD/MUMBAI/": "LEAD / MUMBAI /", + "Last Contact Date": "Letzter Kontakt Datum", + "Lead": "F\u00fchren", + "Lead Details": "Blei Einzelheiten", + "Lead Lost": "F\u00fchrung verloren", + "Lead Owner": "Blei Owner", + "Lead Type": "Bleisatz", + "Lost Reason": "Verlorene Reason", + "Lower Income": "Lower Income", + "Market Segment": "Market Segment", + "Middle Income": "Middle Income", + "Mobile No.": "Handy Nr.", + "More Info": "Mehr Info", + "Name of organization from where lead has come": "Name der Organisation, wo Blei hat kommen", + "Naming Series": "Benennen Series", + "Next Contact By": "Von Next Kontakt", + "Next Contact Date": "Weiter Kontakt Datum", + "Not interested": "Kein Interesse", + "Open": "\u00d6ffnen", + "Other": "Andere", + "Phone": "Telefon", + "Pin Code": "Pin Code", + "Product Enquiry": "Produkt-Anfrage", + "Remark": "Bemerkung", + "Replied": "Beantwortet", + "Request Type": "Art der Anfrage", + "Request for Information": "Request for Information", + "Selling": "Verkauf", + "Source": "Quelle", + "Source of th": "Quelle th", + "Source of the lead. If via a campaign, select \"Campaign\"": "Quelle der Leitung. Wenn \u00fcber die Kampagne, w\u00e4hlen Sie \"Kampagne\"", + "State": "Zustand", + "Status": "Status", + "Suggestions": "Vorschl\u00e4ge", + "Supplier": "Lieferant", + "Territory": "Gebiet", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Trash Reason": "Trash Reason", + "Unsubscribed": "Unsubscribed", + "Upper Income": "Obere Income", + "Website": "Webseite", + "Your sales person who will contact the lead in future": "Ihr Umsatz Person, die die F\u00fchrung in der Zukunft an", + "Your sales person will get a reminder on this date to contact the lead": "Ihre Vertriebsmitarbeiter erhalten eine Erinnerung an diesem Tag an die Spitze setzen" +} \ No newline at end of file diff --git a/selling/doctype/lead/locale/de-py.json b/selling/doctype/lead/locale/de-py.json new file mode 100644 index 0000000000..ddfc5e5075 --- /dev/null +++ b/selling/doctype/lead/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "Email Id must be unique, already exists for: ": "Email Id muss eindeutig sein, bereits f\u00fcr:" +} \ No newline at end of file diff --git a/selling/doctype/opportunity/locale/_messages_doc.json b/selling/doctype/opportunity/locale/_messages_doc.json index 64d1189e28..2c5f004a58 100644 --- a/selling/doctype/opportunity/locale/_messages_doc.json +++ b/selling/doctype/opportunity/locale/_messages_doc.json @@ -11,6 +11,7 @@ "Sales", "Date on which the lead was last contacted", "Source", + "Draft", "Exhibition", "Maintenance", "Territory", @@ -62,6 +63,5 @@ "Opportunity Date", "Contact Email", "Existing Customer", - "Draft", "Campaign" ] \ No newline at end of file diff --git a/selling/doctype/opportunity/locale/de-doc.json b/selling/doctype/opportunity/locale/de-doc.json new file mode 100644 index 0000000000..6358891dc5 --- /dev/null +++ b/selling/doctype/opportunity/locale/de-doc.json @@ -0,0 +1,67 @@ +{ + "To manage Territory, click here": " Um Territory zu verwalten, klicken Sie hier ", + "To manage Territory, click here": " Um Territory zu verwalten, klicken Sie hier ", + "Address": "Adresse", + "Advertisement": "Anzeige", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Campaign": "Kampagne", + "Cancelled": "Abgesagt", + "Cold Calling": "Cold Calling", + "Communication HTML": "Communication HTML", + "Company": "Firma", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Mobile No": "Kontakt Mobile Kein", + "Contact Person": "Ansprechpartner", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Group": "Customer Group", + "Customer Name": "Name des Kunden", + "Customer's Vendor": "Kunden Hersteller", + "Date on which the lead was last contacted": "Datum, an dem das Blei letzten kontaktiert wurde", + "Draft": "Entwurf", + "Enter name of campaign if source of enquiry is campaign": "Geben Sie den Namen der Kampagne, wenn die Quelle der Anfrage ist Kampagne", + "Exhibition": "Ausstellung", + "Existing Customer": "Bestehende Kunden", + "Filing in Additional Information about the Opportunity will help you analyze your data better.": "Die Einreichung in Weitere Informationen \u00fcber die M\u00f6glichkeit wird Ihnen helfen, Ihre Daten analysieren besser.", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Items": "Artikel", + "Items which do not exist in Item master can also be entered on customer's request": "Gegenst\u00e4nde, die nicht in Artikelstammdaten nicht existieren kann auch auf Wunsch des Kunden eingegeben werden", + "Keep a track of communication related to this enquiry which will help for future reference.": "Verfolgen Sie die Kommunikation im Zusammenhang mit dieser Untersuchung, die f\u00fcr zuk\u00fcnftige Referenz helfen.", + "Last Contact Date": "Letzter Kontakt Datum", + "Lead": "F\u00fchren", + "Maintenance": "Wartung", + "Mass Mailing": "Mass Mailing", + "More Info": "Mehr Info", + "Name": "Name", + "Naming Series": "Benennen Series", + "Next Contact By": "Von Next Kontakt", + "Next Contact Date": "Weiter Kontakt Datum", + "OPPT": "OPPT", + "Opportunity": "Gelegenheit", + "Opportunity Date": "Gelegenheit Datum", + "Opportunity From": "Von der Chance", + "Opportunity Items": "Gelegenheit Artikel", + "Opportunity Lost": "Chance vertan", + "Opportunity Type": "Gelegenheit Typ", + "Order Confirmed": "Bestellung best\u00e4tigt", + "Potential Sales Deal": "Sales Potential Deal", + "Quotation Lost Reason": "Zitat Passwort Reason", + "Quotation Sent": "Gesendete Quotation", + "Reference": "Referenz", + "Sales": "Vertrieb", + "Selling": "Verkauf", + "Source": "Quelle", + "Status": "Status", + "Submitted": "Eingereicht", + "Supplier Reference": "Lieferant Reference", + "Territory": "Gebiet", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "To Discuss": "Zu diskutieren", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Walk In": "Walk In", + "Your sales person who will contact the customer in future": "Ihr Umsatz Person, die die Kunden in Zukunft in Verbindung setzen", + "Your sales person will get a reminder on this date to contact the customer": "Ihre Vertriebsmitarbeiter erhalten eine Erinnerung an diesem Tag, um den Kunden an" +} \ No newline at end of file diff --git a/selling/doctype/opportunity_item/locale/_messages_doc.json b/selling/doctype/opportunity_item/locale/_messages_doc.json index 78df77937f..0ee079c084 100644 --- a/selling/doctype/opportunity_item/locale/_messages_doc.json +++ b/selling/doctype/opportunity_item/locale/_messages_doc.json @@ -3,9 +3,9 @@ "Description", "Brand", "Qty", + "Opportunity Item", "Item Name", "Item Group", - "Opportunity Item", "Basic Rate", "Item Code", "UOM" diff --git a/selling/doctype/opportunity_item/locale/de-doc.json b/selling/doctype/opportunity_item/locale/de-doc.json new file mode 100644 index 0000000000..469bde5d80 --- /dev/null +++ b/selling/doctype/opportunity_item/locale/de-doc.json @@ -0,0 +1,12 @@ +{ + "Basic Rate": "Basic Rate", + "Brand": "Marke", + "Description": "Beschreibung", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Opportunity Item": "Gelegenheit Artikel", + "Qty": "Menge", + "Selling": "Verkauf", + "UOM": "UOM" +} \ No newline at end of file diff --git a/selling/doctype/quotation/locale/de-doc.json b/selling/doctype/quotation/locale/de-doc.json new file mode 100644 index 0000000000..0d5b9498be --- /dev/null +++ b/selling/doctype/quotation/locale/de-doc.json @@ -0,0 +1,96 @@ +{ + "Add Terms and Conditions for the Quotation like Payment Terms, Validity of Offer etc. You can also prepare a Terms and Conditions Master and use the Template": "F\u00fcgen AGB f\u00fcr das Angebot wie Zahlungsbedingungen, G\u00fcltigkeit des Angebots etc. Sie k\u00f6nnen auch ein AGB-Master und verwenden Sie die Vorlage", + "Address": "Adresse", + "Advertisement": "Anzeige", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Calculate Taxes and Charges": "Berechnen Sie Steuern und Abgaben", + "Campaign": "Kampagne", + "Cancelled": "Abgesagt", + "Cold Calling": "Cold Calling", + "Communication HTML": "Communication HTML", + "Communication History": "Communication History", + "Company": "Firma", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Conversion Rate": "Conversion Rate", + "Currency": "W\u00e4hrung", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Group": "Customer Group", + "Customer Name": "Name des Kunden", + "Customer's Vendor": "Kunden Hersteller", + "Customer's currency - If you want to select a currency that is not the default currency, then you must also specify the Currency Conversion Rate.": "Kunden W\u00e4hrung - Wenn Sie eine W\u00e4hrung, die nicht die Standard-W\u00e4hrung ausw\u00e4hlen wollen, dann m\u00fcssen Sie auch die Currency Conversion Rate.", + "Draft": "Entwurf", + "Exhibition": "Ausstellung", + "Existing Customer": "Bestehende Kunden", + "File List": "Dateiliste", + "Filling in additional information about the Quotation will help you analyze your data better.": "Ausf\u00fcllen zus\u00e4tzliche Informationen \u00fcber das Angebot wird Ihnen helfen, Ihre Daten analysieren besser.", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Taxes and Charges": "Holen Steuern und Abgaben", + "Get Terms and Conditions": "Holen AGB", + "Grand Total": "Grand Total", + "Grand Total*": "Grand Total *", + "In Words": "In Worte", + "In Words will be visible once you save the Quotation.": "In Worte sichtbar sein wird, sobald Sie das Angebot zu speichern.", + "Items": "Artikel", + "Keep a track on communications regarding this Quotation. This will help you remember earlier communications in case the Customer comes back again": "Halten Sie einen Track auf Mitteilungen \u00fcber dieses Angebot. Dies hilft Ihnen, sich zuvor Kommunikation im Falle der Kunde kommt wieder", + "Lead": "F\u00fchren", + "Lead Name": "Name der Person", + "Letter Head": "Briefkopf", + "Maintenance": "Wartung", + "Mass Mailing": "Mass Mailing", + "Mobile No": "In Mobile", + "More Info": "Mehr Info", + "Naming Series": "Benennen Series", + "Net Total*": "* Net Total", + "Opportunity Item": "Gelegenheit Artikel", + "Opportunity No": "Die Gelegenheit", + "Order Confirmed": "Bestellung best\u00e4tigt", + "Order Lost": "Lost Order", + "Order Type": "Auftragsart", + "Organization": "Organisation", + "Price List": "Preisliste", + "Price List Currency": "W\u00e4hrung Preisliste", + "Price List Currency Conversion Rate": "Preisliste Currency Conversion Rate", + "Price List and Currency": "Listenpreis und W\u00e4hrungsrechner", + "Pull Opportunity Detail": "Ziehen Sie Gelegenheit Detailansicht", + "QTN": "QTN", + "Quotation": "Zitat", + "Quotation Date": "Quotation Datum", + "Quotation Items": "Angebotspositionen", + "Quotation Lost Reason": "Zitat Passwort Reason", + "Quotation To": "Um Angebot", + "Rate at which Price list currency is converted to company's base currency": "Geschwindigkeit, mit der W\u00e4hrung der Preisliste zu Unternehmen der Basisw\u00e4hrung umgewandelt wird", + "Rate at which customer's currency is converted to company's base currency": "Rate, mit der Kunden W\u00e4hrung ist an Unternehmen Basisw\u00e4hrung umgerechnet", + "Re-Calculate Values": "Neu berechnen Werte", + "Reference": "Referenz", + "Rounded Total": "Abgerundete insgesamt", + "Sales": "Vertrieb", + "Sales Taxes and Charges": "Vertrieb Steuern und Abgaben", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the currency in which price list is maintained": "W\u00e4hlen Sie die W\u00e4hrung, in der Preisliste wird beibehalten", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "W\u00e4hlen Sie die Preisliste in der \"Preisliste\" Master eingetragen. Dadurch werden die Referenzkurse Artikel gegen diese Preisliste in der \"Item\" Master vorgegeben ziehen.", + "Select the relevant company name if you have multiple companies.": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben.", + "Selling": "Verkauf", + "Source": "Quelle", + "Status": "Status", + "Submitted": "Eingereicht", + "Supplier Reference": "Lieferant Reference", + "Taxes": "Steuern", + "Taxes and Charges Calculation": "Steuern und Geb\u00fchren Berechnung", + "Taxes and Charges Total*": "Steuern und Geb\u00fchren Total *", + "Term Details": "Begriff Einzelheiten", + "Terms and Conditions": "AGB", + "Terms and Conditions HTML": "AGB HTML", + "Territory": "Gebiet", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "To create Quotation against Opportunity, Select Opportunity No. and click on 'Pull Opportunity Details' ": "Um Quotation gegen Gelegenheit schaffen, ausw\u00e4hlen Chance No und klicken Sie auf \"Pull Opportunity-Details '", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Totals": "Totals", + "Will be fetched from Customer": "Wird vom Kunden abgeholt werden" +} \ No newline at end of file diff --git a/selling/doctype/quotation_item/locale/de-doc.json b/selling/doctype/quotation_item/locale/de-doc.json new file mode 100644 index 0000000000..195411ce79 --- /dev/null +++ b/selling/doctype/quotation_item/locale/de-doc.json @@ -0,0 +1,23 @@ +{ + "Against Docname": "Vor DocName", + "Against Doctype": "Vor Doctype", + "Amount": "Menge", + "Amount*": "Betrag *", + "Basic Rate*": "Basic Rate *", + "Brand": "Marke", + "Customer's Item Code": "Kunden Item Code", + "Description": "Beschreibung", + "Discount (%)": "Rabatt (%)", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Item Tax Rate": "Artikel Tax Rate", + "Page Break": "Seitenwechsel", + "Price List Rate": "Preis List", + "Price List Rate*": "Preis List *", + "Quantity": "Menge", + "Quotation Item": "Zitat Artikel", + "Rate": "Rate", + "Selling": "Verkauf", + "UOM": "UOM" +} \ No newline at end of file diff --git a/selling/doctype/sales_and_purchase_return_item/locale/de-doc.json b/selling/doctype/sales_and_purchase_return_item/locale/de-doc.json new file mode 100644 index 0000000000..bfcbf4e9ea --- /dev/null +++ b/selling/doctype/sales_and_purchase_return_item/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Batch No": "Batch No", + "Description": "Beschreibung", + "Detail Name": "Detail Name", + "Item Code": "Item Code", + "Qty": "Menge", + "Rate": "Rate", + "Returned Qty": "Kehrte Menge", + "Sales and Purchase Return Item": "Sales and Purchase Zur\u00fcck Artikel", + "Selling": "Verkauf", + "Serial No": "Serial In", + "UOM": "UOM" +} \ No newline at end of file diff --git a/selling/doctype/sales_common/locale/de-doc.json b/selling/doctype/sales_common/locale/de-doc.json new file mode 100644 index 0000000000..d621e00c05 --- /dev/null +++ b/selling/doctype/sales_common/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Sales Common": "Vertrieb Gemeinsame", + "Selling": "Verkauf" +} \ No newline at end of file diff --git a/selling/doctype/sales_common/locale/de-py.json b/selling/doctype/sales_common/locale/de-py.json new file mode 100644 index 0000000000..30a69ba456 --- /dev/null +++ b/selling/doctype/sales_common/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "not within Fiscal Year": "nicht innerhalb Gesch\u00e4ftsjahr" +} \ No newline at end of file diff --git a/selling/doctype/sales_order/locale/_messages_doc.json b/selling/doctype/sales_order/locale/_messages_doc.json index af6b13677f..84a3240cb3 100644 --- a/selling/doctype/sales_order/locale/_messages_doc.json +++ b/selling/doctype/sales_order/locale/_messages_doc.json @@ -26,7 +26,6 @@ "Campaign", "Customer's currency", "SO/10-11/", - "Draft", "Sales Order", "Grand Total (Export)", "Delivery Status", @@ -70,6 +69,7 @@ "P.O. Date", "Totals", "In Words (Export)", + "Draft", "Maintenance", "Select the currency in which price list is maintained", "Display all the individual items delivered with the main items", diff --git a/selling/doctype/sales_order/locale/de-doc.json b/selling/doctype/sales_order/locale/de-doc.json new file mode 100644 index 0000000000..04cb6fde1f --- /dev/null +++ b/selling/doctype/sales_order/locale/de-doc.json @@ -0,0 +1,123 @@ +{ + "% Delivered": "% Lieferung", + "% Amount Billed": "% Rechnungsbetrag", + "% of materials billed against this Sales Order": "% Der Materialien gegen diesen Kundenauftrag abgerechnet", + "% of materials delivered against this Sales Order": "% Der Materialien gegen diesen Kundenauftrag geliefert", + "Address": "Adresse", + "Advertisement": "Anzeige", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Billed": "Angek\u00fcndigt", + "Billing Status": "Billing-Status", + "Calculate Taxes and Charges": "Berechnen Sie Steuern und Abgaben", + "Campaign": "Kampagne", + "Cancel Reason": "Abbrechen Reason", + "Cancelled": "Abgesagt", + "Category of customer as entered in Customer master": "Kategorie von Kunden, wie in Customer Master eingetragen", + "Closed": "Geschlossen", + "Cold Calling": "Cold Calling", + "Commission Rate": "Kommission bewerten", + "Company": "Firma", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Conversion Rate": "Conversion Rate", + "Currency": "W\u00e4hrung", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Group": "Customer Group", + "Customer's Vendor": "Kunden Hersteller", + "Customer's currency": "Kunden W\u00e4hrung", + "Delivered": "Lieferung", + "Delivery Status": "Lieferstatus", + "Display all the individual items delivered with the main items": "Alle anzeigen die einzelnen Punkte mit den wichtigsten Liefergegenst\u00e4nde", + "Draft": "Entwurf", + "Exhibition": "Ausstellung", + "Existing Customer": "Bestehende Kunden", + "Expected Delivery Date": "Voraussichtlicher Liefertermin", + "File List": "Dateiliste", + "Filling in additional information about the Sales Order will help you analyze your data better.": "Ausf\u00fcllen zus\u00e4tzliche Informationen \u00fcber das Sales Order wird Ihnen helfen, Ihre Daten analysieren besser.", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Taxes and Charges": "Holen Steuern und Abgaben", + "Get Terms and Conditions": "Holen AGB", + "Grand Total (Export)": "Grand Total (Export)", + "Grand Total*": "Grand Total *", + "In Words": "In Worte", + "In Words (Export)": "In Words (Export)", + "In Words will be visible once you save the Sales Order.": "In Worte sichtbar sein wird, sobald Sie den Sales Order zu speichern.", + "Items": "Artikel", + "Letter Head": "Briefkopf", + "Maintenance": "Wartung", + "Mass Mailing": "Mass Mailing", + "Mobile No": "In Mobile", + "More Info": "Mehr Info", + "Name": "Name", + "Name as entered in Sales Partner master": "Eingegebene Name in der Master-Vertriebspartner", + "Net Total*": "* Net Total", + "Not Applicable": "Nicht zutreffend", + "Not Billed": "Nicht Billed", + "Not Delivered": "Nicht zugestellt", + "Order Type": "Auftragsart", + "P.O. Date": "P.O. Datum", + "P.O. No": "In P.O.", + "PI/2011/": "PI/2011 /", + "Packing Details": "Verpackungs-Details", + "Packing List": "Packliste", + "Partly Billed": "Teilweise Billed", + "Partly Delivered": "Teilweise Lieferung", + "Price List": "Preisliste", + "Price List Currency": "W\u00e4hrung Preisliste", + "Price List Currency Conversion Rate": "Preisliste Currency Conversion Rate", + "Price List and Currency": "Listenpreis und W\u00e4hrungsrechner", + "Project Name": "Project Name", + "Pull Quotation Items": "Ziehen Sie Angebotspositionen", + "Purchase Order sent by customer": "Bestellung durch den Kunden geschickt", + "Quotation Date": "Quotation Datum", + "Quotation No": "In Quotation", + "Rate at which Price list currency is converted to company's base currency": "Geschwindigkeit, mit der W\u00e4hrung der Preisliste zu Unternehmen der Basisw\u00e4hrung umgewandelt wird", + "Rate at which customer's currency is converted to company's base currency": "Rate, mit der Kunden W\u00e4hrung ist an Unternehmen Basisw\u00e4hrung umgerechnet", + "Re-Calculate Values": "Neu berechnen Werte", + "Reference": "Referenz", + "Rounded Total": "Abgerundete insgesamt", + "Rounded Total (Export)": "Abgerundete Total (Export)", + "SO": "SO", + "SO/10-11/": "SO/10-11 /", + "SO1112": "SO1112", + "Sales": "Vertrieb", + "Sales Order": "Sales Order", + "Sales Order Date": "Sales Order Datum", + "Sales Order Items": "Kundenauftragspositionen", + "Sales Partner": "Vertriebspartner", + "Sales Taxes and Charges": "Vertrieb Steuern und Abgaben", + "Sales Team": "Sales Team", + "Sales Team1": "Vertrieb Team1", + "Select Customer": "W\u00e4hlen Sie Kunde", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the currency in which price list is maintained": "W\u00e4hlen Sie die W\u00e4hrung, in der Preisliste wird beibehalten", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "W\u00e4hlen Sie die Preisliste in der \"Preisliste\" Master eingetragen. Dadurch werden die Referenzkurse Artikel gegen diese Preisliste in der \"Item\" Master vorgegeben ziehen.", + "Select the relevant company name if you have multiple companies.": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben.", + "Selling": "Verkauf", + "Series": "Serie", + "Shipping Address": "Versandadresse", + "Shipping Address Name": "Liefer-Adresse Name", + "Source": "Quelle", + "Status": "Status", + "Stopped": "Gestoppt", + "Submitted": "Eingereicht", + "Supplier Reference": "Lieferant Reference", + "Taxes": "Steuern", + "Taxes and Charges Calculation": "Steuern und Geb\u00fchren Berechnung", + "Taxes and Charges Total*": "Steuern und Geb\u00fchren Total *", + "Terms and Conditions": "AGB", + "Terms and Conditions Details": "AGB Einzelheiten", + "Terms and Conditions HTML": "AGB HTML", + "Territory": "Gebiet", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Total Commission": "Gesamt Kommission", + "Totals": "Totals", + "Track this Sales Order against any Project": "Verfolgen Sie diesen Kundenauftrag gegen Projekt" +} \ No newline at end of file diff --git a/selling/doctype/sales_order_item/locale/de-doc.json b/selling/doctype/sales_order_item/locale/de-doc.json new file mode 100644 index 0000000000..9070f8cca6 --- /dev/null +++ b/selling/doctype/sales_order_item/locale/de-doc.json @@ -0,0 +1,32 @@ +{ + "Actual Qty": "Tats\u00e4chliche Menge", + "Amount": "Menge", + "Amount*": "Betrag *", + "Basic Rate*": "Basic Rate *", + "Billed Amt": "Billed Amt", + "Brand Name": "Markenname", + "Customer's Item Code": "Kunden Item Code", + "Delivered Qty": "Geliefert Menge", + "Description": "Beschreibung", + "Discount(%)": "Rabatt (%)", + "For Production": "For Production", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Item Tax Rate": "Artikel Tax Rate", + "Page Break": "Seitenwechsel", + "Planned Quantity": "Geplante Menge", + "Price List Rate": "Preis List", + "Price List Rate*": "Preis List *", + "Produced Quantity": "Produziert Menge", + "Projected Qty": "Prognostizierte Anzahl", + "Quantity": "Menge", + "Quotation No.": "Zitat Nr.", + "Rate": "Rate", + "Reserved Warehouse": "Warehouse Reserved", + "Sales Order Date": "Sales Order Datum", + "Sales Order Item": "Auftragsposition", + "Selling": "Verkauf", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "UOM": "UOM" +} \ No newline at end of file diff --git a/selling/doctype/sales_team/locale/de-doc.json b/selling/doctype/sales_team/locale/de-doc.json new file mode 100644 index 0000000000..f34d04803c --- /dev/null +++ b/selling/doctype/sales_team/locale/de-doc.json @@ -0,0 +1,11 @@ +{ + "Allocated (%)": "Zugeordnet (%)", + "Allocated Amount": "Zugeteilten Betrag", + "Contact No.": "Kontakt Nr.", + "Designation": "Bezeichnung", + "Incentives": "Incentives", + "Parenttype": "ParentType", + "Sales Person": "Sales Person", + "Sales Team": "Sales Team", + "Selling": "Verkauf" +} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/_messages_doc.json b/selling/doctype/shipping_address/locale/_messages_doc.json index 42fd03538f..38b52b8bb4 100644 --- a/selling/doctype/shipping_address/locale/_messages_doc.json +++ b/selling/doctype/shipping_address/locale/_messages_doc.json @@ -7,7 +7,7 @@ "Customer Address", "Shipping Address", "Customer Name", - "Yes", "Shipping Details", + "Yes", "Is Primary Address" ] \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/de-doc.json b/selling/doctype/shipping_address/locale/de-doc.json new file mode 100644 index 0000000000..a084f0eb50 --- /dev/null +++ b/selling/doctype/shipping_address/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Name": "Name des Kunden", + "Is Primary Address": "Ist Primary Address", + "No": "Auf", + "Selling": "Verkauf", + "Ship To": "Ship To", + "Shipping Address": "Versandadresse", + "Shipping Details": "Versandkosten Details", + "Trash Reason": "Trash Reason", + "Yes": "Ja" +} \ No newline at end of file diff --git a/selling/doctype/sms_center/locale/_messages_doc.json b/selling/doctype/sms_center/locale/_messages_doc.json index c7a4dde80e..e2f8e7e6f9 100644 --- a/selling/doctype/sms_center/locale/_messages_doc.json +++ b/selling/doctype/sms_center/locale/_messages_doc.json @@ -14,8 +14,8 @@ "All Employee (Active)", "SMS Center", "Department", - "Send SMS", "Customer", + "Send SMS", "Message", "Create Receiver List" ] \ No newline at end of file diff --git a/selling/doctype/sms_center/locale/de-doc.json b/selling/doctype/sms_center/locale/de-doc.json new file mode 100644 index 0000000000..01f5c891b6 --- /dev/null +++ b/selling/doctype/sms_center/locale/de-doc.json @@ -0,0 +1,21 @@ +{ + "All Contact": "Alle Kontakt", + "All Customer Contact": "All Customer Contact", + "All Employee (Active)": "Alle Mitarbeiter (Active)", + "All Lead (Open)": "Alle Lead (Open)", + "All Sales Partner Contact": "Alle Vertriebspartner Kontakt", + "All Sales Person": "Alle Sales Person", + "All Supplier Contact": "Alle Lieferanten Kontakt", + "Branch": "Zweig", + "Create Receiver List": "Erstellen Receiver Liste", + "Customer": "Kunde", + "Department": "Abteilung", + "Message": "Nachricht", + "Message greater than 160 character will be splitted into multiple mesage": "Gr\u00f6\u00dfer als 160 Zeichen Nachricht in mehrere mesage aufgeteilt werden", + "Receiver List": "Receiver Liste", + "SMS Center": "SMS Center", + "Selling": "Verkauf", + "Send SMS": "Senden Sie eine SMS", + "Send To": "Send To", + "Supplier": "Lieferant" +} \ No newline at end of file diff --git a/selling/module_def/selling/locale/de-doc.json b/selling/module_def/selling/locale/de-doc.json new file mode 100644 index 0000000000..dfde569f4d --- /dev/null +++ b/selling/module_def/selling/locale/de-doc.json @@ -0,0 +1,11 @@ +{ + "Buyer of Goods and Services.": "K\u00e4ufer von Waren und Dienstleistungen.", + "Customer Addresses And Contacts": "Kundenadressen und Kontakte", + "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ": "Behalten Sie den \u00dcberblick of Sales Campaigns. Verfolgen Sie Leads, Angebote, Sales Order etc von Kampagnen zur Return on Investment messen.", + "Potential Sales Deal": "Sales Potential Deal", + "Sales Analytics": "Sales Analytics", + "Sales Browser": "Vertrieb Browser", + "Sales Dashboard": "Sales Dashboard-", + "Sales Orders Pending To Be Delivered": "Bis Kundenauftr\u00e4ge zu liefernden", + "Selling Home": "Startseite Selling" +} \ No newline at end of file diff --git a/selling/page/selling_home/locale/de-js.json b/selling/page/selling_home/locale/de-js.json new file mode 100644 index 0000000000..ad79a7e180 --- /dev/null +++ b/selling/page/selling_home/locale/de-js.json @@ -0,0 +1,52 @@ +{ + "Address": "Adresse", + "All Addresses.": "Alle Adressen.", + "All Contacts.": "Alle Kontakte.", + "All Products or Services.": "Alle Produkte oder Dienstleistungen.", + "Analytics": "Analytics", + "Bundle items at time of sale.": "Bundle Artikel zum Zeitpunkt des Verkaufs.", + "Campaign": "Kampagne", + "Commission partners and targets": "Kommission Partnern und Ziele", + "Confirmed orders from Customers.": "Best\u00e4tigte Bestellungen von Kunden.", + "Contact": "Kontakt", + "Customer": "Kunde", + "Customer Addresses And Contacts": "Kundenadressen und Kontakte", + "Customer Group": "Customer Group", + "Customer classification tree.": "Einteilung der Kunden Baum.", + "Customer database.": "Kunden-Datenbank.", + "Database of potential customers.": "Datenbank von potentiellen Kunden.", + "Documents": "Unterlagen", + "Helper for managing return of goods (sales or purchase)": "Helper f\u00fcr die Verwaltung R\u00fccksendung der Ware (Verkauf oder Kauf)", + "Item": "Artikel", + "Item Group": "Artikel-Gruppe", + "Lead": "F\u00fchren", + "Masters": "Masters", + "Mupltiple Item prices.": "Artikel Mupltiple Preisen.", + "Opportunity": "Gelegenheit", + "Potential opportunities for selling.": "Potenzielle Chancen f\u00fcr den Verkauf.", + "Price List": "Preisliste", + "Quotation": "Zitat", + "Quotes to Leads or Customers.": "Zitate oder Leads zu Kunden.", + "Reports": "Reports", + "SMS Center": "SMS Center", + "Sales Analytics": "Sales Analytics", + "Sales BOM": "Vertrieb BOM", + "Sales Order": "Sales Order", + "Sales Orders Pending to be Delivered": "Bis Kundenauftr\u00e4ge zu liefernden", + "Sales Partner": "Vertriebspartner", + "Sales Person": "Sales Person", + "Sales Returns": "R\u00fcckware", + "Sales Taxes and Charges Master": "Vertrieb Steuern und Abgaben Meister", + "Sales campaigns": "Sales-Kampagnen", + "Sales persons and targets": "Vertriebsmitarbeiter und Ziele", + "Sales taxes template.": "Umsatzsteuer-Vorlage.", + "Sales territories.": "Vertriebsgebieten.", + "Send mass SMS to your contacts": "Senden Sie Massen-SMS an Ihre Kontakte", + "Setup": "Setup", + "Template of terms or contract.": "Vorlage von Begriffen oder Vertrag.", + "Terms and Conditions": "AGB", + "Territory": "Gebiet", + "Tools": "Werkzeuge", + "Tree of item classification": "Tree of Artikelzugeh\u00f6rigkeit", + "Trend Analyzer": "Trend Analyzer" +} \ No newline at end of file diff --git a/setup/doctype/authorization_control/locale/de-doc.json b/setup/doctype/authorization_control/locale/de-doc.json new file mode 100644 index 0000000000..837e73726e --- /dev/null +++ b/setup/doctype/authorization_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Authorization Control": "Authorization Control", + "Setup": "Setup" +} \ No newline at end of file diff --git a/setup/doctype/authorization_rule/locale/de-doc.json b/setup/doctype/authorization_rule/locale/de-doc.json new file mode 100644 index 0000000000..983fb6a322 --- /dev/null +++ b/setup/doctype/authorization_rule/locale/de-doc.json @@ -0,0 +1,30 @@ +{ + "Above Value": "Vor Wert", + "Applicable To (Designation)": "F\u00fcr (Bezeichnung)", + "Applicable To (Employee)": "F\u00fcr (Employee)", + "Applicable To (Role)": "Anwendbar (Rolle)", + "Applicable To (User)": "Anwendbar auf (User)", + "Appraisal": "Bewertung", + "Approving Role": "Genehmigung Rolle", + "Approving User": "Genehmigen Benutzer", + "Authorization Rule": "Autorisierungsregel", + "Average Discount": "Durchschnittliche Discount", + "Based On": "Basierend auf", + "Company": "Firma", + "Customer / Item Name": "Kunde / Item Name", + "Customerwise Discount": "Customerwise Discount", + "Delivery Note": "Lieferschein", + "Grand Total": "Grand Total", + "Itemwise Discount": "Discount Itemwise", + "Not Applicable": "Nicht zutreffend", + "Purchase Invoice": "Kaufrechnung", + "Purchase Order": "Auftragsbest\u00e4tigung", + "Purchase Receipt": "Kaufbeleg", + "Quotation": "Zitat", + "Sales Invoice": "Sales Invoice", + "Sales Order": "Sales Order", + "Setup": "Setup", + "This will be used for setting rule in HR module": "Dies wird f\u00fcr die Einstellung der Regel im HR-Modul verwendet werden", + "Transaction": "Transaktion", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/setup/doctype/brand/locale/de-doc.json b/setup/doctype/brand/locale/de-doc.json new file mode 100644 index 0000000000..36b1c1f43e --- /dev/null +++ b/setup/doctype/brand/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Brand": "Marke", + "Brand Name": "Markenname", + "Description": "Beschreibung", + "Setup": "Setup" +} \ No newline at end of file diff --git a/setup/doctype/company/locale/_messages_doc.json b/setup/doctype/company/locale/_messages_doc.json index 5e37d32071..febcf8f47e 100644 --- a/setup/doctype/company/locale/_messages_doc.json +++ b/setup/doctype/company/locale/_messages_doc.json @@ -2,22 +2,24 @@ "If Monthly Budget Exceeded", "Company registration numbers for your reference. Tax numbers etc.", "Phone No", + "This account will be used to maintain value of available stock", "Registration Info", "Trash Reason", + "Stock In Hand Account", "Default Bank Account", - "For reference only.", - "Website", + "Email", "Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.", "Fax", "Company", "Stop", "Credit Limit", "Default Settings", - "Email", + "For reference only.", "Warn", "Abbr", "Address", "Company Details", + "Website", "Default Currency", "Registration Details", "Setup", diff --git a/setup/doctype/company/locale/de-doc.json b/setup/doctype/company/locale/de-doc.json new file mode 100644 index 0000000000..cf5ebfda1b --- /dev/null +++ b/setup/doctype/company/locale/de-doc.json @@ -0,0 +1,32 @@ +{ + "Abbr": "Abk.", + "Address": "Adresse", + "Company": "Firma", + "Company Details": "Unternehmensprofil", + "Company Info": "Firmeninfo", + "Company registration numbers for your reference. Example: VAT Registration Numbers etc.": "Handelsregisternummer f\u00fcr Ihre Referenz. Beispiel: Umsatzsteuer-Identifikationsnummern usw.", + "Company registration numbers for your reference. Tax numbers etc.": "Handelsregisternummer f\u00fcr Ihre Referenz. MwSt.-Nummern etc.", + "Credit Days": "Kredit-Tage", + "Credit Limit": "Kreditlimit", + "Default Bank Account": "Standard Bank Account", + "Default Currency": "Standardw\u00e4hrung", + "Default Settings": "Default Settings", + "Email": "E-Mail", + "Fax": "Fax", + "For reference only.": "Nur als Referenz.", + "If Monthly Budget Exceeded": "Wenn Monthly Budget \u00fcberschritten", + "If Yearly Budget Exceeded": "Wenn Jahresbudget \u00fcberschritten", + "Ignore": "Ignorieren", + "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.": "Legal Entity / Tochtergesellschaft mit einem separaten Kontenplan Zugeh\u00f6rigkeit zu der Organisation.", + "Payables Group": "Verbindlichkeiten Gruppe", + "Phone No": "Phone In", + "Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.": "Bitte geben Abk\u00fcrzung oder das Kurzer Name enquiry.c es auf alle Suffix Konto Heads hinzugef\u00fcgt werden.", + "Receivables Group": "Forderungen Gruppe", + "Registration Details": "Registrierung Details", + "Registration Info": "Registrierung Info", + "Setup": "Setup", + "Stop": "Stoppen", + "Trash Reason": "Trash Reason", + "Warn": "Warnen", + "Website": "Webseite" +} \ No newline at end of file diff --git a/setup/doctype/contact_control/locale/de-doc.json b/setup/doctype/contact_control/locale/de-doc.json new file mode 100644 index 0000000000..e1ef80c18f --- /dev/null +++ b/setup/doctype/contact_control/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Contact Control": "Kontakt Kontrolle", + "Customer Intro": "Kunden Intro", + "Header": "Kopfzeile", + "Setup": "Setup", + "Supplier Intro": "Lieferant Intro" +} \ No newline at end of file diff --git a/setup/doctype/country/locale/_messages_doc.json b/setup/doctype/country/locale/_messages_doc.json index 1b3880302f..269085fb24 100644 --- a/setup/doctype/country/locale/_messages_doc.json +++ b/setup/doctype/country/locale/_messages_doc.json @@ -2,6 +2,6 @@ "Country", "Setup", "Date Format", - "Country Name", - "Time Zones" + "Time Zones", + "Country Name" ] \ No newline at end of file diff --git a/setup/doctype/country/locale/de-doc.json b/setup/doctype/country/locale/de-doc.json new file mode 100644 index 0000000000..b712eec157 --- /dev/null +++ b/setup/doctype/country/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Country": "Land", + "Country Name": "Land Name", + "Date Format": "Datumsformat", + "Setup": "Setup", + "Time Zones": "Time Zones" +} \ No newline at end of file diff --git a/setup/doctype/currency/locale/de-doc.json b/setup/doctype/currency/locale/de-doc.json new file mode 100644 index 0000000000..fc6a03bb34 --- /dev/null +++ b/setup/doctype/currency/locale/de-doc.json @@ -0,0 +1,14 @@ +{ + "**Currency** Master": "** W\u00e4hrung ** Meister", + "A symbol for this currency. For e.g. $": "Ein Symbol f\u00fcr diese W\u00e4hrung. F\u00fcr z.B. $", + "Currency": "W\u00e4hrung", + "Currency Name": "W\u00e4hrung Name", + "Enabled": "Aktiviert", + "Fraction": "Bruchteil", + "Fraction Units": "Fraction Units", + "How should this currency be formatted? If not set, will use system defaults": "Wie soll diese W\u00e4hrung formatiert werden? Wenn nicht gesetzt, verwenden Standardeinstellungen des Systems", + "Number Format": "Number Format", + "Setup": "Setup", + "Sub-currency. For e.g. \"Cent\"": "Sub-W\u00e4hrung. F\u00fcr z.B. \"Cent\"", + "Symbol": "Symbol" +} \ No newline at end of file diff --git a/setup/doctype/customer_group/locale/de-doc.json b/setup/doctype/customer_group/locale/de-doc.json new file mode 100644 index 0000000000..8f2ac4c693 --- /dev/null +++ b/setup/doctype/customer_group/locale/de-doc.json @@ -0,0 +1,16 @@ +{ + "Customer Group": "Customer Group", + "Customer Group Name": "Kunden Group Name", + "Default Price List": "Standard Preisliste", + "Has Child Node": "Hat Child Node", + "No": "Auf", + "Only leaf nodes are allowed in transaction": "Nur Blattknoten in Transaktion zul\u00e4ssig", + "Parent Customer Group": "Eltern Customer Group", + "Setup": "Setup", + "This Price List will be selected as default for all Customers under this Group.": "Diese Preisliste wird als Standard f\u00fcr alle Kunden unter dieser Gruppe ausgew\u00e4hlt werden.", + "Trash Reason": "Trash Reason", + "Yes": "Ja", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "rgt" +} \ No newline at end of file diff --git a/setup/doctype/email_digest/locale/_messages_doc.json b/setup/doctype/email_digest/locale/_messages_doc.json index 1e15703f6b..77de82d6f7 100644 --- a/setup/doctype/email_digest/locale/_messages_doc.json +++ b/setup/doctype/email_digest/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ "Income Booked", - "Bank/Cash Balance", + "Add/Remove Recipients", "Monthly", "Support", "New Material Requests", @@ -10,7 +10,7 @@ "Select Digest Content", "Expenses Booked", "Payments received during the digest period", - "Add/Remove Recipients", + "Bank/Cash Balance", "To Do List", "Selling", "Payments Made", diff --git a/setup/doctype/email_digest/locale/de-doc.json b/setup/doctype/email_digest/locale/de-doc.json new file mode 100644 index 0000000000..a3a28a8a23 --- /dev/null +++ b/setup/doctype/email_digest/locale/de-doc.json @@ -0,0 +1,44 @@ +{ + "Add/Remove Recipients": "Hinzuf\u00fcgen / Entfernen von Empf\u00e4ngern", + "Buying": "Kauf", + "Calendar Events": "Kalendereintrag", + "Check all the items below that you want to send in this digest.": "\u00dcberpr\u00fcfen Sie alle Artikel unten, dass Sie in diesem Digest senden.", + "Daily": "T\u00e4glich", + "Email Digest": "Email Digest", + "Email Digest Settings": "Email Digest Einstellungen", + "Enabled": "Aktiviert", + "Expenses Booked": "Aufwand gebucht", + "For Company": "F\u00fcr Unternehmen", + "General": "General", + "How frequently?": "Wie h\u00e4ufig?", + "Income Year to Date": "Income Jahr bis Datum", + "Monthly": "Monatlich", + "New Communications": "New Communications", + "New Delivery Notes": "New Delivery Notes", + "New Enquiries": "New Anfragen", + "New Leads": "New Leads", + "New Material Requests": "Neues Material Requests", + "New Projects": "Neue Projekte", + "New Purchase Orders": "New Bestellungen", + "New Purchase Receipts": "New Kaufbelege", + "New Quotations": "New Zitate", + "New Sales Orders": "New Sales Orders", + "New Stock Entries": "New Stock Eintr\u00e4ge", + "New Supplier Quotations": "Neuer Lieferant Zitate", + "New Support Tickets": "New Support Tickets", + "Next email will be sent on:": "Weiter E-Mail wird gesendet:", + "Note: Email will not be sent to disabled users": "Hinweis: E-Mail wird nicht f\u00fcr behinderte Nutzer gesendet werden", + "Open Tickets": "Open Tickets", + "Payables": "Verbindlichkeiten", + "Projects": "Projekte", + "Receivables": "Forderungen", + "Recipients": "Empf\u00e4nger", + "Select Digest Content": "W\u00e4hlen Inhalt Digest", + "Selling": "Verkauf", + "Send regular summary reports via Email.": "Senden regelm\u00e4\u00dfige zusammenfassende Berichte per E-Mail.", + "Setup": "Setup", + "Stock": "Lager", + "Support": "Unterst\u00fctzen", + "To Do List": "To Do List", + "Weekly": "W\u00f6chentlich" +} \ No newline at end of file diff --git a/setup/doctype/email_digest/locale/de-py.json b/setup/doctype/email_digest/locale/de-py.json new file mode 100644 index 0000000000..383bc7eb10 --- /dev/null +++ b/setup/doctype/email_digest/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "All Day": "All Day" +} \ No newline at end of file diff --git a/setup/doctype/email_settings/locale/_messages_doc.json b/setup/doctype/email_settings/locale/_messages_doc.json index 186634a42d..c61353e1ae 100644 --- a/setup/doctype/email_settings/locale/_messages_doc.json +++ b/setup/doctype/email_settings/locale/_messages_doc.json @@ -13,12 +13,12 @@ "User Name", "Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.", "Signature to be appended at the end of every email", - "Support Password", "If non standard port (e.g. 587)", "SMTP Server (e.g. smtp.gmail.com)", "Check this to pull emails from your mailbox", "Setup", "Incoming Mail Setting", + "Support Password", "Sync Support Mails", "Outgoing Mails", "Signature", diff --git a/setup/doctype/email_settings/locale/de-doc.json b/setup/doctype/email_settings/locale/de-doc.json new file mode 100644 index 0000000000..985c3295d4 --- /dev/null +++ b/setup/doctype/email_settings/locale/de-doc.json @@ -0,0 +1,34 @@ +{ + "Auto Email Id": "Auto Email Id", + "Autoreply when a new mail is received": "Autoreply wenn eine neue E-Mail empfangen", + "Check this to pull emails from your mailbox": "Aktivieren Sie diese Option, um E-Mails aus Ihrer Mailbox ziehen", + "Custom Autoreply Message": "Benutzerdefinierte Autoreply Nachricht", + "Email Settings": "E-Mail-Einstellungen", + "Email Settings for Outgoing and Incoming Emails.": "E-Mail-Einstellungen f\u00fcr ausgehende und eingehende E-Mails.", + "If non standard port (e.g. 587)": "Wenn Nicht-Standard-Port (zum Beispiel 587)", + "Incoming Mail Setting": "Eingehende Mail-Einstellung", + "Login Id": "Login ID", + "Mail Password": "Mail Passwort", + "Mail Port": "Mail Port", + "Outgoing Mail Server": "Postausgangsserver", + "Outgoing Mails": "Ausgehende Mails", + "POP3 Mail Server": "POP3 Mail Server", + "POP3 mail server (e.g. pop.gmail.com)": "POP3-Mail-Server (pop.gmail.com beispielsweise)", + "SMTP Server (e.g. smtp.gmail.com)": "SMTP Server (beispielsweise smtp.gmail.com)", + "Send Autoreply": "Senden Autoreply", + "Set Login and Password if authentication is required.": "Stellen Sie Login und Passwort, wenn eine Authentifizierung erforderlich ist.", + "Set the POP3 email settings to pull emails directly from a mailbox and create Support Tickets": "Stellen Sie die POP3-Mail-Einstellungen auf E-Mails aus dem Postfach zu ziehen direkt erstellen und Support Tickets", + "Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.": "Stellen Sie Ihre ausgehende Mail SMTP-Einstellungen hier. Alle System generierten Meldungen werden E-Mails von diesen Mail-Server gehen. Wenn Sie sich nicht sicher sind, lassen Sie dieses Feld leer, um ERPNext Server (E-Mails werden immer noch von Ihrer E-Mail-ID gesendet werden) verwenden oder kontaktieren Sie Ihren E-Mail-Provider.", + "Setup": "Setup", + "Signature": "Unterschrift", + "Signature to be appended at the end of every email": "Unterschrift am Ende jeder E-Mail angeh\u00e4ngt werden", + "Support Email": "Unterst\u00fctzung per E-Mail", + "Support Password": "Support Passwort", + "Support Ticket Mail Settings": "Support-Ticket-Mail-Einstellungen", + "Sync Support Mails": "Sync Unterst\u00fctzung Mails", + "System generated mails will be sent from this email id.": "System generierten E-Mails werden von dieser E-Mail-ID gesendet werden.", + "To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.": "Um automatisch Support Tickets von Ihrem Posteingang, stellen Sie Ihren POP3-Einstellungen hier. Sie m\u00fcssen im Idealfall eine separate E-Mail-ID f\u00fcr das ERP-System, so dass alle E-Mails in das System von diesem Mail-ID synchronisiert werden. Wenn Sie nicht sicher sind, wenden Sie sich bitte EMail Provider.", + "Use SSL": "Verwenden Sie SSL", + "User Name": "User Name", + "Your support email id - must be a valid email - this is where your emails will come!": "Ihre Unterst\u00fctzung email id - muss eine g\u00fcltige E-Mail-sein - das ist, wo Ihre E-Mails wird kommen!" +} \ No newline at end of file diff --git a/setup/doctype/features_setup/locale/_messages_doc.json b/setup/doctype/features_setup/locale/_messages_doc.json index c06680fa3e..6d4d66b6ca 100644 --- a/setup/doctype/features_setup/locale/_messages_doc.json +++ b/setup/doctype/features_setup/locale/_messages_doc.json @@ -7,9 +7,9 @@ "Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice", "Enables More Info. in all documents", "Item Serial Nos", - "All export related fields like currency, conversion rate, export total, export grand total etc are available in
    \nDelivery Note, POS, Quotation, Sales Invoice, Sales Order etc.", - "Item Groups in Details", "Item Barcode", + "Item Groups in Details", + "All export related fields like currency, conversion rate, export total, export grand total etc are available in
    \nDelivery Note, POS, Quotation, Sales Invoice, Sales Order etc.", "Sales Discounts", "Exports", "To track brand name in the following documents
    \nDelivery Note, Enuiry, Material Request, Item, Purchase Order, Purchase Voucher, Purchaser Receipt, Quotation, Sales Invoice, Sales BOM, Sales Order, Serial No", @@ -27,14 +27,13 @@ "Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.", "Setup", "Available in \nBOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet", - "Sales Extras", "Materials", "Miscelleneous", "Recurring Invoice", - "If you involve in manufacturing activity
    \nEnables item Is Manufactured", "Field available in Delivery Note, Quotation, Sales Invoice, Sales Order", "More Info", "Point of Sale", + "Sales Extras", "Imports", "If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity", "To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.", @@ -42,6 +41,7 @@ "After Sale Installations", "Projects", "All import related fields like currency, conversion rate, import total, import grand total etc are available in
    \nPurchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.", + "If you involve in manufacturing activity
    \nEnables item Is Manufactured", "To track any installation or commissioning related work after sales", "Quality", "1. To maintain the customer wise item code and to make them searchable based on their code use this option" diff --git a/setup/doctype/features_setup/locale/de-doc.json b/setup/doctype/features_setup/locale/de-doc.json new file mode 100644 index 0000000000..4d53ab3814 --- /dev/null +++ b/setup/doctype/features_setup/locale/de-doc.json @@ -0,0 +1,41 @@ +{ + "1. To maintain the customer wise item code and to make them searchable based on their code use this option": "Ein. Um den Kunden kluge Artikel Code zu pflegen und um sie durchsuchbar basierend auf ihren Code um diese Option", + "Accounts": "Konten", + "After Sale Installations": "After Sale Installationen", + "Brands": "Marken", + "Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.": "\u00dcberpr\u00fcfen Sie, ob Sie die automatische wiederkehrende Rechnungen ben\u00f6tigen. Nach dem Absenden eine Rechnung \u00fcber den Verkauf wird Recurring Abschnitt sichtbar sein.", + "Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice": "Discount Felder werden in der Bestellung, Kaufbeleg Kauf Rechnung verf\u00fcgbar", + "Enables More Info. in all documents": "Erm\u00f6glicht Mehr Info. in alle Dokumente", + "Exports": "Ausfuhr", + "Features Setup": "Features Setup", + "Field available in Delivery Note, Quotation, Sales Invoice, Sales Order": "Feld in Lieferschein, Angebot, Sales Invoice, Sales Order", + "If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity": "Wenn Sie Sales Team und Verkauf Partners (Channel Partners) sie markiert werden k\u00f6nnen und pflegen ihren Beitrag in der Vertriebsaktivit\u00e4ten", + "If you have long print formats, this feature can be used to split the page to be printed on multiple pages with all headers and footers on each page": "Wenn Sie lange drucken, haben Formate, kann diese Funktion dazu verwendet, um die Seite auf mehreren Seiten mit allen Kopf-und Fu\u00dfzeilen auf jeder Seite gedruckt werden", + "Imports": "Imports", + "Item Advanced": "Erweiterte Artikel", + "Item Barcode": "Barcode Artikel", + "Item Batch Nos": "In Batch Artikel", + "Item Groups in Details": "Details Gruppen in Artikel", + "Item Serial Nos": "Artikel Serial In", + "Manufacturing": "Herstellung", + "Materials": "Materialien", + "Miscelleneous": "Miscelleneous", + "More Info": "Mehr Info", + "Packing Detials": "Verpackung Detials", + "Page Break": "Seitenwechsel", + "Point of Sale": "Point of Sale", + "Projects": "Projekte", + "Purchase Discounts": "Kauf Rabatte", + "Quality": "Qualit\u00e4t", + "Recurring Invoice": "Wiederkehrende Rechnung", + "Sales Discounts": "Sales Rabatte", + "Sales Extras": "Verkauf Extras", + "Sales and Purchase": "Verkauf und Kauf", + "Setup": "Setup", + "To enable Point of Sale features": "Zum Point of Sale Funktionen erm\u00f6glichen", + "To get Item Group in details table": "Zu Artikelnummer Gruppe im Detail Tisch zu bekommen", + "To track any installation or commissioning related work after sales": "Um jegliche Installation oder Inbetriebnahme verwandte Arbeiten After Sales verfolgen", + "To track item in sales and purchase documents based on their serial nos. This is can also used to track warranty details of the product.": "Um Artikel in Vertrieb und Einkauf Dokumente auf ihrem Werknummern Basis zu verfolgen. Dies wird auch verwendet, um Details zum Thema Gew\u00e4hrleistung des Produktes zu verfolgen.", + "To track items in sales and purchase documents with batch nos
    Preferred Industry: Chemicals etc": "Um Elemente in An-und Verkauf von Dokumenten mit Batch-nos
    Preferred Industry verfolgen: Chemicals etc ", + "To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.": "Um Objekte mit Barcode verfolgen. Sie werden in der Lage sein, um Elemente in Lieferschein und Sales Invoice durch Scannen Barcode einzusteigen." +} \ No newline at end of file diff --git a/setup/doctype/global_defaults/locale/_messages_doc.json b/setup/doctype/global_defaults/locale/_messages_doc.json index 79a7f11527..7c318c9507 100644 --- a/setup/doctype/global_defaults/locale/_messages_doc.json +++ b/setup/doctype/global_defaults/locale/_messages_doc.json @@ -49,11 +49,11 @@ "Default Item Group", "mm/dd/yyyy", "Date Format", - "Disable Rounded Total", "Authorized Role (Frozen Entry)", "If disable, 'Rounded Total' field will not be visible in any transaction", "Credit Controller", "IGHelp", + "Disable Rounded Total", "Current Fiscal Year", "yyyy-mm-dd", "Do not show any symbol like $ etc next to currencies.", diff --git a/setup/doctype/global_defaults/locale/de-doc.json b/setup/doctype/global_defaults/locale/de-doc.json new file mode 100644 index 0000000000..ad8f1e668d --- /dev/null +++ b/setup/doctype/global_defaults/locale/de-doc.json @@ -0,0 +1,69 @@ +{ + "Account Info": "Kundendaten", + "Accounting entry frozen up to this date, nobody can do / modify entry except authorized person": "Buchhaltungseingaben bis zu diesem Zeitpunkt eingefroren, kann niemand / nicht \u00e4ndern Eintrag au\u00dfer autorisierten Person", + "Accounts": "Konten", + "Accounts Frozen Upto": "Konten Bis gefroren", + "Allow Negative Stock": "Lassen Negative Lager", + "Allowance Percent": "Allowance Prozent", + "Applicable only if valuation method is moving average": "Gilt nur, wenn Bewertungsmethode ist gleitenden Durchschnitt", + "Authorized Role (Frozen Entry)": "Autorisierte Rolle (Frozen Entry)", + "Authourized Role (Frozen Entry)": "Authourized Rolle (Frozen Entry)", + "Buying": "Kauf", + "CGHelp": "CGHelp", + "Company": "Firma", + "Credit Controller": "Credit Controller", + "Current Fiscal Year": "Laufenden Gesch\u00e4ftsjahr", + "Customer Name": "Name des Kunden", + "Date Format": "Datumsformat", + "Default Company": "Standard Unternehmen", + "Default Currency": "Standardw\u00e4hrung", + "Default Customer Group": "Standard Customer Group", + "Default Item Group": "Standard Element Gruppe", + "Default Price List": "Standard Preisliste", + "Default Price List Currency": "Standard Preisliste W\u00e4hrung", + "Default Stock UOM": "Standard Lager UOM", + "Default Supplier Type": "Standard Lieferant Typ", + "Default Territory": "Standard Territory", + "Default Valuation Method": "Standard Valuation Method", + "Default Warehouse Type": "Standard Warehouse Typ", + "Delivery Note Required": "Lieferschein erforderlich", + "Do not show any symbol like $ etc next to currencies.": "Zeigen keine Symbol wie $ etc neben W\u00e4hrungen.", + "Employee Number": "Mitarbeiternummer", + "FIFO": "FIFO", + "Float Precision": "Gleitkommatgenauigkeit", + "General": "General", + "Global Defaults": "Globale Defaults", + "HR": "HR", + "Hide Currency Symbol": "Ausblenden W\u00e4hrungssymbol", + "IGHelp": "IGHelp", + "Maintain same rate throughout purchase cycle": "Pflegen gleichen Rate gesamten Kauf-Zyklus", + "Moving Average": "Moving Average", + "Naming Series": "Benennen Series", + "No": "Auf", + "Number Format": "Number Format", + "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

    ": "Prozentuale Ihnen erlaubt zu empfangen oder zu liefern mehr gegen die Menge bestellt werden.

    Zum Beispiel: Wenn Sie 100 Einheiten bestellt. und Ihre Allowance ist 10%, dann d\u00fcrfen Sie 110 Einheiten und Sie bekommen", + "Precision for Float fields (quantities, discounts, percentages etc) only for display. Floats will still be calculated up to 6 decimals.": "Pr\u00e4zision ist Float Felder (quantities, Rabatte, Prozente etc) nur zur Anzeige. Floats noch bis zu 6 Dezimalstellen berechnet werden.", + "Purchase Order Required": "Bestellung erforderlich", + "Purchase Receipt Required": "Kaufbeleg erforderlich", + "Raise Material Request when stock reaches re-order level": "Heben Anfrage Material erreicht, wenn der Vorrat re-order-Ebene", + "SMS Sender Name": "SMS Absender Name", + "Sales Order Required": "Sales Order erforderlich", + "Selling": "Verkauf", + "Session Expiry": "Session Verfall", + "Session Expiry in Hours e.g. 06:00": "Session Verfall z. B. in Stunden 06.00", + "Setup": "Setup", + "Stock": "Lager", + "Stock Frozen Upto": "Lager Bis gefroren", + "Stock level frozen up to this date, nobody can do / modify entry except authorized person": "Bestand bis zu diesem Zeitpunkt eingefroren, kann niemand / nicht \u00e4ndern Eintrag au\u00dfer autorisierten Person", + "Supplier Name": "Name des Anbieters", + "System": "System", + "TerritoryHelp": "TerritoryHelp", + "Users with this role are allowed to do / modify accounting entry before frozen date": "Benutzer mit dieser Rolle tun d\u00fcrfen / \u00e4ndern Verbuchung vor dem gefrorenen Datum", + "Users with this role are allowed to do / modify stock entry before frozen date": "Benutzer mit dieser Rolle d\u00fcrfen zu tun / \u00e4ndern stock Eintrag vor gefrorenen Datum", + "Yes": "Ja", + "dd-mm-yyyy": "dd-mm-yyyy", + "dd/mm/yyyy": "dd / mm / yyyy", + "mm-dd-yyyy": "mm-dd-yyyy", + "mm/dd/yyyy": "mm / dd / yyyy", + "yyyy-mm-dd": "yyyy-mm-dd" +} \ No newline at end of file diff --git a/setup/doctype/item_group/locale/de-doc.json b/setup/doctype/item_group/locale/de-doc.json new file mode 100644 index 0000000000..581a2781f4 --- /dev/null +++ b/setup/doctype/item_group/locale/de-doc.json @@ -0,0 +1,23 @@ +{ + "Check this if you want to show in website": "Aktivieren Sie diese Option, wenn Sie in der Website zeigen wollen", + "Description": "Beschreibung", + "File List": "Dateiliste", + "HTML / Banner that will show on the top of product list.": "HTML / Banner, die auf der Oberseite des Produkt-Liste zeigen.", + "Has Child Node": "Hat Child Node", + "Item Classification": "Artikel Klassifizierung", + "Item Group": "Artikel-Gruppe", + "Item Group Name": "Artikel Group Name", + "No": "Auf", + "Only leaf nodes are allowed in transaction": "Nur Blattknoten in Transaktion zul\u00e4ssig", + "Page Name": "Page Name", + "Parent Item Group": "\u00dcbergeordneter Artikel Gruppe", + "Setup": "Setup", + "Show in Website": "Zeigen Sie im Website", + "Show this slideshow at the top of the page": "Zeige diese Slideshow an der Spitze der Seite", + "Slideshow": "Slideshow", + "Website Settings": "Website-Einstellungen", + "Yes": "Ja", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "rgt" +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/_messages_doc.json b/setup/doctype/jobs_email_settings/locale/_messages_doc.json index f75932794a..62e7095217 100644 --- a/setup/doctype/jobs_email_settings/locale/_messages_doc.json +++ b/setup/doctype/jobs_email_settings/locale/_messages_doc.json @@ -8,8 +8,8 @@ "Setup", "Email settings for jobs email id \"jobs@example.com\"", "Host", - "POP3 server e.g. (pop.gmail.com)", "Settings to extract Job Applicants from a mailbox e.g. \"jobs@example.com\"", + "POP3 server e.g. (pop.gmail.com)", "Check to activate", "Extract Emails", "Email Id" diff --git a/setup/doctype/jobs_email_settings/locale/de-doc.json b/setup/doctype/jobs_email_settings/locale/de-doc.json new file mode 100644 index 0000000000..f19bed11e8 --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/de-doc.json @@ -0,0 +1,16 @@ +{ + "Check to activate": "\u00dcberpr\u00fcfen Sie aktivieren", + "Email Id": "Email Id", + "Email Id where a job applicant will email e.g. \"jobs@example.com\"": "Email Id, wo ein Bewerber beispielsweise per E-Mail wird \"Jobs@example.com\"", + "Email settings for jobs email id \"jobs@example.com\"": "E-Mail-Einstellungen f\u00fcr Jobs email id \"jobs@example.com\"", + "Extract Emails": "Auszug Emails", + "Host": "Gastgeber", + "Jobs Email Settings": "Jobs per E-Mail Einstellungen", + "POP3 Mail Settings": "POP3-Mail-Einstellungen", + "POP3 server e.g. (pop.gmail.com)": "POP3-Server beispielsweise (pop.gmail.com)", + "Password": "Kennwort", + "Settings to extract Job Applicants from a mailbox e.g. \"jobs@example.com\"": "Einstellungen f\u00fcr Bewerber aus einer Mailbox zB \"jobs@example.com\" extrahieren", + "Setup": "Setup", + "Use SSL": "Verwenden Sie SSL", + "Username": "Benutzername" +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/de-js.json b/setup/doctype/jobs_email_settings/locale/de-js.json new file mode 100644 index 0000000000..6f0b76081c --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/de-js.json @@ -0,0 +1,3 @@ +{ + "Not Active": "Nicht aktiv" +} \ No newline at end of file diff --git a/setup/doctype/jobs_email_settings/locale/de-py.json b/setup/doctype/jobs_email_settings/locale/de-py.json new file mode 100644 index 0000000000..df47b84932 --- /dev/null +++ b/setup/doctype/jobs_email_settings/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "Host, Email and Password required if emails are to be pulled": "Host, E-Mail und Passwort erforderlich, wenn E-Mails gezogen werden" +} \ No newline at end of file diff --git a/setup/doctype/market_segment/locale/de-doc.json b/setup/doctype/market_segment/locale/de-doc.json new file mode 100644 index 0000000000..f8ad0b85ee --- /dev/null +++ b/setup/doctype/market_segment/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Details": "Details", + "Market Segment": "Market Segment", + "Segment Name": "Segment Name", + "Setup": "Setup", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/setup/doctype/naming_series/locale/de-doc.json b/setup/doctype/naming_series/locale/de-doc.json new file mode 100644 index 0000000000..50f5949ac5 --- /dev/null +++ b/setup/doctype/naming_series/locale/de-doc.json @@ -0,0 +1,18 @@ +{ + "Change the starting / current sequence number of an existing series.": "\u00c4ndern Sie den Start / aktuelle Sequenznummer eines bestehenden Serie.", + "Check this if you want to force the user to select a series before saving. There will be no default if you check this.": "Aktivieren Sie diese Option, wenn Sie den Benutzer zwingen, eine Reihe vor dem Speichern ausw\u00e4hlen m\u00f6chten. Es wird kein Standard sein, wenn Sie dies zu \u00fcberpr\u00fcfen.", + "Current Value": "Aktueller Wert", + "Help HTML": "Helfen Sie HTML", + "Naming Series": "Benennen Series", + "Prefix": "Pr\u00e4fix", + "Select Transaction": "W\u00e4hlen Sie Transaction", + "Series List for this Transaction": "Serien-Liste f\u00fcr diese Transaktion", + "Set prefix for numbering series on your transactions": "Nummerierung einstellen Serie Pr\u00e4fix f\u00fcr Ihre Online-Transaktionen", + "Setup": "Setup", + "Setup Series": "Setup-Series", + "This is the number of the last created transaction with this prefix": "Dies ist die Nummer des zuletzt erzeugte Transaktion mit diesem Pr\u00e4fix", + "Update": "Aktualisieren", + "Update Series": "Update Series", + "Update Series Number": "Update Series Number", + "User must always select": "Der Benutzer muss immer w\u00e4hlen" +} \ No newline at end of file diff --git a/setup/doctype/naming_series_options/locale/de-doc.json b/setup/doctype/naming_series_options/locale/de-doc.json new file mode 100644 index 0000000000..c07d638134 --- /dev/null +++ b/setup/doctype/naming_series_options/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Doc Type": "Doc Type", + "Naming Series Options": "Benennen Optionen Series", + "Series Options": "Serie Optionen", + "Setup": "Setup" +} \ No newline at end of file diff --git a/setup/doctype/notification_control/locale/de-doc.json b/setup/doctype/notification_control/locale/de-doc.json new file mode 100644 index 0000000000..81fb54d96e --- /dev/null +++ b/setup/doctype/notification_control/locale/de-doc.json @@ -0,0 +1,31 @@ +{ + "Custom Message": "Custom Message", + "Customize the Notification": "Passen Sie die Benachrichtigung", + "Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.": "Passen Sie den einleitenden Text, der als Teil der E-Mail geht. Jede Transaktion hat einen separaten einleitenden Text.", + "Delivery Note": "Lieferschein", + "Delivery Note Message": "Lieferschein Nachricht", + "Expense Claim": "Expense Anspruch", + "Expense Claim Approved": "Expense Anspruch Genehmigt", + "Expense Claim Approved Message": "Expense Anspruch Genehmigt Nachricht", + "Expense Claim Rejected": "Expense Antrag abgelehnt", + "Expense Claim Rejected Message": "Expense Antrag abgelehnt Nachricht", + "Notification Control": "Meldungssteuervorrichtung", + "Prompt for Email on Submission of": "Eingabeaufforderung f\u00fcr E-Mail auf Vorlage von", + "Purchase": "Kaufen", + "Purchase Order": "Auftragsbest\u00e4tigung", + "Purchase Order Message": "Purchase Order Nachricht", + "Purchase Receipt": "Kaufbeleg", + "Purchase Receipt Message": "Kaufbeleg Nachricht", + "Quotation": "Zitat", + "Quotation Message": "Quotation Nachricht", + "Sales": "Vertrieb", + "Sales Invoice": "Sales Invoice", + "Sales Invoice Message": "Sales Invoice Nachricht", + "Sales Order": "Sales Order", + "Sales Order Message": "Sales Order Nachricht", + "Select Transaction": "W\u00e4hlen Sie Transaction", + "Send automatic emails to Contacts on Submitting transactions.": "Senden Sie automatische E-Mails an Kontakte auf Einreichen Transaktionen.", + "Setup": "Setup", + "Update": "Aktualisieren", + "When any of the checked transactions are \"Submitted\", an email pop-up automatically opened to send an email to the associated \"Contact\" in that transaction, with the transaction as an attachment. The user may or may not send the email.": "Wenn eine der \u00fcberpr\u00fcften Transaktionen werden \"Eingereicht\", ein E-Mail-pop-up automatisch ge\u00f6ffnet, um eine E-Mail mit dem zugeh\u00f6rigen \"Kontakt\" in dieser Transaktion zu senden, mit der Transaktion als Anhang. Der Benutzer kann oder nicht-Mail senden." +} \ No newline at end of file diff --git a/setup/doctype/permission_control/locale/de-doc.json b/setup/doctype/permission_control/locale/de-doc.json new file mode 100644 index 0000000000..ca1bf25a0b --- /dev/null +++ b/setup/doctype/permission_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Permission Control": "Permission Steuerung", + "Setup": "Setup" +} \ No newline at end of file diff --git a/setup/doctype/price_list/locale/de-doc.json b/setup/doctype/price_list/locale/de-doc.json new file mode 100644 index 0000000000..65462312b2 --- /dev/null +++ b/setup/doctype/price_list/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "File List": "Dateiliste", + "How to upload": "So laden", + "Price List": "Preisliste", + "Price List Master": "Meister Preisliste", + "Price List Name": "Preis Name", + "Setup": "Setup" +} \ No newline at end of file diff --git a/setup/doctype/print_heading/locale/de-doc.json b/setup/doctype/print_heading/locale/de-doc.json new file mode 100644 index 0000000000..351f58495d --- /dev/null +++ b/setup/doctype/print_heading/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Description": "Beschreibung", + "Print Heading": "Unterwegs drucken", + "Setup": "Setup", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/setup/doctype/quotation_lost_reason/locale/de-doc.json b/setup/doctype/quotation_lost_reason/locale/de-doc.json new file mode 100644 index 0000000000..283ba385b2 --- /dev/null +++ b/setup/doctype/quotation_lost_reason/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Quotation Lost Reason": "Zitat Passwort Reason", + "Setup": "Setup", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/setup/doctype/sales_browser_control/locale/de-doc.json b/setup/doctype/sales_browser_control/locale/de-doc.json new file mode 100644 index 0000000000..83242facdb --- /dev/null +++ b/setup/doctype/sales_browser_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Sales Browser Control": "Vertrieb Browser Control", + "Setup": "Setup" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/de-doc.json b/setup/doctype/sales_email_settings/locale/de-doc.json new file mode 100644 index 0000000000..7537586d7c --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/de-doc.json @@ -0,0 +1,15 @@ +{ + "Check to activate": "\u00dcberpr\u00fcfen Sie aktivieren", + "Email Id": "Email Id", + "Email Id where a job applicant will email e.g. \"jobs@example.com\"": "Email Id, wo ein Bewerber beispielsweise per E-Mail wird \"Jobs@example.com\"", + "Email settings to extract Leads from sales email id e.g. \"sales@example.com\"": "E-Mail-Einstellungen zu extrahieren Leads aus dem Verkauf email id zB \"Sales@example.com\"", + "Extract Emails": "Auszug Emails", + "Host": "Gastgeber", + "POP3 Mail Settings": "POP3-Mail-Einstellungen", + "POP3 server e.g. (pop.gmail.com)": "POP3-Server beispielsweise (pop.gmail.com)", + "Password": "Kennwort", + "Sales Email Settings": "Vertrieb E-Mail-Einstellungen", + "Setup": "Setup", + "Use SSL": "Verwenden Sie SSL", + "Username": "Benutzername" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/de-js.json b/setup/doctype/sales_email_settings/locale/de-js.json new file mode 100644 index 0000000000..6f0b76081c --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/de-js.json @@ -0,0 +1,3 @@ +{ + "Not Active": "Nicht aktiv" +} \ No newline at end of file diff --git a/setup/doctype/sales_email_settings/locale/de-py.json b/setup/doctype/sales_email_settings/locale/de-py.json new file mode 100644 index 0000000000..df47b84932 --- /dev/null +++ b/setup/doctype/sales_email_settings/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "Host, Email and Password required if emails are to be pulled": "Host, E-Mail und Passwort erforderlich, wenn E-Mails gezogen werden" +} \ No newline at end of file diff --git a/setup/doctype/sales_partner/locale/de-doc.json b/setup/doctype/sales_partner/locale/de-doc.json new file mode 100644 index 0000000000..b5b31e8646 --- /dev/null +++ b/setup/doctype/sales_partner/locale/de-doc.json @@ -0,0 +1,27 @@ +{ + "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.": "Ein Dritter Vertrieb / H\u00e4ndler / Kommission\u00e4r / affiliate / Vertragsh\u00e4ndler verkauft die Unternehmen Produkte f\u00fcr eine Provision.", + "Address & Contacts": "Adresse und Kontakte", + "Address Desc": "Adresse Desc", + "Address HTML": "Adresse HTML", + "Agent": "Agent", + "Channel Partner": "Channel Partner", + "Commission Rate": "Kommission bewerten", + "Contact Desc": "Kontakt Desc", + "Contact HTML": "Kontakt HTML", + "Dealer": "H\u00e4ndler", + "Distributor": "Verteiler", + "Implementation Partner": "Implementation Partner", + "Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts": "Hinweis: Sie k\u00f6nnen mehrere Kontakte oder Adresse via Adressen & Kontakte verwalten", + "Partner Target Detail": "Partner Zieldetailbericht", + "Partner Type": "Partner Typ", + "Reseller": "Wiederverk\u00e4ufer", + "Retailer": "Einzelh\u00e4ndler", + "Sales Partner": "Vertriebspartner", + "Sales Partner Details": "Sales Partner Details", + "Sales Partner Name": "Sales Partner Name", + "Sales Partner Target": "Partner Sales Target", + "Select Budget Distribution to unevenly distribute targets across months.": "W\u00e4hlen Budget Verteilung ungleichm\u00e4\u00dfig Targets \u00fcber Monate verteilen.", + "Setup": "Setup", + "Target Distribution": "Target Distribution", + "Territory": "Gebiet" +} \ No newline at end of file diff --git a/setup/doctype/sales_person/locale/_messages_doc.json b/setup/doctype/sales_person/locale/_messages_doc.json index 82cfd05dfd..ae1cb2cbfd 100644 --- a/setup/doctype/sales_person/locale/_messages_doc.json +++ b/setup/doctype/sales_person/locale/_messages_doc.json @@ -1,5 +1,5 @@ [ - "Select Budget Distribution to unevenly distribute targets across months.", + "rgt", "Trash Reason", "Sales Person", "Select company name first.", @@ -9,13 +9,13 @@ "Has Child Node", "Sales Person Targets", "Target Distribution", - "rgt", - "old_parent", "lft", - "Target Details1", + "old_parent", "Employee", + "Target Details1", "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.", "Yes", "Parent Sales Person", - "Sales Person Name" + "Sales Person Name", + "Select Budget Distribution to unevenly distribute targets across months." ] \ No newline at end of file diff --git a/setup/doctype/sales_person/locale/de-doc.json b/setup/doctype/sales_person/locale/de-doc.json new file mode 100644 index 0000000000..19724bd0af --- /dev/null +++ b/setup/doctype/sales_person/locale/de-doc.json @@ -0,0 +1,21 @@ +{ + "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.": "Alle Verk\u00e4ufe Transaktionen k\u00f6nnen gegen mehrere ** Umsatz Personen **, so dass Sie und \u00fcberwachen Ziele k\u00f6nnen markiert werden.", + "Employee": "Mitarbeiter", + "Has Child Node": "Hat Child Node", + "No": "Auf", + "Parent Sales Person": "Eltern Sales Person", + "Sales Person": "Sales Person", + "Sales Person Name": "Sales Person Vorname", + "Sales Person Targets": "Sales Person Targets", + "Select Budget Distribution to unevenly distribute targets across months.": "W\u00e4hlen Budget Verteilung ungleichm\u00e4\u00dfig Targets \u00fcber Monate verteilen.", + "Select company name first.": "W\u00e4hlen Firmennamen erste.", + "Set targets Item Group-wise for this Sales Person.": "Set zielt Artikel gruppenweise f\u00fcr diesen Sales Person.", + "Setup": "Setup", + "Target Details1": "Ziel Details1", + "Target Distribution": "Target Distribution", + "Trash Reason": "Trash Reason", + "Yes": "Ja", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "rgt" +} \ No newline at end of file diff --git a/setup/doctype/series_detail/locale/de-doc.json b/setup/doctype/series_detail/locale/de-doc.json new file mode 100644 index 0000000000..df28f51e28 --- /dev/null +++ b/setup/doctype/series_detail/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Remove": "Entfernen", + "Series": "Serie", + "Series Detail": "Series Detailansicht", + "Setup": "Setup" +} \ No newline at end of file diff --git a/setup/doctype/setup_control/locale/de-doc.json b/setup/doctype/setup_control/locale/de-doc.json new file mode 100644 index 0000000000..8ae3dca16c --- /dev/null +++ b/setup/doctype/setup_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Setup": "Setup", + "Setup Control": "Setup Control" +} \ No newline at end of file diff --git a/setup/doctype/sms_parameter/locale/_messages_doc.json b/setup/doctype/sms_parameter/locale/_messages_doc.json index daf8dc44e0..0890ad981c 100644 --- a/setup/doctype/sms_parameter/locale/_messages_doc.json +++ b/setup/doctype/sms_parameter/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Parameter", "Setup", + "Parameter", "Value", "SMS Parameter" ] \ No newline at end of file diff --git a/setup/doctype/sms_parameter/locale/de-doc.json b/setup/doctype/sms_parameter/locale/de-doc.json new file mode 100644 index 0000000000..fe97bc7cf2 --- /dev/null +++ b/setup/doctype/sms_parameter/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Parameter": "Parameter", + "SMS Parameter": "SMS Parameter", + "Setup": "Setup", + "Value": "Wert" +} \ No newline at end of file diff --git a/setup/doctype/sms_settings/locale/de-doc.json b/setup/doctype/sms_settings/locale/de-doc.json new file mode 100644 index 0000000000..6a5f7631cd --- /dev/null +++ b/setup/doctype/sms_settings/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Eg. smsgateway.com/api/send_sms.cgi": "Eg. smsgateway.com / api / send_sms.cgi", + "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)": "Geben Sie statischen URL-Parameter hier (Bsp. sender = ERPNext, username = ERPNext, password = 1234 etc.)", + "Enter url parameter for message": "Geben Sie URL-Parameter f\u00fcr die Nachrichten\u00fcbertragung", + "Enter url parameter for receiver nos": "Geben Sie URL-Parameter f\u00fcr Empf\u00e4nger nos", + "Message Parameter": "Nachricht Parameter", + "Receiver Parameter": "Empf\u00e4nger Parameter", + "SMS Gateway URL": "SMS Gateway URL", + "SMS Parameters": "SMS-Parameter", + "SMS Settings": "SMS-Einstellungen", + "Setup": "Setup", + "Static Parameters": "Statische Parameter" +} \ No newline at end of file diff --git a/setup/doctype/state/locale/de-doc.json b/setup/doctype/state/locale/de-doc.json new file mode 100644 index 0000000000..63f1a8108a --- /dev/null +++ b/setup/doctype/state/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Country": "Land", + "Setup": "Setup", + "State": "Zustand", + "State Name": "State Name" +} \ No newline at end of file diff --git a/setup/doctype/supplier_type/locale/de-doc.json b/setup/doctype/supplier_type/locale/de-doc.json new file mode 100644 index 0000000000..6fb56bb367 --- /dev/null +++ b/setup/doctype/supplier_type/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Setup": "Setup", + "Supplier Type": "Lieferant Typ", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/setup/doctype/target_detail/locale/de-doc.json b/setup/doctype/target_detail/locale/de-doc.json new file mode 100644 index 0000000000..19b743100a --- /dev/null +++ b/setup/doctype/target_detail/locale/de-doc.json @@ -0,0 +1,8 @@ +{ + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Item Group": "Artikel-Gruppe", + "Setup": "Setup", + "Target Amount": "Zielbetrag", + "Target Detail": "Ziel Detailansicht", + "Target Qty": "Ziel Menge" +} \ No newline at end of file diff --git a/setup/doctype/terms_and_conditions/locale/de-doc.json b/setup/doctype/terms_and_conditions/locale/de-doc.json new file mode 100644 index 0000000000..c9773ea55c --- /dev/null +++ b/setup/doctype/terms_and_conditions/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Setup": "Setup", + "Terms and Conditions": "AGB", + "Title": "Titel", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/setup/doctype/territory/locale/de-doc.json b/setup/doctype/territory/locale/de-doc.json new file mode 100644 index 0000000000..5c6000e409 --- /dev/null +++ b/setup/doctype/territory/locale/de-doc.json @@ -0,0 +1,22 @@ +{ + "Classification of Customers by region": "Klassifizierung der Kunden nach Regionen", + "For reference": "Als Referenz", + "Has Child Node": "Hat Child Node", + "No": "Auf", + "Only leaf nodes are allowed in transaction": "Nur Blattknoten in Transaktion zul\u00e4ssig", + "Parent Territory": "Eltern Territory", + "Select Budget Distribution to unevenly distribute targets across months.": "W\u00e4hlen Budget Verteilung ungleichm\u00e4\u00dfig Targets \u00fcber Monate verteilen.", + "Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.": "Set Artikel gruppenweise Budgets auf diesem Gebiet. Sie k\u00f6nnen Saisonalit\u00e4t auch geh\u00f6ren, indem Sie die Distribution.", + "Setup": "Setup", + "Target Details": "Zieldetails", + "Target Distribution": "Target Distribution", + "Territory": "Gebiet", + "Territory Manager": "Territory Manager", + "Territory Name": "Territory Namen", + "Territory Targets": "Territory Targets", + "Trash Reason": "Trash Reason", + "Yes": "Ja", + "lft": "lft", + "old_parent": "old_parent", + "rgt": "rgt" +} \ No newline at end of file diff --git a/setup/doctype/uom/locale/_messages_doc.json b/setup/doctype/uom/locale/_messages_doc.json index 0c79dffbce..850ea0e3ae 100644 --- a/setup/doctype/uom/locale/_messages_doc.json +++ b/setup/doctype/uom/locale/_messages_doc.json @@ -1,7 +1,7 @@ [ "Trash Reason", - "Setup", - "UOM Details", "UOM Name", + "UOM Details", + "Setup", "UOM" ] \ No newline at end of file diff --git a/setup/doctype/uom/locale/de-doc.json b/setup/doctype/uom/locale/de-doc.json new file mode 100644 index 0000000000..da70327cc6 --- /dev/null +++ b/setup/doctype/uom/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Setup": "Setup", + "Trash Reason": "Trash Reason", + "UOM": "UOM", + "UOM Details": "UOM Einzelheiten", + "UOM Name": "UOM Namen" +} \ No newline at end of file diff --git a/setup/doctype/warehouse_type/locale/de-doc.json b/setup/doctype/warehouse_type/locale/de-doc.json new file mode 100644 index 0000000000..caa517fe0f --- /dev/null +++ b/setup/doctype/warehouse_type/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Setup": "Setup", + "Trash Reason": "Trash Reason", + "Warehouse Type": "Warehouse Typ" +} \ No newline at end of file diff --git a/setup/doctype/workflow_action_detail/locale/_messages_doc.json b/setup/doctype/workflow_action_detail/locale/_messages_doc.json index b97b8515e8..6def7f173e 100644 --- a/setup/doctype/workflow_action_detail/locale/_messages_doc.json +++ b/setup/doctype/workflow_action_detail/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Workflow Action Detail", + "Field", "Setup", - "Value", - "Field" + "Workflow Action Detail", + "Value" ] \ No newline at end of file diff --git a/setup/doctype/workflow_action_detail/locale/de-doc.json b/setup/doctype/workflow_action_detail/locale/de-doc.json new file mode 100644 index 0000000000..3db419a145 --- /dev/null +++ b/setup/doctype/workflow_action_detail/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Field": "Feld", + "Setup": "Setup", + "Value": "Wert", + "Workflow Action Detail": "Workflow-Aktion Details" +} \ No newline at end of file diff --git a/setup/doctype/workflow_engine/locale/_messages_doc.json b/setup/doctype/workflow_engine/locale/_messages_doc.json index 3f3207e062..f03ed6ab74 100644 --- a/setup/doctype/workflow_engine/locale/_messages_doc.json +++ b/setup/doctype/workflow_engine/locale/_messages_doc.json @@ -1,4 +1,4 @@ [ - "Workflow Engine", - "Setup" + "Setup", + "Workflow Engine" ] \ No newline at end of file diff --git a/setup/doctype/workflow_engine/locale/de-doc.json b/setup/doctype/workflow_engine/locale/de-doc.json new file mode 100644 index 0000000000..312ccf5d42 --- /dev/null +++ b/setup/doctype/workflow_engine/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Setup": "Setup", + "Workflow Engine": "Workflow Engine" +} \ No newline at end of file diff --git a/setup/doctype/workflow_rule/locale/de-doc.json b/setup/doctype/workflow_rule/locale/de-doc.json new file mode 100644 index 0000000000..7b5899498a --- /dev/null +++ b/setup/doctype/workflow_rule/locale/de-doc.json @@ -0,0 +1,23 @@ +{ + "Action Detail": "Aktion Details", + "Action html": "Aktion html", + "Active": "Aktiv", + "Define Rule": "Definieren Rule", + "Enter message": "Geben Sie eine Nachricht", + "Extra Condition": "Zus\u00e4tzliche Zustand", + "Inactive": "Inaktiv", + "Intro HTML": "Intro HTML", + "No": "Auf", + "Raise Exception": "Raise Exception", + "Reject HTML": "Ablehnen HTML", + "Rule Definition": "Rule Definition", + "Rule Name": "Name der Regel", + "Rule Priority": "Priority Rule", + "Rule Status": "Rule-Status", + "Select Form": "W\u00e4hlen Sie Formular", + "Setup": "Setup", + "Workflow Action Details": "Workflow Action Details", + "Workflow Rule": "Workflow-Regel", + "Workflow Rule Details": "Workflow Regeldetails", + "Yes": "Ja" +} \ No newline at end of file diff --git a/setup/doctype/workflow_rule_detail/locale/_messages_doc.json b/setup/doctype/workflow_rule_detail/locale/_messages_doc.json index b6b0ab54dc..befc8b7f49 100644 --- a/setup/doctype/workflow_rule_detail/locale/_messages_doc.json +++ b/setup/doctype/workflow_rule_detail/locale/_messages_doc.json @@ -1,14 +1,14 @@ [ "not equal", "Field from other forms", - "greater than equal", + "Operator", "Setup", "No", "equal", "greater than", "Field", "Value", - "Operator", + "greater than equal", "Raise Exception", "Yes", "less than equal", diff --git a/setup/doctype/workflow_rule_detail/locale/de-doc.json b/setup/doctype/workflow_rule_detail/locale/de-doc.json new file mode 100644 index 0000000000..a95a89e77f --- /dev/null +++ b/setup/doctype/workflow_rule_detail/locale/de-doc.json @@ -0,0 +1,18 @@ +{ + "Field": "Feld", + "Field from other forms": "Feld von anderen Formen", + "Message when Cond. False": "Nachricht Wenn Cond. Falsch", + "No": "Auf", + "Operator": "Operator", + "Raise Exception": "Raise Exception", + "Setup": "Setup", + "Value": "Wert", + "Workflow Rule Detail": "Workflow Rule Details", + "Yes": "Ja", + "equal": "gleich", + "greater than": "gr\u00f6\u00dfer als", + "greater than equal": "gr\u00f6\u00dfer gleich", + "less than": "weniger als", + "less than equal": "weniger als gleich", + "not equal": "ungleich" +} \ No newline at end of file diff --git a/setup/module_def/setup/locale/_messages_doc.json b/setup/module_def/setup/locale/_messages_doc.json index 1537348f64..956091c5e8 100644 --- a/setup/module_def/setup/locale/_messages_doc.json +++ b/setup/module_def/setup/locale/_messages_doc.json @@ -10,11 +10,11 @@ "Send regular summary reports via Email.", "Email settings for jobs email id \"jobs@example.com\"", "Email settings to extract Leads from sales email id e.g. \"sales@example.com\"", + "Classification of Customers by region", "Set prefix for numbering series on your transactions", "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.", "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.", "Permission Engine", "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.", - "Webforms", - "Classification of Customers by region" + "Webforms" ] \ No newline at end of file diff --git a/setup/module_def/setup/locale/de-doc.json b/setup/module_def/setup/locale/de-doc.json new file mode 100644 index 0000000000..8d317d11e3 --- /dev/null +++ b/setup/module_def/setup/locale/de-doc.json @@ -0,0 +1,19 @@ +{ + "**Currency** Master": "** W\u00e4hrung ** Meister", + "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.": "Ein Dritter Vertrieb / H\u00e4ndler / Kommission\u00e4r / affiliate / Vertragsh\u00e4ndler verkauft die Unternehmen Produkte f\u00fcr eine Provision.", + "All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.": "Alle Verk\u00e4ufe Transaktionen k\u00f6nnen gegen mehrere ** Umsatz Personen **, so dass Sie und \u00fcberwachen Ziele k\u00f6nnen markiert werden.", + "Classification of Customers by region": "Klassifizierung der Kunden nach Regionen", + "Email Settings for Outgoing and Incoming Emails.": "E-Mail-Einstellungen f\u00fcr ausgehende und eingehende E-Mails.", + "Email settings for jobs email id \"jobs@example.com\"": "E-Mail-Einstellungen f\u00fcr Jobs email id \"jobs@example.com\"", + "Email settings to extract Leads from sales email id e.g. \"sales@example.com\"": "E-Mail-Einstellungen zu extrahieren Leads aus dem Verkauf email id zB \"Sales@example.com\"", + "Item Classification": "Artikel Klassifizierung", + "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.": "Legal Entity / Tochtergesellschaft mit einem separaten Kontenplan Zugeh\u00f6rigkeit zu der Organisation.", + "Modules Setup": "Setup-Modules", + "Permission Engine": "Permission Motor", + "Price List Master": "Meister Preisliste", + "Send automatic emails to Contacts on Submitting transactions.": "Senden Sie automatische E-Mails an Kontakte auf Einreichen Transaktionen.", + "Send regular summary reports via Email.": "Senden regelm\u00e4\u00dfige zusammenfassende Berichte per E-Mail.", + "Set prefix for numbering series on your transactions": "Nummerierung einstellen Serie Pr\u00e4fix f\u00fcr Ihre Online-Transaktionen", + "Setup": "Setup", + "Webforms": "Webforms" +} \ No newline at end of file diff --git a/setup/page/setup/locale/de-js.json b/setup/page/setup/locale/de-js.json new file mode 100644 index 0000000000..6a2a1fdeb6 --- /dev/null +++ b/setup/page/setup/locale/de-js.json @@ -0,0 +1,61 @@ +{ + "Add custom code to forms": "F\u00fcgen Sie benutzerdefinierte Code Formen", + "Add fields to forms": "Hinzuf\u00fcgen von Feldern zu Formen", + "Add headers for standard print formats": "Hinzuf\u00fcgen von Kopf f\u00fcr Standard-Druckformate", + "Add/remove users, set roles, passwords etc": "Hinzuf\u00fcgen / Entfernen von Benutzern, Satz Rollen, etc. Passw\u00f6rter", + "Authorization Rule": "Autorisierungsregel", + "Branding and Printing": "Branding und Druck", + "Change background fonts etc": "\u00c4ndern Sie Hintergrund-Schriftarten etc", + "Change entry properties (hide fields, make mandatory etc)": "Eintrag \u00e4ndern Eigenschaften (hide Feldern machen obligatorischen etc)", + "Company": "Firma", + "Currency": "W\u00e4hrung", + "Custom Field": "Custom Field", + "Custom Script": "Custom Script", + "Customize": "Anpassen", + "Customize Form": "Formular anpassen", + "Daily, weekly, monthly email Digests": "T\u00e4glich Digests w\u00f6chentlich, monatlich E-Mail-", + "Data": "Daten", + "Data Import": "Datenimport", + "Email Digest": "Email Digest", + "Email Settings": "E-Mail-Einstellungen", + "Enable / disable currencies.": "Aktivieren / Deaktivieren der W\u00e4hrungen.", + "Extract Job Applicant from jobs email id e.g. jobs@example.com": "Auszug Bewerber aus Jobs E-Mail-ID beispielsweise jobs@example.com", + "Extract Leads from sales email id e.g. sales@example.com": "Auszug Leads aus dem Verkauf email id beispielsweise sales@example.com", + "Features Setup": "Features Setup", + "Financial Years for books of accounts": "Gesch\u00e4ftsjahre B\u00fccher von Konten", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Global Defaults": "Globale Defaults", + "HTML print formats for quotes, invoices etc": "HTML Druckformate f\u00fcr Angebote, Rechnungen etc", + "Import data from spreadsheet (csv) files": "Importieren von Daten aus Tabellen (csv-Dateien)", + "Jobs Email Settings": "Jobs per E-Mail Einstellungen", + "Letter Head": "Briefkopf", + "Letter heads for print": "Briefk\u00f6pfe f\u00fcr Print", + "List of companies (not customers / suppliers)": "Liste der Unternehmen (keine Kunden / Lieferanten)", + "Manage numbering series": "Verwalten Nummerierung Serie", + "Notification Control": "Meldungssteuervorrichtung", + "Organization": "Organisation", + "Out going mail server and support ticket mailbox": "Fahren Sie Mail-Server und Mailbox Support-Ticket", + "Permission Manager": "Permission Manager", + "Print Format": "Drucken Format", + "Print Heading": "Unterwegs drucken", + "Profile": "Profil", + "Prompt email sending to customers and suppliers": "Prompt Mail senden an Kunden und Lieferanten", + "Restrict submission rights based on amount": "Beschr\u00e4nken Einreichung Rechte nach Betrag", + "SMS Center": "SMS Center", + "SMS Settings": "SMS-Einstellungen", + "Sales Email Settings": "Vertrieb E-Mail-Einstellungen", + "Send bulk SMS to leads, customers, contacts": "Senden Sie Massen-SMS, um Leads, Kunden, Kontakte", + "Set default values for entry": "Standardwerte f\u00fcr die Einreise", + "Set default values for users (also used for permissions).": "Standardwerte f\u00fcr die Benutzer (auch f\u00fcr Berechtigungen verwendet).", + "Set multiple numbering series for transactions": "Set Nummerierung Serie f\u00fcr mehrere Transaktionen", + "Set permissions on transactions / masters": "Festlegen von Berechtigungen f\u00fcr Transaktionen / masters", + "Set workflow rules.": "Stellen Sie Workflow-Regeln.", + "Setup outgoing SMS via your bulk SMS provider": "Richten ausgehende SMS \u00fcber Ihre Massen-SMS-Anbieter", + "Show / Hide Modules": "Show / Hide Modules", + "Show, hide modules": "Anzeigen, Ausblenden Modulen", + "Simplify entry forms by disabling features": "Vereinfachen Anmeldeformulare durch Deaktivieren von Funktionen", + "Style Settings": "Style Einstellungen", + "User Properties": "User Properties", + "Users": "Benutzer", + "Workfow": "Workfow" +} \ No newline at end of file diff --git a/startup/__init__.py b/startup/__init__.py index 05f95a8b45..5bc86df190 100644 --- a/startup/__init__.py +++ b/startup/__init__.py @@ -23,6 +23,7 @@ import webnotes lang_names = { "हिंदी": "hi", + "deutsch": "de", "english": "en", "español": "es", "français": "fr", @@ -36,7 +37,7 @@ lang_names = { "العربية":"ar" } -lang_list = ["ar", "en", "hi", "es", "fr", "pt-BR", "pt", "nl", "hr", "th"] +lang_list = ["ar", "de", "en", "hi", "es", "fr", "pt-BR", "pt", "nl", "hr", "th"] product_name = "ERPNext" profile_defaults = { @@ -67,4 +68,4 @@ def get_url(): if subdomain: if "http" not in subdomain: url = "http://" + subdomain - return url \ No newline at end of file + return url diff --git a/stock/doctype/batch/locale/de-doc.json b/stock/doctype/batch/locale/de-doc.json new file mode 100644 index 0000000000..1fe0465145 --- /dev/null +++ b/stock/doctype/batch/locale/de-doc.json @@ -0,0 +1,11 @@ +{ + "Batch": "Stapel", + "Batch Finished Date": "Batch Beendet Datum", + "Batch ID": "Batch ID", + "Batch Started Date": "Batch gestartet Datum", + "Description": "Beschreibung", + "Expiry Date": "Verfallsdatum", + "Item": "Artikel", + "Stock": "Lager", + "Trash Reason": "Trash Reason" +} \ No newline at end of file diff --git a/stock/doctype/bin/locale/_messages_doc.json b/stock/doctype/bin/locale/_messages_doc.json index 0f8c573239..be46b3a02d 100644 --- a/stock/doctype/bin/locale/_messages_doc.json +++ b/stock/doctype/bin/locale/_messages_doc.json @@ -6,9 +6,9 @@ "Projected Qty", "Stock Value", "Ordered Quantity", + "Warehouse", "Warehouse Type", "Actual Quantity", - "Warehouse", "Reserved Quantity", "Valuation Rate", "Quantity Requested for Purchase", diff --git a/stock/doctype/bin/locale/de-doc.json b/stock/doctype/bin/locale/de-doc.json new file mode 100644 index 0000000000..c2f4598184 --- /dev/null +++ b/stock/doctype/bin/locale/de-doc.json @@ -0,0 +1,18 @@ +{ + "Actual Quantity": "Tats\u00e4chliche Menge", + "Bin": "Kasten", + "FCFS Rate": "FCFS Rate", + "Item Code": "Item Code", + "Moving Average Rate": "Moving Average Rate", + "Ordered Quantity": "Bestellte Menge", + "Planned Qty": "Geplante Menge", + "Projected Qty": "Prognostizierte Anzahl", + "Quantity Requested for Purchase": "Beantragten Menge f\u00fcr Kauf", + "Reserved Quantity": "Reserviert Menge", + "Stock": "Lager", + "Stock Value": "Bestandswert", + "UOM": "UOM", + "Valuation Rate": "Valuation bewerten", + "Warehouse": "Lager", + "Warehouse Type": "Warehouse Typ" +} \ No newline at end of file diff --git a/stock/doctype/delivery_note/locale/_messages_doc.json b/stock/doctype/delivery_note/locale/_messages_doc.json index 1144a685f4..4578016c24 100644 --- a/stock/doctype/delivery_note/locale/_messages_doc.json +++ b/stock/doctype/delivery_note/locale/_messages_doc.json @@ -30,7 +30,6 @@ "Date on which lorry started from your warehouse", "The date at which current entry will get or has actually executed.", "More Info", - "Draft", "Posting Time", "To Warehouse", "Grand Total (Export)", @@ -70,6 +69,7 @@ "Rounded Total (Export)", "Totals", "In Words (Export)", + "Draft", "Cancel Reason", "Select the currency in which price list is maintained", "Terms and Conditions HTML", diff --git a/stock/doctype/delivery_note/locale/de-doc.json b/stock/doctype/delivery_note/locale/de-doc.json new file mode 100644 index 0000000000..e1fdee35b2 --- /dev/null +++ b/stock/doctype/delivery_note/locale/de-doc.json @@ -0,0 +1,122 @@ +{ + "% Amount Billed": "% Rechnungsbetrag", + "% Installed": "% Installierte", + "% of materials billed against this Delivery Note": "% Der Materialien gegen diese Lieferschein abgerechnet", + "% of materials delivered against this Delivery Note": "% Der Materialien gegen diese Lieferschein", + "Advertisement": "Anzeige", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Billing Status": "Billing-Status", + "Calculate Charges": "Berechnen Sie Geb\u00fchren", + "Campaign": "Kampagne", + "Cancel Reason": "Abbrechen Reason", + "Cancelled": "Abgesagt", + "Challan Date": "Challan Datum", + "Challan No": "Challan Nein", + "Cold Calling": "Cold Calling", + "Commission Rate (%)": "Kommission Rate (%)", + "Company": "Firma", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Conversion Rate": "Conversion Rate", + "Currency": "W\u00e4hrung", + "Customer": "Kunde", + "Customer Group": "Customer Group", + "Customer Name": "Name des Kunden", + "Customer's Currency": "Kunden W\u00e4hrung", + "Customer's Vendor": "Kunden Hersteller", + "DN": "DN", + "Date on which lorry started from your warehouse": "Datum, an dem Lkw begann von Ihrem Lager", + "Delivery Note": "Lieferschein", + "Delivery Note Items": "Lieferscheinpositionen", + "Draft": "Entwurf", + "Excise Page Number": "Excise Page Number", + "Exhibition": "Ausstellung", + "Existing Customer": "Bestehende Kunden", + "File List": "Dateiliste", + "Filling in Additional Information about the Delivery Note will help you analyze your data better.": "Ausf\u00fcllen Zus\u00e4tzliche Informationen \u00fcber den Lieferschein wird Ihnen helfen, Ihre Daten analysieren besser.", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Fully Billed": "Voll Billed", + "Get Items": "Holen Artikel", + "Get Taxes and Charges": "Holen Steuern und Abgaben", + "Get Terms and Conditions": "Holen AGB", + "Grand Total": "Grand Total", + "Grand Total (Export)": "Grand Total (Export)", + "If you have created a standard template in Sales Taxes and Charges Master, select one and click on the button below.": "Wenn Sie ein Standard-Template in Sales Steuern und Abgaben Meister erstellt haben, w\u00e4hlen Sie eine aus und klicken Sie auf den Button unten.", + "In Words": "In Worte", + "In Words (Export)": "In Words (Export)", + "In Words (Export) will be visible once you save the Delivery Note.": "In Words (Export) werden sichtbar, sobald Sie den Lieferschein zu speichern.", + "In Words will be visible once you save the Delivery Note.": "In Worte sichtbar sein wird, sobald Sie den Lieferschein zu speichern.", + "Installation Status": "Installation Status", + "Instructions": "Anleitung", + "Items": "Artikel", + "LR Date": "LR Datum", + "LR No": "In LR", + "Letter Head": "Briefkopf", + "Mass Mailing": "Mass Mailing", + "Mobile No": "In Mobile", + "More Info": "Mehr Info", + "Net Total*": "* Net Total", + "Not Billed": "Nicht Billed", + "P.O. Date": "P.O. Datum", + "P.O. No": "In P.O.", + "Packing Details": "Verpackungs-Details", + "Packing List": "Packliste", + "Partly Billed": "Teilweise Billed", + "Posting Date": "Buchungsdatum", + "Posting Time": "Posting Zeit", + "Price List": "Preisliste", + "Price List Currency": "W\u00e4hrung Preisliste", + "Price List Currency Conversion Rate": "Preisliste Currency Conversion Rate", + "Price List and Currency": "Listenpreis und W\u00e4hrungsrechner", + "Print Without Amount": "Drucken ohne Amount", + "Project Name": "Project Name", + "Rate at which Price list currency is converted to company's base currency": "Geschwindigkeit, mit der W\u00e4hrung der Preisliste zu Unternehmen der Basisw\u00e4hrung umgewandelt wird", + "Rate at which customer's currency is converted to company's base currency": "Rate, mit der Kunden W\u00e4hrung ist an Unternehmen Basisw\u00e4hrung umgerechnet", + "Re-Calculate Values": "Neu berechnen Werte", + "Reference": "Referenz", + "Required only for sample item.": "Nur erforderlich f\u00fcr die Probe Element.", + "Rounded Total": "Abgerundete insgesamt", + "Rounded Total (Export)": "Abgerundete Total (Export)", + "Sales BOM Help": "Vertrieb BOM Hilfe", + "Sales Order No": "In Sales Order", + "Sales Partner": "Vertriebspartner", + "Sales Taxes and Charges": "Vertrieb Steuern und Abgaben", + "Sales Team": "Sales Team", + "Sales Team1": "Vertrieb Team1", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Select Shipping Address": "W\u00e4hlen Versandadresse", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the currency in which price list is maintained": "W\u00e4hlen Sie die W\u00e4hrung, in der Preisliste wird beibehalten", + "Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.": "W\u00e4hlen Sie die Preisliste in der \"Preisliste\" Master eingetragen. Dadurch werden die Referenzkurse Artikel gegen diese Preisliste in der \"Item\" Master vorgegeben ziehen.", + "Select the relevant company name if you have multiple companies": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben", + "Series": "Serie", + "Shipping Address": "Versandadresse", + "Source": "Quelle", + "Status": "Status", + "Stock": "Lager", + "Submitted": "Eingereicht", + "Supplier Reference": "Lieferant Reference", + "Taxes": "Steuern", + "Taxes and Charges": "Steuern und Abgaben", + "Taxes and Charges Calculation": "Steuern und Geb\u00fchren Berechnung", + "Taxes and Charges Total": "Steuern und Geb\u00fchren gesamt", + "Terms and Conditions": "AGB", + "Terms and Conditions Details": "AGB Einzelheiten", + "Terms and Conditions HTML": "AGB HTML", + "Territory": "Gebiet", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "Time at which items were delivered from warehouse": "Zeit, mit dem Gegenst\u00e4nde wurden aus dem Lager geliefert", + "To Warehouse": "Um Warehouse", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Total Commission": "Gesamt Kommission", + "Totals": "Totals", + "Track this Delivery Note against any Project": "Verfolgen Sie diesen Lieferschein gegen Projekt", + "Transporter Info": "Transporter Info", + "Transporter Name": "Transporter Namen", + "Transporter lorry number": "Transporter Lkw-Zahl", + "You can make a delivery note from multiple sales orders. Select sales orders one by one and click on the button below.": "Sie k\u00f6nnen einen Lieferschein aus mehreren Auftr\u00e4gen zu machen. W\u00e4hlen Sie Auftr\u00e4ge nacheinander aus und klicken Sie auf den Button unten." +} \ No newline at end of file diff --git a/stock/doctype/delivery_note_item/locale/de-doc.json b/stock/doctype/delivery_note_item/locale/de-doc.json new file mode 100644 index 0000000000..a28c85dd47 --- /dev/null +++ b/stock/doctype/delivery_note_item/locale/de-doc.json @@ -0,0 +1,33 @@ +{ + "Against Document Date": "Gegen Dokument Datum", + "Against Document Detail No": "Vor Document Detailaufnahme", + "Against Document No": "Gegen Dokument Nr.", + "Amount": "Menge", + "Amount*": "Betrag *", + "Available Qty at Warehouse": "Verf\u00fcgbare Menge bei Warehouse", + "Barcode": "Strichcode", + "Batch No": "Batch No", + "Billed Amt": "Billed Amt", + "Brand Name": "Markenname", + "Customer's Item Code": "Kunden Item Code", + "Delivery Note Item": "Lieferscheinposition", + "Description": "Beschreibung", + "Discount (%)": "Rabatt (%)", + "Document Type": "Document Type", + "Installed Qty": "Installierte Anzahl", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Item Tax Rate": "Artikel Tax Rate", + "Packed Quantity": "Verpackt Menge", + "Page Break": "Seitenwechsel", + "Price List Rate": "Preis List", + "Price List Rate*": "Preis List *", + "Quantity": "Menge", + "Rate": "Rate", + "Rate*": "Rate *", + "Serial No": "Serial In", + "Stock": "Lager", + "UOM": "UOM", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/delivery_note_packing_item/locale/_messages_doc.json b/stock/doctype/delivery_note_packing_item/locale/_messages_doc.json index 9b4a7693e3..cbe4526c17 100644 --- a/stock/doctype/delivery_note_packing_item/locale/_messages_doc.json +++ b/stock/doctype/delivery_note_packing_item/locale/_messages_doc.json @@ -6,9 +6,9 @@ "UOM", "Qty", "Serial No", + "Warehouse", "Batch No", "Prevdoc DocType", - "Warehouse", "Parent Detail docname", "Projected Qty", "Delivery Note Packing Item", diff --git a/stock/doctype/delivery_note_packing_item/locale/de-doc.json b/stock/doctype/delivery_note_packing_item/locale/de-doc.json new file mode 100644 index 0000000000..d8a5a4248e --- /dev/null +++ b/stock/doctype/delivery_note_packing_item/locale/de-doc.json @@ -0,0 +1,18 @@ +{ + "Actual Qty": "Tats\u00e4chliche Menge", + "Batch No": "Batch No", + "Delivery Note Packing Item": "Lieferschein Verpackung Artikel", + "Description": "Beschreibung", + "Item Code": "Item Code", + "Item Name": "Item Name", + "Page Break": "Seitenwechsel", + "Parent Detail docname": "Eltern Detailansicht docname", + "Parent Item": "\u00dcbergeordneter Artikel", + "Prevdoc DocType": "Prevdoc DocType", + "Projected Qty": "Prognostizierte Anzahl", + "Qty": "Menge", + "Serial No": "Serial In", + "Stock": "Lager", + "UOM": "UOM", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/featured_item/locale/de-doc.json b/stock/doctype/featured_item/locale/de-doc.json new file mode 100644 index 0000000000..0ab4a0e2a3 --- /dev/null +++ b/stock/doctype/featured_item/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Featured Item": "Feature-Produkt", + "Featured Item in Item Group": "Feature-Produkt bei Posten Gruppe", + "Item": "Artikel", + "Stock": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/item/locale/_messages_doc.json b/stock/doctype/item/locale/_messages_doc.json index fc6555f4d0..b99c63eaa0 100644 --- a/stock/doctype/item/locale/_messages_doc.json +++ b/stock/doctype/item/locale/_messages_doc.json @@ -70,11 +70,11 @@ "Default Purchase Account in which cost of the item will be debited.", "Allow Samples", "Quality Inspection Parameters", - "Selecting \"Yes\" will allow you to make a Production Order for this item.", "Re-Order Qty", "Manufacturer", "Show a slideshow at the top of the page", "Lead Time Days", + "Selecting \"Yes\" will allow you to make a Production Order for this item.", "Item Group", "Unit of measurement of this item (e.g. Kg, Unit, No, Pair).", "Generate Description HTML", diff --git a/stock/doctype/item/locale/de-doc.json b/stock/doctype/item/locale/de-doc.json new file mode 100644 index 0000000000..1954699a82 --- /dev/null +++ b/stock/doctype/item/locale/de-doc.json @@ -0,0 +1,116 @@ +{ + "Manage Item Groups": " Artikel Gruppen verwalten ", + "A Product or a Service that is bought, sold or kept in stock.": "Ein Produkt oder eine Dienstleistung, die gekauft, verkauft oder gehalten auf Lager.", + "Allow Bill of Materials": "Lassen Bill of Materials", + "Allow Production Order": "Lassen Fertigungsauftrag", + "Allow Samples": "Lassen Proben", + "Allowance Percent": "Allowance Prozent", + "Barcode": "Strichcode", + "Brand": "Marke", + "Buying Cost": "Kauf Cost", + "Buying Cost will be updated from Purchase Orders and Purchase Receipts.
    The buying cost will calculated by moving average method.": "Buying Kosten werden von Bestellungen und Einnahmen aktualisiert werden.
    Der Kauf Kosten werden vom gleitenden Durchschnitt berechnet.", + "Cost Center": "Kostenstellenrechnung", + "Create a price list from Price List master and enter standard ref rates against each of them. On selection of a price list in Quotation, Sales Order or Delivery Note, corresponding ref rate will be fetched for this item.": "Erstellen Sie eine Preisliste von Preisliste Master und geben Sie Standard-ref Preise gegen jeden von ihnen. Bei Auswahl einer Preisliste Angebot, Auftrag oder Lieferschein, werden entsprechende ref f\u00fcr dieser Artikel abgeholt werden.", + "Customer Code": "Customer Code", + "Customer Codes": "Kunde Codes", + "Default BOM": "Standard BOM", + "Default Cost Center": "Standard Kostenstelle", + "Default Cost Center for tracking expense for this item.": "Standard Cost Center for Tracking Kosten f\u00fcr diesen Artikel.", + "Default Expense Account": "Standard Expense Konto", + "Default Income Account": "Standard Income Konto", + "Default Purchase Account in which cost of the item will be debited.": "Standard Purchase Konto in dem Preis des Artikels wird abgebucht.", + "Default Reserved Warehouse": "Standard Reserved Warehouse", + "Default Unit of Measure": "Standard-Ma\u00dfeinheit", + "Description": "Beschreibung", + "Description HTML": "Beschreibung HTML", + "End of Life": "End of Life", + "FIFO": "FIFO", + "File List": "Dateiliste", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "F\u00fcr die Bequemlichkeit der Kunden, k\u00f6nnen diese Codes in Druckformate wie Rechnungen und Lieferscheine werden", + "Generate Description HTML": "Generieren Beschreibung HTML", + "Generates HTML to include selected image in the description": "Erzeugt HTML ausgew\u00e4hlte Bild sind in der Beschreibung", + "Has Batch No": "Hat Batch No", + "Has Serial No": "Hat Serial No", + "Image": "Bild", + "Image View": "Bild anzeigen", + "Inspection Criteria": "Pr\u00fcfkriterien", + "Inspection Required": "Inspektion erforderlich", + "Inventory": "Inventar", + "Is Asset Item": "Ist Aktivposition", + "Is Purchase Item": "Ist Kaufsache", + "Is Sales Item": "Ist Verkaufsartikel", + "Is Service Item": "Ist Service Item", + "Is Stock Item": "Ist Stock Item", + "Is Sub Contracted Item": "Ist Sub Vertragsgegenstand", + "Item": "Artikel", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Image (if not slideshow)": "Item Image (wenn nicht Diashow)", + "Item Name": "Item Name", + "Item Prices": "Produkt Preise", + "Item Quality Inspection Parameter": "Qualit\u00e4tspr\u00fcfung Artikel Parameter", + "Item Supplier Details": "Artikel Supplier Details", + "Item Tax": "MwSt. Artikel", + "Item Tax1": "Artikel Tax1", + "Item Website Specifications": "Artikel Spezifikationen Webseite", + "Item will be saved by this name in the data base.": "Einzelteil wird mit diesem Namen in der Datenbank gespeichert werden.", + "Last Purchase Rate": "Last Purchase Rate", + "Lead Time Days": "Lead Time Tage", + "Lead Time days is number of days by which this item is expected in your warehouse. This days is fetched in Material Request when you select this item.": "Lead Time Tage ist die Anzahl der Tage, um die diesen Artikel in Ihrem Lager zu erwarten ist. Diese geholt Tage in Material anfordern Wenn Sie diese Option ausw\u00e4hlen.", + "List this Item in multiple groups on the website.": "Liste Diesen Artikel in mehrere Gruppen auf der Website.", + "Mandatory if Stock Item is \"Yes\"": "Stock Item ist obligatorisch, wenn Sie \"Ja\"", + "Manufacturer": "Hersteller", + "Manufacturer Part Number": "Hersteller-Teilenummer", + "Manufacturing": "Herstellung", + "Max Discount (%)": "Discount Max (%)", + "Minimum Order Qty": "Minimale Bestellmenge", + "Moving Average": "Moving Average", + "Net Weight": "Nettogewicht", + "Net Weight of each Item": "Nettogewicht der einzelnen Artikel", + "No": "Auf", + "Notify by Email on Re-order": "Benachrichtigen Sie per E-Mail auf Re-order", + "Page Name": "Page Name", + "Percentage variation in quantity to be allowed while receiving or delivering this item.": "Prozentuale Ver\u00e4nderung in der Menge zu d\u00fcrfen w\u00e4hrend des Empfangs oder der Lieferung diesen Artikel werden.", + "Price Lists and Rates": "Preislisten und Preise", + "Products will be sorted by weight-age in default searches. More the weight-age, higher the product will appear in the list.": "Die Produkte werden Gew.-age in Verzug Suchbegriffe sortiert werden. Mehr das Gewicht-Alter, wird das Produkt h\u00f6her erscheinen in der Liste.", + "Purchase Details": "Kaufinformationen", + "Quality Inspection Parameters": "Qualit\u00e4tspr\u00fcfung Parameter", + "Re-Order Level": "Re-Order Stufe", + "Re-Order Qty": "Re-Order Menge", + "Re-order": "Re-Order", + "Sales Details": "Sales Details", + "Sales Rate": "Vertrieb bewerten", + "Select \"Yes\" if this item is to be sent to a customer or received from a supplier as a sample. Delivery notes and Purchase Receipts will update stock levels but there will be no invoice against this item.": "W\u00e4hlen Sie \"Ja\", wenn dieser Punkt ist es, an den Kunden gesendet oder empfangen werden vom Lieferanten auf die Probe. Lieferscheine und Kaufbelege werden aktualisiert Lagerbest\u00e4nde, aber es wird auf der Rechnung vor diesem Element sein.", + "Select \"Yes\" if this item is used for some internal purpose in your company.": "W\u00e4hlen Sie \"Ja\", wenn dieser Punkt f\u00fcr einige interne Zwecke in Ihrem Unternehmen verwendet wird.", + "Select \"Yes\" if this item represents some work like training, designing, consulting etc.": "W\u00e4hlen Sie \"Ja\", wenn dieser Artikel stellt einige Arbeiten wie Ausbildung, Gestaltung, Beratung etc..", + "Select \"Yes\" if you are maintaining stock of this item in your Inventory.": "W\u00e4hlen Sie \"Ja\", wenn Sie Pflege stock dieses Artikels in Ihrem Inventar.", + "Select \"Yes\" if you supply raw materials to your supplier to manufacture this item.": "W\u00e4hlen Sie \"Ja\", wenn Sie Rohstoffe an Ihren Lieferanten liefern, um diesen Artikel zu fertigen.", + "Selecting \"Yes\" will allow this item to appear in Purchase Order , Purchase Receipt.": "W\u00e4hlen Sie \"Ja\" k\u00f6nnen diesen Artikel in Bestellung, Kaufbeleg erscheinen.", + "Selecting \"Yes\" will allow this item to figure in Sales Order, Delivery Note": "W\u00e4hlen Sie \"Ja\" k\u00f6nnen diesen Artikel in Sales Order herauszufinden, Lieferschein", + "Selecting \"Yes\" will allow you to create Bill of Material showing raw material and operational costs incurred to manufacture this item.": "W\u00e4hlen Sie \"Ja\" erm\u00f6glicht es Ihnen, Bill of Material zeigt Rohstoffe und Betriebskosten anfallen, um diesen Artikel herzustellen erstellen.", + "Selecting \"Yes\" will allow you to make a Production Order for this item.": "W\u00e4hlen Sie \"Ja\" erm\u00f6glicht es Ihnen, einen Fertigungsauftrag f\u00fcr diesen Artikel machen.", + "Selecting \"Yes\" will give a unique identity to each entity of this item which can be viewed in the Serial No master.": "W\u00e4hlen Sie \"Ja\" wird eine einzigartige Identit\u00e4t zu jeder Einheit dieses Artikels, die in der Serial No Master eingesehen werden kann geben.", + "Send an email to users of role \"Material Manager\" and \"Purchase Manager\" when re-order level is crossed.": "Senden Sie eine E-Mail an Benutzer der Rolle \"Material Manager\" und \"Purchase Manager\", wenn re-order-Ebene \u00fcberschritten wird.", + "Show \"In Stock\" or \"Not in Stock\" based on stock available in this warehouse.": "Anzeigen \"Im Lager\" oder \"Nicht auf Lager\", basierend auf verf\u00fcgbaren Bestand in diesem Lager.", + "Show Price in Website (if set)": "Zeige Preis in Website (wenn eingestellt)", + "Show a slideshow at the top of the page": "Zeige die Slideshow an der Spitze der Seite", + "Show in Website": "Zeigen Sie im Website", + "Slideshow": "Slideshow", + "Standard Rate": "Standardpreis", + "Stock": "Lager", + "UOM Conversion Details": "UOM Conversion Einzelheiten", + "Unit of measurement of this item (e.g. Kg, Unit, No, Pair).": "Ma\u00dfeinheit f\u00fcr diesen Artikel (zB kg, Einheit, Nein, Pair).", + "Valuation Method": "Valuation Method", + "Warehouse-wise Item Reorder": "Warehouse-weise Artikel Reorder", + "Warranty Period (in days)": "Gew\u00e4hrleistungsfrist (in Tagen)", + "Website": "Webseite", + "Website Description": "Website Beschreibung", + "Website Item Groups": "Website Artikelgruppen", + "Website Price List": "Website Preisliste", + "Website Warehouse": "Website Warehouse", + "Weight UOM": "Gewicht UOM", + "Weightage": "Gewichtung", + "Yes": "Ja", + "You can enter the minimum quantity of this item to be ordered.": "Sie k\u00f6nnen die minimale Menge von diesem Artikel bestellt werden.", + "website page link": "Website-Link" +} \ No newline at end of file diff --git a/stock/doctype/item_customer_detail/locale/de-doc.json b/stock/doctype/item_customer_detail/locale/de-doc.json new file mode 100644 index 0000000000..8fe72c0f77 --- /dev/null +++ b/stock/doctype/item_customer_detail/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Customer Name": "Name des Kunden", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "F\u00fcr die Bequemlichkeit der Kunden, k\u00f6nnen diese Codes in Druckformate wie Rechnungen und Lieferscheine werden", + "Item Customer Detail": "Artikel Kundenrezensionen", + "Ref Code": "Ref Code", + "Stock": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/item_price/locale/de-doc.json b/stock/doctype/item_price/locale/de-doc.json new file mode 100644 index 0000000000..3557e398b7 --- /dev/null +++ b/stock/doctype/item_price/locale/de-doc.json @@ -0,0 +1,11 @@ +{ + "Allow this price in purchase related forms": "Lassen Sie diesen Preis in Kauf verwandten Formen", + "Allow this price in sales related forms": "Lassen Sie diesen Preis im Vertrieb verwandte Formen", + "Currency": "W\u00e4hrung", + "For Buying": "F\u00fcr den Kauf", + "For Selling": "F\u00fcr den Verkauf", + "Item Price": "Artikel Preis", + "Price List Name": "Preis Name", + "Ref Rate": "Ref Rate", + "Stock": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/item_quality_inspection_parameter/locale/_messages_doc.json b/stock/doctype/item_quality_inspection_parameter/locale/_messages_doc.json index 19539e5eec..342c934b63 100644 --- a/stock/doctype/item_quality_inspection_parameter/locale/_messages_doc.json +++ b/stock/doctype/item_quality_inspection_parameter/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Item Quality Inspection Parameter", "Parameter", "Acceptance Criteria", + "Item Quality Inspection Parameter", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/item_quality_inspection_parameter/locale/de-doc.json b/stock/doctype/item_quality_inspection_parameter/locale/de-doc.json new file mode 100644 index 0000000000..81bd71519f --- /dev/null +++ b/stock/doctype/item_quality_inspection_parameter/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Acceptance Criteria": "Akzeptanzkriterien", + "Item Quality Inspection Parameter": "Qualit\u00e4tspr\u00fcfung Artikel Parameter", + "Parameter": "Parameter", + "Stock": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/item_reorder/locale/_messages_doc.json b/stock/doctype/item_reorder/locale/_messages_doc.json index b20242c72b..ddea0706fc 100644 --- a/stock/doctype/item_reorder/locale/_messages_doc.json +++ b/stock/doctype/item_reorder/locale/_messages_doc.json @@ -3,8 +3,8 @@ "Re-order Level", "Material Request Type", "Item Reorder", - "Transfer", "Warehouse", + "Transfer", "Re-order Qty", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/item_reorder/locale/de-doc.json b/stock/doctype/item_reorder/locale/de-doc.json new file mode 100644 index 0000000000..1ab57fbf06 --- /dev/null +++ b/stock/doctype/item_reorder/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "Item Reorder": "Artikel Reorder", + "Material Request Type": "Material Request Type", + "Purchase": "Kaufen", + "Re-order Level": "Re-Order-Ebene", + "Re-order Qty": "Re-Bestellung Menge", + "Stock": "Lager", + "Transfer": "\u00dcbertragen", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/item_supplier/locale/de-doc.json b/stock/doctype/item_supplier/locale/de-doc.json new file mode 100644 index 0000000000..9528a86e45 --- /dev/null +++ b/stock/doctype/item_supplier/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Item Supplier": "Artikel Lieferant", + "Stock": "Lager", + "Supplier": "Lieferant", + "Supplier Part Number": "Lieferant Teilenummer" +} \ No newline at end of file diff --git a/stock/doctype/item_tax/locale/_messages_doc.json b/stock/doctype/item_tax/locale/_messages_doc.json index c747156eaf..6bdd87ef25 100644 --- a/stock/doctype/item_tax/locale/_messages_doc.json +++ b/stock/doctype/item_tax/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Tax", "Tax Rate", + "Tax", "Item Tax", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/item_tax/locale/de-doc.json b/stock/doctype/item_tax/locale/de-doc.json new file mode 100644 index 0000000000..606613d621 --- /dev/null +++ b/stock/doctype/item_tax/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Item Tax": "MwSt. Artikel", + "Stock": "Lager", + "Tax": "Steuer", + "Tax Rate": "Tax Rate" +} \ No newline at end of file diff --git a/stock/doctype/item_website_specification/locale/de-doc.json b/stock/doctype/item_website_specification/locale/de-doc.json new file mode 100644 index 0000000000..8660ced698 --- /dev/null +++ b/stock/doctype/item_website_specification/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Description": "Beschreibung", + "Item Website Specification": "Artikelbeschreibung Webseite", + "Label": "Etikett", + "Stock": "Lager", + "Table for Item that will be shown in Web Site": "Tabelle f\u00fcr Artikel, die in Web-Site angezeigt werden" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_item/locale/de-doc.json b/stock/doctype/landed_cost_item/locale/de-doc.json new file mode 100644 index 0000000000..77b4d9869f --- /dev/null +++ b/stock/doctype/landed_cost_item/locale/de-doc.json @@ -0,0 +1,7 @@ +{ + "Account Head": "Konto Leiter", + "Amount": "Menge", + "Description": "Beschreibung", + "Landed Cost Item": "Landed Cost Artikel", + "Stock": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_purchase_receipt/locale/_messages_doc.json b/stock/doctype/landed_cost_purchase_receipt/locale/_messages_doc.json index 0a4b18ed36..d975f2d930 100644 --- a/stock/doctype/landed_cost_purchase_receipt/locale/_messages_doc.json +++ b/stock/doctype/landed_cost_purchase_receipt/locale/_messages_doc.json @@ -1,6 +1,6 @@ [ - "Landed Cost Purchase Receipt", "Select PR", + "Landed Cost Purchase Receipt", "Purchase Receipt", "Stock" ] \ No newline at end of file diff --git a/stock/doctype/landed_cost_purchase_receipt/locale/de-doc.json b/stock/doctype/landed_cost_purchase_receipt/locale/de-doc.json new file mode 100644 index 0000000000..13d08eda1b --- /dev/null +++ b/stock/doctype/landed_cost_purchase_receipt/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Landed Cost Purchase Receipt": "Landed Cost Kaufbeleg", + "Purchase Receipt": "Kaufbeleg", + "Select PR": "Select PR", + "Stock": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/landed_cost_wizard/locale/de-doc.json b/stock/doctype/landed_cost_wizard/locale/de-doc.json new file mode 100644 index 0000000000..464781cb15 --- /dev/null +++ b/stock/doctype/landed_cost_wizard/locale/de-doc.json @@ -0,0 +1,12 @@ +{ + "Currency": "W\u00e4hrung", + "From PR Date": "Von PR Datum", + "Get Purchase Receipt": "Holen Kaufbeleg", + "Landed Cost Items": "Landed Cost Artikel", + "Landed Cost Purchase Receipts": "Landed Cost Kaufbelege", + "Landed Cost Wizard": "Landed Cost Wizard", + "Process": "Prozess", + "Stock": "Lager", + "To PR Date": "Um PR Datum", + "Update PR": "Update PR" +} \ No newline at end of file diff --git a/stock/doctype/material_request/locale/_messages_doc.json b/stock/doctype/material_request/locale/_messages_doc.json index 6227d2f6e2..b33ac31a8b 100644 --- a/stock/doctype/material_request/locale/_messages_doc.json +++ b/stock/doctype/material_request/locale/_messages_doc.json @@ -5,6 +5,7 @@ "Material Request Type", "IDT", "Material Request", + "Draft", "Select Print Heading", "Stock", "Status", @@ -16,7 +17,6 @@ "File List", "Add Terms and Conditions for the Material Request. You can also prepare a Terms and Conditions Master and use the Template", "Transfer", - "Remarks", "Sales Order No", "Filing in Additional Information about the Material Request will help you analyze your data better.", "One or multiple Sales Order no which generated this Material Request", @@ -25,6 +25,7 @@ "Items", "Pull Sales Order Items", "Submitted", + "Remarks", "Fiscal Year", "Stopped", "Cancelled", @@ -39,6 +40,5 @@ "The date at which current entry is corrected in the system.", "More Info", "MREQ-", - "Draft", "Terms and Conditions Content" ] \ No newline at end of file diff --git a/stock/doctype/material_request/locale/de-doc.json b/stock/doctype/material_request/locale/de-doc.json new file mode 100644 index 0000000000..e6fa300d05 --- /dev/null +++ b/stock/doctype/material_request/locale/de-doc.json @@ -0,0 +1,37 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Cancelled": "Abgesagt", + "Company": "Firma", + "Draft": "Entwurf", + "File List": "Dateiliste", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Get Terms and Conditions": "Holen AGB", + "IDT": "IDT", + "Items": "Artikel", + "Letter Head": "Briefkopf", + "Material Request": "Material anfordern", + "Material Request Items": "Material anfordern Artikel", + "Material Request Type": "Material Request Type", + "More Info": "Mehr Info", + "Pull Sales Order Items": "Ziehen Sie Sales Order Artikel", + "Purchase": "Kaufen", + "Remarks": "Bemerkungen", + "Requested By": "Angefordert von", + "Sales Order No": "In Sales Order", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the relevant company name if you have multiple companies": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben", + "Series": "Serie", + "Status": "Status", + "Stock": "Lager", + "Stopped": "Gestoppt", + "Submitted": "Eingereicht", + "Terms and Conditions": "AGB", + "Terms and Conditions Content": "AGB Inhalt", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Transaction Date": "Transaction Datum", + "Transfer": "\u00dcbertragen" +} \ No newline at end of file diff --git a/stock/doctype/material_request/locale/de-py.json b/stock/doctype/material_request/locale/de-py.json new file mode 100644 index 0000000000..759ee282d9 --- /dev/null +++ b/stock/doctype/material_request/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "Material Request": "Material anfordern" +} \ No newline at end of file diff --git a/stock/doctype/material_request_item/locale/_messages_doc.json b/stock/doctype/material_request_item/locale/_messages_doc.json index 30ce9aa0fe..1348897330 100644 --- a/stock/doctype/material_request_item/locale/_messages_doc.json +++ b/stock/doctype/material_request_item/locale/_messages_doc.json @@ -7,11 +7,11 @@ "Brand", "Page Break", "Sales Order No", + "Warehouse", "Stock UOM", "Material Request Item", "Min Order Qty", "Item Group", - "Warehouse", "Projected Qty", "Quantity", "Item Code", diff --git a/stock/doctype/material_request_item/locale/de-doc.json b/stock/doctype/material_request_item/locale/de-doc.json new file mode 100644 index 0000000000..ef8bf83ed7 --- /dev/null +++ b/stock/doctype/material_request_item/locale/de-doc.json @@ -0,0 +1,18 @@ +{ + "Brand": "Marke", + "Description": "Beschreibung", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Lead Time Date": "Lead Time Datum", + "Material Request Item": "Material anfordern Artikel", + "Min Order Qty": "Mindestbestellmenge", + "Page Break": "Seitenwechsel", + "Projected Qty": "Prognostizierte Anzahl", + "Quantity": "Menge", + "Required Date": "Erforderlich Datum", + "Sales Order No": "In Sales Order", + "Stock": "Lager", + "Stock UOM": "Lager UOM", + "Warehouse": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/packing_slip/locale/de-doc.json b/stock/doctype/packing_slip/locale/de-doc.json new file mode 100644 index 0000000000..6217e0789a --- /dev/null +++ b/stock/doctype/packing_slip/locale/de-doc.json @@ -0,0 +1,27 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Delivery Note": "Lieferschein", + "From Package No.": "Von Package No", + "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.": "Generieren Packzettel f\u00fcr Pakete geliefert werden. Verwendet, um Paket-Nummer, der Lieferumfang und sein Gewicht zu benachrichtigen.", + "Gross Weight": "Bruttogewicht", + "Gross Weight UOM": "Bruttogewicht UOM", + "Identification of the package for the delivery (for print)": "Identifikation des Pakets f\u00fcr die Lieferung (f\u00fcr den Druck)", + "If more than one package of the same type (for print)": "Wenn mehr als ein Paket des gleichen Typs (print)", + "Indicates that the package is a part of this delivery": "Zeigt an, dass das Paket ein Teil dieser Lieferung ist", + "Items": "Artikel", + "Misc Details": "Misc Einzelheiten", + "Net Weight": "Nettogewicht", + "Net Weight UOM": "Nettogewicht UOM", + "PS": "PS", + "Package Item Details": "Package Artikeldetails", + "Package Weight Details": "Paket-Details Gewicht", + "Packing Slip": "Packzettel", + "Packing Slip Items": "Packzettel Artikel", + "Series": "Serie", + "Stock": "Lager", + "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", + "The gross weight of the package. Usually net weight + packaging material weight. (for print)": "Das Bruttogewicht des Pakets. Normalerweise Eigengewicht + Verpackungsmaterial Gewicht. (Zum Drucken)", + "The net weight of this package. (calculated automatically as sum of net weight of items)": "Das Nettogewicht dieses Pakets. (Automatisch als Summe der Netto-Gewicht der Sendungen berechnet)", + "To Package No.": "Um Nr. Paket" +} \ No newline at end of file diff --git a/stock/doctype/packing_slip_item/locale/de-doc.json b/stock/doctype/packing_slip_item/locale/de-doc.json new file mode 100644 index 0000000000..acaf32661f --- /dev/null +++ b/stock/doctype/packing_slip_item/locale/de-doc.json @@ -0,0 +1,11 @@ +{ + "Item Code": "Item Code", + "Item Name": "Item Name", + "Net Weight": "Nettogewicht", + "Packing Slip Item": "Packzettel Artikel", + "Page Break": "Seitenwechsel", + "Quantity": "Menge", + "Stock": "Lager", + "UOM": "UOM", + "Weight UOM": "Gewicht UOM" +} \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/locale/_messages_doc.json b/stock/doctype/purchase_receipt/locale/_messages_doc.json index 167bf61e0d..3031b61f4e 100644 --- a/stock/doctype/purchase_receipt/locale/_messages_doc.json +++ b/stock/doctype/purchase_receipt/locale/_messages_doc.json @@ -25,7 +25,7 @@ "Time at which materials were received", "The date at which current entry will get or has actually executed.", "More Info", - "Draft", + "Other Details", "Total Tax", "Posting Time", "Net Total (Import)", @@ -43,7 +43,6 @@ "In Words", "Range", "Contact", - "Other Details", "GRN", "Rate at which supplier's currency is converted to company's base currency", "Currency", @@ -57,6 +56,7 @@ "No", "Calculate Tax", "Totals", + "Draft", "Terms and Conditions HTML", "Status", "Cancel Reason", diff --git a/stock/doctype/purchase_receipt/locale/_messages_js.json b/stock/doctype/purchase_receipt/locale/_messages_js.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/stock/doctype/purchase_receipt/locale/_messages_js.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/locale/_messages_py.json b/stock/doctype/purchase_receipt/locale/_messages_py.json new file mode 100644 index 0000000000..87d22bee7d --- /dev/null +++ b/stock/doctype/purchase_receipt/locale/_messages_py.json @@ -0,0 +1,5 @@ +[ + "Please Enter Supplier Warehouse for subcontracted Items", + "No default BOM exists for item: ", + "Please enter whether Purchase Recipt is made for subcontracting \n\t\t\t\tor purchasing, in 'Is Subcontracted' field" +] \ No newline at end of file diff --git a/stock/doctype/purchase_receipt/locale/de-doc.json b/stock/doctype/purchase_receipt/locale/de-doc.json new file mode 100644 index 0000000000..4150921969 --- /dev/null +++ b/stock/doctype/purchase_receipt/locale/de-doc.json @@ -0,0 +1,104 @@ +{ + "% Billed": "% Billed", + "% of materials billed against this Purchase Receipt": "% Der Materialien gegen diese Kaufbeleg abgerechnet", + "Add / Edit Taxes and Charges": "Hinzuf\u00fcgen / Bearbeiten Steuern und Abgaben", + "Add Terms and Conditions for the Purchase Receipt. You can also prepare a Terms and Conditions Master and use the Template.": "Hinzuf\u00fcgen Gesch\u00e4ftsbedingungen f\u00fcr den Kaufbeleg. Sie k\u00f6nnen auch eine AGB-Master und verwenden Sie die Vorlage.", + "Address": "Adresse", + "Amended From": "Ge\u00e4ndert von", + "Bill Date": "Bill Datum", + "Bill No": "Bill No", + "Calculate Tax": "Steuer rechnen", + "Cancel Reason": "Abbrechen Reason", + "Cancelled": "Abgesagt", + "Challan Date": "Challan Datum", + "Challan No": "Challan Nein", + "Company": "Firma", + "Consider this Price List for fetching rate. (only which have \"For Buying\" as checked)": "Betrachten Sie diese Preisliste f\u00fcr das Abrufen bewerten. (Nur die haben \"f\u00fcr den Kauf\", wie gepr\u00fcft)", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Currency": "W\u00e4hrung", + "Currency & Price List": "W\u00e4hrung & Preisliste", + "Date on which lorry started from supplier warehouse": "Datum, an dem Lastwagen startete von Lieferantenlager", + "Detailed Breakup of the totals": "Detaillierte Breakup der Gesamtsummen", + "Draft": "Entwurf", + "Exchange Rate": "Wechselkurs", + "File List": "Dateiliste", + "Filing in Additional Information about the Purchase Receipt will help you analyze your data better.": "Die Einreichung in Zus\u00e4tzliche Informationen \u00fcber den Kaufbeleg wird Ihnen helfen, Ihre Daten analysieren besser.", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Following table will show values if items are sub - contracted. These values will be fetched from the master of \"Bill of Materials\" of sub - contracted items.": "Folgende Tabelle zeigt Werte, wenn Artikel sub sind - vergeben werden. Vertragsgegenst\u00e4nden - Diese Werte werden vom Meister der \"Bill of Materials\" von Sub geholt werden.", + "GRN": "GRN", + "Get Current Stock": "Holen Aktuelle Stock", + "Get Tax Detail": "Holen MwSt. Details", + "Get Terms and Conditions": "Holen AGB", + "Grand Total": "Grand Total", + "Grand Total (Import)": "Grand Total (Import)", + "If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.": "Wenn Sie ein Standard-Template in Kauf Steuern und Abgaben Meister erstellt haben, w\u00e4hlen Sie eine aus und klicken Sie auf den Button unten.", + "In Words": "In Worte", + "In Words (Import)": "In Words (Import)", + "In Words will be visible once you save the Purchase Receipt.": "In Worte sichtbar sein wird, wenn Sie den Kaufbeleg speichern.", + "Instructions": "Anleitung", + "Is Subcontracted": "Ist Fremdleistungen", + "Items": "Artikel", + "LR Date": "LR Datum", + "LR No": "In LR", + "Mobile No": "In Mobile", + "More Info": "Mehr Info", + "Net Total": "Total Net", + "Net Total (Import)": "Net Total (Import)", + "No": "Auf", + "Other Details": "Weitere Details", + "Posting Date": "Buchungsdatum", + "Posting Time": "Posting Zeit", + "Price List": "Preisliste", + "Price List Currency": "W\u00e4hrung Preisliste", + "Price List Exchange Rate": "Preisliste Wechselkurs", + "Pull Purchase Order Details": "Ziehen Sie Purchase Order Details", + "Purchase Order": "Auftragsbest\u00e4tigung", + "Purchase Receipt": "Kaufbeleg", + "Purchase Receipt Item Supplieds": "Kaufbeleg Artikel Supplieds", + "Purchase Receipt Items": "Kaufbeleg Artikel", + "Purchase Taxes and Charges": "Purchase Steuern und Abgaben", + "Range": "Reichweite", + "Rate at which supplier's currency is converted to company's base currency": "Geschwindigkeit, mit der Lieferanten W\u00e4hrung Unternehmens Basisw\u00e4hrung umgewandelt wird", + "Raw Material Details": "Raw Material Einzelheiten", + "Re-Calculate Values": "Neu berechnen Werte", + "Rejected Warehouse": "Abgelehnt Warehouse", + "Remarks": "Bemerkungen", + "Rounded Total": "Abgerundete insgesamt", + "Select \"Yes\" for sub - contracting items": "W\u00e4hlen Sie \"Ja\" f\u00fcr - Zulieferer Artikel", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Select Terms and Conditions": "W\u00e4hlen AGB", + "Select the relevant company name if you have multiple companies": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben", + "Series": "Serie", + "Status": "Status", + "Stock": "Lager", + "Submitted": "Eingereicht", + "Supplier": "Lieferant", + "Supplier Address": "Lieferant Adresse", + "Supplier Name": "Name des Anbieters", + "Supplier Warehouse": "Lieferant Warehouse", + "Supplier warehouse where you have issued raw materials for sub - contracting": "Lieferantenlager wo Sie Rohstoffe ausgegeben haben - Zulieferer", + "Supplier's currency": "Lieferant W\u00e4hrung", + "Tax Calculation": "Steuerberechnung", + "Taxes": "Steuern", + "Taxes and Charges Added": "Steuern und Abgaben am", + "Taxes and Charges Added (Import)": "Steuern und Geb\u00fchren Added (Import)", + "Taxes and Charges Deducted": "Steuern und Geb\u00fchren Abgezogen", + "Taxes and Charges Deducted (Import)": "Steuern und Geb\u00fchren abgezogen (Import)", + "Terms and Conditions": "AGB", + "Terms and Conditions HTML": "AGB HTML", + "Terms and Conditions1": "Allgemeine Bedingungen1", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "Time at which materials were received": "Zeitpunkt, an dem Materialien wurden erhalten", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Total Tax": "Total Tax", + "Totals": "Totals", + "Transporter Info": "Transporter Info", + "Transporter Name": "Transporter Namen", + "Transporter lorry number": "Transporter Lkw-Zahl", + "Warehouse where you are maintaining stock of rejected items": "Warehouse, wo Sie erhalten Bestand abgelehnt Elemente werden", + "Yes": "Ja", + "You can make a purchase receipt from multiple purchase orders. Select purchase orders one by one and click on the button below.": "Sie k\u00f6nnen einen Kaufbeleg von mehreren Bestellungen. W\u00e4hlen Bestellungen eins nach dem anderen, und klicken Sie auf den Button unten." +} \ No newline at end of file diff --git a/stock/doctype/purchase_receipt_item/locale/de-doc.json b/stock/doctype/purchase_receipt_item/locale/de-doc.json new file mode 100644 index 0000000000..c21ec2cc7b --- /dev/null +++ b/stock/doctype/purchase_receipt_item/locale/de-doc.json @@ -0,0 +1,40 @@ +{ + "Accepted Quantity": "Akzeptiert Menge", + "Accepted Warehouse": "Akzeptiert Warehouse", + "Amount": "Menge", + "Amount*": "Betrag *", + "Batch No": "Batch No", + "Billed Quantity": "Angek\u00fcndigt Menge", + "Brand": "Marke", + "Conversion Factor": "Umrechnungsfaktor", + "Description": "Beschreibung", + "Discount %": "Discount%", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Item Tax Amount": "Artikel Steuerbetrag", + "Item Tax Rate": "Artikel Tax Rate", + "PO Date": "PO Datum", + "PO No": "In PO", + "Page Break": "Seitenwechsel", + "Prevdoc Doctype": "Prevdoc Doctype", + "Project Name": "Project Name", + "Purchase Order Item No": "In der Bestellposition", + "Purchase Receipt Item": "Kaufbeleg Artikel", + "QA No": "In QA", + "Rate": "Rate", + "Rate*": "Rate *", + "Raw Materials Supplied Cost": "Kosteng\u00fcnstige Rohstoffe geliefert", + "Recd Quantity": "Menge RECD", + "Ref Rate*": "Ref Rate *", + "Rejected Quantity": "Abgelehnt Menge", + "Rejected Serial No": "Abgelehnt Serial In", + "Rejected Warehouse": "Abgelehnt Warehouse", + "Required By": "Erforderliche By", + "Serial No": "Serial In", + "Stock": "Lager", + "Stock Qty": "Lieferbar Menge", + "Stock UOM": "Lager UOM", + "UOM": "UOM", + "Valuation Rate": "Valuation bewerten" +} \ No newline at end of file diff --git a/stock/doctype/sales_and_purchase_return_tool/locale/_messages_doc.json b/stock/doctype/sales_and_purchase_return_tool/locale/_messages_doc.json index 10781c86d2..979f20fc1e 100644 --- a/stock/doctype/sales_and_purchase_return_tool/locale/_messages_doc.json +++ b/stock/doctype/sales_and_purchase_return_tool/locale/_messages_doc.json @@ -1,6 +1,5 @@ [ "Make Credit Note", - "Make Stock Entry", "Make Excise Invoice", "Sales Return", "Get Items", @@ -11,6 +10,7 @@ "Make Debit Note", "Cust/Supp Address", "Sales Invoice No", + "Make Stock Entry", "Purchase Receipt No", "Purchase Return", "Sales and Purchase Return Items", diff --git a/stock/doctype/sales_and_purchase_return_tool/locale/de-doc.json b/stock/doctype/sales_and_purchase_return_tool/locale/de-doc.json new file mode 100644 index 0000000000..9bd8c9af40 --- /dev/null +++ b/stock/doctype/sales_and_purchase_return_tool/locale/de-doc.json @@ -0,0 +1,21 @@ +{ + "Company": "Firma", + "Cust/Supp Address": "Cust / Supp Adresse", + "Cust/Supp Name": "Cust / Supp Namen", + "Customer/Supplier": "Kunde / Lieferant", + "Delivery Note No": "Lieferschein Nein", + "Get Items": "Holen Artikel", + "Make Credit Note": "Machen Gutschrift", + "Make Debit Note": "Machen Lastschrift", + "Make Excise Invoice": "Machen Excise Rechnung", + "Make Stock Entry": "Machen Eintrag Stock", + "Purchase Receipt No": "Kaufbeleg", + "Purchase Return": "Kauf zur\u00fcckgeben", + "Return Date": "Zur\u00fcck Datum", + "Return Type": "R\u00fcckgabetyp", + "Sales Invoice No": "Sales Invoice In", + "Sales Return": "Umsatzrendite", + "Sales and Purchase Return Items": "Verkauf und Kauf zur\u00fccksenden Artikel", + "Sales and Purchase Return Tool": "Sales and Purchase Return-Tool", + "Stock": "Lager" +} \ No newline at end of file diff --git a/stock/doctype/sales_bom/locale/de-doc.json b/stock/doctype/sales_bom/locale/de-doc.json new file mode 100644 index 0000000000..f422afb9a5 --- /dev/null +++ b/stock/doctype/sales_bom/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "List items that form the package.": "Diese Liste Artikel bilden das Paket.", + "Package Items": "Package Angebote", + "Parent Item": "\u00dcbergeordneter Artikel", + "Sales BOM": "Vertrieb BOM", + "Sales BOM Item": "Vertrieb St\u00fccklistenposition", + "Sales BOM Items": "Vertrieb St\u00fccklistenpositionen", + "Stock": "Lager", + "The Item that represents the Package. This Item must have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\"": "Das Element, das das Paket darstellt. Dieser Artikel muss \"Ist Stock Item\" als \"Nein\" und \"Ist Vertrieb Item\" als \"Ja\"" +} \ No newline at end of file diff --git a/stock/doctype/sales_bom_item/locale/de-doc.json b/stock/doctype/sales_bom_item/locale/de-doc.json new file mode 100644 index 0000000000..0711aea3e9 --- /dev/null +++ b/stock/doctype/sales_bom_item/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Description": "Beschreibung", + "Item": "Artikel", + "Qty": "Menge", + "Rate": "Rate", + "Sales BOM Item": "Vertrieb St\u00fccklistenposition", + "Stock": "Lager", + "UOM": "UOM" +} \ No newline at end of file diff --git a/stock/doctype/serial_no/locale/_messages_doc.json b/stock/doctype/serial_no/locale/_messages_doc.json index 6e1d93e12d..51cda10fe7 100644 --- a/stock/doctype/serial_no/locale/_messages_doc.json +++ b/stock/doctype/serial_no/locale/_messages_doc.json @@ -26,7 +26,6 @@ "Brand", "File List", "Purchase Receipt", - "Delivery Address", "Warranty Period (Days)", "Trash Reason", "Delivery Document Type", @@ -38,6 +37,7 @@ "Under AMC", "Maintenance Status", "Under Warranty", + "Delivery Address", "Out of Warranty", "Warranty Expiry Date", "Customer Name", diff --git a/stock/doctype/serial_no/locale/de-doc.json b/stock/doctype/serial_no/locale/de-doc.json new file mode 100644 index 0000000000..23ba20a032 --- /dev/null +++ b/stock/doctype/serial_no/locale/de-doc.json @@ -0,0 +1,59 @@ +{ + "AMC Expiry Date": "AMC Ablaufdatum", + "Brand": "Marke", + "Company": "Firma", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Name": "Name des Kunden", + "Delivered": "Lieferung", + "Delivery Address": "Lieferanschrift", + "Delivery Date": "Liefertermin", + "Delivery Details": "Anlieferungs-Details", + "Delivery Document No": "Lieferung Dokument Nr.", + "Delivery Document Type": "Lieferung Document Type", + "Delivery Note": "Lieferschein", + "Delivery Time": "Lieferzeit", + "Description": "Beschreibung", + "Details": "Details", + "Distinct unit of an Item": "Separate Einheit eines Elements", + "File List": "Dateiliste", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "In Store": "In Store", + "Incoming Rate": "Incoming Rate", + "Incoming Time": "Eingehende Zeit", + "Is Cancelled": "Wird abgebrochen", + "Item Code": "Item Code", + "Item Group": "Artikel-Gruppe", + "Item Name": "Item Name", + "Maintenance Status": "Wartungsstatus", + "More Info": "Mehr Info", + "No": "Auf", + "Not in Use": "Nicht im Einsatz", + "Out of AMC": "Von AMC", + "Out of Warranty": "Au\u00dferhalb der Garantie", + "Purchase Date": "Kauf Datum", + "Purchase Details": "Kaufinformationen", + "Purchase Document No": "Die Kaufdokument", + "Purchase Document Type": "Kauf Document Type", + "Purchase Receipt": "Kaufbeleg", + "Purchase Returned": "Kehrte Kauf", + "SLE Exists": "SLE Exists", + "Sales Invoice": "Sales Invoice", + "Serial No": "Serial In", + "Serial No Details": "Serial No Einzelheiten", + "Status": "Status", + "Stock": "Lager", + "Stock Entry": "Lager Eintrag", + "Supplier": "Lieferant", + "Supplier Address": "Lieferant Adresse", + "Supplier Name": "Name des Anbieters", + "Territory": "Gebiet", + "Trash Reason": "Trash Reason", + "Under AMC": "Unter AMC", + "Under Warranty": "Unter Garantie", + "Warehouse": "Lager", + "Warranty / AMC Details": "Garantie / AMC Einzelheiten", + "Warranty Expiry Date": "Garantie Ablaufdatum", + "Warranty Period (Days)": "Garantiezeitraum (Tage)", + "Yes": "Ja" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry/locale/_messages_doc.json b/stock/doctype/stock_entry/locale/_messages_doc.json index fe33ae0914..83efe0c71c 100644 --- a/stock/doctype/stock_entry/locale/_messages_doc.json +++ b/stock/doctype/stock_entry/locale/_messages_doc.json @@ -22,13 +22,13 @@ "Sales Invoice No", "Purpose", "MTN Details", - "Remarks", "More Info", "Stock Entry", "Posting Date", "Project Name", "Customer", "STE", + "Remarks", "Sales Return", "To manage multiple series please go to Setup > Manage Series", "Items", diff --git a/stock/doctype/stock_entry/locale/de-doc.json b/stock/doctype/stock_entry/locale/de-doc.json new file mode 100644 index 0000000000..fa1d223585 --- /dev/null +++ b/stock/doctype/stock_entry/locale/de-doc.json @@ -0,0 +1,48 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "As per Stock UOM": "Wie pro Lagerbestand UOM", + "BOM No": "BOM Nein", + "Company": "Firma", + "Contact Info": "Kontakt Info", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Name": "Name des Kunden", + "Default Source Warehouse": "Default Source Warehouse", + "Default Target Warehouse": "Standard Ziel Warehouse", + "Delivery Note No": "Lieferschein Nein", + "Get Items": "Holen Artikel", + "Get Stock and Rate": "Holen Sie Stock und bewerten", + "Get valuation rate and available stock at source/target warehouse on mentioned posting date-time. If serialized item, please press this button after entering serial nos.": "Holen Bewertungskurs und verf\u00fcgbaren Bestand an der Quelle / Ziel-Warehouse am genannten Buchungsdatum-Zeit. Wenn serialisierten Objekt, dr\u00fccken Sie bitte diese Taste nach Eingabe der Seriennummern nos.", + "If checked, BOM for sub-assembly items will be considered for getting raw materials. Otherwise, all sub-assembly items will be treated as a raw material.": "Wenn aktiviert, wird St\u00fcckliste Baugruppe Artikel f\u00fcr immer Rohstoff betrachtet werden. Andernfalls werden alle Unterbaugruppe Elemente als Ausgangsmaterial behandelt werden.", + "Items": "Artikel", + "MTN Details": "MTN Einzelheiten", + "Manufacture/Repack": "Herstellung / Repack", + "Manufacturing Quantity": "Fertigung Menge", + "Material Issue": "Material Issue", + "Material Receipt": "Material Receipt", + "Material Transfer": "Material Transfer", + "More Info": "Mehr Info", + "Posting Date": "Buchungsdatum", + "Posting Time": "Posting Zeit", + "Production Order": "Fertigungsauftrag", + "Project Name": "Project Name", + "Purchase Receipt No": "Kaufbeleg", + "Purchase Return": "Kauf zur\u00fcckgeben", + "Purpose": "Zweck", + "Reference": "Referenz", + "Remarks": "Bemerkungen", + "STE": "STE", + "Sales Invoice No": "Sales Invoice In", + "Sales Return": "Umsatzrendite", + "Select Print Heading": "W\u00e4hlen Sie Drucken \u00dcberschrift", + "Series": "Serie", + "Stock": "Lager", + "Stock Entry": "Lager Eintrag", + "Subcontract": "Vergeben", + "Supplier": "Lieferant", + "Supplier Address": "Lieferant Adresse", + "Supplier Name": "Name des Anbieters", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", + "Use Multi-Level BOM": "Verwenden Sie Multi-Level BOM" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry/locale/de-py.json b/stock/doctype/stock_entry/locale/de-py.json new file mode 100644 index 0000000000..89aef61008 --- /dev/null +++ b/stock/doctype/stock_entry/locale/de-py.json @@ -0,0 +1,14 @@ +{ + "Atleast one warehouse is mandatory": "Mindestens eines Lagers ist obligatorisch", + "Hence, maximum allowed Manufacturing Quantity": "Daher maximal erlaubte Menge Fertigung", + "Item": "Artikel", + "Item: '": "Item: \"", + "Manufacturing Quantity": "Fertigung Menge", + "Material Request": "Material anfordern", + "Production Order": "Fertigungsauftrag", + "Quantity already manufactured": "Bereits Menge hergestellt", + "Row #": "Zeile #", + "Source Warehouse": "Quelle Warehouse", + "Source and Target Warehouse cannot be same": "Quelle und Ziel Warehouse kann nicht gleichzeitig", + "Target Warehouse": "Ziel Warehouse" +} \ No newline at end of file diff --git a/stock/doctype/stock_entry_detail/locale/de-doc.json b/stock/doctype/stock_entry_detail/locale/de-doc.json new file mode 100644 index 0000000000..b4011a62a9 --- /dev/null +++ b/stock/doctype/stock_entry_detail/locale/de-doc.json @@ -0,0 +1,22 @@ +{ + "Actual Qty (at source/target)": "Tats\u00e4chliche Menge (an der Quelle / Ziel)", + "Amount": "Menge", + "BOM No": "BOM Nein", + "BOM No. for a Finished Good Item": "BOM-Nr f\u00fcr Finished Gute Artikel", + "Batch No": "Batch No", + "Conversion Factor": "Umrechnungsfaktor", + "Description": "Beschreibung", + "Item Code": "Item Code", + "Material Request": "Material anfordern", + "Material Request Item": "Material anfordern Artikel", + "Qty": "Menge", + "Qty as per Stock UOM": "Menge pro dem Stock UOM", + "Serial No": "Serial In", + "Source Warehouse": "Quelle Warehouse", + "Stock": "Lager", + "Stock Entry Detail": "Lager Eintrag Details", + "Stock UOM": "Lager UOM", + "Target Warehouse": "Ziel Warehouse", + "UOM": "UOM", + "Valuation Rate": "Valuation bewerten" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger/locale/de-doc.json b/stock/doctype/stock_ledger/locale/de-doc.json new file mode 100644 index 0000000000..1a6f8d718a --- /dev/null +++ b/stock/doctype/stock_ledger/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Stock": "Lager", + "Stock Ledger": "Lager Ledger" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger_entry/locale/de-doc.json b/stock/doctype/stock_ledger_entry/locale/de-doc.json new file mode 100644 index 0000000000..546f326091 --- /dev/null +++ b/stock/doctype/stock_ledger_entry/locale/de-doc.json @@ -0,0 +1,27 @@ +{ + "Actual Qty After Transaction": "Tats\u00e4chliche Menge Nach Transaction", + "Actual Quantity": "Tats\u00e4chliche Menge", + "Batch No": "Batch No", + "Company": "Firma", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Incoming Rate": "Incoming Rate", + "Is Cancelled": "Wird abgebrochen", + "Item Code": "Item Code", + "No": "Auf", + "Posting Date": "Buchungsdatum", + "Posting Time": "Posting Zeit", + "Serial No": "Serial In", + "Stock": "Lager", + "Stock Ledger Entry": "Lager Ledger Eintrag", + "Stock Queue (FIFO)": "Lager Queue (FIFO)", + "Stock UOM": "Lager UOM", + "Stock Value": "Bestandswert", + "The date at which current entry will get or has actually executed.": "Das Datum, an dem aktuellen Eintrag zu erhalten oder wird tats\u00e4chlich ausgef\u00fchrt.", + "Valuation Rate": "Valuation bewerten", + "Voucher Detail No": "Gutschein Detailaufnahme", + "Voucher No": "Gutschein Nein", + "Voucher Type": "Gutschein Type", + "Warehouse": "Lager", + "Warehouse Type": "Warehouse Typ", + "Yes": "Ja" +} \ No newline at end of file diff --git a/stock/doctype/stock_ledger_entry/locale/de-py.json b/stock/doctype/stock_ledger_entry/locale/de-py.json new file mode 100644 index 0000000000..eef9d91333 --- /dev/null +++ b/stock/doctype/stock_ledger_entry/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "User not allowed entry in the Warehouse": "Benutzer nicht erlaubt Eintrag in der Warehouse" +} \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/locale/de-doc.json b/stock/doctype/stock_reconciliation/locale/de-doc.json new file mode 100644 index 0000000000..7a3eefef1d --- /dev/null +++ b/stock/doctype/stock_reconciliation/locale/de-doc.json @@ -0,0 +1,12 @@ +{ + "Amended From": "Ge\u00e4ndert von", + "Posting Date": "Buchungsdatum", + "Posting Time": "Posting Zeit", + "Reconciliation Data": "Datenabgleich", + "Reconciliation HTML": "HTML Vers\u00f6hnung", + "Reconciliation JSON": "\u00dcberleitung JSON", + "Stock": "Lager", + "Stock Reconciliation": "Lager Vers\u00f6hnung", + "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.": "Dieses Tool hilft Ihnen zu aktualisieren oder zu beheben die Menge und die Bewertung der Aktie im System. Es wird normalerweise verwendet, um das System abzugleichen und was tats\u00e4chlich existiert in Ihrem Lager.", + "Upload HTML": "Hochladen HTML" +} \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/locale/de-py.json b/stock/doctype/stock_reconciliation/locale/de-py.json new file mode 100644 index 0000000000..515e0613af --- /dev/null +++ b/stock/doctype/stock_reconciliation/locale/de-py.json @@ -0,0 +1,5 @@ +{ + "Serialized Item: '": "Serialisiert Item '", + "Sorry! We can only allow upto 100 rows for Stock Reconciliation.": "Sorry! Wir k\u00f6nnen nur bis zu 100 Zeilen f\u00fcr Stock Reconciliation erm\u00f6glichen.", + "Stock Reconciliation file not uploaded": "Lager Vers\u00f6hnung Datei nicht hochgeladen" +} \ No newline at end of file diff --git a/stock/doctype/stock_uom_replace_utility/locale/de-doc.json b/stock/doctype/stock_uom_replace_utility/locale/de-doc.json new file mode 100644 index 0000000000..25ce91a3db --- /dev/null +++ b/stock/doctype/stock_uom_replace_utility/locale/de-doc.json @@ -0,0 +1,9 @@ +{ + "Conversion Factor": "Umrechnungsfaktor", + "Current Stock UOM": "Aktuelle Stock UOM", + "Item": "Artikel", + "New Stock UOM": "New Stock UOM", + "Stock": "Lager", + "Stock UOM Replace Utility": "Lager UOM ersetzen Dienstprogramm", + "Update": "Aktualisieren" +} \ No newline at end of file diff --git a/stock/doctype/uom_conversion_detail/locale/de-doc.json b/stock/doctype/uom_conversion_detail/locale/de-doc.json new file mode 100644 index 0000000000..0f8d4202ad --- /dev/null +++ b/stock/doctype/uom_conversion_detail/locale/de-doc.json @@ -0,0 +1,6 @@ +{ + "Conversion Factor": "Umrechnungsfaktor", + "Stock": "Lager", + "UOM": "UOM", + "UOM Conversion Detail": "UOM Conversion Details" +} \ No newline at end of file diff --git a/stock/doctype/valuation_control/locale/de-doc.json b/stock/doctype/valuation_control/locale/de-doc.json new file mode 100644 index 0000000000..7a2c605b33 --- /dev/null +++ b/stock/doctype/valuation_control/locale/de-doc.json @@ -0,0 +1,4 @@ +{ + "Stock": "Lager", + "Valuation Control": "Valuation Control-" +} \ No newline at end of file diff --git a/stock/doctype/warehouse/locale/de-doc.json b/stock/doctype/warehouse/locale/de-doc.json new file mode 100644 index 0000000000..783e7449fb --- /dev/null +++ b/stock/doctype/warehouse/locale/de-doc.json @@ -0,0 +1,25 @@ +{ + "A logical Warehouse against which stock entries are made.": "Eine logische Warehouse gegen die Lager-Eintr\u00e4ge vorgenommen werden.", + "Address Line 1": "Address Line 1", + "Address Line 2": "Address Line 2", + "City": "City", + "Company": "Firma", + "Email Id": "Email Id", + "For Reference Only.": "Nur als Referenz.", + "If set, data entry is only allowed for specified users. Else, entry is allowed for all users with requisite permissions.": "Wenn gesetzt, wird die Dateneingabe nur f\u00fcr bestimmte Benutzer erlaubt. Else, wird der Eintritt f\u00fcr alle Benutzer mit den erforderlichen Berechtigungen erlaubt.", + "Merge": "Verschmelzen", + "Merge Warehouses": "Merge Warehouses", + "Merge With": "Mit Merge", + "Mobile No": "In Mobile", + "PIN": "PIN", + "Phone No": "Phone In", + "State": "Zustand", + "Stock": "Lager", + "This feature is for merging duplicate warehouses. It will replace all the links of this warehouse by \"Merge With\" warehouse. After merging you can delete this warehouse, as stock level for this warehouse will be zero.": "Diese Funktion ist f\u00fcr das Zusammenf\u00fchren von doppelten Lagern. Es werden alle Links dieses Lagerhaus Warehouse \"Mit Merge\" zu ersetzen. Nach dem Zusammenf\u00fchren l\u00f6schen Sie dieses Warehouse als Bestand f\u00fcr dieses Lager wird gleich Null sein.", + "Warehouse": "Lager", + "Warehouse Contact Info": "Warehouse Kontakt Info", + "Warehouse Detail": "Warehouse Details", + "Warehouse Name": "Warehouse Namen", + "Warehouse Type": "Warehouse Typ", + "Warehouse Users": "Warehouse-Benutzer" +} \ No newline at end of file diff --git a/stock/doctype/warehouse_user/locale/de-doc.json b/stock/doctype/warehouse_user/locale/de-doc.json new file mode 100644 index 0000000000..4541bcd8c1 --- /dev/null +++ b/stock/doctype/warehouse_user/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Stock": "Lager", + "User": "Benutzer", + "Warehouse User": "Warehouse Benutzer" +} \ No newline at end of file diff --git a/stock/locale/de-py.json b/stock/locale/de-py.json new file mode 100644 index 0000000000..68b58d7a4b --- /dev/null +++ b/stock/locale/de-py.json @@ -0,0 +1,7 @@ +{ + "Item": "Artikel", + "Please check": "Bitte \u00fcberpr\u00fcfen Sie", + "is a cancelled Item": "ist ein gestempeltes", + "is not a Stock Item": "ist kein Lagerartikel", + "reached its end of life on": "erreichte Ende des Lebens auf" +} \ No newline at end of file diff --git a/stock/module_def/stock/locale/de-doc.json b/stock/module_def/stock/locale/de-doc.json new file mode 100644 index 0000000000..e2f2bf9bf8 --- /dev/null +++ b/stock/module_def/stock/locale/de-doc.json @@ -0,0 +1,22 @@ +{ + "A Product or a Service that is bought, sold or kept in stock.": "Ein Produkt oder eine Dienstleistung, die gekauft, verkauft oder gehalten auf Lager.", + "A logical Warehouse against which stock entries are made.": "Eine logische Warehouse gegen die Lager-Eintr\u00e4ge vorgenommen werden.", + "Distinct unit of an Item": "Separate Einheit eines Elements", + "Featured Item in Item Group": "Feature-Produkt bei Posten Gruppe", + "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes": "F\u00fcr die Bequemlichkeit der Kunden, k\u00f6nnen diese Codes in Druckformate wie Rechnungen und Lieferscheine werden", + "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.": "Generieren Packzettel f\u00fcr Pakete geliefert werden. Verwendet, um Paket-Nummer, der Lieferumfang und sein Gewicht zu benachrichtigen.", + "Item-Wise Price List": "Item-Wise Preisliste", + "Ordered Items To Be Delivered": "Bestellte Artikel geliefert werden", + "Purchase Order Items To Be Received": "Bestellpositionen empfangen werden", + "Serial No Service Contract Expiry": "Serial No Service Contract Verfall", + "Serial No Status": "Serielle In-Status", + "Serial No Warranty Expiry": "Serial No Scheckheftgepflegt", + "Stock Ageing": "Lager Ageing", + "Stock Analytics": "Lager Analytics", + "Stock Balance": "Bestandsliste", + "Stock Home": "Lager Home", + "Stock Ledger": "Lager Ledger", + "Stock Level": "Stock Level", + "Table for Item that will be shown in Web Site": "Tabelle f\u00fcr Artikel, die in Web-Site angezeigt werden", + "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.": "Dieses Tool hilft Ihnen zu aktualisieren oder zu beheben die Menge und die Bewertung der Aktie im System. Es wird normalerweise verwendet, um das System abzugleichen und was tats\u00e4chlich existiert in Ihrem Lager." +} \ No newline at end of file diff --git a/stock/page/stock_home/locale/de-js.json b/stock/page/stock_home/locale/de-js.json new file mode 100644 index 0000000000..93c54a42f8 --- /dev/null +++ b/stock/page/stock_home/locale/de-js.json @@ -0,0 +1,59 @@ +{ + "All Products or Services.": "Alle Produkte oder Dienstleistungen.", + "Analytics": "Analytics", + "Batch": "Stapel", + "Batch (lot) of an Item.": "Batch (Los) eines Item.", + "Brand": "Marke", + "Brand master.": "Marke Meister.", + "Change UOM for an Item.": "\u00c4ndern UOM f\u00fcr ein Item.", + "Delivery (shipment) to customers.": "Lieferung (Versand) an die Kunden.", + "Delivery Note": "Lieferschein", + "Distribute transport overhead across items.": "Verteilen Transport-Overhead auf Gegenst\u00e4nde.", + "Documents": "Unterlagen", + "Goods received from Suppliers.": "Wareneingang vom Lieferanten.", + "Incoming quality inspection.": "Eingehende Qualit\u00e4tskontrolle.", + "Installation Note": "Installation Hinweis", + "Installation record for a Serial No.": "Installation Rekord f\u00fcr eine Seriennummer", + "Item": "Artikel", + "Item Group": "Artikel-Gruppe", + "Item classification.": "Artikel Klassifizierung.", + "Item-Wise Price List": "Item-Wise Preisliste", + "Landed Cost Wizard": "Landed Cost Wizard", + "Main Reports": "Haupt-Reports", + "Manage sales or purchase returns": "Verwalten Verkauf oder Kauf Renditen", + "Masters": "Masters", + "Material Request": "Material anfordern", + "Multiple Item Prices": "Mehrere Artikel Preise", + "Ordered Items To Be Delivered": "Bestellte Artikel geliefert werden", + "Packing Slip": "Packzettel", + "Price List": "Preisliste", + "Purchase Order Items To Be Received": "Bestellpositionen empfangen werden", + "Purchase Receipt": "Kaufbeleg", + "Quality Inspection": "Qualit\u00e4tspr\u00fcfung", + "Reports": "Reports", + "Sales and Purchase Return Tool": "Sales and Purchase Return-Tool", + "Serial No": "Serial In", + "Serial No Service Contract Expiry": "Serial No Service Contract Verfall", + "Serial No Status": "Serielle In-Status", + "Serial No Warranty Expiry": "Serial No Scheckheftgepflegt", + "Setup": "Setup", + "Single unit of an Item.": "Einzelger\u00e4t eines Elements.", + "Split Delivery Note into packages.": "Aufgeteilt in Pakete Lieferschein.", + "Stock Ageing": "Lager Ageing", + "Stock Analytics": "Lager Analytics", + "Stock Balance": "Bestandsliste", + "Stock Entry": "Lager Eintrag", + "Stock Ledger": "Lager Ledger", + "Stock Level": "Stock Level", + "Stock Reconciliation": "Lager Vers\u00f6hnung", + "Tools": "Werkzeuge", + "Transfer stock from one warehouse to another.": "\u00dcbertragen Lager von einem Lager zum anderen.", + "Types of warehouse": "Arten von Lagersystemen", + "UOM Replace Utility": "UOM ersetzen Dienstprogramm", + "Unit of Measure": "Ma\u00dfeinheit", + "Upload stock balance via csv.": "Hochladen Bestandsliste \u00fcber csv.", + "Warehouse": "Lager", + "Warehouse Type": "Warehouse Typ", + "Where items are stored.": "Wo Elemente gespeichert werden.", + "e.g. Kg, Unit, Nos, m": "z.B. Kg, Einheit, Nos, m" +} \ No newline at end of file diff --git a/support/doctype/customer_issue/locale/de-doc.json b/support/doctype/customer_issue/locale/de-doc.json new file mode 100644 index 0000000000..4d654286fb --- /dev/null +++ b/support/doctype/customer_issue/locale/de-doc.json @@ -0,0 +1,50 @@ +{ + "AMC Expiry Date": "AMC Ablaufdatum", + "Address": "Adresse", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "CI/2010-2011/": "CI/2010-2011 /", + "Cancelled": "Abgesagt", + "Closed": "Geschlossen", + "Company": "Firma", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Group": "Customer Group", + "Customer Issue": "Das Anliegen des Kunden", + "Customer Name": "Name des Kunden", + "Description": "Beschreibung", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "From Company": "Von Unternehmen", + "Issue": "Ausgabe", + "Issue Date": "Issue Date", + "Issue Details": "Issue Details", + "Item Code": "Item Code", + "Item Name": "Item Name", + "Item, Warranty, AMC (Annual Maintenance Contract) details will be automatically fetched when Serial Number is selected.": "Artikel, Garantie, wird AMC (Annual Maintenance Contract) Details werden automatisch abgerufen Wenn Serial Number ausgew\u00e4hlt ist.", + "Mobile No": "In Mobile", + "More Info": "Mehr Info", + "Naming Series": "Benennen Series", + "Open": "\u00d6ffnen", + "Out of AMC": "Von AMC", + "Out of Warranty": "Au\u00dferhalb der Garantie", + "Raised By": "Raised By", + "Resolution": "Aufl\u00f6sung", + "Resolution Date": "Resolution Datum", + "Resolution Details": "Aufl\u00f6sung Einzelheiten", + "Resolved By": "Gel\u00f6st von", + "Serial No": "Serial In", + "Service Address": "Service Adresse", + "Status": "Status", + "Support": "Unterst\u00fctzen", + "Territory": "Gebiet", + "To assign this issue, use the \"Assign\" button in the sidebar.": "Um dieses Problem zu zuzuweisen, verwenden Sie die Schaltfl\u00e4che \"Zuordnen\" in der Seitenleiste.", + "Under AMC": "Unter AMC", + "Under Warranty": "Unter Garantie", + "Warranty / AMC Status": "Garantie / AMC-Status", + "Warranty Expiry Date": "Garantie Ablaufdatum", + "Work In Progress": "Work In Progress" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule/locale/de-doc.json b/support/doctype/maintenance_schedule/locale/de-doc.json new file mode 100644 index 0000000000..c8369daf3a --- /dev/null +++ b/support/doctype/maintenance_schedule/locale/de-doc.json @@ -0,0 +1,30 @@ +{ + "Address": "Adresse", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Cancelled": "Abgesagt", + "Company": "Firma", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Person": "Ansprechpartner", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Details": "Customer Details", + "Customer Group": "Customer Group", + "Customer Name": "Name des Kunden", + "Draft": "Entwurf", + "Generate Schedule": "Generieren Zeitplan", + "Get Items": "Holen Artikel", + "Items": "Artikel", + "Maintenance Schedule": "Wartungsplan", + "Maintenance Schedule Detail": "Wartungsplan Details", + "Maintenance Schedule Item": "Wartungsplan Artikel", + "Mobile No": "In Mobile", + "Sales Order No": "In Sales Order", + "Schedule": "Planen", + "Status": "Status", + "Submitted": "Eingereicht", + "Support": "Unterst\u00fctzen", + "Territory": "Gebiet", + "Transaction Date": "Transaction Datum" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule_detail/locale/de-doc.json b/support/doctype/maintenance_schedule_detail/locale/de-doc.json new file mode 100644 index 0000000000..02813e6cb7 --- /dev/null +++ b/support/doctype/maintenance_schedule_detail/locale/de-doc.json @@ -0,0 +1,10 @@ +{ + "Actual Date": "Aktuelles Datum", + "Incharge Name": "InCharge Namen", + "Item Code": "Item Code", + "Item Name": "Item Name", + "Maintenance Schedule Detail": "Wartungsplan Details", + "Scheduled Date": "Voraussichtlicher", + "Serial No": "Serial In", + "Support": "Unterst\u00fctzen" +} \ No newline at end of file diff --git a/support/doctype/maintenance_schedule_item/locale/_messages_doc.json b/support/doctype/maintenance_schedule_item/locale/_messages_doc.json index 1aa718882d..267141f3d5 100644 --- a/support/doctype/maintenance_schedule_item/locale/_messages_doc.json +++ b/support/doctype/maintenance_schedule_item/locale/_messages_doc.json @@ -10,10 +10,10 @@ "Support", "Random", "Serial No", - "Against Docname", - "Incharge Name", "Quarterly", + "Against Docname", "Half Yearly", + "Incharge Name", "Start Date", "Weekly", "Item Code" diff --git a/support/doctype/maintenance_schedule_item/locale/de-doc.json b/support/doctype/maintenance_schedule_item/locale/de-doc.json new file mode 100644 index 0000000000..d02605855f --- /dev/null +++ b/support/doctype/maintenance_schedule_item/locale/de-doc.json @@ -0,0 +1,20 @@ +{ + "Against Docname": "Vor DocName", + "Description": "Beschreibung", + "End Date": "Enddatum", + "Half Yearly": "Halbjahresfinanzbericht", + "Incharge Name": "InCharge Namen", + "Item Code": "Item Code", + "Item Name": "Item Name", + "Maintenance Schedule Item": "Wartungsplan Artikel", + "Monthly": "Monatlich", + "No of Visits": "Anzahl der Besuche", + "Periodicity": "Periodizit\u00e4t", + "Quarterly": "Viertelj\u00e4hrlich", + "Random": "Zuf\u00e4llig", + "Serial No": "Serial In", + "Start Date": "Startdatum", + "Support": "Unterst\u00fctzen", + "Weekly": "W\u00f6chentlich", + "Yearly": "J\u00e4hrlich" +} \ No newline at end of file diff --git a/support/doctype/maintenance_visit/locale/de-doc.json b/support/doctype/maintenance_visit/locale/de-doc.json new file mode 100644 index 0000000000..360bfba27e --- /dev/null +++ b/support/doctype/maintenance_visit/locale/de-doc.json @@ -0,0 +1,38 @@ +{ + "Address": "Adresse", + "Amended From": "Ge\u00e4ndert von", + "Amendment Date": "\u00c4nderung Datum", + "Breakdown": "Zusammenbruch", + "Company": "Firma", + "Completion Status": "Completion Status", + "Contact": "Kontakt", + "Contact Email": "Kontakt per E-Mail", + "Contact Info": "Kontakt Info", + "Contact Person": "Ansprechpartner", + "Customer": "Kunde", + "Customer Address": "Kundenadresse", + "Customer Details": "Customer Details", + "Customer Feedback": "Kundenfeedback", + "Customer Group": "Customer Group", + "Customer Issue No": "Kunden Issue No", + "Customer Name": "Name des Kunden", + "Fiscal Year": "Gesch\u00e4ftsjahr", + "Fully Completed": "Vollst\u00e4ndig ausgef\u00fcllte", + "Get Items": "Holen Artikel", + "Maintenance Date": "Wartung Datum", + "Maintenance Details": "Wartung Einzelheiten", + "Maintenance Schedule": "Wartungsplan", + "Maintenance Time": "Wartung Zeit", + "Maintenance Type": "Wartung Type", + "Maintenance Visit": "Wartung Besuch", + "Maintenance Visit Purpose": "Wartung Visit Zweck", + "Mobile No": "In Mobile", + "More Info": "Mehr Info", + "Partially Completed": "Teilweise abgeschlossen", + "Sales Order No": "In Sales Order", + "Scheduled": "Geplant", + "Status": "Status", + "Support": "Unterst\u00fctzen", + "Territory": "Gebiet", + "Unscheduled": "Au\u00dferplanm\u00e4\u00dfig" +} \ No newline at end of file diff --git a/support/doctype/maintenance_visit_purpose/locale/_messages_doc.json b/support/doctype/maintenance_visit_purpose/locale/_messages_doc.json index 47f0d95cc2..b52717c12b 100644 --- a/support/doctype/maintenance_visit_purpose/locale/_messages_doc.json +++ b/support/doctype/maintenance_visit_purpose/locale/_messages_doc.json @@ -1,5 +1,4 @@ [ - "Against Document Detail No", "Item Name", "Description", "Maintenance Visit Purpose", @@ -7,6 +6,7 @@ "Against Document No", "Serial No", "Work Done", + "Against Document Detail No", "Service Person", "Document Type", "Item Code" diff --git a/support/doctype/maintenance_visit_purpose/locale/de-doc.json b/support/doctype/maintenance_visit_purpose/locale/de-doc.json new file mode 100644 index 0000000000..5dbf85d1b6 --- /dev/null +++ b/support/doctype/maintenance_visit_purpose/locale/de-doc.json @@ -0,0 +1,13 @@ +{ + "Against Document Detail No": "Vor Document Detailaufnahme", + "Against Document No": "Gegen Dokument Nr.", + "Description": "Beschreibung", + "Document Type": "Document Type", + "Item Code": "Item Code", + "Item Name": "Item Name", + "Maintenance Visit Purpose": "Wartung Visit Zweck", + "Serial No": "Serial In", + "Service Person": "Service Person", + "Support": "Unterst\u00fctzen", + "Work Done": "Arbeit" +} \ No newline at end of file diff --git a/support/doctype/newsletter/locale/_messages_doc.json b/support/doctype/newsletter/locale/_messages_doc.json index 7ebe9e3d56..6b608b5973 100644 --- a/support/doctype/newsletter/locale/_messages_doc.json +++ b/support/doctype/newsletter/locale/_messages_doc.json @@ -3,7 +3,7 @@ "Create and Send Newsletters", "Support", "Lead Source", - "Lead Status", + "Custom", "Test", "Test Email Id", "Supplier", @@ -18,7 +18,7 @@ "Send to this list", "Contact", "A Lead with this email id should exist", - "Custom", + "Lead Status", "NL-", "Test the Newsletter", "Check how the newsletter looks in an email by sending it to your email.", diff --git a/support/doctype/newsletter/locale/de-doc.json b/support/doctype/newsletter/locale/de-doc.json new file mode 100644 index 0000000000..b58e626592 --- /dev/null +++ b/support/doctype/newsletter/locale/de-doc.json @@ -0,0 +1,32 @@ +{ + "A Lead with this email id should exist": "Ein Lead mit dieser E-Mail-ID sollte vorhanden sein", + "Check how the newsletter looks in an email by sending it to your email.": "Pr\u00fcfen Sie, wie der Newsletter in einer E-Mail aussieht, indem es an deine E-Mail.", + "Comma separated list of email addresses": "Durch Komma getrennte Liste von E-Mail-Adressen", + "Contact": "Kontakt", + "Contact Type": "Kontakt Typ", + "Create and Send Newsletters": "Erstellen und Senden Newsletters", + "Custom": "Brauch", + "Customer": "Kunde", + "Email Sent?": "E-Mail gesendet?", + "If specified, send the newsletter using this email address": "Wenn angegeben, senden sie den Newsletter mit dieser E-Mail-Adresse", + "Lead": "F\u00fchren", + "Lead Source": "Blei Quelle", + "Lead Status": "Lead-Status", + "Message": "Nachricht", + "NL-": "NL-", + "Naming Series": "Benennen Series", + "Newsletter": "Mitteilungsblatt", + "Newsletter Content": "Newsletter Inhalt", + "Newsletter Status": "Status Newsletter", + "Select who you want to send this newsletter to": "W\u00e4hlen Sie, wer Sie diesen Newsletter senden m\u00f6chten", + "Send From": "Senden Von", + "Send To": "Send To", + "Send To Type": "Send To Geben", + "Send to this list": "Senden Sie zu dieser Liste", + "Subject": "Thema", + "Supplier": "Lieferant", + "Support": "Unterst\u00fctzen", + "Test": "Test", + "Test Email Id": "Test Email Id", + "Test the Newsletter": "Testen Sie den Newsletter" +} \ No newline at end of file diff --git a/support/doctype/newsletter/locale/de-py.json b/support/doctype/newsletter/locale/de-py.json new file mode 100644 index 0000000000..5362d8e5f3 --- /dev/null +++ b/support/doctype/newsletter/locale/de-py.json @@ -0,0 +1,3 @@ +{ + "Please save the Newsletter before sending.": "Bitte bewahren Sie den Newsletter vor dem Versenden." +} \ No newline at end of file diff --git a/support/doctype/support_ticket/locale/_messages_doc.json b/support/doctype/support_ticket/locale/_messages_doc.json index db8b90d176..ab384b0432 100644 --- a/support/doctype/support_ticket/locale/_messages_doc.json +++ b/support/doctype/support_ticket/locale/_messages_doc.json @@ -18,10 +18,10 @@ "Customer", "Support Ticket", "Contact", - "Customer Name", + "Waiting for Customer", "Resolution Date", "Opening Date", - "Waiting for Customer", + "Customer Name", "Open", "Additional Info", "Subject" diff --git a/support/doctype/support_ticket/locale/de-doc.json b/support/doctype/support_ticket/locale/de-doc.json new file mode 100644 index 0000000000..82a8c34141 --- /dev/null +++ b/support/doctype/support_ticket/locale/de-doc.json @@ -0,0 +1,28 @@ +{ + "Additional Info": "Zus\u00e4tzliche Informationen", + "Closed": "Geschlossen", + "Contact": "Kontakt", + "Content Type": "Content Type", + "Customer": "Kunde", + "Customer Name": "Name des Kunden", + "Description": "Beschreibung", + "File List": "Dateiliste", + "First Responded On": "Zun\u00e4chst reagierte am", + "Hold": "Halten", + "Lead": "F\u00fchren", + "Naming Series": "Benennen Series", + "Open": "\u00d6ffnen", + "Opening Date": "Er\u00f6ffnungsdatum", + "Opening Time": "\u00d6ffnungszeit", + "Raised By (Email)": "Raised By (E-Mail)", + "Resolution Date": "Resolution Datum", + "Resolution Details": "Aufl\u00f6sung Einzelheiten", + "SUP": "SUP", + "Status": "Status", + "Subject": "Thema", + "Support": "Unterst\u00fctzen", + "Support Ticket": "Support Ticket", + "Thread HTML": "Themen HTML", + "To Reply": "Um Antworten", + "Waiting for Customer": "Warten auf Kunden" +} \ No newline at end of file diff --git a/support/module_def/support/locale/de-doc.json b/support/module_def/support/locale/de-doc.json new file mode 100644 index 0000000000..f94f32b04a --- /dev/null +++ b/support/module_def/support/locale/de-doc.json @@ -0,0 +1,5 @@ +{ + "Create and Send Newsletters": "Erstellen und Senden Newsletters", + "Support Analytics": "Unterst\u00fctzung Analytics", + "Support Home": "Support Home" +} \ No newline at end of file diff --git a/support/page/support_home/locale/de-js.json b/support/page/support_home/locale/de-js.json new file mode 100644 index 0000000000..a1b7e55284 --- /dev/null +++ b/support/page/support_home/locale/de-js.json @@ -0,0 +1,23 @@ +{ + "Analytics": "Analytics", + "Communication": "Kommunikation", + "Communication log.": "Communication log.", + "Customer Issue": "Das Anliegen des Kunden", + "Customer Issue against a Serial No (warranty).": "Das Anliegen des Kunden gegen eine Serial No (Garantie).", + "Documents": "Unterlagen", + "Email Settings": "E-Mail-Einstellungen", + "Maintenance Schedule": "Wartungsplan", + "Maintenance Visit": "Wartung Besuch", + "Masters": "Masters", + "Newsletter": "Mitteilungsblatt", + "Plan for scheduled maintenance contracts.": "Plan f\u00fcr geplante Wartungsvertr\u00e4ge.", + "Send Newsletters to your contacts, leads.": "Senden Sie Newsletter an Ihre Kontakte f\u00fchrt.", + "Serial No": "Serial In", + "Setup": "Setup", + "Setup to pull emails from support email account": "Richten Sie E-Mails von E-Mail-Account-Support ziehen", + "Single unit of an Item.": "Einzelger\u00e4t eines Elements.", + "Support Analytics": "Unterst\u00fctzung Analytics", + "Support Ticket": "Support Ticket", + "Support queries from customers via email or website.": "Support-Anfragen von Kunden via E-Mail oder Website.", + "Visit report for maintenance call.": "Bericht \u00fcber den Besuch f\u00fcr die Wartung Anruf." +} \ No newline at end of file diff --git a/translations/de.csv b/translations/de.csv new file mode 100644 index 0000000000..0308cd2224 --- /dev/null +++ b/translations/de.csv @@ -0,0 +1,3297 @@ +(Half Day),(Halber Tag) +against same operation,gegen dieselbe Operation +by Role,von Role +cannot be 0,nicht 0 sein kann +does not belong to the company:,nicht dem Unternehmen gehören: + has been freezed. \ Only Accounts Manager can do transaction against this account,Wurde eingefroren. \ Nur Accounts Manager kann Transaktion gegen dieses Konto zu tun +" is less than equals to zero in the system, \ valuation rate is mandatory for this item",Kleiner als gleich im System Null ist \ Bewertungskurs obligatorische zu diesem Artikel +is mandatory,zwingend +is mandatory for GL Entry,ist für GL Eintrag zwingend +is not a ledger,ist nicht ein Ledger +is not active,nicht aktiv + is now the default Fiscal Year. \ Please refresh your browser for the change to take effect.,"Ist nun der Standard Geschäftsjahr. \ Bitte Ihren Browser aktualisieren, damit die Änderungen wirksam werden." +or the BOM is cancelled or inactive,oder das BOM wird abgebrochen oder inaktiv +should be same as that in,sollte dieselbe wie die in +will become,werden +"""Company History""",Firmengeschichte +"""Team Members"" or ""Management""","Teammitglieder oder ""Management""" +"#,###","#,###" +"#,###.##","#,###.##" +"#,###.###","#,###.###" +"#,##,###.##","#,##,###.##" +"#.###,##","#.###,##" +% Delivered,% Lieferung +% Amount Billed,% Rechnungsbetrag +% Billed,% Billed +% Installed,% Installierte +% Ordered,% Geordnete +% Received,% Erhaltene +% of materials billed against this Delivery Note,% Der Materialien gegen diese Lieferschein abgerechnet +% of materials billed against this Purchase Order.,% Der Materialien gegen diese Bestellung in Rechnung gestellt. +% of materials billed against this Purchase Receipt,% Der Materialien gegen diese Kaufbeleg abgerechnet +% of materials billed against this Sales Order,% Der Materialien gegen diesen Kundenauftrag abgerechnet +% of materials delivered against this Delivery Note,% Der Materialien gegen diese Lieferschein +% of materials delivered against this Sales Order,% Der Materialien gegen diesen Kundenauftrag geliefert +% of materials ordered against this Purchase Requisition,% Der bestellten Materialien gegen diese Bestellanforderung +% of materials received against this Purchase Order,% Der Materialien erhalten gegen diese Bestellung +" can not be managed using Stock Reconciliation.\ You can add/delete Serial No directly, \ to modify stock of this item.",Kann nicht verwaltet mit Lager Versöhnung werden. \ Sie können zum Hinzufügen / Löschen Serial No direkt \ to stock dieses Artikels zu ändern. + does not exists in, existiert nicht in +* Will be calculated in the transaction.,* Wird in der Transaktion berechnet werden. +"**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.To distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**","** Budget Verteilung ** hilft Ihnen verteilen Sie Ihr Budget über Monate, wenn Sie Saisonalität in Ihrem business.To vertreiben ein Budget Verwendung dieser Verteilung, setzen Sie diesen ** Budget Verteilung ** in der ** Cost Center ** haben" +**Currency** Master,** Währung ** Meister +**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Geschäftsjahr ** ein Geschäftsjahr. Alle Buchungen und anderen wichtigen Transaktionen gegen ** Geschäftsjahr ** verfolgt. +0,0 +1,1 +2,2 +3,3 +4,4 +5,5 +6,6 +7,7 +8,8 +9,9 +1,1 +1 Currency = [?] FractionFor e.g. 1 USD = 100 Cent,1 Währung = [?] FractionFor beispielsweise 1 USD = 100 Cent +1. To maintain the customer wise item code and to make them searchable based on their code use this option,Ein. Um den Kunden kluge Artikel Code zu pflegen und um sie durchsuchbar basierend auf ihren Code um diese Option +10,10 +100,100 +11,11 +12,12 +12px,12px +13px,13px +14px,14px +15,15 +15px,15px +16px,16px +2,2 +2 days ago,Vor 2 Tagen +20,20 +25,25 +3,3 +30,30 +35,35 +4,4 +40,40 +45,45 +5,5 +50,50 +55,55 +6,6 +60,60 +65,65 +70,70 +75,75 +80,80 +85,85 +90,90 +95,95 +: It is linked to other active BOM(s),: Es wird mit anderen aktiven BOM (s) verbunden +: Mandatory for a Recurring Invoice.,: Obligatorisch für ein Recurring Invoice. +<,< +<=,<= +"
    To manage Customer Groups, click here"," Kundengruppen zu verwalten, klicken Sie hier " +"Manage Item Groups"," Artikel Gruppen verwalten " +"To manage Territory, click here"," Um Territory zu verwalten, klicken Sie hier " +"To manage Territory, click here"," Um Territory zu verwalten, klicken Sie hier " +"To manage Territory, click here"," Um Territory zu verwalten, klicken Sie hier " +"\

  • field:[fieldname] - By Field\
  • naming_series: - By Naming Series (field called naming_series must be present\
  • eval:[expression] - Evaluate an expression in python (self is doc)\
  • Prompt - Prompt user for a name\
  • [series] - Series by prefix (separated by a dot); for example PRE.#####\')"">Naming Options"," \
  • Feld: [Feldname] - Durch Feld \
  • naming_series: - durch die Benennung Series (Feld namens naming_series muss vorhanden sein \
  • eval: [Ausdruck] - Bewerten Sie einen Ausdruck in python (Selbst ist doc) \
  • Prompt - Benutzer nach einem Namen \
  • [Serie] - Series by Prefix (getrennt durch einen Punkt);. zum Beispiel PRE # # # # # \ ') ""> Naming Optionen " +Cancel allows you change Submitted documents by cancelling them and amending them., Abbrechen können Sie ändern eingereichten Unterlagen durch Vernichtung von ihnen und zur Änderung ihnen. +"To setup, please go to Setup > Naming Series"," Um einzurichten, gehen Sie bitte auf Setup> Naming Series " +#ERROR!:parse,# ERROR! +>,> +>=,> = +A,A +A Customer exists with same name,Ein Kunde gibt mit dem gleichen Namen +A Lead with this email id should exist,Ein Lead mit dieser E-Mail-ID sollte vorhanden sein +A Product is shown on the website and is linked to an item.,Ein Produkt wird auf der Website gezeigt und wird zu einem Element verbunden. +"A Product or a Service that is bought, sold or kept in stock.","Ein Produkt oder eine Dienstleistung, die gekauft, verkauft oder gehalten auf Lager." +A Supplier exists with same name,Ein Lieferant existiert mit dem gleichen Namen +A logical Warehouse against which stock entries are made.,Eine logische Warehouse gegen die Lager-Einträge vorgenommen werden. +A new popup will open that will ask you to select further conditions.,"Ein neues Pop-up öffnet das wird Sie bitten, weitere Bedingungen zu wählen." +A symbol for this currency. For e.g. $,Ein Symbol für diese Währung. Für z.B. $ +A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Ein Dritter Vertrieb / Händler / Kommissionär / affiliate / Vertragshändler verkauft die Unternehmen Produkte für eine Provision. +A user can have multiple values for a property.,Ein Benutzer kann mehrere Werte für eine Eigenschaft. +A+,A + +A-,A- +AB+,AB + +AB-,AB- +AMC Expiry Date,AMC Ablaufdatum +ATT,ATT +Abbr,Abk. +About,Über +About Us Settings,Über uns Settings +About Us Team Member,Über uns Team Member +Above Value,Vor Wert +Absent,Abwesend +Acceptance Criteria,Akzeptanzkriterien +Accepted,Akzeptiert +Accepted Quantity,Akzeptiert Menge +Accepted Warehouse,Akzeptiert Warehouse +Account,Konto +Account Balance,Kontostand +Account Details,Kontodetails +Account Head,Konto Leiter +Account Id,Konto-ID +Account Info,Kundendaten +Account Name,Account Name +Account Type,Kontotyp +Account:,Konto: +"Accounting entry frozen up to this date, nobody can do / modify entry except authorized person","Buchhaltungseingaben bis zu diesem Zeitpunkt eingefroren, kann niemand / nicht ändern Eintrag außer autorisierten Person" +Accounting journal entries.,Accounting Journaleinträge. +Accounts,Konten +Accounts Browser,Konten Browser +Accounts Frozen Upto,Konten Bis gefroren +Accounts Home,Accounts Startseite +Accounts Payable,Kreditorenbuchhaltung +Accounts Receivable,Debitorenbuchhaltung +Action,Aktion +Action Detail,Aktion Details +Action html,Aktion html +Active,Aktiv +Active: Will extract emails from,Aktive: Wird E-Mails zu extrahieren +Activity,Aktivität +Activity Log,Activity Log +Activity Name,Aktivität Name +Activity Type,Art der Tätigkeit +Actual,Tatsächlich +Actual Amount,Istmenge +Actual Budget,Tatsächliche Budget +Actual Completion Date,Tatsächliche Datum der Fertigstellung +Actual Date,Aktuelles Datum +Actual End Date,Actual End Datum +Actual End Time,Tatsächliche Endzeit +Actual Qty,Tatsächliche Menge +Actual Qty (at source/target),Tatsächliche Menge (an der Quelle / Ziel) +Actual Qty After Transaction,Tatsächliche Menge Nach Transaction +Actual Quantity,Tatsächliche Menge +Actual Start Date,Tatsächliche Startdatum +Actual Start Time,Tatsächliche Startzeit +Add,Hinzufügen +Add / Edit Taxes and Charges,Hinzufügen / Bearbeiten Steuern und Abgaben +Add A New Rule,Fügen Sie eine neue Regel +Add A Property,Fügen Sie eine Eigenschaft +Add Attachments,Anhänge hinzufügen +Add Bookmark,Lesezeichen hinzufügen +Add CSS,Fügen Sie CSS +Add Column,Spalte hinzufügen +Add Message,Nachricht hinzufügen +Add New Permission Rule,Add New Permission Rule +Add Reply,Fügen Sie Antworten +Add Terms and Conditions for the Purchase Receipt. You can also prepare a Terms and Conditions Master and use the Template.,Hinzufügen Geschäftsbedingungen für den Kaufbeleg. Sie können auch eine AGB-Master und verwenden Sie die Vorlage. +Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template,Fügen AGB für die Bestellanforderung. Sie können auch eine AGB-Master und verwenden Sie die Vorlage +"Add Terms and Conditions for the Quotation like Payment Terms, Validity of Offer etc. You can also prepare a Terms and Conditions Master and use the Template","Fügen AGB für das Angebot wie Zahlungsbedingungen, Gültigkeit des Angebots etc. Sie können auch ein AGB-Master und verwenden Sie die Vorlage" +Add code as <script>,Fügen Sie Code wie \n\n\n\n\n
    \n\t\n\t\n
    \n\n", + "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", "module": "Selling", "name": "__common__", "standard": "Yes" diff --git a/selling/Print Format/Quotation Modern/Quotation Modern.txt b/selling/Print Format/Quotation Modern/Quotation Modern.txt index a323fbf829..1919b93add 100644 --- a/selling/Print Format/Quotation Modern/Quotation Modern.txt +++ b/selling/Print Format/Quotation Modern/Quotation Modern.txt @@ -1,15 +1,15 @@ [ { - "creation": "2012-04-17 11:29:12", + "creation": "2013-02-19 16:23:17", "docstatus": 0, - "modified": "2013-02-19 15:44:22", + "modified": "2013-03-05 11:57:53", "modified_by": "Administrator", "owner": "Administrator" }, { "doc_type": "Quotation", "doctype": "Print Format", - "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", + "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", "module": "Selling", "name": "__common__", "standard": "Yes" diff --git a/selling/Print Format/Quotation Spartan/Quotation Spartan.txt b/selling/Print Format/Quotation Spartan/Quotation Spartan.txt index d2e04dda8d..461bc0b7b1 100644 --- a/selling/Print Format/Quotation Spartan/Quotation Spartan.txt +++ b/selling/Print Format/Quotation Spartan/Quotation Spartan.txt @@ -1,15 +1,15 @@ [ { - "creation": "2012-04-17 11:29:12", + "creation": "2013-02-19 16:23:17", "docstatus": 0, - "modified": "2013-02-19 15:45:22", + "modified": "2013-03-05 11:56:50", "modified_by": "Administrator", "owner": "Administrator" }, { "doc_type": "Quotation", "doctype": "Print Format", - "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", + "html": "\n\n\n\n\n\n\n\n\n\n\n\n
    \n\t\n\t\n
    \n\n", "module": "Selling", "name": "__common__", "standard": "Yes" From 1f3a5c379877fd102cffe30e9672a70c6e0f73a3 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 5 Mar 2013 12:25:15 +0530 Subject: [PATCH 090/982] use validate value method to validate valuation rate should be greater than 0 in stock entry --- accounts/doctype/sales_invoice/sales_invoice.py | 3 ++- stock/doctype/stock_entry/stock_entry.py | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index e5e53f2511..6ca804e7bc 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -17,7 +17,8 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import add_days, cint, cstr, date_diff, flt, getdate, nowdate, sendmail +from webnotes.utils import add_days, cint, cstr, date_diff, flt, getdate, nowdate +from webnotes.utils.email_lib import sendmail from webnotes.utils import comma_and from webnotes.model.doc import make_autoname from webnotes.model.bean import getlist diff --git a/stock/doctype/stock_entry/stock_entry.py b/stock/doctype/stock_entry/stock_entry.py index 05d7460773..278c283284 100644 --- a/stock/doctype/stock_entry/stock_entry.py +++ b/stock/doctype/stock_entry/stock_entry.py @@ -207,9 +207,8 @@ class DocType(TransactionBase): def validate_incoming_rate(self): for d in getlist(self.doclist, 'mtn_details'): - if not flt(d.incoming_rate) and d.t_warehouse: - msgprint("Rate is mandatory for Item: %s at row %s" % (d.item_code, d.idx), - raise_exception=1) + if d.t_warehouse: + self.validate_value("incoming_rate", ">", 0, d) def validate_bom(self): for d in getlist(self.doclist, 'mtn_details'): From f10f2513fa96409b9bc69435a94efe632857f0a0 Mon Sep 17 00:00:00 2001 From: mayur-patel Date: Tue, 5 Mar 2013 18:20:57 +1100 Subject: [PATCH 091/982] Added checks to see if the selected leave type allows negative balance. If it does then warn the user and continue with saving the form else just warn the user and don't save the form data. --- hr/doctype/leave_application/leave_application.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/hr/doctype/leave_application/leave_application.py b/hr/doctype/leave_application/leave_application.py index 12e715eb8e..80504d09c8 100755 --- a/hr/doctype/leave_application/leave_application.py +++ b/hr/doctype/leave_application/leave_application.py @@ -124,13 +124,15 @@ class DocType(DocListController): if not is_lwp(self.doc.leave_type): self.doc.leave_balance = get_leave_balance(self.doc.employee, self.doc.leave_type, self.doc.fiscal_year)["leave_balance"] - # Allowing user to add leavs which will result in negative balance. This is needed for Sick Leave and other common exceptional cases. - #System will check and warn but continue with saving the application. - #This may needs to be changed if other ERPNext customer may not want this behaviour. + if self.doc.leave_balance - self.doc.total_leave_days < 0: - msgprint("There is not enough leave balance for Leave Type: %s" % \ - (self.doc.leave_type,)) - # , raise_exception=1) + + # check if this leave type allow the remaining balance to be in negative. If yes then warn the user and continue to save else warn the user and don't save. + if webnotes.conn.get_value("Leave Type", self.doc.leave_type,"allow_negative"): + msgprint("There is not enough leave balance for Leave Type - new: %s" %(self.doc.leave_type,)) + # warn the user but don't save the form. + else: + msgprint("There is not enough leave balance for Leave Type - new: %s" %(self.doc.leave_type,), raise_exception=1) def validate_leave_overlap(self): if not self.doc.name: From 9e69dc5ad84034f6c10361ca7b612b076658c601 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 5 Mar 2013 13:39:28 +0530 Subject: [PATCH 092/982] fix in material request test case --- .../material_request/test_material_request.py | 49 ++++++++++++++++++- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/stock/doctype/material_request/test_material_request.py b/stock/doctype/material_request/test_material_request.py index ae40858564..44f82d2cf1 100644 --- a/stock/doctype/material_request/test_material_request.py +++ b/stock/doctype/material_request/test_material_request.py @@ -16,6 +16,43 @@ class TestMaterialRequest(unittest.TestCase): "warehouse": "_Test Warehouse"}, "indented_qty")), qty1) self.assertEqual(flt(webnotes.conn.get_value("Bin", {"item_code": "_Test Item Home Desktop 200", "warehouse": "_Test Warehouse"}, "indented_qty")), qty2) + + def _insert_stock_entry(self, qty1, qty2): + se = webnotes.bean([ + { + "company": "_Test Company", + "doctype": "Stock Entry", + "posting_date": "2013-03-01", + "posting_time": "00:00:00", + "purpose": "Material Receipt" + }, + { + "conversion_factor": 1.0, + "doctype": "Stock Entry Detail", + "item_code": "_Test Item Home Desktop 100", + "parentfield": "mtn_details", + "incoming_rate": 100, + "qty": qty1, + "stock_uom": "_Test UOM", + "transfer_qty": qty1, + "uom": "_Test UOM", + "t_warehouse": "_Test Warehouse 1", + }, + { + "conversion_factor": 1.0, + "doctype": "Stock Entry Detail", + "item_code": "_Test Item Home Desktop 200", + "parentfield": "mtn_details", + "incoming_rate": 100, + "qty": qty2, + "stock_uom": "_Test UOM", + "transfer_qty": qty2, + "uom": "_Test UOM", + "t_warehouse": "_Test Warehouse 1", + }, + ]) + se.insert() + se.submit() def test_completed_qty_for_purchase(self): webnotes.conn.sql("""delete from `tabBin`""") @@ -70,6 +107,7 @@ class TestMaterialRequest(unittest.TestCase): def test_completed_qty_for_transfer(self): webnotes.conn.sql("""delete from `tabBin`""") + webnotes.conn.sql("""delete from `tabStock Ledger Entry`""") # submit material request of type Purchase mr = webnotes.bean(copy=test_records[0]) @@ -87,7 +125,7 @@ class TestMaterialRequest(unittest.TestCase): ["Material Request Item", "Stock Entry Detail"]], mr.doc.name) se_doclist[0].fields.update({ "posting_date": "2013-03-01", - "posting_time": "00:00" + "posting_time": "01:00" }) se_doclist[1].fields.update({ "qty": 27.0, @@ -102,6 +140,9 @@ class TestMaterialRequest(unittest.TestCase): "incoming_rate": 1.0 }) + # make available the qty in _Test Warehouse 1 before transfer + self._insert_stock_entry(27.0, 1.5) + # check for stopped status of Material Request se = webnotes.bean(copy=se_doclist) se.insert() @@ -127,6 +168,7 @@ class TestMaterialRequest(unittest.TestCase): def test_completed_qty_for_over_transfer(self): webnotes.conn.sql("""delete from `tabBin`""") + webnotes.conn.sql("""delete from `tabStock Ledger Entry`""") # submit material request of type Purchase mr = webnotes.bean(copy=test_records[0]) @@ -158,6 +200,9 @@ class TestMaterialRequest(unittest.TestCase): "s_warehouse": "_Test Warehouse 1", "incoming_rate": 1.0 }) + + # make available the qty in _Test Warehouse 1 before transfer + self._insert_stock_entry(60.0, 3.0) # check for stopped status of Material Request se = webnotes.bean(copy=se_doclist) @@ -245,5 +290,5 @@ test_records = [ "uom": "_Test UOM", "warehouse": "_Test Warehouse" } - ] + ], ] \ No newline at end of file From 547604cf5af189378fdc46a3c89df91aa99bb027 Mon Sep 17 00:00:00 2001 From: mayur-patel Date: Tue, 5 Mar 2013 19:11:53 +1100 Subject: [PATCH 093/982] Added a new field called allow_negative. This field was added for allowing a negative balance for a particular leave type. --- hr/doctype/leave_type/leave_type.txt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/hr/doctype/leave_type/leave_type.txt b/hr/doctype/leave_type/leave_type.txt index 5524bcfb14..3087caaa1a 100644 --- a/hr/doctype/leave_type/leave_type.txt +++ b/hr/doctype/leave_type/leave_type.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:15", + "creation": "2013-02-21 09:55:58", "docstatus": 0, - "modified": "2013-01-22 14:47:02", + "modified": "2013-03-05 08:06:43", "modified_by": "Administrator", "owner": "Administrator" }, @@ -91,6 +91,12 @@ "fieldtype": "Check", "label": "Is LWP" }, + { + "doctype": "DocField", + "fieldname": "allow_negative", + "fieldtype": "Check", + "label": "Allow Negative Balance" + }, { "doctype": "DocPerm", "role": "System Manager" From 5640a69e78a9d1ffdbaebffaa03de331535129df Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 5 Mar 2013 14:12:34 +0530 Subject: [PATCH 094/982] updated sync --- .../mode_of_payment/mode_of_payment.txt | 1 - patches/patch_list.py | 3 +- .../doctype/activity_type/activity_type.txt | 58 +++++++++---------- projects/doctype/time_log/time_log.txt | 8 ++- startup/install.py | 2 +- 5 files changed, 36 insertions(+), 36 deletions(-) diff --git a/accounts/doctype/mode_of_payment/mode_of_payment.txt b/accounts/doctype/mode_of_payment/mode_of_payment.txt index 902ab37cc3..2d019964fc 100644 --- a/accounts/doctype/mode_of_payment/mode_of_payment.txt +++ b/accounts/doctype/mode_of_payment/mode_of_payment.txt @@ -59,7 +59,6 @@ }, { "description": "Default Bank / Cash account will be automatically updated in POS Invoice when this mode is selected.", - "colour": "White:FFF", "doctype": "DocField", "label": "Default Account", "fieldname": "default_account", diff --git a/patches/patch_list.py b/patches/patch_list.py index dd7ff06e64..ed4e82e964 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -204,5 +204,6 @@ patch_list = [ "patches.march_2013.update_po_prevdoc_doctype", "patches.february_2013.p09_timesheets", "execute:(not webnotes.conn.exists('UOM', 'Hour')) and webnotes.doc({'uom_name': 'Hour', 'doctype': 'UOM', 'name': 'Hour'}).insert()", - "patches.march_2013.p01_c_form" + "patches.march_2013.p01_c_form", + "execute:webnotes.conn.sql('update tabDocPerm set `submit`=1, `cancel`=1, `amend`=1 where parent=\"Time Log\"')" ] \ No newline at end of file diff --git a/projects/doctype/activity_type/activity_type.txt b/projects/doctype/activity_type/activity_type.txt index 3bde64786b..028db2bd4d 100644 --- a/projects/doctype/activity_type/activity_type.txt +++ b/projects/doctype/activity_type/activity_type.txt @@ -1,60 +1,56 @@ [ { - "owner": "Administrator", + "creation": "2013-03-05 12:53:23", "docstatus": 0, - "creation": "2012-07-03 13:30:51", + "modified": "2013-03-05 12:54:22", "modified_by": "Administrator", - "modified": "2012-11-16 12:14:21" + "owner": "Administrator" }, { - "section_style": "Simple", - "module": "Projects", - "server_code_error": " ", - "in_dialog": 1, - "document_type": "Master", "autoname": "field:activity_type", - "name": "__common__", - "colour": "White:FFF", "doctype": "DocType", - "version": 1 + "document_type": "Master", + "in_dialog": 1, + "module": "Projects", + "name": "__common__" }, { - "parent": "Activity Type", - "name": "__common__", "doctype": "DocField", - "reqd": 1, - "parenttype": "DocType", "fieldname": "activity_type", "fieldtype": "Data", "label": "Activity Type", - "permlevel": 0, - "parentfield": "fields" - }, - { "name": "__common__", "parent": "Activity Type", - "read": 1, - "create": 1, - "doctype": "DocPerm", - "write": 1, + "parentfield": "fields", "parenttype": "DocType", - "report": 1, "permlevel": 0, - "parentfield": "permissions" + "reqd": 1 }, { - "name": "Activity Type", - "doctype": "DocType" + "create": 1, + "doctype": "DocPerm", + "name": "__common__", + "parent": "Activity Type", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "read": 1, + "report": 1, + "write": 1 + }, + { + "doctype": "DocType", + "name": "Activity Type" }, { "doctype": "DocField" }, { - "role": "System Manager", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "System Manager" }, { - "role": "Projects User", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "Projects User" } ] \ No newline at end of file diff --git a/projects/doctype/time_log/time_log.txt b/projects/doctype/time_log/time_log.txt index cf815db57f..838d3f178a 100644 --- a/projects/doctype/time_log/time_log.txt +++ b/projects/doctype/time_log/time_log.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-03-04 02:39:45", + "creation": "2013-03-05 10:52:02", "docstatus": 0, - "modified": "2013-03-04 02:48:12", + "modified": "2013-03-05 10:54:07", "modified_by": "Administrator", "owner": "Administrator" }, @@ -24,6 +24,8 @@ "parenttype": "DocType" }, { + "amend": 1, + "cancel": 1, "doctype": "DocPerm", "name": "__common__", "parent": "Time Log", @@ -31,6 +33,8 @@ "parenttype": "DocType", "permlevel": 0, "read": 1, + "report": 1, + "submit": 1, "write": 1 }, { diff --git a/startup/install.py b/startup/install.py index f584769beb..dfbd2899d0 100644 --- a/startup/install.py +++ b/startup/install.py @@ -162,7 +162,7 @@ def import_defaults(): # UOM {'uom_name': 'Unit', 'doctype': 'UOM', 'name': 'Unit'}, - {'uom_name': 'Unit', 'doctype': 'UOM', 'name': 'Hour'}, + {'uom_name': 'Hour', 'doctype': 'UOM', 'name': 'Hour'}, {'uom_name': 'Box', 'doctype': 'UOM', 'name': 'Box'}, {'uom_name': 'Ft', 'doctype': 'UOM', 'name': 'Ft'}, {'uom_name': 'Kg', 'doctype': 'UOM', 'name': 'Kg'}, From 07287e8b93b2439031b0b5158af095e09f449fdd Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 5 Mar 2013 14:19:48 +0530 Subject: [PATCH 095/982] removed colour fields from txt files --- .../doctype/budget_control/budget_control.txt | 24 ++- accounts/doctype/mis_control/mis_control.txt | 24 ++- .../multi_ledger_report_detail.txt | 39 ++--- .../trend_analyzer_control.txt | 20 +-- .../purchase_common/purchase_common.txt | 24 ++- .../quality_inspection_reading.txt | 102 ++++++----- home/doctype/feed/feed.txt | 49 +++--- .../employee_education/employee_education.txt | 64 ++++--- .../employee_internal_work_history.txt | 65 ++++--- .../employee_training/employee_training.txt | 56 +++--- .../expense_claim_type/expense_claim_type.txt | 72 ++++---- hr/doctype/holiday/holiday.txt | 38 ++-- hr/doctype/salary_manager/salary_manager.txt | 144 ++++++++-------- .../project_milestone/project_milestone.txt | 50 +++--- .../doctype/industry_type/industry_type.txt | 64 ++++--- selling/doctype/sales_common/sales_common.txt | 24 ++- .../authorization_control.txt | 22 ++- .../contact_control/contact_control.txt | 46 +++-- .../doctype/email_settings/email_settings.txt | 120 ++++++------- .../naming_series_options.txt | 60 ++++--- .../sales_browser_control.txt | 22 ++- setup/doctype/series_detail/series_detail.txt | 43 +++-- setup/doctype/setup_control/setup_control.txt | 22 ++- setup/doctype/sms_parameter/sms_parameter.txt | 37 ++-- setup/doctype/state/state.txt | 64 ++++--- .../workflow_action_detail.txt | 41 +++-- .../workflow_engine/workflow_engine.txt | 24 ++- setup/doctype/workflow_rule/workflow_rule.txt | 162 ++++++++---------- .../workflow_rule_detail.txt | 73 ++++---- startup/install.py | 1 - .../item_customer_detail.txt | 54 +++--- .../item_quality_inspection_parameter.txt | 44 +++-- stock/doctype/item_supplier/item_supplier.txt | 37 ++-- .../landed_cost_purchase_receipt.txt | 44 +++-- .../uom_conversion_detail.txt | 36 ++-- utilities/doctype/answer/answer.txt | 60 ++++--- utilities/doctype/gl_mapper/gl_mapper.txt | 60 ++++--- .../gl_mapper_detail/gl_mapper_detail.txt | 98 ++++++----- .../profile_control/profile_control.txt | 24 ++- utilities/doctype/sms_log/sms_log.txt | 51 +++--- .../doctype/sms_receiver/sms_receiver.txt | 52 +++--- .../doctype/trash_control/trash_control.txt | 20 +-- website/doctype/related_page/related_page.txt | 33 ++-- website/doctype/top_bar_item/top_bar_item.txt | 43 +++-- 44 files changed, 1075 insertions(+), 1177 deletions(-) diff --git a/accounts/doctype/budget_control/budget_control.txt b/accounts/doctype/budget_control/budget_control.txt index b27e65f6ce..e86fef8b5b 100644 --- a/accounts/doctype/budget_control/budget_control.txt +++ b/accounts/doctype/budget_control/budget_control.txt @@ -1,24 +1,22 @@ [ { - "owner": "nabin@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:35:41", + "docstatus": 0, + "modified": "2012-03-27 14:35:41", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:41" + "owner": "nabin@webnotestech.com" }, { - "section_style": "Simple", - "name": "__common__", - "colour": "White:FFF", - "module": "Accounts", - "show_in_menu": 0, - "version": 23, - "server_code_error": " ", "doctype": "DocType", - "issingle": 1 + "issingle": 1, + "module": "Accounts", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 23 }, { - "name": "Budget Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "Budget Control" } ] \ No newline at end of file diff --git a/accounts/doctype/mis_control/mis_control.txt b/accounts/doctype/mis_control/mis_control.txt index 1936fb6b81..5d42bdef83 100644 --- a/accounts/doctype/mis_control/mis_control.txt +++ b/accounts/doctype/mis_control/mis_control.txt @@ -1,24 +1,22 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:49", + "docstatus": 0, + "modified": "2012-03-27 14:35:49", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:49" + "owner": "Administrator" }, { - "section_style": "Simple", - "name": "__common__", - "colour": "White:FFF", - "module": "Accounts", - "show_in_menu": 0, - "version": 120, - "server_code_error": " ", "doctype": "DocType", - "issingle": 1 + "issingle": 1, + "module": "Accounts", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 120 }, { - "name": "MIS Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "MIS Control" } ] \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt b/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt index aee2b90c85..df91e1c7b7 100755 --- a/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt +++ b/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt @@ -1,38 +1,37 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:44", + "docstatus": 0, + "modified": "2012-03-27 14:35:44", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:44" + "owner": "Administrator" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Accounts", "doctype": "DocType", - "version": 3, - "show_in_menu": 0 + "istable": 1, + "module": "Accounts", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 3 }, { - "parent": "Multi Ledger Report Detail", - "reqd": 1, - "name": "__common__", "doctype": "DocField", - "label": "Account", - "width": "300px", - "parenttype": "DocType", - "options": "Account", "fieldname": "account", "fieldtype": "Link", + "label": "Account", + "name": "__common__", + "options": "Account", + "parent": "Multi Ledger Report Detail", + "parentfield": "fields", + "parenttype": "DocType", "permlevel": 0, - "parentfield": "fields" + "reqd": 1, + "width": "300px" }, { - "name": "Multi Ledger Report Detail", - "doctype": "DocType" + "doctype": "DocType", + "name": "Multi Ledger Report Detail" }, { "doctype": "DocField" diff --git a/accounts/doctype/trend_analyzer_control/trend_analyzer_control.txt b/accounts/doctype/trend_analyzer_control/trend_analyzer_control.txt index 092cd6eaef..67c91ee29e 100755 --- a/accounts/doctype/trend_analyzer_control/trend_analyzer_control.txt +++ b/accounts/doctype/trend_analyzer_control/trend_analyzer_control.txt @@ -1,25 +1,23 @@ [ { - "owner": "saumil@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:35:49", + "docstatus": 0, + "modified": "2012-03-27 14:35:49", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:49" + "owner": "saumil@webnotestech.com" }, { - "section_style": "Simple", - "in_create": 1, - "module": "Accounts", - "server_code_error": " ", "doctype": "DocType", + "in_create": 1, "issingle": 1, - "read_only": 1, + "module": "Accounts", "name": "__common__", - "colour": "White:FFF", + "read_only": 1, + "section_style": "Simple", "version": 11 }, { - "name": "Trend Analyzer Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "Trend Analyzer Control" } ] \ No newline at end of file diff --git a/buying/doctype/purchase_common/purchase_common.txt b/buying/doctype/purchase_common/purchase_common.txt index 2d38c7eb32..15ef5743f3 100644 --- a/buying/doctype/purchase_common/purchase_common.txt +++ b/buying/doctype/purchase_common/purchase_common.txt @@ -1,24 +1,22 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:51", + "docstatus": 0, + "modified": "2012-03-27 14:35:51", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:51" + "owner": "Administrator" }, { - "section_style": "Simple", - "name": "__common__", - "colour": "White:FFF", - "module": "Buying", - "show_in_menu": 0, - "version": 187, - "server_code_error": " ", "doctype": "DocType", - "issingle": 1 + "issingle": 1, + "module": "Buying", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 187 }, { - "name": "Purchase Common", - "doctype": "DocType" + "doctype": "DocType", + "name": "Purchase Common" } ] \ No newline at end of file diff --git a/buying/doctype/quality_inspection_reading/quality_inspection_reading.txt b/buying/doctype/quality_inspection_reading/quality_inspection_reading.txt index 4f5480cd7a..c9f6b2d7b8 100644 --- a/buying/doctype/quality_inspection_reading/quality_inspection_reading.txt +++ b/buying/doctype/quality_inspection_reading/quality_inspection_reading.txt @@ -1,140 +1,138 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:52", + "docstatus": 0, + "modified": "2012-03-27 14:35:52", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:52" + "owner": "Administrator" }, { - "section_style": "Tray", + "autoname": "QASD/.#####", + "doctype": "DocType", "istable": 1, "module": "Buying", - "server_code_error": " ", - "doctype": "DocType", - "autoname": "QASD/.#####", "name": "__common__", - "colour": "White:FFF", + "section_style": "Tray", "show_in_menu": 0, "version": 2 }, { + "doctype": "DocField", "name": "__common__", "parent": "Quality Inspection Reading", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Quality Inspection Reading", - "doctype": "DocType" + "doctype": "DocType", + "name": "Quality Inspection Reading" }, { - "oldfieldtype": "Data", "doctype": "DocField", - "label": "Parameter", - "oldfieldname": "specification", "fieldname": "specification", "fieldtype": "Data", + "label": "Parameter", + "oldfieldname": "specification", + "oldfieldtype": "Data", "reqd": 1 }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "value", + "fieldtype": "Data", "label": "Acceptance Criteria", "oldfieldname": "value", - "fieldname": "value", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_1", + "fieldtype": "Data", "label": "Reading 1", "oldfieldname": "reading_1", - "fieldname": "reading_1", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_2", + "fieldtype": "Data", "label": "Reading 2", "oldfieldname": "reading_2", - "fieldname": "reading_2", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_3", + "fieldtype": "Data", "label": "Reading 3", "oldfieldname": "reading_3", - "fieldname": "reading_3", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_4", + "fieldtype": "Data", "label": "Reading 4", "oldfieldname": "reading_4", - "fieldname": "reading_4", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_5", + "fieldtype": "Data", "label": "Reading 5", "oldfieldname": "reading_5", - "fieldname": "reading_5", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_6", + "fieldtype": "Data", "label": "Reading 6", "oldfieldname": "reading_6", - "fieldname": "reading_6", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_7", + "fieldtype": "Data", "label": "Reading 7", "oldfieldname": "reading_7", - "fieldname": "reading_7", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_8", + "fieldtype": "Data", "label": "Reading 8", "oldfieldname": "reading_8", - "fieldname": "reading_8", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_9", + "fieldtype": "Data", "label": "Reading 9", "oldfieldname": "reading_9", - "fieldname": "reading_9", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "reading_10", + "fieldtype": "Data", "label": "Reading 10", "oldfieldname": "reading_10", - "fieldname": "reading_10", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { "default": "Accepted", - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Status", - "oldfieldname": "status", "fieldname": "status", "fieldtype": "Select", + "label": "Status", + "oldfieldname": "status", + "oldfieldtype": "Select", "options": "Accepted\nRejected" } ] \ No newline at end of file diff --git a/home/doctype/feed/feed.txt b/home/doctype/feed/feed.txt index 4383bd7825..5767181436 100644 --- a/home/doctype/feed/feed.txt +++ b/home/doctype/feed/feed.txt @@ -1,43 +1,42 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-07-03 13:29:42", + "docstatus": 0, + "modified": "2012-10-15 15:23:02", "modified_by": "Administrator", - "modified": "2012-10-15 15:23:02" + "owner": "Administrator" }, { - "section_style": "Simple", - "name": "__common__", "autoname": "_FEED.#####", - "colour": "White:FFF", - "module": "Home", "doctype": "DocType", - "version": 1, - "show_in_menu": 0 + "module": "Home", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 1 }, { - "name": "__common__", - "parent": "Feed", "doctype": "DocField", - "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" - }, - { - "parent": "Feed", - "read": 1, "name": "__common__", - "doctype": "DocPerm", - "report": 1, + "parent": "Feed", + "parentfield": "fields", "parenttype": "DocType", - "role": "System Manager", - "permlevel": 0, - "parentfield": "permissions" + "permlevel": 0 }, { - "name": "Feed", - "doctype": "DocType" + "doctype": "DocPerm", + "name": "__common__", + "parent": "Feed", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "read": 1, + "report": 1, + "role": "System Manager" + }, + { + "doctype": "DocType", + "name": "Feed" }, { "doctype": "DocField", diff --git a/hr/doctype/employee_education/employee_education.txt b/hr/doctype/employee_education/employee_education.txt index aa759550e7..dd07df8895 100644 --- a/hr/doctype/employee_education/employee_education.txt +++ b/hr/doctype/employee_education/employee_education.txt @@ -1,82 +1,80 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:54", + "docstatus": 0, + "modified": "2012-03-27 14:35:54", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:54" + "owner": "Administrator" }, { - "section_style": "Simple", + "doctype": "DocType", "istable": 1, - "name": "__common__", - "colour": "White:FFF", "module": "HR", + "name": "__common__", + "section_style": "Simple", "show_in_menu": 0, - "version": 5, - "server_code_error": " ", - "doctype": "DocType" + "version": 5 }, { + "doctype": "DocField", "name": "__common__", "parent": "Employee Education", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Employee Education", - "doctype": "DocType" + "doctype": "DocType", + "name": "Employee Education" }, { - "oldfieldtype": "Small Text", "doctype": "DocField", + "fieldname": "school_univ", + "fieldtype": "Small Text", "label": "School/University", "oldfieldname": "school_univ", - "fieldname": "school_univ", - "fieldtype": "Small Text" + "oldfieldtype": "Small Text" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "qualification", + "fieldtype": "Data", "label": "Qualification", "oldfieldname": "qualification", - "width": "100px", - "fieldname": "qualification", - "fieldtype": "Data" + "oldfieldtype": "Data", + "width": "100px" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Level", - "oldfieldname": "level", "fieldname": "level", "fieldtype": "Select", + "label": "Level", + "oldfieldname": "level", + "oldfieldtype": "Select", "options": "Graduate\nPost Graduate\nUnder Graduate" }, { - "oldfieldtype": "Int", "doctype": "DocField", + "fieldname": "year_of_passing", + "fieldtype": "Int", "label": "Year of Passing", "oldfieldname": "year_of_passing", - "fieldname": "year_of_passing", - "fieldtype": "Int" + "oldfieldtype": "Int" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "class_per", + "fieldtype": "Data", "label": "Class / Percentage", "oldfieldname": "class_per", - "fieldname": "class_per", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Text", "doctype": "DocField", + "fieldname": "maj_opt_subj", + "fieldtype": "Text", "label": "Major/Optional Subjects", "oldfieldname": "maj_opt_subj", - "fieldname": "maj_opt_subj", - "fieldtype": "Text" + "oldfieldtype": "Text" } ] \ No newline at end of file diff --git a/hr/doctype/employee_internal_work_history/employee_internal_work_history.txt b/hr/doctype/employee_internal_work_history/employee_internal_work_history.txt index d16eb22ca7..dd1c11f104 100644 --- a/hr/doctype/employee_internal_work_history/employee_internal_work_history.txt +++ b/hr/doctype/employee_internal_work_history/employee_internal_work_history.txt @@ -1,83 +1,82 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:57", + "docstatus": 0, + "modified": "2012-03-27 14:35:57", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:57" + "owner": "Administrator" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "HR", "doctype": "DocType", - "version": 6, - "show_in_menu": 0 + "istable": 1, + "module": "HR", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 6 }, { + "doctype": "DocField", "name": "__common__", "parent": "Employee Internal Work History", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Employee Internal Work History", - "doctype": "DocType" + "doctype": "DocType", + "name": "Employee Internal Work History" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Branch", - "oldfieldname": "branch", "fieldname": "branch", "fieldtype": "Select", + "label": "Branch", + "oldfieldname": "branch", + "oldfieldtype": "Select", "options": "link:Branch" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Department", - "oldfieldname": "department", "fieldname": "department", "fieldtype": "Select", + "label": "Department", + "oldfieldname": "department", + "oldfieldtype": "Select", "options": "link:Department" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Designation", - "oldfieldname": "designation", "fieldname": "designation", "fieldtype": "Select", + "label": "Designation", + "oldfieldname": "designation", + "oldfieldtype": "Select", "options": "link:Designation" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Grade", - "oldfieldname": "grade", "fieldname": "grade", "fieldtype": "Select", + "label": "Grade", + "oldfieldname": "grade", + "oldfieldtype": "Select", "options": "link:Grade" }, { - "oldfieldtype": "Date", "doctype": "DocField", + "fieldname": "from_date", + "fieldtype": "Date", "label": "From Date", "oldfieldname": "from_date", - "fieldname": "from_date", - "fieldtype": "Date" + "oldfieldtype": "Date" }, { - "oldfieldtype": "Date", "doctype": "DocField", + "fieldname": "to_date", + "fieldtype": "Date", "label": "To Date", "oldfieldname": "to_date", - "fieldname": "to_date", - "fieldtype": "Date" + "oldfieldtype": "Date" } ] \ No newline at end of file diff --git a/hr/doctype/employee_training/employee_training.txt b/hr/doctype/employee_training/employee_training.txt index fef26f369e..256a99e13e 100644 --- a/hr/doctype/employee_training/employee_training.txt +++ b/hr/doctype/employee_training/employee_training.txt @@ -1,76 +1,74 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:59", + "docstatus": 0, + "modified": "2012-03-27 14:35:59", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:59" + "owner": "Administrator" }, { - "section_style": "Simple", + "doctype": "DocType", "istable": 1, - "name": "__common__", - "colour": "White:FFF", "module": "HR", + "name": "__common__", + "section_style": "Simple", "show_in_menu": 0, - "version": 5, - "server_code_error": " ", - "doctype": "DocType" + "version": 5 }, { + "doctype": "DocField", "name": "__common__", "parent": "Employee Training", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Employee Training", - "doctype": "DocType" + "doctype": "DocType", + "name": "Employee Training" }, { - "oldfieldtype": "Small Text", "doctype": "DocField", - "label": "Institute / Conducted By", - "oldfieldname": "institute", "fieldname": "institute", "fieldtype": "Small Text", + "label": "Institute / Conducted By", + "oldfieldname": "institute", + "oldfieldtype": "Small Text", "reqd": 1 }, { - "oldfieldtype": "Small Text", "doctype": "DocField", - "label": "Program / Seminar Title", - "oldfieldname": "nature_of_training", "fieldname": "nature_of_training", "fieldtype": "Small Text", + "label": "Program / Seminar Title", + "oldfieldname": "nature_of_training", + "oldfieldtype": "Small Text", "reqd": 1 }, { - "oldfieldtype": "Data", "doctype": "DocField", - "label": "Duration", - "oldfieldname": "duration", "fieldname": "duration", "fieldtype": "Data", + "label": "Duration", + "oldfieldname": "duration", + "oldfieldtype": "Data", "reqd": 0 }, { - "oldfieldtype": "Data", "doctype": "DocField", - "label": "Location", - "oldfieldname": "loc", "fieldname": "loc", "fieldtype": "Data", + "label": "Location", + "oldfieldname": "loc", + "oldfieldtype": "Data", "reqd": 0 }, { - "oldfieldtype": "Small Text", "doctype": "DocField", + "fieldname": "certificate", + "fieldtype": "Small Text", "label": "Certificate", "oldfieldname": "certificate", - "fieldname": "certificate", - "fieldtype": "Small Text" + "oldfieldtype": "Small Text" } ] \ No newline at end of file diff --git a/hr/doctype/expense_claim_type/expense_claim_type.txt b/hr/doctype/expense_claim_type/expense_claim_type.txt index 9a0236fd87..3f59e6695b 100644 --- a/hr/doctype/expense_claim_type/expense_claim_type.txt +++ b/hr/doctype/expense_claim_type/expense_claim_type.txt @@ -1,76 +1,74 @@ [ { - "owner": "harshada@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:35:55", + "docstatus": 0, + "modified": "2012-03-27 14:35:55", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:55" + "owner": "harshada@webnotestech.com" }, { - "section_style": "Simple", - "name": "__common__", "autoname": "field:expense_type", - "colour": "White:FFF", - "module": "HR", - "server_code_error": " ", - "version": 5, "doctype": "DocType", - "document_type": "Master" + "document_type": "Master", + "module": "HR", + "name": "__common__", + "section_style": "Simple", + "version": 5 }, { - "name": "__common__", - "parent": "Expense Claim Type", "doctype": "DocField", - "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" - }, - { "name": "__common__", "parent": "Expense Claim Type", - "read": 1, + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 + }, + { "create": 1, "doctype": "DocPerm", - "write": 1, - "report": 1, + "name": "__common__", + "parent": "Expense Claim Type", + "parentfield": "permissions", "parenttype": "DocType", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "report": 1, + "write": 1 }, { - "name": "Expense Claim Type", - "doctype": "DocType" + "doctype": "DocType", + "name": "Expense Claim Type" }, { - "role": "System Manager", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "System Manager" }, { - "role": "HR Manager", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "HR Manager" }, { - "role": "System Manager", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "System Manager" }, { - "search_index": 0, "doctype": "DocField", - "label": "Expense Claim Type", - "oldfieldname": "expense_type", "fieldname": "expense_type", "fieldtype": "Data", + "in_filter": 0, + "label": "Expense Claim Type", + "oldfieldname": "expense_type", "oldfieldtype": "Data", "reqd": 1, - "in_filter": 0 + "search_index": 0 }, { - "oldfieldtype": "Small Text", "doctype": "DocField", + "fieldname": "description", + "fieldtype": "Small Text", "label": "Description", "oldfieldname": "description", - "width": "300px", - "fieldname": "description", - "fieldtype": "Small Text" + "oldfieldtype": "Small Text", + "width": "300px" } ] \ No newline at end of file diff --git a/hr/doctype/holiday/holiday.txt b/hr/doctype/holiday/holiday.txt index 612a47a276..734b970fa1 100644 --- a/hr/doctype/holiday/holiday.txt +++ b/hr/doctype/holiday/holiday.txt @@ -1,47 +1,45 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:57", + "docstatus": 0, + "modified": "2012-03-27 14:35:57", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:57" + "owner": "Administrator" }, { - "section_style": "Simple", + "doctype": "DocType", "istable": 1, - "name": "__common__", - "colour": "White:FFF", "module": "HR", + "name": "__common__", + "section_style": "Simple", "show_in_menu": 0, - "version": 2, - "server_code_error": " ", - "doctype": "DocType" + "version": 2 }, { + "doctype": "DocField", "name": "__common__", "parent": "Holiday", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Holiday", - "doctype": "DocType" + "doctype": "DocType", + "name": "Holiday" }, { "doctype": "DocField", - "label": "Description", - "width": "300px", "fieldname": "description", - "fieldtype": "Small Text" + "fieldtype": "Small Text", + "label": "Description", + "width": "300px" }, { - "oldfieldtype": "Date", "doctype": "DocField", + "fieldname": "holiday_date", + "fieldtype": "Date", "label": "Date", "oldfieldname": "holiday_date", - "fieldname": "holiday_date", - "fieldtype": "Date" + "oldfieldtype": "Date" } ] \ No newline at end of file diff --git a/hr/doctype/salary_manager/salary_manager.txt b/hr/doctype/salary_manager/salary_manager.txt index 173af8abe8..081b156d80 100644 --- a/hr/doctype/salary_manager/salary_manager.txt +++ b/hr/doctype/salary_manager/salary_manager.txt @@ -1,202 +1,194 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:35:59", + "docstatus": 0, + "modified": "2012-03-27 14:35:59", "modified_by": "Administrator", - "modified": "2012-03-27 14:35:59" + "owner": "Administrator" }, { - "section_style": "Simple", + "_last_update": "1314253977", + "allow_copy": 1, + "allow_email": 1, "allow_print": 1, - "module": "HR", "doctype": "DocType", "document_type": "Other", - "allow_email": 1, "issingle": 1, + "module": "HR", "name": "__common__", - "colour": "White:FFF", - "_last_update": "1314253977", + "section_style": "Simple", "show_in_menu": 1, - "version": 30, - "allow_copy": 1 + "version": 30 }, { - "name": "__common__", - "parent": "Salary Manager", "doctype": "DocField", - "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" - }, - { "name": "__common__", "parent": "Salary Manager", - "read": 1, + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 + }, + { "create": 1, "doctype": "DocPerm", - "write": 1, + "name": "__common__", + "parent": "Salary Manager", + "parentfield": "permissions", "parenttype": "DocType", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "write": 1 }, { - "name": "Salary Manager", - "doctype": "DocType" + "doctype": "DocType", + "name": "Salary Manager" }, { - "role": "System Manager", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "System Manager" }, { - "role": "HR User", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "HR User" }, { - "role": "HR Manager", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "HR Manager" }, { - "colour": "White:FFF", "doctype": "DocField", - "label": "Document Description", "fieldname": "document_description", "fieldtype": "HTML", + "label": "Document Description", "options": "
    You can generate multiple salary slips based on the selected criteria, submit and mail those to the employee directly from here
    " }, { + "doctype": "DocField", "fieldname": "section_break0", - "fieldtype": "Section Break", - "doctype": "DocField" + "fieldtype": "Section Break" }, { - "width": "50%", + "doctype": "DocField", "fieldname": "column_break0", "fieldtype": "Column Break", - "doctype": "DocField" + "width": "50%" }, { "doctype": "DocField", - "label": "Company", "fieldname": "company", "fieldtype": "Select", - "reqd": 1, - "options": "link:Company" + "label": "Company", + "options": "link:Company", + "reqd": 1 }, { "doctype": "DocField", - "label": "Branch", "fieldname": "branch", "fieldtype": "Link", + "label": "Branch", "options": "Branch" }, { "doctype": "DocField", - "label": "Department", "fieldname": "department", "fieldtype": "Link", + "label": "Department", "options": "Department" }, { "doctype": "DocField", - "label": "Designation", "fieldname": "designation", "fieldtype": "Link", + "label": "Designation", "options": "Designation" }, { - "width": "50%", + "doctype": "DocField", "fieldname": "column_break1", "fieldtype": "Column Break", - "doctype": "DocField" + "width": "50%" }, { "doctype": "DocField", - "label": "Grade", "fieldname": "grade", "fieldtype": "Select", + "label": "Grade", "options": "link:Grade" }, { - "colour": "White:FFF", "doctype": "DocField", - "label": "Fiscal Year", "fieldname": "fiscal_year", "fieldtype": "Select", - "reqd": 1, - "options": "link:Fiscal Year" + "label": "Fiscal Year", + "options": "link:Fiscal Year", + "reqd": 1 }, { - "colour": "White:FFF", "doctype": "DocField", - "label": "Month", "fieldname": "month", "fieldtype": "Select", - "reqd": 1, - "options": "\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12" + "label": "Month", + "options": "\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12", + "reqd": 1 }, { "description": "Check if you want to send salary slip in mail to each employee while submitting salary slip", - "colour": "White:FFF", "doctype": "DocField", - "label": "Send Email", "fieldname": "send_email", - "fieldtype": "Check" + "fieldtype": "Check", + "label": "Send Email" }, { + "doctype": "DocField", "fieldname": "section_break1", - "fieldtype": "Section Break", - "doctype": "DocField" + "fieldtype": "Section Break" }, { - "width": "50%", + "doctype": "DocField", "fieldname": "column_break2", "fieldtype": "Column Break", - "doctype": "DocField" + "width": "50%" }, { "description": "Creates salary slip for above mentioned criteria.", - "colour": "White:FFF", "doctype": "DocField", - "label": "Create Salary Slip", - "trigger": "Client", "fieldname": "create_salary_slip", - "fieldtype": "Button" + "fieldtype": "Button", + "label": "Create Salary Slip", + "trigger": "Client" }, { - "width": "25%", + "doctype": "DocField", "fieldname": "column_break3", "fieldtype": "Column Break", - "doctype": "DocField" + "width": "25%" }, { "description": "Submit all salary slips for the above selected criteria", - "colour": "White:FFF", "doctype": "DocField", - "label": "Submit Salary Slip", - "trigger": "Client", "fieldname": "submit_salary_slip", - "fieldtype": "Button" + "fieldtype": "Button", + "label": "Submit Salary Slip", + "trigger": "Client" }, { - "width": "25%", + "doctype": "DocField", "fieldname": "column_break4", "fieldtype": "Column Break", - "doctype": "DocField" + "width": "25%" }, { "description": "Create Bank Voucher for the total salary paid for the above selected criteria", - "colour": "White:FFF", "doctype": "DocField", - "label": "Make Bank Voucher", - "trigger": "Client", "fieldname": "make_bank_voucher", - "fieldtype": "Button" + "fieldtype": "Button", + "label": "Make Bank Voucher", + "trigger": "Client" }, { + "doctype": "DocField", "fieldname": "section_break2", - "fieldtype": "Section Break", - "doctype": "DocField" + "fieldtype": "Section Break" }, { "doctype": "DocField", diff --git a/projects/doctype/project_milestone/project_milestone.txt b/projects/doctype/project_milestone/project_milestone.txt index 29ea15b7a5..4641b5d3bb 100644 --- a/projects/doctype/project_milestone/project_milestone.txt +++ b/projects/doctype/project_milestone/project_milestone.txt @@ -1,58 +1,56 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:06", + "docstatus": 0, + "modified": "2012-03-27 14:36:06", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:06" + "owner": "Administrator" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Projects", "doctype": "DocType", - "version": 4, - "server_code_error": " " + "istable": 1, + "module": "Projects", + "name": "__common__", + "section_style": "Simple", + "version": 4 }, { + "doctype": "DocField", "name": "__common__", "parent": "Project Milestone", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Project Milestone", - "doctype": "DocType" + "doctype": "DocType", + "name": "Project Milestone" }, { - "oldfieldtype": "Date", "doctype": "DocField", + "fieldname": "milestone_date", + "fieldtype": "Date", "label": "Milestone Date", "oldfieldname": "milestone_date", - "fieldname": "milestone_date", - "fieldtype": "Date" + "oldfieldtype": "Date" }, { - "oldfieldtype": "Text", "doctype": "DocField", + "fieldname": "milestone", + "fieldtype": "Text", "label": "Milestone", "oldfieldname": "milestone", - "width": "300px", - "fieldname": "milestone", - "fieldtype": "Text" + "oldfieldtype": "Text", + "width": "300px" }, { - "no_copy": 1, - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Status", - "oldfieldname": "status", "fieldname": "status", "fieldtype": "Select", + "label": "Status", + "no_copy": 1, + "oldfieldname": "status", + "oldfieldtype": "Select", "options": "Pending\nCompleted" } ] \ No newline at end of file diff --git a/selling/doctype/industry_type/industry_type.txt b/selling/doctype/industry_type/industry_type.txt index 39534d1414..329a040e06 100644 --- a/selling/doctype/industry_type/industry_type.txt +++ b/selling/doctype/industry_type/industry_type.txt @@ -1,65 +1,63 @@ [ { - "owner": "harshada@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:36:09", + "docstatus": 0, + "modified": "2012-03-27 14:36:09", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:09" + "owner": "harshada@webnotestech.com" }, { - "section_style": "Simple", - "name": "__common__", "autoname": "field:industry", - "colour": "White:FFF", - "module": "Selling", - "server_code_error": " ", - "version": 4, "doctype": "DocType", - "document_type": "Master" + "document_type": "Master", + "module": "Selling", + "name": "__common__", + "section_style": "Simple", + "version": 4 }, { - "parent": "Industry Type", - "oldfieldtype": "Data", "doctype": "DocField", - "oldfieldname": "industry", - "reqd": 1, - "name": "__common__", - "label": "Industry", - "parenttype": "DocType", "fieldname": "industry", "fieldtype": "Data", - "permlevel": 0, - "parentfield": "fields" - }, - { + "label": "Industry", "name": "__common__", + "oldfieldname": "industry", + "oldfieldtype": "Data", "parent": "Industry Type", - "read": 1, - "doctype": "DocPerm", - "report": 1, + "parentfield": "fields", "parenttype": "DocType", "permlevel": 0, - "parentfield": "permissions" + "reqd": 1 }, { - "name": "Industry Type", - "doctype": "DocType" + "doctype": "DocPerm", + "name": "__common__", + "parent": "Industry Type", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "read": 1, + "report": 1 + }, + { + "doctype": "DocType", + "name": "Industry Type" }, { - "write": 1, "create": 1, + "doctype": "DocPerm", "role": "Sales Manager", - "doctype": "DocPerm" + "write": 1 }, { - "role": "Sales User", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "Sales User" }, { - "write": 1, "create": 1, + "doctype": "DocPerm", "role": "Sales Master Manager", - "doctype": "DocPerm" + "write": 1 }, { "doctype": "DocField" diff --git a/selling/doctype/sales_common/sales_common.txt b/selling/doctype/sales_common/sales_common.txt index ccfd0046fc..4d00b5146a 100644 --- a/selling/doctype/sales_common/sales_common.txt +++ b/selling/doctype/sales_common/sales_common.txt @@ -1,24 +1,22 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:14", + "docstatus": 0, + "modified": "2012-03-27 14:36:14", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:14" + "owner": "Administrator" }, { - "section_style": "Simple", - "name": "__common__", - "colour": "White:FFF", - "module": "Selling", - "show_in_menu": 0, - "version": 290, - "server_code_error": " ", "doctype": "DocType", - "issingle": 1 + "issingle": 1, + "module": "Selling", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 290 }, { - "name": "Sales Common", - "doctype": "DocType" + "doctype": "DocType", + "name": "Sales Common" } ] \ No newline at end of file diff --git a/setup/doctype/authorization_control/authorization_control.txt b/setup/doctype/authorization_control/authorization_control.txt index 5cf6ce7db5..601381ec31 100644 --- a/setup/doctype/authorization_control/authorization_control.txt +++ b/setup/doctype/authorization_control/authorization_control.txt @@ -1,23 +1,21 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:18", + "docstatus": 0, + "modified": "2012-03-27 14:36:18", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:18" + "owner": "Administrator" }, { - "section_style": "Tabbed", - "name": "__common__", - "colour": "White:FFF", - "module": "Setup", "doctype": "DocType", - "version": 216, - "server_code_error": " ", - "issingle": 1 + "issingle": 1, + "module": "Setup", + "name": "__common__", + "section_style": "Tabbed", + "version": 216 }, { - "name": "Authorization Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "Authorization Control" } ] \ No newline at end of file diff --git a/setup/doctype/contact_control/contact_control.txt b/setup/doctype/contact_control/contact_control.txt index 453ca6e20d..9fab367591 100644 --- a/setup/doctype/contact_control/contact_control.txt +++ b/setup/doctype/contact_control/contact_control.txt @@ -1,65 +1,63 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:19", + "docstatus": 0, + "modified": "2012-03-27 14:36:19", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:19" + "owner": "Administrator" }, { - "section_style": "Simple", - "in_create": 1, - "module": "Setup", "doctype": "DocType", - "server_code_error": " ", + "in_create": 1, "issingle": 1, - "read_only": 1, + "module": "Setup", "name": "__common__", - "colour": "White:FFF", + "read_only": 1, + "section_style": "Simple", "show_in_menu": 0, "version": 25 }, { + "doctype": "DocField", + "fieldtype": "Text", "name": "__common__", "parent": "Contact Control", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "fieldtype": "Text", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "parent": "Contact Control", - "read": 1, - "name": "__common__", "create": 0, "doctype": "DocPerm", - "write": 1, + "name": "__common__", + "parent": "Contact Control", + "parentfield": "permissions", "parenttype": "DocType", - "role": "System Manager", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "role": "System Manager", + "write": 1 }, { - "name": "Contact Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "Contact Control" }, { "doctype": "DocPerm" }, { - "fieldname": "header", "doctype": "DocField", + "fieldname": "header", "label": "Header" }, { - "fieldname": "customer_intro", "doctype": "DocField", + "fieldname": "customer_intro", "label": "Customer Intro" }, { - "fieldname": "supplier_intro", "doctype": "DocField", + "fieldname": "supplier_intro", "label": "Supplier Intro" } ] \ No newline at end of file diff --git a/setup/doctype/email_settings/email_settings.txt b/setup/doctype/email_settings/email_settings.txt index 1a2051cf99..994d4c9100 100644 --- a/setup/doctype/email_settings/email_settings.txt +++ b/setup/doctype/email_settings/email_settings.txt @@ -1,50 +1,48 @@ [ { - "owner": "harshada@webnotestech.com", - "docstatus": 0, "creation": "2012-07-03 13:30:55", + "docstatus": 0, + "modified": "2012-07-12 16:16:27", "modified_by": "Administrator", - "modified": "2012-07-12 16:16:27" + "owner": "harshada@webnotestech.com" }, { - "section_style": "Simple", - "description": "Email Settings for Outgoing and Incoming Emails.", + "_last_update": "1325570647", + "allow_copy": 1, + "allow_email": 1, "allow_print": 1, - "module": "Setup", + "description": "Email Settings for Outgoing and Incoming Emails.", "doctype": "DocType", "in_create": 1, - "allow_email": 1, "issingle": 1, + "module": "Setup", "name": "__common__", - "colour": "White:FFF", - "_last_update": "1325570647", - "server_code_error": " ", - "version": 1, - "allow_copy": 1 + "section_style": "Simple", + "version": 1 }, { - "name": "__common__", - "parent": "Email Settings", "doctype": "DocField", - "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" - }, - { "name": "__common__", "parent": "Email Settings", - "read": 1, + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 + }, + { "create": 1, "doctype": "DocPerm", - "write": 1, + "name": "__common__", + "parent": "Email Settings", + "parentfield": "permissions", "parenttype": "DocType", - "role": "System Manager", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "role": "System Manager", + "write": 1 }, { - "name": "Email Settings", - "doctype": "DocType" + "doctype": "DocType", + "name": "Email Settings" }, { "doctype": "DocPerm" @@ -54,19 +52,17 @@ }, { "description": "Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.", - "colour": "White:FFF", "doctype": "DocField", - "label": "Outgoing Mails", "fieldname": "outgoing_mails", - "fieldtype": "Section Break" + "fieldtype": "Section Break", + "label": "Outgoing Mails" }, { "description": "SMTP Server (e.g. smtp.gmail.com)", - "colour": "White:FFF", "doctype": "DocField", - "label": "Outgoing Mail Server", "fieldname": "outgoing_mail_server", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Outgoing Mail Server" }, { "doctype": "DocField", @@ -76,24 +72,22 @@ }, { "description": "If non standard port (e.g. 587)", - "colour": "White:FFF", "doctype": "DocField", - "label": "Mail Port", "fieldname": "mail_port", - "fieldtype": "Int" + "fieldtype": "Int", + "label": "Mail Port" }, { + "doctype": "DocField", "fieldname": "cb0", - "fieldtype": "Column Break", - "doctype": "DocField" + "fieldtype": "Column Break" }, { "description": "Set Login and Password if authentication is required.", - "colour": "White:FFF", "doctype": "DocField", - "label": "Login Id", "fieldname": "mail_login", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Login Id" }, { "doctype": "DocField", @@ -103,50 +97,45 @@ }, { "description": "System generated mails will be sent from this email id.", - "colour": "White:FFF", "doctype": "DocField", - "label": "Auto Email Id", "fieldname": "auto_email_id", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Auto Email Id" }, { "description": "Set the POP3 email settings to pull emails directly from a mailbox and create Support Tickets", "doctype": "DocField", - "label": "Support Ticket Mail Settings", "fieldname": "support_ticket_mail_settings", - "fieldtype": "Section Break" + "fieldtype": "Section Break", + "label": "Support Ticket Mail Settings" }, { "description": "To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.", - "colour": "White:FFF", "doctype": "DocField", - "label": "Incoming Mail Setting", "fieldname": "section_break0", - "fieldtype": "Section Break" + "fieldtype": "Section Break", + "label": "Incoming Mail Setting" }, { "description": "Check this to pull emails from your mailbox", - "colour": "White:FFF", "doctype": "DocField", - "label": "Sync Support Mails", "fieldname": "sync_support_mails", - "fieldtype": "Check" + "fieldtype": "Check", + "label": "Sync Support Mails" }, { "description": "Your support email id - must be a valid email - this is where your emails will come!", - "colour": "White:FFF", "doctype": "DocField", - "label": "Support Email", "fieldname": "support_email", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Support Email" }, { "description": "POP3 mail server (e.g. pop.gmail.com)", - "colour": "White:FFF", "doctype": "DocField", - "label": "POP3 Mail Server", "fieldname": "support_host", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "POP3 Mail Server" }, { "doctype": "DocField", @@ -167,32 +156,29 @@ "label": "Support Password" }, { + "doctype": "DocField", "fieldname": "cb1", - "fieldtype": "Column Break", - "doctype": "DocField" + "fieldtype": "Column Break" }, { "description": "Signature to be appended at the end of every email", - "colour": "White:FFF", "doctype": "DocField", - "label": "Signature", "fieldname": "support_signature", - "fieldtype": "Text" + "fieldtype": "Text", + "label": "Signature" }, { "default": "1", - "colour": "White:FFF", "doctype": "DocField", - "label": "Send Autoreply", "fieldname": "send_autoreply", - "fieldtype": "Check" + "fieldtype": "Check", + "label": "Send Autoreply" }, { "description": "Autoreply when a new mail is received", - "colour": "White:FFF", "doctype": "DocField", - "label": "Custom Autoreply Message", "fieldname": "support_autoreply", - "fieldtype": "Text" + "fieldtype": "Text", + "label": "Custom Autoreply Message" } ] \ No newline at end of file diff --git a/setup/doctype/naming_series_options/naming_series_options.txt b/setup/doctype/naming_series_options/naming_series_options.txt index 61159715b9..c95af3d41e 100644 --- a/setup/doctype/naming_series_options/naming_series_options.txt +++ b/setup/doctype/naming_series_options/naming_series_options.txt @@ -1,65 +1,63 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:21", + "docstatus": 0, + "modified": "2012-03-27 14:36:21", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:21" + "owner": "Administrator" }, { - "section_style": "Simple", + "autoname": "__NSO.#####", + "doctype": "DocType", "in_create": 1, "module": "Setup", - "doctype": "DocType", - "read_only": 0, - "autoname": "__NSO.#####", "name": "__common__", - "colour": "White:FFF", - "server_code_error": " ", + "read_only": 0, + "section_style": "Simple", "show_in_menu": 0, "version": 5 }, { - "name": "__common__", - "parent": "Naming Series Options", "doctype": "DocField", - "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" - }, - { - "parent": "Naming Series Options", - "read": 1, "name": "__common__", - "doctype": "DocPerm", - "report": 1, + "parent": "Naming Series Options", + "parentfield": "fields", "parenttype": "DocType", - "role": "System Manager", - "permlevel": 0, - "parentfield": "permissions" + "permlevel": 0 }, { - "name": "Naming Series Options", - "doctype": "DocType" + "doctype": "DocPerm", + "name": "__common__", + "parent": "Naming Series Options", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "read": 1, + "report": 1, + "role": "System Manager" + }, + { + "doctype": "DocType", + "name": "Naming Series Options" }, { "doctype": "DocPerm" }, { - "oldfieldtype": "Data", "doctype": "DocField", - "label": "Doc Type", - "oldfieldname": "doc_type", "fieldname": "doc_type", "fieldtype": "Data", + "label": "Doc Type", + "oldfieldname": "doc_type", + "oldfieldtype": "Data", "search_index": 1 }, { - "oldfieldtype": "Text", "doctype": "DocField", + "fieldname": "series_options", + "fieldtype": "Text", "label": "Series Options", "oldfieldname": "series_options", - "fieldname": "series_options", - "fieldtype": "Text" + "oldfieldtype": "Text" } ] \ No newline at end of file diff --git a/setup/doctype/sales_browser_control/sales_browser_control.txt b/setup/doctype/sales_browser_control/sales_browser_control.txt index 801b2e02e0..6083a31abb 100644 --- a/setup/doctype/sales_browser_control/sales_browser_control.txt +++ b/setup/doctype/sales_browser_control/sales_browser_control.txt @@ -1,23 +1,21 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:23", + "docstatus": 0, + "modified": "2012-03-27 14:36:23", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:23" + "owner": "Administrator" }, { - "section_style": "Simple", - "name": "__common__", - "colour": "White:FFF", - "module": "Setup", "doctype": "DocType", - "version": 159, - "server_code_error": " ", - "issingle": 1 + "issingle": 1, + "module": "Setup", + "name": "__common__", + "section_style": "Simple", + "version": 159 }, { - "name": "Sales Browser Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "Sales Browser Control" } ] \ No newline at end of file diff --git a/setup/doctype/series_detail/series_detail.txt b/setup/doctype/series_detail/series_detail.txt index c0e9ba4fd4..19ef3fbf35 100644 --- a/setup/doctype/series_detail/series_detail.txt +++ b/setup/doctype/series_detail/series_detail.txt @@ -1,48 +1,47 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:25", + "docstatus": 0, + "modified": "2012-03-27 14:36:25", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:25" + "owner": "Administrator" }, { - "section_style": "Tray", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Setup", "doctype": "DocType", - "version": 3, - "show_in_menu": 0 + "istable": 1, + "module": "Setup", + "name": "__common__", + "section_style": "Tray", + "show_in_menu": 0, + "version": 3 }, { + "doctype": "DocField", "name": "__common__", "parent": "Series Detail", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Series Detail", - "doctype": "DocType" + "doctype": "DocType", + "name": "Series Detail" }, { - "oldfieldtype": "Read Only", "doctype": "DocField", + "fieldname": "series", + "fieldtype": "Read Only", "label": "Series", "oldfieldname": "series", - "fieldname": "series", - "fieldtype": "Read Only" + "oldfieldtype": "Read Only" }, { - "oldfieldtype": "Check", "doctype": "DocField", + "fieldname": "remove", + "fieldtype": "Check", "label": "Remove", "oldfieldname": "remove", - "trigger": "Client", - "fieldname": "remove", - "fieldtype": "Check" + "oldfieldtype": "Check", + "trigger": "Client" } ] \ No newline at end of file diff --git a/setup/doctype/setup_control/setup_control.txt b/setup/doctype/setup_control/setup_control.txt index e62f84edb8..7ebed3e4a1 100644 --- a/setup/doctype/setup_control/setup_control.txt +++ b/setup/doctype/setup_control/setup_control.txt @@ -1,26 +1,24 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:25", + "docstatus": 0, + "modified": "2012-03-27 14:36:25", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:25" + "owner": "Administrator" }, { - "section_style": "Simple", - "istable": 0, - "in_create": 1, - "module": "Setup", "doctype": "DocType", + "in_create": 1, "issingle": 1, - "read_only": 1, + "istable": 0, + "module": "Setup", "name": "__common__", - "colour": "White:FFF", - "server_code_error": " ", + "read_only": 1, + "section_style": "Simple", "version": 73 }, { - "name": "Setup Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "Setup Control" } ] \ No newline at end of file diff --git a/setup/doctype/sms_parameter/sms_parameter.txt b/setup/doctype/sms_parameter/sms_parameter.txt index c60c1db38f..55f90be161 100755 --- a/setup/doctype/sms_parameter/sms_parameter.txt +++ b/setup/doctype/sms_parameter/sms_parameter.txt @@ -1,44 +1,43 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:25", + "docstatus": 0, + "modified": "2012-03-27 14:36:25", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:25" + "owner": "Administrator" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Setup", "doctype": "DocType", - "version": 4, - "show_in_menu": 0 + "istable": 1, + "module": "Setup", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 4 }, { + "doctype": "DocField", + "fieldtype": "Data", "name": "__common__", "parent": "SMS Parameter", - "width": "150px", - "doctype": "DocField", - "reqd": 1, + "parentfield": "fields", "parenttype": "DocType", - "fieldtype": "Data", "permlevel": 0, - "parentfield": "fields" + "reqd": 1, + "width": "150px" }, { - "name": "SMS Parameter", - "doctype": "DocType" + "doctype": "DocType", + "name": "SMS Parameter" }, { - "fieldname": "parameter", "doctype": "DocField", + "fieldname": "parameter", "label": "Parameter" }, { - "fieldname": "value", "doctype": "DocField", + "fieldname": "value", "label": "Value" } ] \ No newline at end of file diff --git a/setup/doctype/state/state.txt b/setup/doctype/state/state.txt index 2433cf9674..464622ac8d 100644 --- a/setup/doctype/state/state.txt +++ b/setup/doctype/state/state.txt @@ -1,80 +1,78 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:25", + "docstatus": 0, + "modified": "2012-03-27 14:36:25", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:25" + "owner": "Administrator" }, { - "show_in_menu": 0, - "section_style": "Simple", + "autoname": "field:state_name", + "doctype": "DocType", + "document_type": "Master", "in_create": 0, "module": "Setup", - "autoname": "field:state_name", - "document_type": "Master", - "read_only": 0, "name": "__common__", - "colour": "White:FFF", - "doctype": "DocType", - "server_code_error": " ", + "read_only": 0, + "section_style": "Simple", + "show_in_menu": 0, "version": 14 }, { + "doctype": "DocField", "name": "__common__", "parent": "State", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "reqd": 1, "permlevel": 0, - "parentfield": "fields" + "reqd": 1 }, { - "name": "__common__", - "parent": "State", - "read": 1, "create": 1, "doctype": "DocPerm", - "write": 1, - "report": 1, + "name": "__common__", + "parent": "State", + "parentfield": "permissions", "parenttype": "DocType", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "report": 1, + "write": 1 }, { - "name": "State", - "doctype": "DocType" + "doctype": "DocType", + "name": "State" }, { - "role": "System Manager", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "System Manager" }, { "amend": 0, "cancel": 0, - "role": "Sales Master Manager", "doctype": "DocPerm", + "role": "Sales Master Manager", "submit": 0 }, { - "role": "Purchase Master Manager", - "doctype": "DocPerm" + "doctype": "DocPerm", + "role": "Purchase Master Manager" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "state_name", + "fieldtype": "Data", "label": "State Name", "oldfieldname": "state_name", - "fieldname": "state_name", - "fieldtype": "Data" + "oldfieldtype": "Data" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Country", - "oldfieldname": "country", "fieldname": "country", "fieldtype": "Select", + "label": "Country", + "oldfieldname": "country", + "oldfieldtype": "Select", "options": "link:Country" } ] \ No newline at end of file diff --git a/setup/doctype/workflow_action_detail/workflow_action_detail.txt b/setup/doctype/workflow_action_detail/workflow_action_detail.txt index 95e0d4ff64..2ef95fd314 100644 --- a/setup/doctype/workflow_action_detail/workflow_action_detail.txt +++ b/setup/doctype/workflow_action_detail/workflow_action_detail.txt @@ -1,48 +1,47 @@ [ { - "owner": "swarnalata@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:36:26", + "docstatus": 0, + "modified": "2012-03-27 14:36:26", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:26" + "owner": "swarnalata@webnotestech.com" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Setup", "doctype": "DocType", - "version": 5, - "show_in_menu": 0 + "istable": 1, + "module": "Setup", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 5 }, { + "doctype": "DocField", "name": "__common__", "parent": "Workflow Action Detail", - "doctype": "DocField", - "width": "200px", + "parentfield": "fields", "parenttype": "DocType", "permlevel": 0, - "parentfield": "fields" + "width": "200px" }, { - "name": "Workflow Action Detail", - "doctype": "DocType" + "doctype": "DocType", + "name": "Workflow Action Detail" }, { - "oldfieldtype": "Select", "doctype": "DocField", + "fieldname": "action_field", + "fieldtype": "Select", "label": "Field", "oldfieldname": "action_field", - "fieldname": "action_field", - "fieldtype": "Select" + "oldfieldtype": "Select" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "action_value", + "fieldtype": "Data", "label": "Value", "oldfieldname": "action_value", - "fieldname": "action_value", - "fieldtype": "Data" + "oldfieldtype": "Data" } ] \ No newline at end of file diff --git a/setup/doctype/workflow_engine/workflow_engine.txt b/setup/doctype/workflow_engine/workflow_engine.txt index efb9dabb2e..7103bbf42d 100644 --- a/setup/doctype/workflow_engine/workflow_engine.txt +++ b/setup/doctype/workflow_engine/workflow_engine.txt @@ -1,24 +1,22 @@ [ { - "owner": "swarnalata@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:36:26", + "docstatus": 0, + "modified": "2012-03-27 14:36:26", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:26" + "owner": "swarnalata@webnotestech.com" }, { - "section_style": "Simple", - "name": "__common__", - "colour": "White:FFF", - "module": "Setup", - "show_in_menu": 0, - "version": 4, - "server_code_error": " ", "doctype": "DocType", - "issingle": 1 + "issingle": 1, + "module": "Setup", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 4 }, { - "name": "Workflow Engine", - "doctype": "DocType" + "doctype": "DocType", + "name": "Workflow Engine" } ] \ No newline at end of file diff --git a/setup/doctype/workflow_rule/workflow_rule.txt b/setup/doctype/workflow_rule/workflow_rule.txt index 5ff0a4f252..0c1257f729 100644 --- a/setup/doctype/workflow_rule/workflow_rule.txt +++ b/setup/doctype/workflow_rule/workflow_rule.txt @@ -1,205 +1,195 @@ [ { - "owner": "swarnalata@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:36:26", + "docstatus": 0, + "modified": "2012-03-27 14:36:26", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:26" + "owner": "swarnalata@webnotestech.com" }, { - "section_style": "Tray", - "search_fields": "select_form,rule_status", - "module": "Setup", + "autoname": "field:rule_name", "doctype": "DocType", "document_type": "Master", - "autoname": "field:rule_name", + "module": "Setup", "name": "__common__", - "colour": "White:FFF", - "server_code_error": " ", + "search_fields": "select_form,rule_status", + "section_style": "Tray", "show_in_menu": 0, "version": 31 }, { + "doctype": "DocField", "name": "__common__", "parent": "Workflow Rule", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "parent": "Workflow Rule", - "read": 1, - "report": 1, - "name": "__common__", "create": 1, "doctype": "DocPerm", - "write": 1, + "name": "__common__", + "parent": "Workflow Rule", + "parentfield": "permissions", "parenttype": "DocType", - "role": "System Manager", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "report": 1, + "role": "System Manager", + "write": 1 }, { - "name": "Workflow Rule", - "doctype": "DocType" + "doctype": "DocType", + "name": "Workflow Rule" }, { "doctype": "DocPerm" }, { - "oldfieldtype": "Section Break", "doctype": "DocField", - "label": "Rule Definition", "fieldname": "rule_definition", - "fieldtype": "Section Break" + "fieldtype": "Section Break", + "label": "Rule Definition", + "oldfieldtype": "Section Break" }, { - "oldfieldtype": "HTML", "doctype": "DocField", - "label": "Intro HTML", "fieldname": "intro_html", "fieldtype": "HTML", + "label": "Intro HTML", + "oldfieldtype": "HTML", "options": "Select form for which you want to define rules,set priority & status." }, { - "oldfieldtype": "Data", "doctype": "DocField", - "label": "Rule Name", - "oldfieldname": "rule_name", "fieldname": "rule_name", "fieldtype": "Data", + "label": "Rule Name", + "oldfieldname": "rule_name", + "oldfieldtype": "Data", "reqd": 1 }, { - "search_index": 0, - "colour": "White:FFF", "doctype": "DocField", - "label": "Rule Status", - "oldfieldname": "rule_status", "fieldname": "rule_status", "fieldtype": "Select", + "in_filter": 1, + "label": "Rule Status", + "oldfieldname": "rule_status", "oldfieldtype": "Select", - "reqd": 1, "options": "\nActive\nInactive", - "in_filter": 1 + "reqd": 1, + "search_index": 0 }, { - "oldfieldtype": "Link", - "colour": "White:FFF", "doctype": "DocField", - "label": "Select Form", - "oldfieldname": "select_form", - "trigger": "Client", "fieldname": "select_form", "fieldtype": "Link", - "search_index": 1, - "reqd": 1, + "in_filter": 1, + "label": "Select Form", + "oldfieldname": "select_form", + "oldfieldtype": "Link", "options": "DocType", - "in_filter": 1 + "reqd": 1, + "search_index": 1, + "trigger": "Client" }, { - "oldfieldtype": "Int", "doctype": "DocField", - "label": "Rule Priority", - "oldfieldname": "rule_priority", "fieldname": "rule_priority", "fieldtype": "Int", + "label": "Rule Priority", + "oldfieldname": "rule_priority", + "oldfieldtype": "Int", "reqd": 0 }, { - "oldfieldtype": "Section Break", - "colour": "White:FFF", "doctype": "DocField", - "label": "Define Rule", "fieldname": "define_rule", "fieldtype": "Section Break", + "label": "Define Rule", + "oldfieldtype": "Section Break", "options": "Simple" }, { - "oldfieldtype": "Table", "doctype": "DocField", - "label": "Workflow Rule Details", - "oldfieldname": "workflow_rule_details", - "width": "100px", "fieldname": "workflow_rule_details", "fieldtype": "Table", - "options": "Workflow Rule Detail" + "label": "Workflow Rule Details", + "oldfieldname": "workflow_rule_details", + "oldfieldtype": "Table", + "options": "Workflow Rule Detail", + "width": "100px" }, { - "print_hide": 1, - "oldfieldtype": "Code", - "colour": "White:FFF", "doctype": "DocField", - "label": "Extra Condition", - "oldfieldname": "extra_condition", "fieldname": "extra_condition", "fieldtype": "Code", - "hidden": 1 + "hidden": 1, + "label": "Extra Condition", + "oldfieldname": "extra_condition", + "oldfieldtype": "Code", + "print_hide": 1 }, { - "oldfieldtype": "Section Break", - "colour": "White:FFF", "doctype": "DocField", - "label": "Action Detail", "fieldname": "action_detail", - "fieldtype": "Section Break" + "fieldtype": "Section Break", + "label": "Action Detail", + "oldfieldtype": "Section Break" }, { - "oldfieldtype": "HTML", "doctype": "DocField", - "label": "Action html", "fieldname": "action_html", "fieldtype": "HTML", + "label": "Action html", + "oldfieldtype": "HTML", "options": "Specify actions to be taken when conditions hold satisfied" }, { - "oldfieldtype": "Table", "doctype": "DocField", - "label": "Workflow Action Details", - "oldfieldname": "workflow_action_details", "fieldname": "workflow_action_details", "fieldtype": "Table", + "label": "Workflow Action Details", + "oldfieldname": "workflow_action_details", + "oldfieldtype": "Table", "options": "Workflow Action Detail" }, { - "print_hide": 1, - "no_copy": 1, - "oldfieldtype": "HTML", - "colour": "White:FFF", "doctype": "DocField", - "label": "Reject HTML", "fieldname": "reject_html", "fieldtype": "HTML", "hidden": 1, + "label": "Reject HTML", + "no_copy": 1, + "oldfieldtype": "HTML", "options": "If any condition holds false the following message will be displayed . If you wish to stop rule engine when condition holds false then set 'Raise Exception' as 'Yes' otherwise keep this field blank or 'No'.", + "print_hide": 1, "report_hide": 1 }, { - "print_hide": 1, - "no_copy": 1, - "oldfieldtype": "Text", - "colour": "White:FFF", "doctype": "DocField", - "label": "Enter message", - "oldfieldname": "message", "fieldname": "message", "fieldtype": "Text", "hidden": 1, + "label": "Enter message", + "no_copy": 1, + "oldfieldname": "message", + "oldfieldtype": "Text", + "print_hide": 1, "report_hide": 1 }, { - "print_hide": 1, - "no_copy": 1, - "oldfieldtype": "Select", - "colour": "White:FFF", "doctype": "DocField", - "label": "Raise Exception", - "oldfieldname": "raise_exception", "fieldname": "raise_exception", "fieldtype": "Select", "hidden": 1, + "label": "Raise Exception", + "no_copy": 1, + "oldfieldname": "raise_exception", + "oldfieldtype": "Select", "options": "\nYes\nNo", + "print_hide": 1, "report_hide": 1 } ] \ No newline at end of file diff --git a/setup/doctype/workflow_rule_detail/workflow_rule_detail.txt b/setup/doctype/workflow_rule_detail/workflow_rule_detail.txt index f6cb5581aa..73c1cf3d8b 100644 --- a/setup/doctype/workflow_rule_detail/workflow_rule_detail.txt +++ b/setup/doctype/workflow_rule_detail/workflow_rule_detail.txt @@ -1,85 +1,84 @@ [ { - "owner": "swarnalata@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:36:26", + "docstatus": 0, + "modified": "2012-03-27 14:36:26", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:26" + "owner": "swarnalata@webnotestech.com" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Setup", "doctype": "DocType", - "version": 9, - "show_in_menu": 0 + "istable": 1, + "module": "Setup", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 9 }, { + "doctype": "DocField", "name": "__common__", "parent": "Workflow Rule Detail", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Workflow Rule Detail", - "doctype": "DocType" + "doctype": "DocType", + "name": "Workflow Rule Detail" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Field", - "oldfieldname": "rule_field", - "width": "200px", "fieldname": "rule_field", "fieldtype": "Select", - "options": "[]" + "label": "Field", + "oldfieldname": "rule_field", + "oldfieldtype": "Select", + "options": "[]", + "width": "200px" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Operator", - "oldfieldname": "operator", "fieldname": "operator", "fieldtype": "Select", + "label": "Operator", + "oldfieldname": "operator", + "oldfieldtype": "Select", "options": "\nequal\nnot equal\ngreater than\ngreater than equal\nless than\nless than equal" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "value", + "fieldtype": "Data", "label": "Value", "oldfieldname": "value", - "width": "100px", - "fieldname": "value", - "fieldtype": "Data" + "oldfieldtype": "Data", + "width": "100px" }, { - "oldfieldtype": "Select", "doctype": "DocField", + "fieldname": "comparing_field", + "fieldtype": "Select", "label": "Field from other forms", "oldfieldname": "comparing_field", - "fieldname": "comparing_field", - "fieldtype": "Select" + "oldfieldtype": "Select" }, { - "oldfieldtype": "Data", "doctype": "DocField", + "fieldname": "message", + "fieldtype": "Data", "label": "Message when Cond. False", "oldfieldname": "message", - "width": "200px", - "fieldname": "message", - "fieldtype": "Data" + "oldfieldtype": "Data", + "width": "200px" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Raise Exception", - "oldfieldname": "exception", "fieldname": "exception", "fieldtype": "Select", + "label": "Raise Exception", + "oldfieldname": "exception", + "oldfieldtype": "Select", "options": "\nYes\nNo" } ] \ No newline at end of file diff --git a/startup/install.py b/startup/install.py index dfbd2899d0..5ddbf094c8 100644 --- a/startup/install.py +++ b/startup/install.py @@ -162,7 +162,6 @@ def import_defaults(): # UOM {'uom_name': 'Unit', 'doctype': 'UOM', 'name': 'Unit'}, - {'uom_name': 'Hour', 'doctype': 'UOM', 'name': 'Hour'}, {'uom_name': 'Box', 'doctype': 'UOM', 'name': 'Box'}, {'uom_name': 'Ft', 'doctype': 'UOM', 'name': 'Ft'}, {'uom_name': 'Kg', 'doctype': 'UOM', 'name': 'Kg'}, diff --git a/stock/doctype/item_customer_detail/item_customer_detail.txt b/stock/doctype/item_customer_detail/item_customer_detail.txt index e0e93d1306..8535f16976 100644 --- a/stock/doctype/item_customer_detail/item_customer_detail.txt +++ b/stock/doctype/item_customer_detail/item_customer_detail.txt @@ -1,58 +1,56 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:33", + "docstatus": 0, + "modified": "2012-03-27 14:36:33", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:33" + "owner": "Administrator" }, { - "section_style": "Tray", - "istable": 1, - "description": "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes", - "module": "Stock", - "server_code_error": " ", - "in_create": 1, - "read_only": 0, "autoname": "ITEMCUST/.#####", - "name": "__common__", - "colour": "White:FFF", + "description": "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes", "doctype": "DocType", + "in_create": 1, + "istable": 1, + "module": "Stock", + "name": "__common__", + "read_only": 0, + "section_style": "Tray", "show_in_menu": 0, "version": 7 }, { + "doctype": "DocField", + "in_filter": 1, "name": "__common__", "parent": "Item Customer Detail", - "search_index": 1, - "doctype": "DocField", - "reqd": 1, - "parenttype": "DocType", "parentfield": "fields", + "parenttype": "DocType", "permlevel": 0, - "in_filter": 1 + "reqd": 1, + "search_index": 1 }, { - "name": "Item Customer Detail", - "doctype": "DocType" + "doctype": "DocType", + "name": "Item Customer Detail" }, { - "oldfieldtype": "Select", "doctype": "DocField", - "label": "Customer Name", - "oldfieldname": "price_list_name", - "width": "180px", "fieldname": "customer_name", "fieldtype": "Link", - "options": "Customer" + "label": "Customer Name", + "oldfieldname": "price_list_name", + "oldfieldtype": "Select", + "options": "Customer", + "width": "180px" }, { - "oldfieldtype": "Currency", "doctype": "DocField", + "fieldname": "ref_code", + "fieldtype": "Data", "label": "Ref Code", "oldfieldname": "ref_rate", - "width": "120px", - "fieldname": "ref_code", - "fieldtype": "Data" + "oldfieldtype": "Currency", + "width": "120px" } ] \ No newline at end of file diff --git a/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.txt b/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.txt index 24734efaa2..be9f99b92f 100644 --- a/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.txt +++ b/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.txt @@ -1,51 +1,49 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:33", + "docstatus": 0, + "modified": "2012-03-27 14:36:33", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:33" + "owner": "Administrator" }, { - "section_style": "Simple", + "autoname": "IISD/.#####", + "doctype": "DocType", "istable": 1, "module": "Stock", - "server_code_error": " ", - "doctype": "DocType", - "autoname": "IISD/.#####", "name": "__common__", - "colour": "White:FFF", + "section_style": "Simple", "show_in_menu": 0, "version": 1 }, { - "name": "__common__", - "parent": "Item Quality Inspection Parameter", - "oldfieldtype": "Data", "doctype": "DocField", - "parenttype": "DocType", "fieldtype": "Data", - "permlevel": 0, - "parentfield": "fields" + "name": "__common__", + "oldfieldtype": "Data", + "parent": "Item Quality Inspection Parameter", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 }, { - "name": "Item Quality Inspection Parameter", - "doctype": "DocType" + "doctype": "DocType", + "name": "Item Quality Inspection Parameter" }, { - "search_index": 0, "doctype": "DocField", + "fieldname": "specification", + "in_filter": 0, "label": "Parameter", "oldfieldname": "specification", - "width": "200px", - "fieldname": "specification", "reqd": 1, - "in_filter": 0 + "search_index": 0, + "width": "200px" }, { - "oldfieldname": "value", - "fieldname": "value", "doctype": "DocField", - "label": "Acceptance Criteria" + "fieldname": "value", + "label": "Acceptance Criteria", + "oldfieldname": "value" } ] \ No newline at end of file diff --git a/stock/doctype/item_supplier/item_supplier.txt b/stock/doctype/item_supplier/item_supplier.txt index 96d6d31952..3569d25c68 100644 --- a/stock/doctype/item_supplier/item_supplier.txt +++ b/stock/doctype/item_supplier/item_supplier.txt @@ -1,45 +1,44 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:33", + "docstatus": 0, + "modified": "2012-03-27 14:36:33", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:33" + "owner": "Administrator" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Stock", "doctype": "DocType", - "version": 3, - "show_in_menu": 0 + "istable": 1, + "module": "Stock", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 3 }, { + "doctype": "DocField", "name": "__common__", "parent": "Item Supplier", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Item Supplier", - "doctype": "DocType" + "doctype": "DocType", + "name": "Item Supplier" }, { "doctype": "DocField", - "label": "Supplier", "fieldname": "supplier", "fieldtype": "Link", + "label": "Supplier", "options": "Supplier" }, { "doctype": "DocField", - "label": "Supplier Part Number", - "width": "200px", "fieldname": "supplier_part_no", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Supplier Part Number", + "width": "200px" } ] \ No newline at end of file diff --git a/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.txt b/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.txt index 678d9a9abf..993c4f4c6d 100644 --- a/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.txt +++ b/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.txt @@ -1,51 +1,49 @@ [ { - "owner": "wasim@webnotestech.com", - "docstatus": 0, "creation": "2012-03-27 14:36:34", + "docstatus": 0, + "modified": "2012-03-27 14:36:34", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:34" + "owner": "wasim@webnotestech.com" }, { - "section_style": "Simple", + "doctype": "DocType", "istable": 1, - "name": "__common__", - "colour": "White:FFF", "module": "Stock", + "name": "__common__", + "section_style": "Simple", "show_in_menu": 0, - "version": 5, - "server_code_error": " ", - "doctype": "DocType" + "version": 5 }, { + "doctype": "DocField", "name": "__common__", "parent": "Landed Cost Purchase Receipt", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Landed Cost Purchase Receipt", - "doctype": "DocType" + "doctype": "DocType", + "name": "Landed Cost Purchase Receipt" }, { - "oldfieldtype": "Link", "doctype": "DocField", - "label": "Purchase Receipt", - "oldfieldname": "purchase_receipt_no", - "width": "220px", "fieldname": "purchase_receipt", "fieldtype": "Link", - "options": "Purchase Receipt" + "label": "Purchase Receipt", + "oldfieldname": "purchase_receipt_no", + "oldfieldtype": "Link", + "options": "Purchase Receipt", + "width": "220px" }, { - "oldfieldtype": "Check", "doctype": "DocField", + "fieldname": "select_pr", + "fieldtype": "Check", "label": "Select PR", "oldfieldname": "include_in_landed_cost", - "width": "120px", - "fieldname": "select_pr", - "fieldtype": "Check" + "oldfieldtype": "Check", + "width": "120px" } ] \ No newline at end of file diff --git a/stock/doctype/uom_conversion_detail/uom_conversion_detail.txt b/stock/doctype/uom_conversion_detail/uom_conversion_detail.txt index 0d7971dfba..f0edf03f7a 100644 --- a/stock/doctype/uom_conversion_detail/uom_conversion_detail.txt +++ b/stock/doctype/uom_conversion_detail/uom_conversion_detail.txt @@ -1,50 +1,48 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:40", + "docstatus": 0, + "modified": "2012-03-27 14:36:40", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:40" + "owner": "Administrator" }, { - "section_style": "Tray", + "autoname": "UCDD/.#####", + "doctype": "DocType", "istable": 1, "module": "Stock", - "server_code_error": " ", - "doctype": "DocType", - "autoname": "UCDD/.#####", "name": "__common__", - "colour": "White:FFF", + "section_style": "Tray", "show_in_menu": 0, "version": 1 }, { + "doctype": "DocField", "name": "__common__", "parent": "UOM Conversion Detail", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "UOM Conversion Detail", - "doctype": "DocType" + "doctype": "DocType", + "name": "UOM Conversion Detail" }, { - "oldfieldtype": "Link", "doctype": "DocField", - "label": "UOM", - "oldfieldname": "uom", "fieldname": "uom", "fieldtype": "Link", + "label": "UOM", + "oldfieldname": "uom", + "oldfieldtype": "Link", "options": "UOM" }, { - "oldfieldtype": "Float", "doctype": "DocField", + "fieldname": "conversion_factor", + "fieldtype": "Float", "label": "Conversion Factor", "oldfieldname": "conversion_factor", - "fieldname": "conversion_factor", - "fieldtype": "Float" + "oldfieldtype": "Float" } ] \ No newline at end of file diff --git a/utilities/doctype/answer/answer.txt b/utilities/doctype/answer/answer.txt index 081df83d5c..58f0ba351b 100644 --- a/utilities/doctype/answer/answer.txt +++ b/utilities/doctype/answer/answer.txt @@ -1,69 +1,67 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:01", + "docstatus": 0, + "modified": "2012-03-27 14:36:01", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:01" + "owner": "Administrator" }, { - "section_style": "Simple", - "in_create": 1, - "module": "Utilities", + "allow_attach": 0, "allow_trash": 1, "autoname": "_ANS.#######", - "show_in_menu": 0, - "allow_attach": 0, - "read_only": 1, - "name": "__common__", - "colour": "White:FFF", "doctype": "DocType", - "server_code_error": " ", + "in_create": 1, + "module": "Utilities", + "name": "__common__", + "read_only": 1, + "section_style": "Simple", + "show_in_menu": 0, "version": 3 }, { + "doctype": "DocField", "name": "__common__", "parent": "Answer", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "parent": "Answer", - "read": 1, - "report": 1, "cancel": 1, - "name": "__common__", "create": 1, "doctype": "DocPerm", - "write": 1, + "name": "__common__", + "parent": "Answer", + "parentfield": "permissions", "parenttype": "DocType", - "role": "All", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "report": 1, + "role": "All", + "write": 1 }, { - "name": "Answer", - "doctype": "DocType" + "doctype": "DocType", + "name": "Answer" }, { "doctype": "DocPerm" }, { "doctype": "DocField", - "label": "Question", "fieldname": "question", "fieldtype": "Link", + "label": "Question", "options": "Question" }, { - "oldfieldtype": "Text", "doctype": "DocField", + "fieldname": "answer", + "fieldtype": "Text", "label": "Answer", "oldfieldname": "question", - "fieldname": "answer", - "fieldtype": "Text" + "oldfieldtype": "Text" }, { "doctype": "DocField", @@ -72,11 +70,11 @@ "label": "Points" }, { - "print_hide": 1, "doctype": "DocField", - "label": "Users Voted", "fieldname": "_users_voted", "fieldtype": "Text", - "hidden": 1 + "hidden": 1, + "label": "Users Voted", + "print_hide": 1 } ] \ No newline at end of file diff --git a/utilities/doctype/gl_mapper/gl_mapper.txt b/utilities/doctype/gl_mapper/gl_mapper.txt index 75846c635f..2059186f15 100644 --- a/utilities/doctype/gl_mapper/gl_mapper.txt +++ b/utilities/doctype/gl_mapper/gl_mapper.txt @@ -1,75 +1,73 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-04-13 11:56:40", + "docstatus": 0, + "modified": "2012-04-23 12:27:38", "modified_by": "Administrator", - "modified": "2012-04-23 12:27:38" + "owner": "Administrator" }, { - "section_style": "Simple", - "module": "Utilities", - "doctype": "DocType", - "server_code_error": " ", - "autoname": "field:doc_type", - "name": "__common__", - "colour": "White:FFF", "_last_update": "1305006361", + "autoname": "field:doc_type", + "doctype": "DocType", + "module": "Utilities", + "name": "__common__", + "section_style": "Simple", "show_in_menu": 0, "version": 1 }, { + "doctype": "DocField", "name": "__common__", "parent": "GL Mapper", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "__common__", - "parent": "GL Mapper", - "read": 1, "create": 0, "doctype": "DocPerm", + "name": "__common__", + "parent": "GL Mapper", + "parentfield": "permissions", "parenttype": "DocType", - "report": 1, "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "report": 1 }, { - "name": "GL Mapper", - "doctype": "DocType" + "doctype": "DocType", + "name": "GL Mapper" }, { "amend": 0, + "cancel": 0, "doctype": "DocPerm", - "submit": 0, - "write": 0, "role": "Accounts User", - "cancel": 0 + "submit": 0, + "write": 0 }, { - "write": 1, + "doctype": "DocPerm", "role": "System Manager", - "doctype": "DocPerm" + "write": 1 }, { - "oldfieldtype": "Link", "doctype": "DocField", - "label": "Doc Type", - "oldfieldname": "doc_type", "fieldname": "doc_type", "fieldtype": "Data", + "label": "Doc Type", + "oldfieldname": "doc_type", + "oldfieldtype": "Link", "reqd": 1 }, { - "oldfieldtype": "Table", "doctype": "DocField", - "label": "Fields", - "oldfieldname": "fields", "fieldname": "fields", "fieldtype": "Table", + "label": "Fields", + "oldfieldname": "fields", + "oldfieldtype": "Table", "options": "GL Mapper Detail" } ] \ No newline at end of file diff --git a/utilities/doctype/gl_mapper_detail/gl_mapper_detail.txt b/utilities/doctype/gl_mapper_detail/gl_mapper_detail.txt index 653154461d..bd1ecd6498 100644 --- a/utilities/doctype/gl_mapper_detail/gl_mapper_detail.txt +++ b/utilities/doctype/gl_mapper_detail/gl_mapper_detail.txt @@ -1,162 +1,160 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:46", + "docstatus": 0, + "modified": "2012-03-27 14:36:46", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:46" + "owner": "Administrator" }, { - "section_style": "Tray", + "autoname": "GLMDetail.#####", + "doctype": "DocType", "istable": 1, "module": "Utilities", - "server_code_error": " ", - "doctype": "DocType", - "autoname": "GLMDetail.#####", "name": "__common__", - "colour": "White:FFF", + "section_style": "Tray", "show_in_menu": 0, "version": 4 }, { - "name": "__common__", - "parent": "GL Mapper Detail", - "oldfieldtype": "Data", "doctype": "DocField", - "parenttype": "DocType", "fieldtype": "Data", - "permlevel": 0, - "parentfield": "fields" + "name": "__common__", + "oldfieldtype": "Data", + "parent": "GL Mapper Detail", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 }, { - "name": "GL Mapper Detail", - "doctype": "DocType" + "doctype": "DocType", + "name": "GL Mapper Detail" }, { - "oldfieldname": "table_field", + "doctype": "DocField", "fieldname": "table_field", - "doctype": "DocField", - "label": "Table Field" + "label": "Table Field", + "oldfieldname": "table_field" }, { "doctype": "DocField", + "fieldname": "account", "label": "Account", "oldfieldname": "account", - "fieldname": "account", "reqd": 1 }, { "doctype": "DocField", + "fieldname": "debit", "label": "Debit", "oldfieldname": "debit", - "fieldname": "debit", "reqd": 1 }, { "doctype": "DocField", + "fieldname": "credit", "label": "Credit", "oldfieldname": "credit", - "fieldname": "credit", "reqd": 1 }, { "doctype": "DocField", + "fieldname": "cost_center", "label": "Cost Center", "oldfieldname": "cost_center", - "fieldname": "cost_center", "reqd": 0 }, { "doctype": "DocField", + "fieldname": "against", "label": "Against", "oldfieldname": "against", - "fieldname": "against", "reqd": 1 }, { - "no_copy": 1, "doctype": "DocField", - "label": "Remarks", - "oldfieldname": "remarks", "fieldname": "remarks", + "label": "Remarks", + "no_copy": 1, + "oldfieldname": "remarks", "reqd": 1 }, { "doctype": "DocField", + "fieldname": "voucher_type", "label": "Voucher Type", "oldfieldname": "voucher_type", - "fieldname": "voucher_type", "reqd": 1 }, { "doctype": "DocField", + "fieldname": "voucher_no", "label": "Voucher No", "oldfieldname": "voucher_no", - "fieldname": "voucher_no", "reqd": 1 }, { "description": "The date at which current entry will get or has actually executed.", "doctype": "DocField", + "fieldname": "posting_date", "label": "Posting Date", "oldfieldname": "posting_date", - "fieldname": "posting_date", "reqd": 1 }, { "description": "The date at which current entry is made in system.", "doctype": "DocField", + "fieldname": "transaction_date", "label": "Transaction Date", "oldfieldname": "transaction_date", - "fieldname": "transaction_date", "reqd": 1 }, { "doctype": "DocField", + "fieldname": "aging_date", "label": "Aging Date", "oldfieldname": "aging_date", - "fieldname": "aging_date", "reqd": 1 }, { - "search_index": 0, "doctype": "DocField", + "fieldname": "fiscal_year", + "in_filter": 1, "label": "Fiscal Year", "oldfieldname": "fiscal_year", - "fieldname": "fiscal_year", "reqd": 1, - "in_filter": 1 + "search_index": 0 }, { - "oldfieldname": "against_voucher", + "doctype": "DocField", "fieldname": "against_voucher", - "doctype": "DocField", - "label": "Against Voucher" + "label": "Against Voucher", + "oldfieldname": "against_voucher" }, { - "oldfieldname": "against_voucher_type", + "doctype": "DocField", "fieldname": "against_voucher_type", - "doctype": "DocField", - "label": "Against Voucher Type" + "label": "Against Voucher Type", + "oldfieldname": "against_voucher_type" }, { - "search_index": 0, "doctype": "DocField", + "fieldname": "company", + "in_filter": 1, "label": "Company", "oldfieldname": "company", - "fieldname": "company", - "in_filter": 1 + "search_index": 0 }, { - "oldfieldname": "is_opening", + "doctype": "DocField", "fieldname": "is_opening", - "doctype": "DocField", - "label": "Is Opening" + "label": "Is Opening", + "oldfieldname": "is_opening" }, { - "oldfieldname": "is_advance", - "fieldname": "is_advance", "doctype": "DocField", - "label": "Is Advance" + "fieldname": "is_advance", + "label": "Is Advance", + "oldfieldname": "is_advance" } ] \ No newline at end of file diff --git a/utilities/doctype/profile_control/profile_control.txt b/utilities/doctype/profile_control/profile_control.txt index 7eaff7f282..e0904cd9dc 100644 --- a/utilities/doctype/profile_control/profile_control.txt +++ b/utilities/doctype/profile_control/profile_control.txt @@ -1,24 +1,22 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:47", + "docstatus": 0, + "modified": "2012-03-27 14:36:47", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:47" + "owner": "Administrator" }, { - "section_style": "Simple", - "name": "__common__", - "colour": "White:FFF", - "module": "Utilities", - "show_in_menu": 0, - "version": 12, - "server_code_error": " ", "doctype": "DocType", - "issingle": 1 + "issingle": 1, + "module": "Utilities", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 12 }, { - "name": "Profile Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "Profile Control" } ] \ No newline at end of file diff --git a/utilities/doctype/sms_log/sms_log.txt b/utilities/doctype/sms_log/sms_log.txt index 01d9e4a60d..37ca4c6f1a 100644 --- a/utilities/doctype/sms_log/sms_log.txt +++ b/utilities/doctype/sms_log/sms_log.txt @@ -1,54 +1,53 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:47", + "docstatus": 0, + "modified": "2012-03-27 14:36:47", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:47" + "owner": "Administrator" }, { - "section_style": "Simple", - "name": "__common__", "autoname": "SMSLOG/.########", - "colour": "White:FFF", - "module": "Utilities", "doctype": "DocType", - "version": 3, - "show_in_menu": 0 + "module": "Utilities", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 3 }, { - "name": "__common__", - "parent": "SMS Log", "doctype": "DocField", + "name": "__common__", + "parent": "SMS Log", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "parent": "SMS Log", - "read": 1, - "report": 1, - "name": "__common__", "create": 0, "doctype": "DocPerm", - "write": 0, + "name": "__common__", + "parent": "SMS Log", + "parentfield": "permissions", "parenttype": "DocType", - "role": "System Manager", "permlevel": 0, - "parentfield": "permissions" + "read": 1, + "report": 1, + "role": "System Manager", + "write": 0 }, { - "name": "SMS Log", - "doctype": "DocType" + "doctype": "DocType", + "name": "SMS Log" }, { "doctype": "DocPerm" }, { - "width": "50%", + "doctype": "DocField", "fieldname": "column_break0", "fieldtype": "Column Break", - "doctype": "DocField" + "width": "50%" }, { "doctype": "DocField", @@ -69,10 +68,10 @@ "label": "Receiver List" }, { - "width": "50%", + "doctype": "DocField", "fieldname": "column_break1", "fieldtype": "Column Break", - "doctype": "DocField" + "width": "50%" }, { "doctype": "DocField", diff --git a/utilities/doctype/sms_receiver/sms_receiver.txt b/utilities/doctype/sms_receiver/sms_receiver.txt index 8bf9352f61..4e0831c928 100644 --- a/utilities/doctype/sms_receiver/sms_receiver.txt +++ b/utilities/doctype/sms_receiver/sms_receiver.txt @@ -1,54 +1,52 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:47", + "docstatus": 0, + "modified": "2012-03-27 14:36:47", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:47" + "owner": "Administrator" }, { - "section_style": "Tray", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Utilities", "doctype": "DocType", - "version": 2, - "server_code_error": " " - }, - { + "istable": 1, + "module": "Utilities", "name": "__common__", - "parent": "SMS Receiver", - "oldfieldtype": "Data", + "section_style": "Tray", + "version": 2 + }, + { "doctype": "DocField", - "parenttype": "DocType", "fieldtype": "Data", - "permlevel": 0, - "parentfield": "fields" + "name": "__common__", + "oldfieldtype": "Data", + "parent": "SMS Receiver", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 }, { - "name": "SMS Receiver", - "doctype": "DocType" + "doctype": "DocType", + "name": "SMS Receiver" }, { - "oldfieldname": "customer_name", + "doctype": "DocField", "fieldname": "customer_name", - "doctype": "DocField", - "label": "Customer Name" + "label": "Customer Name", + "oldfieldname": "customer_name" }, { "doctype": "DocField", + "fieldname": "receiver_name", "label": "Receiver Name", "oldfieldname": "receiver_name", - "width": "350px", - "fieldname": "receiver_name" + "width": "350px" }, { "doctype": "DocField", + "fieldname": "mobile_no", "label": "Mobile No", "oldfieldname": "mobile_no", - "width": "200px", - "fieldname": "mobile_no", - "reqd": 1 + "reqd": 1, + "width": "200px" } ] \ No newline at end of file diff --git a/utilities/doctype/trash_control/trash_control.txt b/utilities/doctype/trash_control/trash_control.txt index 1ecf9bcd7f..412e38d10f 100644 --- a/utilities/doctype/trash_control/trash_control.txt +++ b/utilities/doctype/trash_control/trash_control.txt @@ -1,25 +1,23 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:47", + "docstatus": 0, + "modified": "2012-03-27 14:36:47", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:47" + "owner": "Administrator" }, { - "section_style": "Simple", - "in_create": 1, - "module": "Utilities", - "server_code_error": " ", "doctype": "DocType", + "in_create": 1, "issingle": 1, - "read_only": 1, + "module": "Utilities", "name": "__common__", - "colour": "White:FFF", + "read_only": 1, + "section_style": "Simple", "version": 35 }, { - "name": "Trash Control", - "doctype": "DocType" + "doctype": "DocType", + "name": "Trash Control" } ] \ No newline at end of file diff --git a/website/doctype/related_page/related_page.txt b/website/doctype/related_page/related_page.txt index 66c63779a9..a4a0983c48 100644 --- a/website/doctype/related_page/related_page.txt +++ b/website/doctype/related_page/related_page.txt @@ -1,36 +1,35 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-03-27 14:36:48", + "docstatus": 0, + "modified": "2012-03-27 14:36:48", "modified_by": "Administrator", - "modified": "2012-03-27 14:36:48" + "owner": "Administrator" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Website", "doctype": "DocType", - "version": 3, - "show_in_menu": 0 + "istable": 1, + "module": "Website", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 3 }, { - "parent": "Related Page", - "name": "__common__", "doctype": "DocField", - "permlevel": 0, - "parenttype": "DocType", "fieldname": "page", "fieldtype": "Link", "label": "Page", + "name": "__common__", "options": "Page", - "parentfield": "fields" + "parent": "Related Page", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 }, { - "name": "Related Page", - "doctype": "DocType" + "doctype": "DocType", + "name": "Related Page" }, { "doctype": "DocField" diff --git a/website/doctype/top_bar_item/top_bar_item.txt b/website/doctype/top_bar_item/top_bar_item.txt index 6a4597e8ba..bc78928515 100644 --- a/website/doctype/top_bar_item/top_bar_item.txt +++ b/website/doctype/top_bar_item/top_bar_item.txt @@ -1,52 +1,51 @@ [ { - "owner": "Administrator", - "docstatus": 0, "creation": "2012-04-02 16:02:43", + "docstatus": 0, + "modified": "2012-05-07 15:21:00", "modified_by": "Administrator", - "modified": "2012-05-07 15:21:00" + "owner": "Administrator" }, { - "section_style": "Simple", - "istable": 1, - "name": "__common__", - "colour": "White:FFF", - "module": "Website", "doctype": "DocType", - "version": 1, - "show_in_menu": 0 + "istable": 1, + "module": "Website", + "name": "__common__", + "section_style": "Simple", + "show_in_menu": 0, + "version": 1 }, { + "doctype": "DocField", "name": "__common__", "parent": "Top Bar Item", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Top Bar Item", - "doctype": "DocType" + "doctype": "DocType", + "name": "Top Bar Item" }, { "doctype": "DocField", - "label": "Label", - "width": "120px", "fieldname": "label", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Label", + "width": "120px" }, { "doctype": "DocField", - "label": "URL", - "width": "200px", "fieldname": "url", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "URL", + "width": "200px" }, { "doctype": "DocField", - "label": "Target", "fieldname": "target", "fieldtype": "Select", + "label": "Target", "options": "\ntarget = \"_blank\"" }, { From 18c1980e386ab541276673be74ec50323cc162a7 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 5 Mar 2013 14:44:05 +0530 Subject: [PATCH 096/982] voucher import tool - throw message if empty columns are found --- .../page/voucher_import_tool/voucher_import_tool.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/accounts/page/voucher_import_tool/voucher_import_tool.py b/accounts/page/voucher_import_tool/voucher_import_tool.py index 1819e07705..2d7cd25fd1 100644 --- a/accounts/page/voucher_import_tool/voucher_import_tool.py +++ b/accounts/page/voucher_import_tool/voucher_import_tool.py @@ -1,6 +1,6 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import flt +from webnotes.utils import flt, comma_and @webnotes.whitelist() def get_template(): @@ -231,6 +231,14 @@ def get_data(rows, company_abbr): if r[0]=="--------Data----------": start_row = i+2 + + # check for empty columns + empty_columns = [i+1 for i, c in enumerate(rows[i+1]) if not c] + if empty_columns: + raise Exception, """Column No(s). %s %s empty. \ + Please remove them and try again.""" % (comma_and(empty_columns), + len(empty_columns)==1 and "is" or "are") + columns = [c.replace(" ", "_").lower() for c in rows[i+1] if not c.endswith(" - " + company_abbr)] accounts = [c for c in rows[i+1] if c.endswith(" - " + company_abbr)] From c7e28c7e5d89564bee89ec0021860fa9297fd0c1 Mon Sep 17 00:00:00 2001 From: mayur-patel Date: Tue, 5 Mar 2013 20:14:05 +1100 Subject: [PATCH 097/982] changed the logic to be more elegant. --- hr/doctype/leave_application/leave_application.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/hr/doctype/leave_application/leave_application.py b/hr/doctype/leave_application/leave_application.py index 80504d09c8..f2a58c8dd8 100755 --- a/hr/doctype/leave_application/leave_application.py +++ b/hr/doctype/leave_application/leave_application.py @@ -126,14 +126,11 @@ class DocType(DocListController): self.doc.leave_type, self.doc.fiscal_year)["leave_balance"] if self.doc.leave_balance - self.doc.total_leave_days < 0: - - # check if this leave type allow the remaining balance to be in negative. If yes then warn the user and continue to save else warn the user and don't save. - if webnotes.conn.get_value("Leave Type", self.doc.leave_type,"allow_negative"): - msgprint("There is not enough leave balance for Leave Type - new: %s" %(self.doc.leave_type,)) - # warn the user but don't save the form. - else: - msgprint("There is not enough leave balance for Leave Type - new: %s" %(self.doc.leave_type,), raise_exception=1) - + #check if this leave type allow the remaining balance to be in negative. If yes then warn the user and continue to save else warn the user and don't save. + msgprint("There is not enough leave balance for Leave Type: %s" % \ + (self.doc.leave_type,), + raise_exception=not(webnotes.conn.get_value("Leave Type", self.doc.leave_type,"allow_negative") or None)) + def validate_leave_overlap(self): if not self.doc.name: self.doc.name = "New Leave Application" From dae20d87dc2254f5d39ff44d006a23738008c9a0 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 5 Mar 2013 15:52:07 +0530 Subject: [PATCH 098/982] refactored upload attendace tool --- hr/doctype/attendance/attendance.py | 9 +- .../attendance_control_panel/__init__.py | 1 - .../attendance_control_panel.js | 66 --------- .../attendance_control_panel.py | 100 ------------- .../attendance_control_panel.txt | 136 ------------------ .../locale/_messages_doc.json | 24 ---- .../locale/ar-doc.json | 24 ---- .../locale/de-doc.json | 21 --- .../locale/es-doc.json | 24 ---- .../locale/fr-doc.json | 24 ---- .../locale/hi-doc.json | 24 ---- .../locale/hr-doc.json | 24 ---- .../locale/nl-doc.json | 24 ---- .../locale/pt-BR-doc.json | 22 --- .../locale/pt-doc.json | 24 ---- .../locale/sr-doc.json | 24 ---- .../locale/ta-doc.json | 24 ---- .../locale/th-doc.json | 24 ---- hr/doctype/upload_attendance/__init__.py | 0 .../upload_attendance/upload_attendance.js | 107 ++++++++++++++ .../upload_attendance/upload_attendance.py | 136 ++++++++++++++++++ .../upload_attendance/upload_attendance.txt | 99 +++++++++++++ hr/page/hr_home/hr_home.js | 6 +- patches/patch_list.py | 4 +- 24 files changed, 350 insertions(+), 621 deletions(-) delete mode 100644 hr/doctype/attendance_control_panel/__init__.py delete mode 100644 hr/doctype/attendance_control_panel/attendance_control_panel.js delete mode 100644 hr/doctype/attendance_control_panel/attendance_control_panel.py delete mode 100644 hr/doctype/attendance_control_panel/attendance_control_panel.txt delete mode 100644 hr/doctype/attendance_control_panel/locale/_messages_doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/ar-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/de-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/es-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/fr-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/hi-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/hr-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/nl-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/pt-BR-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/pt-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/sr-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/ta-doc.json delete mode 100644 hr/doctype/attendance_control_panel/locale/th-doc.json create mode 100644 hr/doctype/upload_attendance/__init__.py create mode 100644 hr/doctype/upload_attendance/upload_attendance.js create mode 100644 hr/doctype/upload_attendance/upload_attendance.py create mode 100644 hr/doctype/upload_attendance/upload_attendance.txt diff --git a/hr/doctype/attendance/attendance.py b/hr/doctype/attendance/attendance.py index b0f31310e0..289a14eebf 100644 --- a/hr/doctype/attendance/attendance.py +++ b/hr/doctype/attendance/attendance.py @@ -64,13 +64,8 @@ class DocType: def validate_fiscal_year(self): - fy=sql("select year_start_date from `tabFiscal Year` where name='%s'" % \ - self.doc.fiscal_year) - ysd=fy and fy[0][0] or "" - yed=add_days(str(ysd),365) - if str(self.doc.att_date) < str(ysd) or str(self.doc.att_date) > str(yed): - msgprint("'%s' Not Within The Fiscal Year selected"%(self.doc.att_date)) - raise Exception + from accounts.utils import validate_fiscal_year + validate_fiscal_year(self.doc.att_date, self.doc.fiscal_year) def validate_att_date(self): import datetime diff --git a/hr/doctype/attendance_control_panel/__init__.py b/hr/doctype/attendance_control_panel/__init__.py deleted file mode 100644 index baffc48825..0000000000 --- a/hr/doctype/attendance_control_panel/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/hr/doctype/attendance_control_panel/attendance_control_panel.js b/hr/doctype/attendance_control_panel/attendance_control_panel.js deleted file mode 100644 index 917002f089..0000000000 --- a/hr/doctype/attendance_control_panel/attendance_control_panel.js +++ /dev/null @@ -1,66 +0,0 @@ -// ERPNext - web based ERP (http://erpnext.com) -// Copyright (C) 2012 Web Notes Technologies Pvt Ltd -// -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -cur_frm.cscript.onload = function(doc,cdt,cdn){ - cur_frm.log_div = $a(cur_frm.fields_dict['import_log1'].wrapper,'div','',{border:'1px solid #CCC', backgroundColor:'#DDD',width : '100%', height : '300px', overflow : 'auto'}); - hide_field('import_log1') - doc.att_fr_date = get_today(); - doc.file_list = ''; - doc.overwrite = 0; - refresh_many(['att_fr_date','file_list','overwrite']); - - -} - -//download attendance template - csv file -cur_frm.cscript.get_template = function(doc,cdt,cdn){ - - if(doc.att_to_date && !doc.att_fr_date) - alert("Please enter 'Attendance To Date'"); - else if(doc.att_to_date && doc.att_fr_date && doc.att_to_date < doc.att_fr_date) - alert("Attendance to date cannot be less than from date."); - else - $c_obj_csv(make_doclist(cdt,cdn),'get_att_list',''); -} - -//--------------------------------------------------------- -cur_frm.cscript.import = function(doc,cdt,cdn){ - if(!doc.file_list){ - alert("Please upload attendance data CSV file"); - } - else{ - var call_back = function(r,rt){ - cur_frm.log_div.innerHTML = ''; - if(r.message) - cur_frm.log_div.innerHTML = r.message; - - cur_frm.cscript.refresh(doc,cdt,cdn); - } - - $c_obj(make_doclist(cdt,cdn),'import_att_data','',call_back); - } - cur_frm.cscript.refresh(doc,cdt,cdn); -} - -//==================================================== -cur_frm.cscript.refresh = function(doc,cdt,cdn){ - if(cur_frm.log_div.innerHTML == '') - hide_field('import_log1'); - else - unhide_field('import_log1'); - refresh_field('import_log1'); - -} diff --git a/hr/doctype/attendance_control_panel/attendance_control_panel.py b/hr/doctype/attendance_control_panel/attendance_control_panel.py deleted file mode 100644 index 8b86cee297..0000000000 --- a/hr/doctype/attendance_control_panel/attendance_control_panel.py +++ /dev/null @@ -1,100 +0,0 @@ -# ERPNext - web based ERP (http://erpnext.com) -# Copyright (C) 2012 Web Notes Technologies Pvt Ltd -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -from __future__ import unicode_literals -import webnotes -from webnotes.utils import cint, cstr, formatdate, getdate -from webnotes import msgprint - -sql = webnotes.conn.sql - - - -class DocType: - def __init__(self,d,dt): - self.doc, self.doclist = d,dt - - def get_att_list(self): - lst = [['Attendance','','','Please fill columns which are Mandatory.',' Please do not modify the structure','',''],['','','','','','',''],['[Mandatory]','','[Mandatory]','[Mandatory]','[Mandatory]','[Mandatory]','[Mandatory]'],['Employee','Employee Name','Attendance Date','Status','Fiscal Year','Company','Naming Series']] - - dt = self.date_diff_list() # get date list inbetween from date and to date - att_dt = self.get_att_data() # get default attendance data like fiscal yr, company, naming series - - fy, comp, sr = att_dt['fy'], att_dt['comp'], att_dt['sr'] - res = sql("select name, employee_name from `tabEmployee` where status = 'Active' and docstatus !=2") - - for d in dt: - for r in res: - lst.append([r[0],r[1],d,'',fy,comp,sr]) - - return lst - - # get date list inbetween from date and to date - def date_diff_list(self): - import datetime - - if self.doc.att_to_date: - r = (getdate(self.doc.att_to_date)+datetime.timedelta(days=1)-getdate(self.doc.att_fr_date)).days - else: - r = 1 - dateList = [getdate(self.doc.att_fr_date)+datetime.timedelta(days=i) for i in range(0,r)] - dt=([formatdate(cstr(date)) for date in dateList]) - - return dt - - def get_att_data(self): - import webnotes.defaults - fy = webnotes.defaults.get_global_default('fiscal_year') - comp = webnotes.defaults.get_user_default('company') - - #get naming series of attendance - import webnotes.model.doctype - docfield = webnotes.model.doctype.get('Attendance') - series = [d.options for d in docfield if d.doctype == 'DocField' and d.fieldname == 'naming_series'] - if not series: - msgprint("Please create naming series for Attendance.\nGo to Setup--> Numbering Series.") - raise Exception - else: - sr = series[0] or '' - - return {'fy':fy,'comp':comp,'sr':sr} - - def import_att_data(self): - filename = self.doc.file_list.split(',') - - if not filename: - msgprint("Please attach a .CSV File.") - raise Exception - - if filename[0].find('.csv') < 0: - raise Exception - - if not filename and filename[0] and file[1]: - msgprint("Please Attach File. ") - raise Exception - - from webnotes.utils import file_manager - fn, content = file_manager.get_file(filename[1]) - - # NOTE: Don't know why this condition exists - if not isinstance(content, basestring) and hasattr(content, 'tostring'): - content = content.tostring() - - import webnotes.model.import_docs - im = webnotes.model.import_docs.CSVImport() - out = im.import_csv(content,self.doc.import_date_format, cint(self.doc.overwrite)) - return out - diff --git a/hr/doctype/attendance_control_panel/attendance_control_panel.txt b/hr/doctype/attendance_control_panel/attendance_control_panel.txt deleted file mode 100644 index 3ccba91575..0000000000 --- a/hr/doctype/attendance_control_panel/attendance_control_panel.txt +++ /dev/null @@ -1,136 +0,0 @@ -[ - { - "creation": "2013-01-10 16:34:13", - "docstatus": 0, - "modified": "2013-01-22 14:55:57", - "modified_by": "Administrator", - "owner": "harshada@webnotestech.com" - }, - { - "allow_attach": 1, - "doctype": "DocType", - "issingle": 1, - "max_attachments": 1, - "module": "HR", - "name": "__common__" - }, - { - "doctype": "DocField", - "name": "__common__", - "parent": "Attendance Control Panel", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0 - }, - { - "create": 1, - "doctype": "DocPerm", - "name": "__common__", - "parent": "Attendance Control Panel", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "read": 1, - "report": 1, - "submit": 0, - "write": 1 - }, - { - "doctype": "DocType", - "name": "Attendance Control Panel" - }, - { - "description": "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.\nFill data in the template. Save the template in CSV format.\nAll attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.", - "doctype": "DocField", - "fieldname": "download_template", - "fieldtype": "Section Break", - "label": "Download Template" - }, - { - "description": "Selected Attendance date will comes in the attendance template.", - "doctype": "DocField", - "fieldname": "att_fr_date", - "fieldtype": "Date", - "label": "Attendance From Date", - "oldfieldname": "attenadnce_date", - "oldfieldtype": "Date" - }, - { - "doctype": "DocField", - "fieldname": "get_template", - "fieldtype": "Button", - "label": "Get Template", - "oldfieldtype": "Button" - }, - { - "doctype": "DocField", - "fieldname": "column_break0", - "fieldtype": "Column Break" - }, - { - "description": "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.", - "doctype": "DocField", - "fieldname": "att_to_date", - "fieldtype": "Date", - "label": "Attendance To Date" - }, - { - "description": "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".\nSelect the date format as attendance date format in CSV file.\nClick on \"Import\".", - "doctype": "DocField", - "fieldname": "upload_attendance_data", - "fieldtype": "Section Break", - "label": "Upload Attendance Data" - }, - { - "doctype": "DocField", - "fieldname": "import_date_format", - "fieldtype": "Select", - "label": "Import Date Format ", - "options": "yyyy-mm-dd\nmm/dd/yyyy\nmm/dd/yy\ndd-mm-yyyy\ndd/mm/yyyy" - }, - { - "doctype": "DocField", - "fieldname": "overwrite", - "fieldtype": "Check", - "label": "Overwrite" - }, - { - "doctype": "DocField", - "fieldname": "import", - "fieldtype": "Button", - "label": "Import" - }, - { - "doctype": "DocField", - "fieldname": "file_list", - "fieldtype": "Text", - "hidden": 1, - "label": "File List", - "print_hide": 1, - "read_only": 1 - }, - { - "doctype": "DocField", - "fieldname": "import_log", - "fieldtype": "Section Break", - "label": "Import Log" - }, - { - "doctype": "DocField", - "fieldname": "import_log1", - "fieldtype": "HTML", - "label": "Import Log1" - }, - { - "doctype": "DocPerm", - "role": "System Manager" - }, - { - "doctype": "DocPerm", - "role": "HR User" - }, - { - "doctype": "DocPerm", - "role": "HR Manager" - } -] \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/_messages_doc.json b/hr/doctype/attendance_control_panel/locale/_messages_doc.json deleted file mode 100644 index 374cb704b1..0000000000 --- a/hr/doctype/attendance_control_panel/locale/_messages_doc.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - "Attendance From Date", - "Import Date Format ", - "HR", - "Attendance To Date", - "Upload Attendance Data", - "Import", - "Get Template", - "mm/dd/yyyy", - "File List", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".\nSelect the date format as attendance date format in CSV file.\nClick on \"Import\".", - "Import Log", - "dd-mm-yyyy", - "Attendance Control Panel", - "Import Log1", - "dd/mm/yyyy", - "Selected Attendance date will comes in the attendance template.", - "yyyy-mm-dd", - "mm/dd/yy", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.\nFill data in the template. Save the template in CSV format.\nAll attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.", - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.", - "Overwrite", - "Download Template" -] \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/ar-doc.json b/hr/doctype/attendance_control_panel/locale/ar-doc.json deleted file mode 100644 index 85045c866c..0000000000 --- a/hr/doctype/attendance_control_panel/locale/ar-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "\u062c\u0645\u064a\u0639 \u0627\u0644\u062d\u0636\u0648\u0631 \u064a\u0639\u0648\u062f \u0641\u064a \u0627\u0644\u0645\u0646\u062a\u0635\u0641 \u0627\u0644\u062d\u0636\u0648\u0631 \u0645\u062e\u062a\u0627\u0631\u0629 \u0645\u0646 \u062a\u0627\u0631\u064a\u062e \u0648\u0627\u0644\u062d\u0636\u0648\u0631 \u062d\u062a\u0649 \u0627\u0644\u0622\u0646 \u0648\u0633\u0648\u0641 \u062a\u0623\u062a\u064a \u0641\u064a \u0627\u0644\u0642\u0627\u0644\u0628 \u0645\u0639 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0648\u0638\u0641\u064a\u0646.", - "Attendance Control Panel": "\u0627\u0644\u062d\u0636\u0648\u0631 \u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645", - "Attendance From Date": "\u0627\u0644\u062d\u0636\u0648\u0631 \u0645\u0646 \u062a\u0627\u0631\u064a\u062e", - "Attendance To Date": "\u0627\u0644\u062d\u0636\u0648\u0631 \u0625\u0644\u0649 \u062a\u0627\u0631\u064a\u062e", - "Download Template": "\u062a\u062d\u0645\u064a\u0644 \u0642\u0627\u0644\u0628", - "File List": "\u0645\u0644\u0641 \u0642\u0627\u0626\u0645\u0629", - "Get Template": "\u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0642\u0627\u0644\u0628", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "\u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0642\u0627\u0644\u0628 \u0645\u0646 \u0627\u0644\u062d\u0636\u0648\u0631 \u0627\u0644\u0630\u064a \u062a\u0631\u064a\u062f \u0627\u0633\u062a\u064a\u0631\u0627\u062f CSV \u0641\u064a (\u0627\u0644\u0642\u064a\u0645 \u0627\u0644\u0645\u0641\u0635\u0648\u0644\u0629 \u0641\u0635\u0644) format.Fill \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0641\u064a \u0627\u0644\u0642\u0627\u0644\u0628. \u062d\u0641\u0638 \u0627\u0644\u0642\u0627\u0644\u0628 \u0641\u064a \u0627\u0644\u062d\u0636\u0648\u0631 format.All CSV \u064a\u0639\u0648\u062f '\u0627\u0644\u062d\u0636\u0648\u0631 \u0645\u0646 \u062a\u0627\u0631\u064a\u062e' \u0627\u0644\u0645\u0646\u062a\u0635\u0641 \u0648 "\u0627\u0644\u062d\u0636\u0648\u0631 \u0625\u0644\u0649 \u062a\u0627\u0631\u064a\u062e" \u0633\u064a\u0623\u062a\u064a \u0641\u064a \u0627\u0644\u0642\u0627\u0644\u0628 \u0645\u0639 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0648\u0638\u0641\u064a\u0646.", - "HR": "HR", - "Import": "\u0627\u0633\u062a\u064a\u0631\u0627\u062f", - "Import Date Format ": "\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0627\u0631\u064a\u062e", - "Import Log": "\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u062f\u062e\u0648\u0644", - "Import Log1": "\u0627\u0633\u062a\u064a\u0631\u0627\u062f Log1", - "Overwrite": "\u0627\u0644\u0643\u062a\u0627\u0628\u0629", - "Selected Attendance date will comes in the attendance template.": "\u0633\u0648\u0641 \u064a\u0623\u062a\u064a \u0645\u062e\u062a\u0627\u0631\u0629 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062d\u0636\u0648\u0631 \u0641\u064a \u0642\u0627\u0644\u0628 \u0627\u0644\u062d\u0636\u0648\u0631.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "\u0644\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062d\u0636\u0648\u0631\u060c \u0627\u0646\u0642\u0631 \u0639\u0644\u0649 \u0632\u0631 "\u0625\u0636\u0627\u0641\u0629"\u060c \u062d\u062f\u062f \u0627\u0644\u0645\u0644\u0641 CSV \u062d\u0641\u0638 \u0648\u0627\u0646\u0642\u0631 \u0639\u0644\u0649 "\u062a\u062d\u0645\u064a\u0644". \u062d\u062f\u062f \u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0648\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062d\u0636\u0648\u0631 \u0641\u064a file.Click CSV \u0639\u0644\u0649 "\u0627\u0633\u062a\u064a\u0631\u0627\u062f".", - "Upload Attendance Data": "\u062a\u062d\u0645\u064a\u0644 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062d\u0636\u0648\u0631", - "dd-mm-yyyy": "DD-MM-YYYY", - "dd/mm/yyyy": "\u0627\u0644\u064a\u0648\u0645 / \u0627\u0644\u0634\u0647\u0631 / \u0627\u0644\u0633\u0646\u0629", - "mm/dd/yy": "\u0634\u0647\u0631 / \u064a\u0648\u0645 / \u0633\u0646\u0629", - "mm/dd/yyyy": "\u0645\u0645 / \u0627\u0644\u064a\u0648\u0645 / \u0627\u0644\u0633\u0646\u0629", - "yyyy-mm-dd": "YYYY-MM-DD" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/de-doc.json b/hr/doctype/attendance_control_panel/locale/de-doc.json deleted file mode 100644 index fb0d98a925..0000000000 --- a/hr/doctype/attendance_control_panel/locale/de-doc.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "All die Teilnahme datiert dazwischen gew\u00e4hlt Teilnahme ab Datum und die Teilnahme an Datum wird in der Vorlage mit den Mitarbeitern Liste kommen.", - "Attendance Control Panel": "Teilnahme Control Panel", - "Attendance From Date": "Teilnahme ab-Datum", - "Attendance To Date": "Teilnahme To Date", - "Download Template": "Vorlage herunterladen", - "File List": "Dateiliste", - "Get Template": "Holen Template", - "HR": "HR", - "Import": "Importieren", - "Import Log": "Import-Logbuch", - "Import Log1": "Importieren Log1", - "Overwrite": "\u00dcberschreiben", - "Selected Attendance date will comes in the attendance template.": "Ausgew\u00e4hlte Datum wird Teilnahme in der Anwesenheitsliste Vorlage essen.", - "Upload Attendance Data": "Hochladen Teilnahme Daten", - "dd-mm-yyyy": "dd-mm-yyyy", - "dd/mm/yyyy": "dd / mm / yyyy", - "mm/dd/yy": "mm / tt / jj", - "mm/dd/yyyy": "mm / dd / yyyy", - "yyyy-mm-dd": "yyyy-mm-dd" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/es-doc.json b/hr/doctype/attendance_control_panel/locale/es-doc.json deleted file mode 100644 index 6381d268c9..0000000000 --- a/hr/doctype/attendance_control_panel/locale/es-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "Todas las fechas de asistencia Asistencia inbetween seleccionada Desde la fecha y asistencia hasta la fecha se vienen en la plantilla con la lista de empleados.", - "Attendance Control Panel": "La asistencia del Panel de control", - "Attendance From Date": "Desde la fecha de Asistencia", - "Attendance To Date": "Asistencia hasta la fecha", - "Download Template": "Descargue la plantilla", - "File List": "Lista de archivos", - "Get Template": "C\u00f3mo Plantilla", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "Obtener la plantilla de la Asistencia para el que desea importar en formato CSV (valores separada por comas) format.Fill datos en la plantilla. Guarde la plantilla en formato CSV asistencia format.All data 'Asistencia De Date' entre medio y "asistencia hasta la fecha" vendr\u00e1 en la plantilla con la lista de empleados.", - "HR": "HR", - "Import": "Importar", - "Import Date Format ": "Importar formato de fecha", - "Import Log": "Importar sesi\u00f3n", - "Import Log1": "Importar Registro1", - "Overwrite": "Sobrescribir", - "Selected Attendance date will comes in the attendance template.": "Asistencia fecha seleccionada se presenta en la plantilla de la asistencia.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "Para importar los datos de asistencia, haga clic en el bot\u00f3n "Agregar", seleccione el archivo CSV guardado y haga clic en "Upload". Seleccione el formato de fecha en formato de fecha en formato CSV asistencia file.Click en "Importar".", - "Upload Attendance Data": "Subir los datos de asistencia", - "dd-mm-yyyy": "dd-mm-aaaa", - "dd/mm/yyyy": "dd / mm / aaaa", - "mm/dd/yy": "mm / dd / aa", - "mm/dd/yyyy": "mm / dd / aaaa", - "yyyy-mm-dd": "aaaa-mm-dd" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/fr-doc.json b/hr/doctype/attendance_control_panel/locale/fr-doc.json deleted file mode 100644 index 644ff34a9a..0000000000 --- a/hr/doctype/attendance_control_panel/locale/fr-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "Toutes les dates de pr\u00e9sence de pr\u00e9sence inbetween s\u00e9lectionn\u00e9 Date de d\u00e9but et de pr\u00e9sence \u00e0 ce jour viendra dans le mod\u00e8le avec la liste des employ\u00e9s.", - "Attendance Control Panel": "Panneau de configuration de pr\u00e9sence", - "Attendance From Date": "Participation De Date", - "Attendance To Date": "La participation \u00e0 ce jour", - "Download Template": "T\u00e9l\u00e9charger le mod\u00e8le", - "File List": "Liste des fichiers", - "Get Template": "Obtenez mod\u00e8le", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "Obtenez le gabarit de la Participation pour lequel vous voulez importer au format CSV (valeurs s\u00e9par\u00e9es par des virgules) format.Fill donn\u00e9es dans le mod\u00e8le. Enregistrez le mod\u00e8le au format CSV format.All pr\u00e9sence remonte \u00abFr\u00e9quentation De Date 'inbetween et\u00ab Participation \u00e0 jour \u00bbviendra dans le mod\u00e8le avec la liste des employ\u00e9s.", - "HR": "RH", - "Import": "Importer", - "Import Date Format ": "Format de la date d'importation", - "Import Log": "Importer Connexion", - "Import Log1": "Importer Log1", - "Overwrite": "\u00c9craser", - "Selected Attendance date will comes in the attendance template.": "Date de Participation est s\u00e9lectionn\u00e9 dans le mod\u00e8le de participation.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "Pour importer les donn\u00e9es de fr\u00e9quentation, cliquez sur "Ajouter", s\u00e9lectionnez le fichier CSV enregistr\u00e9 et cliquez sur "Upload". S\u00e9lectionnez le format de date au format CSV date de fr\u00e9quentation dans file.Click sur "Importer".", - "Upload Attendance Data": "Envoyez donn\u00e9es sur la fr\u00e9quentation", - "dd-mm-yyyy": "jj-mm-aaaa", - "dd/mm/yyyy": "jj / mm / aaaa", - "mm/dd/yy": "jj / mm / aa", - "mm/dd/yyyy": "jj / mm / aaaa", - "yyyy-mm-dd": "aaaa-mm-jj" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/hi-doc.json b/hr/doctype/attendance_control_panel/locale/hi-doc.json deleted file mode 100644 index 500b2f193b..0000000000 --- a/hr/doctype/attendance_control_panel/locale/hi-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "\u0938\u092d\u0940 \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u0924\u093f\u0925\u093f\u092f\u093e\u0901 inbetween \u0924\u093f\u0925\u093f \u0914\u0930 \u0924\u093f\u0925\u093f \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f \u092e\u0947\u0902 \u0915\u0930\u094d\u092e\u091a\u093e\u0930\u093f\u092f\u094b\u0902 \u0915\u0940 \u0938\u0942\u091a\u0940 \u0915\u0947 \u0938\u093e\u0925 \u0906 \u091c\u093e\u090f\u0917\u093e \u0938\u0947 \u091a\u092f\u0928\u093f\u0924 \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f.", - "Attendance Control Panel": "\u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923 \u0915\u0915\u094d\u0937", - "Attendance From Date": "\u0926\u093f\u0928\u093e\u0902\u0915 \u0938\u0947 \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f", - "Attendance To Date": "\u0924\u093f\u0925\u093f \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f", - "Download Template": "\u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f \u0921\u093e\u0909\u0928\u0932\u094b\u0921 \u0915\u0930\u0947\u0902", - "File List": "\u092b\u093c\u093e\u0907\u0932 \u0938\u0942\u091a\u0940", - "Get Template": "\u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f \u091c\u093e\u0913", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "\u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u0915\u0940 \u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f \u091c\u093f\u0938\u0915\u0947 \u0932\u093f\u090f \u0906\u092a CSV \u092e\u0947\u0902 \u0906\u092f\u093e\u0924 \u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f (\u0915\u0949\u092e\u093e \u0938\u0947 \u0905\u0932\u0917 \u092e\u093e\u0928) \u092e\u0947\u0902 format.Fill \u0921\u0947\u091f\u093e \u091a\u093e\u0939\u0924\u0947. CSV format.All \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u092e\u0947\u0902 \u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f \u0938\u0939\u0947\u091c\u0947\u0902 \u0924\u093f\u0925\u093f\u092f\u093e\u0901 inbetween \u0914\u0930 \u0915\u0930\u094d\u092e\u091a\u093e\u0930\u093f\u092f\u094b\u0902 \u0915\u0940 \u0938\u0942\u091a\u0940 \u0915\u0947 \u0938\u093e\u0925 \u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f \u092e\u0947\u0902 \u0906 \u091c\u093e\u090f\u0917\u093e '\u0924\u093f\u0925\u093f' \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f '\u0924\u093f\u0925\u093f \u0938\u0947 \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f'.", - "HR": "\u092e\u093e\u0928\u0935 \u0938\u0902\u0938\u093e\u0927\u0928", - "Import": "\u0906\u092f\u093e\u0924", - "Import Date Format ": "\u0906\u092f\u093e\u0924 \u0926\u093f\u0928\u093e\u0902\u0915 \u0938\u094d\u0935\u0930\u0942\u092a", - "Import Log": "\u092a\u094d\u0930\u0935\u0947\u0936 \u0915\u0930\u0947\u0902 \u0906\u092f\u093e\u0924", - "Import Log1": "Log1 \u0906\u092f\u093e\u0924", - "Overwrite": "\u0905\u0927\u093f\u0932\u0947\u0916\u093f\u0924 \u0915\u0930\u0947\u0902", - "Selected Attendance date will comes in the attendance template.": "\u091a\u092f\u0928\u093f\u0924 \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u0924\u093e\u0930\u0940\u0916 \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u091f\u0947\u092e\u094d\u092a\u0932\u0947\u091f \u092e\u0947\u0902 \u0906\u0924\u093e \u0939\u0948.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "\u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u0921\u0947\u091f\u093e \u0906\u092f\u093e\u0924 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f, "\u091c\u094b\u0921\u093c\u0947\u0902" \u092c\u091f\u0928 \u092a\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902, \u092c\u091a\u093e\u092f\u093e CSV \u092b\u093c\u093e\u0907\u0932 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902 \u0914\u0930 "\u0905\u092a\u0932\u094b\u0921" \u092a\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902 CSV file.Click \u092e\u0947\u0902 "\u0906\u092f\u093e\u0924" \u092a\u0930 \u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u0926\u093f\u0928\u093e\u0902\u0915 \u0938\u094d\u0935\u0930\u0942\u092a \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u0926\u093f\u0928\u093e\u0902\u0915 \u0938\u094d\u0935\u0930\u0942\u092a \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902.", - "Upload Attendance Data": "\u0909\u092a\u0938\u094d\u0925\u093f\u0924\u093f \u0921\u0947\u091f\u093e \u0905\u092a\u0932\u094b\u0921", - "dd-mm-yyyy": "\u0921\u0940\u0921\u0940-mm-yyyy", - "dd/mm/yyyy": "dd / mm / yyyy", - "mm/dd/yy": "dd / mm / yy", - "mm/dd/yyyy": "dd / mm / yyyy", - "yyyy-mm-dd": "yyyy-mm-dd" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/hr-doc.json b/hr/doctype/attendance_control_panel/locale/hr-doc.json deleted file mode 100644 index dc5d4b6382..0000000000 --- a/hr/doctype/attendance_control_panel/locale/hr-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "Sve stadionu datira izme\u0111u ta dva odabrana Gledatelji od datuma i posje\u0107enost do danas \u0107e do\u0107i u predlo\u0161ku sa zaposlenicima popisu.", - "Attendance Control Panel": "Gledatelja Upravlja\u010dka plo\u010da", - "Attendance From Date": "Gledatelja Od datuma", - "Attendance To Date": "Gledatelja do danas", - "Download Template": "Preuzmite predlo\u017eak", - "File List": "Popis datoteka", - "Get Template": "Nabavite predlo\u0161ka", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "Nabavite slikovni Gledatelji za koje \u017eelite uvesti u CSV (vrijednosti odvojenih zarezom) format.Fill podataka u predlo\u017eak. Spremi predlo\u017eak u CSV format.All prisustvo datira izme\u0111u ta dva 'Gledatelji od datuma' i 'posje\u0107enost do danas' \u0107e do\u0107i u predlo\u0161ku sa zaposlenicima popisu.", - "HR": "HR", - "Import": "Uvoz", - "Import Date Format ": "Uvoz Datum Format", - "Import Log": "Uvoz Prijavite", - "Import Log1": "Uvoz Log1", - "Overwrite": "Pisati preko", - "Selected Attendance date will comes in the attendance template.": "Odabrani posje\u0107enost datum dolazi u posje\u0107enosti predlo\u0161ku.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "Za uvoz poha\u0111anje podatke, kliknite na "Dodaj" gumb, odaberite spremljenu CSV datoteku i kliknite na "Prenesi". Odaberite format datuma kao posje\u0107enosti datumu formatu CSV file.Click na "uvoz".", - "Upload Attendance Data": "Prenesi Gledatelji podataka", - "dd-mm-yyyy": "dd-mm-yyyy", - "dd/mm/yyyy": "dd / mm / gggg", - "mm/dd/yy": "dd / mm / gg", - "mm/dd/yyyy": "dd / mm / gggg", - "yyyy-mm-dd": "gggg-mm-dd" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/nl-doc.json b/hr/doctype/attendance_control_panel/locale/nl-doc.json deleted file mode 100644 index 3a94eb2c4a..0000000000 --- a/hr/doctype/attendance_control_panel/locale/nl-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "Alle aanwezigheid dateert inbetween geselecteerd Aanwezigheid Van Datum en Aanwezigheid graag: zal komen in de sjabloon met de medewerkers lijst.", - "Attendance Control Panel": "Aanwezigheid Control Panel", - "Attendance From Date": "Aanwezigheid Van Datum", - "Attendance To Date": "Aanwezigheid graag:", - "Download Template": "Download Template", - "File List": "File List", - "Get Template": "Get Sjabloon", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "Klik hier voor de template van de Aanwezigheid waarvoor u wilt importeren in CSV (Comma gescheiden waarden) format.Fill gegevens in het sjabloon. Sla de sjabloon op in CSV format.All aanwezigheid dateert inbetween 'Aanwezigheid Van Datum' en 'Aanwezigheid graag:' zal komen in de sjabloon met de medewerkers lijst.", - "HR": "HR", - "Import": "Importeren", - "Import Date Format ": "Import Datumnotatie", - "Import Log": "Importeren Inloggen", - "Import Log1": "Importeren Log1", - "Overwrite": "Beschrijven", - "Selected Attendance date will comes in the attendance template.": "Geselecteerde Aanwezigheid datum komt in de aanwezigheid sjabloon.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "Om aanwezigheid gegevens te importeren, klikt u op "Add" knop, selecteer het opgeslagen CSV-bestand en klik op "Upload". Selecteer de datumnotatie als bewijs van datum formaat in CSV file.Click op "Importeren".", - "Upload Attendance Data": "Upload Aanwezigheid gegevens", - "dd-mm-yyyy": "dd-mm-jjjj", - "dd/mm/yyyy": "dd / mm / yyyy", - "mm/dd/yy": "mm / dd / jj", - "mm/dd/yyyy": "dd / mm / yyyy", - "yyyy-mm-dd": "yyyy-mm-dd" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/pt-BR-doc.json b/hr/doctype/attendance_control_panel/locale/pt-BR-doc.json deleted file mode 100644 index 641ee21c89..0000000000 --- a/hr/doctype/attendance_control_panel/locale/pt-BR-doc.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "Todas as datas de comparecimento selecionadas entre a Data Inicial de Comparecimento e a Data Final de Comparecimento vir\u00e3o no modelo com a lista de funcion\u00e1rios.", - "Attendance Control Panel": "Painel de Controle de Comparecimento", - "Attendance From Date": "Data Inicial de Comparecimento", - "Attendance To Date": "Data Final de Comparecimento", - "Download Template": "Baixar o Modelo", - "File List": "Lista de Arquivos", - "Get Template": "Obter Modelo", - "HR": "RH", - "Import": "Importar", - "Import Date Format ": "Formato de importa\u00e7\u00e3o de data", - "Import Log": "Importar Log", - "Import Log1": "Importar Log1", - "Overwrite": "Sobrescrever", - "Selected Attendance date will comes in the attendance template.": "Data de comparecimento selecionada vir\u00e1 no modelo de comparecimento.", - "Upload Attendance Data": "Carregar dados de comparecimento", - "dd-mm-yyyy": "dd-mm-aaaa", - "dd/mm/yyyy": "dd/mm/aaaa", - "mm/dd/yy": "mm/dd/aa", - "mm/dd/yyyy": "mm/dd/aaaa", - "yyyy-mm-dd": "aaaa-mm-dd" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/pt-doc.json b/hr/doctype/attendance_control_panel/locale/pt-doc.json deleted file mode 100644 index 848d409a4b..0000000000 --- a/hr/doctype/attendance_control_panel/locale/pt-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "Todos atendimento data inbetween Atendimento selecionada De Data e atendimento a Data vir\u00e1 no modelo com lista de funcion\u00e1rios.", - "Attendance Control Panel": "Painel de Controle de Presen\u00e7a", - "Attendance From Date": "Presen\u00e7a de Data", - "Attendance To Date": "Atendimento para a data", - "Download Template": "Baixe Template", - "File List": "Lista de Arquivos", - "Get Template": "Obter modelo", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "Obter o modelo do atendimento para o qual voc\u00ea deseja importar no formato CSV (valores separados por v\u00edrgulas) format.Fill dados no modelo. Salve o modelo na CSV atendimento format.All data 'Presen\u00e7a De Data' inbetween e 'Atendimento Conhecer' vir\u00e1 no modelo com lista de funcion\u00e1rios.", - "HR": "HR", - "Import": "Importar", - "Import Date Format ": "Formato de data de importa\u00e7\u00e3o", - "Import Log": "Importar Log", - "Import Log1": "Importar Log1", - "Overwrite": "Sobrescrever", - "Selected Attendance date will comes in the attendance template.": "Data de comparecimento selecionado vem no modelo de atendimento.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "Para importar dados de atendimento, clique no bot\u00e3o "Adicionar", selecione o arquivo CSV salvo e clique em "Upload". Selecione o formato de data no formato de data em atendimento CSV file.Click em "Importar".", - "Upload Attendance Data": "Carregar dados do comparecimento", - "dd-mm-yyyy": "dd-mm-aaaa", - "dd/mm/yyyy": "dd / mm / aaaa", - "mm/dd/yy": "dd / mm / aa", - "mm/dd/yyyy": "dd / mm / aaaa", - "yyyy-mm-dd": "aaaa-mm-dd" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/sr-doc.json b/hr/doctype/attendance_control_panel/locale/sr-doc.json deleted file mode 100644 index cac2ab4ae2..0000000000 --- a/hr/doctype/attendance_control_panel/locale/sr-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "\u0421\u0432\u0435 \u043f\u0440\u0438\u0441\u0443\u0441\u0442\u0432\u043e \u0434\u0430\u0442\u0438\u0440\u0430 \u0418\u043d\u0431\u0435\u0442\u0432\u0435\u0435\u043d \u0438\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u043f\u0440\u0438\u0441\u0443\u0441\u0442\u0432\u043e\u0432\u0430\u045a\u0435 \u043e\u0434 \u0434\u0430\u0442\u0443\u043c\u0430 \u0438 \u041f\u043e\u0445\u0430\u0452\u0430\u045a\u0435 \u0414\u0430\u0442\u0443\u043c \u045b\u0435 \u0434\u043e\u045b\u0438 \u0443 \u043f\u0440\u0435\u0434\u043b\u043e\u0448\u043a\u0443 \u0441\u0430 \u0441\u043f\u0438\u0441\u043a\u0430 \u0437\u0430\u043f\u043e\u0441\u043b\u0435\u043d\u0438\u0445.", - "Attendance Control Panel": "\u0413\u043b\u0435\u0434\u0430\u043b\u0430\u0446\u0430 \u0426\u043e\u043d\u0442\u0440\u043e\u043b \u041f\u0430\u043d\u0435\u043b", - "Attendance From Date": "\u0413\u043b\u0435\u0434\u0430\u043b\u0430\u0446\u0430 \u041e\u0434 \u0434\u0430\u0442\u0443\u043c\u0430", - "Attendance To Date": "\u041f\u0440\u0438\u0441\u0443\u0441\u0442\u0432\u043e \u0414\u0430\u0442\u0435", - "Download Template": "\u041f\u0440\u0435\u0443\u0437\u043c\u0438\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d", - "File List": "\u0424\u0438\u043b\u0435 \u041b\u0438\u0441\u0442", - "Get Template": "\u0413\u0435\u0442 \u0448\u0430\u0431\u043b\u043e\u043d\u0430", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "\u041d\u0430\u0431\u0430\u0432\u0438\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d \u043e \u043f\u043e\u0445\u0430\u0452\u0430\u045a\u0443 \u0437\u0430 \u043a\u043e\u0458\u0438 \u0436\u0435\u043b\u0438\u0442\u0435 \u0434\u0430 \u0443\u0432\u0435\u0437\u0435\u0442\u0435 \u0443 \u0426\u0421\u0412 (\u0426\u043e\u043c\u043c\u0430 \u043e\u0434\u0432\u0430\u0458\u0430\u043e \u0432\u0440\u0435\u0434\u043d\u043e\u0441\u0442\u0438) \u043f\u043e\u0434\u0430\u0442\u043a\u0435 \u0444\u043e\u0440\u043c\u0430\u0442.\u0424\u0438\u043b\u043b \u0443 \u043f\u0440\u0435\u0434\u043b\u043e\u0448\u043a\u0443. \u0421\u0430\u0447\u0443\u0432\u0430\u0458\u0442\u0435 \u0448\u0430\u0431\u043b\u043e\u043d \u0443 \u0426\u0421\u0412 \u0444\u043e\u0440\u043c\u0430\u0442.\u0410\u043b\u043b \u043f\u0440\u0438\u0441\u0443\u0441\u0442\u0432\u043e \u0434\u0430\u0442\u0438\u0440\u0430 \u0418\u043d\u0431\u0435\u0442\u0432\u0435\u0435\u043d '\u043f\u0440\u0438\u0441\u0443\u0441\u0442\u0432\u043e\u0432\u0430\u045a\u0435 \u043e\u0434 \u0434\u0430\u0442\u0443\u043c\u0430 "\u0438" \u041f\u0440\u0438\u0441\u0443\u0441\u0442\u0432\u043e \u0414\u0430\u0442\u0443\u043c' \u045b\u0435 \u0434\u043e\u045b\u0438 \u0443 \u043f\u0440\u0435\u0434\u043b\u043e\u0448\u043a\u0443 \u0441\u0430 \u0441\u043f\u0438\u0441\u043a\u0430 \u0437\u0430\u043f\u043e\u0441\u043b\u0435\u043d\u0438\u0445.", - "HR": "\u0425\u0420", - "Import": "\u0423\u0432\u043e\u0437", - "Import Date Format ": "\u0423\u0432\u043e\u0437 \u0424\u043e\u0440\u043c\u0430\u0442 \u0434\u0430\u0442\u0443\u043c\u0430", - "Import Log": "\u0423\u0432\u043e\u0437 \u0441\u0435", - "Import Log1": "\u0423\u0432\u043e\u0437 \u041b\u043e\u04331", - "Overwrite": "\u041e\u0432\u0435\u0440\u0432\u0440\u0438\u0442\u0435", - "Selected Attendance date will comes in the attendance template.": "\u0418\u0437\u0430\u0431\u0440\u0430\u043d\u0438 \u0434\u0430\u0442\u0443\u043c \u045b\u0435 \u0413\u043b\u0435\u0434\u0430\u043b\u0430\u0446\u0430 \u0434\u043e\u043b\u0430\u0437\u0438 \u0443 \u043f\u043e\u0441\u0458\u0435\u045b\u0435\u043d\u043e\u0441\u0442 \u043f\u0440\u0435\u0434\u043b\u043e\u0448\u043a\u0443.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "\u0414\u0430 \u0431\u0438\u0441\u0442\u0435 \u0443\u0432\u0435\u0437\u043b\u0438 \u043f\u043e\u0434\u0430\u0442\u043a\u0435 \u043f\u043e\u0445\u0430\u0452\u0430\u045a\u0435, \u043a\u043b\u0438\u043a\u043d\u0438\u0442\u0435 \u043d\u0430 "\u0410\u0434\u0434" \u0434\u0443\u0433\u043c\u0435, \u0438\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u0430\u0447\u0443\u0432\u0430\u043d\u0443 \u0434\u0430\u0442\u043e\u0442\u0435\u043a\u0443 \u0426\u0421\u0412 \u0438 \u043a\u043b\u0438\u043a\u043d\u0438\u0442\u0435 \u043d\u0430 "\u0423\u043f\u043b\u043e\u0430\u0434" \u0418\u0437\u0430\u0431\u0435\u0440\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0430\u0442 \u0434\u0430\u0442\u0443\u043c\u0430 \u043a\u0430\u043e \u0444\u043e\u0440\u043c\u0430\u0442 \u0440\u0430\u0434\u043d\u043e\u0433 \u0434\u0430\u0442\u0443\u043c \u0443 \u0426\u0421\u0412 \u0444\u0438\u043b\u0435.\u0426\u043b\u0438\u0446\u043a \u043d\u0430 "\u0423\u0432\u043e\u0437"..", - "Upload Attendance Data": "\u041e\u0442\u043f\u0440\u0435\u043c\u0430\u045a\u0435 \u043f\u043e\u0434\u0430\u0442\u0430\u043a\u0430 \u0413\u043b\u0435\u0434\u0430\u043b\u0430\u0446\u0430", - "dd-mm-yyyy": "\u0434\u0434-\u043c\u043c-\u0433\u0433\u0433\u0433", - "dd/mm/yyyy": "\u0434\u0434 / \u043c\u043c / \u0433\u0433\u0433\u0433", - "mm/dd/yy": "\u0434\u0434 / \u043c\u043c / \u0433\u0433\u0433\u0433", - "mm/dd/yyyy": "\u043c\u043c / \u0434\u0434 / \u0438\u0438\u0438\u0438", - "yyyy-mm-dd": "\u0433\u0433\u0433\u0433-\u043c\u043c-\u0434\u0434" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/ta-doc.json b/hr/doctype/attendance_control_panel/locale/ta-doc.json deleted file mode 100644 index 291cdd9070..0000000000 --- a/hr/doctype/attendance_control_panel/locale/ta-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb0\u0bc1\u0b95\u0bc8 \u0ba4\u0bc7\u0ba4\u0bbf \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0ba4\u0bbf \u0bb5\u0bb0\u0bc8 \u0baa\u0b99\u0bcd\u0b95\u0bc7\u0bb1\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0b8a\u0bb4\u0bbf\u0baf\u0bb0\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bcd\u0bb3\u0bc7\u0b9f\u0bcd\u0b9f\u0bc8 \u0bb5\u0bb0\u0bc1\u0bae\u0bcd \u0bb5\u0bb0\u0bae\u0bcd\u0baa\u0bc1 inbetween \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0baa\u0b99\u0bcd\u0b95\u0bc7\u0bb1\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0ba4\u0bbf\u0b95\u0bb3\u0bcd.", - "Attendance Control Panel": "\u0bb5\u0bb0\u0bc1\u0b95\u0bc8 \u0b95\u0ba3\u0bcd\u0b9f\u0bcd\u0bb0\u0bc7\u0bbe\u0bb2\u0bcd \u0baa\u0bc7\u0ba9\u0bb2\u0bcd", - "Attendance From Date": "\u0bb5\u0bb0\u0bae\u0bcd\u0baa\u0bc1 \u0ba4\u0bc7\u0ba4\u0bbf \u0bb5\u0bb0\u0bc1\u0b95\u0bc8", - "Attendance To Date": "\u0ba4\u0bc7\u0ba4\u0bbf \u0bb5\u0bb0\u0bc1\u0b95\u0bc8", - "Download Template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0baa\u0ba4\u0bbf\u0bb5\u0bbf\u0bb1\u0b95\u0bcd\u0b95", - "File List": "\u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd", - "Get Template": "\u0bb5\u0bbe\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc1 \u0b95\u0bbf\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bcd\u0bb3\u0bc7\u0b9f\u0bcd\u0b9f\u0bc8 (\u0b95\u0bae\u0bbe seperated \u0bae\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd) CSV \u0b89\u0bb3\u0bcd\u0bb3 format.Fill \u0ba4\u0bb0\u0bb5\u0bc1 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0baf \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0bae\u0bcd \u0b8e\u0ba8\u0bcd\u0ba4 \u0baa\u0b99\u0bcd\u0b95\u0bc7\u0bb1\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0b92\u0bb0\u0bc1 \u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bcd\u0bb3\u0bc7\u0b9f\u0bcd \u0b95\u0bbf\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd. CSV format.All \u0b95\u0bc2\u0b9f\u0bcd\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bcd\u0bb3\u0bc7\u0b9f\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b8a\u0bb4\u0bbf\u0baf\u0bb0\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bcd\u0bb3\u0bc7\u0b9f\u0bcd\u0b9f\u0bc8 \u0bb5\u0bb0\u0bc1\u0bae\u0bcd '\u0ba4\u0bc7\u0ba4\u0bbf \u0baa\u0b99\u0bcd\u0b95\u0bc7\u0bb1\u0bcd\u0b95\u0bc1\u0bae\u0bcd' inbetween '\u0bb5\u0bb0\u0bae\u0bcd\u0baa\u0bc1 \u0ba4\u0bc7\u0ba4\u0bbf \u0baa\u0b99\u0bcd\u0b95\u0bc7\u0bb1\u0bcd\u0b95\u0bc1\u0bae\u0bcd' \u0ba4\u0bc7\u0ba4\u0bbf\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95.", - "HR": "\u0b85\u0bb2\u0bc1\u0bb5\u0bb2\u0b95", - "Import": "\u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0baa\u0bc6\u0bbe\u0bb0\u0bc1\u0bb3\u0bcd\u0b95\u0bb3\u0bcd", - "Import Date Format ": "\u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0ba4\u0bc7\u0ba4\u0bbf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1", - "Import Log": "\u0baa\u0bc1\u0b95\u0bc1\u0baa\u0ba4\u0bbf\u0b95\u0bc8 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf", - "Import Log1": "Log1 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf", - "Overwrite": "\u0b8e\u0bb4\u0bc1\u0ba4\u0bbf\u0baf\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc7\u0bb2\u0bc7\u0baf\u0bc7 \u0b8e\u0bb4\u0bc1\u0ba4\u0bc1", - "Selected Attendance date will comes in the attendance template.": "\u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0baa\u0b99\u0bcd\u0b95\u0bc7\u0bb1\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0ba4\u0bbf \u0bb5\u0bb0\u0bc1\u0b95\u0bc8 \u0b9f\u0bc6\u0bae\u0bcd\u0baa\u0bcd\u0bb3\u0bc7\u0b9f\u0bcd\u0b9f\u0bc8 \u0bb5\u0bb0\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1.", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "\u0bb5\u0bb0\u0bc1\u0b95\u0bc8 \u0ba4\u0bb0\u0bb5\u0bc1 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0baf, "\u0b9a\u0bc7\u0bb0\u0bcd" \u0baa\u0bc6\u0bbe\u0ba4\u0bcd\u0ba4\u0bbe\u0ba9\u0bc8 \u0b95\u0bbf\u0bb3\u0bbf\u0b95\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0ba4\u0bcd\u0ba4 \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1 "\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1" \u0b8e\u0ba9\u0bcd\u0baa\u0ba4\u0bc8 \u0b95\u0bbf\u0bb3\u0bbf\u0b95\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd. "\u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf" \u0bae\u0bc0\u0ba4\u0bc1 CSV file.Click \u0b89\u0bb3\u0bcd\u0bb3 \u0bb5\u0bb0\u0bc1\u0b95\u0bc8 \u0ba4\u0bc7\u0ba4\u0bbf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0b8e\u0ba9 \u0ba4\u0bc7\u0ba4\u0bbf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd.", - "Upload Attendance Data": "\u0baa\u0b99\u0bcd\u0b95\u0bc7\u0bb1\u0bcd\u0bb1\u0ba4\u0bbe\u0b95 \u0ba4\u0b95\u0bb5\u0bb2\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1", - "dd-mm-yyyy": "dd-mm-yyyy", - "dd/mm/yyyy": "dd / mm / yyyy", - "mm/dd/yy": "dd / mm / yy", - "mm/dd/yyyy": "dd / mm / yyyy", - "yyyy-mm-dd": "yyyy-mm-dd" -} \ No newline at end of file diff --git a/hr/doctype/attendance_control_panel/locale/th-doc.json b/hr/doctype/attendance_control_panel/locale/th-doc.json deleted file mode 100644 index 89225f7ce4..0000000000 --- a/hr/doctype/attendance_control_panel/locale/th-doc.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.": "\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e17\u0e31\u0e49\u0e07\u0e2b\u0e21\u0e14\u0e27\u0e31\u0e19 inbetween \u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e25\u0e30\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e08\u0e30\u0e21\u0e32\u0e43\u0e19\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e21\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", - "Attendance Control Panel": "\u0e41\u0e1c\u0e07\u0e04\u0e27\u0e1a\u0e04\u0e38\u0e21\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21", - "Attendance From Date": "\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", - "Attendance To Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e40\u0e1e\u0e37\u0e48\u0e2d", - "Download Template": "\u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", - "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", - "Get Template": "\u0e23\u0e31\u0e1a\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", - "Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.Fill data in the template. Save the template in CSV format.All attendance dates inbetween 'Attendance From Date' and 'Attendance To Date' will come in the template with employees list.": "\u0e23\u0e31\u0e1a\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e02\u0e2d\u0e07\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23\u0e17\u0e35\u0e48\u0e08\u0e30\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e43\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a CSV (\u0e04\u0e48\u0e32\u0e41\u0e22\u0e01\u0e08\u0e38\u0e25\u0e20\u0e32\u0e04) \u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25 format.Fill \u0e43\u0e19\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a \u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21 CSV format.All \u0e27\u0e31\u0e19 '\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e08\u0e32\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48' inbetween \u0e41\u0e25\u0e30 '\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e19\u0e31\u0e14' \u0e08\u0e30\u0e21\u0e32\u0e43\u0e19\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a\u0e17\u0e35\u0e48\u0e21\u0e35\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e1e\u0e19\u0e31\u0e01\u0e07\u0e32\u0e19", - "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", - "Import": "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32", - "Import Date Format ": "\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32", - "Import Log": "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e48\u0e23\u0e30\u0e1a\u0e1a", - "Import Log1": "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32 Log1", - "Overwrite": "\u0e40\u0e02\u0e35\u0e22\u0e19\u0e17\u0e31\u0e1a", - "Selected Attendance date will comes in the attendance template.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e08\u0e30\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e21\u0e32\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e41\u0e21\u0e48", - "To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".Select the date format as attendance date format in CSV file.Click on \"Import\".": "\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e01\u0e32\u0e23\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e43\u0e2b\u0e49\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e21 "\u0e40\u0e1e\u0e34\u0e48\u0e21" \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e44\u0e1f\u0e25\u0e4c CSV \u0e17\u0e35\u0e48\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e44\u0e27\u0e49\u0e41\u0e25\u0e30\u0e04\u0e25\u0e34\u0e01\u0e17\u0e35\u0e48 "\u0e2d\u0e31\u0e1b\u0e42\u0e2b\u0e25\u0e14". \u0e40\u0e25\u0e37\u0e2d\u0e01\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e23\u0e39\u0e1b\u0e41\u0e1a\u0e1a\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21\u0e1b\u0e23\u0e30\u0e0a\u0e38\u0e21\u0e43\u0e19 CSV file.Click \u0e17\u0e35\u0e48 "\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32"", - "Upload Attendance Data": "Upload \u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e1c\u0e39\u0e49\u0e40\u0e02\u0e49\u0e32\u0e23\u0e48\u0e27\u0e21", - "dd-mm-yyyy": "dd-mm-yyyy", - "dd/mm/yyyy": "\u0e27\u0e31\u0e19 / \u0e40\u0e14\u0e37\u0e2d\u0e19 / \u0e1b\u0e35", - "mm/dd/yy": "dd / mm / yyyy", - "mm/dd/yyyy": "dd / mm / \u0e1b\u0e35", - "yyyy-mm-dd": "YYYY-MM-DD" -} \ No newline at end of file diff --git a/hr/doctype/upload_attendance/__init__.py b/hr/doctype/upload_attendance/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hr/doctype/upload_attendance/upload_attendance.js b/hr/doctype/upload_attendance/upload_attendance.js new file mode 100644 index 0000000000..008e1cd878 --- /dev/null +++ b/hr/doctype/upload_attendance/upload_attendance.js @@ -0,0 +1,107 @@ +// ERPNext - web based ERP (http://erpnext.com) +// Copyright (C) 2012 Web Notes Technologies Pvt Ltd +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + + +wn.require("public/app/js/utils.js"); +wn.provide("erpnext.hr"); + +erpnext.hr.AttendanceControlPanel = erpnext.utils.Controller.extend({ + onload: function() { + this.frm.set_value("att_fr_date", get_today()); + this.frm.set_value("att_to_date", get_today()); + }, + + refresh: function() { + this.show_upload(); + }, + + get_template:function() { + if(!this.frm.doc.att_fr_date || !this.frm.doc.att_to_date) { + msgprint("Attendance From Date and Attendance To Date is mandatory"); + return; + } + window.location.href = repl(wn.request.url + + '?cmd=%(cmd)s&from_date=%(from_date)s&to_date=%(to_date)s', { + cmd: "hr.doctype.upload_attendance.upload_attendance.get_template", + from_date: this.frm.doc.att_fr_date, + to_date: this.frm.doc.att_to_date, + }); + }, + + show_upload: function() { + var me = this; + var $wrapper = $(cur_frm.fields_dict.upload_html.wrapper).empty(); + var upload_area = $('
    ').appendTo($wrapper); + + // upload + wn.upload.make({ + parent: $('#dit-upload-area'), + args: { + method: 'hr.doctype.upload_attendance.upload_attendance.upload' + }, + sample_url: "e.g. http://example.com/somefile.csv", + callback: function(r) { + var $log_wrapper = $(cur_frm.fields_dict.import_log.wrapper).empty(); + var log_area = $('
    ').appendTo($log_wrapper); + + $wrapper.find(".dit-progress-area").toggle(false); + if(!r.messages) r.messages = []; + // replace links if error has occured + if(r.exc || r.error) { + r.messages = $.map(r.messages, function(v) { + var msg = v.replace("Inserted", "Valid") + .replace("Updated", "Valid").split("<"); + if (msg.length > 1) { + v = msg[0] + (msg[1].split(">").slice(-1)[0]); + } else { + v = msg[0]; + } + return v; + }); + + r.messages = ["

    Import Failed!

    "] + .concat(r.messages) + } else { + r.messages = ["

    Import Successful!

    "]. + concat(r.messages) + } + console.log(r.messages); + + $.each(r.messages, function(i, v) { + var $p = $('

    ').html(v).appendTo('#dit-output'); + if(v.substr(0,5)=='Error') { + $p.css('color', 'red'); + } else if(v.substr(0,8)=='Inserted') { + $p.css('color', 'green'); + } else if(v.substr(0,7)=='Updated') { + $p.css('color', 'green'); + } else if(v.substr(0,5)=='Valid') { + $p.css('color', '#777'); + } + }); + } + }); + + // rename button + $('#dit-upload-area form input[type="submit"]') + .attr('value', 'Upload and Import') + .click(function() { + $wrapper.find(".dit-progress-area").toggle(true); + }); + } +}) + +cur_frm.cscript = new erpnext.hr.AttendanceControlPanel({frm: cur_frm}); \ No newline at end of file diff --git a/hr/doctype/upload_attendance/upload_attendance.py b/hr/doctype/upload_attendance/upload_attendance.py new file mode 100644 index 0000000000..e48cbefb69 --- /dev/null +++ b/hr/doctype/upload_attendance/upload_attendance.py @@ -0,0 +1,136 @@ +# For license information, please see license.txt + +from __future__ import unicode_literals +import webnotes +from webnotes.utils import cstr, add_days, date_diff +from webnotes import msgprint, _ +from webnotes.utils.datautils import UnicodeWriter + +doclist = None + +class DocType(): + def __init__(self, doc, doclist=[]): + self.doc = doc + self.doclist = doclist + +@webnotes.whitelist(allow_roles=['System Manager', 'HR Manager', "HR User"]) +def get_template(): + args = webnotes.form_dict + global doclist + doclist = webnotes.model.doctype.get("Attendance") + + w = UnicodeWriter() + w = add_header(w) + + w = add_data(w, args) + + # write out response as a type csv + webnotes.response['result'] = cstr(w.getvalue()) + webnotes.response['type'] = 'csv' + webnotes.response['doctype'] = "Attendance" + +def getdocfield(fieldname): + """get docfield from doclist of doctype""" + l = [d for d in doclist if d.doctype=='DocField' and d.fieldname==fieldname] + return l and l[0] or None + +def add_header(w): + status = ", ".join(getdocfield("status").options.strip().split("\n")) + w.writerow(["Notes:"]) + w.writerow(["Please do not change the template headings"]) + w.writerow(["Status should be one of these values: " + status]) + w.writerow(["If you are overwriting existing attendance records, 'ID' column mandatory"]) + w.writerow(["ID", "Employee", "Employee Name", "Date", "Status", + "Fiscal Year", "Company", "Naming Series"]) + return w + +def add_data(w, args): + from accounts.utils import get_fiscal_year + + dates = get_dates(args) + employees = get_active_employees() + existing_attendance_records = get_existing_attendance_records(args) + for date in dates: + for employee in employees: + existing_attendance = {} + if existing_attendance_records \ + and tuple([date, employee.name]) in existing_attendance_records: + existing_attendance = existing_attendance_records[tuple([date, employee.name])] + row = [ + existing_attendance and existing_attendance.name or "", + employee.name, employee.employee_name, date, + existing_attendance and existing_attendance.status or "", + get_fiscal_year(date)[0], employee.company, + existing_attendance and existing_attendance.naming_series or get_naming_series(), + ] + w.writerow(row) + return w + +def get_dates(args): + """get list of dates in between from date and to date""" + no_of_days = date_diff(add_days(args["to_date"], 1), args["from_date"]) + dates = [add_days(args["from_date"], i) for i in range(0, no_of_days)] + return dates + +def get_active_employees(): + employees = webnotes.conn.sql("""select name, employee_name, company + from tabEmployee where docstatus < 2 and status = 'Active'""", as_dict=1) + return employees + +def get_existing_attendance_records(args): + attendance = webnotes.conn.sql("""select name, att_date, employee, status, naming_series + from `tabAttendance` where att_date between %s and %s and docstatus < 2""", + (args["from_date"], args["to_date"]), as_dict=1) + + existing_attendance = {} + for att in attendance: + existing_attendance[tuple([att.att_date, att.employee])] = att + + return existing_attendance + +def get_naming_series(): + series = getdocfield("naming_series").options.strip().split("\n") + if not series: + msgprint("""Please create naming series for Attendance \ + through Setup -> Numbering Series.""", raise_exception=1) + return series[0] + + +@webnotes.whitelist(allow_roles=['System Manager', 'HR Manager', "HR User"]) +def upload(): + from webnotes.utils.datautils import read_csv_content_from_uploaded_file + from webnotes.modules import scrub + from core.page.data_import_tool.data_import_tool import check_record, import_doc + + rows = read_csv_content_from_uploaded_file() + if not rows: + msg = [_("Please select a csv file")] + return {"messages": msg, "error": msg} + columns = [scrub(f) for f in rows[4]] + columns[0] = "name" + columns[3] = "att_date" + ret = [] + error = False + + for i, row in enumerate(rows[5:]): + if not row: continue + row_idx = i + 5 + d = webnotes._dict(zip(columns, row)) + d["doctype"] = "Attendance" + if d.name: + d["docstatus"] = webnotes.conn.get_value("Attendance", d.name, "docstatus") + + try: + check_record(d) + ret.append(import_doc(d, "Attendance", 1, row_idx, submit=True)) + except Exception, e: + error = True + ret.append('Error for row (#%d) %s : %s' % (row_idx, + len(row)>1 and row[1] or "", cstr(e))) + webnotes.errprint(webnotes.getTraceback()) + + if error: + webnotes.conn.rollback() + else: + webnotes.conn.commit() + return {"messages": ret, "error": error} \ No newline at end of file diff --git a/hr/doctype/upload_attendance/upload_attendance.txt b/hr/doctype/upload_attendance/upload_attendance.txt new file mode 100644 index 0000000000..c47db65af3 --- /dev/null +++ b/hr/doctype/upload_attendance/upload_attendance.txt @@ -0,0 +1,99 @@ +[ + { + "creation": "2013-01-25 11:34:53", + "docstatus": 0, + "modified": "2013-03-05 15:50:03", + "modified_by": "Administrator", + "owner": "harshada@webnotestech.com" + }, + { + "allow_attach": 0, + "doctype": "DocType", + "issingle": 1, + "max_attachments": 1, + "module": "HR", + "name": "__common__" + }, + { + "doctype": "DocField", + "name": "__common__", + "parent": "Upload Attendance", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 + }, + { + "create": 1, + "doctype": "DocPerm", + "name": "__common__", + "parent": "Upload Attendance", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "read": 1, + "report": 0, + "submit": 0, + "write": 1 + }, + { + "doctype": "DocType", + "name": "Upload Attendance" + }, + { + "description": "Download the Template, fill appropriate data and attach the modified file.\nAll dates and employee combination in the selected period will come in the template, with existing attendance records", + "doctype": "DocField", + "fieldname": "download_template", + "fieldtype": "Section Break", + "label": "Download Template" + }, + { + "doctype": "DocField", + "fieldname": "att_fr_date", + "fieldtype": "Date", + "label": "Attendance From Date", + "oldfieldname": "attenadnce_date", + "oldfieldtype": "Date", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "att_to_date", + "fieldtype": "Date", + "label": "Attendance To Date", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "get_template", + "fieldtype": "Button", + "label": "Get Template", + "oldfieldtype": "Button" + }, + { + "doctype": "DocField", + "fieldname": "upload_attendance_data", + "fieldtype": "Section Break", + "label": "Import Attendance" + }, + { + "doctype": "DocField", + "fieldname": "upload_html", + "fieldtype": "HTML", + "label": "Upload HTML" + }, + { + "doctype": "DocField", + "fieldname": "import_log", + "fieldtype": "HTML", + "hidden": 0, + "label": "Import Log" + }, + { + "doctype": "DocPerm", + "role": "HR User" + }, + { + "doctype": "DocPerm", + "role": "HR Manager" + } +] \ No newline at end of file diff --git a/hr/page/hr_home/hr_home.js b/hr/page/hr_home/hr_home.js index 02733a1287..df3264501a 100644 --- a/hr/page/hr_home/hr_home.js +++ b/hr/page/hr_home/hr_home.js @@ -54,10 +54,10 @@ wn.module_page["HR"] = [ icon: "icon-cog", items: [ { - "route":"Form/Attendance Control Panel/Attendance Control Panel", - "label":wn._("Upload attendance"), + "route":"Form/Upload Attendance/Upload Attendance", + "label":wn._("Upload Attendance"), "description":wn._("Upload attendance from a .csv file"), - doctype: "Attendance Control Panel" + doctype: "Upload Attendance" }, { "route":"Form/Leave Control Panel/Leave Control Panel", diff --git a/patches/patch_list.py b/patches/patch_list.py index dd7ff06e64..90c3a2acd7 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -204,5 +204,7 @@ patch_list = [ "patches.march_2013.update_po_prevdoc_doctype", "patches.february_2013.p09_timesheets", "execute:(not webnotes.conn.exists('UOM', 'Hour')) and webnotes.doc({'uom_name': 'Hour', 'doctype': 'UOM', 'name': 'Hour'}).insert()", - "patches.march_2013.p01_c_form" + "patches.march_2013.p01_c_form", + "execute:webnotes.delete_doc('DocType', 'Attendance Control Panel')", + "execute:webnotes.reload_doc('hr', 'doctype', 'upload_attendance')", ] \ No newline at end of file From ffd190ff3ca9e6ccc966c901bf38f5d035e545f7 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 5 Mar 2013 17:10:33 +0530 Subject: [PATCH 099/982] fix in patch list --- patches/patch_list.py | 1 - 1 file changed, 1 deletion(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index 9dc335d89d..6c7c5e01a2 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -207,5 +207,4 @@ patch_list = [ "patches.march_2013.p01_c_form", "execute:webnotes.conn.sql('update tabDocPerm set `submit`=1, `cancel`=1, `amend`=1 where parent=\"Time Log\"')", "execute:webnotes.delete_doc('DocType', 'Attendance Control Panel')", - "execute:webnotes.reload_doc('hr', 'doctype', 'upload_attendance')", ] \ No newline at end of file From b343a4895c749e566b3209aa736114aca3f3e77d Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 5 Mar 2013 17:24:15 +0530 Subject: [PATCH 100/982] fix in empty col check in voucher import tool --- accounts/page/voucher_import_tool/voucher_import_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/page/voucher_import_tool/voucher_import_tool.py b/accounts/page/voucher_import_tool/voucher_import_tool.py index 2d7cd25fd1..62cf7c6cc0 100644 --- a/accounts/page/voucher_import_tool/voucher_import_tool.py +++ b/accounts/page/voucher_import_tool/voucher_import_tool.py @@ -233,7 +233,7 @@ def get_data(rows, company_abbr): start_row = i+2 # check for empty columns - empty_columns = [i+1 for i, c in enumerate(rows[i+1]) if not c] + empty_columns = [j+1 for j, c in enumerate(rows[i+1]) if not c] if empty_columns: raise Exception, """Column No(s). %s %s empty. \ Please remove them and try again.""" % (comma_and(empty_columns), From 46043f2d94432f152cdbffdcf21432545ff904ae Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 5 Mar 2013 18:23:34 +0530 Subject: [PATCH 101/982] messages updated in voucher import tool --- accounts/page/voucher_import_tool/voucher_import_tool.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/accounts/page/voucher_import_tool/voucher_import_tool.py b/accounts/page/voucher_import_tool/voucher_import_tool.py index 2d7cd25fd1..bbd8b4e04d 100644 --- a/accounts/page/voucher_import_tool/voucher_import_tool.py +++ b/accounts/page/voucher_import_tool/voucher_import_tool.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals import webnotes +from webnotes import _ from webnotes.utils import flt, comma_and @webnotes.whitelist() @@ -244,7 +245,10 @@ def get_data(rows, company_abbr): accounts = [c for c in rows[i+1] if c.endswith(" - " + company_abbr)] if accounts and (len(columns) != rows[i+1].index(accounts[0])): - raise Exception, """All account columns should be after standard columns and \ - on the right. Please rectify it in the file and try again.""" + raise Exception, _("""All account columns should be after \ + standard columns and on the right. + If you entered it properly, next probable reason \ + could be wrong account name. + Please rectify it in the file and try again.""") return data, start_row_idx \ No newline at end of file From 8ff938a3771084b68b75d2cec1ae9942f6322692 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 6 Mar 2013 11:20:56 +0530 Subject: [PATCH 102/982] backup manager (wip) --- master.sql | 11055 ++++++++++++++++ master.sql.gz | Bin 222996 -> 0 bytes .../remove_old_customer_contact_address.py | 1 + setup/doctype/backup_manager/__init__.py | 0 .../doctype/backup_manager/backup_manager.js | 14 + .../doctype/backup_manager/backup_manager.py | 53 + .../doctype/backup_manager/backup_manager.txt | 83 + setup/page/setup/setup.js | 13 + .../pages/{unsubscribed.html => message.html} | 6 +- website/utils.py | 3 +- 10 files changed, 11223 insertions(+), 5 deletions(-) create mode 100644 master.sql delete mode 100644 master.sql.gz create mode 100644 setup/doctype/backup_manager/__init__.py create mode 100644 setup/doctype/backup_manager/backup_manager.js create mode 100644 setup/doctype/backup_manager/backup_manager.py create mode 100644 setup/doctype/backup_manager/backup_manager.txt rename website/templates/pages/{unsubscribed.html => message.html} (52%) diff --git a/master.sql b/master.sql new file mode 100644 index 0000000000..b22178fcc4 --- /dev/null +++ b/master.sql @@ -0,0 +1,11055 @@ +-- MySQL dump 10.11 +-- +-- Host: localhost Database: s5u011 +-- ------------------------------------------------------ +-- Server version 5.0.86-ius+percona-highperf-log + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `__Auth` +-- + +DROP TABLE IF EXISTS `__Auth`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `__Auth` ( + `user` varchar(180) NOT NULL, + `password` varchar(180) NOT NULL, + PRIMARY KEY (`user`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `__Auth` +-- + +LOCK TABLES `__Auth` WRITE; +/*!40000 ALTER TABLE `__Auth` DISABLE KEYS */; +INSERT INTO `__Auth` VALUES ('Administrator','*4ACFE3202A5FF5CF467898FC58AAB1D615029441'),('Guest','password'); +/*!40000 ALTER TABLE `__Auth` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `__CacheItem` +-- + +DROP TABLE IF EXISTS `__CacheItem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `__CacheItem` ( + `key` varchar(180) NOT NULL, + `value` longtext, + `expires_on` datetime default NULL, + PRIMARY KEY (`key`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `__CacheItem` +-- + +LOCK TABLES `__CacheItem` WRITE; +/*!40000 ALTER TABLE `__CacheItem` DISABLE KEYS */; +/*!40000 ALTER TABLE `__CacheItem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `__CodeFileTimeStamps` +-- + +DROP TABLE IF EXISTS `__CodeFileTimeStamps`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `__CodeFileTimeStamps` ( + `name` varchar(120) default NULL, + `doctype` varchar(120) default NULL, + `code_field` varchar(120) default NULL, + `timestamp` varchar(120) default NULL +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `__CodeFileTimeStamps` +-- + +LOCK TABLES `__CodeFileTimeStamps` WRITE; +/*!40000 ALTER TABLE `__CodeFileTimeStamps` DISABLE KEYS */; +INSERT INTO `__CodeFileTimeStamps` VALUES ('Timesheet','DocType','record','1292513589'),('Timesheet','DocType','server_code_core','1292513589'),('Timesheet','DocType','client_script_core','1292513589'),('DocType','DocType','server_code_core','1292513589'),('DocType','DocType','client_script_core','1292513589'),('DocPerm','DocType','record','1292513589'),('DocFormat','DocType','record','1292513589'),('DocField','DocType','record','1292513589'),('Search Criteria','DocType','record','1292852791'),('Search Criteria','DocType','server_code_core','1293084140'),('Search Criteria','DocType','client_script_core','1292852791'),('Control Panel','Control Panel','startup_code','1292673147'),('Control Panel','Control Panel','startup_css','1292513589'),('Event','DocType','record','1292513602'),('Event User','DocType','record','1292513602'),('Event Role','DocType','record','1292513602'),('Event Updates','Page','script','1292667372'),('Event Updates','Page','content','1292513602'),('Event Updates','Page','style','1292513602'),('Event Updates','Page','static_content','1292513602'),('Home Control','DocType','record','1292513602'),('Home Control','DocType','server_code_core','1292513602'),('Home Control','DocType','client_script_core','1292513602'),('Receivable Voucher','DocType','record','1292513585'),('Receivable Voucher','DocType','server_code_core','1293011983'),('Receivable Voucher','DocType','client_script_core','1292837601'),('RV Detail','DocType','record','1292837496'),('RV Tax Detail','DocType','record','1292513585'),('Advance Adjustment Detail','DocType','record','1292852816'),('Sales Team','DocType','record','1292513587'),('Control Panel','DocType','record','1292513589'),('Control Panel','DocType','server_code_core','1292513589'),('DefaultValue','DocType','record','1292513589'),('Default Home Page','DocType','record','1292513589'),('Login Page','Page','script','1292513589'),('Login Page','Page','content','1292513589'),('Login Page','Page','static_content','1292513589'),('Module Def Item','DocType','record','1293186986'),('Module Def','DocType','record','1292513589'),('Module Def','DocType','server_code_core','1292513589'),('Module Def Role','DocType','record','1292513589'),('Role','DocType','record','1292513589'),('Role','DocType','server_code_core','1292513589'),('Role','DocType','client_script_core','1292513589'); +/*!40000 ALTER TABLE `__CodeFileTimeStamps` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `__DocTypeCache` +-- + +DROP TABLE IF EXISTS `__DocTypeCache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `__DocTypeCache` ( + `name` varchar(120) default NULL, + `modified` datetime default NULL, + `content` mediumtext, + `server_code_compiled` mediumtext +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `__DocTypeCache` +-- + +LOCK TABLES `__DocTypeCache` WRITE; +/*!40000 ALTER TABLE `__DocTypeCache` DISABLE KEYS */; +/*!40000 ALTER TABLE `__DocTypeCache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `__PatchLog` +-- + +DROP TABLE IF EXISTS `__PatchLog`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `__PatchLog` ( + `patch` mediumtext, + `applied_on` datetime default NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `__PatchLog` +-- + +LOCK TABLES `__PatchLog` WRITE; +/*!40000 ALTER TABLE `__PatchLog` DISABLE KEYS */; +INSERT INTO `__PatchLog` VALUES ('patches.install_print_formats','2011-11-16 09:11:39'),('patches.install_print_formats','2011-11-16 09:12:24'),('patches.reload_reco','2011-11-24 10:52:26'),('patches.reload_doclayer','2011-11-24 10:56:38'),('patches.reload_doclayer','2011-11-25 07:07:50'),('patches.accounts_default_form','2011-12-16 11:08:24'),('patches.c_form_patch','2011-12-16 11:15:49'),('patches.deploy_email_digest','2011-12-16 11:17:05'),('patches.Discount_purchase_cycle','2011-12-16 11:21:39'),('patches.employeewise_balance_leave_report','2011-12-16 11:25:02'),('patches.reload_employeewise_balance_leave_report','2011-12-16 11:59:54'),('patches.lcw_patch','2011-12-16 12:08:42'),('patches.p1','2011-12-16 12:09:01'),('patches.packing_slip','2011-12-16 12:09:44'),('patches.project_patch','2011-12-16 12:10:45'),('patches.reload_address','2011-12-16 12:11:20'),('patches.reload_bom','2011-12-16 12:11:50'),('patches.reload_email_digest','2011-12-16 12:12:18'),('patches.reload_flat_bom','2011-12-16 12:12:45'),('patches.reload_lc_wizard','2011-12-16 12:13:21'),('patches.reload_print_format','2011-12-16 12:14:11'),('patches.c_form_patch','2011-12-16 12:17:05'),('patches.c_form_patch','2011-12-16 12:21:00'),('patches.reload_project_task','2011-12-16 12:22:07'),('patches.reload_rv','2011-12-16 12:24:22'),('patches.remove_duplicate_table_mapper_detail','2011-12-16 12:25:31'),('patches.remove_old_cp_email_settings','2011-12-16 12:25:51'),('patches.remove_page_break_from_defaults','2011-12-16 12:27:05'),('patches.sal_man_patch','2011-12-16 12:27:31'),('patches.remove_extra_button_from_email_digest','2011-12-20 14:42:31'),('patches.deploy_email_digest','2011-12-22 07:49:45'),('patches.deploy_email_digest','2011-12-22 08:00:56'),('patches.price_list_patch','2011-12-22 08:20:25'),('patches.auto_indent','2011-12-22 08:32:12'),('patches.reload_project_task','2011-12-22 08:55:44'),('patches.update_0_idx','2011-12-22 10:38:44'),('patches.remove_previous_field_property_setter','2011-12-22 10:50:49'),('patches.reload_email_digest','2011-12-22 13:35:29'),('patches.edigest_enable_income_year_to_date','2011-12-22 13:50:46'),('patches.reload_email_digest','2011-12-22 14:33:59'),('patches.remove_extra_button_from_email_digest','2011-12-22 14:34:49'),('patches.print_hide_price_list','2011-12-22 14:36:38'),('patches.profile_mark_not_in_create','2011-12-23 09:23:54'),('patches.task_email_notification','2011-12-26 06:59:28'),('patches.reload_gl_mapper','2011-12-26 07:59:21'),('patches.reload_gl_mapper','2011-12-26 08:00:51'),('patches.update_gle_against_voucher_for_jv','2011-12-26 08:05:41'),('patches.task_email_notification','2011-12-26 08:17:23'),('patches.reload_support_ticket','2011-12-27 13:17:49'),('patches.reload_support_ticket','2011-12-27 15:17:31'),('patches.pending_patches','2011-12-29 10:15:36'),('patches.pending_patches','2011-12-29 10:28:56'),('patches.pending_patches','2011-12-29 11:13:38'),('patches.pos_setting_patch','2012-01-03 06:41:59'),('patches.reload_doctype','2012-01-05 06:48:01'),('patches.reload_po_pr_mapper','2012-01-05 06:55:55'),('patches.delete_pur_of_service','2012-01-05 07:47:14'),('patches.reload_doctype','2012-01-09 05:57:14'),('patches.old_patches.rename_search_criteria','2012-01-13 07:09:44'),('patches.jan_mar_2012.stable_branch_shift_09_01_12','2012-01-13 07:11:18'),('patches.jan_mar_2012.print_hide_totals','2012-01-13 07:11:18'),('patches.jan_mar_2012.rename_doctype_indent','2012-01-13 07:11:20'),('patches.old_patches.rename_search_criteria','2012-01-13 07:24:06'),('patches.old_patches.rename_search_criteria','2012-01-13 07:47:01'),('patches.old_patches.rename_search_criteria','2012-01-13 07:56:17'),('patches.old_patches.rename_search_criteria','2012-01-13 08:44:27'),('patches.old_patches.rename_search_criteria','2012-01-13 08:52:01'),('patches.jan_mar_2012.allocated_to_profile','2012-01-19 08:17:07'),('patches.jan_mar_2012.production_cleanup','2012-01-19 10:33:56'),('patches.jan_mar_2012.jan_production_patches','2012-01-19 10:33:57'),('patches.jan_mar_2012.remove_get_tds_button','2012-01-19 10:33:57'),('patches.jan_mar_2012.customer_address_contact_patch','2012-01-24 07:02:51'),('patches.jan_mar_2012.jan_production_patches','2012-01-25 05:34:34'),('patches.jan_mar_2012.doclabel_in_doclayer','2012-01-25 12:59:54'),('patches.jan_mar_2012.email_settings_reload','2012-01-30 07:26:52'),('patches.jan_mar_2012.serial_no_add_opt','2012-01-31 11:54:40'),('patches.jan_mar_2012.cancel_purchase_returned','2012-02-01 07:07:16'),('patches.jan_mar_2012.deploy_packing_slip','2012-02-02 07:23:19'),('patches.jan_mar_2012.convert_tables_to_utf8','2012-02-03 11:03:13'),('all','2012-02-13 14:42:22'),('account_type_patch','2012-02-14 05:46:00'),('website','2012-02-14 08:33:41'),('subcon_default_val','2012-02-14 11:40:06'),('update_admin_pwds','2012-02-14 11:50:25'),('analytics','2012-02-14 13:13:44'),('clear_session_cache','2012-02-14 14:26:21'),('clear_session_cache','2012-02-15 08:22:13'),('file_data_rename','2012-02-15 11:19:53'),('account_type_patch','2012-02-16 06:30:45'),('account_type_patch','2012-02-16 06:31:19'),('getfile_rename','2012-02-16 11:06:05'),('update_website_settings','2012-02-17 07:03:38'),('todo_item','2012-02-20 12:09:01'),('reload_item','2012-02-21 09:00:03'),('no_copy_patch','2012-02-21 09:19:54'),('patches.jan_mar_2012.map_conversion_rate','2012-02-21 10:01:09'),('patches.jan_mar_2012.account_type_patch','2012-02-21 10:01:09'),('patches.jan_mar_2012.subcon_default_val','2012-02-21 10:01:09'),('patches.jan_mar_2012.website.all','2012-02-21 10:01:11'),('patches.jan_mar_2012.remove_archive','2012-02-21 10:01:11'),('patches.jan_mar_2012.no_copy_patch','2012-02-21 10:01:11'),('patches.jan_mar_2012.reload_item','2012-02-21 10:01:11'),('patches.jan_mar_2012.fix_packing_slip','2012-02-21 12:00:49'),('patches.jan_mar_2012.website.allow_product_delete','2012-02-23 07:06:07'),('patches.jan_mar_2012.apps.todo_item','2012-03-01 11:15:54'),('patches.jan_mar_2012.pending_patches','2012-03-01 11:15:57'),('patches.jan_mar_2012.pos_setting_patch','2012-03-01 11:15:57'),('patches.jan_mar_2012.reload_doctype','2012-03-01 11:15:58'),('patches.jan_mar_2012.reload_po_pr_mapper','2012-03-01 11:15:58'),('patches.jan_mar_2012.delete_pur_of_service','2012-03-01 11:15:58'),('patches.jan_mar_2012.navupdate','2012-03-01 11:15:59'),('patches.jan_mar_2012.label_cleanup','2012-03-01 11:16:08'),('patches.jan_mar_2012.add_roles_to_admin','2012-03-01 11:16:08'),('patches.jan_mar_2012.website.file_data_rename','2012-03-01 11:22:07'),('patches.jan_mar_2012.clear_session_cache','2012-03-01 11:34:12'),('patches.jan_mar_2012.label_cleanup','2012-03-01 11:46:58'),('patches.jan_mar_2012.dt_map_fix','2012-03-01 13:35:46'),('patches.jan_mar_2012.reload_table','2012-03-05 06:38:08'),('patches.jan_mar_2012.reload_table','2012-03-05 10:58:19'),('patches.jan_mar_2012.remove_series_defval','2012-03-06 06:53:06'),('patches.jan_mar_2012.update_stockreco_perm','2012-03-13 08:19:13'),('patches.mar_2012.pos_invoice_fix','2012-03-20 07:56:54'),('patches.mar_2012.pos_invoice_fix','2012-03-20 08:03:40'),('patches.jan_mar_2012.stock_entry_others_patch','2012-03-21 05:47:24'),('patches.jan_mar_2012.reload_quote','2012-03-21 05:47:25'),('patches.jan_mar_2012.update_purpose_se','2012-03-21 06:34:10'),('patches.jan_mar_2012.update_se_fld_options','2012-03-21 11:35:06'),('patches.jan_mar_2012.reload_mapper','2012-03-28 08:06:01'),('patches.jan_mar_2012.reload_mapper','2012-03-28 08:10:23'),('patches.jan_mar_2012.mapper_fix','2012-03-28 10:42:58'),('patches.mar_2012.so_rv_mapper_fix','2012-03-28 15:57:55'),('patches.mar_2012.earning_deduction_type_patch','2012-04-03 09:57:32'),('patches.april_2012.reload_c_form','2012-04-06 14:24:28'),('patches.april_2012.remove_default_from_rv_detail','2012-04-24 07:11:23'),('patches.april_2012.update_role_in_address','2012-04-24 08:57:19'),('patches.april_2012.update_permlevel_in_address','2012-04-24 09:11:44'),('patches.april_2012.update_appraisal_permission','2012-04-24 10:03:59'),('patches.april_2012.serial_no_fixes','2012-04-25 15:01:03'),('patches.april_2012.repost_stock_for_posting_time','2012-04-30 08:26:44'),('patches.april_2012.repost_stock_for_posting_time','2012-04-30 13:17:11'),('patches.april_2012.repost_stock_for_posting_time','2012-04-30 13:28:48'),('patches.jan_mar_2012.sync_ref_db','2012-05-08 08:08:08'),('patches.mar_2012.clean_property_setter','2012-05-08 08:08:08'),('patches.april_2012.naming_series_patch','2012-05-08 08:08:08'),('patches.jan_mar_2012.rename_dt','2012-05-08 08:08:12'),('patches.mar_2012.cleanup_control_panel','2012-05-08 08:08:12'),('patches.mar_2012.doctype_get_refactor','2012-05-08 08:08:51'),('patches.mar_2012.delete_docformat','2012-05-08 08:08:51'),('patches.mar_2012.usertags','2012-05-08 08:08:53'),('patches.april_2012.after_sync_cleanup','2012-05-08 08:08:53'),('patches.april_2012.change_cacheitem_schema','2012-05-08 08:08:53'),('patches.may_2012.cleanup_property_setter','2012-05-08 08:08:53'),('patches.may_2012.rename_prev_doctype','2012-05-08 08:08:53'),('patches.may_2012.cleanup_notification_control','2012-05-08 08:08:53'),('patches.may_2012.renamedt_in_custom_search_criteria','2012-05-08 08:08:53'),('patches.april_2012.repost_stock_for_posting_time','2012-05-09 12:20:54'),('patches.april_2012.repost_stock_for_posting_time','2012-05-11 14:25:52'),('patches.may_2012.reload_so_pending_items','2012-05-18 08:30:33'),('patches.april_2012.repost_stock_for_posting_time','2012-05-21 07:14:18'),('patches.may_2012.stock_reco_patch','2012-07-12 15:55:45'),('patches.may_2012.cms','2012-07-12 15:55:46'),('patches.may_2012.reload_reports','2012-07-12 15:55:46'),('patches.may_2012.page_role_series_fix','2012-07-12 15:55:46'),('patches.may_2012.reload_sales_invoice_pf','2012-07-12 15:55:47'),('patches.may_2012.std_pf_readonly','2012-07-12 15:55:47'),('patches.may_2012.customize_form_cleanup','2012-07-12 15:55:47'),('patches.may_2012.cs_server_readonly','2012-07-12 15:55:47'),('patches.may_2012.clear_session_cache','2012-07-12 15:55:47'),('patches.may_2012.same_purchase_rate_patch','2012-07-12 15:55:47'),('patches.may_2012.create_report_manager_role','2012-07-12 15:55:47'),('patches.may_2012.reload_customer_address_contact','2012-07-12 15:55:48'),('patches.may_2012.profile_perm_patch','2012-07-12 15:55:48'),('patches.may_2012.remove_euro_currency','2012-07-12 15:55:48'),('patches.may_2012.remove_communication_log','2012-07-12 15:55:49'),('patches.june_2012.barcode_in_feature_setup','2012-07-12 15:55:49'),('patches.june_2012.copy_uom_for_pur_inv_item','2012-07-12 15:55:50'),('patches.june_2012.fetch_organization_from_lead','2012-07-12 15:55:50'),('patches.june_2012.reports_list_permission','2012-07-12 15:55:51'),('patches.june_2012.support_ticket_autoreply','2012-07-12 15:55:51'),('patches.june_2012.series_unique_patch','2012-07-12 15:55:51'),('patches.june_2012.set_recurring_type','2012-07-12 15:55:52'),('patches.june_2012.alter_tabsessions','2012-07-12 15:55:52'),('patches.june_2012.delete_old_parent_entries','2012-07-12 15:55:52'),('patches.april_2012.delete_about_contact','2012-07-12 15:55:52'),('patches.june_2012.cache_item_table','2012-07-12 15:55:52'),('patches.july_2012.reload_pr_po_mapper','2012-07-12 15:55:52'),('patches.july_2012.address_contact_perms','2012-07-12 15:55:53'),('patches.july_2012.packing_list_cleanup_and_serial_no','2012-07-12 15:55:53'),('patches.july_2012.deprecate_import_data_control','2012-07-12 15:55:53'),('patches.july_2012.default_freeze_account','2012-10-02 09:43:42'),('patches.july_2012.update_purchase_tax','2012-10-02 09:43:42'),('patches.june_2012.cms2','2012-10-02 09:43:44'),('patches.july_2012.auth_table','2012-10-02 09:47:53'),('patches.july_2012.remove_event_role_owner_match','2012-10-02 09:47:53'),('patches.july_2012.deprecate_bulk_rename','2012-10-02 09:47:53'),('patches.july_2012.sync_trial_balance','2012-10-02 09:47:53'),('patches.july_2012.blog_guest_permission','2012-10-02 09:47:53'),('patches.july_2012.bin_permission','2012-10-02 09:47:53'),('patches.july_2012.project_patch_repeat','2012-10-02 09:47:55'),('patches.july_2012.repost_stock_due_to_wrong_packing_list','2012-10-02 09:47:55'),('patches.july_2012.supplier_quotation','2012-10-02 09:47:57'),('patches.august_2012.report_supplier_quotations','2012-10-02 09:47:57'),('patches.august_2012.task_allocated_to_assigned','2012-10-02 09:47:57'),('patches.august_2012.change_profile_permission','2012-10-02 09:47:57'),('patches.august_2012.changed_blog_date_format','2012-10-02 09:47:58'),('patches.august_2012.repost_billed_amt','2012-10-02 09:47:58'),('patches.august_2012.remove_cash_flow_statement','2012-10-02 09:47:58'),('patches.september_2012.stock_report_permissions_for_accounts','2012-10-02 09:47:58'),('patches.september_2012.communication_delete_permission','2012-10-02 09:47:58'),('patches.september_2012.reload_criteria_stock_ledger','2012-10-02 09:47:58'),('patches.september_2012.all_permissions_patch','2012-10-02 09:47:58'),('patches.september_2012.customer_permission_patch','2012-10-02 09:47:58'),('patches.september_2012.add_stock_ledger_entry_index','2012-10-02 09:47:58'),('patches.september_2012.plot_patch','2012-10-02 09:47:59'),('patches.september_2012.event_permission','2012-10-02 09:47:59'),('patches.september_2012.repost_stock','2012-10-02 09:47:59'),('patches.september_2012.reload_gross_profit','2012-10-02 09:47:59'); +/*!40000 ALTER TABLE `__PatchLog` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `__SchedulerLog` +-- + +DROP TABLE IF EXISTS `__SchedulerLog`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `__SchedulerLog` ( + `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, + `method` varchar(200) default NULL, + `error` text +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `__SchedulerLog` +-- + +LOCK TABLES `__SchedulerLog` WRITE; +/*!40000 ALTER TABLE `__SchedulerLog` DISABLE KEYS */; +INSERT INTO `__SchedulerLog` VALUES ('2012-03-02 12:15:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:18:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:21:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:24:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:27:07','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:30:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:33:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:36:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:39:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:42:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:45:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:48:07','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:51:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:54:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:57:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:00:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:03:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:06:09','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:09:08','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:12:07','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:15:07','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:18:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:21:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:24:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:27:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:28:33','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:29:38','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:30:08','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'); +/*!40000 ALTER TABLE `__SchedulerLog` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `__SessionCache` +-- + +DROP TABLE IF EXISTS `__SessionCache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `__SessionCache` ( + `user` varchar(120) default NULL, + `country` varchar(120) default NULL, + `cache` longtext +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `__SessionCache` +-- + +LOCK TABLES `__SessionCache` WRITE; +/*!40000 ALTER TABLE `__SessionCache` DISABLE KEYS */; +/*!40000 ALTER TABLE `__SessionCache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `__file_timestamp` +-- + +DROP TABLE IF EXISTS `__file_timestamp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `__file_timestamp` ( + `file_name` varchar(180) NOT NULL, + `tstamp` varchar(40) default NULL, + PRIMARY KEY (`file_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `__file_timestamp` +-- + +LOCK TABLES `__file_timestamp` WRITE; +/*!40000 ALTER TABLE `__file_timestamp` DISABLE KEYS */; +INSERT INTO `__file_timestamp` VALUES ('/var/www/erpnext-modules/accounts/DocType Mapper/Delivery Note-Receivable Voucher/Delivery Note-Receivable Voucher.txt','1315917878'),('/var/www/erpnext-modules/accounts/DocType Mapper/Project-Receivable Voucher/Project-Receivable Voucher.txt','1315375762'),('/var/www/erpnext-modules/accounts/DocType Mapper/Purchase Order-Payable Voucher/Purchase Order-Payable Voucher.txt','1315917878'),('/var/www/erpnext-modules/accounts/DocType Mapper/Purchase Receipt-Payable Voucher/Purchase Receipt-Payable Voucher.txt','1315917878'),('/var/www/erpnext-modules/accounts/DocType Mapper/Sales Order-Receivable Voucher/Sales Order-Receivable Voucher.txt','1315917878'),('/var/www/erpnext-modules/accounts/Module Def/Accounts/Accounts.txt','1315908111'),('/var/www/erpnext-modules/accounts/search_criteria/voucher_wise_tax_details/voucher_wise_tax_details.txt','1315908111'),('/var/www/erpnext-modules/buying/DocType Mapper/Indent-Purchase Order/Indent-Purchase Order.txt','1315375762'),('/var/www/erpnext-modules/buying/DocType Mapper/Sales Order-Indent/Sales Order-Indent.txt','1315375762'),('/var/www/erpnext-modules/home/page/dashboard/dashboard.txt','1315375762'),('/var/www/erpnext-modules/hr/DocType Mapper/KRA Template-Appraisal/KRA Template-Appraisal.txt','1315375762'),('/var/www/erpnext-modules/hr/DocType Mapper/Salary Structure-Salary Slip/Salary Structure-Salary Slip.txt','1315375762'),('/var/www/erpnext-modules/hr/doctype/salary_manager/salary_manager.txt','1315375762'),('/var/www/erpnext-modules/hr/doctype/salary_slip/salary_slip.txt','1312882590'),('/var/www/erpnext-modules/hr/Module Def/HR/HR.txt','1315375762'),('/var/www/erpnext-modules/knowledge_base/doctype/answer/answer.txt','1311058468'),('/var/www/erpnext-modules/production/DocType Mapper/Production Forecast-Production Plan/Production Forecast-Production Plan.txt','1315375762'),('/var/www/erpnext-modules/production/DocType Mapper/Production Forecast-Production Planning Tool/Production Forecast-Production Planning Tool.txt','1315375762'),('/var/www/erpnext-modules/production/DocType Mapper/Sales Order-Production Plan/Sales Order-Production Plan.txt','1315375762'),('/var/www/erpnext-modules/production/doctype/bill_of_materials/bill_of_materials.txt','1313994052'),('/var/www/erpnext-modules/selling/DocType Mapper/Delivery Note-Installation Note/Delivery Note-Installation Note.txt','1315917878'),('/var/www/erpnext-modules/selling/DocType Mapper/Enquiry-Quotation/Enquiry-Quotation.txt','1315908111'),('/var/www/erpnext-modules/selling/DocType Mapper/Lead-Customer/Lead-Customer.txt','1315908111'),('/var/www/erpnext-modules/selling/DocType Mapper/Lead-Enquiry/Lead-Enquiry.txt','1315908111'),('/var/www/erpnext-modules/selling/DocType Mapper/Project-Sales Order/Project-Sales Order.txt','1315375762'),('/var/www/erpnext-modules/selling/DocType Mapper/Quotation-Sales Order/Quotation-Sales Order.txt','1315908111'),('/var/www/erpnext-modules/selling/doctype/quotation/quotation.txt','1312882590'),('/var/www/erpnext-modules/server_tools/page/billing/billing.txt','1310549747'),('/var/www/erpnext-modules/setup/doctype/features_setup/features_setup.txt','1315908111'),('/var/www/erpnext-modules/stock/DocType Mapper/Project-Delivery Note/Project-Delivery Note.txt','1315375762'),('/var/www/erpnext-modules/stock/DocType Mapper/Purchase Order-Purchase Receipt/Purchase Order-Purchase Receipt.txt','1315917878'),('/var/www/erpnext-modules/stock/DocType Mapper/Receivable Voucher-Delivery Note/Receivable Voucher-Delivery Note.txt','1315917878'),('/var/www/erpnext-modules/stock/DocType Mapper/Sales Order-Delivery Note/Sales Order-Delivery Note.txt','1315908111'),('/var/www/erpnext-modules/stock/doctype/delivery_note/delivery_note.txt','1315398367'),('/var/www/erpnext-modules/stock/doctype/delivery_note_detail/delivery_note_detail.txt','1315398367'),('/var/www/erpnext-modules/stock/doctype/item/item.txt','1315375762'),('/var/www/erpnext-modules/stock/doctype/item_customer_detail/item_customer_detail.txt','1315375762'),('/var/www/erpnext-modules/stock/Print Format/Delivery Note Packing List Wise/Delivery Note Packing List Wise.txt','1315375762'),('/var/www/erpnext-modules/support/DocType Mapper/Customer Issue-Maintenance Visit/Customer Issue-Maintenance Visit.txt','1315375762'),('/var/www/erpnext-modules/support/DocType Mapper/Sales Order-Maintenance Schedule/Sales Order-Maintenance Schedule.txt','1315375762'),('/var/www/erpnext-modules/support/DocType Mapper/Sales Order-Maintenance Visit/Sales Order-Maintenance Visit.txt','1315375762'),('/var/www/html/erpnext-master/erpnext/accounts/Print Format/Sales Invoice Classic/Sales Invoice Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/accounts/Print Format/Sales Invoice Modern/Sales Invoice Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/accounts/Print Format/Sales Invoice Spartan/Sales Invoice Spartan.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/buying/Print Format/Purchase Order Classic/Purchase Order Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/buying/Print Format/Purchase Order Modern/Purchase Order Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/buying/Print Format/Purchase Order Spartan/Purchase Order Spartan.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Quotation Classic/Quotation Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Quotation Modern/Quotation Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Quotation Spartan/Quotation Spartan.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Sales Order Classic/Sales Order Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Sales Order Modern/Sales Order Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Sales Order Spartan/Sales Order Spartan.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/stock/Print Format/Delivery Note Classic/Delivery Note Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/stock/Print Format/Delivery Note Modern/Delivery Note Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/stock/Print Format/Delivery Note Spartan/Delivery Note Spartan.txt','1321431069'),('/var/www/html/erpnext/cgi-bin/core/doctype/doctype/doctype.txt','1315391597'),('/var/www/html/erpnext/cgi-bin/core/doctype/profile/profile.txt','1315375630'); +/*!40000 ALTER TABLE `__file_timestamp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `_tag_cnt` +-- + +DROP TABLE IF EXISTS `_tag_cnt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `_tag_cnt` ( + `doctype` varchar(180) NOT NULL default '', + `tag` varchar(22) NOT NULL default '', + `cnt` int(10) default NULL, + PRIMARY KEY (`doctype`,`tag`), + KEY `cnt` (`cnt`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `_tag_cnt` +-- + +LOCK TABLES `_tag_cnt` WRITE; +/*!40000 ALTER TABLE `_tag_cnt` DISABLE KEYS */; +/*!40000 ALTER TABLE `_tag_cnt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAbout Us Team` +-- + +DROP TABLE IF EXISTS `tabAbout Us Team`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAbout Us Team` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `bio` text, + `image` varchar(180) default NULL, + `person_name` varchar(180) default NULL, + `designation` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAbout Us Team` +-- + +LOCK TABLES `tabAbout Us Team` WRITE; +/*!40000 ALTER TABLE `tabAbout Us Team` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAbout Us Team` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAccount Balance` +-- + +DROP TABLE IF EXISTS `tabAccount Balance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAccount Balance` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `period` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `start_date` date default NULL, + `end_date` date default NULL, + `opening` decimal(18,6) default NULL, + `balance` decimal(18,6) default NULL, + `debit` decimal(18,6) default NULL, + `credit` decimal(18,6) default NULL, + `account` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `period` (`period`), + KEY `end_date` (`end_date`), + KEY `start_date` (`start_date`), + KEY `account` (`account`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAccount Balance` +-- + +LOCK TABLES `tabAccount Balance` WRITE; +/*!40000 ALTER TABLE `tabAccount Balance` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAccount Balance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAccount` +-- + +DROP TABLE IF EXISTS `tabAccount`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAccount` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `account_name` varchar(180) default NULL, + `parent_account` varchar(180) default NULL, + `level` int(11) default NULL, + `group_or_ledger` varchar(180) default 'Ledger', + `is_pl_account` varchar(180) default NULL, + `freeze_account` varchar(180) default NULL, + `account_type` varchar(180) default NULL, + `tax_rate` decimal(18,6) default NULL, + `debit_or_credit` varchar(180) default NULL, + `company` varchar(180) default NULL, + `credit_days` int(11) default NULL, + `credit_limit` decimal(18,6) default NULL, + `old_parent` varchar(180) default NULL, + `lft` int(11) default NULL, + `rgt` int(11) default NULL, + `pan_number` varchar(180) default NULL, + `tds_applicable` varchar(180) default 'No', + `master_type` varchar(180) default NULL, + `master_name` varchar(180) default NULL, + `address` mediumtext, + `trash_reason` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `account_name` (`account_name`), + KEY `parent_account` (`parent_account`), + KEY `group_or_ledger` (`group_or_ledger`), + KEY `is_pl_account` (`is_pl_account`), + KEY `debit_or_credit` (`debit_or_credit`), + KEY `company` (`company`), + KEY `lft` (`lft`), + KEY `rgt` (`rgt`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAccount` +-- + +LOCK TABLES `tabAccount` WRITE; +/*!40000 ALTER TABLE `tabAccount` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAccount` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabActivity Type` +-- + +DROP TABLE IF EXISTS `tabActivity Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabActivity Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `activity_type` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabActivity Type` +-- + +LOCK TABLES `tabActivity Type` WRITE; +/*!40000 ALTER TABLE `tabActivity Type` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabActivity Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAddress` +-- + +DROP TABLE IF EXISTS `tabAddress`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAddress` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `address_line2` varchar(180) default NULL, + `fax` varchar(180) default NULL, + `address_line1` varchar(180) default NULL, + `trash_reason` text, + `city` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `country` varchar(180) default NULL, + `is_primary_address` int(1) default '0', + `pincode` varchar(180) default NULL, + `is_shipping_address` int(1) default '0', + `phone` varchar(180) default NULL, + `state` varchar(180) default NULL, + `supplier_name` varchar(180) default NULL, + `supplier` varchar(180) default NULL, + `address_type` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `sales_partner` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `city` (`city`), + KEY `country` (`country`), + KEY `pincode` (`pincode`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAddress` +-- + +LOCK TABLES `tabAddress` WRITE; +/*!40000 ALTER TABLE `tabAddress` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAddress` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAnswer` +-- + +DROP TABLE IF EXISTS `tabAnswer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAnswer` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `answer` text, + `_users_voted` text, + `points` int(11) default NULL, + `question` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAnswer` +-- + +LOCK TABLES `tabAnswer` WRITE; +/*!40000 ALTER TABLE `tabAnswer` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAnswer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAppraisal Goal` +-- + +DROP TABLE IF EXISTS `tabAppraisal Goal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAppraisal Goal` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `kra` text, + `per_weightage` decimal(18,6) default NULL, + `target_achieved` text, + `score` decimal(18,6) default NULL, + `score_earned` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAppraisal Goal` +-- + +LOCK TABLES `tabAppraisal Goal` WRITE; +/*!40000 ALTER TABLE `tabAppraisal Goal` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAppraisal Goal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAppraisal Template Goal` +-- + +DROP TABLE IF EXISTS `tabAppraisal Template Goal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAppraisal Template Goal` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `kra` text, + `per_weightage` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAppraisal Template Goal` +-- + +LOCK TABLES `tabAppraisal Template Goal` WRITE; +/*!40000 ALTER TABLE `tabAppraisal Template Goal` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAppraisal Template Goal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAppraisal Template` +-- + +DROP TABLE IF EXISTS `tabAppraisal Template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAppraisal Template` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `kra_title` varchar(180) default NULL, + `description` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAppraisal Template` +-- + +LOCK TABLES `tabAppraisal Template` WRITE; +/*!40000 ALTER TABLE `tabAppraisal Template` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAppraisal Template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAppraisal` +-- + +DROP TABLE IF EXISTS `tabAppraisal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAppraisal` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `status` varchar(180) default 'Draft', + `employee` varchar(180) default NULL, + `employee_name` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `company` varchar(180) default NULL, + `start_date` date default NULL, + `end_date` date default NULL, + `kra_approver` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `kra_template` varchar(180) default NULL, + `total_score` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `employee` (`employee`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAppraisal` +-- + +LOCK TABLES `tabAppraisal` WRITE; +/*!40000 ALTER TABLE `tabAppraisal` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAppraisal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAttendance` +-- + +DROP TABLE IF EXISTS `tabAttendance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAttendance` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default NULL, + `employee` varchar(180) default NULL, + `employee_name` varchar(180) default NULL, + `status` varchar(180) default NULL, + `leave_type` varchar(180) default NULL, + `att_date` date default NULL, + `fiscal_year` varchar(180) default NULL, + `company` varchar(180) default NULL, + `shifts` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `employee` (`employee`), + KEY `status` (`status`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAttendance` +-- + +LOCK TABLES `tabAttendance` WRITE; +/*!40000 ALTER TABLE `tabAttendance` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAttendance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabAuthorization Rule` +-- + +DROP TABLE IF EXISTS `tabAuthorization Rule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabAuthorization Rule` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `transaction` varchar(180) default NULL, + `based_on` varchar(180) default NULL, + `master_name` varchar(180) default NULL, + `system_role` varchar(180) default NULL, + `system_user` varchar(180) default NULL, + `approving_role` varchar(180) default NULL, + `approving_user` varchar(180) default NULL, + `value` decimal(18,6) default '0.000000', + `trash_reason` text, + `to_emp` varchar(180) default NULL, + `to_designation` varchar(180) default NULL, + `company` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabAuthorization Rule` +-- + +LOCK TABLES `tabAuthorization Rule` WRITE; +/*!40000 ALTER TABLE `tabAuthorization Rule` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabAuthorization Rule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBOM Explosion Item` +-- + +DROP TABLE IF EXISTS `tabBOM Explosion Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBOM Explosion Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `description` text, + `qty` decimal(18,6) default NULL, + `stock_uom` varchar(180) default NULL, + `moving_avg_rate` decimal(18,6) default NULL, + `amount_as_per_mar` decimal(18,6) default NULL, + `last_purchase_rate` decimal(18,6) default NULL, + `amount_as_per_lpr` decimal(18,6) default NULL, + `standard_rate` decimal(18,6) default NULL, + `amount_as_per_sr` decimal(18,6) default NULL, + `qty_consumed_per_unit` decimal(18,6) default NULL, + `flat_bom_no` varchar(180) default NULL, + `bom_mat_no` varchar(180) default NULL, + `parent_bom` varchar(180) default NULL, + `is_pro_applicable` varchar(180) default NULL, + `amount` decimal(18,6) default NULL, + `mat_detail_no` varchar(180) default NULL, + `rate` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBOM Explosion Item` +-- + +LOCK TABLES `tabBOM Explosion Item` WRITE; +/*!40000 ALTER TABLE `tabBOM Explosion Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBOM Explosion Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBOM Item` +-- + +DROP TABLE IF EXISTS `tabBOM Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBOM Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `operation_no` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + `bom_no` varchar(180) default NULL, + `description` text, + `qty` decimal(18,6) default NULL, + `scrap` decimal(18,6) default NULL, + `stock_uom` varchar(180) default NULL, + `dir_mat_as_per_mar` decimal(18,6) default NULL, + `dir_mat_as_per_lpr` decimal(18,6) default NULL, + `dir_mat_as_per_sr` decimal(18,6) default NULL, + `operating_cost` decimal(18,6) default NULL, + `value_as_per_mar` decimal(18,6) default NULL, + `value_as_per_lpr` decimal(18,6) default NULL, + `value_as_per_sr` decimal(18,6) default NULL, + `moving_avg_rate` decimal(18,6) default NULL, + `amount_as_per_mar` decimal(18,6) default NULL, + `last_purchase_rate` decimal(18,6) default NULL, + `amount_as_per_lpr` decimal(18,6) default NULL, + `standard_rate` decimal(18,6) default NULL, + `amount_as_per_sr` decimal(18,6) default NULL, + `qty_consumed_per_unit` decimal(18,6) default NULL, + `rate` decimal(18,6) default NULL, + `amount` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `bom_no` (`bom_no`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBOM Item` +-- + +LOCK TABLES `tabBOM Item` WRITE; +/*!40000 ALTER TABLE `tabBOM Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBOM Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBOM Operation` +-- + +DROP TABLE IF EXISTS `tabBOM Operation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBOM Operation` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `operation_no` varchar(180) default NULL, + `opn_description` text, + `details` varchar(180) default NULL, + `workstation` varchar(180) default NULL, + `hour_rate` decimal(18,6) default NULL, + `workstation_capacity` decimal(18,6) default NULL, + `time_in_mins` decimal(18,6) default NULL, + `operating_cost` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBOM Operation` +-- + +LOCK TABLES `tabBOM Operation` WRITE; +/*!40000 ALTER TABLE `tabBOM Operation` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBOM Operation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBOM` +-- + +DROP TABLE IF EXISTS `tabBOM`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBOM` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `item` varchar(180) default NULL, + `description` text, + `quantity` decimal(18,6) default NULL, + `is_active` varchar(180) default NULL, + `is_default` int(1) default NULL, + `remarks` text, + `cost_as_per_mar` decimal(18,6) default NULL, + `cost_as_per_lpr` decimal(18,6) default NULL, + `cost_as_per_sr` decimal(18,6) default NULL, + `cost_as_on` varchar(180) default NULL, + `dir_mat_as_per_mar` decimal(18,6) default NULL, + `dir_mat_as_per_lpr` decimal(18,6) default NULL, + `dir_mat_as_per_sr` decimal(18,6) default NULL, + `operating_cost` decimal(18,6) default NULL, + `maintained_by` varchar(180) default NULL, + `project_name` varchar(180) default NULL, + `uom` varchar(180) default NULL, + `total_cost` decimal(18,6) default NULL, + `costing_date` date default NULL, + `raw_material_cost` decimal(18,6) default NULL, + `rm_cost_as_per` varchar(180) default NULL, + `amendment_date` date default NULL, + `amended_from` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item` (`item`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBOM` +-- + +LOCK TABLES `tabBOM` WRITE; +/*!40000 ALTER TABLE `tabBOM` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBOM` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBank Reconciliation Detail` +-- + +DROP TABLE IF EXISTS `tabBank Reconciliation Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBank Reconciliation Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `voucher_id` varchar(180) default NULL, + `against_account` varchar(180) default NULL, + `posting_date` date default NULL, + `cheque_number` varchar(180) default NULL, + `cheque_date` date default NULL, + `debit` decimal(18,6) default NULL, + `credit` decimal(18,6) default NULL, + `clearance_date` date default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBank Reconciliation Detail` +-- + +LOCK TABLES `tabBank Reconciliation Detail` WRITE; +/*!40000 ALTER TABLE `tabBank Reconciliation Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBank Reconciliation Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBatch` +-- + +DROP TABLE IF EXISTS `tabBatch`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBatch` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `batch_id` varchar(180) default NULL, + `description` text, + `start_date` date default NULL, + `finished_date` date default NULL, + `expiry_date` date default NULL, + `item` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBatch` +-- + +LOCK TABLES `tabBatch` WRITE; +/*!40000 ALTER TABLE `tabBatch` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBatch` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBin` +-- + +DROP TABLE IF EXISTS `tabBin`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBin` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `warehouse` varchar(180) default NULL, + `warehouse_type` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + `stock_uom` varchar(180) default NULL, + `reserved_qty` decimal(18,6) default '0.000000', + `actual_qty` decimal(18,6) default '0.000000', + `ordered_qty` decimal(18,6) default '0.000000', + `indented_qty` decimal(18,6) default '0.000000', + `planned_qty` decimal(18,6) default NULL, + `projected_qty` decimal(18,6) default NULL, + `ma_rate` decimal(18,6) default NULL, + `fcfs_rate` decimal(18,6) default NULL, + `valuation_rate` decimal(18,6) default NULL, + `stock_value` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `warehouse` (`warehouse`), + KEY `item_code` (`item_code`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBin` +-- + +LOCK TABLES `tabBin` WRITE; +/*!40000 ALTER TABLE `tabBin` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBin` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBlog Subscriber` +-- + +DROP TABLE IF EXISTS `tabBlog Subscriber`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBlog Subscriber` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBlog Subscriber` +-- + +LOCK TABLES `tabBlog Subscriber` WRITE; +/*!40000 ALTER TABLE `tabBlog Subscriber` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBlog Subscriber` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBlog` +-- + +DROP TABLE IF EXISTS `tabBlog`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBlog` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `content` text, + `file_list` text, + `published` int(1) default NULL, + `content_html` text, + `title` varchar(180) default NULL, + `page_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + `email_sent` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBlog` +-- + +LOCK TABLES `tabBlog` WRITE; +/*!40000 ALTER TABLE `tabBlog` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBlog` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBranch` +-- + +DROP TABLE IF EXISTS `tabBranch`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBranch` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `branch` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBranch` +-- + +LOCK TABLES `tabBranch` WRITE; +/*!40000 ALTER TABLE `tabBranch` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBranch` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBrand` +-- + +DROP TABLE IF EXISTS `tabBrand`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBrand` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `brand` varchar(180) default NULL, + `description` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBrand` +-- + +LOCK TABLES `tabBrand` WRITE; +/*!40000 ALTER TABLE `tabBrand` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBrand` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBudget Detail` +-- + +DROP TABLE IF EXISTS `tabBudget Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBudget Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `account` varchar(180) default NULL, + `budget_allocated` decimal(18,6) default NULL, + `actual` decimal(18,6) default NULL, + `fiscal_year` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `account` (`account`), + KEY `fiscal_year` (`fiscal_year`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBudget Detail` +-- + +LOCK TABLES `tabBudget Detail` WRITE; +/*!40000 ALTER TABLE `tabBudget Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBudget Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBudget Distribution Detail` +-- + +DROP TABLE IF EXISTS `tabBudget Distribution Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBudget Distribution Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `month` varchar(180) default NULL, + `percentage_allocation` decimal(18,6) default NULL, + `aggregate_percentage` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBudget Distribution Detail` +-- + +LOCK TABLES `tabBudget Distribution Detail` WRITE; +/*!40000 ALTER TABLE `tabBudget Distribution Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBudget Distribution Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBudget Distribution` +-- + +DROP TABLE IF EXISTS `tabBudget Distribution`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBudget Distribution` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `distribution_id` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `trash_reason` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `fiscal_year` (`fiscal_year`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBudget Distribution` +-- + +LOCK TABLES `tabBudget Distribution` WRITE; +/*!40000 ALTER TABLE `tabBudget Distribution` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBudget Distribution` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabBulk Email` +-- + +DROP TABLE IF EXISTS `tabBulk Email`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabBulk Email` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `status` varchar(180) default NULL, + `message` text, + `recipient` varchar(180) default NULL, + `sender` varchar(180) default NULL, + `error` text, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabBulk Email` +-- + +LOCK TABLES `tabBulk Email` WRITE; +/*!40000 ALTER TABLE `tabBulk Email` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabBulk Email` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabC-Form Invoice Detail` +-- + +DROP TABLE IF EXISTS `tabC-Form Invoice Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabC-Form Invoice Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `territory` varchar(180) default NULL, + `grand_total` decimal(18,6) default NULL, + `invoice_no` varchar(180) default NULL, + `invoice_date` date default NULL, + `net_total` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabC-Form Invoice Detail` +-- + +LOCK TABLES `tabC-Form Invoice Detail` WRITE; +/*!40000 ALTER TABLE `tabC-Form Invoice Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabC-Form Invoice Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabC-Form` +-- + +DROP TABLE IF EXISTS `tabC-Form`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabC-Form` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `customer` varchar(180) default NULL, + `total_amount` decimal(18,6) default NULL, + `naming_series` varchar(180) default NULL, + `company` varchar(180) default NULL, + `c_form_no` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `state` varchar(180) default NULL, + `received_date` date default NULL, + `quarter` varchar(180) default NULL, + `file_list` text, + `total_invoiced_amount` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabC-Form` +-- + +LOCK TABLES `tabC-Form` WRITE; +/*!40000 ALTER TABLE `tabC-Form` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabC-Form` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCampaign` +-- + +DROP TABLE IF EXISTS `tabCampaign`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCampaign` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `campaign_name` varchar(180) default NULL, + `description` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCampaign` +-- + +LOCK TABLES `tabCampaign` WRITE; +/*!40000 ALTER TABLE `tabCampaign` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCampaign` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabComment` +-- + +DROP TABLE IF EXISTS `tabComment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabComment` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `comment` text, + `comment_by` varchar(180) default NULL, + `comment_by_fullname` varchar(180) default NULL, + `comment_date` date default NULL, + `comment_time` varchar(180) default NULL, + `comment_doctype` varchar(180) default NULL, + `comment_docname` varchar(180) default NULL, + `post_topic` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + `unsubscribed` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabComment` +-- + +LOCK TABLES `tabComment` WRITE; +/*!40000 ALTER TABLE `tabComment` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabComment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCommunication` +-- + +DROP TABLE IF EXISTS `tabCommunication`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCommunication` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default 'COMM-', + `file_list` text, + `email_address` varchar(180) default NULL, + `subject` text, + `category` varchar(180) default NULL, + `lead` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + `content` text, + `communication_medium` varchar(180) default NULL, + `supplier` varchar(180) default NULL, + `support_ticket` varchar(180) default NULL, + `user` varchar(180) default NULL, + `opportunity` varchar(180) default NULL, + `quotation` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `phone_no` varchar(180) default NULL, + `contact` varchar(180) default NULL, + `communication_date` date default NULL, + `action` varchar(180) default NULL, + `sales_person` varchar(180) default NULL, + `next_communication_date` date default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCommunication` +-- + +LOCK TABLES `tabCommunication` WRITE; +/*!40000 ALTER TABLE `tabCommunication` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCommunication` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCompany` +-- + +DROP TABLE IF EXISTS `tabCompany`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCompany` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `company_name` varchar(180) default NULL, + `abbr` varchar(180) default NULL, + `address` text, + `phone_no` varchar(180) default NULL, + `email` varchar(180) default NULL, + `fax` varchar(180) default NULL, + `website` varchar(180) default NULL, + `registration_details` text, + `default_bank_account` varchar(180) default NULL, + `receivables_group` varchar(180) default NULL, + `payables_group` varchar(180) default NULL, + `yearly_bgt_flag` varchar(180) default NULL, + `monthly_bgt_flag` varchar(180) default NULL, + `credit_days` int(11) default NULL, + `credit_limit` decimal(18,6) default NULL, + `letter_head` mediumtext, + `trash_reason` text, + `default_salary_acount` varchar(180) default NULL, + `default_salary_account` varchar(180) default NULL, + `default_currency` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `default_salary_acount` (`default_salary_acount`), + KEY `default_salary_account` (`default_salary_account`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCompany` +-- + +LOCK TABLES `tabCompany` WRITE; +/*!40000 ALTER TABLE `tabCompany` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCompany` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabContact` +-- + +DROP TABLE IF EXISTS `tabContact`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabContact` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `first_name` varchar(180) default NULL, + `last_name` varchar(180) default NULL, + `contact_name` varchar(180) default NULL, + `contact_type` varchar(180) default NULL, + `is_supplier` int(1) default '0', + `supplier_name` varchar(180) default NULL, + `supplier_address` mediumtext, + `supplier_type` varchar(180) default NULL, + `is_customer` int(1) default '0', + `customer_name` varchar(180) default NULL, + `customer_address` mediumtext, + `customer_group` varchar(180) default NULL, + `is_sales_partner` int(1) default '0', + `sales_partner` varchar(180) default NULL, + `sales_partner_address` mediumtext, + `partner_type` varchar(180) default NULL, + `company_name` varchar(180) default NULL, + `company_address` mediumtext, + `is_primary_contact` int(1) default '0', + `phone` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `mobile_no` varchar(180) default NULL, + `fax` varchar(180) default NULL, + `contact_address` mediumtext, + `department` varchar(180) default NULL, + `designation` varchar(180) default NULL, + `has_login` varchar(180) default 'No', + `disable_login` varchar(180) default NULL, + `supplier` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `is_employee` int(1) default NULL, + `employee_id` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + `unsubscribed` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabContact` +-- + +LOCK TABLES `tabContact` WRITE; +/*!40000 ALTER TABLE `tabContact` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabContact` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCost Center` +-- + +DROP TABLE IF EXISTS `tabCost Center`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCost Center` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `cost_center_name` varchar(180) default NULL, + `parent_cost_center` varchar(180) default NULL, + `company_name` varchar(180) default NULL, + `company_abbr` varchar(180) default NULL, + `group_or_ledger` varchar(180) default NULL, + `distribution_id` varchar(180) default NULL, + `lft` int(11) default NULL, + `rgt` int(11) default NULL, + `old_parent` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `lft` (`lft`), + KEY `rgt` (`rgt`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCost Center` +-- + +LOCK TABLES `tabCost Center` WRITE; +/*!40000 ALTER TABLE `tabCost Center` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCost Center` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCountry` +-- + +DROP TABLE IF EXISTS `tabCountry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCountry` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `country_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCountry` +-- + +LOCK TABLES `tabCountry` WRITE; +/*!40000 ALTER TABLE `tabCountry` DISABLE KEYS */; +INSERT INTO `tabCountry` VALUES ('Afghanistan','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Afghanistan',NULL),('Albania','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Albania',NULL),('Algeria','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Algeria',NULL),('Andorra','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Andorra',NULL),('Angola','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Angola',NULL),('Antarctica','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Antarctica',NULL),('Antigua and Barbuda','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Antigua and Barbuda',NULL),('Argentina','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Argentina',NULL),('Armenia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Armenia',NULL),('Australia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Australia',NULL),('Austria','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Austria',NULL),('Azerbaijan','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Azerbaijan',NULL),('Bahamas','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bahamas',NULL),('Bahrain','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bahrain',NULL),('Bangladesh','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bangladesh',NULL),('Barbados','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Barbados',NULL),('Belarus','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Belarus',NULL),('Belgium','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Belgium',NULL),('Belize','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Belize',NULL),('Benin','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Benin',NULL),('Bermuda','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bermuda',NULL),('Bhutan','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bhutan',NULL),('Bolivia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bolivia',NULL),('Bosnia and Herzegovina','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bosnia and Herzegovina',NULL),('Botswana','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Botswana',NULL),('Brazil','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Brazil',NULL),('Brunei','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Brunei',NULL),('Bulgaria','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bulgaria',NULL),('Burkina Faso','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Burkina Faso',NULL),('Burma','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Burma',NULL),('Burundi','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Burundi',NULL),('Cambodia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cambodia',NULL),('Cameroon','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cameroon',NULL),('Canada','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Canada',NULL),('Cape Verde','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cape Verde',NULL),('Central African Republic','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Central African Republic',NULL),('Chad','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Chad',NULL),('Chile','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Chile',NULL),('China','2010-12-14 17:56:47','2009-06-15 15:12:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'China',NULL),('Colombia','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Colombia',NULL),('Comoros','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Comoros',NULL),('Congo, Democratic Republic','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Congo, Democratic Republic',NULL),('Congo, Republic of the','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Congo, Republic of the',NULL),('Costa Rica','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Costa Rica',NULL),('Cote dIvoire','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Cote dIvoire',NULL),('Croatia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Croatia',NULL),('Cuba','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cuba',NULL),('Cyprus','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cyprus',NULL),('Czech Republic','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Czech Republic',NULL),('Denmark','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Denmark',NULL),('Djibouti','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Djibouti',NULL),('Dominica','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Dominica',NULL),('Dominican Republic','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Dominican Republic',NULL),('East Timor','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'East Timor',NULL),('Ecuador','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Ecuador',NULL),('Egypt','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Egypt',NULL),('El Salvador','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'El Salvador',NULL),('Equatorial Guinea','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Equatorial Guinea',NULL),('Eritrea','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Eritrea',NULL),('Estonia','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Estonia',NULL),('Ethiopia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Ethiopia',NULL),('Fiji','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Fiji',NULL),('Finland','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Finland',NULL),('France','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'France',NULL),('Gabon','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Gabon',NULL),('Gambia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Gambia',NULL),('Georgia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Georgia',NULL),('Germany','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Germany',NULL),('Ghana','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Ghana',NULL),('Greece','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Greece',NULL),('Greenland','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Greenland',NULL),('Grenada','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Grenada',NULL),('Guatemala','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Guatemala',NULL),('Guinea','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Guinea',NULL),('Guinea-Bissau','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Guinea-Bissau',NULL),('Guyana','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Guyana',NULL),('Haiti','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Haiti',NULL),('Honduras','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Honduras',NULL),('Hong Kong','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Hong Kong',NULL),('Hungary','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Hungary',NULL),('Iceland','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Iceland',NULL),('India','2010-12-14 17:56:47','2010-04-03 17:29:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'India',NULL),('Indonesia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Indonesia',NULL),('Iran','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Iran',NULL),('Iraq','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Iraq',NULL),('Ireland','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Ireland',NULL),('Israel','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Israel',NULL),('Italy','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Italy',NULL),('Jamaica','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Jamaica',NULL),('Japan','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Japan',NULL),('Jordan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Jordan',NULL),('Kazakhstan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kazakhstan',NULL),('Kenya','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kenya',NULL),('Kiribati','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kiribati',NULL),('Korea, North','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Korea, North',NULL),('Korea, South','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Korea, South',NULL),('Kuwait','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kuwait',NULL),('Kyrgyzstan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kyrgyzstan',NULL),('Laos','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Laos',NULL),('Latvia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Latvia',NULL),('Lebanon','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Lebanon',NULL),('Lesotho','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Lesotho',NULL),('Liberia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Liberia',NULL),('Libya','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Libya',NULL),('Liechtenstein','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Liechtenstein',NULL),('Lithuania','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Lithuania',NULL),('Luxembourg','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Luxembourg',NULL),('Macedonia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Macedonia',NULL),('Madagascar','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Madagascar',NULL),('Malawi','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Malawi',NULL),('Malaysia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Malaysia',NULL),('Maldives','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Maldives',NULL),('Mali','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mali',NULL),('Malta','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Malta',NULL),('Marshall Islands','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Marshall Islands',NULL),('Mauritania','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mauritania',NULL),('Mauritius','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mauritius',NULL),('Mexico','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mexico',NULL),('Micronesia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Micronesia',NULL),('Moldova','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Moldova',NULL),('Monaco','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Monaco',NULL),('Mongolia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mongolia',NULL),('Morocco','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Morocco',NULL),('Mozambique','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mozambique',NULL),('Namibia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Namibia',NULL),('Nauru','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Nauru',NULL),('Nepal','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Nepal',NULL),('Netherlands','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Netherlands',NULL),('New Zealand','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'New Zealand',NULL),('Nicaragua','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Nicaragua',NULL),('Niger','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Niger',NULL),('Nigeria','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Nigeria',NULL),('North Korea','2010-12-14 17:56:48','2010-04-15 15:03:20','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'North Korea',NULL),('Norway','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Norway',NULL),('Oman','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Oman',NULL),('Pakistan','2010-12-14 17:56:47','2009-12-15 17:33:39','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,NULL,'Pakistan',NULL),('Panama','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Panama',NULL),('Papua New Guinea','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Papua New Guinea',NULL),('Paraguay','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Paraguay',NULL),('Peru','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Peru',NULL),('Philippines','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Philippines',NULL),('Poland','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Poland',NULL),('Portugal','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Portugal',NULL),('Qatar','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Qatar',NULL),('Romania','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Romania',NULL),('Russia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Russia',NULL),('Rwanda','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Rwanda',NULL),('Samoa','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Samoa',NULL),('San Marino','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'San Marino',NULL),('Sao Tome','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,' Sao Tome',NULL),('Saudi Arabia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Saudi Arabia',NULL),('Senegal','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Senegal',NULL),('Serbia and Montenegro','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Serbia and Montenegro',NULL),('Seychelles','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Seychelles',NULL),('Sierra Leone','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Sierra Leone',NULL),('Singapore','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Singapore',NULL),('Slovakia','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Slovakia',NULL),('Slovenia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Slovenia',NULL),('Solomon Islands','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Solomon Islands',NULL),('Somalia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Somalia',NULL),('South Africa','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'South Africa',NULL),('South Korea','2010-12-14 17:56:47','2010-04-15 15:03:26','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'South Korea',NULL),('Spain','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Spain',NULL),('Sri Lanka','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Sri Lanka',NULL),('Sudan','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Sudan',NULL),('Suriname','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Suriname',NULL),('Swaziland','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Swaziland',NULL),('Sweden','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Sweden',NULL),('Switzerland','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Switzerland',NULL),('Syria','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Syria',NULL),('Taiwan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Taiwan',NULL),('Tajikistan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Tajikistan',NULL),('Tanzania','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Tanzania',NULL),('Thailand','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Thailand',NULL),('Togo','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Togo',NULL),('Tonga','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Tonga',NULL),('Trinidad and Tobago','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Trinidad and Tobago',NULL),('Tunisia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Tunisia',NULL),('Turkey','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Turkey',NULL),('Turkmenistan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Turkmenistan',NULL),('Uganda','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Uganda',NULL),('Ukraine','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Ukraine',NULL),('United Arab Emirates','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'United Arab Emirates',NULL),('United Kingdom','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'United Kingdom',NULL),('United States','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'United States',NULL),('Uruguay','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Uruguay',NULL),('Uzbekistan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Uzbekistan',NULL),('Vanuatu','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Vanuatu',NULL),('Venezuela','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Venezuela',NULL),('Vietnam','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Vietnam',NULL),('Yemen','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Yemen',NULL),('Zambia','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Zambia',NULL),('Zimbabwe','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Zimbabwe',NULL); +/*!40000 ALTER TABLE `tabCountry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCurrency` +-- + +DROP TABLE IF EXISTS `tabCurrency`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCurrency` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `currency_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCurrency` +-- + +LOCK TABLES `tabCurrency` WRITE; +/*!40000 ALTER TABLE `tabCurrency` DISABLE KEYS */; +INSERT INTO `tabCurrency` VALUES ('AED','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'AED',NULL),('AFN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AFN',NULL),('ALL','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'ALL',NULL),('AMD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AMD',NULL),('ANG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ANG',NULL),('AOA','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AOA',NULL),('ARS','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'ARS',NULL),('AUD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AUD',NULL),('AZN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AZN',NULL),('BAM','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BAM',NULL),('BBD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BBD',NULL),('BDT','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BDT',NULL),('BGN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BGN',NULL),('BHD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BHD',NULL),('BIF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BIF',NULL),('BMD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BMD',NULL),('BND','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BND',NULL),('BOB','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BOB',NULL),('BRL','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BRL',NULL),('BSD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BSD',NULL),('BTN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BTN',NULL),('BWP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BWP',NULL),('BYR','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BYR',NULL),('BZD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BZD',NULL),('CAD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CAD',NULL),('CDF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CDF',NULL),('CFA','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CFA',NULL),('CFP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CFP',NULL),('CHF','2010-12-14 17:56:48','2009-03-25 10:58:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'CHF',NULL),('CLP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CLP',NULL),('CNY','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CNY',NULL),('COP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'COP',NULL),('CRC','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CRC',NULL),('CUC','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CUC',NULL),('CZK','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CZK',NULL),('DJF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'DJF',NULL),('DKK','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'DKK',NULL),('DOP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'DOP',NULL),('DZD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'DZD',NULL),('EEK','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'EEK',NULL),('EGP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'EGP',NULL),('ERN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'ERN',NULL),('ETB','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'ETB',NULL),('EUR','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'EUR',NULL),('FJD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'FJD',NULL),('FKP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'FKP',NULL),('FMG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'FMG',NULL),('GBP','2010-12-14 17:56:48','2010-04-03 17:29:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'GBP',NULL),('GEL','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GEL',NULL),('GHS','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GHS',NULL),('GIP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GIP',NULL),('GMD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GMD',NULL),('GNF','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'GNF',NULL),('GQE','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GQE',NULL),('GTQ','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GTQ',NULL),('GYD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'GYD',NULL),('HKD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'HKD',NULL),('HNL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'HNL',NULL),('HRK','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'HRK',NULL),('HTG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'HTG',NULL),('HUF','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'HUF',NULL),('IDR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'IDR',NULL),('ILS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ILS',NULL),('INR','2010-12-14 17:56:48','2010-04-03 17:29:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'INR',NULL),('IQD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'IQD',NULL),('IRR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'IRR',NULL),('ISK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ISK',NULL),('JMD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'JMD',NULL),('JOD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'JOD',NULL),('JPY','2010-12-14 17:56:48','2009-03-25 10:58:22','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'JPY',NULL),('KES','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KES',NULL),('KGS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KGS',NULL),('KHR','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'KHR',NULL),('KMF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'KMF',NULL),('KPW','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KPW',NULL),('KRW','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KRW',NULL),('KWD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KWD',NULL),('KYD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'KYD',NULL),('KZT','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KZT',NULL),('LAK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LAK',NULL),('LBP','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LBP',NULL),('LKR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LKR',NULL),('LRD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LRD',NULL),('LSL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LSL',NULL),('LTL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LTL',NULL),('LVL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LVL',NULL),('LYD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LYD',NULL),('MAD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MAD',NULL),('MDL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MDL',NULL),('MGA','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MGA',NULL),('MKD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MKD',NULL),('MMK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MMK',NULL),('MNT','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MNT',NULL),('MOP','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MOP',NULL),('MRO','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MRO',NULL),('MUR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MUR',NULL),('MVR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MVR',NULL),('MWK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MWK',NULL),('MXN','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MXN',NULL),('MYR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MYR',NULL),('MZM','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MZM',NULL),('NAD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NAD',NULL),('NGN','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NGN',NULL),('NIO','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NIO',NULL),('NOK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NOK',NULL),('NPR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NPR',NULL),('NRs','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NRs',NULL),('NZD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NZD',NULL),('OMR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'OMR',NULL),('PAB','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PAB',NULL),('PEN','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PEN',NULL),('PGK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PGK',NULL),('PHP','2010-12-14 17:56:48','2009-07-13 13:33:43','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'PHP',NULL),('PKR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PKR',NULL),('PLN','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PLN',NULL),('PYG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PYG',NULL),('QAR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'QAR',NULL),('RMB','2010-12-14 17:56:48','2009-03-26 10:25:52','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'RMB',NULL),('RON','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'RON',NULL),('RSD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'RSD',NULL),('RUB','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'RUB',NULL),('RWF','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'RWF',NULL),('SAR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SAR',NULL),('SCR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SCR',NULL),('SDG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SDG',NULL),('SDR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SDR',NULL),('SEK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SEK',NULL),('SGD','2010-12-14 17:56:48','2010-05-10 12:42:41','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,NULL,'SGD',NULL),('SHP','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SHP',NULL),('SOS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SOS',NULL),('SRD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SRD',NULL),('STD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'STD',NULL),('SYP','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SYP',NULL),('SZL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SZL',NULL),('THB','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'THB',NULL),('TJS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TJS',NULL),('TMT','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TMT',NULL),('TND','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TND',NULL),('TRY','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TRY',NULL),('TTD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TTD',NULL),('TWD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TWD',NULL),('TZS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TZS',NULL),('UAE','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UAE',NULL),('UAH','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UAH',NULL),('UGX','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UGX',NULL),('USD','2010-12-14 17:56:48','2010-04-03 17:29:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'USD',NULL),('UYU','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UYU',NULL),('UZS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UZS',NULL),('VEB','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'VEB',NULL),('VND','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'VND',NULL),('VUV','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'VUV',NULL),('WST','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'WST',NULL),('XAF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'XAF',NULL),('XCD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'XCD',NULL),('XDR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'XDR',NULL),('XOF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'XOF',NULL),('XPF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'XPF',NULL),('YEN','2010-12-14 17:56:48','2009-03-25 10:57:45','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'YEN',NULL),('YER','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'YER',NULL),('YTL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'YTL',NULL),('ZAR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ZAR',NULL),('ZMK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ZMK',NULL),('ZWR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ZWR',NULL); +/*!40000 ALTER TABLE `tabCurrency` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCustom Field` +-- + +DROP TABLE IF EXISTS `tabCustom Field`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCustom Field` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `dt` varchar(180) default NULL, + `label` varchar(180) default NULL, + `fieldtype` varchar(180) default NULL, + `options` text, + `length` int(11) default NULL, + `insert_after` varchar(180) default NULL, + `index` decimal(14,6) default NULL, + `reqd` int(1) default NULL, + `print_hide` int(1) default NULL, + `permlevel` int(11) default '0', + `fieldname` varchar(180) default NULL, + `description` text, + `default` text, + `width` varchar(180) default NULL, + `in_filter` int(1) default NULL, + `no_copy` int(1) default NULL, + `report_hide` int(1) default NULL, + `allow_on_submit` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `dt` (`dt`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCustom Field` +-- + +LOCK TABLES `tabCustom Field` WRITE; +/*!40000 ALTER TABLE `tabCustom Field` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCustom Field` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCustom Script` +-- + +DROP TABLE IF EXISTS `tabCustom Script`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCustom Script` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `dt` varchar(180) default NULL, + `script_type` varchar(180) default 'Client', + `script` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCustom Script` +-- + +LOCK TABLES `tabCustom Script` WRITE; +/*!40000 ALTER TABLE `tabCustom Script` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCustom Script` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCustomer Group` +-- + +DROP TABLE IF EXISTS `tabCustomer Group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCustomer Group` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `customer_group_name` varchar(180) default NULL, + `description` text, + `parent_customer_group` varchar(180) default NULL, + `is_group` varchar(180) default NULL, + `lft` int(11) default NULL, + `rgt` int(11) default NULL, + `old_parent` varchar(180) default NULL, + `default_price_list` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `lft` (`lft`), + KEY `rgt` (`rgt`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCustomer Group` +-- + +LOCK TABLES `tabCustomer Group` WRITE; +/*!40000 ALTER TABLE `tabCustomer Group` DISABLE KEYS */; +INSERT INTO `tabCustomer Group` VALUES ('All Customer Groups','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'All Customer Groups',NULL,'','Yes',1,4,'',NULL,NULL),('Default Customer Group','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Customer Group',NULL,'All Customer Groups','No',2,3,'All Customer Groups',NULL,NULL); +/*!40000 ALTER TABLE `tabCustomer Group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCustomer Issue` +-- + +DROP TABLE IF EXISTS `tabCustomer Issue`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCustomer Issue` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `status` varchar(180) default 'Open', + `complaint_date` date default NULL, + `fiscal_year` varchar(180) default NULL, + `complaint_raised_by` varchar(180) default NULL, + `service_address` text, + `customer_name` varchar(180) default NULL, + `customer_group` varchar(180) default NULL, + `customer_address` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `company` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` text, + `complaint` text, + `allocated_on` date default NULL, + `allocated_to` varchar(180) default NULL, + `resolution_details` text, + `resolution_date` date default NULL, + `resolved_by` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `from_company` varchar(180) default NULL, + `contact_person` varchar(180) default NULL, + `contact_no` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `naming_series` varchar(180) default NULL, + `serial_no` varchar(180) default NULL, + `warranty_amc_status` varchar(180) default NULL, + `amc_expiry_date` date default NULL, + `warranty_expiry_date` date default NULL, + `address_display` text, + `contact_display` text, + `contact_email` varchar(180) default NULL, + `contact_mobile` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `complaint_date` (`complaint_date`), + KEY `fiscal_year` (`fiscal_year`), + KEY `territory` (`territory`), + KEY `company` (`company`), + KEY `item_code` (`item_code`), + KEY `allocated_on` (`allocated_on`), + KEY `allocated_to` (`allocated_to`), + KEY `resolution_date` (`resolution_date`), + KEY `resolved_by` (`resolved_by`), + KEY `parent` (`parent`), + KEY `customer` (`customer`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCustomer Issue` +-- + +LOCK TABLES `tabCustomer Issue` WRITE; +/*!40000 ALTER TABLE `tabCustomer Issue` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCustomer Issue` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCustomer` +-- + +DROP TABLE IF EXISTS `tabCustomer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCustomer` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `customer_name` varchar(180) default NULL, + `customer_group` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `lead_name` varchar(180) default NULL, + `phone_1` varchar(180) default NULL, + `fax_1` varchar(180) default NULL, + `website` varchar(180) default NULL, + `last_sales_order` varchar(180) default NULL, + `address_line1` varchar(180) default NULL, + `address_line2` varchar(180) default NULL, + `city` varchar(180) default NULL, + `pincode` varchar(180) default NULL, + `region` varchar(180) default NULL, + `country` varchar(180) default NULL, + `state` varchar(180) default NULL, + `address` mediumtext, + `telephone` varchar(180) default NULL, + `company` varchar(180) default NULL, + `customer_details` text, + `naming_series` varchar(180) default NULL, + `customer_type` varchar(180) default NULL, + `credit_days` int(11) default NULL, + `credit_limit` decimal(18,6) default NULL, + `email_id` varchar(180) default NULL, + `default_sales_partner` varchar(180) default NULL, + `default_commission_rate` decimal(18,6) default NULL, + `test_field` varchar(180) default NULL, + `default_price_list` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + `default_currency` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `customer_name` (`customer_name`), + KEY `customer_group` (`customer_group`), + KEY `country` (`country`), + KEY `state` (`state`), + KEY `company` (`company`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCustomer` +-- + +LOCK TABLES `tabCustomer` WRITE; +/*!40000 ALTER TABLE `tabCustomer` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCustomer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabCustomize Form Field` +-- + +DROP TABLE IF EXISTS `tabCustomize Form Field`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabCustomize Form Field` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `print_hide` int(1) default NULL, + `description` text, + `default` text, + `depends_on` varchar(180) default NULL, + `allow_on_submit` int(1) default NULL, + `options` text, + `width` varchar(180) default NULL, + `fieldname` varchar(180) default NULL, + `fieldtype` varchar(180) default NULL, + `reqd` int(1) default NULL, + `hidden` int(1) default NULL, + `label` varchar(180) default NULL, + `permlevel` int(11) default '0', + `report_hide` int(1) default NULL, + `in_filter` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `fieldname` (`fieldname`), + KEY `fieldtype` (`fieldtype`), + KEY `label` (`label`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabCustomize Form Field` +-- + +LOCK TABLES `tabCustomize Form Field` WRITE; +/*!40000 ALTER TABLE `tabCustomize Form Field` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabCustomize Form Field` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDeduction Type` +-- + +DROP TABLE IF EXISTS `tabDeduction Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDeduction Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `deduction_name` varchar(180) default NULL, + `description` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDeduction Type` +-- + +LOCK TABLES `tabDeduction Type` WRITE; +/*!40000 ALTER TABLE `tabDeduction Type` DISABLE KEYS */; +INSERT INTO `tabDeduction Type` VALUES ('Income Tax','2010-12-14 17:56:47','2010-04-05 12:53:07','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Income Tax','Income Tax',NULL),('Professional Tax','2010-12-14 17:56:47','2010-04-05 12:52:59','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Professional Tax','Professional Tax',NULL),('Provident Fund','2010-12-14 17:56:47','2010-04-05 12:52:52','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Provident Fund','Provident fund',NULL); +/*!40000 ALTER TABLE `tabDeduction Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDefault Home Page` +-- + +DROP TABLE IF EXISTS `tabDefault Home Page`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDefault Home Page` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `role` varchar(180) default NULL, + `home_page` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDefault Home Page` +-- + +LOCK TABLES `tabDefault Home Page` WRITE; +/*!40000 ALTER TABLE `tabDefault Home Page` DISABLE KEYS */; +INSERT INTO `tabDefault Home Page` VALUES ('000000580','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Control Panel','default_home_pages','Control Panel',1,'Guest',NULL); +/*!40000 ALTER TABLE `tabDefault Home Page` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDefaultValue` +-- + +DROP TABLE IF EXISTS `tabDefaultValue`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDefaultValue` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `defkey` varchar(180) default NULL, + `defvalue` text, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDefaultValue` +-- + +LOCK TABLES `tabDefaultValue` WRITE; +/*!40000 ALTER TABLE `tabDefaultValue` DISABLE KEYS */; +INSERT INTO `tabDefaultValue` VALUES ('Administrator_system_message_id',NULL,NULL,NULL,NULL,0,'Administrator',NULL,NULL,NULL,'system_message_id','5'),('DEF000004','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Guest','defaults','Role',1,'hide_webnotes_toolbar','1'),('DEF000005','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Guest','defaults','Role',2,'hide_sidebars','1'),('DEF000006','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fiscal_year',''),('DEF000007','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'company',''),('DEF000008','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'currency',''),('DEF000009','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'price_list_name','Standard'),('DEF000010','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'item_group','Default'),('DEF000011','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'customer_group','Default Customer Group'),('DEF000012','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'supplier_type','Default Supplier Type'),('DEF000013','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'territory','Default'),('DEF000014','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'stock_uom',''),('DEF000015','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'valuation_method',''),('DEF000016','2010-08-25 16:03:43','2010-08-25 16:03:43','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'cust_master_name','Customer Name'),('DEF000017','2010-08-25 16:03:43','2010-08-25 16:03:43','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'supp_master_name','Supplier Name'),('DEF000018','2010-09-20 16:56:24','2010-09-20 16:56:24','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'auto_feed_off','0'),('DEF000019','2010-11-16 10:34:12','2010-11-16 10:34:12','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'maintenance_status_update_date','2010-12-10'),('DEF000071','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_imports','1'),('DEF000072','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_projects','1'),('DEF000073','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_page_break','1'),('DEF000074','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_recurring_invoice','1'),('DEF000075','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_quality','1'),('DEF000076','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_more_info','1'),('DEF000077','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_packing_details','1'),('DEF000078','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_brands','1'),('DEF000079','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_sales_extras','1'),('DEF000080','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_item_serial_nos','1'),('DEF000081','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_manufacturing','1'),('DEF000082','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_item_batch_nos','1'),('DEF000083','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_exports','1'),('DEF000084','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_after_sales_installations','1'),('DEF000085','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_discounts','1'),('DEF000086','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_item_group_in_details','1'),('DEF000087','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_item_advanced','1'),('DEF000088','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_pos','1'),('DEF000089','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_purchase_discounts','1'),('DEF000090','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',1,'date_format','dd-mm-yyyy'),('DEF000091','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',2,'currency_format',NULL),('DEF000092','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',3,'price_list_currency',NULL),('DEF000093','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',4,'maintain_same_rate','1'),('DEF000094','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',5,'fraction_currency',NULL),('DEF000095','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',6,'account_url',NULL),('DEF000096','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',7,'allow_negative_stock',NULL),('DEF000097','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',8,'fs_item_barcode','0'),('modules_last_update',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'modules_last_update','1296818001'),('next_patch',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'next_patch','368'),('__global_global_mail_footer',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'global_mail_footer','

    '),('__global_scheduler_last_event',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'scheduler_last_event','2012-05-03 12:12:54'),('__global_system_message',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'system_message','If your financial year starts on 1st April then you have make some changes in the system to start entry in the new year.
    We have made some guidelines regarding the basic steps you should follow. Please click on link How to start Entries in the New Fiscal Year in ERPNext?'),('__global_system_message_id',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'system_message_id','6'),('__session_status',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'__session_status','None'),('__session_status_message',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'__session_status_message','None'); +/*!40000 ALTER TABLE `tabDefaultValue` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDelivery Note Item` +-- + +DROP TABLE IF EXISTS `tabDelivery Note Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDelivery Note Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` text, + `stock_uom` varchar(180) default NULL, + `qty` decimal(18,6) default '0.000000', + `ref_rate` decimal(18,6) default '0.000000', + `adj_rate` decimal(18,6) default '0.000000', + `export_rate` decimal(18,6) default NULL, + `export_amount` decimal(18,6) default NULL, + `base_ref_rate` decimal(18,6) default NULL, + `basic_rate` decimal(18,6) default '0.000000', + `amount` decimal(18,6) default NULL, + `warehouse` varchar(180) default NULL, + `serial_no` text, + `batch_no` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `installed_qty` decimal(18,6) default NULL, + `actual_qty` decimal(18,6) default NULL, + `billed_qty` decimal(18,6) default NULL, + `prevdoc_docname` varchar(180) default NULL, + `prevdoc_doctype` varchar(180) default NULL, + `prevdoc_date` date default NULL, + `prevdoc_detail_docname` varchar(180) default NULL, + `item_tax_rate` text, + `page_break` int(1) default NULL, + `billed_amt` decimal(18,6) default NULL, + `packed_qty` decimal(18,6) default '0.000000', + `barcode` varchar(180) default NULL, + `customer_item_code` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `prevdoc_docname` (`prevdoc_docname`), + KEY `prevdoc_doctype` (`prevdoc_doctype`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDelivery Note Item` +-- + +LOCK TABLES `tabDelivery Note Item` WRITE; +/*!40000 ALTER TABLE `tabDelivery Note Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabDelivery Note Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDelivery Note Packing Item` +-- + +DROP TABLE IF EXISTS `tabDelivery Note Packing Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDelivery Note Packing Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `parent_item` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + `parent_detail_docname` varchar(180) default NULL, + `description` text, + `qty` decimal(18,6) default NULL, + `uom` varchar(180) default NULL, + `warehouse` varchar(180) default NULL, + `actual_qty` decimal(18,6) default NULL, + `planned_qty` decimal(18,6) default NULL, + `produced_qty` decimal(18,6) default NULL, + `prevdoc_doctype` varchar(180) default NULL, + `transaction_date` date default NULL, + `delivery_date` date default NULL, + `confirmation_date` date default NULL, + `page_break` int(1) default NULL, + `item_name` varchar(180) default NULL, + `projected_qty` decimal(18,6) default NULL, + `serial_no` text, + `batch_no` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `item_code_warehouse` (`item_code`,`warehouse`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDelivery Note Packing Item` +-- + +LOCK TABLES `tabDelivery Note Packing Item` WRITE; +/*!40000 ALTER TABLE `tabDelivery Note Packing Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabDelivery Note Packing Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDelivery Note` +-- + +DROP TABLE IF EXISTS `tabDelivery Note`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDelivery Note` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default 'DN', + `status` varchar(180) default 'Draft', + `customer_name` varchar(180) default NULL, + `customer_address` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `contact_person` varchar(180) default NULL, + `delivery_address` mediumtext, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `transporter_name` varchar(180) default NULL, + `transaction_date` date default NULL, + `per_billed` decimal(18,6) default NULL, + `per_installed` decimal(18,6) default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `lr_no` varchar(180) default NULL, + `lr_date` date default NULL, + `challan_no` varchar(180) default NULL, + `challan_date` date default NULL, + `sales_order_no` varchar(180) default NULL, + `price_list_name` varchar(180) default NULL, + `net_total` decimal(18,6) default NULL, + `charge` varchar(180) default NULL, + `other_charges_total` decimal(18,6) default NULL, + `grand_total` decimal(18,6) default NULL, + `rounded_total` decimal(18,6) default NULL, + `in_words` varchar(180) default NULL, + `grand_total_export` decimal(18,6) default NULL, + `rounded_total_export` decimal(18,6) default NULL, + `in_words_export` varchar(180) default NULL, + `tc_name` varchar(180) default NULL, + `terms` text, + `posting_date` date default NULL, + `posting_time` time default NULL, + `source` varchar(180) default NULL, + `campaign` varchar(180) default NULL, + `to_warehouse` varchar(180) default NULL, + `instructions` text, + `print_without_amount` int(1) default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `customer_group` varchar(180) default NULL, + `contact_no` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `po_no` varchar(180) default NULL, + `po_date` varchar(180) default NULL, + `cancel_reason` varchar(180) default NULL, + `excise_page` varchar(180) default NULL, + `note` mediumtext, + `sales_partner` varchar(180) default NULL, + `commission_rate` decimal(18,6) default NULL, + `total_commission` decimal(18,6) default NULL, + `supplier` varchar(180) default NULL, + `supplier_address` text, + `purchase_receipt_no` varchar(180) default NULL, + `purchase_order_no` varchar(180) default NULL, + `customer_mobile_no` varchar(180) default NULL, + `message` mediumtext, + `project_name` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `letter_head` varchar(180) default NULL, + `per_amt_billed` decimal(18,6) default NULL, + `ship_to` varchar(180) default NULL, + `ship_det_no` varchar(180) default NULL, + `shipping_address` mediumtext, + `billing_status` varchar(180) default NULL, + `contact_display` text, + `contact_email` text, + `contact_mobile` text, + `address_display` text, + `installation_status` varchar(180) default NULL, + `price_list_currency` varchar(180) default NULL, + `plc_conversion_rate` decimal(18,6) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `territory` (`territory`), + KEY `transaction_date` (`transaction_date`), + KEY `per_billed` (`per_billed`), + KEY `per_installed` (`per_installed`), + KEY `posting_date` (`posting_date`), + KEY `company` (`company`), + KEY `fiscal_year` (`fiscal_year`), + KEY `parent` (`parent`), + KEY `project_name` (`project_name`), + KEY `customer` (`customer`), + KEY `per_amt_billed` (`per_amt_billed`), + KEY `customer_group` (`customer_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDelivery Note` +-- + +LOCK TABLES `tabDelivery Note` WRITE; +/*!40000 ALTER TABLE `tabDelivery Note` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabDelivery Note` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDepartment` +-- + +DROP TABLE IF EXISTS `tabDepartment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDepartment` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `department_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDepartment` +-- + +LOCK TABLES `tabDepartment` WRITE; +/*!40000 ALTER TABLE `tabDepartment` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabDepartment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDesignation` +-- + +DROP TABLE IF EXISTS `tabDesignation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDesignation` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `designation_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDesignation` +-- + +LOCK TABLES `tabDesignation` WRITE; +/*!40000 ALTER TABLE `tabDesignation` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabDesignation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDocField` +-- + +DROP TABLE IF EXISTS `tabDocField`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDocField` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `fieldname` varchar(180) default NULL, + `label` varchar(180) default NULL, + `oldfieldname` varchar(180) default NULL, + `fieldtype` varchar(180) default NULL, + `oldfieldtype` varchar(180) default NULL, + `options` text, + `search_index` int(1) default NULL, + `hidden` int(1) default NULL, + `print_hide` int(1) default NULL, + `report_hide` int(1) default NULL, + `reqd` int(1) default NULL, + `no_copy` int(1) default NULL, + `allow_on_submit` int(1) default NULL, + `trigger` varchar(180) default NULL, + `depends_on` varchar(180) default NULL, + `permlevel` int(11) default '0', + `width` varchar(180) default NULL, + `default` text, + `description` text, + `colour` varchar(180) default NULL, + `icon` varchar(180) default NULL, + `in_filter` int(1) default NULL, + `no_column` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `label` (`label`), + KEY `fieldtype` (`fieldtype`), + KEY `fieldname` (`fieldname`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDocField` +-- + +LOCK TABLES `tabDocField` WRITE; +/*!40000 ALTER TABLE `tabDocField` DISABLE KEYS */; +INSERT INTO `tabDocField` VALUES ('FL01047','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Label','fields','DocType',1,'dt','Select DocType','dt','Select','Select','link:DocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL01048','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Label','fields','DocType',2,'dt_label','DocType Label','dt_label','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03646','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',1,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03647','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',2,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03648','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',3,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03649','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',4,'sales_order','Sales Order',NULL,'Link',NULL,'Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03650','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',5,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03651','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',6,'territory','Territory',NULL,'Link',NULL,'Territory',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03652','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',7,NULL,'Get Open Sales Order',NULL,'Button',NULL,'get_open_sales_order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03653','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',8,'entries','Entries',NULL,'Table',NULL,'Update Delivery Date Detail',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,'','No Toolbar',NULL,NULL,NULL,NULL,NULL),('FL03654','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',9,NULL,'Update Sales Order',NULL,'Button',NULL,'update_sales_order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06909','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',1,'item','Item',NULL,'Link',NULL,'Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL06910','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',2,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06911','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',3,'published','Published',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06912','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',4,'price_list','Price List',NULL,'Link',NULL,'Price List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Price List for the web. Leave blank to hide price.','White:FFF',NULL,NULL,NULL),('FL06913','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',5,'warehouse','Warehouse',NULL,'Link',NULL,'Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select shipping warehouse to show \"In Stock\" or \"Out of Stock\". To hide, leave blank','White:FFF',NULL,NULL,NULL),('FL06915','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',7,'thumbnail_image','Thumbnail Image',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Image for listing (Width: 100px) (Attach First)','White:FFF',NULL,NULL,NULL),('FL06916','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',8,'full_image','Full Image',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Image for listing (Width: 300px) (Attach First)','White:FFF',NULL,NULL,NULL),('FL06917','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',9,'short_description','Short Description',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL06919','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',11,'long_description','Long Description',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Full description (formatted as markdown)','White:FFF',NULL,NULL,NULL),('FL06921','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',13,'page_name','Page Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06922','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',14,'price','Price',NULL,'Currency',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL06923','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',15,'sales','Sales',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL06924','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',16,'stock','Stock',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06925','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',17,'currency','Currency',NULL,'Link',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06926','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',18,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06927','2012-02-13 19:12:21','2012-02-21 14:31:10','Administrator','Administrator',0,'Product Group','fields','DocType',1,'item_group','Item Group',NULL,'Link',NULL,'Item Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06928','2012-02-13 19:12:21','2012-02-21 14:31:10','Administrator','Administrator',0,'Product Group','fields','DocType',2,'label','Label',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06929','2012-02-13 19:12:21','2012-02-21 14:31:10','Administrator','Administrator',0,'Products Settings','fields','DocType',1,'groups','Groups',NULL,'Table',NULL,'Product Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Product Groups that are listed on the website. The first product group from this list will be listed by default on the \"Products Page\"','White:FFF',NULL,NULL,NULL),('FL07138','2012-02-22 18:36:09','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',6,NULL,NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07139','2012-02-22 18:36:09','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',10,NULL,NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07140','2012-02-22 18:36:09','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',12,NULL,NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07875','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',1,'general','General',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07876','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',2,'date_format','Date Format',NULL,'Select',NULL,'yyyy-mm-dd\ndd-mm-yyyy\ndd/mm/yyyy\nmm/dd/yyyy\nmm-dd-yyyy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07877','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',3,'currency_format','Currency Format',NULL,'Select',NULL,'Millions\nLacs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07878','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',4,'password_expiry_days','Password Expires in (days)',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07879','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',5,'session_expiry','Session Expires in (time)',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Format: hh:mm example for one hour expiry set as 01:00. \nMax expiry will be 72 hours. Default is 24 hours','White:FFF',NULL,NULL,NULL),('FL07880','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',6,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07881','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',7,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07882','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',8,'account_id','Account Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07883','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',9,'company_name','Company Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07884','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',10,'industry','Industry',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07885','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',11,'time_zone','Time Zone',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07886','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',12,'country','Country',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07887','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',13,'total_sms_sent','Total SMS Sent',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07888','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',14,'mail_server','Mail Server',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07889','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',15,'support_email_id','Support Email Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter Email Id to receive Error Report sent by users.\nE.g.: support@iwebnotes.com',NULL,NULL,NULL,NULL),('FL07890','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',16,'letter_head_image','Letter Head Image',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07891','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',17,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07892','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',18,'mail_footer','Mail Footer',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07893','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',19,'defaults','Defaults',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07894','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',20,'system_defaults','System Defaults',NULL,'Table',NULL,'DefaultValue',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07895','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',21,'banner','Banner',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07896','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',22,'client_name','Banner HTML',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07897','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',23,'startup','Startup',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07898','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',24,'custom_startup_code','Custom Startup Code',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07899','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',25,'home_pages','Home Pages',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07900','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',26,'home_page','Home Page',NULL,'Link',NULL,'Page',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07901','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',27,'default_home_pages','Default Home Pages',NULL,'Table',NULL,'Default Home Page',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07929','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'System Console','fields','DocType',1,'script','Script',NULL,'Code',NULL,'Python',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07930','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'System Console','fields','DocType',2,'server_python','Server (Python)',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL07931','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'System Console','fields','DocType',3,'client_js','Client (JS)',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL07932','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'System Console','fields','DocType',4,'response','Error',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07970','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',1,'module','Module','module','Select','Select','link:Module Def',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07971','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',2,'from_doctype','From DocType','from_doctype','Select','Select','link:DocType',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07972','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',3,'to_doctype','To DocType','to_doctype','Select','Select','link:DocType',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07973','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',4,'ref_doc_submitted','Ref Doc should be submitted?','ref_doc_submitted','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07974','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',5,'field_mapper_details','Field Mapper Details','field_mapper_details','Table','Table','Field Mapper Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07975','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',6,'table_mapper_details','Table Mapper Details','table_mapper_details','Table','Table','Table Mapper Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07999','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'Module Def','fields','DocType',1,'module_name','Module Name','module_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08000','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'Module Def','fields','DocType',2,'disabled','Disabled','disabled','Select','Select','No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08001','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'Event Role','fields','DocType',1,'role','Role','role','Link','Link','Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08027','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',1,'label','Label','label','Data','Data',NULL,1,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08028','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',2,'fieldtype','Type','fieldtype','Select','Select','Data\nSelect\nText\nSmall Text\nText Editor\nLink\nInt\nDate\nTime\nCurrency\nTable\nFloat\nCheck\nSection Break\nColumn Break\nButton\nRead Only\nCode\nHTML\nImage\nBlob\nPassword',1,0,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08029','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',3,'fieldname','Name','fieldname','Data','Data',NULL,1,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08030','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',4,'options','Options','options','Text','Text',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'For Links, enter the DocType as range\nFor Select, enter list of Options separated by comma',NULL,NULL,NULL,NULL),('FL08031','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',5,'permlevel','Perm Level','permlevel','Int','Int',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'0',NULL,NULL,NULL,NULL,NULL),('FL08032','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',6,'width','Width','width','Data','Data',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08033','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',7,'reqd','Reqd','reqd','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08034','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',8,'search_index','Index','search_index','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08035','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',9,'in_filter','In Filter','in_filter','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08036','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',10,'hidden','Hidden','hidden','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08037','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',11,'no_column','No Column',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08038','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',12,'print_hide','Print Hide','print_hide','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08039','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',13,'no_copy','No Copy','no_copy','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08040','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',14,'report_hide','Report Hide','report_hide','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08041','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',15,'allow_on_submit','Allow on Submit','allow_on_submit','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08042','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',16,'depends_on','Depends On','depends_on','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08043','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',17,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08044','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',18,'trigger','Trigger','trigger','Select','Select','\nClient\nServer',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08045','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',19,'default','Default','default','Text','Text',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08046','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',20,'colour','Colour','colour','Select','Select','White:FFF\nLight Blue:DEF\nLight Green:DFE\nPeach:FEF3C5\nPink:FEF2EA\nLilac:FDEAFE\nAqua:EAFEFA',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08047','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',21,'icon','Icon','icon','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08048','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',22,'oldfieldname',NULL,'oldfieldname','Data','Data',NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08049','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',23,'oldfieldtype',NULL,'oldfieldtype','Data','Data',NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08050','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',1,'from_table','From Table','from_table','Select','Select','link:DocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08051','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',2,'to_table','To Table','to_table','Select','Select','link:DocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08052','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',3,'from_field','From Field','from_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08053','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',4,'to_field','To Field','to_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08054','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',5,'match_id','Match Id','match_id','Int','Int',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'60px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08055','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',6,'validation_logic','Validation Logic','validation_logic','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08056','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',7,'reference_doctype_key','Reference DocType Key','reference_doctype_key','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08057','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',8,'reference_key','Reference Docname Key','reference_key','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08058','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Page Role','fields','DocType',1,'role','Role','role','Link','Link','Role',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08080','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',1,'permlevel','Level','permlevel','Int','Int',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'40px','0',NULL,NULL,NULL,NULL,NULL),('FL08081','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',2,'role','Role','role','Link','Link','Role',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08082','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',3,'read','Read','read','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08083','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',4,'write','Write','write','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08084','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',5,'create','Create','create','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08085','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',6,'submit','Submit','submit','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08086','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',7,'cancel','Cancel','cancel','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08087','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',8,'execute','Execute','execute','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08088','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',9,'amend','Amend','amend','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08089','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',10,'match','Match','match','Data','Data',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08092','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Role','fields','DocType',1,'module','Module','module','Select','Select','link:Module Def',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08093','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Role','fields','DocType',2,'role_name','Role Name','role_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08094','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Role','fields','DocType',3,'defaults','Defaults','defaults','Table','Table','DefaultValue',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08111','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',1,'from_field','From Field','from_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08112','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',2,'to_field','To Field','to_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08113','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',3,'match_id','Match Id','match_id','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px','0',NULL,NULL,NULL,NULL,NULL),('FL08114','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',4,'map','Map','map','Select','Select','Yes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08115','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',5,'checking_operator','Checking Operator (To Fld, Operator, From Fld)','checking_operator','Select','Select','\n=\n>\n>=\n<\n<=',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08116','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DefaultValue','fields','DocType',1,'defkey','Key','defkey','Data','Data',NULL,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08117','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DefaultValue','fields','DocType',2,'defvalue','Value','defvalue','Text','Text',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08150','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Default Home Page','fields','DocType',1,'role','Role','role','Link','Link','Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08151','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Default Home Page','fields','DocType',2,'home_page','Home Page','home_page','Link','Link','Page',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08156','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',1,'description','Description','description','Text','Text',NULL,0,0,0,0,0,0,0,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,0,NULL),('FL08157','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',2,'date','Date','date','Date','Date',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08158','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',3,'priority','Priority','priority','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08159','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',4,'reference_type','Reference Type','reference_type','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08160','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',5,'reference_name','Reference Name','reference_name','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08161','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',6,'checked','Checked','checked','Check','Check',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08162','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',7,'role','Role','role','Link','Link','Role',0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08163','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',8,'assigned_by','Assigned By',NULL,'Link',NULL,'Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08185','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',1,'test_data','Test Data',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08186','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',2,'test_link','Test Link',NULL,'Link',NULL,'Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08187','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',3,'test_select','Test Select',NULL,'Select',NULL,'A\nB\nC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08188','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',4,'test_text','Test Text',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08189','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',5,'test_date','Test Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08190','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',6,'to_be_dropped','to be dropped',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08191','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',7,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL08192','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',8,'amended_from','Amended From',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08193','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Event User','fields','DocType',1,'person','Person','person','Select','Select','link:Profile',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08194','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'File Data','fields','DocType',1,'file_name','File Name','file_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08195','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'File Data','fields','DocType',2,'module','Module','module','Link','Link','Module Def',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08196','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'File Data','fields','DocType',3,'blob_content','Blob Content','blob_content','Blob','Blob',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08294','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08295','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08296','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08297','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',4,'item_group','Item Group','item_group','Link','Link','Item Group',0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08298','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',5,'brand','Brand','brand','Link','Link','Brand',0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08299','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',6,'basic_rate','Basic Rate','basic_rate','Currency','Currency',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08300','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',7,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08301','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',8,'uom','UOM','uom','Link','Link','UOM',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08302','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','harshada@webnotestech.com',0,'Industry Type','fields','DocType',1,'industry','Industry','industry','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08393','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',1,'sales_person','Sales Person','sales_person','Link','Link','Sales Person',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,1,NULL),('FL08394','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',2,'sales_designation','Designation','sales_designation','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08395','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',3,'contact_no','Contact No.','contact_no','Data','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08396','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',4,'allocated_percentage','Allocated (%)','allocated_percentage','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08397','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',5,'allocated_amount','Allocated Amount','allocated_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08398','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',6,'parenttype','Parenttype','parenttype','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08399','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',7,'incentives','Incentives','incentives','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08400','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08401','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',2,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08402','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',3,'prevdoc_date','Delivery Date','prevdoc_date','Date','Date',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08403','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',4,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08404','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',5,'prevdoc_detail_docname','Against Document Detail No','prevdoc_detail_docname','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08405','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',6,'prevdoc_docname','Against Document No','prevdoc_docname','Data','Data',NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL08406','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',7,'prevdoc_doctype','Document Type','prevdoc_doctype','Data','Data',NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL08407','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',8,'qty','Installed Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08467','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08468','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',2,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08469','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',3,'uom','UOM','uom','Link','Link','UOM',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08470','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',4,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08471','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',5,'qty','Qty','qty','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08472','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',6,'returned_qty','Returned Qty','returned_qty','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08473','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',7,'serial_no','Serial No',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08474','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',8,'batch_no','Batch No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08475','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',9,'detail_name','Detail Name','detail_name','Data','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08476','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',1,'installation_note','Installation Note',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08477','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08478','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','\nIN',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08479','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',4,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08480','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',5,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08481','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',6,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08482','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',7,'customer_name','Name','customer_name','Data','Data',NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08483','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',8,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08484','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',9,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08485','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',10,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08486','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',11,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08487','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',12,'territory','Territory',NULL,'Link',NULL,'Territory',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08488','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',13,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08489','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',14,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08490','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',15,'inst_date','Installation Date','inst_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08491','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',16,'inst_time','Installation Time','inst_time','Time','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08492','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',17,'status','Status','status','Select','Select','Draft\nSubmitted\nCancelled',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,NULL,NULL,NULL,NULL),('FL08493','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',18,'company','Company','company','Select','Select','link:Company',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select the relevant company name if you have multiple companies.','White:FFF',NULL,1,NULL),('FL08494','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',19,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08495','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',20,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08496','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',21,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.','White:FFF',NULL,NULL,NULL),('FL08497','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',22,'remarks','Remarks','remarks','Small Text','Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08498','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',23,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08499','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',24,'item_details','Item Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08500','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',25,'delivery_note_no','Delivery Note No','delivery_note_no','Link','Link','Delivery Note',1,NULL,0,NULL,1,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08501','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',26,'get_items','Get Items',NULL,'Button','Button','pull_delivery_note_details',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08502','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',27,'installed_item_details','Installation Note Item','installed_item_details','Table','Table','Installation Note Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08503','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08504','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',2,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08505','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',3,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08506','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',4,'customer_address','Customer Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08507','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',5,'ship_to','Ship To',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08508','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',6,'shipping_address','Shipping Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08509','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',7,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08510','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',8,'is_primary_address','Is Primary Address',NULL,'Select',NULL,'Yes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08511','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',9,'shipping_details','Shipping Details',NULL,'Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08512','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',10,'trash_reason','Trash Reason',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08598','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',1,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08599','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',2,'send_to','Send To',NULL,'Select',NULL,'\nAll Contact\nAll Customer Contact\nAll Supplier Contact\nAll Sales Partner Contact\nAll Lead (Open)\nAll Employee (Active)\nAll Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08600','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',3,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.send_to==\'All Customer Contact\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08601','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',4,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.send_to==\'All Supplier Contact\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08602','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',5,'department','Department',NULL,'Select',NULL,'link:Department',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.send_to==\'All Employee (Active)\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08603','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',6,'branch','Branch',NULL,'Select',NULL,'link:Branch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.send_to==\'All Employee (Active)\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08604','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',7,'create_receiver_list','Create Receiver List',NULL,'Button',NULL,'create_receiver_list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08605','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',8,'receiver_list','Receiver List',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08606','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',9,'column_break9',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08607','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',10,'message','Message',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Message greater than 160 character will be splitted into multiple mesage',NULL,NULL,NULL,NULL),('FL08608','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',11,'send_sms','Send SMS',NULL,'Button',NULL,'send_sms',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08609','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08610','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',2,'employee_type','Employee Type',NULL,'Select',NULL,'link:Employment Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all employee types','White:FFF',NULL,NULL,NULL),('FL08611','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',3,'branch','Branch',NULL,'Select',NULL,'link:Branch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all branches','White:FFF',NULL,NULL,NULL),('FL08612','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',4,'department','Department',NULL,'Select',NULL,'link:Department',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all departments','White:FFF',NULL,NULL,NULL),('FL08613','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',5,'designation','Designation',NULL,'Select',NULL,'link:Designation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all designations','White:FFF',NULL,NULL,NULL),('FL08614','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',6,'grade','Grade',NULL,'Select',NULL,'link:Grade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all grades','White:FFF',NULL,NULL,NULL),('FL08615','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',7,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08616','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',8,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08617','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',9,'leave_type','Leave Type',NULL,'Select',NULL,'link:Leave Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08618','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',10,'carry_forward','Carry Forward',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Please select Carry Forward if you also want to include previous fiscal year\'s balance leaves to this fiscal year','White:FFF',NULL,NULL,NULL),('FL08619','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',11,'no_of_days','New Leaves Allocated (In Days)',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08620','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',12,'allocate','Allocate',NULL,'Button',NULL,'allocate_leave',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Server',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08621','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Deduction Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08622','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Deduction Type','fields','DocType',2,'deduction_name','Name','deduction_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08623','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Deduction Type','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08645','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Designation','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08646','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Designation','fields','DocType',2,'designation_name','Designation','designation_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08647','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Grade','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08648','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Grade','fields','DocType',2,'grade_name','Grade','grade_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08649','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Holiday','fields','DocType',1,'description','Description',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08650','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Holiday','fields','DocType',2,'holiday_date','Date','holiday_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08651','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08652','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08653','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',3,'employee','Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08654','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08655','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',5,'department','Department','department','Link','Link','Department',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08656','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',6,'designation','Designation','designation','Link','Link','Designation',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08657','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',7,'branch','Branch','branch','Link','Link','Branch',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08658','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',8,'grade','Grade','grade','Link','Link','Grade',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08659','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',9,'pf_no','PF No.','pf_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08660','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',10,'esic_no','ESIC No.','esic_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08661','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',11,'letter_head','Letter Head',NULL,'Link',NULL,'Letter Head',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08662','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',12,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08663','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',13,'fiscal_year','Fiscal Year','fiscal_year','Link','Data','Fiscal Year',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08664','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',14,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08665','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',15,'month','Month','month','Select','Select','\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'37%',NULL,NULL,'White:FFF',NULL,1,NULL),('FL08666','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',16,'total_days_in_month','Total days in month','total_days_in_month','Data','Int',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08667','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',17,'leave_without_pay','Leave Without Pay','leave_without_pay','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08668','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',18,'payment_days','Payment days','payment_days','Float','Float',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08669','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',19,'bank_name','Bank Name','bank_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08670','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',20,'bank_account_no','Bank Account No.','bank_account_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08671','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',21,'email_check','Email','email_check','Check','Check',NULL,NULL,NULL,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08672','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',22,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,0,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08673','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',23,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,0,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08674','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',24,'earning_deduction','Earning & Deduction',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08675','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',25,'earning','Earning',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08676','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',26,'earning_details','Salary Structure Earnings','earning_details','Table','Table','Salary Slip Earning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08677','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',27,'deduction','Deduction',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08678','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',28,'deduction_details','Deductions','deduction_details','Table','Table','Salary Slip Deduction',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08679','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',29,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08680','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',30,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08681','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',31,'arrear_amount','Arrear Amount','arrear_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08682','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',32,'leave_encashment_amount','Leave Encashment Amount','encashment_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08683','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',33,'gross_pay','Gross Pay','gross_pay','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08684','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',34,'total_deduction','Total Deduction','total_deduction','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08685','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',35,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08686','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',36,'net_pay','Net Pay','net_pay','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Gross Pay + Arrear Amount +Encashment Amount - Total Deduction','White:FFF',NULL,NULL,NULL),('FL08687','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',37,'rounded_total','Rounded Total',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08688','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',38,'total_in_words','Total in words','net_pay_in_words','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Net Pay (in words) will be visible once you save the Salary Slip.',NULL,NULL,NULL,NULL),('FL08689','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip Deduction','fields','DocType',1,'d_type','Type','d_type','Link','Data','Deduction Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08690','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip Deduction','fields','DocType',2,'d_amount','Amount','d_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08691','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip Deduction','fields','DocType',3,'d_modified_amount','Modified Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08692','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip Deduction','fields','DocType',4,'d_depends_on_lwp','Depends on LWP',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08693','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','ashwini@webnotestech.com',0,'Appraisal Template','fields','DocType',1,'kra_title','KRA Title','kra_title','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08694','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','ashwini@webnotestech.com',0,'Appraisal Template','fields','DocType',2,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08695','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','ashwini@webnotestech.com',0,'Appraisal Template','fields','DocType',3,'kra_sheet','Appraisal Template Goal','kra_sheet','Table','Table','Appraisal Template Goal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08696','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',1,'expense_date','Expense Date','expense_date','Date','Date',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08697','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',2,'expense_type','Expense Claim Type','expense_type','Link','Link','Expense Claim Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08698','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08699','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',4,'claim_amount','Claim Amount','claim_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08700','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',5,'sanctioned_amount','Sanctioned Amount','sanctioned_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,1,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08701','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Branch','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08702','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Branch','fields','DocType',2,'branch','Branch','branch','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08703','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Earning','fields','DocType',1,'e_type','Type','e_type','Link','Data','Earning Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08704','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Earning','fields','DocType',2,'modified_value','Amount','modified_value','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08705','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Earning','fields','DocType',3,'depend_on_lwp','Depend on LWP','depend_on_lwp','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08706','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08707','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',2,'holiday_list_name','Holiday List Name','holiday_list_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08708','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',3,'is_default','Default',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08709','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',4,'fiscal_year','Fiscal Year','fiscal_year','Select','Link','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08710','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',5,'weekly_off','Weekly Off',NULL,'Select',NULL,'\nSunday\nMonday\nTuesday\nWednesday\nThursday\nFriday\nSaturday',NULL,NULL,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08711','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',6,'get_weekly_off_dates','Get Weekly Off Dates',NULL,'Button',NULL,'get_weekly_off_dates',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08712','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',7,'holiday_list_details','Holidays','holiday_list_details','Table','Table','Holiday',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08713','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',8,'clear_table','Clear Table',NULL,'Button',NULL,'clear_table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08714','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',1,'particulars2','Particulars','particulars2','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08715','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',2,'under_section2','Under Section','under_section2','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08716','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',3,'max_limit2','Max. Limit','max_limit2','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08717','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',4,'actual_amount2','Actual Amount','actual_amount2','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08718','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',5,'eligible_amount2','Eligible Amount','eligible_amount2','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08719','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',6,'modified_amount2','Modified Amount','modified_amount2','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08720','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',1,'document_description','Document Description',NULL,'HTML',NULL,'
    You can generate multiple salary slips based on the selected criteria, submit and mail those to the employee directly from here
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08721','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',2,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08722','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',3,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08723','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',4,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08724','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',5,'branch','Branch',NULL,'Link',NULL,'Branch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08725','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',6,'department','Department',NULL,'Link',NULL,'Department',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08726','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',7,'designation','Designation',NULL,'Link',NULL,'Designation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08727','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',8,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08728','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',9,'grade','Grade',NULL,'Select',NULL,'link:Grade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08729','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',10,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08730','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',11,'month','Month',NULL,'Select',NULL,'\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08731','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',12,'send_email','Send Email',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check if you want to send salary slip in mail to each employee while submitting salary slip','White:FFF',NULL,NULL,NULL),('FL08732','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',13,'section_break1',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08733','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',14,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08734','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',15,'create_salary_slip','Create Salary Slip',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Creates salary slip for above mentioned criteria.','White:FFF',NULL,NULL,NULL),('FL08735','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',16,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'25%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08736','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',17,'submit_salary_slip','Submit Salary Slip',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Submit all salary slips for the above selected criteria','White:FFF',NULL,NULL,NULL),('FL08737','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',18,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'25%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08738','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',19,'make_bank_voucher','Make Bank Voucher',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Create Bank Voucher for the total salary paid for the above selected criteria','White:FFF',NULL,NULL,NULL),('FL08739','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',20,'section_break2',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08740','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',21,'activity_log','Activity Log',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08741','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',1,'basic_info','Basic Info','basic_info','Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08742','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08743','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',3,'employee','Employee','employee','Link','Link','Employee',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08744','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08745','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',5,'branch','Branch','branch','Select','Select','link:Branch',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08746','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',6,'designation','Designation','designation','Select','Select','link:Designation',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08747','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',7,'department','Department','department','Select','Select','link:Department',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08748','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',8,'grade','Grade','grade','Select','Select','link:Grade',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08749','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',9,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08750','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',10,'is_active','Is Active','is_active','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Yes',NULL,'White:FFF',NULL,1,NULL),('FL08751','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',11,'from_date','From Date','from_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08752','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',12,'to_date','To Date','to_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08753','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',13,'ctc','CTC','ctc','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Cost to Company','White:FFF',NULL,1,NULL),('FL08754','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',14,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08755','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',15,'earning_deduction','Earning & Deduction','earning_deduction','Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'You can create more earning and deduction type from Setup --> HR',NULL,NULL,NULL,NULL),('FL08756','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',16,'earning','Earning','col_brk2','Column Break','Column Break',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08757','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',17,'earning_details','Earning1','earning_details','Table','Table','Salary Structure Earning',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08758','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',18,'deduction','Deduction','col_brk3','Column Break','Column Break',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08759','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',19,'deduction_details','Deduction1','deduction_details','Table','Table','Salary Structure Deduction',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08760','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',20,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08761','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',21,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08762','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',22,'total_earning','Total Earning','total_earning','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08763','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',23,'total_deduction','Total Deduction','total_deduction','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08764','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',24,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08765','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',25,'net_pay','Net Pay',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08766','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',1,'school_univ','School/University','school_univ','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08767','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',2,'qualification','Qualification','qualification','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08768','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',3,'level','Level','level','Select','Select','Graduate\nPost Graduate\nUnder Graduate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08769','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',4,'year_of_passing','Year of Passing','year_of_passing','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08770','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',5,'class_per','Class / Percentage','class_per','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08771','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',6,'maj_opt_subj','Major/Optional Subjects','maj_opt_subj','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08772','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Deduction','fields','DocType',1,'d_type','Type','d_type','Link','Select','Deduction Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08773','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Deduction','fields','DocType',2,'d_modified_amt','Amount','d_modified_amt','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08774','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Deduction','fields','DocType',3,'depend_on_lwp','Depend on LWP','depend_on_lwp','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08775','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',1,'employee_details','Employee Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08776','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',2,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCompleted\nCancelled',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,1,NULL),('FL08777','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',3,'employee','Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08778','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08779','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',5,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08780','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',6,'company','Company','company','Select','Link','link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08781','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',7,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08782','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',8,'start_date','Start Date','start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08783','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',9,'end_date','End Date','end_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08784','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',10,'kra_approver','Approver','kra_approver','Select','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL08785','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',11,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08786','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',12,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08787','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',13,'declare_completed','Declare Completed',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08788','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',14,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08789','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',15,'kra_template','Appraisal Template','kra_template','Link','Link','Appraisal Template',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select template from which you want to fetch KRA','White:FFF',NULL,NULL,NULL),('FL08790','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',16,'fetch_template','Fetch Template',NULL,'Button','Button','fetch_kra',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08791','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',17,'update','Update',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08792','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',18,'appraisal_details','Appraisal Goals','appraisal_details','Table','Table','Appraisal Goal',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08793','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',19,'calculate_total_score','Calculate Total Score',NULL,'Button','Button','calculate_total',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08794','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',20,'total_score','Total Score (Out of 5)','total_score','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08795','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Department','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08796','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Department','fields','DocType',2,'department_name','Department','department_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08797','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08798','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',2,'employee','Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08799','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',3,'employee_name','Employee Name',NULL,'Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08800','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',4,'leave_type','Leave Type','leave_type','Select','Link','link:Leave Type',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08801','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',5,'posting_date','Posting Date','date','Date','Date',NULL,0,0,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Today',NULL,'White:FFF',NULL,NULL,NULL),('FL08802','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',6,'fiscal_year','Fiscal Year','fiscal_year','Select','Data','link:Fiscal Year',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08803','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',7,'description','Description','reason','Small Text','Small Text',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08804','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',8,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08805','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',9,'carry_forward','Carry Forward',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08806','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',10,'carry_forwarded_leaves','Carry Forwarded Leaves',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08807','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',11,'new_leaves_allocated','New Leaves Allocated',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08808','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',12,'total_leaves_allocated','Total Leaves Allocated',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08809','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',13,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08810','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',14,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL08811','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',1,'company_name','Company','company_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08812','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',2,'designation','Designation','designation','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08813','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',3,'salary','Salary','salary','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08814','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',4,'address','Address','address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08815','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',5,'contact','Contact','contact','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08816','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',6,'total_experience','Total Experience','total_experience','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08817','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employment Type','fields','DocType',1,'employee_type_name','Employment Type','employee_type_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08818','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employment Type','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08819','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Salary Slip Earning','fields','DocType',1,'e_type','Type','e_type','Link','Data','Earning Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08820','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Salary Slip Earning','fields','DocType',2,'e_amount','Amount','e_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08821','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Salary Slip Earning','fields','DocType',3,'e_modified_amount','Modified Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08822','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Salary Slip Earning','fields','DocType',4,'e_depends_on_lwp','Depends on LWP',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08823','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Template Goal','fields','DocType',1,'kra','KRA','kra','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,'Key Performance Area','White:FFF',NULL,NULL,NULL),('FL08824','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Template Goal','fields','DocType',2,'per_weightage','Weightage (%)','per_weightage','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08825','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08826','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',2,'leave_type_name','Leave Type Name','leave_type_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08827','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',3,'max_days_allowed','Max Days Leave Allowed','max_days_allowed','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08828','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',4,'is_carry_forward','Is Carry Forward','is_carry_forward','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08829','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',5,'is_encash','Is Encash','is_encash','Check','Check',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08830','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',6,'is_lwp','Is LWP',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08831','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',1,'kra','KRA','kra','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Key Responsibility Area','White:FFF',NULL,NULL,NULL),('FL08832','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',2,'per_weightage','Weightage (%)','per_weightage','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08833','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',3,'target_achieved','Target Achieved','target_achieved','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08834','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',4,'score','Score (0-5)','score','Currency','Select','\n0\n1\n2\n3\n4\n5',NULL,NULL,NULL,NULL,NULL,1,1,'Client',NULL,0,'60px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08835','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',5,'score_earned','Score Earned','score_earned','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08918','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',1,'branch','Branch','branch','Select','Select','link:Branch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08919','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',2,'department','Department','department','Select','Select','link:Department',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08920','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',3,'designation','Designation','designation','Select','Select','link:Designation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08921','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',4,'grade','Grade','grade','Select','Select','link:Grade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08922','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',5,'from_date','From Date','from_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08923','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',6,'to_date','To Date','to_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08924','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',1,'attendance_details','Attendance Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08925','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',2,'naming_series','Naming Series','naming_series','Select','Select','ATT',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08926','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',3,'employee','Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08927','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08928','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',5,'status','Status','status','Select','Select','\nPresent\nAbsent\nHalf Day',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08929','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',6,'leave_type','Leave Type','leave_type','Link','Link','Leave Type',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08930','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',7,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08931','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',8,'att_date','Attendance Date','att_date','Date','Date',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08932','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',9,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08933','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',10,'company','Company','company','Select','Link','link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08934','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',11,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL08935','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',12,'amended_from','Amended From',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08936','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',1,'download_template','Download Template',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.\nFill data in the template. Save the template in CSV format.\nAll attendance dates inbetween \'Attendance From Date\' and \'Attendance To Date\' will come in the template with employees list.','White:FFF',NULL,NULL,NULL),('FL08937','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',2,'att_fr_date','Attendance From Date','attenadnce_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Selected Attendance date will comes in the attendance template.','White:FFF',NULL,NULL,NULL),('FL08938','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',3,'get_template','Get Template',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08939','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',4,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08940','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',5,'att_to_date','Attendance To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.','White:FFF',NULL,NULL,NULL),('FL08941','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',6,'upload_attendance_data','Upload Attendance Data',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".\nSelect the date format as attendance date format in CSV file.\nClick on \"Import\".','White:FFF',NULL,NULL,NULL),('FL08942','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',7,'import_date_format','Import Date Format ',NULL,'Select',NULL,'yyyy-mm-dd\nmm/dd/yyyy\nmm/dd/yy\ndd-mm-yyyy\ndd/mm/yyyy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08943','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',8,'overwrite','Overwrite',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08944','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',9,'import','Import',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08945','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',10,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08946','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',11,'import_log','Import Log',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08947','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',12,'import_log1','Import Log1',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08948','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',1,'institute','Institute / Conducted By','institute','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08949','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',2,'nature_of_training','Program / Seminar Title','nature_of_training','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08950','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',3,'duration','Duration','duration','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08951','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',4,'loc','Location','loc','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08952','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',5,'certificate','Certificate','certificate','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08953','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08954','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',2,'earning_name','Name','earning_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08955','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08956','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',4,'taxable','Taxable','taxable','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08957','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',5,'exemption_limit','Exemption Limit','exemption_limit','Currency','Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.taxable==\'No\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08974','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Expense Claim Type','fields','DocType',1,'expense_type','Expense Claim Type','expense_type','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08975','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Expense Claim Type','fields','DocType',2,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08976','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',1,'feed_type','Feed Type',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08977','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',2,'doc_type','Doc Type',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08978','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',3,'doc_name','Doc Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08979','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',4,'subject','Subject',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08980','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',5,'color','Color',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08981','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',6,'full_name','Full Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08982','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Receiver','fields','DocType',1,'customer_name','Customer Name','customer_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08983','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Receiver','fields','DocType',2,'receiver_name','Receiver Name','receiver_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'350px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08984','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Receiver','fields','DocType',3,'mobile_no','Mobile No','mobile_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09022','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09023','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',2,'sender_name','Sender Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09024','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',3,'sent_on','Sent On',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09025','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',4,'receiver_list','Receiver List',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09026','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',5,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09027','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',6,'no_of_requested_sms','No of Requested SMS',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09028','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',7,'no_of_sent_sms','No of Sent SMS',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09029','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',8,'message','Message',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09030','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Reposting Tool','fields','DocType',1,'recalculate_mar_&_actual_qty','Recalculate MAR & Actual Qty',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09031','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Reposting Tool','fields','DocType',2,'repost_bin','Repost Bin',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09032','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Reposting Tool','fields','DocType',3,'repost_account_balances','Repost Account Balances',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09042','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',1,'table_field','Table Field','table_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09043','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',2,'account','Account','account','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09044','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',3,'debit','Debit','debit','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09045','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',4,'credit','Credit','credit','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09046','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',5,'cost_center','Cost Center','cost_center','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09047','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',6,'against','Against','against','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09048','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',7,'remarks','Remarks','remarks','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09049','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',8,'voucher_type','Voucher Type','voucher_type','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09050','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',9,'voucher_no','Voucher No','voucher_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09051','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',10,'posting_date','Posting Date','posting_date','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,NULL,NULL),('FL09052','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',11,'transaction_date','Transaction Date','transaction_date','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is made in system.',NULL,NULL,NULL,NULL),('FL09053','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',12,'aging_date','Aging Date','aging_date','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09054','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',13,'fiscal_year','Fiscal Year','fiscal_year','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09055','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',14,'against_voucher','Against Voucher','against_voucher','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09056','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',15,'against_voucher_type','Against Voucher Type','against_voucher_type','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09057','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',16,'company','Company','company','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09058','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',17,'is_opening','Is Opening','is_opening','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09059','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',18,'is_advance','Is Advance','is_advance','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09060','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper','fields','DocType',1,'doc_type','Doc Type','doc_type','Data','Link',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09061','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper','fields','DocType',2,'fields','Fields','fields','Table','Table','GL Mapper Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09062','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Answer','fields','DocType',1,'question','Question',NULL,'Link',NULL,'Question',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09063','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Answer','fields','DocType',2,'answer','Answer','question','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09064','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Answer','fields','DocType',3,'points','Points',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09065','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Answer','fields','DocType',4,'_users_voted','Users Voted',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09096','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',1,'item_code','Item',NULL,'Link',NULL,'Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09097','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',2,'current_stock_uom','Current Stock UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09098','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',3,'new_stock_uom','New Stock UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09099','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',4,'update','Update',NULL,'Button',NULL,'update_stock_uom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09100','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',5,'conversion_factor','Conversion Factor',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09235','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'UOM Conversion Detail','fields','DocType',1,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09236','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'UOM Conversion Detail','fields','DocType',2,'conversion_factor','Conversion Factor','conversion_factor','Float','Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09290','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL09291','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',2,'serial_no','Serial No',NULL,'Text',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,0,NULL),('FL09292','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',3,'batch_no','Batch No','batch_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09293','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',4,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL09294','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',5,'warehouse_type','Warehouse Type','warehouse_type','Select','Select','link:Warehouse Type',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09295','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',6,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL09296','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',7,'posting_time','Posting Time','posting_time','Time','Time',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,0,NULL),('FL09297','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',8,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,'The date at which current entry is made in system.',NULL,NULL,1,NULL),('FL09298','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',9,'voucher_type','Voucher Type','voucher_type','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09299','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',10,'voucher_no','Voucher No','voucher_no','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09300','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',11,'voucher_detail_no','Voucher Detail No','voucher_detail_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09301','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',12,'actual_qty','Actual Quantity','actual_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL09302','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',13,'incoming_rate','Incoming Rate','incoming_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09303','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',14,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09304','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',15,'bin_aqat','Bin Actual Qty After Transaction','bin_aqat','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09305','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',16,'ma_rate','Moving Average Rate','ma_rate','Currency','Currency',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09306','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',17,'fcfs_rate','FIFO Rate','fcfs_rate','Currency','Currency',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09307','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',18,'valuation_rate','Valuation Rate','valuation_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09308','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',19,'stock_value','Stock Value','stock_value','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09309','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',20,'fcfs_stack','FIFO Stack','fcfs_stack','Text','Text',NULL,0,1,1,1,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL09310','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',21,'company','Company','company','Select','Data','link:Company',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09311','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',22,'fiscal_year','Fiscal Year','fiscal_year','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09312','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',23,'is_cancelled','Is Cancelled','is_cancelled','Select','Select','\nYes\nNo',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL09313','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',24,'is_stock_entry','Is Stock Entry','is_stock_entry','Select','Select','\nYes\nNo',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL09314','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','Administrator',0,'Item Customer Detail','fields','DocType',1,'customer_name','Customer Name','price_list_name','Link','Select','Customer',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,1,NULL),('FL09315','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','Administrator',0,'Item Customer Detail','fields','DocType',2,'ref_code','Ref Code','ref_rate','Data','Currency',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'120px',NULL,NULL,NULL,NULL,1,NULL),('FL09316','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','Administrator',0,'Landed Cost Master Detail','fields','DocType',1,'account_head','Account Head','account_head','Link','Data','Account',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09317','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','Administrator',0,'Landed Cost Master Detail','fields','DocType',2,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09361','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09362','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',2,'batch_id','Batch ID','batch_id','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09363','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09364','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',4,'start_date','Batch Started Date','start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09365','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',5,'finished_date','Batch Finished Date','finished_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09366','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',6,'expiry_date','Expiry Date','expiry_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09367','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',7,'item','Item','item','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09442','2012-05-08 11:38:29','2012-05-08 11:38:29','Administrator','wasim@webnotestech.com',0,'Landed Cost Purchase Receipt','fields','DocType',1,'purchase_receipt','Purchase Receipt','purchase_receipt_no','Link','Link','Purchase Receipt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'220px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09443','2012-05-08 11:38:29','2012-05-08 11:38:29','Administrator','wasim@webnotestech.com',0,'Landed Cost Purchase Receipt','fields','DocType',2,'select_pr','Select PR','include_in_landed_cost','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09545','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Quality Inspection Parameter','fields','DocType',1,'specification','Parameter','specification','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,0,NULL),('FL09546','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Quality Inspection Parameter','fields','DocType',2,'value','Acceptance Criteria','value','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09547','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Price','fields','DocType',1,'price_list_name','Price List Name','price_list_name','Select','Select','link:Price List',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09548','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Price','fields','DocType',2,'ref_rate','Ref Rate','ref_rate','Currency','Currency',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09549','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Price','fields','DocType',3,'ref_currency','Currency','ref_currency','Select','Select','link:Currency',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09550','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',1,'s_warehouse','Source Warehouse','s_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09551','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',2,'t_warehouse','Target Warehouse','t_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09552','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',3,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09553','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',4,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09554','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',5,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09555','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',6,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09556','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',7,'incoming_rate','Incoming Rate','incoming_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09557','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',8,'amount','Amount','amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09558','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',9,'serial_no','Serial No','serial_no','Text','Text',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09559','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',10,'batch_no','Batch No','batch_no','Link','Link','Batch',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09560','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',11,'reqd_qty','Reqd Qty','reqd_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL09561','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',12,'actual_qty','Actual Qty (at source)','actual_qty','Read Only','Read Only',NULL,1,NULL,1,NULL,0,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09562','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',13,'conversion_factor','Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09563','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',14,'transfer_qty','Stock Qty','transfer_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09564','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',15,'stock_uom','Stock UOM','stock_uom','Link','Link','UOM',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL09565','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',16,'bom_no','BOM No.',NULL,'Link',NULL,'BOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'BOM No. for a Finished Good Item',NULL,NULL,NULL,NULL),('FL09566','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',17,'fg_item','FG Item','fg_item','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09584','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Tax','fields','DocType',1,'tax_type','Tax','tax_type','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09585','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Tax','fields','DocType',2,'tax_rate','Tax Rate','tax_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09586','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','wasim@webnotestech.com',0,'Landed Cost Item','fields','DocType',1,'account_head','Account Head','account_head','Link','Link','Account',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09587','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','wasim@webnotestech.com',0,'Landed Cost Item','fields','DocType',2,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09588','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','wasim@webnotestech.com',0,'Landed Cost Item','fields','DocType',3,'amount','Amount','amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09675','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',1,'item_code','Item Code',NULL,'Link',NULL,'Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09676','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',2,'item_name','Item Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09677','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',3,'qty','Quantity',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09678','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',4,'stock_uom','UOM',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09679','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',5,'net_weight','Net Weight',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09680','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',6,'weight_uom','Weight UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09681','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',7,'page_break','Page Break',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09682','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Item Supplier','fields','DocType',1,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09683','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Item Supplier','fields','DocType',2,'supplier_part_no','Supplier Part Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09690','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09691','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',2,'account','Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09692','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',3,'voucher_type','Voucher Type',NULL,'Select',NULL,'Sales Invoice\nPurchase Invoice\nJournal Voucher',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09693','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',4,'voucher_no','Voucher No',NULL,'Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09694','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',5,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09695','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',6,'total_amount','Total Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09696','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',7,'pending_amt_to_reconcile','Pending Amt To Reconcile',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09697','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',8,'payment_entries','Payment Entries',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09698','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',9,'column_break2','
    Filter payment entries based on date:
    ',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09699','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',10,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09700','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',11,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09701','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',12,'column_break3','
    Filter payment entries based on amount:
    ',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09702','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',13,'amt_greater_than','Amount >=',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09703','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',14,'amt_less_than','Amount <=',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09704','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',15,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09705','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',16,'pull_payment_entries','Pull Payment Entries',NULL,'Button',NULL,'get_payment_entries',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09706','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',17,'ir_payment_details','Payment Entries',NULL,'Table',NULL,'Payment to Invoice Matching Tool Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09707','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',18,'reconcile_html','Reconcile HTML',NULL,'HTML',NULL,'
    Select Payment Voucher and Amount to Reconcile in the above table and then click Reconcile button
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09708','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',19,'reconcile','Reconcile',NULL,'Button',NULL,'reconcile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09731','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',1,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09732','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',2,'from_date','From Date','from_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09733','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',3,'to_date','To Date','to_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09734','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',4,'tds_category','TDS Category','tds_category','Link','Link','TDS Category',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL09735','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',5,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09736','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',6,'naming_series','Naming Series','naming_series','Select','Select','TDSP',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Series Setup',NULL,NULL,NULL,NULL),('FL09737','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',7,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09738','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',8,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09739','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',9,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL09740','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',10,'section_break0',NULL,NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09741','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',11,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09742','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',12,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL09743','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',13,'registration_details','Registration Details','registration_details','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09744','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',14,'remarks','Remark','remarks','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09745','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',15,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09746','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',16,'html0',NULL,NULL,'HTML','HTML','Please Update Cheque No., BSR Code, Challan ID no. after actual payment. Unless you do not get it in Form 16A.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09747','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',17,'cheque_no','Cheque / DD No.','cheque_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09748','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',18,'bsr_code','BSR Code','bsr_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09749','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',19,'date_of_receipt','Date of Receipt','date_of_receipt','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09750','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',20,'challan_id','Challan ID','challan_id','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09751','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',21,'update','Update',NULL,'Button','Button','update_ack_details',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09752','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',22,'section_break1',NULL,NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09753','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',23,'get_tds_list','Get TDS List',NULL,'Button','Button','get_tds_list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09754','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',24,'tds_payment_details','TDS Payment Details','tds_payment_details','Table','Table','TDS Payment Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09755','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',25,'section_break2',NULL,NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09756','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',26,'total_tds','Total TDS','total_tds','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09757','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',27,'make_bank_voucher','Make Bank Voucher',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09767','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',1,'naming_series','Naming Series',NULL,'Select',NULL,'\nLA',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09768','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',2,'lessee_info','Lessee Info.',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09769','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',3,'account','Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09770','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',4,'lessee_father','Lessee Father',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09771','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',5,'lessee_nic','Lessee NIC',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09772','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',6,'lessee_contact','Lessee Contact',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09773','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',7,'lessee_address','Lessee Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09774','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',8,'vehicle_info','Vehicle Info.',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09775','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',9,'model_no','Model No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09776','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',10,'engine_no','Engine No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09777','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',11,'chassis_no','Chassis No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09778','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',12,'invoice_and_payment_info','Invoice and Payment Info.',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09779','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',13,'invoice','Invoice',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09780','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',14,'invoice_amount','Invoice Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09781','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',15,'down_payment','Down Payment',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09782','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',16,'start_date','Start Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09783','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',17,'no_of_installments','No of Installments',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09784','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',18,'installment_amount','Installment Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09785','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',19,'generate','Generate',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09786','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',20,'installments','Installments',NULL,'Table',NULL,'Lease Installment',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09787','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',21,'installment_reciept','Installment Reciept',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09788','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',1,'amount','Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09789','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',2,'due_date','Due Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09790','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',3,'cheque_number','Cheque Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09791','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',4,'cheque_date','Cheque Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09792','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',5,'jv_number','JV Number',NULL,'Link',NULL,'Journal Voucher',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09819','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',1,'selected','Select',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'60px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09820','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',2,'voucher_no','Voucher No',NULL,'Link',NULL,'Journal Voucher',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09821','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',3,'amt_due','Amt Due',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09822','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',4,'amt_to_be_reconciled','Amt to be reconciled',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09823','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',5,'posting_date','Posting Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09824','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',6,'total_amt','Total Amt',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09825','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',7,'against_account','Against Account',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09826','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',8,'remarks','Remarks',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09827','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',9,'voucher_detail_no','Voucher Detail No',NULL,'Data',NULL,NULL,NULL,1,1,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL09839','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',1,'voucher_no','Voucher No','voucher_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09840','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',2,'party_name','Party Name','party_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09841','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',3,'amount_paid','Amount paid / credited','amount_paid','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09842','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',4,'date_of_payment','Date of payment / credit','date_of_payment','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09843','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',5,'tds_amount','TDS','tds_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09844','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',6,'cess_on_tds','Cess on TDS','cess_on_tds','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09845','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',7,'total_tax_amount','Total Tax Amount','total_tax_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09846','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',1,'voucher_id','Voucher ID','voucher_id','Link','Link','Journal Voucher',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09847','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',2,'against_account','Against Account','against_account','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09848','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',3,'posting_date','Posting Date','posting_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,NULL,NULL),('FL09849','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',4,'cheque_number','Cheque Number','cheque_number','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09850','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',5,'cheque_date','Cheque Date','cheque_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09851','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',6,'debit','Debit','debit','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09852','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',7,'credit','Credit','credit','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09853','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',8,'clearance_date','Clearance Date','clearance_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09854','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',1,'invoice_no','Invoice No',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09855','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',2,'invoice_date','Invoice Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09856','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',3,'territory','Territory',NULL,'Link',NULL,'Territory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09857','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',4,'net_total','Net Total',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09858','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',5,'grand_total','Grand Total',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09859','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Budget Detail','fields','DocType',1,'account','Account','account','Link','Link','Account',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09860','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Budget Detail','fields','DocType',2,'budget_allocated','Budget Allocated','budget_allocated','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09861','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Budget Detail','fields','DocType',3,'actual','Actual','actual','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09862','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Budget Detail','fields','DocType',4,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09863','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',1,'account','Account',NULL,'Link',NULL,'Account',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09864','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',2,'period','Period','period','Link','Link','Period',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09865','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',3,'opening','Opening','opening','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09866','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',4,'debit','Debit','debit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09867','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',5,'credit','Credit','credit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09868','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',6,'balance','Balance','balance','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09869','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',7,'fiscal_year','Fiscal Year','fiscal_year','Link','Link','Fiscal Year',0,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09870','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',8,'start_date','Start Date','start_date','Date','Date',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09871','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',9,'end_date','End Date','end_date','Date','Date',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09988','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',1,'select_date_range','Select Date Range',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09989','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',2,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09990','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',3,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09991','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',4,'select_ledgers','Select ledgers',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09992','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',5,'ledger_details','Multi Ledger Report Details',NULL,'Table',NULL,'Multi Ledger Report Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09993','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',6,'export_report','Export Report',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09994','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Category Account','fields','DocType',1,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09995','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Category Account','fields','DocType',2,'account_head','Account Head','account_head','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10080','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Rate Detail','fields','DocType',1,'category','Category','category','Link','Link','TDS Category',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10081','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Rate Detail','fields','DocType',2,'slab_from','Slab From','slab_from','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10082','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Rate Detail','fields','DocType',3,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10083','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Rate Detail','fields','DocType',4,'rate_without_pan','Rate without PAN','rate_without_pan','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10084','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10085','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10086','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',3,'from_date','From Date','from_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10087','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',4,'to_date','To Date','to_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10088','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',5,'tds_category','TDS Category','tds_category','Link','Link','TDS Category',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10089','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',6,'party_name','Party Name','party_name','Link','Link','Account',NULL,0,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10090','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',7,'party_address','Address','party_address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10091','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',8,'pan_number','PAN No','pan_number','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10092','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',9,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10093','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',10,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10094','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',11,'company','Company ','company','Link','Link','Company',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10095','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',12,'company_address','Company Address','company_address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10096','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',13,'registration_details','Registration Details','registration_details','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10097','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',14,'return_details','Return Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10098','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',15,'get_return_details','Get Return Details',NULL,'Button','Button','get_return_ack_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10099','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',16,'form_16A_ack_details','Form 16A Ack Details','form_16A_ack_details','Table','Table','Form 16A Ack Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10100','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',17,'payment_details','Payment Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10101','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',18,'get_tds','Get TDS',NULL,'Button','Button','get_tds',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10102','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',19,'form_16A_tax_details','Tax Details','form_16A_tax_details','Table','Table','Form 16A Tax Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10103','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',20,'total_amount','Total Amount','total_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10104','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',21,'in_words','In Words',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10105','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',22,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10106','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',23,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10107','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',24,'place','Place','place','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10108','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',25,'dt','Date','dt','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10109','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',26,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10110','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',27,'full_name','Full Name','full_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10111','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',28,'designation','Designation','designation','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10112','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',1,'head_html','Head HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10113','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',2,'bank_account','Bank Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select account head of the bank where cheque was deposited.',NULL,NULL,NULL,NULL),('FL10114','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',3,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10115','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',4,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10116','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',5,'get_non_reconciled_entries','Get Non Reconciled Entries',NULL,'Button',NULL,'get_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10117','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',6,'entries','Entries',NULL,'Table',NULL,'Bank Reconciliation Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10118','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',7,'update_clearance_date','Update Clearance Date',NULL,'Button',NULL,'update_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10119','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',8,'total_amount','Total Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10124','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Multi Ledger Report Detail','fields','DocType',1,'account','Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10205','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',1,'journal_voucher','Journal Voucher','journal_voucher','Link','Link','Journal Voucher',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10206','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',2,'jv_detail_no','Journal Voucher Detail No','jv_detail_no','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'80px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10207','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',3,'advance_amount','Advance Amount','advance_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10208','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',4,'allocated_amount','Allocated Amount','allocated_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10209','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',5,'tds_amount','TDS Amount','tds_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'80px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10210','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',6,'tds_allocated','TDS Allocated','tds_allocated','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'80px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10211','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',7,'remarks','Remarks','remarks','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10226','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','harshada@webnotestech.com',0,'Mode of Payment','fields','DocType',1,'mode_of_payment','Mode of Payment','mode_of_payment','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10227','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10228','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',2,'naming_series','Series',NULL,'Select',NULL,'\nC-FORM/',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10229','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',3,'c_form_no','C-Form No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10230','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',4,'received_date','Received Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10231','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',5,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10232','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10233','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',7,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10234','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',8,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10235','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',9,'quarter','Quarter',NULL,'Select',NULL,'\nI\nII\nIII\nIV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10236','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',10,'total_amount','Total Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10237','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',11,'state','State',NULL,'Select',NULL,'link:State\ncountry=\'India\'',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10238','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',12,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10239','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',13,'invoice_details','Invoice Details',NULL,'Table',NULL,'C-Form Invoice Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10240','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',14,'total_invoiced_amount','Total Invoiced Amount',NULL,'Currency',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10241','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',15,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10242','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Category','fields','DocType',1,'module','Module','module','Link','Link','Module Def',0,0,0,0,NULL,NULL,NULL,NULL,NULL,0,NULL,'Accounts',NULL,NULL,NULL,0,NULL),('FL10243','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Category','fields','DocType',2,'note_html','Note HTML',NULL,'HTML','HTML','Note: You must first create the Accounts from the Chart of Accounts and then link it to this Category.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10244','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Category','fields','DocType',3,'category_name','Category Name','category_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10245','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Category','fields','DocType',4,'tds_sh_edu_cess_account','TDS Account Detail','tds_sh_edu_cess_account','Table','Table','TDS Category Account',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10246','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',1,'journal_voucher','Journal Voucher','journal_voucher','Link','Link','Journal Voucher',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10247','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',2,'jv_detail_no','Journal Voucher Detail No','jv_detail_no','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10248','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',3,'advance_amount','Advance amount','advance_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10249','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',4,'allocated_amount','Allocated amount','allocated_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10250','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',5,'remarks','Remarks','remarks','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10251','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',1,'amount_paid','Amount paid / credited','amount_paid','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10252','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',2,'date_of_payment','Date of payment / credit','date_of_payment','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10253','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',3,'tds_main','TDS(Main)','tds_main','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10254','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',4,'surcharge','Surcharge','surcharge','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10255','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',5,'cess_on_tds','Cess on TDS','cess_on_tds','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10256','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',6,'total_tax_deposited','Total Tax Deposited','total_tax_deposited','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10257','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',7,'cheque_no','Cheque / DD No.','cheque_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10258','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',8,'bsr_code','BSR Code','bsr_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10259','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',9,'tax_deposited_date','Tax Deposited Date','tax_deposited_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10260','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',10,'challan_no','Challan No.','challan_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10265','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Rate Chart','fields','DocType',1,'module','Module','module','Link','Link','Module Def',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,'Accounts',NULL,NULL,NULL,NULL,NULL),('FL10266','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Rate Chart','fields','DocType',2,'applicable_from','Applicable From','applicable_from','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10267','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Rate Chart','fields','DocType',3,'rate_chart_detail','Rate Chart Detail','rate_chart_detail','Table','Table','TDS Rate Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10271','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Ack Detail','fields','DocType',1,'quarter','Quarter','quarter','Select','Select','\nApr-Jun\nJul-Sept\nOct-Dec\nJan-Mar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10272','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Ack Detail','fields','DocType',2,'ack_no','Acknowledgement No.','ack_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10273','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',1,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10274','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',2,'quarter','Quarter','quarter','Select','Select','\nApr-Jun\nJul-Sept\nOct-Dec\nJan-Mar',NULL,NULL,NULL,NULL,1,NULL,0,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10275','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',3,'tds_category','TDS Category','tds_category','Select','Select','link:TDS Category',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10276','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',4,'acknowledgement_no','Acknowledgement No','acknowledgement_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10277','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',5,'date_of_receipt','Date of Receipt','date_of_receipt','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10278','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',1,'account','Account','account','Link','Link','Account',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'250px',NULL,NULL,NULL,NULL,1,NULL),('FL10279','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',2,'debit','Debit','debit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10280','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',3,'credit','Credit','credit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10281','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',4,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,1,NULL),('FL10282','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',5,'balance','Account Balance','balance','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10283','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',6,'against_voucher','Against Payable','against_voucher','Link','Link','Purchase Invoice',1,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10284','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',7,'against_invoice','Against Receivable','against_invoice','Link','Link','Sales Invoice',1,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10285','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',8,'against_jv','Against JV','against_jv','Link','Link','Journal Voucher',1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10286','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',9,'is_advance','Is Advance','is_advance','Select','Select','No\nYes',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10287','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',10,'against_account','Against Account','against_account','Text','Text',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10332','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',1,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL10333','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',2,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is made in system.',NULL,NULL,NULL,NULL),('FL10334','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',3,'aging_date','Aging Date','aging_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10335','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',4,'account','Account','account','Link','Link','Account',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10336','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',5,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10337','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',6,'debit','Debit Amt','debit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10338','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',7,'credit','Credit Amt','credit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10339','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',8,'against','Against','against','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10340','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',9,'against_voucher','Against Voucher','against_voucher','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10341','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',10,'against_voucher_type','Against Voucher Type','against_voucher_type','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10342','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',11,'voucher_type','Voucher Type','voucher_type','Select','Select','Journal Voucher\nSales Invoice\nPurchase Invoice',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10343','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',12,'voucher_no','Voucher No','voucher_no','Data','Data',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10344','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',13,'remarks','Remarks','remarks','Text','Text',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10345','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',14,'is_cancelled','Is Cancelled','is_cancelled','Select','Select','No\nYes',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10346','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',15,'is_opening','Is Opening','is_opening','Select','Select','No\nYes',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10347','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',16,'is_advance','Is Advance','is_advance','Select','Select','No\nYes',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10348','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',17,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10349','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',18,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10364','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',1,'act_start_time','Actual Start Time','act_start_time','Time','Time',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10365','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',2,'act_end_time','Actual End Time','act_end_time','Time','Time',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10366','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',3,'activity_type','Activity Type',NULL,'Link',NULL,'Activity Type',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10367','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',4,'other_details','Additional Info','other_details','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10368','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',5,'act_total_hrs','Total Hours (Actual)','act_total_hrs','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10369','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',6,'customer_name','Customer Name','customer_name','Link','Data','Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10370','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',7,'project_name','Project','project_name','Link','Link','Project',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL10371','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',8,'task_id','Task Id','task_id','Link','Link','Task',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL10372','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',9,'task_name','Task Name','task_name','Link','Link',NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10411','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity Update','fields','DocType',1,'update','Update','update','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10412','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity Update','fields','DocType',2,'hours','Hours','hours','Float','Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'e.g. 0.5, 2.5 etc','White:FFF',NULL,NULL,NULL),('FL10413','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',1,'project','Project','project','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10414','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',2,'activity_name','Activity Name','activity_name','Data','Data',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10415','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',3,'percent_complete','Percent Complete','percent_complete','Select','Select','0\n5\n10\n15\n20\n25\n30\n35\n40\n45\n50\n55\n60\n65\n70\n75\n80\n85\n90\n95\n100',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10416','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',4,'last_update','Last Update','last_update','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10417','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',5,'last_update_by','Last Update By','last_update_by','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10418','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',6,'updates','Updates',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10419','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',7,'updates_html','Updates HTML',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10420','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',8,'new_update','New Update','new_update','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10421','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',9,'hours','Hours','hours','Float','Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10422','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',10,'add','Add',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10423','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Milestone','fields','DocType',1,'milestone_date','Milestone Date','milestone_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10424','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Milestone','fields','DocType',2,'milestone','Milestone','milestone','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10425','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Milestone','fields','DocType',3,'status','Status','status','Select','Select','Pending\nCompleted',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10426','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Activity Type','fields','DocType',1,'activity_type','Activity Type',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10469','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',1,'schedule_date','Required Date','schedule_date','Date','Date',NULL,NULL,NULL,0,NULL,1,1,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10470','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL10471','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10472','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',4,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,0,NULL,0,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10473','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',5,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,0,NULL,'Client',NULL,0,'80px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL10474','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',6,'uom','Stock UOM','uom','Link','Link','UOM',NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,1,'70px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10475','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',7,'lead_time_date','Lead Time Date','lead_time_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10476','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',8,'item_name','Item Name','item_name','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL10477','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',9,'item_group','Item Group','item_group','Link','Link','Item Group',1,NULL,1,NULL,0,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10478','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',10,'brand','Brand','brand','Link','Link','Brand',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10479','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',11,'min_order_qty','Min Order Qty','min_order_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,1,'70px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10480','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',12,'projected_qty','Projected Qty','projected_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'70px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10481','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',13,'ordered_qty','Ordered Qty','ordered_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10482','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',14,'sales_order_no','Sales Order No',NULL,'Link',NULL,'Sales Order',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10483','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',15,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10484','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',1,'qa_inspection','QA Inspection',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10485','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10486','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',3,'naming_series','Naming Series',NULL,'Select',NULL,'\nQAI/11-12/',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10487','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',4,'inspection_type','Inspection Type','inspection_type','Select','Select','\nIncoming\nOutgoing\nIn Process',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10488','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',5,'report_date','Report Date','report_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10489','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',6,'item_code','Item Code','item_code','Link','Link','Item',1,0,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10490','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',7,'sample_size','Sample Size','sample_size','Currency','Currency',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10491','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',8,'description','Description','description','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,1,NULL),('FL10492','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',9,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10493','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',10,'item_serial_no','Item Serial No','item_serial_no','Link','Link','Serial No',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10494','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',11,'batch_no','Batch No','batch_no','Link','Link','Batch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10495','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',12,'purchase_receipt_no','Purchase Receipt No','purchase_receipt_no','Link','Link','Purchase Receipt',1,0,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10496','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',13,'delivery_note_no','Delivery Note No','delivery_note_no','Link','Link','Delivery Note',1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10497','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',14,'inspected_by','Inspected By','inspected_by','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10498','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',15,'remarks','Remarks','remarks','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10499','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',16,'verified_by','Verified By','verified_by','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10500','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',17,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10501','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',18,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10502','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',19,'specification_details','Specification Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10503','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',20,'get_specification_details','Get Specification Details',NULL,'Button',NULL,'get_item_specification_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10504','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',21,'qa_specification_details','Quality Inspection Readings','qa_specification_details','Table','Table','Quality Inspection Reading',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10604','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',1,'reference_name','Reference Name','reference_name','Data','Data',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10605','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',2,'bom_detail_no','BOM Detail No','bom_detail_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10606','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',3,'main_item_code','Item Code','main_item_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10607','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',4,'rm_item_code','Raw Material Item Code','rm_item_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10608','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',5,'required_qty','Required Qty','required_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10609','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',6,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10610','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',7,'amount','Amount','amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10611','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',8,'conversion_factor','Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10612','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',9,'stock_uom','Stock Uom','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10613','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',1,'specification','Parameter','specification','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10614','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',2,'value','Acceptance Criteria','value','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10615','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',3,'reading_1','Reading 1','reading_1','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10616','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',4,'reading_2','Reading 2','reading_2','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10617','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',5,'reading_3','Reading 3','reading_3','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10618','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',6,'reading_4','Reading 4','reading_4','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10619','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',7,'reading_5','Reading 5','reading_5','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10620','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',8,'reading_6','Reading 6','reading_6','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10621','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',9,'reading_7','Reading 7','reading_7','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10622','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',10,'reading_8','Reading 8','reading_8','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10623','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',11,'reading_9','Reading 9','reading_9','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10624','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',12,'reading_10','Reading 10','reading_10','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10625','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',13,'status','Status','status','Select','Select','Accepted\nRejected',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Accepted',NULL,NULL,NULL,NULL,NULL),('FL10674','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',1,'reference_name','Reference Name','reference_name','Data','Data',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10675','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',2,'bom_detail_no','BOM Detail No','bom_detail_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10676','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',3,'main_item_code','Item Code','main_item_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10677','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',4,'rm_item_code','Raw Material Item Code','rm_item_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10678','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',5,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10679','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',6,'required_qty','Required Qty','required_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10680','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',7,'consumed_qty','Consumed Qty','consumed_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10681','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',8,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10682','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',9,'conversion_factor','Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10683','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',10,'amount','Amount','amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10684','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',11,'stock_uom','Stock Uom','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10685','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',12,'current_stock','Current Stock','current_stock','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10752','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10753','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10754','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',3,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10755','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',4,'start_date','Start Date','start_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10756','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',5,'end_date','End Date','end_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10757','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',6,'periodicity','Periodicity','periodicity','Select','Select','\nWeekly\nMonthly\nQuarterly\nHalf Yearly\nYearly\nRandom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10758','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',7,'no_of_visits','No of Visits','no_of_visits','Int','Int',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10759','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',8,'incharge_name','Incharge Name','incharge_name','Link','Link','Sales Person',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10760','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',9,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10761','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',10,'prevdoc_docname','Against Docname','prevdoc_docname','Data','Data',NULL,1,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL10762','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',1,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10763','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',2,'service_person','Service Person','service_person','Link','Link','Sales Person',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10764','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',3,'work_done','Work Done','work_done','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10765','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',4,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10766','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',5,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10767','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',6,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10768','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',7,'prevdoc_docname','Against Document No','prevdoc_docname','Data','Data',NULL,NULL,0,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10769','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',8,'prevdoc_detail_docname','Against Document Detail No','prevdoc_detail_docname','Data','Data',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10770','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',9,'prevdoc_doctype','Document Type','prevdoc_doctype','Data','Data',NULL,NULL,0,1,1,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10771','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Support Ticket Response','fields','DocType',1,'mail','Mail',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10772','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Support Ticket Response','fields','DocType',2,'from_email','From Email',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10773','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Support Ticket Response','fields','DocType',3,'content_type','Content Type',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10830','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10831','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10832','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',3,'scheduled_date','Scheduled Date','scheduled_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10833','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',4,'actual_date','Actual Date','actual_date','Date','Date',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10834','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',5,'incharge_name','Incharge Name','incharge_name','Link','Link','Sales Person',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10835','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',6,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,'160px',NULL,NULL,NULL,NULL,1,NULL),('FL10836','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',1,'rule_field','Field','rule_field','Select','Select','[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10837','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',2,'operator','Operator','operator','Select','Select','\nequal\nnot equal\ngreater than\ngreater than equal\nless than\nless than equal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10838','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',3,'value','Value','value','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10839','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',4,'comparing_field','Field from other forms','comparing_field','Select','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10840','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',5,'message','Message when Cond. False','message','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10841','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',6,'exception','Raise Exception','exception','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10842','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Supplier Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10843','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Supplier Type','fields','DocType',2,'supplier_type','Supplier Type','supplier_type','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10844','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Naming Series Options','fields','DocType',1,'doc_type','Doc Type','doc_type','Data','Data',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10845','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Naming Series Options','fields','DocType',2,'series_options','Series Options','series_options','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10879','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',1,'period_name','Period Name','period_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10880','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',2,'start_date','Start Date','start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10881','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',3,'end_date','End Date','end_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10882','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',4,'period_type','Period Type','period_type','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10883','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',5,'fiscal_year','Fiscal Year','fiscal_year','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10884','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',1,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10885','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',2,'transaction','Transaction','transaction','Select','Select','\nDelivery Note\nPurchase Invoice\nPurchase Order\nPurchase Receipt\nQuotation\nSales Invoice\nSales Order\nStock Entry\nExpense Claim\nAppraisal',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10886','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',3,'based_on','Based On','based_on','Select','Select','\nGrand Total\nAverage Discount\nCustomerwise Discount\nItemwise Discount\nTotal Claimed Amount\nNot Applicable',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10887','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',4,'master_name','Customer / Item Name','master_name','Link','Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10888','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',5,'system_role','Applicable To (Role)','system_role','Link','Link','Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10889','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',6,'system_user','Applicable To (User)','system_user','Link','Link','Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10890','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',7,'to_emp','Applicable To (Employee)','to_emp','Link','Link','Employee',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'This will be used for setting rule in HR module','White:FFF',NULL,NULL,NULL),('FL10891','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',8,'to_designation','Applicable To (Designation)','to_designation','Link','Link','Designation',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'This will be used for setting rule in HR module','White:FFF',NULL,NULL,NULL),('FL10892','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',9,'approving_role','Approving Role','approving_role','Link','Link','Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10893','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',10,'approving_user','Approving User','approving_user','Link','Link','Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10894','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',11,'value','Above Value','value','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,NULL,NULL),('FL10895','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',12,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10896','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Contact Control','fields','DocType',1,'header','Header',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10897','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Contact Control','fields','DocType',2,'customer_intro','Customer Intro',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10898','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Contact Control','fields','DocType',3,'supplier_intro','Supplier Intro',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10928','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Country','fields','DocType',1,'country_name','Country Name','country_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10932','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',1,'rule_definition','Rule Definition',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10933','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',2,'intro_html','Intro HTML',NULL,'HTML','HTML','Select form for which you want to define rules,set priority & status.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10934','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',3,'rule_name','Rule Name','rule_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10935','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',4,'rule_status','Rule Status','rule_status','Select','Select','\nActive\nInactive',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10936','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',5,'select_form','Select Form','select_form','Link','Link','DocType',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10937','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',6,'rule_priority','Rule Priority','rule_priority','Int','Int',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10938','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',7,'define_rule','Define Rule',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10939','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',8,'workflow_rule_details','Workflow Rule Details','workflow_rule_details','Table','Table','Workflow Rule Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10940','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',9,'extra_condition','Extra Condition','extra_condition','Code','Code',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10941','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',10,'action_detail','Action Detail',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10942','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',11,'action_html','Action html',NULL,'HTML','HTML','Specify actions to be taken when conditions hold satisfied',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10943','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',12,'workflow_action_details','Workflow Action Details','workflow_action_details','Table','Table','Workflow Action Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10944','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',13,'reject_html','Reject HTML',NULL,'HTML','HTML','If any condition holds false the following message will be displayed . If you wish to stop rule engine when condition holds false then set \'Raise Exception\' as \'Yes\' otherwise keep this field blank or \'No\'.',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10945','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',14,'message','Enter message','message','Text','Text',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10946','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',15,'raise_exception','Raise Exception','raise_exception','Select','Select','\nYes\nNo',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10976','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Warehouse Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10977','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Warehouse Type','fields','DocType',2,'warehouse_type','Warehouse Type','warehouse_type','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10978','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Action Detail','fields','DocType',1,'action_field','Field','action_field','Select','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10979','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Action Detail','fields','DocType',2,'action_value','Value','action_value','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11009','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'UOM','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11010','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'UOM','fields','DocType',2,'uom_details','UOM Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11011','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'UOM','fields','DocType',3,'uom_name','UOM Name','uom_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11012','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Target Detail','fields','DocType',1,'item_group','Item Group','item_group','Link','Link','Item Group',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11013','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Target Detail','fields','DocType',2,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11014','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Target Detail','fields','DocType',3,'target_qty','Target Qty','target_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11015','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Target Detail','fields','DocType',4,'target_amount','Target Amount','target_amount','Currency','Currency',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11084','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'State','fields','DocType',1,'state_name','State Name','state_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11085','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'State','fields','DocType',2,'country','Country','country','Select','Select','link:Country',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11122','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Print Heading','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11123','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Print Heading','fields','DocType',2,'print_heading','Print Heading','print_heading','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11124','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Print Heading','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11131','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Series Detail','fields','DocType',1,'series','Series','series','Read Only','Read Only',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11132','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Series Detail','fields','DocType',2,'remove','Remove','remove','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11133','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Parameter','fields','DocType',1,'parameter','Parameter',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11134','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Parameter','fields','DocType',2,'value','Value',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11135','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Brand','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11136','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Brand','fields','DocType',2,'brand','Brand Name','brand','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11137','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Brand','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11138','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Quotation Lost Reason','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11139','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Quotation Lost Reason','fields','DocType',2,'order_lost_reason','Quotation Lost Reason','order_lost_reason','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11140','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11141','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',2,'sms_gateway_url','SMS Gateway URL',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Eg. smsgateway.com/api/send_sms.cgi','White:FFF',NULL,NULL,NULL),('FL11142','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',3,'message_parameter','Message Parameter',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter url parameter for message','White:FFF',NULL,NULL,NULL),('FL11143','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',4,'receiver_parameter','Receiver Parameter',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter url parameter for receiver nos','White:FFF',NULL,NULL,NULL),('FL11144','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',5,'static_parameters','Static Parameters',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11145','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',6,'static_parameter_details','SMS Parameters',NULL,'Table',NULL,'SMS Parameter',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)','White:FFF',NULL,NULL,NULL),('FL11155','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'Market Segment','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11156','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'Market Segment','fields','DocType',2,'segment_name','Segment Name','segment_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11157','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'Market Segment','fields','DocType',3,'details','Details','details','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11209','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',1,'select_sales_orders','Select Sales Orders',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11210','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11211','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',3,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11212','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',4,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11213','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',5,'fg_item','FG Item',NULL,'Link',NULL,'Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11214','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11215','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',7,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11216','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',8,'company','Company',NULL,'Link',NULL,'Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11217','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',9,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11218','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',10,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11219','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',11,'get_sales_orders','Get Sales Orders',NULL,'Button',NULL,'get_open_sales_orders',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11220','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',12,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11221','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',13,'clear_so_table','Clear SO Table',NULL,'Button',NULL,'clear_so_table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11222','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',14,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11223','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',15,'pp_so_details','Production Plan Sales Orders',NULL,'Table',NULL,'Production Plan Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Sales Orders from which you want to create Production Orders. You can get sales orders based on above criteria.',NULL,NULL,NULL,NULL),('FL11224','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',16,'items','Items',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11225','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',17,'get_items_from_so','Get Items from SO',NULL,'Button',NULL,'get_items_from_so',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11226','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',18,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11227','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',19,'clear_item_table','Clear Item Table',NULL,'Button',NULL,'clear_item_table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11228','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',20,'section_break2',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11229','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',21,'pp_details','Production Plan Items',NULL,'Table',NULL,'Production Plan Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter items and planned qty for which you want to raise production orders or download raw materials for analysis. You can pull items (which are pending to deliver) from SO as well by adding SO in plan.',NULL,NULL,NULL,NULL),('FL11230','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',22,'consider_sa_items','Consider Sub Assemblies as Raw Material',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if stock is maintained and tracked for sub assembly items.','White:FFF',NULL,NULL,NULL),('FL11231','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',23,'section_break3',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11232','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',24,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11233','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',25,'raise_production_order','Raise Production Order',NULL,'Button',NULL,'raise_production_order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11234','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',26,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11235','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',27,'download_raw_material','Download Raw Material',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11236','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',1,'operation_no','Operation No','operation_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11237','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11238','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',3,'bom_no','BOM No','bom_no','Link','Link','BOM',1,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL11239','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',4,'qty','Qty','qty','Float','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11240','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',5,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11241','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',6,'rate','Rate',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11242','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',7,'amount','Amount','amount_as_per_mar','Float','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11243','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',8,'scrap','Scrap %','scrap','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11244','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',9,'description','Item Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11245','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',10,'qty_consumed_per_unit','Qty Consumed Per Unit','qty_consumed_per_unit','Float','Float',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11265','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',1,'operation_no','Operation No','operation_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11266','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',2,'opn_description','Opn Description','opn_description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11267','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',3,'workstation','Workstation','workstation','Link','Link','Workstation',NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11268','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',4,'hour_rate','Hour Rate','hour_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11269','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',5,'time_in_mins','Operation Time (mins)','time_in_mins','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11270','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',6,'operating_cost','Operating Cost','operating_cost','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11271','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11272','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',2,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11273','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',3,'qty','Qty','qty','Float','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11274','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',4,'rate','Rate','standard_rate','Float','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11275','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',5,'amount','Amount','amount_as_per_sr','Float','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11276','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',6,'stock_uom','Stock UOM','stock_uom','Link','Link','UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11277','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',7,'parent_bom','Parent BOM','parent_bom','Link','Link',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11278','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',8,'mat_detail_no','Mat Detail No',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11279','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',9,'qty_consumed_per_unit','Qty Consumed Per Unit',NULL,'Float',NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11280','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',1,'sales_order','Sales Order','prevdoc_docname','Link','Data','Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11281','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',2,'sales_order_date','Sales Order Date','document_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11282','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',3,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11283','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',4,'grand_total','Grand Total',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11284','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',5,'include_in_plan','Include In Plan','include_in_plan','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11285','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11286','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',2,'workstation_name','Workstation Name','workstation_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11287','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',3,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11288','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',4,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11289','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',5,'capacity','Capacity','capacity','Data','Data',NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11290','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',6,'capacity_units','Capacity Units','capacity_units','Select','Select','\nUnits/Shifts\nUnits/Hour',NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11291','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',7,'hour_rate_labour','Hour Rate Labour','hour_rate_labour','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11292','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',8,'over_heads','Over Heads',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11293','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',9,'hour_rate_electricity','Hour Rate Electricity','hour_rate_electricity','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11294','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',10,'hour_rate_consumable','Hour Rate Consumable','hour_rate_consumable','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11295','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',11,'hour_rate_rent','Hour Rate Rent','hour_rate_rent','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11296','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',12,'overhead','Overhead','overhead','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11297','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',13,'hour_rate_section_break','Hour Rate',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11298','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',14,'hour_rate','Hour Rate','hour_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11299','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',1,'sales_order','Sales Order','source_docname','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11300','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11301','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',3,'bom_no','BOM No','bom_no','Link','Link','BOM',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11302','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',4,'so_pending_qty','SO Pending Qty','prevdoc_reqd_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11303','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',5,'planned_qty','Planned Qty','planned_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11304','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',6,'stock_uom','UOM','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,'80px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11305','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',7,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11306','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',8,'parent_packing_item','Parent Packing Item','parent_item','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11307','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',9,'is_pro_created','Is PRO Created','pro_created','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11344','2012-05-08 11:38:47','2012-05-08 11:38:47','Administrator','Administrator',0,'Related Page','fields','DocType',1,'page','Page',NULL,'Link',NULL,'Page',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11384','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','fields','DocType',1,'dt','DocType','dt','Link','Link','DocType',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11385','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','fields','DocType',2,'script_type','Script Type','script_type','Select','Select','Client\nServer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,'White:FFF',NULL,NULL,NULL),('FL11386','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','fields','DocType',3,'script','Script','script','Code','Code','Script',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11477','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',1,'item_code','Item','item_code','Link','Link','Item',1,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11478','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL11479','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11480','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',4,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11481','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',5,'import_ref_rate','Ref Rate ',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11482','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',6,'discount_rate','Discount %',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11483','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',7,'import_rate','Rate ','import_rate','Currency','Currency',NULL,NULL,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11484','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',8,'import_amount','Amount','import_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11485','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',9,'purchase_ref_rate','Ref Rate *',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11486','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',10,'rate','Rate *(Default Curr.)','rate','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11487','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',11,'amount','Amount (Default Curr.)','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11488','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',12,'expense_head','Expense Head','expense_head','Link','Link','Account',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'120px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11489','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',13,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'120px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11490','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',14,'project_name','Project Name',NULL,'Link',NULL,'Project',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11491','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',15,'uom','UOM',NULL,'Link',NULL,'UOM',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11492','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',16,'brand','Brand','brand','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11493','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',17,'item_group','Item Group','item_group','Link','Link','Item Group',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11494','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',18,'purchase_order','Pur Order','purchase_order','Link','Link','Purchase Order',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11495','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',19,'po_detail','Purchase Order Item','po_detail','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11496','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',20,'purchase_receipt','Pur Receipt','purchase_receipt','Link','Link','Purchase Receipt',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11497','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',21,'pr_detail','PR Detail','pr_detail','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11498','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',22,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges',NULL,NULL,NULL,NULL),('FL11499','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',23,'page_break','Page Break',NULL,'Check',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11500','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL11501','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL11502','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11503','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',4,'received_qty','Recd Quantity','received_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11504','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',5,'qty','Accepted Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11505','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',6,'rejected_qty','Rejected Quantity','rejected_qty','Currency','Currency',NULL,0,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL11506','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',7,'import_ref_rate','Ref Rate ',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11507','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',8,'discount_rate','Discount %',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11508','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',9,'import_rate','Rate','import_rate','Currency','Currency',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL11509','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',10,'import_amount','Amount','import_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11510','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',11,'purchase_ref_rate','Ref Rate *',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11511','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',12,'purchase_rate','Rate *(Default Curr.)','purchase_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL11512','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',13,'amount','Amount (Default Curr.)','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11513','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',14,'warehouse','Accepted Warehouse','warehouse','Link','Link','Warehouse',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11514','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',15,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11515','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',16,'conversion_factor','Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11516','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',17,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11517','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',18,'serial_no','Serial No','serial_no','Text','Text',NULL,NULL,NULL,0,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11518','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',19,'rejected_serial_no','Rejected Serial No',NULL,'Text',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11519','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',20,'batch_no','Batch No','batch_no','Link','Link','Batch',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11520','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',21,'rejected_warehouse','Rejected Warehouse','rejected_warehouse','Link','Link','Warehouse',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11521','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',22,'schedule_date','Schedule date','schedule_date','Date','Date',NULL,NULL,NULL,1,0,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11522','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',23,'project_name','Project Name',NULL,'Link',NULL,'Project',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11523','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',24,'qa_no','QA No','qa_no','Link','Link','Quality Inspection',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11524','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',25,'brand','Brand','brand','Link','Link','Brand',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11525','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',26,'item_group','Item Group','item_group','Link','Link','Item Group',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11526','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',27,'stock_qty','Stock Qty','stock_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11527','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',28,'prevdoc_doctype','Prevdoc Doctype','prevdoc_doctype','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11528','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',29,'prevdoc_docname','PO No','prevdoc_docname','Link','Link','Purchase Order',1,0,1,NULL,0,0,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL11529','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',30,'prevdoc_date','PO Date','prevdoc_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11530','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',31,'rm_supp_cost','Raw Materials Supplied Cost','rm_supp_cost','Currency','Currency',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,2,'150px',NULL,NULL,NULL,NULL,0,NULL),('FL11531','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',32,'item_tax_amount','Item Tax Amount','item_tax_amount','Currency','Currency',NULL,1,1,1,NULL,0,1,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11532','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',33,'prevdoc_detail_docname','Purchase Order Item No','prevdoc_detail_docname','Data','Data',NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL11533','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',34,'billed_qty','Billed Quantity','billed_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11534','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',35,'valuation_rate','Valuation Rate','valuation_rate','Currency','Currency',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'80px',NULL,NULL,'White:FFF',NULL,0,NULL),('FL11535','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',36,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges','White:FFF',NULL,0,NULL),('FL11536','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',37,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11537','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',1,'criteria_name','Criteria Name','criteria_name','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11538','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',2,'disabled','Disabled','disabled','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11539','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',3,'module','Module','module','Link','Link','Module Def',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11540','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',4,'standard','Standard','standard','Select','Select','\nYes\nNo',1,NULL,NULL,NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11541','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',5,'doc_type','Doc Type','doc_type','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11542','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',6,'filters','Filters','filters','Text','Text',NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11543','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',7,'columns','Columns','columns','Text','Text',NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11544','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',8,'parent_doc_type','Parent Doc Type','parent_doc_type','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11545','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',9,'add_cond','Additional Conditions','add_cond','Text','Text',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11546','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',10,'add_col','Additional Columns','add_col','Text','Text',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11547','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',11,'add_tab','Additional Tables','add_tab','Text','Text',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11548','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',12,'dis_filters','Disabled Filters','dis_filters','Text','Text',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11549','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',13,'group_by','Group By','group_by','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11550','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',14,'sort_by','Sort By','sort_by','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11551','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',15,'sort_order','Sort Order','sort_order','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11552','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',16,'page_len','Page Len','page_len','Int','Int',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11553','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',17,'client_script','Client Script',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11554','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',18,'report_script','Report Script','report_script','Code','Code',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11555','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',19,'server_script_section_break','Server Script',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11556','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',20,'server_script','Report Server Script','server_script','Code','Code',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11557','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',21,'overload_query','Overload Query',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11558','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',22,'custom_query','Custom Query','custom_query','Code','Code',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11559','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','fields','DocType',1,'json','JSON',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11560','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','fields','DocType',2,'ref_doctype','Ref DocType',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11701','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',1,'address_details','Address Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11702','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',2,'address_type','Address Type',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'e.g. Office, Billing, Shipping','White:FFF',NULL,NULL,NULL),('FL11703','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',3,'address_line1','Address Line1',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11704','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',4,'address_line2','Address Line2',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11705','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',5,'city','City/Town',NULL,'Data',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11706','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',6,'pincode','Pincode',NULL,'Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11707','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',7,'country','Country',NULL,'Select',NULL,'link:Country',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11708','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',8,'state','State',NULL,'Data',NULL,'Suggest',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11709','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',9,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11710','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',10,'phone','Phone',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11711','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',11,'email_id','Email Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11712','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',12,'fax','Fax',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11713','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',13,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.supplier && !doc.sales_partner',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11714','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',14,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.supplier && !doc.sales_partner',1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11715','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',15,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.customer && !doc.sales_partner',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11716','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',16,'supplier_name','Supplier Name',NULL,'Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.customer && !doc.sales_partner',1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11717','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',17,'sales_partner','Sales Partner',NULL,'Link',NULL,'Sales Partner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.customer && !doc.supplier',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11718','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',18,'is_primary_address','Is Primary Address',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0','Check to make primary address','White:FFF',NULL,NULL,NULL),('FL11719','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',19,'is_shipping_address','Is Shipping Address',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0','Check to make Shipping Address','White:FFF',NULL,NULL,NULL),('FL11720','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',20,'trash_reason','Trash Reason',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11738','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','fields','DocType',1,'doc_type','DocType',NULL,'Link',NULL,'DocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11739','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','fields','DocType',2,'doc_name','DocName',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL11740','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','fields','DocType',3,'html','HTML',NULL,'Long Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11741','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',1,'sb0','Title and Style',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11742','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',2,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Title / headline of your page','White:FFF',NULL,NULL,NULL),('FL11743','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',3,'page_name','Page Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Page url name (auto-generated) ','White:FFF',NULL,NULL,NULL),('FL11744','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',4,'cb1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11745','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',5,'layout','Layout',NULL,'Select',NULL,'Single column\nTwo column\nTwo column with header',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11746','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',6,'sb1','Content',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Page content','White:FFF',NULL,NULL,NULL),('FL11747','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',7,'head_section','Head Section',NULL,'Text',NULL,'Markdown',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Section that will span 2 columns, formatted as markdown. If no head, leave blank. If you are displaying a banner, it must be 860px','White:FFF',NULL,NULL,NULL),('FL11748','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',8,'main_section','Main Section',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Content in markdown format that appears on the main side of your page','White:FFF',NULL,NULL,NULL),('FL11749','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',9,'side_section','Side Section',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Content in markdown format that appears on the right side','White:FFF',NULL,NULL,NULL),('FL11750','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',10,'sb2','More',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Link to other pages in the side bar and next section','White:FFF',NULL,NULL,NULL),('FL11751','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',11,'text_align','Text Align',NULL,'Select',NULL,'Left\nCenter\nRight',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11752','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',12,'insert_code','Insert Code',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add code as <script>','White:FFF',NULL,NULL,NULL),('FL11753','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',13,'javascript','Javascript',NULL,'Code',NULL,'Javascript',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11754','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',14,'insert_style','Insert Style',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11755','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',15,'css','CSS',NULL,'Code',NULL,'CSS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11756','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',16,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11763','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',1,'top_bar','Top Bar',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11764','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',2,'title_prefix','Title Prefix',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.','White:FFF',NULL,NULL,NULL),('FL11765','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',3,'home_page','Home Page',NULL,'Link',NULL,'Web Page',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The \"Web Page\" that is the website home page','White:FFF',NULL,NULL,NULL),('FL11766','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',4,'default_product_category','Default Product Category',NULL,'Link',NULL,'Item Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11767','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',5,'brand_html','Brand HTML',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Brand is what appears on the top-right of the toolbar. If it is an image, make sure it\nhas a transparent background and use the <img /> tag','White:FFF',NULL,NULL,NULL),('FL11768','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',6,'top_bar_items','Top Bar Items',NULL,'Table',NULL,'Top Bar Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11769','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',7,'footer','Footer',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11770','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',8,'address','Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11771','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',9,'copyright','Copyright',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11772','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',10,'footer_items','Footer Items',NULL,'Table',NULL,'Top Bar Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11773','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',11,'misc_section','Misc',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11774','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',12,'favicon','FavIcon',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]','White:FFF',NULL,NULL,NULL),('FL11775','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',13,'subdomain','Subdomain',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,'Sub-domain provided by erpnext.com',NULL,NULL,NULL,NULL),('FL11776','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',14,'domain_list','Domain List',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter domain names associated to this website, each on a new line',NULL,NULL,NULL,NULL),('FL11777','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',15,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11778','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',16,'analytics','Startup',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11779','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',17,'startup_code','Startup Code',NULL,'Code',NULL,'Javascript',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Bind events on startup and page change','White:FFF',NULL,NULL,NULL),('FL11780','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',1,'item','Item',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11781','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11782','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',3,'item_code','Item Code','item_code','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Item will be saved by this name in the data base.','White:FFF',NULL,0,NULL),('FL11783','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',4,'item_name','Item Name','item_name','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11784','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',5,'item_group','Item Group','item_group','Link','Link','Item Group',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Manage Item Groups','White:FFF',NULL,1,NULL),('FL11785','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',6,'brand','Brand','brand','Link','Link','Brand',NULL,0,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11786','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',7,'barcode','Barcode',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11787','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',8,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11788','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',9,'description','Description','description','Text','Text',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,0,NULL),('FL11789','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',10,'description_html','Description HTML',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11790','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',11,'add_image','Add Image',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Generates HTML to include image (1st attachment) in the description','White:FFF',NULL,NULL,NULL),('FL11791','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',12,'inventory','Inventory',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11792','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',13,'stock_uom','Default UoM','stock_uom','Link','Link','UOM',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter unit of measurement in which stock of this item is maintained in your warehouse.','White:FFF',NULL,NULL,NULL),('FL11793','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',14,'is_stock_item','Is Stock Item','is_stock_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Yes','Select \"Yes\" if you are maintaining stock of this item in your Inventory.','White:FFF',NULL,NULL,NULL),('FL11794','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',15,'valuation_method','Valuation Method','valuation_method','Select','Select','\nFIFO\nMoving Average',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11795','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',16,'default_warehouse','Default Warehouse','default_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11796','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',17,'tolerance','Allowance Percent','tolerance','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Percentage variation in quantity to be allowed while receiving or delivering this item.','White:FFF',NULL,NULL,NULL),('FL11797','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',18,'re_order_level','Re-Order Level','re_order_level','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The system will generate auto indent when stock reaches re-order level.','White:FFF',NULL,NULL,NULL),('FL11798','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',19,'re_order_qty','Re-Order Qty',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The system will create auto indent of re-order quantity when stock reaches re-order level','White:FFF',NULL,NULL,NULL),('FL11799','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',20,'email_notify','Send Email Notification when stock reaches re-order level',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11800','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',21,'min_order_qty','Minimum Order Qty','min_order_qty','Currency','Currency',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00','You can enter the minimum quantity of this item to be ordered.','White:FFF',NULL,NULL,NULL),('FL11801','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',22,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11802','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',23,'is_asset_item','Is Asset Item','is_asset_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if this item is used for some internal purpose in your company.','White:FFF',NULL,NULL,NULL),('FL11803','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',24,'has_batch_no','Has Batch No','has_batch_no','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL11804','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',25,'has_serial_no','Has Serial No','has_serial_no','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Selecting \"Yes\" will give a unique identity to each entity of this item which can be viewed in the Serial No master.','White:FFF',NULL,1,NULL),('FL11805','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',26,'warranty_period','Warranty Period (in days)','warranty_period','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11806','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',27,'end_of_life','End of Life','end_of_life','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11807','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',28,'net_weight','Net Weight',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Net Weight of each Item',NULL,NULL,NULL,NULL),('FL11808','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',29,'weight_uom','Weight UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11809','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',30,'purchase_details','Purchase Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11810','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',31,'is_purchase_item','Is Purchase Item','is_purchase_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Yes','Selecting \"Yes\" will allow this item to appear in Purchase Order , Purchase Receipt.','White:FFF',NULL,NULL,NULL),('FL11811','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',32,'lead_time_days','Lead Time Days','lead_time_days','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Lead Time days is number of days by which this item is expected in your warehouse. This days is fetched in Purchase Request when you select this item.','White:FFF',NULL,NULL,NULL),('FL11812','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',33,'purchase_account','Default Expense Account','purchase_account','Link','Link','Account',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Default Purchase Account in which cost of the item will be debited.','White:FFF',NULL,NULL,NULL),('FL11813','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',34,'cost_center','Default Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Default Cost Center for tracking expense for this item.','White:FFF',NULL,NULL,NULL),('FL11814','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',35,'buying_cost','Buying Cost','buying_cost','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Buying Cost will be updated from Purchase Orders and Purchase Receipts.
    The buying cost will calculated by moving average method.','White:FFF',NULL,NULL,NULL),('FL11815','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',36,'last_purchase_rate','Last Purchase Rate','last_purchase_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11816','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',37,'standard_rate','Standard Rate','standard_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11817','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',38,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11818','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',39,'uom_conversion_details','UOM Conversion Details','uom_conversion_details','Table','Table','UOM Conversion Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11819','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',40,'manufacturer','Manufacturer',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11820','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',41,'manufacturer_part_no','Manufacturer Part Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11821','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',42,'item_supplier_details','Item Supplier Details',NULL,'Table',NULL,'Item Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11822','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',43,'sales_details','Sales Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11823','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',44,'is_sales_item','Is Sales Item','is_sales_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Yes','Selecting \"Yes\" will allow this item to figure in Sales Order, Delivery Note','White:FFF',NULL,1,NULL),('FL11824','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',45,'is_service_item','Is Service Item','is_service_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if this item represents some work like training, designing, consulting etc.','White:FFF',NULL,1,NULL),('FL11825','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',46,'is_sample_item','Allow Samples','is_sample_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if this item is to be sent to a customer or received from a supplier as a sample. Delivery notes and Purchase Receipts will update stock levels but there will be no invoice against this item.','White:FFF',NULL,NULL,NULL),('FL11826','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',47,'max_discount','Max Discount (%)','max_discount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11827','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',48,'default_income_account','Default Income Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11828','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',49,'default_sales_cost_center','Cost Center',NULL,'Link',NULL,'Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11829','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',50,'sales_rate','Sales Rate','sales_rate','Currency','Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11830','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',51,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11831','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',52,'ref_rate_details','Item Prices','ref_rate_details','Table','Table','Item Price',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Create a price list from Price List master and enter standard ref rates against each of them. On selection of a price list in Quotation, Sales Order or Delivery Note, corresponding ref rate will be fetched for this item.','White:FFF',NULL,NULL,NULL),('FL11832','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',53,'item_customer_details','Customer Codes',NULL,'Table',NULL,'Item Customer Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes',NULL,NULL,NULL,NULL),('FL11833','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',54,'item_tax_section_break','Item Tax',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11834','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',55,'item_tax','Item Tax1','item_tax','Table','Table','Item Tax',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11835','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',56,'inspection_criteria','Inspection Criteria',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11836','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',57,'inspection_required','Inspection Required','inspection_required','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,'No',NULL,NULL,NULL,NULL,NULL),('FL11837','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',58,'item_specification_details','Item Quality Inspection Parameter','item_specification_details','Table','Table','Item Quality Inspection Parameter',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11838','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',59,'manufacturing','Manufacturing',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11839','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',60,'is_manufactured_item','Allow Bill of Materials','is_manufactured_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Selecting \"Yes\" will allow you to create Bill of Material showing raw material and operational costs incurred to manufacture this item.','White:FFF',NULL,NULL,NULL),('FL11840','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',61,'default_bom','Default BOM','default_bom','Link','Link','BOM',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11841','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',62,'is_pro_applicable','Allow Production Order','is_pro_applicable','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Selecting \"Yes\" will allow you to make a Production Order for this item.','White:FFF',NULL,NULL,NULL),('FL11842','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',63,'is_sub_contracted_item','Is Sub Contracted Item','is_sub_contracted_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if you supply raw materials to your supplier to manufacture this item.','White:FFF',NULL,NULL,NULL),('FL11843','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',64,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11844','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',65,'customer_code','Customer Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11845','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',66,'website_section','Website',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11846','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',67,'show_in_website','Show in Website',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11847','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',68,'page_name','Page Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'website page link','White:FFF',NULL,NULL,NULL),('FL11848','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',69,'website_image','Image',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11849','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',70,'web_short_description','Short Description',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11850','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',71,'web_long_description','Long Description',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11851','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',1,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11852','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',2,'published','Published',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11853','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',3,'content','Content',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11854','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',4,'page_name','Page Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11855','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',5,'email_sent','Email Sent',NULL,'Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11856','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',6,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11857','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11858','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11859','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','\nPO',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL11860','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',4,'supplier','Supplier','supplier','Link','Link','Supplier',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Supplier (vendor) name as entered in supplier master','White:FFF',NULL,1,NULL),('FL11861','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',5,'supplier_name','Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11862','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11863','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11864','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11865','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11866','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',10,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11867','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',11,'transaction_date','Purchase Order Date','transaction_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'The date at which current entry is made in system.','White:FFF',NULL,1,NULL),('FL11868','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',12,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11869','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',13,'po_details','Purchase Order Items','po_details','Table','Table','Purchase Order Item',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11870','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',14,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11871','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',15,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11872','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',16,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11873','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',17,'net_total_import','Net Total (Import)','net_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11874','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',18,'get_last_purchase_rate','Get Last Purchase Rate',NULL,'Button','Button',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11875','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',19,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11876','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',20,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11877','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',21,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Supplier\'s currency','White:FFF',NULL,NULL,NULL),('FL11878','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',22,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,0,1,NULL,1,1,NULL,'Client',NULL,0,NULL,'1','Rate at which supplier\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL11879','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',23,'indent_no','Select Purchase Request','indent_no','Link','Link','Purchase Request',NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'You can make a purchase order from multiple Purchase Requests. Select Purchase Requests one by one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL11880','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',24,'get_items','Get Items',NULL,'Button','Button','get_indent_details',NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11881','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',25,'supplier_quotation','Select Supplier Quotation',NULL,'Link',NULL,'Supplier Quotation',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'You can make a purchase order from multiple Supplier Quotations. Select Supplier Quotations one by one and click on the button below.',NULL,NULL,NULL,NULL),('FL11882','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',26,'get_supplier_quotation_items','Get Items',NULL,'Button',NULL,'get_supplier_quotation_items',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11883','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',27,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11884','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',28,'purchase_other_charges','Purchase Taxes and Charges','purchase_other_charges','Link','Link','Purchase Taxes and Charges Master',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL11885','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',29,'get_tax_detail','Get Tax Detail',NULL,'Button','Button','get_purchase_tax_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11886','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',30,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11887','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',31,'calculate_tax','Calculate Tax',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11888','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',32,'tax_calculation','Tax Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11889','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',33,'total_tax','Total Tax*','total_tax','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11890','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',34,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11891','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',35,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11892','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',36,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11893','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',37,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Purchase Order.','White:FFF',NULL,NULL,NULL),('FL11894','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',38,'other_charges_added','Taxes and Charges Added','other_charges_added','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11895','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',39,'other_charges_deducted','Taxes and Charges Deducted','other_charges_deducted','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11896','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',40,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11897','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',41,'grand_total_import','Grand Total (Import)','grand_total_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11898','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',42,'in_words_import','In Words(Import)','in_words_import','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11899','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',43,'other_charges_added_import','Taxes and Charges Added (Import)','other_charges_added_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11900','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',44,'other_charges_deducted_import','Taxes and Charges Deducted (Import)','other_charges_deducted_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11901','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',45,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11902','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',46,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11903','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',47,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11904','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',48,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11905','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',49,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11906','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',50,'terms','Terms and Conditions1','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11907','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',51,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11908','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',52,'supplier_address','Supplier Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11909','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',53,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11910','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',54,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11911','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',55,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11912','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',56,'is_subcontracted','Is Subcontracted',NULL,'Select',NULL,'\nYes\nNo',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,NULL,NULL,NULL,NULL),('FL11913','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',57,'ref_sq','Ref SQ','ref_sq','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11914','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',58,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,0,1,0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11915','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',59,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL11916','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',60,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL11917','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',61,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11918','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',62,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11919','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',63,'instructions','Instructions','instructions','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11920','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',64,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11921','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',65,'per_received','% Received','per_received','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials received against this Purchase Order','White:FFF',NULL,NULL,NULL),('FL11922','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',66,'per_billed','% Billed','per_billed','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials billed against this Purchase Order.','White:FFF',NULL,NULL,NULL),('FL11923','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',67,'payment_terms','Payment Terms','payment_terms','Text','Text',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11924','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',68,'remarks','Remarks','remarks','Text','Text',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11925','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',69,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11926','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',70,'raw_material_details','Raw Material Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Required raw materials issued to the supplier for producing a sub - contracted item.','White:FFF',NULL,NULL,NULL),('FL11927','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',71,'po_raw_material_details','Purchase Order Items Supplied','po_raw_material_details','Table','Table','Purchase Order Item Supplied',NULL,NULL,1,NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11928','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',72,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11929','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Enter items and their details which are falling short in your warehouse and for which you want your purchase department to raise a purchase order.','Enter items and their details for which you want your purchase department to raise a purchase order.','White:FFF',NULL,NULL,NULL),('FL11930','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',2,'naming_series','Series','naming_series','Select','Select','IDT',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL11931','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',3,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,1,NULL,NULL,NULL,1,1,NULL,'Client',NULL,0,'100px',NULL,'The date at which current entry is made in system.','White:FFF',NULL,1,NULL),('FL11932','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',4,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11933','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',5,'indent_details','Purchase Requisition Details','indent_details','Table','Table','Purchase Request Item',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11934','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',6,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11935','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',7,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11936','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',8,'sales_order_no','Sales Order No','sales_order_no','Link','Data','Sales Order',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'One or multiple Sales Order no which generated this Purchase Requisition','White:FFF',NULL,NULL,NULL),('FL11937','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',9,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11938','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',10,'pull_sales_order_details','Pull Sales Order Items',NULL,'Button',NULL,'pull_so_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11939','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',11,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Give additional details about the indent.','Filing in Additional Information about the Purchase Requisition will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL11940','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',12,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11941','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',13,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL11942','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',14,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL11943','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',15,'requested_by','Requested By','requested_by','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'Name of the entity who has requested for the Purchase Requisition','White:FFF',NULL,NULL,NULL),('FL11944','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',16,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field','White:FFF',NULL,NULL,NULL),('FL11945','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',17,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11946','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',18,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11947','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',19,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nCancelled',1,NULL,1,NULL,0,1,NULL,NULL,NULL,1,'100px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL11948','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',20,'per_ordered','% Ordered','per_ordered','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'% of materials ordered against this Purchase Requisition','White:FFF',NULL,NULL,NULL),('FL11949','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',21,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11950','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',22,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL11951','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',23,'remark','Remarks','remark','Small Text','Small Text',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11952','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',24,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template',NULL,NULL,NULL,NULL),('FL11953','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',25,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11954','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',26,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11955','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',27,'terms','Terms and Conditions Content','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11956','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',28,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11957','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11958','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11959','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','BILL\nBILLJ',NULL,NULL,1,0,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL11960','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',4,'credit_to','Credit To','credit_to','Link','Link','Account',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'The account to which you will pay (have paid) the money to.',NULL,NULL,1,NULL),('FL11961','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',5,'supplier_name','Name','supplier_name','Text','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11962','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11963','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11964','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11965','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11966','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',10,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11967','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',11,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,'Today','The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL11968','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',12,'bill_no','Bill No','bill_no','Data','Data',NULL,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'If not applicable please enter: NA',NULL,NULL,1,NULL),('FL11969','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',13,'bill_date','Bill Date','bill_date','Date','Date',NULL,1,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11970','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',14,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11971','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',15,'entries','Entries','entries','Table','Table','Purchase Invoice Item',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11972','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',16,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11973','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',17,'net_total','Net Total','net_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Will be calculated automatically when you enter the details',NULL,NULL,NULL,NULL),('FL11974','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',18,'net_total_import','Net Total (Import)','net_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11975','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',19,'recalculate','Recalculate',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11976','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',20,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11977','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',21,'conversion_rate','Bill Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'1','The rate at which Bill Currency is converted into company\'s base currency','White:FFF',NULL,NULL,NULL),('FL11978','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',22,'currency','Bill Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11979','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',23,'purchase_order_main','Purchase Order','purchase_order_main','Link','Link','Purchase Order',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select Items from Purchase Order','White:FFF',NULL,NULL,NULL),('FL11980','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',24,'purchase_receipt_main','Purchase Receipt','purchase_receipt_main','Link','Link','Purchase Receipt',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select Items from Purchase Receipt','White:FFF',NULL,NULL,NULL),('FL11981','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',25,'get_items','Get Items',NULL,'Button','Button','pull_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11982','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',26,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add / Edit Taxes and Charges','White:FFF',NULL,NULL,NULL),('FL11983','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',27,'purchase_other_charges','Purchase Taxes and Charges','purchase_other_charges','Link','Link','Purchase Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11984','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',28,'get_tax_detail','Get Tax Detail',NULL,'Button','Button','get_purchase_tax_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11985','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',29,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11986','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',30,'calculate_tax','Calculate Tax',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11987','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',31,'tax_calculation','Tax Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11988','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',32,'total_tax','Total Tax','total_tax','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11989','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',33,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11990','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',34,'supplier','Supplier','supplier','Link','Link','Supplier',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11991','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',35,'supplier_address','Supplier Address',NULL,'Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.supplier',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11992','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',36,'col_break23',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11993','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',37,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.supplier',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11994','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',38,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11995','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',39,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11996','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',40,'is_opening','Is Opening','is_opening','Select','Select','No\nYes',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,'No',NULL,'White:FFF',NULL,1,NULL),('FL11997','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',41,'aging_date','Aging Date','aging_date','Date','Date',NULL,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11998','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',42,'amended_from','Amended From','amended_from','Link','Link','Purchase Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11999','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',43,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12000','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',44,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12001','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',45,'due_date','Due Date','due_date','Date','Date',NULL,1,NULL,0,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12002','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',46,'mode_of_payment','Mode of Payment','mode_of_payment','Select','Select','link:Mode of Payment',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12003','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',47,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12004','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',48,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12005','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',49,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12006','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',50,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12007','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',51,'remarks','Remarks','remarks','Small Text','Text',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12008','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',52,'advances','Advances',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12009','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',53,'get_advances_paid','Get Advances Paid',NULL,'Button','Button','get_advances',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12010','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',54,'advance_allocation_details','Purchase Invoice Advances','advance_allocation_details','Table','Table','Purchase Invoice Advance',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12011','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',55,'tds','TDS',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12012','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',56,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12013','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',57,'tds_applicable','TDS Applicable','tds_applicable','Select','Select','\nYes\nNo',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12014','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',58,'tds_category','TDS Category','tds_category','Select','Select','link:TDS Category',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12015','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',59,'get_tds','Get TDS',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12016','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',60,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12017','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',61,'tax_code','TDS Account Head','tax_code','Link','Link','Account',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12018','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',62,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12019','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',63,'ded_amount','TDS Amount','ded_amount','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12020','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',64,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12021','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',65,'column_break7',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12022','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',66,'other_charges_added','Taxes and Charges Added','other_charges_added','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12023','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',67,'other_charges_deducted','Taxes and Charges Deducted','other_charges_deducted','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12024','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',68,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12025','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',69,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Purchase Invoice.','White:FFF',NULL,NULL,NULL),('FL12026','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',70,'total_tds_on_voucher','Total TDS On Voucher','total_tds_on_voucher','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12027','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',71,'tds_amount_on_advance','TDS Amount On Advance','tds_amount_on_advance','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12028','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',72,'column_break8',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12029','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',73,'total_amount_to_pay','Total Amount To Pay','total_amount_to_pay','Currency','Currency',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12030','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',74,'total_advance','Total Advance (Incl. TDS)','total_advance','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12031','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',75,'outstanding_amount','Outstanding Amount','outstanding_amount','Currency','Currency',NULL,1,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12032','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',76,'write_off_amount','Write Off Amount',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12033','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',77,'write_off_account','Write Off Account',NULL,'Link',NULL,'Account',NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:flt(doc.write_off_amount)!=0',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12034','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',78,'write_off_cost_center','Write Off Cost Center',NULL,'Link',NULL,'Account',NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:flt(doc.write_off_amount)!=0',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12035','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',79,'other_charges_added_import','Taxes and Charges Added (Import)','other_charges_added_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12036','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',80,'other_charges_deducted_import','Taxes and Charges Deducted (Import)','other_charges_deducted_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12037','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',81,'grand_total_import','Grand Total (Import)','grand_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12038','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',82,'in_words_import','In Words (Import)','in_words_import','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12039','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',83,'against_expense_account','Against Expense Account','against_expense_account','Small Text','Small Text',NULL,NULL,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12040','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',84,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12041','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12042','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12043','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','SQTN',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12044','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',4,'supplier','Supplier','supplier','Link','Link','Supplier',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Supplier (vendor) name as entered in supplier master','White:FFF',NULL,1,NULL),('FL12045','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',5,'supplier_name','Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12046','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12047','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12048','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12049','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12050','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',10,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12051','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',11,'transaction_date','Quotation Date','transaction_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'The date at which current entry is made in system.','White:FFF',NULL,1,NULL),('FL12052','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',12,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12053','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',13,'quotation_items','Quotation Items','po_details','Table','Table','Supplier Quotation Item',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12054','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',14,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12055','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',15,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12056','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',16,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12057','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',17,'net_total_import','Net Total (Import)','net_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12058','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',18,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12059','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',19,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12060','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',20,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Supplier\'s currency','White:FFF',NULL,NULL,NULL),('FL12061','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',21,'conversion_rate','Conversion Rate','conversion_rate','Currency','Currency',NULL,NULL,0,1,NULL,1,1,NULL,'Client',NULL,0,NULL,'1','Rate at which supplier\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12062','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',22,'indent_no','Select Purchase Request','indent_no','Link','Link','Purchase Request',NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'You can make a purchase order from multiple Purchase Requests. Select Purchase Requests one by one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL12063','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',23,'get_items','Get Items',NULL,'Button','Button','get_indent_details',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12064','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',24,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12065','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',25,'purchase_other_charges','Purchase Taxes and Charges','purchase_other_charges','Link','Link','Purchase Taxes and Charges Master',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL12066','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',26,'get_tax_detail','Get Tax Detail',NULL,'Button','Button','get_purchase_tax_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12067','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',27,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12068','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',28,'calculate_tax','Calculate Tax',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12069','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',29,'tax_calculation','Tax Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12070','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',30,'total_tax','Total Tax*','total_tax','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12071','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',31,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12072','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',32,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12073','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',33,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12074','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',34,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Purchase Order.','White:FFF',NULL,NULL,NULL),('FL12075','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',35,'other_charges_added','Taxes and Charges Added','other_charges_added','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12076','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',36,'other_charges_deducted','Taxes and Charges Deducted','other_charges_deducted','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12077','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',37,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12078','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',38,'grand_total_import','Grand Total (Import)','grand_total_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12079','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',39,'in_words_import','In Words(Import)','in_words_import','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12080','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',40,'other_charges_added_import','Taxes and Charges Added (Import)','other_charges_added_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12081','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',41,'other_charges_deducted_import','Taxes and Charges Deducted (Import)','other_charges_deducted_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12082','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',42,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12083','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',43,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12084','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',44,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12085','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',45,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12086','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',46,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12087','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',47,'terms','Terms and Conditions1','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12088','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',48,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12089','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',49,'supplier_address','Supplier Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12090','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',50,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12091','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',51,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12092','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',52,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12093','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',53,'is_subcontracted','Is Subcontracted',NULL,'Select',NULL,'\nYes\nNo',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,NULL,NULL,NULL,NULL),('FL12094','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',54,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12095','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',55,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12096','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',56,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL12097','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',57,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12098','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',58,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12099','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',59,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12100','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',60,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12101','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',61,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12102','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12103','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',2,'supplier_part_no','Supplier Part Number',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'If Supplier Part Number exists for given Item, it gets stored here','White:FFF',NULL,NULL,NULL),('FL12104','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',3,'item_name','Item Name','item_name','Data','Data',NULL,1,0,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12105','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12106','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',5,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'60px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12107','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',6,'import_ref_rate','Ref Rate ',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12108','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',7,'discount_rate','Discount %',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12109','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',8,'import_rate','Rate ','import_rate','Currency','Currency',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12110','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',9,'import_amount','Amount','import_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12111','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',10,'purchase_ref_rate','Ref Rate *',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12112','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',11,'purchase_rate','Rate (Default Curr.) *','purchase_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12113','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',12,'amount','Amount (Default Curr.)','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,'0.00',NULL,NULL,NULL,NULL,NULL),('FL12114','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',13,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,0,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12115','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',14,'project_name','Project Name',NULL,'Link',NULL,'Project',NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12116','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',15,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12117','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',16,'prevdoc_doctype','Prevdoc DocType','prevdoc_doctype','Data','Data',NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12118','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',17,'prevdoc_docname','Purchase Request No','prevdoc_docname','Link','Link','Purchase Request',1,0,1,NULL,NULL,0,NULL,NULL,NULL,1,'120px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL12119','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',18,'prevdoc_date','Purchase Request Date','prevdoc_date','Date','Date',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12120','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',19,'prevdoc_detail_docname','Purchase Request Detail No','prevdoc_detail_docname','Data','Data',NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12121','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',20,'brand','Brand','brand','Link','Link','Brand',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12122','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',21,'item_group','Item Group','item_group','Link','Link','Item Group',0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12123','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',22,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges','White:FFF',NULL,NULL,NULL),('FL12124','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',23,'page_break','Page Break','page_break','Check','Check',NULL,NULL,0,1,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12125','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',1,'schedule_date','Reqd By Date','schedule_date','Date','Date',NULL,1,0,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12126','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12127','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',3,'supplier_part_no','Supplier Part Number',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'If Supplier Part Number exists for given Item, it gets stored here','White:FFF',NULL,NULL,NULL),('FL12128','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',4,'item_name','Item Name','item_name','Data','Data',NULL,1,0,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12129','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',5,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12130','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',6,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'60px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12131','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',7,'import_ref_rate','Ref Rate ',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12132','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',8,'discount_rate','Discount %',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12133','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',9,'import_rate','Rate ','import_rate','Currency','Currency',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12134','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',10,'import_amount','Amount','import_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12135','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',11,'purchase_ref_rate','Ref Rate *',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12136','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',12,'purchase_rate','Rate (Default Curr.) *','purchase_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12137','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',13,'amount','Amount (Default Curr.)','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,'0.00',NULL,NULL,NULL,NULL,NULL),('FL12138','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',14,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,0,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12139','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',15,'project_name','Project Name',NULL,'Link',NULL,'Project',NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12140','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',16,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12141','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',17,'conversion_factor','UOM Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,0,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12142','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',18,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,0,1,NULL,1,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12143','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',19,'prevdoc_doctype','Prevdoc DocType','prevdoc_doctype','Data','Data',NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12144','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',20,'prevdoc_docname','Purchase Requisition No','prevdoc_docname','Link','Link','Purchase Request',1,0,1,NULL,NULL,0,NULL,NULL,NULL,1,'120px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL12145','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',21,'prevdoc_date','Purchase Request Date','prevdoc_date','Date','Date',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12146','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',22,'prevdoc_detail_docname','Purchase Request Detail No','prevdoc_detail_docname','Data','Data',NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12147','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',23,'supplier_quotation','Supplier Quotation',NULL,'Link',NULL,'Supplier Quotation',0,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12148','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',24,'supplier_quotation_item','Supplier Quotation Item',NULL,'Link',NULL,'Supplier Quotation Item',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12149','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',25,'brand','Brand','brand','Link','Link','Brand',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12150','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',26,'item_group','Item Group','item_group','Link','Link','Item Group',0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12151','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',27,'stock_qty','Stock Qty','stock_qty','Currency','Currency',NULL,NULL,0,1,NULL,NULL,1,NULL,'Client',NULL,1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12152','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',28,'received_qty','Received Qty','received_qty','Currency','Currency',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12153','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',29,'billed_qty','Billed Quantity','billed_qty','Currency','Currency',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'0.00',NULL,NULL,NULL,NULL,NULL),('FL12154','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',30,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges','White:FFF',NULL,NULL,NULL),('FL12155','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',31,'page_break','Page Break','page_break','Check','Check',NULL,NULL,0,1,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12156','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',1,'sb0','Profile Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12157','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',2,'enabled','Enabled','enabled','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'1',NULL,NULL,NULL,NULL,NULL),('FL12158','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',3,'sb0_5',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12159','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',4,'unsubscribed','Unsubscribed',NULL,'Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12160','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',5,'recent_documents','Recent Documents','recent_documents','Text','Text',NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12161','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',6,'email','Email','email','Data','Data',NULL,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Id of the profile will be the email.','White:FFF',NULL,NULL,NULL),('FL12162','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',7,'first_name','First Name','first_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12163','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',8,'middle_name','Middle Name (Optional)','middle_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12164','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',9,'last_name','Last Name','last_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12165','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',10,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12166','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',11,'new_password','New Password',NULL,'Password',NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set a new password.','White:FFF',NULL,NULL,NULL),('FL12167','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',12,'birth_date','Birth Date','birth_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12168','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',13,'user_type','User Type','user_type','Select','Select','\nSystem User\nPartner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12169','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',14,'gender','Gender','gender','Select','Select','\nMale\nFemale\nOther',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12170','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',15,'sb1','Roles',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check / Uncheck roles assigned to the Profile. Click on the Role to find out what permissions that Role has.','White:FFF',NULL,NULL,NULL),('FL12171','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',16,'roles_html','Roles HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12172','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',17,'sb2','Defaults',NULL,'Section Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'50%',NULL,'These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.','White:FFF',NULL,NULL,NULL),('FL12173','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',18,'defaults','Profile Defaults',NULL,'Table',NULL,'DefaultValue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to Customize Form.','White:FFF',NULL,NULL,NULL),('FL12174','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',19,'sb3','Security Settings',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12175','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',20,'login_after','Login After',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Allow user to login only after this hour (0-24)','White:FFF',NULL,NULL,NULL),('FL12176','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',21,'login_before','Login Before',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Allow user to login only before this hour (0-24)','White:FFF',NULL,NULL,NULL),('FL12177','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',22,'restrict_ip','Restrict IP',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)','White:FFF',NULL,NULL,NULL),('FL12178','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',23,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12179','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',24,'last_login','Last Login','last_login','Read Only','Read Only',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12180','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',25,'last_ip','Last IP','last_ip','Read Only','Read Only',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12181','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',26,'user_image','User Image',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12182','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',27,'background_image','Background Image',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12183','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',28,'file_list','File List','file_list','Text','Text',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12184','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',1,'details','Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12185','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',2,'intro_html','Intro HTML',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12186','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',3,'event_date','Event Date','event_date','Date','Date',NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12187','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',4,'event_hour','Event Time','event_hour','Time','Time',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12188','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',5,'event_name','Event Name','event_name','Data','Data',NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12189','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',6,'description','Description','description','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12190','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',7,'notes','Notes','notes','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12191','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',8,'event_type','Event Type','event_type','Select','Select','Private\nPublic\nCancel',1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12192','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',9,'participants','Participants',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12193','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',10,'individuals','Individuals',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12194','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',11,'event_individuals','Event Individuals','event_individuals','Table','Table','Event User',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12195','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',12,'groups','Groups',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12196','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',13,'event_roles','Event Roles','event_roles','Table','Table','Event Role',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12197','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',14,'ref_type','Ref Type','ref_type','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12198','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',15,'ref_name','Ref Name','ref_name','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12199','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'UserRole','fields','DocType',1,'role','Role','role','Link','Link','Role',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12200','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',1,'doctype_or_field','DocType or Field',NULL,'Select',NULL,'\nDocField\nDocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL12201','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',2,'select_doctype','Select DocType',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.doctype_or_field && doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12202','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',3,'select_item','Select Field',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'eval:doc.doctype_or_field==\'DocField\' && doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12203','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',4,'select_property','Select Property',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'eval:doc.doctype_or_field && doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL12204','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',5,'value','Set Value',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doc_name',0,NULL,NULL,'New value to be set','White:FFF',NULL,NULL,NULL),('FL12205','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',6,'column_break0',NULL,NULL,'Column Break',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12206','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',7,'doc_type','DocType',NULL,'Link',NULL,'DocType',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,0),('FL12207','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',8,'field_name','Field Name',NULL,'Read Only',NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'eval:doc.doctype_or_field==\'DocField\'',0,NULL,NULL,'ID (name) of the entity whose property is to be set','White:FFF',NULL,0,NULL),('FL12208','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',9,'property','Property',NULL,'Read Only',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'eval:doc.doc_name && doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12209','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',10,'property_type','Property Type',NULL,'Read Only',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doc_name',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12210','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',11,'default_value','Default Value',NULL,'Read Only',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doc_name',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12211','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',1,'sb0','DocType Details',NULL,'Section Break','Section Break',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12212','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',2,'module','Module','module','Data','Link','Suggest',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12213','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',3,'cb01',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12214','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',4,'document_type','Document Type','document_type','Select','Select','\nMaster\nTransaction\nSystem\nOther',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12215','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',5,'sb0_5',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12216','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',6,'description','Description','description','Text','Text',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12217','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',7,'fields_section_break','Fields',NULL,'Section Break','Section Break',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12218','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',8,'fields','Fields','fields','Table','Table','DocField',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12219','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',9,'sb1',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12220','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',10,'cb10','Database',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12221','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',11,'issingle','Is Single','issingle','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12222','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',12,'istable','Is Table','istable','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12223','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',13,'cb11','Naming',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12224','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',14,'autoname','Auto Name','autoname','Data','Data',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12225','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',15,'name_case','Name Case','name_case','Select','Select','\nTitle Case\nUPPER CASE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12226','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',16,'search_fields','Search Fields','search_fields','Data','Data',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12227','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',17,'sb2','Permission Rules',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12228','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',18,'permissions','Permissions','permissions','Table','Table','DocPerm',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12229','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',19,'sb3',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12230','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',20,'cb30','Permissions Settings',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12231','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',21,'in_create','User Cannot Create','in_create','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12232','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',22,'read_only','User Cannot Search','read_only','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12233','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',23,'is_submittable','Is Submittable',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12234','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',24,'allow_rename','Allow Rename','allow_rename','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12235','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',25,'cb31','Hide Actions',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12236','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',26,'hide_heading','Hide Heading','hide_heading','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12237','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',27,'hide_toolbar','Hide Toolbar','hide_toolbar','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12238','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',28,'allow_print','Hide Print','allow_print','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12239','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',29,'allow_email','Hide Email','allow_email','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12240','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',30,'allow_copy','Hide Copy','allow_copy','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12241','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',31,'sb4',NULL,NULL,'Section Break','Column Break',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12242','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',32,'cb41','Display',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12243','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',33,'default_print_format','Default Print Format',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12244','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',34,'read_only_onload','Show Print First','read_only_onload','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12245','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',35,'in_dialog','In Dialog','in_dialog','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12246','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',36,'cb42','Attachments',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12247','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',37,'allow_attach','Allow Attach','allow_attach','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12248','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',38,'max_attachments','Max Attachments','max_attachments','Int','Int',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12249','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Comment','fields','DocType',1,'comment','Comment','comment','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12250','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Comment','fields','DocType',2,'comment_by','Comment By','comment_by','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12251','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Comment','fields','DocType',3,'comment_by_fullname','Comment By Fullname','comment_by_fullname','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12252','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Comment','fields','DocType',4,'comment_date','Comment Date','comment_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12253','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',5,'comment_time','Comment Time','comment_time','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12254','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',6,'comment_doctype','Comment Doctype','comment_doctype','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12255','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',7,'comment_docname','Comment Docname','comment_docname','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12256','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',8,'post_topic','Post Topic','post_topic','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12257','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',9,'unsubscribed','Unsubscribed',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12258','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',1,'label','Label','label','Data','Data',NULL,1,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12259','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',2,'fieldtype','Type','fieldtype','Select','Select','Data\nSelect\nText\nSmall Text\nText Editor\nLink\nInt\nDate\nTime\nCurrency\nTable\nFloat\nCheck\nSection Break\nColumn Break\nButton\nRead Only\nCode\nHTML\nImage\nBlob\nPassword',1,0,0,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12260','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',3,'fieldname','Name','fieldname','Data','Data',NULL,1,0,0,NULL,0,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12261','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',4,'options','Options','options','Text','Text',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,'For Links, enter the DocType as range\nFor Select, enter list of Options separated by comma',NULL,NULL,NULL,NULL),('FL12262','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',5,'permlevel','Perm Level','permlevel','Int','Int',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,'0',NULL,NULL,NULL,NULL,NULL),('FL12263','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',6,'width','Width','width','Data','Data',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12264','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',7,'reqd','Reqd','reqd','Check','Check',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12265','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',8,'in_filter','In Filter','in_filter','Check','Check',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12266','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',9,'hidden','Hidden','hidden','Check','Check',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12267','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',10,'print_hide','Print Hide','print_hide','Check','Check',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12268','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',11,'report_hide','Report Hide','report_hide','Check','Check',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12269','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',12,'allow_on_submit','Allow on Submit','allow_on_submit','Check','Check',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12270','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',13,'depends_on','Depends On','depends_on','Data','Data',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,'This field will appear only if the fieldname defined here has value OR the rules are true (examples):
    \nmyfield\neval:doc.myfield==\'My Value\'
    \neval:doc.age>18','White:FFF',NULL,NULL,NULL),('FL12271','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',14,'description','Description','description','Text','Text',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12272','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',15,'default','Default','default','Text','Text',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12273','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Tag','fields','DocType',1,'tag_name','Tag Name','tag_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12274','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',1,'sender','Sender',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12275','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',2,'recipient','Recipient',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12276','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',3,'message','Message',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12277','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',4,'status','Status',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12278','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',5,'error','Error',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12279','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',1,'letter_head_name','Letter Head Name','letter_head_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12280','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',2,'disabled','Disabled','disabled','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12281','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',3,'is_default','Is Default','is_default','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check this to make this the default letter head in all prints',NULL,NULL,NULL,NULL),('FL12282','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',4,'set_from_image','Set From Image',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'To update your HTML from attachment, click here',NULL,NULL,NULL,NULL),('FL12283','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',5,'content','Content','content','Code','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your letter head content in HTML.',NULL,NULL,NULL,NULL),('FL12284','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',6,'url','URL',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12285','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',7,'file_list','File LIst','file_list','Text','Text',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12286','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',1,'page_html','Page HTML',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12287','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',2,'page_name','Page Name','page_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12288','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',3,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12289','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',4,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12290','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',5,'module','Module','module','Select','Select','link:Module Def',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12291','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',6,'standard','Standard','standard','Select','Select','\nYes\nNo',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12292','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',7,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12293','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',8,'content','Content','content','Code','Text Editor',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12294','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',9,'permissions','Permissions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12295','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',10,'roles','Roles','roles','Table','Table','Page Role',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12296','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',11,'section_break1',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12297','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',12,'script','Script (JS)',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12298','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',13,'style','Style (CSS)',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12299','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',1,'doc_type','Select Form Type',NULL,'Select',NULL,'link:DocType\n(module IN (\"Accounts\", \"Buying\", \"HR\", \"Knowledge Base\", \"Production\", \"Projects\", \"Selling\", \"Stock\", \"Support\", \"Website\") OR name IN (\"Contact\", \"Address\")) AND IFNULL(issingle, 0)=0 AND IFNULL(in_create, 0)=0',0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12300','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',2,'properties','Properties',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12301','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',3,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12302','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',4,'search_fields','Search Fields',NULL,'Data',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Fields separated by comma (,) will be included in the
    Search By list of Search dialog box',NULL,NULL,NULL,NULL),('FL12303','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',5,'default_print_format','Default Print Format',NULL,'Link',NULL,'Print Format',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12304','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12305','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',7,'read_only_onload','Show Print First',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Load Print View on opening of an existing form',NULL,NULL,NULL,NULL),('FL12306','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',8,'allow_print','Hide Print',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12307','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',9,'allow_email','Hide Email',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12308','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',10,'allow_copy','Hide Copy',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12309','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',11,'allow_attach','Allow Attach',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Note: maximum attachment size = 1mb',NULL,NULL,NULL,NULL),('FL12310','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',12,'max_attachments','Max Attachments',NULL,'Int',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'eval:doc.allow_attach',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12311','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',13,'fields_section_break','Fields',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Customize Label, Print Hide, Default etc.',NULL,NULL,NULL,NULL),('FL12312','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',14,'fields','Fields',NULL,'Table',NULL,'Customize Form Field',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,'no add rows',NULL,NULL,NULL,NULL,NULL),('FL12313','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Print Format','fields','DocType',1,'module','Module','module','Select','Select','link:Module Def',1,0,0,0,1,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12314','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Print Format','fields','DocType',2,'doc_type','DocType',NULL,'Select',NULL,'link:DocType',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Associate a DocType to the Print Format',NULL,NULL,1,NULL),('FL12315','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Print Format','fields','DocType',3,'standard','Standard','standard','Select','Select','No\nYes',1,0,0,0,1,1,0,NULL,NULL,1,NULL,'No',NULL,'White:FFF',NULL,1,NULL),('FL12316','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Print Format','fields','DocType',4,'html','HTML','html','Code','Text Editor','HTML',0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12317','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',1,'details','Details',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12318','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12319','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',3,'dt','Document','dt','Link','Link','DocType',1,NULL,NULL,NULL,1,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12320','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',4,'label','Label','label','Data','Data',NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12321','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',5,'label_help','Label Help',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12322','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',6,'fieldtype','Field Type','fieldtype','Select','Select','\nButton\nCheck\nCode\nColumn Break\nCurrency\nData\nDate\nFloat\nHTML\nInt\nLink\nRead Only\nSection Break\nSelect\nSmall Text\nText\nText Editor\nTime\nTable',0,NULL,NULL,NULL,1,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12323','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',7,'options_help','Options Help',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12324','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',8,'options','Options','options','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12325','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',9,'description','Field Description','description','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12326','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',10,'properties','Properties',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12327','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',11,'insert_after','Insert After','insert_after','Select','Select',NULL,0,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,'Select the label after which you want to insert new field.','White:FFF',NULL,NULL,NULL),('FL12328','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',12,'default','Default Value','default','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12329','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',13,'fieldname','Fieldname','fieldname','Data','Data',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12330','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',14,'width','Width','width','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12331','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',15,'reqd','Is Mandatory Field','reqd','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12332','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',16,'in_filter','In Report Filter','in_filter','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12333','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',17,'no_copy','No Copy','no_copy','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12334','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',18,'print_hide','Print Hide','print_hide','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12335','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',19,'report_hide','Report Hide','report_hide','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12336','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',20,'allow_on_submit','Allow on Submit','allow_on_submit','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12337','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',21,'permlevel','Permission Level','permlevel','Int','Int',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'0',NULL,NULL,NULL,NULL,NULL),('FL12338','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,0,0,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12339','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',2,'customer_item_code','Customer\'s Item Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12340','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',3,'item_name','Item Name','item_name','Data','Data',NULL,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12341','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12342','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',5,'qty','Quantity','qty','Currency','Currency',NULL,0,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12343','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',6,'stock_uom','UOM','stock_uom','Data','Data',NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12344','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',7,'ref_rate','Price List Rate','ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12345','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',8,'adj_rate','Discount (%)','adj_rate','Float','Float',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12346','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',9,'export_rate','Rate','export_rate','Currency','Currency',NULL,0,NULL,0,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12347','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',10,'export_amount','Amount','export_amount','Currency','Currency',NULL,0,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12348','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',11,'base_ref_rate','Price List Rate*','base_ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12349','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',12,'basic_rate','Basic Rate*','basic_rate','Currency','Currency',NULL,0,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12350','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',13,'amount','Amount*','amount','Currency','Currency',NULL,0,NULL,1,NULL,0,NULL,NULL,'Client',NULL,1,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12351','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',14,'item_group','Item Group','item_group','Link','Link','Item Group',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12352','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',15,'brand','Brand','brand','Link','Link','Brand',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12353','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',16,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12354','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',17,'prevdoc_docname','Against Docname','prevdoc_docname','Data','Data',NULL,NULL,NULL,1,0,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12355','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',18,'prevdoc_doctype','Against Doctype','prevdoc_doctype','Data','Data',NULL,NULL,1,1,0,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12356','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',19,'page_break','Page Break','page_break','Check','Check',NULL,NULL,0,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12357','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12358','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12359','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',3,'naming_series','Naming Series','naming_series','Select','Select','QTN',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12360','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',4,'quotation_to','Quotation To','quotation_to','Select','Select','\nLead\nCustomer',NULL,NULL,1,0,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12361','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',5,'customer','Customer','customer','Link','Link','Customer',1,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12362','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',6,'lead','Lead','lead','Link','Link','Lead',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12363','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',7,'lead_name','Lead Name',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12364','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',8,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12365','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',9,'organization','Organization',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12366','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',10,'address_display','Address','customer_address','Small Text','Small Text',NULL,0,1,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12367','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',11,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12368','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',12,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12369','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',13,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12370','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',14,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12371','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',15,'transaction_date','Quotation Date','transaction_date','Date','Date',NULL,1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,'100px','Today','The date at which current entry is made in system.',NULL,NULL,1,NULL),('FL12372','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',16,'order_type','Order Type','order_type','Select','Select','\nSales\nMaintenance',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Sales',NULL,'White:FFF',NULL,1,NULL),('FL12373','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',17,'items','Items',NULL,'Section Break','Section Break',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12374','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',18,'quotation_details','Quotation Items','quotation_details','Table','Table','Quotation Item',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,'40px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12375','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',19,'sec_break23',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12376','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',20,'col_break34',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12377','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',21,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12378','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',22,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12379','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',23,'col_break35',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12380','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',24,'enq_no','Opportunity No','enq_no','Link','Link','Opportunity',0,0,0,0,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'To create Quotation against Opportunity, Select Opportunity No. and click on \'Pull Opportunity Details\' ','White:FFF',NULL,1,NULL),('FL12381','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',25,'pull_enquiry_detail','Pull Opportunity Detail',NULL,'Button','Button',NULL,NULL,0,0,0,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12382','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',26,'section_break0','Price List and Currency',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12383','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',27,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,'Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.','White:FFF',NULL,1,NULL),('FL12384','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',28,'price_list_currency','Price List Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select the currency in which price list is maintained','White:FFF',NULL,NULL,NULL),('FL12385','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',29,'plc_conversion_rate','Price List Currency Conversion Rate',NULL,'Float',NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which Price list currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12386','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',30,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12387','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',31,'currency','Currency','currency','Select','Select','link:Currency',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,'Customer\'s currency - If you want to select a currency that is not the default currency, then you must also specify the Currency Conversion Rate.','White:FFF',NULL,1,NULL),('FL12388','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',32,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','1.00','Rate at which customer\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12389','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',33,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12390','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',34,'charge','Sales Taxes and Charges','charge','Link','Link','Sales Taxes and Charges Master',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12391','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',35,'get_charges','Get Taxes and Charges',NULL,'Button','Button',NULL,NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12392','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',36,'other_charges','Sales Taxes and Charges','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12393','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',37,'calculate_charges','Calculate Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12394','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',38,'other_charges_total','Taxes and Charges Total*','other_charges_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12395','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',39,'other_charges_calculation','Taxes and Charges Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12396','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',40,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12397','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',41,'grand_total','Grand Total*','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,0,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12398','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',42,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,'Client',NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12399','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',43,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,'200px',NULL,'In Words will be visible once you save the Quotation.','White:FFF',NULL,NULL,NULL),('FL12400','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',44,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12401','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',45,'grand_total_export','Grand Total','grand_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12402','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',46,'rounded_total_export','Rounded Total','rounded_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12403','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',47,'in_words_export','In Words','in_words_export','Data','Data',NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,'200px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12404','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',48,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add Terms and Conditions for the Quotation like Payment Terms, Validity of Offer etc. You can also prepare a Terms and Conditions Master and use the Template','White:FFF',NULL,NULL,NULL),('FL12405','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',49,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12406','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',50,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12407','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',51,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12408','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',52,'terms','Term Details','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12409','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',53,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12410','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',54,'col_break98',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12411','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',55,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12412','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',56,'contact_person','Contact Person','contact_person','Link','Link','Contact',NULL,0,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12413','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',57,'col_break99',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12414','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',58,'territory','Territory',NULL,'Link',NULL,'Territory',0,0,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Will be fetched from Customer','White:FFF',NULL,1,NULL),('FL12415','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',59,'customer_group','Customer Group','customer_group','Link','Link','Customer Group',0,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12416','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',60,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filling in additional information about the Quotation will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL12417','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',61,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12418','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',62,'company','Company','company','Link','Link','Company',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies.','White:FFF',NULL,1,NULL),('FL12419','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',63,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12420','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',64,'enq_det','Opportunity Item','enq_det','Text','Text',NULL,NULL,1,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12421','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',65,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign',NULL,0,1,0,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12422','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',66,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,0,1,0,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12423','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',67,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12424','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',68,'order_lost_reason','Quotation Lost Reason','order_lost_reason','Small Text','Small Text',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12425','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',69,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12426','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',70,'status','Status','status','Select','Select','\nDraft\nSubmitted\nOrder Confirmed\nOrder Lost\nCancelled',0,NULL,1,NULL,1,1,0,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,1,NULL),('FL12427','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',71,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12428','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',72,'contact_by','Next Contact By','contact_by','Link','Link','Profile',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your sales person who will contact the customer/lead in future',NULL,NULL,NULL,NULL),('FL12429','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',73,'contact_date','Next Contact Date','contact_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your sales person will get a reminder on this date to contact the customer/lead',NULL,NULL,NULL,NULL),('FL12430','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',74,'last_contact_date','Last Contact Date','last_contact_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Date on which the lead/customer was last contacted','White:FFF',NULL,NULL,NULL),('FL12431','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',75,'to_discuss','To Discuss','to_discuss','Small Text','Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12432','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',76,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12433','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',77,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12434','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',78,'communication_history','Communication History',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Keep a track on communications regarding this Quotation. This will help you remember earlier communications in case the Customer comes back again','White:FFF',NULL,NULL,NULL),('FL12435','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',79,'communication_html','Communication HTML','follow_up','HTML','Table',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,'40px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12436','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',80,'file_list','File List',NULL,'Small Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12437','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12438','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,0,NULL),('FL12439','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','PI/2011/\nSO\nSO/10-11/\nSO1112',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12440','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',4,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select Customer','White:FFF',NULL,1,NULL),('FL12441','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',5,'customer_name','Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12442','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12443','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12444','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12445','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12446','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',10,'order_type','Order Type','order_type','Select','Select','\nSales\nMaintenance',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Sales',NULL,'White:FFF',NULL,NULL,NULL),('FL12447','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12448','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',12,'transaction_date','Sales Order Date','transaction_date','Date','Date',NULL,1,NULL,0,NULL,1,1,NULL,NULL,NULL,0,'160px','Today','The date at which current entry is made in system.',NULL,NULL,1,NULL),('FL12449','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',13,'delivery_date','Expected Delivery Date','delivery_date','Date','Date',NULL,1,0,1,NULL,0,NULL,NULL,NULL,'eval:doc.order_type == \'Sales\'',0,'160px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL12450','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',14,'po_no','P.O. No','po_no','Data','Data',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,0,'100px',NULL,'Purchase Order sent by customer','White:FFF',NULL,NULL,NULL),('FL12451','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',15,'po_date','P.O. Date','po_date','Date','Date',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,'eval:doc.po_no',0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12452','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',16,'shipping_address_name','Shipping Address Name',NULL,'Data',NULL,'Address',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12453','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',17,'shipping_address','Shipping Address',NULL,'Small Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12454','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',18,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12455','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',19,'sales_order_details','Sales Order Items','sales_order_details','Table','Table','Sales Order Item',NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12456','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',20,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12457','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',21,'col_break20',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12458','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',22,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12459','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',23,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,0,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12460','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',24,'col_break_21',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12461','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',25,'quotation_no','Quotation No','quotation_no','Link','Link','Quotation',1,NULL,1,NULL,NULL,0,NULL,'Client',NULL,0,'150px',NULL,'Quotation no against which this Sales Order is made ','White:FFF',NULL,1,NULL),('FL12462','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',26,'quotation_date','Quotation Date','quotation_date','Date','Date',NULL,NULL,1,1,NULL,0,0,NULL,NULL,'eval:doc.quotation_no',1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12463','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',27,'pull_quotation_details','Pull Quotation Items',NULL,'Button','Button','pull_quotation_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12464','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',28,'sec_break45','Price List and Currency',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12465','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',29,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,'Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.','White:FFF',NULL,NULL,NULL),('FL12466','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',30,'price_list_currency','Price List Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select the currency in which price list is maintained',NULL,NULL,NULL,NULL),('FL12467','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',31,'plc_conversion_rate','Price List Currency Conversion Rate',NULL,'Float',NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which Price list currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12468','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',32,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12469','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',33,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,'Customer\'s currency','White:FFF',NULL,NULL,NULL),('FL12470','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',34,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','1.00','Rate at which customer\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12471','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',35,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12472','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',36,'charge','Sales Taxes and Charges','charge','Link','Link','Sales Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12473','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',37,'get_charges','Get Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12474','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',38,'other_charges','Sales Taxes and Charges','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12475','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',39,'calculate_charges','Calculate Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12476','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',40,'other_charges_total','Taxes and Charges Total*','other_charges_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12477','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',41,'other_charges_calculation','Taxes and Charges Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12478','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',42,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12479','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',43,'grand_total','Grand Total*','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12480','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',44,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12481','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',45,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,'In Words will be visible once you save the Sales Order.','White:FFF',NULL,NULL,NULL),('FL12482','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',46,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12483','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',47,'grand_total_export','Grand Total (Export)','grand_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12484','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',48,'rounded_total_export','Rounded Total (Export)','rounded_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12485','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',49,'in_words_export','In Words (Export)','in_words_export','Data','Data',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12486','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',50,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12487','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',51,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12488','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',52,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12489','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',53,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12490','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',54,'terms','Terms and Conditions Details','terms','Text Editor','Text Editor',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12491','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',55,'contact_info','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12492','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',56,'col_break45',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12493','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',57,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12494','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',58,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12495','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',59,'territory','Territory',NULL,'Link',NULL,'Territory',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12496','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',60,'col_break46',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12497','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',61,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Category of customer as entered in Customer master','White:FFF',NULL,1,NULL),('FL12498','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',62,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filling in additional information about the Sales Order will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL12499','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',63,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12500','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',64,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12501','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',65,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12502','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',66,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Campaign\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12503','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',67,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12504','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',68,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.','White:FFF',NULL,NULL,NULL),('FL12505','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',69,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies.','White:FFF',NULL,1,NULL),('FL12506','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',70,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12507','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',71,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12508','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',72,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12509','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',73,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12510','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',74,'project_name','Project Name','project_name','Link','Link','Project',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Track this Sales Order against any Project','White:FFF',NULL,1,NULL),('FL12511','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',75,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,'100px','Draft',NULL,NULL,NULL,1,NULL),('FL12512','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',76,'per_delivered','% Delivered','per_delivered','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,'100px',NULL,'% of materials delivered against this Sales Order','White:FFF',NULL,1,NULL),('FL12513','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',77,'per_billed','% Amount Billed','per_billed','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,'100px',NULL,'% of materials billed against this Sales Order','White:FFF',NULL,1,NULL),('FL12514','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',78,'delivery_status','Delivery Status',NULL,'Select',NULL,'Delivered\nNot Delivered\nPartly Delivered\nClosed\nNot Applicable',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL12515','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',79,'billing_status','Billing Status',NULL,'Select',NULL,'Billed\nNot Billed\nPartly Billed\nClosed',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL12516','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',80,'packing_list','Packing List',NULL,'Section Break','Section Break',NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Display all the individual items delivered with the main items','White:FFF',NULL,NULL,NULL),('FL12517','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',81,'packing_details','Packing Details','packing_details','Table','Table','Delivery Note Packing Item',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12518','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',82,'sales_team_section_break','Sales Team',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12519','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',83,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12520','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',84,'sales_partner','Sales Partner','sales_partner','Link','Link','Sales Partner',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'150px',NULL,'Name as entered in Sales Partner master','White:FFF',NULL,1,NULL),('FL12521','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',85,'column_break7',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12522','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',86,'commission_rate','Commission Rate','commission_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12523','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',87,'total_commission','Total Commission','total_commission','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12524','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',88,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12525','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',89,'sales_team','Sales Team1','sales_team','Table','Table','Sales Team',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12526','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',90,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12527','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12528','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',2,'customer_item_code','Customer\'s Item Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12529','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',3,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150',NULL,NULL,NULL,NULL,NULL,NULL),('FL12530','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,1,NULL),('FL12531','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',5,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12532','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',6,'stock_uom','UOM','stock_uom','Data','Data',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'70px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12533','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',7,'ref_rate','Price List Rate','ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'70px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12534','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',8,'adj_rate','Discount(%)','adj_rate','Float','Float',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'70px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12535','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',9,'export_rate','Rate','export_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12536','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',10,'export_amount','Amount','export_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12537','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',11,'base_ref_rate','Price List Rate*','base_ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12538','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',12,'basic_rate','Basic Rate*','basic_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12539','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',13,'amount','Amount*','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,0,0,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12540','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',14,'reserved_warehouse','Reserved Warehouse','reserved_warehouse','Link','Link','Warehouse',NULL,NULL,1,NULL,0,1,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12541','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',15,'projected_qty','Projected Qty','projected_qty','Currency','Currency',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'70px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL12542','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',16,'actual_qty','Actual Qty',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'70px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL12543','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',17,'delivered_qty','Delivered Qty','delivered_qty','Currency','Currency',NULL,0,0,1,NULL,NULL,1,NULL,NULL,NULL,1,'100px','0.00',NULL,'White:FFF',NULL,0,NULL),('FL12544','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',18,'billed_amt','Billed Amt',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12545','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',19,'planned_qty','Planned Quantity','planned_qty','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,'50px',NULL,'For Production','White:FFF',NULL,NULL,NULL),('FL12546','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',20,'produced_qty','Produced Quantity','produced_qty','Currency','Currency',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,'50px',NULL,'For Production','White:FFF',NULL,NULL,NULL),('FL12547','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',21,'brand','Brand Name','brand','Link','Link','Brand',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12548','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',22,'item_group','Item Group','item_group','Link','Link','Item Group',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12549','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',23,'prevdoc_docname','Quotation No.','prevdoc_docname','Link','Link','Quotation',1,0,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12550','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',24,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12551','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',25,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12552','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',26,'transaction_date','Sales Order Date','transaction_date','Date','Date',NULL,0,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'The date at which current entry is made in system.','White:FFF',NULL,0,NULL),('FL12553','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Campaign','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12554','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Campaign','fields','DocType',2,'campaign','Campaign',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12555','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Campaign','fields','DocType',3,'campaign_name','Campaign Name','campaign_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12556','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Campaign','fields','DocType',4,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12557','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts','White:FFF',NULL,NULL,NULL),('FL12558','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',2,'customer_name','Customer Name','customer_name','Data','Data',NULL,1,0,0,0,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12559','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',3,'customer_type','Customer Type','customer_type','Select','Select','\nCompany\nIndividual',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12560','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',4,'naming_series','Series',NULL,'Select',NULL,'\nCUST\nCUSTMUM',NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12561','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',5,'lead_name','Lead Ref','lead_name','Link','Link','Lead',NULL,0,1,1,NULL,1,NULL,'Client',NULL,0,NULL,NULL,'Fetch lead which will be converted into customer.','White:FFF',NULL,1,NULL),('FL12562','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',6,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12563','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',7,'customer_group','Customer Group','customer_group','Link','Link','Customer Group',1,0,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'To manage Customer Groups, click here','White:FFF',NULL,1,NULL),('FL12564','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',8,'territory','Territory','territory','Link','Link','Territory',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'To manage Territory, click here','White:FFF',NULL,NULL,NULL),('FL12565','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',9,'address_contacts','Address & Contacts',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12566','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',10,'address_desc','Address Desc',NULL,'HTML',NULL,'Addresses will appear only when you save the customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12567','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',11,'address_html','Address HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12568','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',12,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12569','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',13,'contact_desc','Contact Desc',NULL,'HTML',NULL,'Contact Details will appear only when you save the customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12570','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',14,'contact_html','Contact HTML',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12571','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',15,'communication_history','Communication History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12572','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',16,'communication_html','Communication HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12573','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',17,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12574','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',18,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12575','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',19,'company','Company','company','Link','Link','Company',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'To create an Account Head under a different company, select the company and save customer.','White:FFF',NULL,1,NULL),('FL12576','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',20,'default_price_list','Default Price List',NULL,'Link',NULL,'Price List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12577','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',21,'default_currency','Default Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'This currency will get fetched in Sales transactions of this customer','White:FFF',NULL,NULL,NULL),('FL12578','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',22,'customer_details','Customer Details','customer_details','Text','Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your Customer\'s TAX registration numbers (if applicable) or any general information','White:FFF',NULL,NULL,NULL),('FL12579','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',23,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12580','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',24,'credit_days','Credit Days','credit_days','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12581','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',25,'credit_limit','Credit Limit','credit_limit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12582','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',26,'website','Website',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12583','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',27,'sales_team_section_break','Sales Team',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12584','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',28,'default_sales_partner','Default Sales Partner','default_sales_partner','Link','Link','Sales Partner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12585','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',29,'default_commission_rate','Default Commission Rate','default_commission_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12586','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',30,'sales_team','Sales Team Details','sales_team','Table','Table','Sales Team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12587','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',31,'transaction_history','Transaction History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12588','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',32,'history_html','History HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12589','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',33,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12590','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter customer enquiry for which you might raise a quotation in future','White:FFF',NULL,NULL,NULL),('FL12591','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',2,'naming_series','Naming Series','naming_series','Select','Select','ENQUIRY\nENQ',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12592','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',3,'enquiry_from','Opportunity From','enquiry_from','Select','Select','\nLead\nCustomer',NULL,NULL,1,0,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12593','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',4,'customer','Customer','customer','Link','Link','Customer',0,0,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12594','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',5,'lead','Lead','lead','Link','Link','Lead',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12595','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',6,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12596','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',7,'status','Status','status','Select','Select','\nDraft\nSubmitted\nQuotation Sent\nOrder Confirmed\nOpportunity Lost\nCancelled',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,NULL,NULL),('FL12597','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',8,'enquiry_type','Opportunity Type','enquiry_type','Select','Select','\nSales\nMaintenance',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12598','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',9,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12599','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',10,'enquiry_details','Opportunity Items','enquiry_details','Table','Table','Opportunity Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Items which do not exist in Item master can also be entered on customer\'s request','White:FFF',NULL,NULL,NULL),('FL12600','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',11,'communication_history','Communication History',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Keep a track of communication related to this enquiry which will help for future reference.','White:FFF',NULL,NULL,NULL),('FL12601','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',12,'communication_html','Communication HTML','follow_up','HTML','Table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12602','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',13,'contact_info','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12603','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',14,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12604','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',15,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12605','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',16,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12606','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',17,'address_display','Address','address','Small Text','Small Text',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12607','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',18,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12608','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',19,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12609','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',20,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12610','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',21,'contact_mobile','Contact Mobile No',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12611','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',22,'lead_name','Name','lead_name','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12612','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',23,'customer_group','Customer Group','customer_group','Link','Link','Customer Group',1,0,1,NULL,0,NULL,NULL,'Client','eval:doc.enquiry_from==\"Customer\"',0,NULL,NULL,'To Manage Customer Groups, click here','White:FFF',NULL,1,NULL),('FL12613','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',24,'territory','Territory',NULL,'Link',NULL,'Territory',1,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,'To Manage Territory, click here','White:FFF',NULL,1,NULL),('FL12614','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',25,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filing in Additional Information about the Opportunity will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL12615','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',26,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12616','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',27,'transaction_date','Opportunity Date','transaction_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'50px','Today','The date at which current entry is made in system.',NULL,NULL,NULL,NULL),('FL12617','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',28,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12618','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',29,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign\nWalk In',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12619','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',30,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter name of campaign if source of enquiry is campaign','White:FFF',NULL,NULL,NULL),('FL12620','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',31,'order_lost_reason','Quotation Lost Reason','order_lost_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12621','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',32,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12622','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',33,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12623','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',34,'contact_by','Next Contact By','contact_by','Link','Link','Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'75px',NULL,'Your sales person who will contact the customer in future','White:FFF',NULL,1,NULL),('FL12624','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',35,'contact_date','Next Contact Date','contact_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your sales person will get a reminder on this date to contact the customer','White:FFF',NULL,NULL,NULL),('FL12625','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',36,'last_contact_date','Last Contact Date','last_contact_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,0,NULL,'eval:!doc.__islocal',1,NULL,NULL,'Date on which the lead was last contacted','White:FFF',NULL,NULL,NULL),('FL12626','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',37,'to_discuss','To Discuss','to_discuss','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12627','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',38,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12628','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',39,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12629','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12630','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12631','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',3,'naming_series','Naming Series','naming_series','Select','Select','LEAD\nLEAD/10-11/\nLEAD/MUMBAI/',NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12632','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',4,'lead_name','Contact Name','lead_name','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12633','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',5,'company_name','Company Name','company_name','Data','Data',NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,'Name of organization from where lead has come','White:FFF',NULL,1,NULL),('FL12634','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',6,'source','Source','source','Select','Select','\nAdvertisement\nBlog\nCampaign\nCall\nCustomer\nExhibition\nSupplier\nWebsite',0,NULL,NULL,NULL,1,1,NULL,'Client',NULL,0,NULL,NULL,'Source of the lead. If via a campaign, select \"Campaign\"','White:FFF',NULL,1,NULL),('FL12635','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',7,'customer','From Customer','customer','Link','Link','Customer',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Existing Customer\'',0,NULL,NULL,'Source of th','White:FFF',NULL,NULL,NULL),('FL12636','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',8,'campaign_name','Campaign Name','campaign_name','Link','Link','Campaign',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Campaign\'',0,NULL,NULL,'Enter campaign name if the source of lead is campaign.','White:FFF',NULL,NULL,NULL),('FL12637','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',9,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12638','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',10,'status','Status','status','Select','Select','\nOpen\nAttempted to Contact\nContact in Future\nContacted\nInterested\nNot interested\nLead Lost\nConverted',1,NULL,NULL,NULL,1,1,NULL,'Client',NULL,0,NULL,'Open',NULL,'White:FFF',NULL,1,NULL),('FL12639','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',11,'type','Lead Type','type','Select','Select','\nClient\nChannel Partner\nConsultant',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12640','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',12,'remark','Remark','remark','Small Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12641','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',13,'communication_history','Communication History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12642','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',14,'communication_html','Communication HTML','follow_up','HTML','Table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12643','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',15,'contact_info','Contact Info',NULL,'Section Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12644','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',16,'phone','Phone','contact_no','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12645','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',17,'mobile_no','Mobile No.','mobile_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12646','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',18,'email_id','Email Id','email_id','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12647','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',19,'fax','Fax','fax','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12648','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',20,'website','Website','website','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12649','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',21,'territory','Territory','territory','Link','Link','Territory',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To manage Territory, click here','White:FFF',NULL,NULL,NULL),('FL12650','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',22,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12651','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',23,'address_line1','Address Line 1','address_line1','Data','Data',NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12652','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',24,'address_line2','Address Line 2','address_line2','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12653','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',25,'city','City','city','Data','Select',NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12654','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',26,'country','Country','country','Select','Select','link:Country',NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12655','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',27,'state','State','state','Data','Select','Suggest',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12656','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',28,'pincode','Pin Code','pincode','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12657','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',29,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12658','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',30,'lead_owner','Lead Owner','lead_owner','Link','Link','Profile',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'__user',NULL,NULL,NULL,1,NULL),('FL12659','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',31,'market_segment','Market Segment','market_segment','Select','Select','\nLower Income\nMiddle Income\nUpper Income',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12660','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',32,'industry','Industry','industry','Link','Link','Industry Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12661','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',33,'request_type','Request Type','request_type','Select','Select','\nProduct Enquiry\nRequest for Information\nSuggestions\nOther',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12662','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',34,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12663','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',35,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12664','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',36,'order_lost_reason','Lost Reason','order_lost_reason','Link','Link','Quotation Lost Reason',NULL,0,NULL,NULL,NULL,NULL,0,NULL,'eval:doc.status == \'Lead Lost\'',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12665','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',37,'contact_by','Next Contact By','contact_by','Link','Link','Profile',NULL,0,0,NULL,0,NULL,0,NULL,NULL,0,'100px',NULL,'Your sales person who will contact the lead in future','White:FFF',NULL,1,NULL),('FL12666','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',38,'contact_date','Next Contact Date','contact_date','Date','Date',NULL,NULL,NULL,NULL,NULL,0,1,0,NULL,NULL,0,'100px',NULL,'Your sales person will get a reminder on this date to contact the lead','White:FFF',NULL,1,NULL),('FL12667','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',39,'last_contact_date','Last Contact Date','last_contact_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'Date on which the lead was last contacted','White:FFF',NULL,NULL,NULL),('FL12668','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',40,'company','Company','company','Link','Link','Company',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12669','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',41,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12670','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',42,'unsubscribed','Unsubscribed',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12671','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',43,'blog_subscriber','Blog Subscriber',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12672','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',1,'details','Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12673','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',2,'approval_status','Approval Status','approval_status','Select','Select','\nDraft\nSubmitted\nApproved \nRejected\nCancelled',1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,1,NULL),('FL12674','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',3,'employee','From Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12675','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12676','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',5,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12677','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',6,'company','Company','company','Select','Link','link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12678','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',7,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12679','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',8,'posting_date','Posting Date','posting_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12680','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',9,'exp_approver','Approver','exp_approver','Select','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12681','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',10,'remark','Remark','remark','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12682','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',11,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12683','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',12,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12684','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',13,'approve','Approve',NULL,'Button','Button',NULL,NULL,1,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12685','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',14,'reject','Reject',NULL,'Button','Button',NULL,NULL,1,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12686','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',15,'expense_details','Expense Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12687','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',16,'calculate_total_amount','Calculate Total Amount',NULL,'Button','Button',NULL,NULL,NULL,1,1,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12688','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',17,'total_claimed_amount','Total Claimed Amount','total_claimed_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,1,'160px',NULL,NULL,'White:FFF',NULL,0,NULL),('FL12689','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',18,'total_sanctioned_amount','Total Sanctioned Amount','total_sanctioned_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,'White:FFF',NULL,0,NULL),('FL12690','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',19,'update_voucher','Update Voucher',NULL,'Button','Button',NULL,NULL,1,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12691','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',20,'expense_voucher_details','Expense Claim Details','expense_voucher_details','Table','Table','Expense Claim Detail',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12692','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',21,'email_id','Employees Email Id','email_id','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12693','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',1,'basic_information','Basic Information',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12694','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12695','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',3,'naming_series','Naming Series','naming_series','Select','Select','EMP/',NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series',NULL,NULL,NULL,NULL),('FL12696','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',4,'salutation','Salutation','salutation','Select','Select','\nMr\nMs',0,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12697','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',5,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12698','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',6,'employee_number','Employee Number','employee_number','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12699','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',7,'date_of_joining','Date of Joining','date_of_joining','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12700','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',8,'date_of_birth','Date of Birth','date_of_birth','Date','Date',NULL,0,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12701','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',9,'gender','Gender','gender','Select','Select','\nMale\nFemale',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12702','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',10,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12703','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',11,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12704','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',12,'status','Status','status','Select','Select','\nActive\nLeft',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Active',NULL,'White:FFF',NULL,1,NULL),('FL12705','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',13,'employment_type','Employment Type','employment_type','Link','Link','Employment Type',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12706','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',14,'scheduled_confirmation_date','Scheduled Confirmation Date','scheduled_confirmation_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12707','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',15,'final_confirmation_date','Final Confirmation Date','final_confirmation_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12708','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',16,'contract_end_date','Contract End Date','contract_end_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12709','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',17,'date_of_retirement','Date Of Retirement','date_of_retirement','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12710','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',18,'holiday_list','Holiday List','holiday_list','Link','Link','Holiday List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Applicable Holiday List','White:FFF',NULL,NULL,NULL),('FL12711','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',19,'job_profile','Job Profile',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12712','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',20,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12713','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',21,'branch','Branch','branch','Link','Link','Branch',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12714','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',22,'department','Department','department','Link','Link','Department',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12715','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',23,'designation','Designation','designation','Link','Link','Designation',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12716','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',24,'grade','Grade','grade','Link','Link','Grade',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12717','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',25,'reports_to','Reports to','reports_to','Link','Link','Employee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12718','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',26,'company_email','Email (By company)','company_email','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Provide email id registered in company',NULL,NULL,1,NULL),('FL12719','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',27,'salary_information','Salary Information',NULL,'Column Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12720','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',28,'salary_mode','Salary Mode','salary_mode','Select','Select','\nBank\nCash\nCheque',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12721','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',29,'bank_name','Bank Name','bank_name','Data','Link','Suggest',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.salary_mode == \'Bank\'',0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12722','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',30,'bank_ac_no','Bank A/C No.','bank_ac_no','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.salary_mode == \'Bank\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12723','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',31,'esic_card_no','ESIC CARD No','esic_card_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12724','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',32,'pf_number','PF Number','pf_number','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12725','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',33,'gratuity_lic_id','Gratuity LIC ID','gratuity_lic_id','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12726','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',34,'contact_details','Contact Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12727','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',35,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12728','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',36,'cell_number','Cell Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12729','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',37,'personal_email','Personal Email',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12730','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',38,'notice_number_of_days','Notice - Number of Days','notice_number_of_days','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12731','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',39,'emergency_contact_details','Emergency Contact Details',NULL,'HTML',NULL,'Emergency Contact Details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12732','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',40,'person_to_be_contacted','Person To Be Contacted',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12733','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',41,'relation','Relation',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12734','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',42,'emergency_phone_number','Emergency Phone Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12735','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',43,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12736','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',44,'permanent_accommodation_type','Permanent Accommodation Type',NULL,'Select',NULL,'\nRented\nOwned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12737','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',45,'permanent_address','Permanent Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12738','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',46,'current_accommodation_type','Current Accommodation Type',NULL,'Select',NULL,'\nRented\nOwned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12739','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',47,'current_address','Current Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12740','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',48,'personal_details','Personal Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12741','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',49,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12742','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',50,'pan_number','PAN Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12743','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',51,'passport_number','Passport Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12744','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',52,'employee_profile','Employee Profile',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12745','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',53,'date_of_issue','Date of Issue',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12746','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',54,'valid_upto','Valid Upto',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12747','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',55,'salary_structure','Salary Structure',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12748','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',56,'place_of_issue','Place of Issue',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12749','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',57,'marital_status','Marital Status',NULL,'Select',NULL,'\nSingle\nMarried\nDivorced\nWidowed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12750','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',58,'blood_group','Blood Group',NULL,'Select',NULL,'\nA+\nA-\nB+\nB-\nAB+\nAB-\nO+\nO-',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12751','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',59,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12752','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',60,'family_background','Family Background',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Here you can maintain family details like name and occupation of parent, spouse and children','White:FFF',NULL,NULL,NULL),('FL12753','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',61,'health_details','Health Details',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Here you can maintain height, weight, allergies, medical concerns etc','White:FFF',NULL,NULL,NULL),('FL12754','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',62,'educational_qualification','Educational Qualification',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12755','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',63,'educational_qualification_details','Educational Qualification Details',NULL,'Table',NULL,'Employee Education',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12756','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',64,'career_history','Career History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12757','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',65,'previous_work_experience','Previous Work Experience',NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12758','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',66,'previous_experience_details','Employee External Work History',NULL,'Table',NULL,'Employee External Work History',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12759','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',67,'history_in_company','History In Company',NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12760','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',68,'experience_in_company_details','Employee Internal Work Historys',NULL,'Table',NULL,'Employee Internal Work History',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12761','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',69,'exit','Exit',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12762','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',70,'column_break7',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12763','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',71,'resignation_letter_date','Resignation Letter Date','resignation_letter_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12764','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',72,'relieving_date','Relieving Date','relieving_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12765','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',73,'reason_for_leaving','Reason for Leaving','reason_for_leaving','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12766','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',74,'leave_encashed','Leave Encashed?','leave_encashed','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12767','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',75,'encashment_date','Encashment Date','encashment_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12768','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',76,'exit_interview_details','Exit Interview Details','col_brk6','Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12769','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',77,'held_on','Held On','held_on','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12770','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',78,'reason_for_resignation','Reason for Resignation','reason_for_resignation','Select','Select','\nBetter Prospects\nHealth Concerns',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12771','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',79,'new_workplace','New Workplace','new_workplace','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12772','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',80,'feedback','Feedback','feedback','Small Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12773','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',81,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12774','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',82,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12775','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12776','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',2,'employee','Employee',NULL,'Link',NULL,'Employee',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12777','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',3,'employee_name','Employee Name',NULL,'Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12778','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',4,'leave_type','Leave Type',NULL,'Select',NULL,'link:Leave Type',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12779','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',5,'leave_balance','Leave Balance',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12780','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',6,'posting_date','Posting Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Today',NULL,'White:FFF',NULL,NULL,NULL),('FL12781','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',7,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12782','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',8,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12783','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',9,'half_day','Half Day',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12784','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',10,'from_date','From Date',NULL,'Date',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12785','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',11,'to_date','To Date',NULL,'Date',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12786','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',12,'total_leave_days','Total Leave Days',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12787','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',13,'description','Description',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12788','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',14,'letter_head','Letter Head',NULL,'Link',NULL,'Letter Head',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12789','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',15,'amended_from','Amended From',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12790','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',16,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12791','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',1,'contact_details','Contact Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12792','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12793','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',3,'first_name','First Name','first_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12794','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',4,'last_name','Last Name','last_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12795','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',5,'customer','Customer','customer','Link','Link','Customer',NULL,NULL,0,NULL,NULL,NULL,NULL,'Client','eval:!doc.supplier && !doc.sales_partner',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12796','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',6,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.supplier && !doc.sales_partner',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12797','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',7,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client','eval:!doc.customer && !doc.sales_partner',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12798','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',8,'supplier_name','Supplier Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'eval:!doc.customer && !doc.sales_partner',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12799','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',9,'sales_partner','Sales Partner',NULL,'Link',NULL,'Sales Partner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.customer && !doc.supplier',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12800','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',10,'is_primary_contact','Is Primary Contact','is_primary_contact','Check','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:(doc.customer || doc.supplier || doc.sales_partner)',0,NULL,'0',NULL,'White:FFF',NULL,NULL,NULL),('FL12801','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12802','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',12,'email_id','Email Id','email_id','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12803','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',13,'phone','Phone','contact_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12804','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',14,'mobile_no','Mobile No','mobile_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12805','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',15,'department','Department',NULL,'Data',NULL,'Suggest',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter department to which this Contact belongs','White:FFF',NULL,NULL,NULL),('FL12806','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',16,'designation','Designation',NULL,'Data',NULL,'Suggest',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter designation of this Contact','White:FFF',NULL,NULL,NULL),('FL12807','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',17,'unsubscribed','Unsubscribed',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12808','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',18,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12809','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Rename Tool','fields','DocType',1,'select_doctype','Select DocType',NULL,'Select',NULL,'\nAccount\nCompany\nCustomer\nSupplier\nEmployee\nWarehouse\nItem\nProfile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12810','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Rename Tool','fields','DocType',2,'document_to_rename','Document to rename',NULL,'Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12811','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Rename Tool','fields','DocType',3,'new_name','New Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12812','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Rename Tool','fields','DocType',4,'rename','Rename',NULL,'Button',NULL,'rename',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12813','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',1,'question','Question','question','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12814','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',2,'points','Points',NULL,'Int',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12815','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',3,'answer','Answer','answer','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12816','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',4,'_user_tags','User Tags',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12817','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',5,'tag_1','Tag 1','tag_1','Link','Link','Question Tag',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12818','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',6,'_users_voted','Users Voted',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12819','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',7,'tag_2','Tag 2','tag_2','Link','Link','Question Tag',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12820','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',8,'tag_3','Tag 3','tag_3','Link','Link','Question Tag',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12821','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',9,'file_list','File List','file_list','Text','Text',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12822','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',1,'packing_slip_details','Packing Slip Items',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12823','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12824','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',3,'delivery_note','Delivery Note',NULL,'Link',NULL,'Delivery Note',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Indicates that the package is a part of this delivery','White:FFF',NULL,NULL,NULL),('FL12825','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',4,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12826','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',5,'naming_series','Series',NULL,'Select',NULL,'PS',NULL,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12827','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',6,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12828','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',7,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12829','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',8,'from_case_no','From Package No.',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,'50px',NULL,'Identification of the package for the delivery (for print)','White:FFF',NULL,NULL,NULL),('FL12830','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',9,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12831','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',10,'to_case_no','To Package No.',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'50px',NULL,'If more than one package of the same type (for print)','White:FFF',NULL,NULL,NULL),('FL12832','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',11,'package_item_details','Package Item Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12833','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',12,'item_details','Items',NULL,'Table',NULL,'Packing Slip Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12834','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',13,'package_weight_details','Package Weight Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12835','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',14,'net_weight_pkg','Net Weight',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'The net weight of this package. (calculated automatically as sum of net weight of items)','White:FFF',NULL,NULL,NULL),('FL12836','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',15,'net_weight_uom','Net Weight UOM',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12837','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',16,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12838','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',17,'gross_weight_pkg','Gross Weight',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The gross weight of the package. Usually net weight + packaging material weight. (for print)','White:FFF',NULL,NULL,NULL),('FL12839','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',18,'gross_weight_uom','Gross Weight UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12840','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',19,'misc_details','Misc Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12841','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',20,'amended_from','Amended From',NULL,'Link',NULL,'Packing Slip',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12842','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',21,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12843','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12844','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12845','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','DN',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12846','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',4,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12847','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',5,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12848','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',6,'customer_address','Select Shipping Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12849','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',7,'address_display','Shipping Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12850','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',8,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12851','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',9,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12852','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',10,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12853','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12854','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',12,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,0,NULL,1,1,NULL,NULL,NULL,0,'100px','Today','The date at which current entry will get or has actually executed.','White:FFF',NULL,1,NULL),('FL12855','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',13,'challan_no','Challan No','challan_no','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12856','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',14,'challan_date','Challan Date','challan_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12857','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',15,'po_no','P.O. No','po_no','Data','Data',NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12858','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',16,'po_date','P.O. Date','po_date','Data','Data',NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,'eval:doc.po_no',1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12859','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',17,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12860','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',18,'delivery_note_details','Delivery Note Items','delivery_note_details','Table','Table','Delivery Note Item',NULL,NULL,0,NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12861','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',19,'sales_bom_help','Sales BOM Help',NULL,'HTML',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12862','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',20,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12863','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',21,'col_break24',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12864','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',22,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12865','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',23,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12866','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',24,'col_break28',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12867','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',25,'sales_order_no','Sales Order No','sales_order_no','Link','Link','Sales Order',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'You can make a delivery note from multiple sales orders. Select sales orders one by one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL12868','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',26,'get_items','Get Items',NULL,'Button','Button','pull_sales_order_details',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12869','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',27,'sec_break25','Price List and Currency',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12870','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',28,'col_break23',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12871','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',29,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.','White:FFF',NULL,NULL,NULL),('FL12872','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',30,'price_list_currency','Price List Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select the currency in which price list is maintained','White:FFF',NULL,NULL,NULL),('FL12873','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',31,'plc_conversion_rate','Price List Currency Conversion Rate',NULL,'Float',NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which Price list currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12874','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',32,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12875','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',33,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Customer\'s Currency','White:FFF',NULL,NULL,NULL),('FL12876','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',34,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,'1.00','Rate at which customer\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12877','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',35,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12878','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',36,'charge','Taxes and Charges','charge','Link','Link','Sales Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you have created a standard template in Sales Taxes and Charges Master, select one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL12879','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',37,'get_charges','Get Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12880','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',38,'other_charges','Sales Taxes and Charges','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12881','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',39,'other_charges_total','Taxes and Charges Total','other_charges_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12882','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',40,'calculate_charges','Calculate Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12883','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',41,'other_charges_calculation','Taxes and Charges Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12884','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',42,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12885','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',43,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12886','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',44,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12887','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',45,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,'200px',NULL,'In Words will be visible once you save the Delivery Note.','White:FFF',NULL,NULL,NULL),('FL12888','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',46,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12889','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',47,'grand_total_export','Grand Total (Export)','grand_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12890','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',48,'rounded_total_export','Rounded Total (Export)','rounded_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12891','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',49,'in_words_export','In Words (Export)','in_words_export','Data','Data',NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,'150px',NULL,'In Words (Export) will be visible once you save the Delivery Note.','White:FFF',NULL,NULL,NULL),('FL12892','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',50,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12893','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',51,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12894','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',52,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,1,NULL,NULL,NULL,NULL,'Server',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12895','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',53,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12896','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',54,'terms','Terms and Conditions Details','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12897','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',55,'transporter_info','Transporter Info',NULL,'Section Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12898','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',56,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12899','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',57,'transporter_name','Transporter Name','transporter_name','Data','Data',NULL,NULL,NULL,1,NULL,0,0,NULL,'Client',NULL,0,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12900','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',58,'col_break34',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12901','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',59,'lr_no','LR No','lr_no','Data','Data',NULL,NULL,NULL,1,NULL,0,0,NULL,NULL,NULL,0,'100px',NULL,'Transporter lorry number','White:FFF',NULL,NULL,NULL),('FL12902','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',60,'lr_date','LR Date','lr_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'100px','Today','Date on which lorry started from your warehouse','White:FFF',NULL,NULL,NULL),('FL12903','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',61,'contact_info','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12904','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',62,'col_break20',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12905','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',63,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12906','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',64,'col_break21',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12907','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',65,'territory','Territory',NULL,'Link',NULL,'Territory',1,0,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12908','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',66,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12909','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',67,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filling in Additional Information about the Delivery Note will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL12910','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',68,'posting_time','Posting Time','posting_time','Time','Time',NULL,0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,'Time at which items were delivered from warehouse','White:FFF',NULL,0,NULL),('FL12911','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',69,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,'150px','Draft',NULL,NULL,NULL,1,NULL),('FL12912','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',70,'letter_head','Letter Head','letter_head','Select','Link','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12913','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',71,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12914','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',72,'project_name','Project Name','project_name','Link','Link','Project',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Track this Delivery Note against any Project','White:FFF',NULL,1,NULL),('FL12915','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',73,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12916','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',74,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Campaign\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12917','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',75,'print_without_amount','Print Without Amount','print_without_amount','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12918','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',76,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12919','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',77,'per_billed','% Amount Billed','per_billed','Currency','Currency',NULL,1,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials billed against this Delivery Note','White:FFF',NULL,1,NULL),('FL12920','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',78,'billing_status','Billing Status',NULL,'Select',NULL,'\nNot Billed\nPartly Billed\nFully Billed',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12921','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',79,'per_installed','% Installed','per_installed','Currency','Currency',NULL,1,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials delivered against this Delivery Note','White:FFF',NULL,1,NULL),('FL12922','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',80,'installation_status','Installation Status',NULL,'Select',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12923','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',81,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,0,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12924','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',82,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12925','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',83,'to_warehouse','To Warehouse','to_warehouse','Link','Link','Warehouse',NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Required only for sample item.','White:FFF',NULL,NULL,NULL),('FL12926','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',84,'excise_page','Excise Page Number','excise_page','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12927','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',85,'instructions','Instructions','instructions','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12928','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',86,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL12929','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',87,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12930','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',88,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12931','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',89,'packing_list','Packing List',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12932','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',90,'packing_details','Packing Details','packing_details','Table','Table','Delivery Note Packing Item',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12933','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',91,'sales_team_section_break','Sales Team',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12934','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',92,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12935','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',93,'sales_partner','Sales Partner','sales_partner','Link','Link','Sales Partner',NULL,NULL,1,NULL,NULL,0,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12936','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',94,'column_break7',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12937','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',95,'commission_rate','Commission Rate (%)','commission_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12938','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',96,'total_commission','Total Commission','total_commission','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12939','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',97,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12940','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',98,'sales_team','Sales Team1','sales_team','Table','Table','Sales Team',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12941','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',99,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12942','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',1,'details','Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12943','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12944','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',3,'status','Status','status','Select','Select','\nIn Store\nDelivered\nNot in Use\nPurchase Returned',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'In Store',NULL,NULL,NULL,1,NULL),('FL12945','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',4,'serial_no','Serial No','serial_no','Data','Data',NULL,1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12946','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',5,'item_code','Item Code','item_code','Link','Link','Item',0,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12947','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12948','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',7,'item_name','Item Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12949','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',8,'description','Description','description','Text','Text',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,1,NULL),('FL12950','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',9,'item_group','Item Group','item_group','Link','Link','Item Group',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12951','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',10,'brand','Brand','brand','Link','Link','Brand',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12952','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',11,'purchase_details','Purchase Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12953','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',12,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12954','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',13,'purchase_document_type','Purchase Document Type',NULL,'Select',NULL,'\nPurchase Receipt\nStock Entry',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12955','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',14,'purchase_document_no','Purchase Document No',NULL,'Data',NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12956','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',15,'purchase_date','Purchase Date','purchase_date','Date','Date',NULL,0,NULL,NULL,NULL,0,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12957','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',16,'purchase_time','Incoming Time',NULL,'Time',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12958','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',17,'purchase_rate','Incoming Rate','purchase_rate','Currency','Currency',NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12959','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',18,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12960','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',19,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',1,NULL,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12961','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',20,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12962','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',21,'supplier_name','Supplier Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12963','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',22,'address_display','Supplier Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12964','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',23,'delivery_details','Delivery Details',NULL,'Section Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12965','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',24,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12966','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',25,'delivery_document_type','Delivery Document Type',NULL,'Select',NULL,'\nDelivery Note\nSales Invoice\nStock Entry',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12967','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',26,'delivery_document_no','Delivery Document No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12968','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',27,'customer_address','Customer Address','customer_address','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12969','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',28,'delivery_date','Delivery Date','delivery_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12970','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',29,'delivery_time','Delivery Time',NULL,'Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12971','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',30,'is_cancelled','Is Cancelled','is_cancelled','Select','Select','\nYes\nNo',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12972','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',31,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12973','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',32,'customer','Customer','customer','Link','Link','Customer',0,NULL,1,NULL,NULL,1,NULL,'Client',NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12974','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',33,'customer_name','Customer Name','customer_name','Data','Data',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12975','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',34,'delivery_address','Delivery Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12976','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',35,'territory','Territory','territory','Link','Link','Territory',NULL,NULL,1,0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12977','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',36,'warranty_amc_details','Warranty / AMC Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12978','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',37,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12979','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',38,'maintenance_status','Maintenance Status','maintenance_status','Select','Select','\nUnder Warranty\nOut of Warranty\nUnder AMC\nOut of AMC',1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12980','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',39,'warranty_period','Warranty Period (Days)','warranty_period','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12981','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',40,'column_break7',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12982','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',41,'warranty_expiry_date','Warranty Expiry Date','warranty_expiry_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12983','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',42,'amc_expiry_date','AMC Expiry Date','amc_expiry_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12984','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',43,'more_info','More Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12985','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',44,'serial_no_details','Serial No Details',NULL,'Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12986','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',45,'company','Company',NULL,'Select',NULL,'link:Company',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12987','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',46,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12988','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',47,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12989','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',48,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12990','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',49,'sle_exists','SLE Exists',NULL,'Check',NULL,NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12991','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Landed Cost Master','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12992','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Landed Cost Master','fields','DocType',2,'title','Title','title','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12993','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Landed Cost Master','fields','DocType',3,'landed_cost_details','Landed Cost Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12994','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Landed Cost Master','fields','DocType',4,'landed_cost','Landed Cost','landed_cost','Table','Table','Landed Cost Master Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12995','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',1,'return_date','Return Date','return_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12996','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',2,'return_type','Return Type','return_type','Select','Select','\nSales Return\nPurchase Return',NULL,NULL,NULL,NULL,1,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12997','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',3,'delivery_note_no','Delivery Note No','delivery_note_no','Link','Link','Delivery Note',NULL,1,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12998','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',4,'sales_invoice_no','Sales Invoice No',NULL,'Link',NULL,'Sales Invoice',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12999','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',5,'purchase_receipt_no','Purchase Receipt No','purchase_receipt_no','Link','Link','Purchase Receipt',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13000','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',6,'cust_supp','Customer/Supplier',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13001','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',7,'cust_supp_name','Cust/Supp Name',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13002','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',8,'cust_supp_address','Cust/Supp Address',NULL,'Small Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13003','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',9,'get_items','Get Items',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13004','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',10,'return_details','Sales and Purchase Return Items','return_details','Table','Table','Sales and Purchase Return Item',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13005','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',11,'make_stock_entry','Make Stock Entry',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13006','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',12,'make_excise_invoice','Make Excise Invoice',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13007','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',13,'make_credit_note','Make Credit Note',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13008','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',14,'make_debit_note','Make Debit Note',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13009','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Sales BOM','fields','DocType',1,'basic_section','Sales BOM Item',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13010','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Sales BOM','fields','DocType',2,'new_item_code','Parent Item','new_item_code','Link','Data','Item',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'The Item that represents the Package. This Item must have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\"','White:FFF',NULL,NULL,NULL),('FL13011','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Sales BOM','fields','DocType',3,'item_section','Package Items',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'List items that form the package.','White:FFF',NULL,NULL,NULL),('FL13012','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Sales BOM','fields','DocType',4,'sales_bom_items','Sales BOM Items','sales_bom_items','Table','Table','Sales BOM Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13013','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',1,'process','Process',NULL,'HTML',NULL,'
    Process:
    1. Fetch and select Purchase Receipt
    2. Enter extra costs
    3. Click on Update Landed Cost button
    4. Cost will be added into other charges table of selected PR proportionately based on net total
    5. Item Valuation Rate will be recalculated
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13014','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',2,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13015','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',3,'from_pr_date','From PR Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13016','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',4,'to_pr_date','To PR Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13017','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',5,'currency','Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13018','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',6,'get_purchase_receipt','Get Purchase Receipt',NULL,'Button',NULL,'get_purchase_receipts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13019','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',7,'lc_pr_details','Landed Cost Purchase Receipts',NULL,'Table',NULL,'Landed Cost Purchase Receipt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13020','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',8,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13021','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',9,'landed_cost','Select Landed Cost Items Master',NULL,'Link',NULL,'Landed Cost Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13022','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',10,'get_details','Get Details',NULL,'Button',NULL,'get_landed_cost_master_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13023','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',11,'landed_cost_details','Landed Cost Items',NULL,'Table',NULL,'Landed Cost Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13024','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',12,'update_pr','Update PR',NULL,'Button',NULL,'update_landed_cost',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13025','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',1,'barcode','Barcode',NULL,'Data',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13026','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL13027','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',3,'customer_item_code','Customer\'s Item Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13028','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',4,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13029','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',5,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13030','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',6,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL13031','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',7,'stock_uom','UOM','stock_uom','Data','Data',NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13032','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',8,'ref_rate','Price List Rate','ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,0,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL13033','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',9,'adj_rate','Discount (%)','adj_rate','Float','Float',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL13034','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',10,'export_rate','Rate','export_rate','Currency','Currency',NULL,NULL,NULL,0,NULL,0,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13035','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',11,'export_amount','Amount','export_amount','Currency','Currency',NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13036','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',12,'base_ref_rate','Price List Rate*','base_ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13037','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',13,'basic_rate','Rate*','basic_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'150px','0.00',NULL,NULL,NULL,NULL,NULL),('FL13038','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',14,'amount','Amount*','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13039','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',15,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13040','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',16,'serial_no','Serial No','serial_no','Text','Text',NULL,NULL,NULL,0,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13041','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',17,'batch_no','Batch No','batch_no','Link','Link','Batch',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13042','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',18,'item_group','Item Group','item_group','Link','Link','Item Group',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13043','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',19,'brand','Brand Name','brand','Link','Link','Brand',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13044','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',20,'actual_qty','Available Qty at Warehouse','actual_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13045','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',21,'billed_amt','Billed Amt',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13046','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',22,'installed_qty','Installed Qty','installed_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13047','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',23,'packed_qty','Packed Quantity',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,NULL,1,NULL,'0',NULL,'White:FFF',NULL,NULL,NULL),('FL13048','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',24,'prevdoc_doctype','Document Type','prevdoc_doctype','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL13049','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',25,'prevdoc_docname','Against Document No','prevdoc_docname','Data','Data',NULL,1,0,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13050','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',26,'prevdoc_date','Against Document Date','prevdoc_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13051','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',27,'prevdoc_detail_docname','Against Document Detail No','prevdoc_detail_docname','Data','Data',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL13052','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',28,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13053','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',29,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13054','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',1,'col1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13055','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',2,'naming_series','Series','naming_series','Select','Select','\nSTE',0,0,1,0,1,1,0,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,0,NULL),('FL13056','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',3,'purpose','Purpose','purpose','Select','Select','Material Issue\nMaterial Receipt\nMaterial Transfer\nSales Return\nPurchase Return\nSubcontracting\nProduction Order\nOther',0,0,0,0,1,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13057','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',4,'delivery_note_no','Delivery Note No','delivery_note_no','Link','Link','Delivery Note',1,1,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13058','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',5,'purchase_receipt_no','Purchase Receipt No','purchase_receipt_no','Link','Link','Purchase Receipt',1,1,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13059','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',6,'sales_invoice_no','Sales Invoice No',NULL,'Link',NULL,'Sales Invoice',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13060','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',7,'process','Process','process','Select','Select','\nMaterial Transfer\nBackflush',0,1,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13061','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',8,'production_order','Production Order','production_order','Link','Link','Production Order',1,1,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13062','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',9,'bom_no','BOM No',NULL,'Link',NULL,'BOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.purpose == \'Other\'',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13063','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',10,'consider_sa_items_as_raw_materials','Consider SA Items as Raw Materials',NULL,'Select',NULL,'\nNo\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.purpose == \'Other\'',0,NULL,NULL,'Select \"Yes\" if stock is maintained and tracked for sub-assembly items. Select \"No\" if you want child items of sub-assembly for material transfer.','White:FFF',NULL,NULL,NULL),('FL13064','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',11,'fg_completed_qty','FG Completed Qty','fg_completed_qty','Currency','Currency',NULL,0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13065','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',12,'get_items','Get Items',NULL,'Button','Button','get_items',0,0,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13066','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',13,'warehouse_html','Warehouse HTML',NULL,'HTML','HTML','
    Warehouse
    ',NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13067','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',14,'from_warehouse','Source Warehouse','from_warehouse','Link','Link','Warehouse',0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13068','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',15,'to_warehouse','Target Warehouse','to_warehouse','Link','Link','Warehouse',0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,'Notes: Either Source or Target is Mandatory','White:FFF',NULL,0,NULL),('FL13069','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',16,'col2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13070','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',17,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,0,1,0,1,1,0,NULL,NULL,0,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL13071','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',18,'posting_time','Posting Time','posting_time','Time','Time',NULL,0,0,1,0,1,1,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13072','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',19,'remarks','Remarks','remarks','Text','Text',NULL,0,0,1,0,1,1,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13073','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',20,'items_section','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13074','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',21,'mtn_details','MTN Details','mtn_details','Table','Table','Stock Entry Detail',0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13075','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',22,'item_section',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13076','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',23,'total_amount','Total Amount','total_amount','Currency','Currency',NULL,0,0,1,0,0,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13077','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',24,'col3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13078','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',25,'get_stock_and_rate','Get Stock and Rate',NULL,'Button','Button','get_stock_and_rate',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13079','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',26,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13080','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',27,'supplier','Supplier','supplier','Link','Link','Supplier',0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13081','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',28,'supplier_name','Supplier Name','supplier_name','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13082','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',29,'supplier_address','Supplier Address','supplier_address','Small Text','Small Text',NULL,0,0,0,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13083','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',30,'customer','Customer','customer','Link','Link','Customer',0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13084','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',31,'customer_name','Customer Name','customer_name','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13085','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',32,'customer_address','Customer Address','customer_address','Small Text','Small Text',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13086','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',33,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13087','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',34,'col4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13088','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',35,'project_name','Project Name','project_name','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13089','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',36,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13090','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',37,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,0,1,1,0,0,1,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13091','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',38,'transfer_date','Transfer Date','transfer_date','Date','Date',NULL,0,0,0,0,1,1,0,NULL,NULL,0,NULL,'Today',NULL,NULL,NULL,1,NULL),('FL13092','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',39,'col5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13093','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',40,'is_excisable_goods','Is Excisable Goods','is_excisable_goods','Select','Select','\nYes\nNo',0,0,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13094','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',41,'excisable_goods','Excisable Goods','excisable_goods','Select','Select','\nReturnable\nNon-Returnable',0,0,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13095','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',42,'under_rule','Under Rule','under_rule','Select','Select','\nOrdinary\n57 AC (5) a\n57 F (2) Non-Exc.',0,1,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13096','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',43,'transporter','Transporter','transporter','Data','Data',NULL,0,0,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13097','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',44,'company','Company','company','Link','Link','Company',0,0,1,0,1,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13098','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',45,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,0,1,0,1,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13099','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',46,'amended_from','Amended From','amended_from','Link','Link','Stock Entry',0,0,1,0,0,1,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13100','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',47,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,0,0,1,0,0,1,0,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,0,NULL),('FL13101','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',1,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13102','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',2,'warehouse_type','Warehouse Type','warehouse_type','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13103','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',3,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13104','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',4,'reserved_qty','Reserved Quantity','reserved_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,0,NULL),('FL13105','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',5,'actual_qty','Actual Quantity','actual_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,1,NULL),('FL13106','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',6,'ordered_qty','Ordered Quantity','ordered_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,0,NULL),('FL13107','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',7,'indented_qty','Quantity Requested for Purchase','indented_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,0,NULL),('FL13108','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',8,'planned_qty','Planned Qty','planned_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13109','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',9,'projected_qty','Projected Qty','projected_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13110','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',10,'ma_rate','Moving Average Rate','ma_rate','Currency','Currency',NULL,0,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13111','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',11,'stock_uom','UOM','stock_uom','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13112','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',12,'fcfs_rate','FCFS Rate','fcfs_rate','Currency','Currency',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13113','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',13,'valuation_rate','Valuation Rate','valuation_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13114','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',14,'stock_value','Stock Value','stock_value','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13115','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',1,'steps','Steps',NULL,'HTML',NULL,'
    Steps:
    1. Enter Reconciliation Date and Time
    2. Save the document
    3. Attach csv file as per template.
    4. Submit the document
    5. Enter tilde (~) sign if no difference in qty or valuation rate
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13116','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',2,'reconciliation_date','Reconciliation Date','reconciliation_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13117','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',3,'reconciliation_time','Reconciliation Time','reconciliation_time','Time','Time',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13118','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',4,'remark','Remark','remark','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13119','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',5,'download_template','Download Template',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13120','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',6,'file_list','File List','file_list','Text','Text',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13121','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',7,'diff_info','Diff Info',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13122','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',8,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL13123','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',9,'amended_from','Amended From',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13124','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13125','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13126','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','\nGRN',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL13127','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',4,'supplier','Supplier','supplier','Link','Link','Supplier',1,NULL,1,NULL,1,NULL,0,'Client',NULL,0,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13128','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',5,'supplier_name','Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13129','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13130','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13131','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13132','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13133','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',10,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13134','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',11,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,1,NULL,1,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry will get or has actually executed.','White:FFF',NULL,1,NULL),('FL13135','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',12,'posting_time','Posting Time','posting_time','Time','Time',NULL,0,NULL,1,NULL,1,1,NULL,NULL,NULL,0,'100px',NULL,'Time at which materials were received','White:FFF',NULL,0,NULL),('FL13136','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',13,'challan_no','Challan No','challan_no','Data','Data',NULL,NULL,1,0,NULL,0,1,NULL,NULL,NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13137','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',14,'challan_date','Challan Date','challan_date','Date','Date',NULL,NULL,1,0,NULL,0,1,NULL,NULL,NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13138','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',15,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13139','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',16,'purchase_receipt_details','Purchase Receipt Items','purchase_receipt_details','Table','Table','Purchase Receipt Item',NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13140','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',17,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13141','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',18,'net_total','Net Total','net_total','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13142','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',19,'net_total_import','Net Total (Import)','net_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13143','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',20,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13144','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',21,'get_current_stock','Get Current Stock',NULL,'Button','Button','get_current_stock',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13145','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',22,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13146','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',23,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Supplier\'s currency','White:FFF',NULL,NULL,NULL),('FL13147','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',24,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,'1.00','Rate at which supplier\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL13148','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',25,'purchase_order_no','Purchase Order','purchase_order_no','Link','Link','Purchase Order',NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'You can make a purchase receipt from multiple purchase orders. Select purchase orders one by one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL13149','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',26,'pull_purchase_order_details','Pull Purchase Order Details',NULL,'Button','Button','get_po_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13150','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',27,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add / Edit Taxes and Charges','White:FFF',NULL,NULL,NULL),('FL13151','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',28,'purchase_other_charges','Purchase Taxes and Charges','purchase_other_charges','Link','Link','Purchase Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL13152','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',29,'get_tax_detail','Get Tax Detail',NULL,'Button','Button','get_purchase_tax_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13153','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',30,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13154','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',31,'calculate_tax','Calculate Tax',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13155','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',32,'total_tax','Total Tax','total_tax','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13156','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',33,'tax_calculation','Tax Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13157','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',34,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Detailed Breakup of the totals','White:FFF',NULL,NULL,NULL),('FL13158','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',35,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13159','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',36,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13160','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',37,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Purchase Receipt.','White:FFF',NULL,NULL,NULL),('FL13161','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',38,'other_charges_added','Taxes and Charges Added','other_charges_added','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13162','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',39,'other_charges_deducted','Taxes and Charges Deducted','other_charges_deducted','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13163','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',40,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13164','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',41,'grand_total_import','Grand Total (Import)','grand_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13165','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',42,'in_words_import','In Words (Import)','in_words_import','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13166','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',43,'other_charges_added_import','Taxes and Charges Added (Import)','other_charges_added_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13167','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',44,'other_charges_deducted_import','Taxes and Charges Deducted (Import)','other_charges_deducted_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13168','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',45,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add Terms and Conditions for the Purchase Receipt. You can also prepare a Terms and Conditions Master and use the Template.','White:FFF',NULL,NULL,NULL),('FL13169','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',46,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13170','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',47,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13171','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',48,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13172','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',49,'terms','Terms and Conditions1','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13173','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',50,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13174','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',51,'supplier_address','Supplier Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13175','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',52,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13176','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',53,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filing in Additional Information about the Purchase Receipt will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL13177','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',54,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13178','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',55,'per_billed','% Billed','per_billed','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials billed against this Purchase Receipt','White:FFF',NULL,NULL,NULL),('FL13179','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',56,'is_subcontracted','Is Subcontracted','is_subcontracted','Select','Select','\nYes\nNo',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" for sub - contracting items','White:FFF',NULL,NULL,NULL),('FL13180','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',57,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13181','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',58,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL13182','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',59,'range','Range','range','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13183','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',60,'bill_no','Bill No','bill_no','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13184','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',61,'bill_date','Bill Date','bill_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13185','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',62,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13186','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',63,'company','Company','company','Link','Link','Company',1,0,1,NULL,1,0,NULL,NULL,NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL13187','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',64,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL13188','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',65,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13189','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',66,'other_details','Other Details',NULL,'HTML','HTML','
    Other Details
    ',NULL,1,1,NULL,0,NULL,NULL,NULL,NULL,0,'30%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13190','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',67,'rejected_warehouse','Rejected Warehouse','rejected_warehouse','Link','Link','Warehouse',NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,'Warehouse where you are maintaining stock of rejected items','White:FFF',NULL,NULL,NULL),('FL13191','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',68,'supplier_warehouse','Supplier Warehouse','supplier_warehouse','Link','Link','Warehouse',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'50px',NULL,'Supplier warehouse where you have issued raw materials for sub - contracting','White:FFF',NULL,NULL,NULL),('FL13192','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',69,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13193','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',70,'instructions','Instructions','instructions','Small Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13194','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',71,'remarks','Remarks',NULL,'Small Text',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13195','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',72,'transporter_info','Transporter Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13196','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',73,'transporter_name','Transporter Name','transporter_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13197','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',74,'lr_no','LR No','lr_no','Data','Data',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'Transporter lorry number','White:FFF',NULL,NULL,NULL),('FL13198','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',75,'lr_date','LR Date','lr_date','Date','Date',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'Date on which lorry started from supplier warehouse','White:FFF',NULL,NULL,NULL),('FL13199','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',76,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13200','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',77,'raw_material_details','Raw Material Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Following table will show values if items are sub - contracted. These values will be fetched from the master of \"Bill of Materials\" of sub - contracted items.','White:FFF',NULL,NULL,NULL),('FL13201','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',78,'pr_raw_material_details','Purchase Receipt Item Supplieds','pr_raw_material_details','Table','Table','Purchase Receipt Item Supplied',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13202','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',79,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13203','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',1,'warehouse_detail','Warehouse Detail',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13204','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',2,'warehouse_name','Warehouse Name','warehouse_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13205','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',3,'warehouse_type','Warehouse Type','warehouse_type','Link','Link','Warehouse Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13206','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',4,'company','Company','company','Link','Link','Company',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13207','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',5,'warehouse_contact_info','Warehouse Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'For Reference Only.','White:FFF',NULL,NULL,NULL),('FL13208','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',6,'email_id','Email Id','email_id','Data','Data',NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13209','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',7,'phone_no','Phone No','phone_no','Data','Int','Phone',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13210','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',8,'mobile_no','Mobile No','mobile_no','Data','Int','Phone',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13211','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',9,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13212','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',10,'address_line_1','Address Line 1','address_line_1','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13213','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',11,'address_line_2','Address Line 2','address_line_2','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13214','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',12,'city','City','city','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13215','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',13,'state','State','state','Data','Select','Suggest',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13216','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',14,'pin','PIN','pin','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13217','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',15,'repost_stock','Repost Stock',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'For Admin use only. Please report errors to support@erpnext.com','White:FFF',NULL,NULL,NULL),('FL13218','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',16,'repost_stock_ledger','Repost Stock Ledger',NULL,'Button','Button','repost_stock',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13219','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',1,'parent_item','Parent Item','parent_item','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13220','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13221','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',3,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13222','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',4,'parent_detail_docname','Parent Detail docname','parent_detail_docname','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13223','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',5,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13224','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',6,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13225','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',7,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13226','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',8,'serial_no','Serial No',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13227','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',9,'batch_no','Batch No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13228','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',10,'actual_qty','Actual Qty','actual_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13229','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',11,'projected_qty','Projected Qty','projected_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13230','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',12,'uom','UOM','uom','Link','Link','UOM',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13231','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',13,'prevdoc_doctype','Prevdoc DocType','prevdoc_doctype','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13232','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',14,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13233','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',1,'item_code','Item','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13234','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',2,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13235','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13236','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',4,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13237','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',5,'uom','UOM','uom','Link','Link','UOM',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13238','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges Master','fields','DocType',1,'title','Title','title','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13239','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges Master','fields','DocType',2,'is_default','Default',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13240','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges Master','fields','DocType',3,'other_charges','Sales Taxes and Charges Master','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'* Will be calculated in the transaction.','White:FFF',NULL,NULL,NULL),('FL13241','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges Master','fields','DocType',4,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13242','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Budget Distribution Detail','fields','DocType',1,'month','Month','month','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13243','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Budget Distribution Detail','fields','DocType',2,'percentage_allocation','Percentage Allocation','percentage_allocation','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13244','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',1,'sb0','Cost Center Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13245','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13246','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',3,'cost_center_name','Cost Center Name','cost_center_name','Data','Data',NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13247','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',4,'parent_cost_center','Parent Cost Center','parent_cost_center','Link','Link','Cost Center',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13248','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',5,'company_name','Company','company_name','Link','Link','Company',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13249','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',6,'company_abbr','Company Abbr','company_abbr','Data','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13250','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',7,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13251','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',8,'group_or_ledger','Group or Ledger','group_or_ledger','Select','Select','\nGroup\nLedger',NULL,0,1,1,1,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13252','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',9,'sb1','Budget',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Define Budget for this Cost Center. To set budget action, see Company Master','White:FFF',NULL,NULL,NULL),('FL13253','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',10,'distribution_id','Distribution Id','distribution_id','Link','Link','Budget Distribution',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Budget Distribution, if you want to track based on seasonality.','White:FFF',NULL,NULL,NULL),('FL13254','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',11,'budget_details','Budget Details','budget_details','Table','Table','Budget Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add rows to set annual budgets on Accounts.','White:FFF',NULL,NULL,NULL),('FL13255','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',12,'lft','lft','lft','Int','Int',NULL,1,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13256','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',13,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,1,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13257','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',14,'old_parent','old_parent','old_parent','Link','Data','Cost Center',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13258','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',1,'charge_type','Type','charge_type','Select','Select','\nActual\nOn Net Total\nOn Previous Row Amount\nOn Previous Row Total',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13259','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',2,'account_head','Account Head','account_head','Link','Link','Account',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13260','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',3,'cost_center_other_charges','Cost Center','cost_center_other_charges','Link','Link','Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13261','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13262','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',5,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13263','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',6,'tax_amount','Amount','tax_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13264','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',7,'total','Total','total','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13265','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',8,'row_id','Enter Row','row_id','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13266','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',9,'item_wise_tax_detail','Item Wise Tax Detail ','item_wise_tax_detail','Small Text','Small Text',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13267','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',10,'parenttype','Parenttype','parenttype','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13268','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',11,'total_tax_amount','Total Tax Amount','total_tax_amount','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Cheating Field\nPlease do not delete ','White:FFF',NULL,NULL,NULL),('FL13269','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',12,'total_amount','Total Amount','total_amount','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Cheating Field\nPlease do not delete ',NULL,NULL,NULL,NULL),('FL13270','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',13,'included_in_print_rate','Is this Tax included in Basic Rate?',NULL,'Check',NULL,NULL,NULL,NULL,1,1,NULL,1,0,NULL,NULL,0,'150px',NULL,'If checked, the tax amount will be considered as already included in the Print Rate / Print Amount',NULL,NULL,NULL,0),('FL13271','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',1,'year_details','Fiscal Year Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13272','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13273','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',3,'year','Year Name','year','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'For e.g. 2012, 2012-13','White:FFF',NULL,NULL,NULL),('FL13274','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',4,'year_start_date','Year Start Date','year_start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13275','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',5,'is_fiscal_year_closed','Year Closed','is_fiscal_year_closed','Select','Select','\nNo\nYes',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'No','Entries are not allowed against this Fiscal Year if the year is closed.','White:FFF',NULL,NULL,NULL),('FL13276','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13277','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13278','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','INV\nINV/10-11/',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL13279','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',4,'is_pos','Is POS','is_pos','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13280','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',5,'update_stock','Update Stock','update_stock','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.is_pos==1',0,NULL,'1',NULL,NULL,NULL,NULL,NULL),('FL13281','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',6,'debit_to','Debit To','debit_to','Link','Link','Account',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'The account to which you will pay (have paid) the money to.','White:FFF',NULL,1,NULL),('FL13282','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',7,'customer','Customer','customer','Link','Link','Customer',NULL,0,1,NULL,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13283','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',8,'customer_name','Name','customer_name','Data','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13284','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',9,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13285','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',10,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13286','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',11,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13287','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',12,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13288','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',13,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13289','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',14,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,0,NULL,1,1,NULL,NULL,NULL,0,NULL,'Today','The date at which current entry will get or has actually executed.','White:FFF',NULL,1,NULL),('FL13290','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',15,'due_date','Due Date','due_date','Date','Date',NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,'Today','Enter the date by which payments from customer is expected against this invoice.','White:FFF',NULL,1,NULL),('FL13291','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',16,'mode_of_payment','Mode of Payment','mode_of_payment','Select','Select','link:Mode of Payment',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13292','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',17,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13293','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',18,'entries','Entries','entries','Table','Table','Sales Invoice Item',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13294','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',19,'sales_bom_help','Sales BOM Help',NULL,'HTML',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13295','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',20,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13296','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',21,'col_break26',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13297','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',22,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,'Will be calculated automatically when you enter the details',NULL,NULL,NULL,NULL),('FL13298','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',23,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13299','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',24,'col_break25',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13300','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',25,'sales_order_main','Sales Order','sales_order_main','Link','Link','Sales Order',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Items from Sales Order','White:FFF',NULL,NULL,NULL),('FL13301','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',26,'delivery_note_main','Delivery Note','delivery_note_main','Link','Link','Delivery Note',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Items from Delivery Note','White:FFF',NULL,NULL,NULL),('FL13302','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',27,'get_items','Get Items',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13303','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',28,'currency_section','Price List and Currency',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13304','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',29,'col_break27',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13305','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',30,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13306','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',31,'price_list_currency','Price List Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select the currency in which price list is maintained','White:FFF',NULL,NULL,NULL),('FL13307','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',32,'plc_conversion_rate','Price List Currency Conversion Rate',NULL,'Float',NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which Price list currency is converted to customer\'s base currency','White:FFF',NULL,NULL,NULL),('FL13308','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',33,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13309','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',34,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13310','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',35,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'1.00','Rate at which Customer Currency is converted to customer\'s base currency','White:FFF',NULL,NULL,NULL),('FL13311','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',36,'taxes','Taxes and Charges',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13312','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',37,'charge','Taxes and Charges','charge','Link','Link','Sales Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13313','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',38,'get_charges','Get Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13314','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',39,'other_charges','Taxes and Charges1','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13315','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',40,'calculate_charges','Calculate Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13316','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',41,'other_charges_total','Total Taxes and Charges','other_charges_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13317','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',42,'other_charges_calculation','Taxes and Charges Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13318','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',43,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13319','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',44,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13320','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',45,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13321','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',46,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13322','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',47,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Sales Invoice.','White:FFF',NULL,NULL,NULL),('FL13323','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',48,'total_advance','Total Advance','total_advance','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13324','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',49,'outstanding_amount','Outstanding Amount','outstanding_amount','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13325','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',50,'column_break6',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13326','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',51,'grand_total_export','Grand Total (Export)','grand_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13327','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',52,'rounded_total_export','Rounded Total (Export)','rounded_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13328','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',53,'in_words_export','In Words (Export)','in_words_export','Data','Data',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13329','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',54,'gross_profit','Gross Profit','gross_profit','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13330','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',55,'gross_profit_percent','Gross Profit (%)','gross_profit_percent','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13331','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',56,'payments_section','Payments',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13332','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',57,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13333','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',58,'paid_amount','Paid Amount','paid_amount','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13334','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',59,'cash_bank_account','Cash/Bank Account','cash_bank_account','Link','Link','Account',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13335','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',60,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13336','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',61,'write_off_outstanding_amount_automatically','Write Off Outstanding Amount',NULL,'Check',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13337','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',62,'write_off_amount','Write Off Amount',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13338','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',63,'write_off_account','Write Off Account',NULL,'Link',NULL,'Account',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13339','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',64,'write_off_cost_center','Write Off Cost Center',NULL,'Link',NULL,'Cost Center',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13340','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',65,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13341','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',66,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13342','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',67,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,1,NULL,NULL,NULL,NULL,'Server',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13343','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',68,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13344','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',69,'terms','Terms and Conditions Details','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13345','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',70,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13346','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',71,'col_break23',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13347','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',72,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13348','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',73,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13349','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',74,'col_break24',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13350','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',75,'territory','Territory',NULL,'Link',NULL,'Territory',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13351','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',76,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13352','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',77,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13353','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',78,'column_break7',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13354','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',79,'is_opening','Is Opening','is_opening','Select','Select','No\nYes',0,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,'No',NULL,'White:FFF',NULL,1,NULL),('FL13355','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',80,'aging_date','Aging Date','aging_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13356','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',81,'posting_time','Posting Time','posting_time','Time','Time',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13357','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',82,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13358','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',83,'c_form_applicable','C-Form Applicable',NULL,'Select',NULL,'No\nYes',NULL,NULL,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13359','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',84,'c_form_no','C-Form No',NULL,'Link',NULL,'C-Form',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13360','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',85,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Campaign\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13361','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',86,'project_name','Project Name','project_name','Link','Link','Project',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Track this Sales Invoice against any Project','White:FFF',NULL,1,NULL),('FL13362','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',87,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13363','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',88,'column_break8',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13364','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',89,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13365','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',90,'company','Company','company','Link','Link','Company',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13366','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',91,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13367','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',92,'amended_from','Amended From','amended_from','Link','Link','Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13368','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',93,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL13369','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',94,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13370','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',95,'remarks','Remarks','remarks','Small Text','Text',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13371','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',96,'advances','Advances',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13372','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',97,'get_advances_received','Get Advances Received',NULL,'Button','Button','get_advances',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13373','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',98,'advance_adjustment_details','Sales Invoice Advance','advance_adjustment_details','Table','Table','Sales Invoice Advance',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13374','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',99,'packing_list','Packing List',NULL,'Section Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13375','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',100,'packing_details','Packing Details',NULL,'Table',NULL,'Delivery Note Packing Item',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13376','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',101,'sales_team_section_break','Sales Team',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13377','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',102,'column_break9',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13378','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',103,'sales_partner','Sales Partner','sales_partner','Link','Link','Sales Partner',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13379','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',104,'column_break10',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13380','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',105,'commission_rate','Commission Rate (%)','commission_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13381','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',106,'total_commission','Total Commission','total_commission','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13382','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',107,'section_break2',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13383','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',108,'sales_team','Sales Team1','sales_team','Table','Table','Sales Team',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13384','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',109,'recurring_invoice','Recurring Invoice',NULL,'Section Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13385','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',110,'column_break11',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13386','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',111,'convert_into_recurring_invoice','Convert into Recurring Invoice',NULL,'Check',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,'Client','eval:doc.docstatus==1',0,NULL,NULL,'Check if recurring invoice, uncheck to stop recurring or put proper End Date','White:FFF',NULL,NULL,NULL),('FL13387','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',112,'recurring_type','Recurring Type',NULL,'Select',NULL,'Monthly\nQuarterly\nHalf-yearly\nYearly',NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'Select the period when the invoice will be generated automatically',NULL,NULL,NULL,NULL),('FL13388','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',113,'repeat_on_day_of_month','Repeat on Day of Month',NULL,'Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'The day of the month on which auto invoice will be generated e.g. 05, 28 etc ',NULL,NULL,NULL,NULL),('FL13389','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',114,'invoice_period_from_date','Invoice Period From Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'Start date of the invoice period','White:FFF',NULL,NULL,NULL),('FL13390','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',115,'invoice_period_to_date','Invoice Period To Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'End date of the invoice period',NULL,NULL,NULL,NULL),('FL13391','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',116,'column_break12',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13392','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',117,'notification_email_address','Notification Email Address',NULL,'Small Text',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'Enter email id separated by commas, invoice will be mailed automatically on particular date',NULL,NULL,NULL,NULL),('FL13393','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',118,'recurring_id','Recurring Id',NULL,'Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.convert_into_recurring_invoice==1',1,NULL,NULL,'The unique id for tracking all recurring invoices ',NULL,NULL,NULL,NULL),('FL13394','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',119,'next_date','Next Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.convert_into_recurring_invoice==1',1,NULL,NULL,'The date on which next invoice will be generated ',NULL,NULL,NULL,NULL),('FL13395','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',120,'end_date','End Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'The date on which recurring invoice will be stop',NULL,NULL,NULL,NULL),('FL13396','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',121,'against_income_account','Against Income Account','against_income_account','Small Text','Small Text',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13397','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',122,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13398','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','fields','DocType',1,'tds_category','TDS Category','tds_category','Select','Select','link:TDS Category',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13399','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','fields','DocType',2,'special_tds_rate_applicable','Special TDS Rate Applicable','special_tds_rate_applicable','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13400','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','fields','DocType',3,'special_tds_rate','Special TDS Rate(Section-197) ','special_tds_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13401','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','fields','DocType',4,'special_tds_limit','Special TDS Limit','special_tds_limit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13402','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13403','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13404','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','JV',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL13405','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',4,'voucher_type','Voucher Type','voucher_type','Select','Select','\nJournal Entry\nBank Voucher\nCash Voucher\nCredit Card Voucher\nDebit Note\nCredit Note\nContra Voucher\nExcise Voucher\nWrite Off Voucher',1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13406','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',5,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13407','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',6,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL13408','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',7,'2_add_edit_gl_entries','Journal Entries',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13409','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',8,'entries','Entries','entries','Table','Table','Journal Voucher Detail',NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13410','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',9,'section_break99',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13411','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',10,'total_debit','Total Debit','total_debit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13412','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',11,'total_credit','Total Credit','total_credit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13413','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',12,'column_break99',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13414','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',13,'difference','Difference','difference','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13415','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',14,'get_balance','Make Difference Entry',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13416','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',15,'reference','Reference',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13417','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',16,'cheque_no','Cheque No','cheque_no','Data','Data',NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13418','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',17,'cheque_date','Cheque Date','cheque_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13419','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',18,'clearance_date','Clearance Date','clearance_date','Date','Date',NULL,1,NULL,0,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13420','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',19,'column_break98',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13421','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',20,'user_remark','User Remark','user_remark','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13422','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',21,'remark','Remark','remark','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,1,NULL,NULL,'User Remark will be added to Auto Remark',NULL,NULL,NULL,NULL),('FL13423','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',22,'bill_no','Bill No','bill_no','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13424','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',23,'bill_date','Bill Date','bill_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13425','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',24,'due_date','Due Date','due_date','Date','Date',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13426','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',25,'addtional_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13427','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',26,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13428','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',27,'is_opening','Is Opening','is_opening','Select','Select','No\nYes',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,'No',NULL,'White:FFF',NULL,1,NULL),('FL13429','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',28,'aging_date','Aging Date','aging_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'For opening invoice entry, this date will reflect in the period-wise aging report.','White:FFF',NULL,NULL,NULL),('FL13430','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',29,'write_off_based_on','Write Off Based On',NULL,'Select',NULL,'Accounts Receivable\nAccounts Payable',NULL,NULL,1,1,NULL,NULL,NULL,NULL,'eval:doc.voucher_type == \'Write Off Voucher\'',0,NULL,'Accounts Receivable',NULL,'White:FFF',NULL,NULL,NULL),('FL13431','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',30,'write_off_amount','Write Off Amount <=',NULL,'Currency',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,'eval:doc.voucher_type == \'Write Off Voucher\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13432','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',31,'get_outstanding_invoices','Get Outstanding Invoices',NULL,'Button',NULL,'get_outstanding_invoices',NULL,NULL,1,NULL,NULL,NULL,NULL,'Server','eval:doc.voucher_type == \'Write Off Voucher\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13433','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',32,'voucher_date','Voucher Date','voucher_date','Date','Date',NULL,1,NULL,0,NULL,1,1,NULL,NULL,NULL,0,NULL,'Today','Date of entry (not posting to ledgers)','White:FFF',NULL,1,NULL),('FL13434','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',33,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13435','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',34,'pay_to_recd_from','Pay To / Recd From',NULL,'Data',NULL,NULL,NULL,0,0,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13436','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',35,'total_amount','Total Amount',NULL,'Data',NULL,NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13437','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',36,'total_amount_in_words','Total Amount in Words',NULL,'Data',NULL,NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13438','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',37,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13439','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',38,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13440','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',39,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13441','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',40,'amended_from','Amended From','amended_from','Link','Link','Journal Voucher',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13442','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',41,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL13443','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',42,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13444','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',43,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13445','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',44,'view_ledger_entry','View Ledger Entry',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13446','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',45,'tds','TDS',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13447','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',46,'tds_applicable','TDS Applicable','tds_applicable','Select','Select','\nYes\nNo',1,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,'No',NULL,NULL,NULL,1,NULL),('FL13448','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',47,'tds_category','TDS Category','tds_category','Select','Select','link:TDS Category',1,0,1,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13449','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',48,'supplier_account','Supplier Account','supplier_account','Link','Link','Account',NULL,0,1,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13450','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',49,'get_tds','Get TDS',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13451','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',50,'tax_code','TDS Account Head','tax_code','Link','Link','Account',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Tax Code will be populated based on account head mentioned in TDS Category master','White:FFF',NULL,NULL,NULL),('FL13452','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',51,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13453','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',52,'ded_amount','Amount','ded_amount','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13454','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',1,'barcode','Barcode',NULL,'Data',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13455','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',2,'item_code','Item','item_code','Link','Link','Item',1,NULL,0,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13456','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',3,'customer_item_code','Customer\'s Item Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13457','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',4,'item_name','Item Name','item_name','Data','Data',NULL,0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13458','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',5,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13459','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',6,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13460','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',7,'stock_uom','UOM',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13461','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',8,'ref_rate','Price List Rate','ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13462','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',9,'adj_rate','Discount (%)','adj_rate','Float','Float',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13463','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',10,'export_rate','Basic Rate','export_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13464','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',11,'export_amount','Amount','export_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13465','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',12,'base_ref_rate','Price List Rate*','base_ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13466','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',13,'basic_rate','Basic Rate*','basic_rate','Currency','Currency',NULL,0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13467','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',14,'amount','Amount*','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13468','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',15,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13469','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',16,'income_account','Income Account','income_account','Link','Link','Account',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'120px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13470','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',17,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'120px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13471','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',18,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13472','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',19,'batch_no','Batch No',NULL,'Link',NULL,'Batch',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13473','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',20,'item_group','Item Group','item_group','Link','Link','Item Group',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13474','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',21,'brand','Brand Name','brand','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13475','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',22,'actual_qty','Available Qty at Warehouse','actual_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13476','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',23,'delivered_qty','Delivered Qty','delivered_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13477','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',24,'sales_order','Sales Order','sales_order','Link','Link','Sales Order',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13478','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',25,'so_detail','SO Detail ','so_detail','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13479','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',26,'delivery_note','Delivery Note','delivery_note','Link','Link','Delivery Note',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13480','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',27,'dn_detail','DN Detail','dn_detail','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13481','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',28,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13482','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',29,'clear_pending','Clear Pending','clear_pending','Check','Check',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13483','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',30,'page_break','Page Break',NULL,'Check',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13484','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',1,'charge_type','Type','charge_type','Select','Select','\nActual\nOn Net Total\nOn Previous Row Amount\nOn Previous Row Total',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13485','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',2,'account_head','Account Head','account_head','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13486','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',3,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13487','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13488','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',5,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13489','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',6,'tax_amount','Amount','tax_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13490','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',7,'total','Total','total','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13491','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',8,'row_id','Enter Row','row_id','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13492','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',9,'category','Consider Tax or Charge for','category','Select','Select','Valuation and Total\nValuation\nTotal',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'For Both','White:FFF',NULL,NULL,NULL),('FL13493','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',10,'add_deduct_tax','Add or Deduct','add_deduct_tax','Select','Select','Add\nDeduct',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,'Add',NULL,'White:FFF',NULL,NULL,NULL),('FL13494','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',11,'item_wise_tax_detail','Item Wise Tax Detail ','item_wise_tax_detail','Small Text','Small Text',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13495','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',12,'parenttype','Parenttype','parenttype','Data','Data',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13496','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',13,'total_tax_amount','Total +Tax','total_tax_amount','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Cheating Field\nPlease do not delete ',NULL,NULL,NULL,NULL),('FL13497','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',14,'total_amount','Tax Amount','total_amount','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Cheating Field\nPlease do not delete ',NULL,NULL,NULL,NULL),('FL13498','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Budget Distribution','fields','DocType',1,'distribution_id','Distribution Name','distribution_id','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Name of the Budget Distribution','White:FFF',NULL,NULL,NULL),('FL13499','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Budget Distribution','fields','DocType',2,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13500','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Budget Distribution','fields','DocType',3,'budget_distribution_details','Budget Distribution Details','budget_distribution_details','Table','Table','Budget Distribution Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13501','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Budget Distribution','fields','DocType',4,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13502','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',1,'title','Title','title','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13503','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',2,'is_default','Default',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13504','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',3,'company','Company',NULL,'Link',NULL,'Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13505','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',4,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13506','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',5,'company','Company',NULL,'Link',NULL,'Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13507','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',1,'properties','Account Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13508','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13509','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',3,'account_name','Account Name','account_name','Data','Data',NULL,1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13510','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',4,'level','Level','level','Int','Int',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13511','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',5,'group_or_ledger','Group or Ledger','group_or_ledger','Select','Select','\nLedger\nGroup',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,'Ledger',NULL,NULL,NULL,1,NULL),('FL13512','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',6,'debit_or_credit','Debit or Credit','debit_or_credit','Data','Data',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13513','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',7,'is_pl_account','Is PL Account','is_pl_account','Select','Select','Yes\nNo',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13514','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',8,'company','Company','company','Link','Link','Company',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13515','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',9,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13516','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',10,'parent_account','Parent Account','parent_account','Link','Link','Account',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13517','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',11,'account_type','Account Type','account_type','Select','Select','\nFixed Asset Account\nBank or Cash\nExpense Account\nTax\nIncome Account\nChargeable',0,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Setting Account Type helps in selecting this Account in transactions.','White:FFF',NULL,1,NULL),('FL13518','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',12,'tax_rate','Rate','tax_rate','Currency','Currency',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which this tax is applied','White:FFF',NULL,NULL,NULL),('FL13519','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',13,'freeze_account','Frozen','freeze_account','Select','Select','No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'If the account is frozen, entries are allowed for the \"Account Manager\" only.','White:FFF',NULL,NULL,NULL),('FL13520','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',14,'credit_days','Credit Days','credit_days','Int','Int',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13521','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',15,'credit_limit','Credit Limit','credit_limit','Currency','Currency',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13522','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',16,'master_type','Master Type','master_type','Select','Select','\nSupplier\nCustomer\nEmployee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If this Account represents a Customer, Supplier or Employee, set it here.','White:FFF',NULL,NULL,NULL),('FL13523','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',17,'master_name','Master Name','master_name','Link','Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13524','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',1,'user','User','user','Link','Link','Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13525','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',2,'territory','Territory','territory','Link','Link','Territory',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13526','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',3,'naming_series','Series','naming_series','Select','Select',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13527','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',4,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13528','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',5,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'1',NULL,'White:FFF',NULL,NULL,NULL),('FL13529','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',6,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13530','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',7,'company','Company','company','Link','Link','Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13531','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',8,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13532','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',9,'customer_account','Customer Account','customer_account','Link','Link','Account',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13533','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',10,'cash_bank_account','Cash/Bank Account','cash_bank_account','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13534','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',11,'income_account','Income Account','income_account','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13535','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',12,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13536','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',13,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13537','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',14,'charge','Charge','charge','Link','Link','Sales Taxes and Charges Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13538','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',15,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13539','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',16,'tc_name','Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13540','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',17,'select_print_heading','Select Print Heading','select_print_heading','Select','Select','link:Print Heading',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13541','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',1,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13542','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',2,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13543','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',3,'posting_date','Posting Date','posting_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13544','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',4,'fiscal_year','Closing Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13545','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',5,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13546','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',6,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13547','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',7,'company','Company','company','Select','Select','link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13548','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',8,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13549','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',9,'closing_account_head','Closing Account Head','closing_account_head','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13550','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',10,'coa_help','CoA Help',NULL,'HTML','HTML','To manage Account Head, click here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13551','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',11,'remarks','Remarks','remarks','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13552','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',12,'cancel_reason','Cancel Reason','cancel_reason','Small Text','Small Text',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13553','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',1,'task_details','Task Details',NULL,'Section Break','Section Break',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13554','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',2,'subject','Subject','subject','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13555','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',3,'exp_start_date','Expected Start Date','exp_start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13556','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',4,'exp_end_date','Expected End Date','exp_end_date','Date','Date',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13557','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',5,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13558','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',6,'project','Project','project','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13559','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',7,'status','Status','status','Select','Select','Open\nWorking\nPending Review\nClosed\nCancelled',NULL,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13560','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',8,'priority','Priority','priority','Select','Select','Low\nMedium\nHigh\nUrgent',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13561','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',9,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13562','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',10,'description','Details','description','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13563','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',11,'time_and_budget','Time and Budget',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13564','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',12,'expected','Expected',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13565','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',13,'exp_total_hrs','Total Hours (Expected)','exp_total_hrs','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13566','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',14,'allocated_budget','Allocated Budget','allocated_budget','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13567','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',15,'actual','Actual',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13568','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',16,'act_start_date','Actual Start Date','act_start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13569','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',17,'act_end_date','Actual End Date','act_end_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13570','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',18,'act_total_hrs','Total Hours (Actual)','act_total_hrs','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13571','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',19,'actual_budget','Actual Budget','actual_budget','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13572','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',20,'more_details','More Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13573','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',21,'review_date','Review Date','review_date','Date','Date',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.status == \"Closed\" || doc.status == \"Pending Review\"',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13574','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',22,'closing_date','Closing Date','closing_date','Date','Date',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.status == \"Closed\"',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13575','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Helps you keep track of your projects and links to Tasks. You can tag a task to a project to track its progress','White:FFF',NULL,NULL,NULL),('FL13576','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',2,'cb_project_status','Status',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13577','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',3,'project_name','Project Name','project_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Project will get saved and will be searchable with project name given',NULL,NULL,NULL,NULL),('FL13578','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',4,'status','Status','status','Select','Select','Open\nCompleted\nCancelled',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,'Open',NULL,'White:FFF',NULL,1,NULL),('FL13579','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',5,'is_active','Is Active','is_active','Select','Select','Yes\nNo',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13580','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',6,'priority','Priority','priority','Select','Select','Medium\nLow\nHigh',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13581','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',7,'cb_project_dates','Dates',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13582','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',8,'project_start_date','Project Start Date','project_start_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13583','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',9,'completion_date','Completion Date','completion_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13584','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',10,'act_completion_date','Actual Completion Date','act_completion_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13585','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',11,'project_type','Project Type','project_type','Select','Data','Internal\nExternal\nOther',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13586','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',12,'sb_milestones','Milestones',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Important dates and commitments in your project life cycle','White:FFF',NULL,NULL,NULL),('FL13587','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',13,'project_milestones','Project Milestones','project_milestones','Table','Table','Project Milestone',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Milestones will be added as Events in the Calendar','White:FFF',NULL,NULL,NULL),('FL13588','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',14,'sb_tasks','Tasks',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Tasks belonging to this Project.','White:FFF',NULL,NULL,NULL),('FL13589','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',15,'project_tasks','Project Tasks',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13590','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',16,'section_break0','Project Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13591','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',17,'notes','Notes','notes','Text Editor','Text Editor',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13592','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',18,'project_details','Project Costing',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13593','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',19,'project_value','Project Value','project_value','Currency','Currency',NULL,0,NULL,NULL,NULL,0,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13594','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',20,'est_material_cost','Estimated Material Cost','est_material_cost','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13595','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',21,'column_break0','Margin',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13596','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',22,'gross_margin_value','Gross Margin Value','gross_margin_value','Currency','Currency',NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13597','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',23,'per_gross_margin','Gross Margin %','per_gross_margin','Currency','Currency',NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13598','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',24,'customer_details','Customer Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13599','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',25,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,0,0,NULL,'Client',NULL,0,NULL,NULL,'Select name of Customer to whom project belongs','White:FFF',NULL,1,NULL),('FL13600','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',26,'customer_name','Customer Name','customer_name','Data','Data',NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13601','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',27,'customer_address','Customer Address','customer_address','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13602','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',28,'contact_person','Contact Person','contact_person','Link','Link',NULL,0,NULL,NULL,NULL,0,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13603','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',29,'territory','Territory','territory','Link','Link','Territory',0,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13604','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',30,'contact_no','Contact No','contact_no','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13605','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',31,'email_id','Email Id','email_id','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13606','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',32,'customer_group','Customer Group','customer_group','Link','Link','Customer Group',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13607','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',33,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,0,1,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13608','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',34,'file_list','File List',NULL,'Small Text',NULL,NULL,0,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13609','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',1,'timesheet_details_section_break','Timesheet Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13610','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',2,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCancelled',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,0,NULL),('FL13611','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',3,'timesheet_date','Timesheet Date','timesheet_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Today',NULL,'White:FFF',NULL,1,NULL),('FL13612','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',4,'owner','Timesheet By','owner','Link','Link','Profile',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13613','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',5,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13614','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',6,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13615','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',7,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13616','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',8,'notes','Notes',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13617','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',9,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13618','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',10,'timesheet_details','Timesheet Details','timesheet_details','Table','Table','Timesheet Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13619','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts','White:FFF',NULL,NULL,NULL),('FL13620','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',2,'supplier_name','Supplier Name','supplier_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13621','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',3,'supplier_type','Supplier Type','supplier_type','Link','Link','Supplier Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13622','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',4,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13623','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',5,'naming_series','Series','naming_series','Select','Select','\nSUPP\nSUPP/10-11/',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13624','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',6,'address_contacts','Address & Contacts',NULL,'Section Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13625','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',7,'address_desc','Address Desc',NULL,'HTML',NULL,'Addresses will appear only when you save the supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13626','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',8,'address_html','Address HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13627','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',9,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13628','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',10,'contact_desc','Contact Desc',NULL,'HTML',NULL,'Contact Details will appear only when you save the supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13629','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',11,'contact_html','Contact HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13630','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',12,'communication_history','Communication History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13631','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',13,'communication_html','Communication HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13632','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',14,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13633','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',15,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter the company name under which Account Head will be created for this Supplier','White:FFF',NULL,1,NULL),('FL13634','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',16,'default_currency','Default Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'This currency will get fetched in Purchase transactions of this supplier','White:FFF',NULL,NULL,NULL),('FL13635','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',17,'supplier_details','Supplier Details','supplier_details','Text','Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Statutory info and other general information about your Supplier','White:FFF',NULL,NULL,NULL),('FL13636','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',18,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13637','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',19,'credit_days','Credit Days',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13638','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',20,'website','Website','website','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13639','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',21,'transaction_history','Transaction History',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13640','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',22,'history_html','History HTML',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13641','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',23,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13642','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13643','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',2,'naming_series','Series','naming_series','Select','Select','\nCI/2010-2011/',0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13644','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',3,'complaint_date','Issue Date','complaint_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Today',NULL,NULL,NULL,1,NULL),('FL13645','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',4,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13646','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',5,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13647','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',6,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13648','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',7,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13649','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',8,'issue_details','Issue Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13650','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',9,'serial_no','Serial No',NULL,'Link',NULL,'Serial No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13651','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',10,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13652','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',11,'complaint','Issue','complaint','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13653','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',12,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13654','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',13,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.item_code',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13655','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',14,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.item_code',1,'300px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13656','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',15,'warranty_amc_status','Warranty / AMC Status',NULL,'Select',NULL,'\nUnder Warranty\nOut of Warranty\nUnder AMC\nOut of AMC',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13657','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',16,'warranty_expiry_date','Warranty Expiry Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13658','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',17,'amc_expiry_date','AMC Expiry Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13659','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',18,'resolution_section','Resolution',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13660','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',19,'allocated_on','Allocated On','allocated_on','Date','Date',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13661','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',20,'allocated_to','Allocated To','allocated_to','Link','Link','Profile',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13662','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',21,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13663','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',22,'resolution_date','Resolution Date','resolution_date','Date','Date',NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13664','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',23,'resolved_by','Resolved By','resolved_by','Link','Link','Sales Person',1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13665','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',24,'resolution_details','Resolution Details','resolution_details','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13666','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',25,'contact_info','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13667','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',26,'col_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13668','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',27,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13669','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',28,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13670','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',29,'territory','Territory','territory','Link','Link','Territory',1,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13671','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',30,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13672','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',31,'col_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13673','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',32,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13674','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',33,'contact_mobile','Mobile No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13675','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',34,'contact_email','Contact Email',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13676','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',35,'service_address','Service Address','service_address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13677','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',36,'more_info','More Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13678','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',37,'col_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13679','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',38,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13680','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',39,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13681','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',40,'status','Status','status','Select','Select','\nOpen\nClosed\nWork In Progress\nCancelled',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,'Open',NULL,'White:FFF',NULL,1,NULL),('FL13682','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',41,'col_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13683','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',42,'complaint_raised_by','Raised By','complaint_raised_by','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13684','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',43,'from_company','From Company','from_company','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13685','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',44,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13686','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',45,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13687','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',1,'customer_details','Customer Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13688','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13689','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',3,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13690','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',4,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13691','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',5,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13692','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',6,'customer_name','Name','customer_name','Data','Data',NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13693','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',7,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13694','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',8,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13695','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',9,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13696','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',10,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13697','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13698','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',12,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13699','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',13,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCancelled',0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,1,NULL),('FL13700','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',14,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13701','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',15,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13702','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',16,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13703','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',17,'territory','Territory','territory','Link','Link','Territory',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13704','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',18,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13705','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',19,'items','Items',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13706','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',20,'sales_order_no','Sales Order No','sales_order_no','Link','Link','Sales Order',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13707','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',21,'get_items','Get Items',NULL,'Button','Button','pull_sales_order_detail',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13708','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',22,'item_maintenance_detail','Maintenance Schedule Item','item_maintenance_detail','Table','Table','Maintenance Schedule Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13709','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',23,'schedule','Schedule',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13710','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',24,'generate_schedule','Generate Schedule',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13711','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',25,'maintenance_schedule_detail','Maintenance Schedule Detail','maintenance_schedule_detail','Table','Table','Maintenance Schedule Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13712','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',1,'naming_series','Naming Series',NULL,'Select',NULL,'SUP',0,0,1,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13713','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',2,'status','Status','status','Select','Select','\nOpen\nTo Reply\nWaiting for Customer\nHold\nClosed',1,NULL,NULL,NULL,0,1,NULL,NULL,NULL,1,NULL,'Open',NULL,'White:FFF',NULL,0,NULL),('FL13714','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',3,'subject','Subject',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13715','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',4,'raised_by','Raised By (Email)','raised_by','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13716','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',5,'description','Description','problem_description','Text','Text',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13717','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',6,'thread_html','Thread HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13718','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',7,'new_response','New Response',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13719','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',8,'send','Send',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13720','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',9,'additional_info','Additional Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13721','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',10,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13722','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',11,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,0,NULL,NULL,'Client',NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13723','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',12,'customer_name','Customer Name','customer_name','Data','Data',NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13724','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',13,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13725','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',14,'contact_display','Contact Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13726','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',15,'contact_mobile','Mobile No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13727','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',16,'contact_email','Contact Email','contact_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13728','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',17,'opening_date','Opening Date','opening_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Today',NULL,NULL,NULL,NULL,NULL),('FL13729','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',18,'opening_time','Opening Time','opening_time','Time','Time',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13730','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',19,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13731','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',20,'allocated_to','Allocated To','allocated_to','Link','Link','Profile',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13732','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',21,'resolution_details','Resolution Details','resolution_details','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13733','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',22,'resolution_date','Resolution Date','resolution_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13734','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',23,'resolution_time','Resolution Time','resolution_time','Time','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13735','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',24,'content_type','Content Type',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13736','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',25,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13737','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',1,'customer_details','Customer Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13738','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13739','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',3,'customer','Customer','customer','Link','Link','Customer',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13740','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',4,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13741','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',5,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13742','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',6,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13743','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',7,'contact_mobile','Mobile No',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13744','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',8,'contact_email','Contact Email',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13745','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',9,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13746','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',10,'mntc_date','Maintenance Date','mntc_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,'Today',NULL,NULL,NULL,NULL,NULL),('FL13747','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',11,'mntc_time','Maintenance Time','mntc_time','Time','Time',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13748','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',12,'maintenance_details','Maintenance Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13749','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',13,'completion_status','Completion Status','completion_status','Select','Select','\nPartially Completed\nFully Completed',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13750','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',14,'maintenance_type','Maintenance Type','maintenance_type','Select','Select','\nScheduled\nUnscheduled\nBreakdown',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Unscheduled',NULL,'White:FFF',NULL,1,NULL),('FL13751','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',15,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13752','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',16,'sales_order_no','Sales Order No','sales_order_no','Link','Link','Sales Order',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13753','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',17,'customer_issue_no','Customer Issue No','customer_issue_no','Link','Link','Customer Issue',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13754','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',18,'maintenance_schedule','Maintenance Schedule',NULL,'Link',NULL,'Maintenance Schedule',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13755','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',19,'get_items','Get Items',NULL,'Button','Button','fetch_items',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13756','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',20,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13757','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',21,'maintenance_visit_details','Maintenance Visit Purpose','maintenance_visit_details','Table','Table','Maintenance Visit Purpose',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13758','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',22,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13759','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',23,'customer_feedback','Customer Feedback','customer_feedback','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13760','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',24,'col_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13761','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',25,'status','Status','status','Data','Data','\nDraft\nCancelled\nSubmitted',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,NULL,NULL),('FL13762','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',26,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13763','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',27,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13764','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',28,'company','Company','company','Select','Select','link:Company',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13765','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',29,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13766','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',30,'contact_info_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13767','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',31,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13768','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',32,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13769','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',33,'col_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13770','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',34,'territory','Territory',NULL,'Link',NULL,'Territory',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13771','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',35,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13772','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Communication','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13773','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Communication','fields','DocType',2,'naming_series','Naming Series',NULL,'Select',NULL,'COMM-',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'COMM-',NULL,'White:FFF',NULL,NULL,NULL),('FL13774','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Communication','fields','DocType',3,'category','Category',NULL,'Select',NULL,'\nSales\nComplaint\nHelp\nSuggestion\nMiscellaneous\nSent Mail',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13775','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',4,'action','Action',NULL,'Select',NULL,'\nCreated Opportunity\nSent Quotation\nCreated Support Ticket\nCreated Customer Issue\nNo Action\nSent Mail',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13776','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',5,'next_communication_date','Next Communcation On',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13777','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',6,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13778','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',7,'subject','Subject',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13779','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',8,'section_break1',NULL,NULL,'Section Break',NULL,'simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13780','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',9,'content','Content',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13781','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',10,'additional_info','Additional Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13782','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',11,'column_break3','Communication With / Related To',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13783','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',12,'lead','Lead',NULL,'Link',NULL,'Lead',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13784','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',13,'contact','Contact',NULL,'Link',NULL,'Contact',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13785','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',14,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13786','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',15,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13787','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',16,'opportunity','Opportunity',NULL,'Link',NULL,'Opportunity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13788','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',17,'quotation','Quotation',NULL,'Link',NULL,'Quotation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13789','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',18,'support_ticket','Support Ticket',NULL,'Link',NULL,'Support Ticket',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13790','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',19,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13791','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',20,'communication_medium','Communication Medium',NULL,'Select',NULL,'\nChat\nPhone\nEmail\nSMS\nVisit\nOther',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13792','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',21,'phone_no','Phone No.',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13793','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',22,'email_address','Email Address',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13794','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',23,'section_break2',NULL,NULL,'Section Break',NULL,'simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13795','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',24,'column_break4','Communication Carried Out By',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13796','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',25,'user','User',NULL,'Link',NULL,'Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'__user',NULL,'White:FFF',NULL,NULL,NULL),('FL13797','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',26,'sales_person','Sales Person',NULL,'Link',NULL,'Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13798','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',27,'column_break5','Communication Carried Out On',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13799','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',28,'communication_date','Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Today',NULL,'White:FFF',NULL,NULL,NULL),('FL13800','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',29,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13801','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',30,'_user_tags','User Tags',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13802','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13803','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',2,'naming_series','Naming Series',NULL,'Select',NULL,'NL-',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'NL-',NULL,'White:FFF',NULL,NULL,NULL),('FL13804','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',3,'test_email_id','Test Email Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'A Lead with this email id should exist','White:FFF',NULL,NULL,NULL),('FL13805','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',4,'test_send','Test',NULL,'Button',NULL,'test_send',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13806','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',5,'column_break1','Send To',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13807','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',6,'contacts','All Contacts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13808','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',7,'customer_contacts','All Customer Contacts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13809','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',8,'leads','All Leads',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13810','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',9,'active_leads','All Active Leads',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13811','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',10,'blog_subscribers','All Blog Subscribers',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13812','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',11,'newsletter_content','Newsletter Content',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13813','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',12,'subject','Subject',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13814','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',13,'message','Message',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13815','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',14,'newsletter_status','Newsletter Status',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13816','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',15,'email_sent','Email Sent?',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13817','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',1,'item_group_name','Item Group Name','item_group_name','Data','Data',NULL,0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13818','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',2,'show_in_website','Show in Website',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Check this if you want to show in website','White:FFF',NULL,NULL,NULL),('FL13819','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',3,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13820','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',4,'parent_item_group','Parent Item Group','parent_item_group','Link','Link','Item Group',0,NULL,NULL,NULL,1,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13821','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',5,'is_group','Has Child Node','is_group','Select','Select','\nYes\nNo',0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Only leaf nodes are allowed in transaction','White:FFF',NULL,NULL,NULL),('FL13822','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',6,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13823','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',7,'lft','lft','lft','Int','Int',NULL,1,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13824','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',8,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13825','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',9,'old_parent','old_parent','old_parent','Link','Data','Item Group',0,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13826','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13827','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',2,'sales_person_name','Sales Person Name','sales_person_name','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13828','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',3,'parent_sales_person','Parent Sales Person','parent_sales_person','Link','Link','Sales Person',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select company name first.','White:FFF',NULL,NULL,NULL),('FL13829','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',4,'is_group','Has Child Node','is_group','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13830','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',5,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13831','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',6,'employee','Employee',NULL,'Link',NULL,'Employee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13832','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',7,'lft','lft','lft','Int','Int',NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13833','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',8,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13834','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',9,'old_parent','old_parent','old_parent','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13835','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',10,'target_details_section_break','Sales Person Targets',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set targets Item Group-wise for this Sales Person.','White:FFF',NULL,NULL,NULL),('FL13836','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',11,'target_details','Target Details1','target_details','Table','Table','Target Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13837','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',12,'distribution_id','Target Distribution','distribution_id','Link','Link','Budget Distribution',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Budget Distribution to unevenly distribute targets across months.','White:FFF',NULL,NULL,NULL),('FL13838','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',1,'materials','Materials',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13839','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',2,'fs_item_serial_nos','Item Serial Nos',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track item in sales and purchase documents based on their serial nos. This is can also used to track warranty details of the product.','White:FFF',NULL,NULL,NULL),('FL13840','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',3,'fs_item_batch_nos','Item Batch Nos',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track items in sales and purchase documents with batch nos
    Preferred Industry: Chemicals etc','White:FFF',NULL,NULL,NULL),('FL13841','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',4,'fs_brands','Brands',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track brand name in the following documents
    \nDelivery Note, Enuiry, Purchase Request, Item, Purchase Order, Purchase Voucher, Purchaser Receipt, Quotation, Sales Invoice, Sales BOM, Sales Order, Serial No','White:FFF',NULL,NULL,NULL),('FL13842','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',5,'fs_item_barcode','Item Barcode',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.',NULL,NULL,NULL,NULL),('FL13843','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',6,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13844','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',7,'fs_item_advanced','Item Advanced',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'1. To maintain the customer wise item code and to make them searchable based on their code use this option','White:FFF',NULL,NULL,NULL),('FL13845','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',8,'fs_packing_details','Packing Detials',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If Sale BOM is defined, the actual BOM of the Pack is displayed as table.\nAvailable in Delivery Note and Sales Order','White:FFF',NULL,NULL,NULL),('FL13846','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',9,'fs_item_group_in_details','Item Groups in Details',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To get Item Group in details table','White:FFF',NULL,NULL,NULL),('FL13847','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',10,'sales_and_purchase','Sales and Purchase',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13848','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',11,'fs_exports','Exports',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'All export related fields like currency, conversion rate, export total, export grand total etc are available in
    \nDelivery Note, POS, Quotation, Sales Invoice, Sales Order etc.','White:FFF',NULL,NULL,NULL),('FL13849','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',12,'fs_imports','Imports',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'All import related fields like currency, conversion rate, import total, import grand total etc are available in
    \nPurchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.','White:FFF',NULL,NULL,NULL),('FL13850','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',13,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13851','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',14,'fs_discounts','Sales Discounts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Field available in Delivery Note, Quotation, Sales Invoice, Sales Order','White:FFF',NULL,NULL,NULL),('FL13852','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',15,'fs_purchase_discounts','Purchase Discounts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice','White:FFF',NULL,NULL,NULL),('FL13853','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',16,'fs_after_sales_installations','After Sale Installations',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track any installation or commissioning related work after sales','White:FFF',NULL,NULL,NULL),('FL13854','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',17,'fs_projects','Projects',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Available in \nBOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet',NULL,NULL,NULL,NULL),('FL13855','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',18,'fs_sales_extras','Sales Extras',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity','White:FFF',NULL,NULL,NULL),('FL13856','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',19,'accounts','Accounts',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13857','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',20,'fs_recurring_invoice','Recurring Invoice',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.','White:FFF',NULL,NULL,NULL),('FL13858','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',21,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13859','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',22,'fs_pos','Point of Sale',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To enable Point of Sale features','White:FFF',NULL,NULL,NULL),('FL13860','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',23,'production','Production',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13861','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',24,'fs_manufacturing','Manufacturing',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you involve in manufacturing activity
    \nEnables item Is Manufactured','White:FFF',NULL,NULL,NULL),('FL13862','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',25,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13863','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',26,'fs_quality','Quality',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you follow Quality Inspection
    \nEnables item QA Required and QA No in Purchase Receipt','White:FFF',NULL,NULL,NULL),('FL13864','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',27,'miscelleneous','Miscelleneous',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13865','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',28,'fs_page_break','Page Break',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you have long print formats, this feature can be used to split the page to be printed on multiple pages with all headers and footers on each page','White:FFF',NULL,NULL,NULL),('FL13866','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',29,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13867','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',30,'fs_more_info','More Info',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enables More Info. in all documents','White:FFF',NULL,NULL,NULL),('FL13868','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Terms and Conditions','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13869','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Terms and Conditions','fields','DocType',2,'title','Title','title','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13870','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Terms and Conditions','fields','DocType',3,'terms','Terms and Conditions','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13871','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',1,'settings','Email Digest Settings',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13872','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13873','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',3,'enabled','Enabled',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13874','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',4,'company','For Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13875','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',5,'frequency','How frequently?',NULL,'Select',NULL,'Daily\nWeekly\nMonthly',NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13876','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',6,'next_send','Next email will be sent on:',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.enabled',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13877','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',7,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13878','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',8,'recipient_list','Recipients',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,'Note: Email will not be sent to disabled users',NULL,NULL,NULL,NULL),('FL13879','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',9,'addremove_recipients','Add/Remove Recipients',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13880','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',10,'select_digest_content','Select Digest Content',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check all the items below that you want to send in this digest.','White:FFF',NULL,NULL,NULL),('FL13881','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',11,'new_leads','New Leads',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13882','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',12,'new_enquiries','New Enquiries',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13883','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',13,'new_quotations','New Quotations',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13884','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',14,'new_sales_orders','New Sales Orders',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13885','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',15,'new_delivery_notes','New Delivery Notes',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13886','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',16,'new_purchase_requests','New Purchase Requests',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13887','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',17,'new_supplier_quotations','New Supplier Quotations',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13888','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',18,'new_purchase_orders','New Purchase Orders',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13889','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',19,'new_purchase_receipts','New Purchase Receipts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13890','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',20,'new_stock_entries','New Stock Entries',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13891','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',21,'new_support_tickets','New Support Tickets',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13892','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',22,'new_communications','New Communications',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13893','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',23,'new_projects','New Projects',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13894','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',24,'cb1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13895','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',25,'income_year_to_date','Income Year to Date',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13896','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',26,'bank_balance','Bank Balance',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13897','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',27,'income','Income',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13898','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',28,'expenses_booked','Expenses Booked',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13899','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',29,'collections','Collections',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13900','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',30,'payments','Payments',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13901','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',31,'invoiced_amount','Receivables',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13902','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',32,'payables','Payables',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13903','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',1,'basic_info','Sales Partner Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts','White:FFF',NULL,NULL,NULL),('FL13904','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',2,'partner_name','Sales Partner Name','partner_name','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13905','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',3,'partner_type','Partner Type','partner_type','Select','Select','\nChannel Partner\nDistributor\nDealer\nAgent\nRetailer\nImplementation Partner\nReseller',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13906','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',4,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13907','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',5,'commission_rate','Commission Rate','commission_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13908','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',6,'territory','Territory',NULL,'Link',NULL,'Territory',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13909','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',7,'address_contacts','Address & Contacts',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13910','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',8,'address_desc','Address Desc',NULL,'HTML',NULL,'Addresses will appear only when you save the customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13911','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',9,'address_html','Address HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13912','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',10,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13913','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',11,'contact_desc','Contact Desc',NULL,'HTML',NULL,'Contact Details will appear only when you save the customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13914','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',12,'contact_html','Contact HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13915','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',13,'partner_target_details_section_break','Sales Partner Target',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13916','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',14,'partner_target_details','Partner Target Detail','partner_target_details','Table','Table','Target Detail',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13917','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',15,'distribution_id','Target Distribution','distribution_id','Link','Link','Budget Distribution',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Budget Distribution to unevenly distribute targets across months.','White:FFF',NULL,NULL,NULL),('FL13918','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',16,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13919','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',1,'setup_series','Setup Series',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set prefix for numbering series on your transactions',NULL,NULL,NULL,NULL),('FL13920','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',2,'select_doc_for_series','Select Transaction',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13921','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',3,'help_html','Help HTML',NULL,'HTML',NULL,'
    \nEdit list of Series in the box below. Each Series Prefix on a new line.

    \nAllowed special characters are \"/\" and \"-\"
    \nExamples:
    \nINV-
    \nINV-10-
    \nINVK-
    \n
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13922','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',4,'set_options','Series List for this Transaction',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13923','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',5,'user_must_always_select','User must always select',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check this if you want to force the user to select a series before saving. There will be no default if you check this.','White:FFF',NULL,NULL,NULL),('FL13924','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',6,'update','Update',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13925','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',7,'update_series','Update Series',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Change the starting / current sequence number of an existing series.','White:FFF',NULL,NULL,NULL),('FL13926','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',8,'prefix','Prefix',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13927','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',9,'current_value','Current Value',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'This is the number of the last created transaction with this prefix','White:FFF',NULL,NULL,NULL),('FL13928','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',10,'update_series_start','Update Series Number',NULL,'Button',NULL,'update_series_start',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13929','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',1,'outgoing_mails','Outgoing Mails',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.','White:FFF',NULL,NULL,NULL),('FL13930','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',2,'outgoing_mail_server','Outgoing Mail Server',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'SMTP Server (e.g. smtp.gmail.com)','White:FFF',NULL,NULL,NULL),('FL13931','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',3,'use_ssl','Use SSL',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13932','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',4,'mail_port','Mail Port',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If non standard port (e.g. 587)','White:FFF',NULL,NULL,NULL),('FL13933','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',5,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13934','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',6,'mail_login','Login Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set Login and Password if authentication is required.','White:FFF',NULL,NULL,NULL),('FL13935','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',7,'mail_password','Mail Password',NULL,'Password',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13936','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',8,'auto_email_id','Auto Email Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'System generated mails will be sent from this email id.','White:FFF',NULL,NULL,NULL),('FL13937','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',9,'support_ticket_mail_settings','Support Ticket Mail Settings',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set the POP3 email settings to pull emails directly from a mailbox and create Support Tickets',NULL,NULL,NULL,NULL),('FL13938','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',10,'section_break0','Incoming Mail Setting',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.','White:FFF',NULL,NULL,NULL),('FL13939','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',11,'sync_support_mails','Sync Support Mails',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check this to pull emails from your mailbox','White:FFF',NULL,NULL,NULL),('FL13940','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',12,'support_email','Support Email',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your support email id - must be a valid email - this is where your emails will come!','White:FFF',NULL,NULL,NULL),('FL13941','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',13,'support_host','POP3 Mail Server',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'POP3 mail server (e.g. pop.gmail.com)','White:FFF',NULL,NULL,NULL),('FL13942','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',14,'support_use_ssl','Use SSL',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13943','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',15,'support_username','User Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13944','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',16,'support_password','Support Password',NULL,'Password',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13945','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',17,'cb1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13946','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',18,'support_signature','Signature',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Signature to be appended at the end of every email','White:FFF',NULL,NULL,NULL),('FL13947','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',19,'send_autoreply','Send Autoreply',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'1',NULL,'White:FFF',NULL,NULL,NULL),('FL13948','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',20,'support_autoreply','Custom Autoreply Message',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Autoreply when a new mail is received','White:FFF',NULL,NULL,NULL),('FL13949','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',1,'company','Company',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13950','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',2,'default_company','Default Company',NULL,'Link',NULL,'Company',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13951','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',3,'current_fiscal_year','Current Fiscal Year',NULL,'Link',NULL,'Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13952','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',4,'date_format','Date Format',NULL,'Select',NULL,'yyyy-mm-dd\ndd-mm-yyyy\ndd/mm/yyyy\nmm/dd/yyyy\nmm-dd-yyyy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13953','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',5,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13954','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',6,'default_currency','Default Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'INR',NULL,NULL,NULL,NULL,NULL),('FL13955','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',7,'default_currency_format','Default Currency Format',NULL,'Select',NULL,'Lacs\nMillions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13956','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',8,'default_currency_fraction','Default Currency Fraction',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13957','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',9,'stock','Stock',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13958','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',10,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13959','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',11,'default_item_group','Default Item Group',NULL,'Link',NULL,'Item Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13960','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',12,'ighelp','IGHelp',NULL,'HTML',NULL,'To manage Item Groups, click here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13961','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',13,'default_stock_uom','Default Stock UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13962','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',14,'default_valuation_method','Default Valuation Method',NULL,'Select',NULL,'FIFO\nMoving Average',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13963','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',15,'allow_negative_stock','Allow Negative Stock',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Applicable only if valuation method is moving average','White:FFF',NULL,NULL,NULL),('FL13964','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',16,'default_warehouse_type','Default Warehouse Type',NULL,'Link',NULL,'Warehouse Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13965','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',17,'auto_indent','Raise Purchase Request when stock reaches re-order level',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13966','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',18,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%','1',NULL,NULL,NULL,NULL,NULL),('FL13967','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',19,'tolerance','Allowance Percent',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'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

    ','White:FFF',NULL,NULL,NULL),('FL13968','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',20,'stock_frozen_upto','Stock Frozen Upto',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Stock level frozen up to this date, nobody can do / modify entry except authorized person','White:FFF',NULL,NULL,NULL),('FL13969','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',21,'stock_auth_role','Authorized Role (Frozen Entry)',NULL,'Link',NULL,'Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Users with this role are allowed to do / modify stock entry before frozen date','White:FFF',NULL,NULL,NULL),('FL13970','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',22,'accounts','Accounts',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13971','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',23,'acc_frozen_upto','Accounts Frozen Upto',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Accounting entry frozen up to this date, nobody can do / modify entry except authorized person','White:FFF',NULL,NULL,NULL),('FL13972','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',24,'bde_auth_role','Authourized Role (Frozen Entry)',NULL,'Link',NULL,'Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Users with this role are allowed to do / modify accounting entry before frozen date','White:FFF',NULL,NULL,NULL),('FL13973','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',25,'credit_controller','Credit Controller',NULL,'Link',NULL,'Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13974','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',26,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13975','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',27,'account_info','Account Info',NULL,'HTML',NULL,'
    For more accounting defaults, Open Company
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13976','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',28,'selling','Selling',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13977','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',29,'cust_master_name','Customer Master created by ',NULL,'Select',NULL,'Customer Name\nNaming Series',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Customer Name',NULL,'White:FFF',NULL,NULL,NULL),('FL13978','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',30,'default_customer_group','Default Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13979','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',31,'cghelp','CGHelp',NULL,'HTML',NULL,'To manage Customer Groups, click here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13980','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',32,'default_territory','Default Territory',NULL,'Link',NULL,'Territory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13981','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',33,'territoryhelp','TerritoryHelp',NULL,'HTML',NULL,'To manage Territory, click here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13982','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',34,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13983','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',35,'default_price_list','Default Price List',NULL,'Link',NULL,'Price List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13984','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',36,'default_price_list_currency','Default Price List Currency',NULL,'Link',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13985','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',37,'so_required','Sales Order Required',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL13986','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',38,'dn_required','Delivery Note Required',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL13987','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',39,'buying','Buying',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13988','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',40,'default_supplier_type','Default Supplier Type',NULL,'Link',NULL,'Supplier Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13989','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',41,'supp_master_name','Supplier Master created by ',NULL,'Select',NULL,'Supplier Name\nNaming Series',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Supplier Name',NULL,'White:FFF',NULL,NULL,NULL),('FL13990','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',42,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13991','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',43,'po_required','Purchase Order Required',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL13992','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',44,'pr_required','Purchase Receipt Required',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL13993','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',45,'maintain_same_rate','Maintain same rate throughout purchase cycle',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13994','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',46,'hr','HR',NULL,'Section Break',NULL,'
    HR
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13995','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',47,'emp_created_by','Employee Records to be created by ',NULL,'Select',NULL,'\nNaming Series\nEmployee Number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Employee record is created using selected field. ','White:FFF',NULL,NULL,NULL),('FL13996','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',48,'system','System',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13997','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',49,'sms_sender_name','SMS Sender Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13998','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13999','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',2,'territory_name','Territory Name','territory_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14000','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',3,'parent_territory','Parent Territory','parent_territory','Link','Link','Territory',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14001','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',4,'is_group','Has Child Node','is_group','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Only leaf nodes are allowed in transaction','White:FFF',NULL,NULL,NULL),('FL14002','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',5,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14003','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',6,'territory_manager','Territory Manager','territory_manager','Link','Link','Sales Person',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'For reference','White:FFF',NULL,1,NULL),('FL14004','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',7,'lft','lft','lft','Int','Int',NULL,1,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14005','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',8,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14006','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',9,'old_parent','old_parent','old_parent','Link','Data','Territory',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14007','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',10,'target_details_section_break','Territory Targets',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.','White:FFF',NULL,NULL,NULL),('FL14008','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',11,'target_details','Target Details','target_details','Table','Table','Target Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14009','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',12,'distribution_id','Target Distribution','distribution_id','Link','Link','Budget Distribution',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Budget Distribution to unevenly distribute targets across months.','White:FFF',NULL,NULL,NULL),('FL14010','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Currency','fields','DocType',1,'currency_name','Currency Name','currency_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14011','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',1,'details','Company Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14012','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',2,'company_name','Company','company_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14013','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',3,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14014','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',4,'abbr','Abbr','abbr','Data','Data',NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.','White:FFF',NULL,NULL,NULL),('FL14015','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',5,'default_settings','Default Settings',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14016','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',6,'default_currency','Default Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14017','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',7,'default_bank_account','Default Bank Account','default_bank_account','Link','Link','Account',NULL,NULL,NULL,NULL,NULL,1,NULL,'Client','eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14018','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',8,'receivables_group','Receivables Group','receivables_group','Link','Link','Account',NULL,NULL,NULL,NULL,NULL,1,NULL,'Client','eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14019','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',9,'payables_group','Payables Group','payables_group','Link','Link','Account',NULL,NULL,NULL,NULL,NULL,1,NULL,'Client','eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14020','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',10,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14021','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',11,'credit_days','Credit Days','credit_days','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14022','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',12,'credit_limit','Credit Limit','credit_limit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14023','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',13,'yearly_bgt_flag','If Yearly Budget Exceeded','yearly_bgt_flag','Select','Select','\nWarn\nIgnore\nStop',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14024','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',14,'monthly_bgt_flag','If Monthly Budget Exceeded','monthly_bgt_flag','Select','Select','\nWarn\nIgnore\nStop',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14025','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',15,'company_info','Company Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'For reference only.','White:FFF',NULL,NULL,NULL),('FL14026','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',16,'address','Address','address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14027','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',17,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14028','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',18,'phone_no','Phone No','phone_no','Data','Data','Phone',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14029','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',19,'fax','Fax','fax','Data','Data','Phone',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14030','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',20,'email','Email','email','Data','Data','Email',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14031','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',21,'website','Website','website','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14032','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',22,'registration_info','Registration Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,'Company registration numbers for your reference. Example: VAT Registration Numbers etc.','White:FFF',NULL,NULL,NULL),('FL14033','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',23,'registration_details','Registration Details','registration_details','Code','Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Company registration numbers for your reference. Tax numbers etc.','White:FFF',NULL,NULL,NULL),('FL14034','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',24,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14035','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Price List','fields','DocType',1,'price_list_name','Price List Name','price_list_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14036','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Price List','fields','DocType',2,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14037','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14038','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',2,'customer_group_name','Customer Group Name','customer_group_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14039','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',3,'parent_customer_group','Parent Customer Group','parent_customer_group','Link','Link','Customer Group',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14040','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',4,'is_group','Has Child Node','is_group','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Only leaf nodes are allowed in transaction','White:FFF',NULL,NULL,NULL),('FL14041','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',5,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14042','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',6,'default_price_list','Default Price List',NULL,'Link',NULL,'Price List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'This Price List will be selected as default for all Customers under this Group.','White:FFF',NULL,NULL,NULL),('FL14043','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',7,'lft','lft','lft','Int','Int',NULL,1,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14044','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',8,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14045','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',9,'old_parent','old_parent','old_parent','Link','Data','Customer Group',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14046','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',1,'send_autonotification_for','Send Email Automatically on Submission of',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'When any of the checked transactions are \"Submitted\", an email is automatically sent to the associated \"Contact\" in that transaction, with the transaction as an attachment.','White:FFF',NULL,NULL,NULL),('FL14047','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',2,'sales','Sales',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14048','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',3,'quotation','Quotation',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14049','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',4,'sales_order','Sales Order',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14050','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',5,'delivery_note','Delivery Note',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14051','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',6,'sales_invoice','Sales Invoice',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14052','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',7,'purchase','Purchase',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14053','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',8,'purchase_order','Purchase Order',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14054','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',9,'purchase_receipt','Purchase Receipt',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14055','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',10,'expense_claim','Expense Claim',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14056','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',11,'customize_the_notification','Customize the Notification',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.','White:FFF',NULL,NULL,NULL),('FL14057','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',12,'select_transaction','Select Transaction',NULL,'Select',NULL,'\nQuotation\nSales Order\nDelivery Note\nSales Invoice\nPurchase Order\nPurchase Receipt\nExpense Claim\nExpense Claim Approved\nExpense Claim Rejected',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14058','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',13,'custom_message','Custom Message',NULL,'Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14059','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',14,'update','Update',NULL,'Button',NULL,'set_message',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14060','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',15,'quotation_message','Quotation Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14061','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',16,'sales_order_message','Sales Order Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14062','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',17,'delivery_note_message','Delivery Note Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14063','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',18,'sales_invoice_message','Sales Invoice Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14064','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',19,'purchase_order_message','Purchase Order Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14065','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',20,'purchase_receipt_message','Purchase Receipt Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14066','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',21,'expense_claim_approved_message','Expense Claim Approved Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14067','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',22,'expense_claim_rejected_message','Expense Claim Rejected Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14068','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',1,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14069','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',2,'item','Item','item','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select the item code for which Bill of Material is being created','White:FFF',NULL,1,NULL),('FL14070','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',3,'quantity','Quantity','quantity','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Total quantity of items for which raw materials required and operations done will be defined','White:FFF',NULL,NULL,NULL),('FL14071','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',4,'uom','UOM',NULL,'Select',NULL,'link:UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14072','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',5,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL14073','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14074','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',7,'project_name','Project Name','project_name','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select name of the project if BOM need to be created against any project',NULL,NULL,1,NULL),('FL14075','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',8,'is_active','Is Active','is_active','Select','Select','\nYes\nNo',NULL,0,NULL,NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14076','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',9,'is_default','Is Default','is_default','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14077','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',10,'maintained_by','Maintained By','maintained_by','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14078','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',11,'remarks','Remarks','remarks','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14079','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',12,'operations','Operations',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14080','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',13,'bom_operations','BOM Operations','bom_operations','Table','Table','BOM Operation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Specify the operations, operating cost and give a unique Operation no to your operations.','White:FFF',NULL,NULL,NULL),('FL14081','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',14,'materials','Materials',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14082','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',15,'bom_materials','BOM Item','bom_materials','Table','Table','BOM Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter the raw materials required to manufacture the BOM item. Specify the operation no as entered in the previous tab which will be performed on the raw materials entered.','White:FFF',NULL,NULL,NULL),('FL14083','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',16,'costing','Costing',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14084','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',17,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14085','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',18,'rm_cost_as_per','Consider Raw Material Cost As Per',NULL,'Select',NULL,'Valuation Rate\nLast Purchase Rate\nStandard Rate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14086','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',19,'costing_date','Costing Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14087','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',20,'update_cost_as_on_today','Update Cost as on today',NULL,'Button',NULL,'calculate_cost',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14088','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',21,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14089','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',22,'raw_material_cost','Raw Material Cost',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14090','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',23,'operating_cost','Operating Cost',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14091','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',24,'total_cost','Total Cost',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14092','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',25,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14093','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',26,'flat_bom_details','BOM Explosion Item','flat_bom_details','Table','Table','BOM Explosion Item',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,'No Toolbar',NULL,'White:FFF',NULL,NULL,NULL),('FL14094','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',27,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14095','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',28,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL14096','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',29,'amended_from','Amended From',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14097','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14098','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',2,'production_item','Production Item','production_item','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,1,NULL,NULL,'Item for which this Production Order is raised.','White:FFF',NULL,1,NULL),('FL14099','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL14100','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',4,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14101','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',5,'bom_no','BOM No','bom_no','Link','Link','BOM',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,1,NULL,NULL,'Bill of Material which was considered for manufacturing the production item.','White:FFF',NULL,NULL,NULL),('FL14102','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',6,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Quantity of item for which Production Order is raised.','White:FFF',NULL,NULL,NULL),('FL14103','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',7,'fg_warehouse','FG Warehouse','fg_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The warehouse for finished goods where stock of produced items will be updated.','White:FFF',NULL,1,NULL),('FL14104','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',8,'wip_warehouse','WIP Warehouse','wip_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The work in progress warehouse where raw materials will be operated upon to create finished goods.','White:FFF',NULL,1,NULL),('FL14105','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',9,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14106','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',10,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14107','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14108','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',12,'posting_date','Posting Date','posting_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date on which current entry will get or has actually executed.','White:FFF',NULL,NULL,NULL),('FL14109','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',13,'consider_sa_items','Consider SA Items as raw material','consider_sa_items','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,'Select \"Yes\" if stock is maintained and tracked for sub-assembly items. Select \"No\" if you want child items of sub-assembly for material transfer.','White:FFF',NULL,1,NULL),('FL14110','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',14,'project_name','Project Name','project_name','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select name of the project if Production Order need to be created against any project',NULL,NULL,1,NULL),('FL14111','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',15,'origin','Origin','origin','Select','Select','Manual\nMRP',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14112','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',16,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nIn Process\nCompleted\nCancelled',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14113','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',17,'produced_qty','Produced Qty','produced_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Updated after finished goods are transferred to FG Warehouse through Stock Entry','White:FFF',NULL,NULL,NULL),('FL14114','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',18,'company','Company','company','Link','Link','Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14115','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',19,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14116','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Top Bar Item','fields','DocType',1,'label','Label',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL14117','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Top Bar Item','fields','DocType',2,'url','URL',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL14118','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Top Bar Item','fields','DocType',3,'target','Target',NULL,'Select',NULL,'\ntarget = \"_blank\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14119','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Top Bar Item','fields','DocType',4,'parent_label','Parent Label',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14120','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',1,'background_image','Background Image',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If image is selected, color will be ignored (attach first)','White:FFF',NULL,NULL,NULL),('FL14121','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',2,'background_color','Background Color',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Solid background color (default light gray)','White:FFF',NULL,NULL,NULL),('FL14122','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',3,NULL,NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14123','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',4,'font','Font',NULL,'Select',NULL,'\nHelvetica Neue\nLucida Grande\nVerdana\nArial\nGeorgia\nTahoma\nLato\nOpen Sans',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14124','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',5,'font_size','Font Size',NULL,'Select',NULL,'\n12px\n13px\n14px\n15px\n16px',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14125','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',6,'heading_font','Heading Font',NULL,'Select',NULL,'\nHelvetica Neue\nLucida Grande\nVerdana\nArial\nGeorgia\nTahoma\nLato\nOpen Sans',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14126','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',7,'css','CSS',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14127','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',8,'add_css','Add CSS',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'add your own CSS (careful!)','White:FFF',NULL,NULL,NULL),('FL14128','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',9,'custom_css','Custom CSS',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Auto generated','White:FFF',NULL,NULL,NULL),('FL14129','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',10,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabDocField` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDocPerm` +-- + +DROP TABLE IF EXISTS `tabDocPerm`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDocPerm` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `permlevel` int(11) default '0', + `role` varchar(180) default NULL, + `match` varchar(180) default NULL, + `read` int(1) default NULL, + `write` int(1) default NULL, + `create` int(1) default NULL, + `submit` int(1) default NULL, + `cancel` int(1) default NULL, + `amend` int(1) default NULL, + `execute` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDocPerm` +-- + +LOCK TABLES `tabDocPerm` WRITE; +/*!40000 ALTER TABLE `tabDocPerm` DISABLE KEYS */; +INSERT INTO `tabDocPerm` VALUES ('000000159','2011-05-20 10:07:33','2011-05-20 10:07:33','Administrator','Administrator',0,'Account Balance','permissions','DocType',NULL,0,'Accounts User',NULL,1,0,0,0,0,0,NULL),('000000160','2011-05-20 10:07:33','2011-05-20 10:07:33','Administrator','Administrator',0,'Account Balance','permissions','DocType',NULL,0,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('000000454','2011-05-20 10:07:54','2011-05-20 10:07:54','Administrator','Administrator',0,'Answer','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,1,NULL,NULL),('000000492','2011-05-20 10:07:56','2011-05-20 10:07:56','Administrator','Administrator',0,'System Console','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('000000493','2011-05-20 10:07:56','2011-05-20 10:07:56','Administrator','Administrator',0,'System Console','permissions','DocType',2,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('000000555','2011-05-20 10:08:00','2011-05-20 10:08:00','Administrator','Administrator',0,'Property Setter','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,1,NULL,NULL),('000000556','2011-05-20 10:08:00','2011-05-20 10:08:00','Administrator','Administrator',0,'Property Setter','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('000000578','2011-05-20 10:08:01','2011-05-20 10:08:01','Administrator','Administrator',0,'DocType','permissions','DocType',NULL,0,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('000000579','2011-05-20 10:08:01','2011-05-20 10:08:01','Administrator','Administrator',0,'Custom Script','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00003','2009-05-12 11:19:22','2009-11-25 10:03:15','Administrator','Administrator',0,'DocField','permissions','DocType',1,0,'Administrator','',0,0,0,0,0,NULL,0),('PERM00004','2009-05-12 11:19:22','2010-08-08 16:51:13','Administrator','Administrator',0,'DocType','permissions','DocType',1,0,'Administrator','',1,1,1,0,0,NULL,0),('PERM00005','2009-05-12 11:19:22','2010-08-08 16:51:13','Administrator','Administrator',0,'DocType','permissions','DocType',2,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00006','2009-05-12 11:19:22','2009-05-12 11:19:22','Administrator','Administrator',0,'Event','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00007','2009-05-12 11:19:22','2010-08-08 17:16:13','Administrator','Administrator',0,'Module Def','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00009','2009-05-12 11:19:22','2009-11-25 10:15:16','Administrator','Administrator',0,'Print Format','permissions','DocType',1,0,'Administrator','',1,1,1,0,0,NULL,0),('PERM00014','2009-05-12 11:19:22','2009-06-30 16:20:34','Administrator','Administrator',0,'Role','permissions','DocType',1,0,'Administrator','',1,1,1,0,0,NULL,0),('PERM00020','2009-05-12 11:19:22','2009-05-12 11:19:22','Administrator','Administrator',0,'ToDo','permissions','DocType',1,0,'All',NULL,1,NULL,1,NULL,NULL,NULL,NULL),('PERM00042','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',1,0,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00043','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',2,0,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00044','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,0,1,0,NULL),('PERM00045','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',4,0,'Accounts Manager',NULL,1,1,1,0,1,0,NULL),('PERM00046','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',5,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00047','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',6,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00048','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',7,2,'Accounts Manager',NULL,1,1,0,0,0,0,NULL),('PERM00049','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',8,2,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00050','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Authorization Rule','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00051','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Authorization Rule','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00055','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bank Reconciliation','permissions','DocType',1,0,'Accounts User','',1,1,1,0,0,0,NULL),('PERM00056','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bank Reconciliation','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00057','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','harshada@webnotestech.com',0,'Batch','permissions','DocType',1,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00058','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','harshada@webnotestech.com',0,'Batch','permissions','DocType',2,1,'Material Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00059','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00060','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00061','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',3,0,'Production Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00062','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',4,1,'Production Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00063','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',5,0,'Production User',NULL,1,1,1,1,1,NULL,NULL),('PERM00064','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',6,1,'Production User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00065','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',1,0,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00066','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',2,0,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00067','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',3,0,'Purchase Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00068','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',4,0,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00069','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',5,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00070','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',6,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00071','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'BOM Item','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00072','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'BOM Item','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00073','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'BOM Operation','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00074','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'BOM Operation','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00084','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Branch','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00085','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','harshada@webnotestech.com',0,'Branch','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00086','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','harshada@webnotestech.com',0,'Branch','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00087','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00088','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00089','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00090','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00091','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','saumil@webnotestech.com',0,'Brand','permissions','DocType',5,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00092','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',6,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00093','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Budget Distribution','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00094','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Budget Distribution','permissions','DocType',2,1,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00095','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Budget Distribution','permissions','DocType',3,2,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00096','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','saumil@webnotestech.com',0,'Budget Distribution','permissions','DocType',4,0,'Accounts Manager',NULL,1,1,1,0,1,0,NULL),('PERM00097','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','saumil@webnotestech.com',0,'Budget Distribution','permissions','DocType',5,1,'Accounts Manager',NULL,1,1,0,0,0,0,NULL),('PERM00098','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','saumil@webnotestech.com',0,'Budget Distribution','permissions','DocType',6,2,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00105','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00106','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00107','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',3,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00108','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00109','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',5,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00110','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',6,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00118','2010-08-08 17:08:55','2010-08-08 17:08:55','Administrator','Administrator',0,'Comment','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00119','2010-08-08 17:08:55','2010-08-08 17:08:55','Administrator','Administrator',0,'Company','permissions','DocType',1,0,'System Manager','',1,1,1,0,1,0,NULL),('PERM00120','2010-08-08 17:08:55','2010-08-08 17:08:55','Administrator','Administrator',0,'Company','permissions','DocType',2,0,'System Manager','',1,1,1,0,1,0,NULL),('PERM00121','2010-08-08 17:08:55','2010-08-08 17:08:55','Administrator','Administrator',0,'Company','permissions','DocType',3,1,'All',NULL,1,NULL,NULL,NULL,0,NULL,NULL),('PERM00130','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Contact Control','permissions','DocType',1,0,'System Manager',NULL,1,1,0,NULL,NULL,NULL,NULL),('PERM00131','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00132','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,0,1,0,NULL),('PERM00133','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',3,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00134','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',4,0,'Accounts User','',1,0,0,0,0,0,NULL),('PERM00135','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00136','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',6,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00137','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Country','permissions','DocType',1,0,'Sales Master Manager',NULL,1,1,1,0,0,0,NULL),('PERM00138','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Country','permissions','DocType',2,0,'Purchase Master Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00139','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','harshada@webnotestech.com',0,'Country','permissions','DocType',3,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00140','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','harshada@webnotestech.com',0,'Country','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00141','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Currency','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00142','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Currency','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,0,0,NULL),('PERM00143','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Currency','permissions','DocType',3,0,'Purchase Master Manager',NULL,1,1,1,0,0,0,NULL),('PERM00149','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Custom Script','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00150','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00151','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00152','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00153','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00154','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',5,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00155','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',6,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00156','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00157','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00158','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',3,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00159','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00160','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',5,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00161','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',6,0,'Sales Master Manager','',1,1,1,0,1,0,NULL),('PERM00162','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','harshada@webnotestech.com',0,'Customer Issue','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00163','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','harshada@webnotestech.com',0,'Customer Issue','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00164','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','ashwini@webnotestech.com',0,'Customer Issue','permissions','DocType',3,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00165','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','ashwini@webnotestech.com',0,'Customer Issue','permissions','DocType',4,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00166','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','ashwini@webnotestech.com',0,'Customer Issue','permissions','DocType',5,0,'Maintenance User',NULL,1,1,1,1,1,1,NULL),('PERM00167','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','ashwini@webnotestech.com',0,'Customer Issue','permissions','DocType',6,1,'Maintenance User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00172','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Deduction Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00173','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','harshada@webnotestech.com',0,'Deduction Type','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00174','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','harshada@webnotestech.com',0,'Deduction Type','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00175','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',1,0,'Material User',NULL,1,1,1,1,1,1,NULL),('PERM00176','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',2,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00177','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',3,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00178','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',4,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00179','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',5,0,'Sales User','',1,1,1,1,1,1,NULL),('PERM00180','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',6,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00181','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',7,0,'Accounts User',NULL,1,0,0,0,0,NULL,NULL),('PERM00182','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',8,1,'Accounts User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00183','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',9,0,'Customer','customer_name',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00184','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','nabin@webnotestech.com',0,'Delivery Note','permissions','DocType',10,2,'All',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00185','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','Administrator',0,'Department','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00186','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','harshada@webnotestech.com',0,'Department','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00187','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','harshada@webnotestech.com',0,'Department','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00188','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','Administrator',0,'Designation','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00189','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','harshada@webnotestech.com',0,'Designation','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00190','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','harshada@webnotestech.com',0,'Designation','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00191','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Label','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00192','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Mapper','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00193','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Mapper','permissions','DocType',2,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00199','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'Earning Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00200','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Earning Type','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00201','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Earning Type','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00202','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Email Settings','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00203','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Email Settings','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00205','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'Employee','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00206','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Employee','permissions','DocType',3,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00207','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Employee','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00208','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Employee','permissions','DocType',5,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00209','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Employee','permissions','DocType',6,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00216','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','Administrator',0,'Employment Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00217','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','harshada@webnotestech.com',0,'Employment Type','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00218','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','harshada@webnotestech.com',0,'Employment Type','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00219','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','Administrator',0,'Opportunity','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00220','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','Administrator',0,'Opportunity','permissions','DocType',2,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00221','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','Administrator',0,'Opportunity','permissions','DocType',3,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00222','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','nabin@webnotestech.com',0,'Opportunity','permissions','DocType',4,0,'Sales User',NULL,1,1,1,1,1,1,NULL),('PERM00223','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','nabin@webnotestech.com',0,'Opportunity','permissions','DocType',5,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00224','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','nabin@webnotestech.com',0,'Opportunity','permissions','DocType',6,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00231','2010-08-08 17:09:02','2010-08-08 17:09:02','Administrator','Administrator',0,'Fiscal Year','permissions','DocType',1,0,'System Manager','',1,1,1,0,1,0,NULL),('PERM00232','2010-08-08 17:09:02','2010-08-08 17:09:02','Administrator','Administrator',0,'Fiscal Year','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00240','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','Administrator',0,'GL Entry','permissions','DocType',1,0,'Accounts Manager','',1,0,0,0,0,0,NULL),('PERM00241','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','Administrator',0,'GL Entry','permissions','DocType',2,0,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00242','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','Administrator',0,'GL Mapper','permissions','DocType',1,0,'Accounts User','',1,0,0,0,0,0,NULL),('PERM00243','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','wasim@webnotestech.com',0,'GL Mapper','permissions','DocType',2,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00244','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','Administrator',0,'Grade','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00245','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','harshada@webnotestech.com',0,'Grade','permissions','DocType',2,0,'HR User',NULL,1,1,1,0,1,NULL,NULL),('PERM00246','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','harshada@webnotestech.com',0,'Grade','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00249','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','harshada@webnotestech.com',0,'Holiday List','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00254','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',1,1,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00255','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',2,0,'Purchase Manager',NULL,1,1,1,1,1,1,NULL),('PERM00256','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',3,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00257','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',4,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00258','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',5,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00259','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',6,0,'Material User',NULL,1,1,1,1,1,1,NULL),('PERM00260','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',7,0,'Purchase User','',1,1,1,1,1,1,NULL),('PERM00261','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',8,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00262','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','harshada@webnotestech.com',0,'Industry Type','permissions','DocType',1,0,'Sales Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00263','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','harshada@webnotestech.com',0,'Industry Type','permissions','DocType',2,0,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00264','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','harshada@webnotestech.com',0,'Industry Type','permissions','DocType',3,0,'Sales Master Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00265','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00266','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00267','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',3,0,'Sales User',NULL,1,1,1,1,1,1,NULL),('PERM00268','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',4,1,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00269','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',5,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00270','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',6,1,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00280','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00281','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00282','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00283','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00284','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','dhanalekshmi@webnotestech.com',0,'Item','permissions','DocType',5,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00285','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','dhanalekshmi@webnotestech.com',0,'Item','permissions','DocType',6,1,'Material Master Manager',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00286','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','dhanalekshmi@webnotestech.com',0,'Item','permissions','DocType',7,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00287','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',8,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00288','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00289','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00290','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00291','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00292','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00293','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','saumil@webnotestech.com',0,'Item Group','permissions','DocType',6,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00294','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Journal Voucher','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00295','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Journal Voucher','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00296','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Journal Voucher','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,1,1,1,NULL),('PERM00297','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Journal Voucher','permissions','DocType',4,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00299','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',2,0,'Purchase Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00300','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00301','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',4,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00302','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',5,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00303','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',6,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00304','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',7,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00305','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',8,1,'Purchase Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00314','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Lead','permissions','DocType',1,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00315','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Lead','permissions','DocType',2,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00316','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','swarnalata@webnotestech.com',0,'Lead','permissions','DocType',3,0,'Sales Manager',NULL,1,1,1,0,1,0,NULL),('PERM00317','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','swarnalata@webnotestech.com',0,'Lead','permissions','DocType',4,0,'Sales User',NULL,1,1,1,0,0,0,NULL),('PERM00318','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Lead','permissions','DocType',5,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00319','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Lead','permissions','DocType',6,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00320','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','Administrator',0,'Leave Control Panel','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00321','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','Administrator',0,'Leave Control Panel','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00322','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Control Panel','permissions','DocType',3,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00323','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Control Panel','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00324','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Control Panel','permissions','DocType',5,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00325','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Control Panel','permissions','DocType',6,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00333','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','Administrator',0,'Leave Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00334','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Type','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00335','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Type','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00338','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Maintenance Schedule','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00339','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Maintenance Schedule','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00340','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Schedule','permissions','DocType',3,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00341','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Schedule','permissions','DocType',4,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00342','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00343','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00344','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',3,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00345','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',4,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00346','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',5,0,'Maintenance User',NULL,1,1,1,1,1,1,NULL),('PERM00347','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',6,1,'Maintenance User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00348','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',1,0,'System Manager','',1,1,1,0,0,0,NULL),('PERM00349','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00350','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',3,1,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00351','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',4,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00352','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',5,2,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00356','2010-08-08 17:09:10','2010-08-08 17:09:10','Administrator','harshada@webnotestech.com',0,'Mode of Payment','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00363','2010-08-08 17:09:10','2010-08-08 17:09:10','Administrator','Administrator',0,'Quotation Lost Reason','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00364','2010-08-08 17:09:10','2010-08-08 17:09:10','Administrator','saumil@webnotestech.com',0,'Quotation Lost Reason','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00365','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',1,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00366','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',2,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00367','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',3,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00368','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',4,0,'Accounts Manager','',1,1,1,0,1,0,NULL),('PERM00369','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00370','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',6,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00371','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Other Income Detail','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00372','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Other Income Detail','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00374','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00375','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00376','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',3,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00377','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',4,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00378','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',5,0,'Purchase User','',1,1,1,0,0,0,NULL),('PERM00379','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',6,0,'Accounts User',NULL,1,1,1,1,1,1,NULL),('PERM00380','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',7,0,'Supplier','supplier',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00384','2010-08-08 17:09:12','2010-08-08 17:09:12','Administrator','nabin@webnotestech.com',0,'Period','permissions','DocType',1,0,'System Manager',NULL,1,0,NULL,NULL,NULL,NULL,NULL),('PERM00385','2010-08-08 17:09:12','2010-08-08 17:09:12','Administrator','nabin@webnotestech.com',0,'Period','permissions','DocType',2,0,'System Manager',NULL,1,0,NULL,NULL,NULL,NULL,NULL),('PERM00389','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Production Plan Sales Order','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00390','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Production Plan Sales Order','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00391','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Employee External Work History','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00392','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00393','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00394','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00395','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00396','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',5,0,'Sales Master Manager','',1,1,1,0,1,0,NULL),('PERM00397','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Print Heading','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00401','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Production Order','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00402','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Production Order','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00403','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Production Order','permissions','DocType',3,0,'Production Manager',NULL,1,1,1,1,1,1,NULL),('PERM00404','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Production Order','permissions','DocType',4,0,'Production User',NULL,1,1,1,1,1,1,NULL),('PERM00405','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','jai@webnotestech.com',0,'Production Planning Tool','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00406','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','saumil@webnotestech.com',0,'Production Planning Tool','permissions','DocType',2,0,'Production User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00407','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','saumil@webnotestech.com',0,'Production Planning Tool','permissions','DocType',3,0,'Production Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00409','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Project','permissions','DocType',2,0,'Projects User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00411','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',1,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00412','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',2,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00413','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',3,1,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00414','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',4,0,'Purchase Manager',NULL,1,1,1,1,1,1,NULL),('PERM00415','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',5,0,'Purchase User','',1,1,1,1,1,1,NULL),('PERM00416','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',6,1,'All','',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00417','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',7,0,'Supplier','supplier',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00418','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','nabin@webnotestech.com',0,'Purchase Order','permissions','DocType',8,2,'All','',1,1,NULL,NULL,NULL,NULL,NULL),('PERM00419','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','permissions','DocType',1,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00420','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','permissions','DocType',2,0,'Purchase Manager','',1,0,0,0,0,0,NULL),('PERM00421','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00422','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','harshada@webnotestech.com',0,'Purchase Taxes and Charges Master','permissions','DocType',4,0,'Purchase Master Manager',NULL,1,1,1,0,1,NULL,NULL),('PERM00423','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00424','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',2,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00425','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00426','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',4,0,'Material User',NULL,1,1,1,1,1,1,NULL),('PERM00427','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',5,0,'Purchase User','',1,1,1,1,1,1,NULL),('PERM00428','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',6,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00429','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',7,0,'Supplier','supplier',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00430','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','nabin@webnotestech.com',0,'Purchase Receipt','permissions','DocType',8,2,'All',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00431','2010-08-08 17:09:17','2010-08-08 17:09:17','Administrator','Administrator',0,'Quality Inspection','permissions','DocType',1,0,'Quality Manager',NULL,1,1,1,1,1,1,NULL),('PERM00432','2010-08-08 17:09:17','2010-08-08 17:09:17','Administrator','Administrator',0,'Quality Inspection','permissions','DocType',2,1,'Quality Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00433','2010-08-08 17:09:17','2010-08-08 17:09:17','Administrator','Administrator',0,'Question','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00435','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00436','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',2,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00437','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',3,0,'Sales User','',1,1,1,1,1,1,NULL),('PERM00438','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00439','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',5,0,'Customer','customer_name',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00440','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','ashwini@webnotestech.com',0,'Quotation','permissions','DocType',6,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00441','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','ashwini@webnotestech.com',0,'Quotation','permissions','DocType',7,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00442','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','ashwini@webnotestech.com',0,'Quotation','permissions','DocType',8,0,'Maintenance User',NULL,1,1,1,1,1,1,NULL),('PERM00443','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','ashwini@webnotestech.com',0,'Quotation','permissions','DocType',9,1,'Maintenance User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00446','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00447','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00448','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,1,1,1,NULL),('PERM00449','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',4,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00450','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',5,0,'Customer','customer',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00451','2010-08-08 17:09:19','2010-08-08 17:09:19','Administrator','Administrator',0,'Reposting Tool','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00455','2010-08-08 17:09:20','2010-08-08 17:09:20','Administrator','harshada@webnotestech.com',0,'Salary Slip','permissions','DocType',3,0,'HR User',NULL,1,1,1,1,NULL,0,NULL),('PERM00456','2010-08-08 17:09:20','2010-08-08 17:09:20','Administrator','harshada@webnotestech.com',0,'Salary Slip','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00457','2010-08-08 17:09:20','2010-08-08 17:09:20','Administrator','harshada@webnotestech.com',0,'Salary Slip','permissions','DocType',5,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00458','2010-08-08 17:09:20','2010-08-08 17:09:20','Administrator','harshada@webnotestech.com',0,'Salary Slip','permissions','DocType',6,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00468','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales and Purchase Return Tool','permissions','DocType',1,0,'Material User',NULL,1,1,1,0,0,0,NULL),('PERM00469','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales and Purchase Return Tool','permissions','DocType',2,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00470','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales and Purchase Return Tool','permissions','DocType',3,0,'Material Manager',NULL,1,1,1,0,0,0,NULL),('PERM00471','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales and Purchase Return Tool','permissions','DocType',4,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00473','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',6,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00474','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',7,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00475','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',8,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00476','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',9,0,'Sales User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00477','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',10,0,'Sales Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00478','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',11,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00479','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',12,0,'Purchase Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00480','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',13,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00481','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',14,1,'System Manager',NULL,1,0,0,0,0,0,NULL),('PERM00482','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',15,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00483','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',16,1,'Accounts User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00484','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',17,1,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00485','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',18,1,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00486','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',19,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00487','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',20,1,'Purchase Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00488','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00489','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',2,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00490','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00491','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00492','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',5,0,'Sales User',NULL,1,1,1,0,1,0,NULL),('PERM00493','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',6,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00494','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00495','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',2,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00496','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',3,0,'Sales User','',1,1,1,1,1,1,NULL),('PERM00497','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00498','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',5,0,'Customer','customer_name',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00499','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','saumil@webnotestech.com',0,'Sales Order','permissions','DocType',6,2,'Accounts User',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00500','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','ashwini@webnotestech.com',0,'Sales Order','permissions','DocType',7,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00501','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','ashwini@webnotestech.com',0,'Sales Order','permissions','DocType',8,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00502','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','ashwini@webnotestech.com',0,'Sales Order','permissions','DocType',9,0,'Maintenance User',NULL,1,1,1,1,1,1,NULL),('PERM00503','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','ashwini@webnotestech.com',0,'Sales Order','permissions','DocType',10,1,'Maintenance User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00504','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00505','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00506','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00507','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00508','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',5,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00509','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',6,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00510','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',7,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00511','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',8,1,'System Manager',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00512','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00513','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00514','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00515','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00516','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',5,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00517','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',6,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00518','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00519','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00520','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00521','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00522','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00523','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',6,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00524','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',7,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00525','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',8,1,'Sales Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00534','2010-08-08 17:09:24','2010-08-08 17:09:24','Administrator','Administrator',0,'SMS Control','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00535','2010-08-08 17:09:24','2010-08-08 17:09:24','Administrator','Administrator',0,'SMS Control','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00536','2010-08-08 17:09:24','2010-08-08 17:09:24','Administrator','Administrator',0,'Salary Slip Deduction','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00537','2010-08-08 17:09:24','2010-08-08 17:09:24','Administrator','Administrator',0,'Salary Slip Earning','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00538','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','dhanalekshmi@webnotestech.com',0,'State','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00539','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'State','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,0,0,NULL),('PERM00540','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'State','permissions','DocType',3,0,'Purchase Master Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00541','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Entry','permissions','DocType',1,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00542','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Entry','permissions','DocType',2,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00543','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Entry','permissions','DocType',3,0,'Material User','',1,1,1,1,1,1,NULL),('PERM00544','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Entry','permissions','DocType',4,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00545','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',5,0,'Production User',NULL,1,1,1,1,1,1,NULL),('PERM00546','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',6,1,'Production User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00547','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',7,2,'Production User',NULL,1,1,0,NULL,NULL,NULL,NULL),('PERM00548','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',8,0,'Production Manager',NULL,1,1,1,1,1,1,NULL),('PERM00549','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',9,1,'Production Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00550','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',10,2,'Production Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00551','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger','permissions','DocType',1,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00552','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger','permissions','DocType',2,1,'Material User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00553','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',1,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00554','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00555','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00556','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',4,2,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00557','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Stock Reconciliation','permissions','DocType',1,0,'Material Manager','',1,1,1,1,1,0,NULL),('PERM00558','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Stock Reconciliation','permissions','DocType',2,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00559','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock Reconciliation','permissions','DocType',3,0,'System Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00560','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00561','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',2,1,'System Manager',NULL,1,0,NULL,NULL,NULL,NULL,NULL),('PERM00562','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',3,0,'Material Master Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00563','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',4,0,'Material Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00564','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',5,1,'Material Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00565','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',6,1,'Material Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00566','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier','permissions','DocType',1,1,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00567','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier','permissions','DocType',2,0,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00568','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier','permissions','DocType',3,1,'Purchase Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00569','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier','permissions','DocType',4,0,'Purchase Master Manager','',1,1,1,0,1,0,NULL),('PERM00570','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',1,1,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00571','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',2,0,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00572','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',3,1,'Purchase User',NULL,1,0,0,0,0,0,NULL),('PERM00573','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',4,0,'Purchase User',NULL,1,0,0,0,0,0,NULL),('PERM00574','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',5,0,'Purchase Master Manager','',1,1,1,0,1,0,NULL),('PERM00575','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Tag','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00578','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Category','permissions','DocType',1,0,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00579','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Category','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,0,0,0,NULL),('PERM00580','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Category','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00585','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',1,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00586','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',2,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00587','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,1,1,1,NULL),('PERM00588','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',4,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00589','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',5,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00590','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Rate Chart','permissions','DocType',1,0,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00591','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Rate Chart','permissions','DocType',2,0,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00592','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Rate Chart','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00593','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','permissions','DocType',1,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00594','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00595','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',1,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00596','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00597','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00598','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00599','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',5,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00600','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',6,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00601','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',7,0,'Accounts User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00602','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00603','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00604','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',3,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00605','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00606','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',5,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00607','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','saumil@webnotestech.com',0,'Territory','permissions','DocType',6,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00617','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Task','permissions','DocType',3,0,'Projects User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00618','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Task','permissions','DocType',4,1,'Projects User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00621','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00622','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00623','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00624','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00625','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',5,0,'Material Master Manager','',1,1,1,0,1,0,NULL),('PERM00626','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00628','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',1,2,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00629','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',2,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00630','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00631','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',4,2,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00632','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',5,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00633','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',6,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00634','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',7,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00635','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',8,0,'Material Master Manager','',1,1,1,0,1,0,NULL),('PERM00636','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',9,1,'Material Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00637','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','jai@webnotestech.com',0,'Warehouse','permissions','DocType',10,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00638','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',11,2,'System Manager',NULL,1,1,0,NULL,NULL,NULL,NULL),('PERM00639','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00640','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00641','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00642','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00643','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',5,0,'Material Master Manager','',1,1,1,0,1,0,NULL),('PERM00651','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00652','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','Administrator',0,'Workstation','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00653','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','Administrator',0,'Workstation','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00654','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','jai@webnotestech.com',0,'Workstation','permissions','DocType',3,0,'Production User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00655','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','jai@webnotestech.com',0,'Workstation','permissions','DocType',4,0,'Production User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00656','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','jai@webnotestech.com',0,'Workstation','permissions','DocType',5,1,'Production Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00657','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','jai@webnotestech.com',0,'Workstation','permissions','DocType',6,1,'Production User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00658','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00659','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00660','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',3,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00661','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',4,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00662','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',5,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00663','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',6,0,'HR User',NULL,1,1,1,1,1,1,NULL),('PERM00664','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',7,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00665','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',8,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00666','2010-09-01 15:47:55','2010-09-01 15:47:55','Administrator','ashwini@webnotestech.com',0,'Appraisal Template','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00667','2010-09-01 15:47:56','2010-09-01 15:47:56','Administrator','Administrator',0,'Notification Control','permissions','DocType',1,0,'Guest',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00668','2010-09-01 15:47:56','2010-09-01 15:47:56','Administrator','Administrator',0,'Notification Control','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00672','2010-09-03 16:45:05','2010-09-03 16:45:05','Administrator','harshada@webnotestech.com',0,'Expense Claim Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00673','2010-09-03 16:45:05','2010-09-03 16:45:05','Administrator','harshada@webnotestech.com',0,'Expense Claim Type','permissions','DocType',2,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00674','2010-09-03 16:45:05','2010-09-03 16:45:05','Administrator','ashwini@webnotestech.com',0,'Expense Claim Type','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00677','2010-09-03 16:45:05','2010-09-03 16:45:05','Administrator','harshada@webnotestech.com',0,'Expense Claim','permissions','DocType',3,1,'All','',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00678','2010-09-07 17:04:25','2010-09-07 17:04:25','Administrator','Administrator',0,'Appraisal Template','permissions','DocType',NULL,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00679','2010-09-07 17:04:25','2010-09-07 17:04:25','Administrator','Administrator',0,'Appraisal Template','permissions','DocType',NULL,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00680','2010-09-07 17:04:25','2010-09-07 17:04:25','Administrator','Administrator',0,'Appraisal Template','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00681','2010-09-23 10:26:02','2010-09-23 10:26:02','Administrator','ashwini@webnotestech.com',0,'Attendance','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00682','2010-09-23 17:49:12','2010-09-23 17:49:12','Administrator','Administrator',0,'Attendance','permissions','DocType',NULL,0,'HR User',NULL,1,1,1,1,1,NULL,NULL),('PERM00683','2010-09-23 17:49:12','2010-09-23 17:49:12','Administrator','Administrator',0,'Attendance','permissions','DocType',NULL,0,'HR Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00684','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00685','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,0,0,0,NULL),('PERM00686','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',3,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00687','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',4,0,'Accounts User',NULL,1,1,1,0,0,0,NULL),('PERM00688','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00689','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',6,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00693','2010-10-07 12:49:37','2010-10-07 12:49:37','Administrator','Administrator',0,'Lead','permissions','DocType',NULL,0,'Guest',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00694','2010-10-07 12:49:37','2010-10-07 12:49:37','Administrator','Administrator',0,'Customer Issue','permissions','DocType',NULL,0,'Guest',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00695','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','Administrator',0,'Custom Field','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00696','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','saumil@webnotestech.com',0,'Custom Field','permissions','DocType',2,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00697','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','saumil@webnotestech.com',0,'Custom Field','permissions','DocType',3,2,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00698','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','saumil@webnotestech.com',0,'Custom Field','permissions','DocType',4,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00699','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','saumil@webnotestech.com',0,'Custom Field','permissions','DocType',5,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00704','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00705','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00706','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00707','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',4,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00708','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',5,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00716','2010-10-19 13:01:06','2010-10-19 13:01:06','Administrator','Administrator',0,'Home Control','permissions','DocType',NULL,0,'Guest',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00717','2010-10-25 17:25:21','2010-10-25 17:25:21','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00718','2010-10-25 17:25:21','2010-10-25 17:25:21','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00719','2010-10-25 17:38:07','2010-10-25 17:38:07','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00720','2010-10-25 17:38:07','2010-10-25 17:38:07','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00723','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','Administrator',0,'Naming Series','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00724','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','Administrator',0,'Naming Series','permissions','DocType',2,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00725','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','Administrator',0,'Naming Series','permissions','DocType',3,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00726','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','Administrator',0,'Naming Series','permissions','DocType',4,1,'System Manager',NULL,1,0,0,0,0,0,NULL),('PERM00727','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','saumil@webnotestech.com',0,'Naming Series','permissions','DocType',5,0,'Guest',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00735','2010-12-14 10:32:59','2010-12-14 10:32:59','Administrator','Administrator',0,'Letter Head','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00739','2010-12-14 10:33:07','2010-12-14 10:33:07','Administrator','ashwini@webnotestech.com',0,'Timesheet','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00740','2010-12-14 10:33:07','2010-12-14 10:33:07','Administrator','ashwini@webnotestech.com',0,'Timesheet','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00742','2010-12-14 12:40:34','2010-12-14 12:40:34','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00743','2010-12-14 12:40:34','2010-12-14 12:40:34','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00755','2010-12-14 17:54:11','2010-12-14 17:54:11','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00756','2010-12-14 17:54:11','2010-12-14 17:54:11','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00763','2010-12-14 17:56:50','2010-12-14 17:56:50','Administrator','Administrator',0,'POS Setting','permissions','DocType',1,0,'System Manager',NULL,1,1,1,0,NULL,NULL,NULL),('PERM00764','2010-12-14 17:56:50','2010-12-14 17:56:50','Administrator','Administrator',0,'POS Setting','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00765','2010-12-14 17:56:50','2010-12-14 17:56:50','Administrator','Administrator',0,'POS Setting','permissions','DocType',3,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00766','2010-12-14 17:56:50','2010-12-14 17:56:50','Administrator','Administrator',0,'POS Setting','permissions','DocType',4,0,'Accounts User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00767','2010-12-14 18:11:59','2010-12-14 18:11:59','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00768','2010-12-14 18:11:59','2010-12-14 18:11:59','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00769','2010-12-23 11:48:49','2010-12-23 11:48:49','Administrator','Administrator',0,'Timesheet','permissions','DocType',NULL,0,'Projects User',NULL,1,1,1,1,1,1,NULL),('PERM00770','2010-12-23 11:48:49','2010-12-23 11:48:49','Administrator','Administrator',0,'Timesheet','permissions','DocType',NULL,1,'Projects User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00785','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','Administrator',0,'Salary Structure','permissions','DocType',2,1,'All',NULL,1,0,NULL,NULL,NULL,0,NULL),('PERM00786','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','harshada@webnotestech.com',0,'Salary Structure','permissions','DocType',3,0,'HR User',NULL,1,1,1,NULL,NULL,0,NULL),('PERM00787','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','harshada@webnotestech.com',0,'Salary Structure','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,NULL,NULL,0,NULL),('PERM00788','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','harshada@webnotestech.com',0,'Salary Structure','permissions','DocType',5,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,0,NULL),('PERM00789','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','harshada@webnotestech.com',0,'Salary Structure','permissions','DocType',6,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,0,NULL),('PERM00790','2011-01-11 17:49:59','2011-01-11 17:49:59','Administrator','Administrator',0,'SMS Log','permissions','DocType',1,0,'System Manager',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00791','2011-01-11 17:49:59','2011-01-11 17:49:59','Administrator','Administrator',0,'SMS Center','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00792','2011-01-11 17:49:59','2011-01-11 17:49:59','Administrator','Administrator',0,'SMS Center','permissions','DocType',2,1,'System Manager',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00793','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Employee','permissions','DocType',NULL,0,'Employee',NULL,1,0,0,0,0,0,NULL),('PERM00794','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Employee','permissions','DocType',NULL,0,'Employee',NULL,1,0,0,0,0,0,NULL),('PERM00795','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00796','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00797','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Slip','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00798','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Slip','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00799','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',1,0,NULL,'owner',1,1,1,1,1,1,NULL),('PERM00800','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',2,0,NULL,'owner',1,0,0,0,0,0,NULL),('PERM00801','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',3,0,'HR User','',1,1,1,1,1,1,NULL),('PERM00802','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00803','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',5,1,'HR User','',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00804','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',6,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00805','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',1,0,'HR User','owner',1,1,1,1,1,1,NULL),('PERM00806','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',2,0,'HR User','owner',1,0,0,0,0,0,NULL),('PERM00807','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00808','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',4,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00809','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Application','permissions','DocType',NULL,0,'Employee','owner',1,1,1,1,1,1,NULL),('PERM00810','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Application','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00811','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',NULL,0,'HR User','owner',1,1,1,1,1,1,NULL),('PERM00812','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',NULL,0,'HR User',NULL,1,0,0,0,0,0,NULL),('PERM00813','2011-03-05 17:16:43','2011-03-05 17:16:43','Administrator','Administrator',0,'Activity Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00814','2011-03-05 17:16:43','2011-03-05 17:16:43','Administrator','Administrator',0,'Activity Type','permissions','DocType',2,0,'Projects User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00815','2011-03-05 17:16:47','2011-03-05 17:16:47','Administrator','Administrator',0,'Expense Claim','permissions','DocType',NULL,0,'Employee','owner',1,1,1,1,1,1,NULL),('PERM00816','2011-03-05 17:16:47','2011-03-05 17:16:47','Administrator','Administrator',0,'Expense Claim','permissions','DocType',NULL,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00817','2011-03-05 17:16:47','2011-03-05 17:16:47','Administrator','Administrator',0,'Expense Claim','permissions','DocType',NULL,0,'HR User',NULL,1,1,1,1,1,1,NULL),('PERM00819','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',1,0,'Guest',NULL,1,1,1,0,0,0,NULL),('PERM00820','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',2,0,'Customer','customer',1,1,1,NULL,NULL,NULL,NULL),('PERM00821','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',3,0,'Support Team',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00822','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',4,1,'Support Team','allocated_to',1,1,0,NULL,0,NULL,NULL),('PERM00823','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',5,2,'Support Team',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00825','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'Multi Ledger Report','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00826','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'Multi Ledger Report','permissions','DocType',2,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00827','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'SMS Settings','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00828','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'SMS Settings','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00829','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'GL Entry','permissions','DocType',NULL,NULL,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00830','2011-06-27 10:52:02','2011-06-27 10:52:02','Administrator','Administrator',0,'Rename Tool','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00837','2011-08-18 13:32:35','2011-08-18 13:32:35','Administrator','Administrator',0,'DocType Mapper','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00838','2011-08-18 13:32:35','2011-08-18 13:32:35','Administrator','Administrator',0,'Role','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00839','2011-08-18 13:32:35','2011-08-18 13:32:35','Administrator','Administrator',0,'Print Format','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00840','2011-09-12 13:43:32','2011-09-12 13:43:32','Administrator','Administrator',0,'Profile','permissions','DocType',0,0,'Administrator',NULL,1,1,1,0,0,NULL,0),('PERM00841','2011-09-12 13:43:32','2011-09-12 13:43:32','Administrator','Administrator',0,'Profile','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00844','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Salary Manager','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00845','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Salary Manager','permissions','DocType',1,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00846','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Salary Manager','permissions','DocType',2,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00847','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Features Setup','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00848','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Features Setup','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00849','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00850','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form','permissions','DocType',1,1,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00851','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form','permissions','DocType',2,2,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00852','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form Field','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00853','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form Field','permissions','DocType',1,1,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00854','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form Field','permissions','DocType',2,2,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00855','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form Field','permissions','DocType',3,2,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00856','2011-12-16 15:45:49','2011-12-16 15:45:49','Administrator','Administrator',0,'C-Form','permissions','DocType',0,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00857','2011-12-16 15:45:49','2011-12-16 15:45:49','Administrator','Administrator',0,'C-Form','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,0,NULL,NULL,NULL),('PERM00858','2011-12-16 15:45:49','2011-12-16 15:45:49','Administrator','Administrator',0,'C-Form','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00859','2011-12-16 15:47:05','2011-12-16 15:47:05','Administrator','Administrator',0,'Email Digest','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00860','2011-12-16 15:47:05','2011-12-16 15:47:05','Administrator','Administrator',0,'Email Digest','permissions','DocType',1,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00862','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',1,0,'Purchase Manager',NULL,1,1,1,0,0,0,NULL),('PERM00863','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00864','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',3,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00865','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',4,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00866','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',5,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00867','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',6,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00868','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',7,1,'Purchase Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00869','2011-12-29 14:45:35','2011-12-29 14:45:35','Administrator','Administrator',0,'Payment to Invoice Matching Tool','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00870','2011-12-29 14:45:35','2011-12-29 14:45:35','Administrator','Administrator',0,'Payment to Invoice Matching Tool','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00871','2011-12-29 14:45:35','2011-12-29 14:45:35','Administrator','Administrator',0,'Payment to Invoice Matching Tool','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00872','2011-12-29 14:45:35','2011-12-29 14:45:35','Administrator','Administrator',0,'Payment to Invoice Matching Tool','permissions','DocType',4,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00873','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',1,0,'Material User',NULL,1,1,1,1,1,1,NULL),('PERM00874','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',2,0,'Sales User',NULL,1,1,1,1,1,1,NULL),('PERM00875','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',3,0,'Material Master Manager',NULL,1,1,1,1,1,1,NULL),('PERM00876','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',4,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00877','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',5,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00878','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',6,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00886','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Product','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00887','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Product','permissions','DocType',2,1,'Website Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00888','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Products Settings','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00889','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Style Settings','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00890','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Style Settings','permissions','DocType',2,1,'Website Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00891','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Web Page','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00892','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Web Page','permissions','DocType',2,1,'Website Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00893','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Website Settings','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00894','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Website Settings','permissions','DocType',2,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00895','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Website Settings','permissions','DocType',3,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00898','2012-02-21 14:31:10','2012-02-21 14:31:10','Administrator','Administrator',0,'Page','permissions','DocType',1,0,'Administrator',NULL,1,1,1,0,0,NULL,0),('PERM00899','2012-02-21 14:31:10','2012-02-21 14:31:10','Administrator','Administrator',0,'Control Panel','permissions','DocType',1,0,'Administrator',NULL,1,1,1,0,0,NULL,0),('PERM00910','2012-04-24 13:33:59','2012-04-24 13:33:59','Administrator','Administrator',0,'Appraisal','permissions','DocType',NULL,0,'Employee',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00914','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','permissions','DocType',1,0,'Administrator',NULL,1,1,1,1,1,1,1),('PERM00915','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','permissions','DocType',1,0,'Sales Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00916','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','permissions','DocType',2,1,'Sales Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00917','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','permissions','DocType',3,0,'Sales Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00918','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','permissions','DocType',4,1,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00919','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00920','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','permissions','DocType',2,0,'Accounts Manager',NULL,1,0,1,0,0,0,NULL),('PERM00921','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Naming Series Options','permissions','DocType',1,0,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00922','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Print Format','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00923','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Print Format','permissions','DocType',3,1,'Administrator',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00924','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00925','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','permissions','DocType',3,1,'Administrator',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00926','2012-07-12 19:25:48','2012-07-12 19:25:48','Administrator','Administrator',0,'Profile','permissions','DocType',3,0,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00927','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',1,0,'Support Team',NULL,1,1,1,0,0,0,NULL),('PERM00928','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',2,0,'Sales Manager',NULL,1,1,1,0,0,0,NULL),('PERM00929','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',3,0,'Sales User',NULL,1,1,1,0,0,0,NULL),('PERM00930','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',4,1,'Sales Manager',NULL,1,1,0,0,0,0,NULL),('PERM00931','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',5,1,'Support Manager',NULL,1,1,0,0,0,0,NULL),('PERM00932','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',6,0,'Administrator',NULL,1,1,1,0,1,0,NULL),('PERM00933','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',7,1,'Administrator',NULL,1,1,0,0,0,0,NULL),('PERM00934','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',1,0,'All',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00935','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00936','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',3,0,'Report Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00937','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',4,1,'Report Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00938','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',5,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00939','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',6,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00940','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',7,0,'Administrator',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00941','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',8,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00942','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','permissions','DocType',1,0,'Administrator',NULL,1,NULL,NULL,NULL,1,NULL,NULL),('PERM00943','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','permissions','DocType',2,0,'System Manager',NULL,1,NULL,NULL,NULL,1,NULL,NULL),('PERM00944','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','permissions','DocType',3,0,'Report Manager',NULL,1,NULL,NULL,NULL,1,NULL,NULL),('PERM00945','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','permissions','DocType',4,0,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00946','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00947','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00948','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',3,0,'Purchase Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00949','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',4,0,'Maintenance Manager',NULL,1,1,1,NULL,0,NULL,NULL),('PERM00950','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',5,0,'Accounts Manager',NULL,1,1,1,NULL,0,NULL,NULL),('PERM00951','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',6,0,'Sales Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00952','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',7,0,'Purchase Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00953','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',8,0,'Sales User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00954','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',9,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00955','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',10,0,'Maintenance User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00956','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',11,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00957','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',12,1,'All',NULL,1,0,0,NULL,0,NULL,NULL),('PERM00958','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00959','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00960','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',3,0,'Purchase Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00961','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',4,0,'Sales Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00962','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',5,0,'Purchase Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00963','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',6,0,'Maintenance Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00964','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',7,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00965','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',8,0,'Sales User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00966','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',9,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00967','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',10,0,'Maintenance User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00968','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',11,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00969','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',12,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00970','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','permissions','DocType',1,0,'Guest',NULL,1,1,0,NULL,NULL,NULL,NULL),('PERM00971','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','permissions','DocType',2,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00972','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','permissions','DocType',3,0,'Blogger',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00973','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00974','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','permissions','DocType',2,0,'Blogger',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00975','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','permissions','DocType',3,0,'Guest',NULL,1,0,NULL,NULL,NULL,NULL,NULL),('PERM00976','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',1,0,'Production Manager',NULL,1,1,1,1,1,1,NULL),('PERM00977','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',2,0,'Purchase Manager',NULL,1,1,1,1,1,1,NULL),('PERM00978','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',3,0,'Purchase User',NULL,1,1,1,0,0,1,NULL),('PERM00979','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00980','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',5,0,'Supplier',NULL,1,0,0,0,0,0,NULL),('PERM00981','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',6,1,'All',NULL,1,0,0,0,0,0,NULL),('PERM00982','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',7,2,'All',NULL,1,1,0,0,0,0,NULL),('PERM00983','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','permissions','DocType',4,1,'Administrator',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00984','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','permissions','DocType',5,1,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00985','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',5,0,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00986','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Bin','permissions','DocType',7,0,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00987','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Communication','permissions','DocType',8,0,'Support Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00988','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Communication','permissions','DocType',9,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00989','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',7,2,'Accounts Manager',NULL,1,1,0,NULL,0,NULL,NULL),('PERM00990','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',8,2,'System Manager',NULL,1,1,0,NULL,0,NULL,NULL),('PERM00991','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',9,2,'All',NULL,1,0,0,NULL,0,NULL,NULL),('PERM00992','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',10,0,'Accounts Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00993','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',11,1,'All',NULL,1,0,0,NULL,0,NULL,NULL),('PERM00994','2012-10-02 13:17:59','2012-10-02 13:17:59','Administrator','Administrator',0,'Event','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00995','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','permissions','DocType',1,0,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00996','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','permissions','DocType',2,0,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00997','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00998','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00999','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','permissions','DocType',1,0,'Sales Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM01000','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','permissions','DocType',2,0,'Support Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM01001','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','permissions','DocType',3,1,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM01002','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','permissions','DocType',4,1,'Support Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabDocPerm` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDocType Label` +-- + +DROP TABLE IF EXISTS `tabDocType Label`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDocType Label` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `dt` varchar(180) default NULL, + `dt_label` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDocType Label` +-- + +LOCK TABLES `tabDocType Label` WRITE; +/*!40000 ALTER TABLE `tabDocType Label` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabDocType Label` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDocType Mapper` +-- + +DROP TABLE IF EXISTS `tabDocType Mapper`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDocType Mapper` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `module` varchar(180) default NULL, + `from_doctype` varchar(180) default NULL, + `to_doctype` varchar(180) default NULL, + `ref_doc_submitted` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDocType Mapper` +-- + +LOCK TABLES `tabDocType Mapper` WRITE; +/*!40000 ALTER TABLE `tabDocType Mapper` DISABLE KEYS */; +INSERT INTO `tabDocType Mapper` VALUES ('Appraisal Template-Appraisal','2010-09-01 15:47:59','2012-05-08 08:08:10','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'HR','Appraisal Template','Appraisal',NULL,NULL),('Customer Issue-Maintenance Visit','2010-08-08 17:09:34','2011-09-14 09:11:13','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Support','Customer Issue','Maintenance Visit',1,NULL),('Delivery Note-Installation Note','2010-08-08 17:09:34','2011-09-14 09:11:13','Administrator','Administrator',0,NULL,NULL,NULL,0,'Selling','Delivery Note','Installation Note',1,NULL),('Delivery Note-Packing Slip','2012-02-02 11:53:19','2012-02-02 07:23:19','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','Delivery Note','Packing Slip',0,NULL),('Delivery Note-Sales Invoice','2010-08-08 17:09:34','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','Delivery Note','Sales Invoice',1,NULL),('Lead-Customer','2010-08-08 17:09:34','2011-09-14 09:11:13','Administrator','Administrator',0,NULL,NULL,NULL,0,'Selling','Lead','Customer',NULL,NULL),('Lead-Opportunity','2010-08-08 17:09:34','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,'Selling','Lead','Opportunity',NULL,NULL),('Maintenance Schedule-Maintenance Visit','2012-06-27 14:23:48','2012-06-27 13:18:25','Administrator','Administrator',0,NULL,NULL,NULL,1,'Support','Maintenance Schedule','Maintenance Visit',1,NULL),('Opportunity-Quotation','2010-08-08 17:09:34','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Selling','Opportunity','Quotation',1,NULL),('Project-Delivery Note','2010-09-01 15:47:59','2011-09-14 09:11:13','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Stock','Project','Delivery Note',NULL,NULL),('Project-Sales Invoice','2010-09-01 15:47:59','2012-05-08 08:08:10','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'Accounts','Project','Sales Invoice',NULL,NULL),('Project-Sales Order','2010-09-01 15:47:59','2011-09-14 09:11:13','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Selling','Project','Sales Order',NULL,NULL),('Purchase Order-Purchase Invoice','2010-08-08 17:09:35','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','Purchase Order','Purchase Invoice',1,NULL),('Purchase Order-Purchase Receipt','2010-08-08 17:09:35','2012-03-01 13:35:46','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','Purchase Order','Purchase Receipt',1,NULL),('Purchase Receipt-Purchase Invoice','2010-08-08 17:09:35','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','Purchase Receipt','Purchase Invoice',1,NULL),('Purchase Request-Purchase Order','2010-08-08 17:09:34','2012-07-02 11:12:28','Administrator','Administrator',0,NULL,'','',1,'Buying','Purchase Request','Purchase Order',1,NULL),('Purchase Request-Supplier Quotation','2012-10-02 13:17:57','2012-08-03 12:34:09','Administrator','Administrator',0,NULL,NULL,NULL,1,'Buying','Purchase Request','Supplier Quotation',1,NULL),('Quotation-Sales Order','2010-08-08 17:09:35','2011-09-14 09:11:13','Administrator','Administrator',0,NULL,NULL,NULL,0,'Selling','Quotation','Sales Order',1,NULL),('Salary Structure-Salary Slip','2010-12-14 10:33:11','2011-09-14 09:11:13','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'HR','Salary Structure','Salary Slip',NULL,NULL),('Sales Invoice-Delivery Note','2010-12-14 17:56:41','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','Sales Invoice','Delivery Note',1,NULL),('Sales Order-Delivery Note','2010-08-08 17:09:35','2012-03-28 08:10:23','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','Sales Order','Delivery Note',1,NULL),('Sales Order-Maintenance Schedule','2010-08-08 17:09:35','2011-09-14 09:11:13','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support','Sales Order','Maintenance Schedule',1,NULL),('Sales Order-Maintenance Visit','2010-08-08 17:09:36','2011-09-14 09:11:13','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Support','Sales Order','Maintenance Visit',1,NULL),('Sales Order-Purchase Request','2011-05-20 10:07:55','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Buying','Sales Order','Purchase Request',1,NULL),('Sales Order-Sales Invoice','2010-08-08 17:09:36','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','Sales Order','Sales Invoice',1,NULL),('Supplier Quotation-Purchase Order','2012-10-02 13:17:57','2012-08-06 16:45:56','Administrator','Administrator',0,NULL,NULL,NULL,1,'Buying','Supplier Quotation','Purchase Order',1,NULL); +/*!40000 ALTER TABLE `tabDocType Mapper` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabDocType` +-- + +DROP TABLE IF EXISTS `tabDocType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabDocType` ( + `name` varchar(180) NOT NULL default '', + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(180) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `search_fields` varchar(180) default NULL, + `issingle` int(1) default NULL, + `istable` int(1) default NULL, + `version` int(11) default NULL, + `module` varchar(180) default NULL, + `autoname` varchar(180) default NULL, + `name_case` varchar(180) default NULL, + `description` text, + `colour` varchar(180) default NULL, + `read_only` int(1) default NULL, + `in_create` int(1) default NULL, + `show_in_menu` int(1) default NULL, + `menu_index` int(11) default NULL, + `parent_node` varchar(180) default NULL, + `smallicon` varchar(180) default NULL, + `allow_print` int(1) default NULL, + `allow_email` int(1) default NULL, + `allow_copy` int(1) default NULL, + `allow_rename` int(1) default NULL, + `hide_toolbar` int(1) default NULL, + `hide_heading` int(1) default NULL, + `allow_attach` int(1) default NULL, + `use_template` int(1) default NULL, + `max_attachments` int(11) default NULL, + `section_style` varchar(180) default NULL, + `client_script` mediumtext, + `client_script_core` mediumtext, + `server_code` mediumtext, + `server_code_core` mediumtext, + `server_code_compiled` mediumtext, + `client_string` mediumtext, + `server_code_error` varchar(180) default NULL, + `print_outline` varchar(180) default NULL, + `dt_template` mediumtext, + `is_transaction_doc` int(1) default NULL, + `change_log` mediumtext, + `read_only_onload` int(1) default NULL, + `allow_trash` int(1) default NULL, + `in_dialog` int(1) default NULL, + `document_type` varchar(180) default NULL, + `tag_fields` varchar(180) default NULL, + `subject` varchar(180) default NULL, + `_last_update` varchar(32) default NULL, + `default_print_format` varchar(180) default NULL, + `is_submittable` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabDocType` +-- + +LOCK TABLES `tabDocType` WRITE; +/*!40000 ALTER TABLE `tabDocType` DISABLE KEYS */; +INSERT INTO `tabDocType` VALUES ('Account','2012-10-02 13:18:31','2012-07-11 13:58:44','Administrator','Administrator',0,NULL,NULL,NULL,1,'debit_or_credit, group_or_ledger',NULL,NULL,1,'Accounts',NULL,NULL,'An **Account** is heading under which financial and business transactions are carried on. For example, “Travel Expense” is an account, “Customer Zoe”, “Supplier Mae” are accounts. \n\n**Note:** ERPNext creates accounts for Customers and Suppliers automatically.\n\n### Groups and Ledgers\n\nThere are two main kinds of Accounts in ERPNext - Group and Ledger. Groups can have sub-groups and ledgers within them, whereas ledgers are the leaf nodes of your chart and cannot be further classified.\n\nAccounting Transactions can only be made against Ledger Accounts (not Groups)\n','White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1325570645','Standard',NULL,NULL),('Account Balance','2012-05-08 11:38:33','2012-03-27 14:35:40','Administrator','Administrator',0,NULL,NULL,NULL,1,'account, period, fiscal_year, balance',NULL,0,6,'Accounts','_ACB.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549700','Standard',NULL,NULL),('Activity Type','2012-05-08 11:38:38','2012-03-27 14:36:05','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,12,'Projects','field:activity_type',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Address','2012-07-12 19:25:52','2012-07-02 20:24:15','Administrator','Administrator',0,NULL,NULL,NULL,1,'customer, supplier, sales_partner, country, state',NULL,NULL,1,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'Master',NULL,NULL,'1319016431','Standard',NULL,NULL),('Answer','2012-05-08 11:38:25','2012-03-27 14:36:01','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Utilities','_ANS.#######',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Appraisal','2012-05-08 11:38:22','2012-03-27 14:45:46','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'status, employee, employee_name',NULL,NULL,161,'HR','APRSL.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1316075905','Standard',1,NULL),('Appraisal Goal','2012-05-08 11:38:23','2012-03-27 14:35:53','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,15,'HR','APRSLD.#####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Appraisal Template','2012-05-08 11:38:21','2012-03-27 14:35:58','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'HR','field:kra_title',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Appraisal Template Goal','2012-05-08 11:38:23','2012-03-27 14:35:58','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,6,'HR','KSHEET.#####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Attendance','2012-05-08 11:38:24','2012-03-27 14:45:46','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'employee, employee_name, att_date, status',NULL,NULL,75,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,'1317365120','Standard',1,NULL),('Attendance Control Panel','2012-05-08 11:38:24','2012-03-27 14:35:53','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,122,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1294312182',NULL,NULL,NULL),('Authorization Control','2012-05-08 11:38:43','2012-03-27 14:36:18','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,216,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Authorization Rule','2012-05-08 11:38:42','2012-03-27 14:36:18','Administrator','Administrator',0,NULL,NULL,NULL,1,'transaction,based_on,system_user,system_role,approving_user,approving_role',NULL,NULL,58,'Setup','AR.####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1308741898',NULL,NULL,NULL),('Bank Reconciliation','2012-05-08 11:38:35','2012-03-27 14:35:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,12,'Accounts',NULL,NULL,NULL,'White:FFF',1,NULL,0,NULL,NULL,NULL,1,1,1,NULL,1,1,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1294312169',NULL,NULL,NULL),('Bank Reconciliation Detail','2012-05-08 11:38:32','2012-03-27 14:35:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Batch','2012-05-08 11:38:28','2012-03-27 14:36:26','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,12,'Stock','field:batch_id',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Bin','2012-10-02 13:18:17','2012-07-31 17:23:42','Administrator','Administrator',0,NULL,NULL,NULL,1,'item_code,warehouse',NULL,NULL,1,'Stock','BIN/.#######',NULL,NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549701','Standard',NULL,NULL),('Blog','2012-10-02 13:17:53','2012-08-03 12:18:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,5,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1328599743',NULL,NULL,NULL),('Blog Subscriber','2012-05-08 11:38:47','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('BOM','2012-10-02 13:18:38','2012-03-27 14:45:46','Administrator','Administrator',0,NULL,NULL,NULL,1,'item',0,0,196,'Production',NULL,NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,'%(item)s','1326963484','Standard',1,NULL),('BOM Control','2012-05-08 11:38:46','2012-03-27 14:36:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,108,'Production',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('BOM Explosion Item','2012-05-08 11:38:46','2012-03-27 14:36:03','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,24,'Production','FBD/.######',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('BOM Item','2012-05-08 11:38:45','2012-03-27 14:36:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,27,'Production',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('BOM Operation','2012-05-08 11:38:46','2012-03-27 14:36:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,8,'Production',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Branch','2012-05-08 11:38:21','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,11,'HR','field:branch',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Brand','2012-05-08 11:38:44','2012-03-27 14:36:19','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'Setup','field:brand',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Budget Control','2012-05-08 11:38:37','2012-03-27 14:35:41','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,23,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Budget Detail','2012-05-08 11:38:33','2012-03-27 14:35:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,6,'Accounts','CBD/.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Budget Distribution','2012-10-02 13:18:31','2012-07-11 14:37:30','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','field:distribution_id','Title Case','**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.\n\nTo distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Budget Distribution Detail','2012-10-02 13:18:20','2012-07-11 14:32:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','BDD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Bulk Email','2012-10-02 13:18:06','2012-08-02 15:17:29','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core',NULL,NULL,'Bulk Email records.',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,NULL,NULL,NULL,NULL),('C-Form','2012-05-08 11:38:36','2012-04-06 17:29:50','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,19,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,3,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1333712835',NULL,NULL,NULL),('C-Form Invoice Detail','2012-05-08 11:38:32','2012-03-27 14:35:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Campaign','2012-10-02 13:18:10','2012-07-12 13:21:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Selling','field:campaign_name',NULL,'Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1326102553','Standard',NULL,NULL),('Comment','2012-10-02 13:18:05','2012-08-06 15:10:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,NULL,1,'Core','CWR/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1311536932','Standard',NULL,NULL),('Communication','2012-10-02 13:18:34','2012-08-31 16:44:13','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Support',NULL,NULL,'Keep a track of all communications',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Company','2012-10-02 13:18:37','2012-08-10 12:15:45','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:company_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1323855292',NULL,NULL,NULL),('Company Control','2012-05-08 11:38:24','2012-03-27 14:35:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,13,'Home',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Contact','2012-10-02 13:18:13','2012-08-02 13:16:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,1,'Master',NULL,'%(first_name)s %(last_name)s - Email: %(email_id)s | Contact: %(phone)s | Mobile: %(mobile_no)s','1327314958','Standard',NULL,NULL),('Contact Control','2012-05-08 11:38:43','2012-03-27 14:36:19','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,25,'Setup',NULL,NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Control Panel','2012-05-08 11:38:12','2012-04-11 17:15:53','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,0,27,'Core',NULL,NULL,NULL,'White:FFF',0,1,1,5,NULL,'controller.png',0,0,0,NULL,0,0,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1327389019','Standard',NULL,NULL),('Cost Center','2012-10-02 13:18:20','2012-07-11 14:41:39','Administrator','Administrator',0,NULL,NULL,NULL,1,'name,parent_cost_center',NULL,NULL,1,'Accounts','field:cost_center_name',NULL,'**Chart of Accounts** is mainly for reporting information for governmental purposes and less for how business actually performs. \n\nMost businesses have multiple activities like different product lines, market segments, areas of business that share some common overheads but should ideally have their own structure to report whether they are profitable or not. For this purpose, there is an alternate structure, called the **Cost Centers**.\n\nA tree of **Cost Centers** to cab be designed to reflect the different units of an organization. Each Income / Expense entry is also tagged against a **Cost Center** and hence you can get Profit and Loss against a **Cost Center** too.\n\n### Budgeting\n\n**Cost Centers** can be used for budgeting purposes too. A budget can be set against each **Account** and the system will either stop, warn or ignore the budget based on the settings in the **Company** master.\n\nBudgets can also be distributed seasonally using **Budget Distribution**.','White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1317365120','Standard',NULL,NULL),('Country','2012-05-08 11:38:43','2012-03-27 14:36:19','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,11,'Setup','field:country_name',NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Currency','2012-10-02 13:18:37','2012-07-11 16:11:45','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:currency_name',NULL,'**Currency** Master','White:FFF',0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Custom Field','2012-10-02 13:18:07','2012-09-10 12:14:04','Administrator','Administrator',0,NULL,NULL,NULL,1,'dt,label,fieldtype,options',NULL,NULL,1,'Core','eval:doc.dt+\"-\"+doc.fieldname',NULL,'Adds a custom field to a DocType','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'dt,fieldtype','%(label)s (%(fieldtype)s) on %(dt)s','1305789385','Standard',NULL,NULL),('Custom Script','2012-07-12 19:25:47','2012-05-21 15:02:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core','CustomScript.####',NULL,'Adds a custom script (client or server) to a DocType','White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201',NULL,NULL,NULL),('Customer','2012-10-02 13:18:10','2012-09-17 11:31:55','Administrator','Administrator',0,NULL,NULL,NULL,1,'customer_name,customer_group,country,territory',NULL,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','customer_group,customer_type','eval:\"%(customer_name)s\"==\"%(name)s\" ? \"\" : \"%(customer_name)s\"','1330501485','Standard',NULL,NULL),('Customer Group','2012-10-02 13:18:37','2012-07-12 09:47:20','Administrator','Administrator',0,NULL,NULL,NULL,1,'name,parent_customer_group',NULL,NULL,1,'Setup','field:customer_group_name',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1294214943','Standard',NULL,NULL),('Customer Issue','2012-10-02 13:18:34','2012-05-18 17:04:36','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,'status,customer,customer_name,allocated_to,allocated_on, territory',NULL,NULL,1,'Support',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'status','%(complaint)s By %(complaint_raised_by)s on %(issue_date)s','1325570647','Standard',1,NULL),('Customize Form','2012-10-02 13:18:07','2012-06-12 12:10:15','Administrator','Administrator',0,NULL,NULL,NULL,1,'doc_type',1,NULL,1,'Core','DL.####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1326273643',NULL,NULL,NULL),('Customize Form Field','2012-10-02 13:18:06','2012-08-07 16:34:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,1,'Core','DLF.#####',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1326705243',NULL,NULL,NULL),('Deduction Type','2012-05-08 11:38:21','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,10,'HR','field:deduction_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Default Home Page','2012-05-08 11:38:16','2012-03-27 14:35:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('DefaultValue','2012-05-08 11:38:16','2012-03-27 14:35:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,NULL,'Core','DEF.######',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Delivery Note','2012-10-02 13:18:14','2012-07-16 16:24:46','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,customer,customer_name, territory,grand_total',NULL,NULL,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,NULL,NULL,'Transaction','billing_status','To %(customer_name)s on %(posting_date)s | %(per_billed)s% billed','1330593645','Standard',1,NULL),('Delivery Note Item','2012-10-02 13:18:16','2012-07-09 11:06:26','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','DND/.#######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1311621379','Standard',NULL,NULL),('Delivery Note Packing Item','2012-10-02 13:18:19','2012-07-10 12:05:31','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Department','2012-05-08 11:38:22','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,7,'HR','field:department_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Designation','2012-05-08 11:38:21','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,7,'HR','field:designation_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('DocField','2012-05-08 11:38:15','2012-03-27 18:23:58','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,6,'Core','FL.#####',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201',NULL,NULL,NULL),('DocPerm','2012-05-08 11:38:16','2012-03-27 14:35:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,NULL,'Core','PERM.#####',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('DocType','2012-10-02 13:18:05','2012-07-11 16:15:21','Administrator','Administrator',0,NULL,NULL,NULL,1,'autoname',0,0,1,'Core','Prompt',NULL,'The basic building block of wnframework is a **DocType**. A DocType represents both a table in the database and a form from which a user can enter data. Actions are also embedded in the DocType. Hence it is the Model, View and Controller.\n\nDocTypes can be single tables or groups. For example, Quotation has a “Quotation” DocType and a “Quotation Item” doctype for the Items table, among others. DocTypes contain a collection of fields called DocFields that form the basis of the columns in the database and the layout of the form.','White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ','Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('DocType Label','2010-08-08 17:08:59','2010-09-20 14:06:57','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Core','field:dt','',NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,'',NULL,'',NULL,NULL,' ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('DocType Mapper','2012-05-08 11:38:13','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,NULL,9,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201',NULL,NULL,NULL),('Earning Type','2012-05-08 11:38:24','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,13,'HR','field:earning_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Email Digest','2012-10-02 13:18:35','2012-09-15 19:34:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','Prompt',NULL,'Send regular summary reports via Email.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,'1324556758',NULL,NULL,NULL),('Email Settings','2012-10-02 13:18:36','2012-07-12 16:16:27','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,NULL,'Email Settings for Outgoing and Incoming Emails.','White:FFF',NULL,1,NULL,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1325570647','Standard',NULL,NULL),('Employee','2012-10-02 13:18:12','2012-03-27 14:35:55','Administrator','Administrator',0,NULL,NULL,NULL,1,'employee_name',NULL,NULL,444,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status','%(employee_name)s','1308918132',NULL,NULL,NULL),('Employee Education','2012-05-08 11:38:22','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Employee External Work History','2012-05-08 11:38:23','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Employee Internal Work History','2012-05-08 11:38:24','2012-03-27 14:35:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,6,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Employee Training','2012-05-08 11:38:24','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Employment Type','2012-05-08 11:38:23','2012-03-27 14:35:55','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,16,'HR','field:employee_type_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Event','2012-10-02 13:18:05','2012-09-24 15:40:46','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core','EV.#####',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,'---intro_html---\n\n
    \n %(ref)s\n Go To Calendar\n
    \n\n---ref_html---\n\nReference : %(dn)s

    ',' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201','Standard',NULL,NULL),('Event Role','2012-05-08 11:38:13','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Core','__EVR.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Event User','2012-05-08 11:38:17','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Core','EVP.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Expense Claim','2012-10-02 13:18:11','2012-03-27 14:45:48','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,'approval_status,employee,employee_name',NULL,NULL,135,'HR','EXP.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'approval_status','From %(employee_name)s for %(total_claimed_amount)s (claimed)','1308808105','Standard',1,NULL),('Expense Claim Detail','2012-05-08 11:38:21','2012-03-27 14:35:56','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Expense Claim Type','2012-05-08 11:38:24','2012-03-27 14:35:55','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'HR','field:expense_type',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Features Setup','2012-10-02 13:18:35','2012-06-07 18:41:50','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,'Title Case',NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1323840127','Standard',NULL,NULL),('Feed','2012-05-08 11:38:24','2012-03-27 14:35:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Home','_FEED.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Field Mapper Detail','2012-05-08 11:38:16','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,10,'Core','FMD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('File Data','2012-05-08 11:38:17','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Core','FileData/.#####',NULL,NULL,'White:FFF',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Fiscal Year','2012-10-02 13:18:20','2012-07-11 14:56:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','field:year',NULL,'**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Form 16A','2012-05-08 11:38:35','2012-03-27 14:35:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,75,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1308123438',NULL,NULL,NULL),('Form 16A Ack Detail','2012-05-08 11:38:36','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Form 16A Tax Detail','2012-05-08 11:38:36','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('GL Control','2012-05-08 11:38:35','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,288,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('GL Entry','2012-05-08 11:38:37','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,'voucher_no,account,posting_date,against_voucher',NULL,NULL,103,'Accounts','GL.#######',NULL,NULL,'White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1319016431','Standard',NULL,NULL),('GL Mapper','2012-05-08 11:38:25','2012-04-23 12:27:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Utilities','field:doc_type',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1305006361',NULL,NULL,NULL),('GL Mapper Detail','2012-05-08 11:38:25','2012-03-27 14:36:46','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,4,'Utilities','GLMDetail.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Global Defaults','2012-10-02 13:18:36','2012-05-22 14:11:21','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,NULL,NULL,'White:FFF',1,1,1,NULL,NULL,NULL,1,1,1,NULL,0,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1323855502','Standard',NULL,NULL),('Grade','2012-05-08 11:38:21','2012-03-27 14:35:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,7,'HR','field:grade_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Holiday','2012-05-08 11:38:21','2012-03-27 14:35:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Holiday List','2012-05-08 11:38:22','2012-03-27 14:35:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,17,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Home Control','2012-05-08 11:38:24','2012-03-27 14:35:53','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,6,'Home',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Industry Type','2012-05-08 11:38:18','2012-03-27 14:36:09','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,4,'Selling','field:industry',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Installation Note','2012-05-08 11:38:20','2012-03-27 18:48:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,98,'Selling','IN/.####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'At %(customer_name)s on %(inst_date)s','1306480044','Standard',1,NULL),('Installation Note Item','2012-05-08 11:38:19','2012-03-27 14:36:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,25,'Selling','IID/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Item','2012-10-02 13:13:43','2012-07-11 09:57:42','Administrator','Administrator',0,NULL,NULL,NULL,1,'item_name,description,item_group,customer_code',NULL,NULL,1,'Stock','field:item_code',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','item_group','%(item_name)s','1329808172','Standard',NULL,NULL),('Item Customer Detail','2012-05-08 11:38:28','2012-03-27 14:36:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,7,'Stock','ITEMCUST/.#####',NULL,'For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes','White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Item Group','2012-10-02 13:18:35','2012-07-12 11:26:21','Administrator','Administrator',0,NULL,NULL,NULL,1,'parent_item_group',0,NULL,1,'Setup','field:item_group_name',NULL,'Item Classification','White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Item Price','2012-05-08 11:38:30','2012-03-27 14:36:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Stock','RFD/.#####',NULL,NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Item Quality Inspection Parameter','2012-05-08 11:38:30','2012-03-27 14:36:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','IISD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Item Supplier','2012-05-08 11:38:31','2012-03-27 14:36:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Item Tax','2012-05-08 11:38:30','2012-03-27 14:36:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Journal Voucher','2012-10-02 13:18:22','2012-05-04 10:05:25','Administrator','Administrator',0,NULL,NULL,NULL,1,'voucher_type,posting_date, due_date, cheque_no',NULL,NULL,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'voucher_type',' ','1311251040','Standard',1,NULL),('Journal Voucher Detail','2012-05-08 11:38:37','2012-04-30 16:05:46','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','JVD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Landed Cost Item','2012-05-08 11:38:30','2012-05-04 13:02:26','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Landed Cost Master','2012-10-02 13:18:16','2012-09-17 10:53:26','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Stock','field:title',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,'1309508838',NULL,NULL,NULL),('Landed Cost Master Detail','2012-05-08 11:38:28','2012-05-04 13:02:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Landed Cost Purchase Receipt','2012-05-08 11:38:29','2012-03-27 14:36:34','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Landed Cost Wizard','2012-10-02 13:18:16','2012-09-17 10:54:21','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1321441191','Standard',NULL,NULL),('Lead','2012-10-02 13:18:11','2012-08-06 14:49:48','Administrator','Administrator',0,NULL,NULL,NULL,1,'lead_name,lead_owner,status',NULL,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status,source','%(lead_name)s from %(company_name)s | To Discuss: %(to_discuss)s','1332222225','Standard',NULL,NULL),('Lease Agreement','2012-05-08 11:38:32','2012-03-27 14:35:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,24,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1311555967','Standard',NULL,NULL),('Lease Installment','2012-05-08 11:38:32','2012-03-27 14:35:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Leave Allocation','2012-05-08 11:38:23','2012-03-27 14:45:49','Administrator','Administrator',0,NULL,NULL,NULL,1,'employee,employee_name,leave_type,total_leaves_allocated,fiscal_year',NULL,NULL,1560,'HR','LAL/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1317365120','Standard',1,NULL),('Leave Application','2012-10-02 13:18:12','2012-03-27 14:45:49','Administrator','Administrator',0,NULL,NULL,NULL,1,'employee,employee_name,leave_type,from_date,to_date,total_leave_days,fiscal_year',NULL,NULL,17,'HR','LAP/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Transaction','leave_type','From %(employee_name)s, %(designation)s','1310019491',NULL,1,NULL),('Leave Control Panel','2012-05-08 11:38:21','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,162,'HR',NULL,NULL,NULL,'White:FFF',1,NULL,0,NULL,NULL,NULL,1,1,1,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1297751828','Standard',NULL,NULL),('Leave Type','2012-05-08 11:38:23','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,23,'HR','field:leave_type_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Letter Head','2012-10-02 13:18:06','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,2,'Core','field:letter_head_name',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,3,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307340319',NULL,NULL,NULL),('Maintenance Schedule','2012-10-02 13:18:34','2012-03-27 14:45:49','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,customer,customer_name, sales_order_no',NULL,NULL,156,'Support','MS.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549701','Standard',1,NULL),('Maintenance Schedule Detail','2012-05-08 11:38:42','2012-03-27 14:36:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,13,'Support','MSD.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Maintenance Schedule Item','2012-05-08 11:38:41','2012-03-27 14:36:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,9,'Support','IMD.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Maintenance Visit','2012-10-02 13:18:34','2012-06-27 12:50:00','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'status,maintenance_type,customer,customer_name, address,mntc_date,company,fiscal_year',NULL,NULL,1,'Support','MV.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'completion_status,maintenance_type','To %(customer_name)s on %(mntc_date)s','1322549701','Standard',1,NULL),('Maintenance Visit Purpose','2012-05-08 11:38:41','2012-03-27 14:36:43','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,13,'Support','MVD.#####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Market Segment','2012-05-08 11:38:45','2012-03-27 14:36:21','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:segment_name','Title Case',NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('MIS Control','2012-05-08 11:38:31','2012-03-27 14:35:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,120,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Mode of Payment','2012-05-08 11:38:36','2012-03-27 14:35:44','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Accounts','field:mode_of_payment',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Module Def','2012-05-08 11:38:13','2012-04-15 11:13:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core','field:module_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Multi Ledger Report','2012-05-08 11:38:34','2012-03-27 14:35:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,9,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,'1306229235',NULL,NULL,NULL),('Multi Ledger Report Detail','2012-05-08 11:38:35','2012-03-27 14:35:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Naming Series','2012-10-02 13:18:36','2012-07-12 15:59:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,NULL,'Set prefix for numbering series on your transactions','White:FFF',1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Naming Series Options','2012-05-08 11:38:42','2012-03-27 14:36:21','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'Setup','__NSO.#####',NULL,NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Newsletter','2012-10-02 13:18:35','2012-08-24 14:45:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Support',NULL,NULL,'Create and Send Newsletters',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,NULL,NULL,NULL,NULL),('Notification Control','2012-10-02 13:18:37','2012-07-12 16:20:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,NULL,'Send automatic emails to Contacts on Submitting transactions.','White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Opportunity','2012-10-02 13:18:10','2012-05-31 12:42:38','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,transaction_date,customer,lead,enquiry_type,territory,company',NULL,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Transaction',NULL,'To %(customer_name)s%(lead_name)s on %(transaction_date)s','1324284087','Standard',1,NULL),('Opportunity Item','2012-05-08 11:38:18','2012-03-27 14:36:08','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,59,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Other Income Detail','2012-05-08 11:38:22','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,6,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Packing Slip','2012-10-02 13:18:14','2012-06-29 12:24:16','Administrator','Administrator',0,NULL,NULL,NULL,1,'delivery_note',NULL,NULL,1,'Stock','PS.#######',NULL,'Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Transaction',NULL,'[%(delivery_note)s] Case Nos: %(from_case_no)s - %(to_case_no)s | Net Weight: %(net_weight_pkg)s %(net_weight_uom)s | Gross Weight: %(gross_weight_pkg)s %(gross_weight_uom)s','1328091392',NULL,1,NULL),('Packing Slip Item','2012-05-08 11:38:31','2012-03-27 14:36:34','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,9,'Stock','PSD/.#######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Page','2012-10-02 13:18:06','2012-07-12 11:37:24','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,0,1,'Core','field:page_name',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1327650972','Standard',NULL,NULL),('Page Role','2012-05-08 11:38:16','2012-03-27 14:35:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,NULL,'Core','PR.######',NULL,NULL,'White:FFF',0,NULL,NULL,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Payment to Invoice Matching Tool','2012-05-08 11:38:31','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,37,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,'1316509358','Standard',NULL,NULL),('Payment to Invoice Matching Tool Detail','2012-05-08 11:38:32','2012-03-27 14:35:43','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,14,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Period','2012-05-08 11:38:42','2012-03-27 14:36:22','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'Setup','field:period_name',NULL,NULL,'White:FFF',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Period Closing Voucher','2012-10-02 13:18:31','2012-07-10 14:21:21','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,'posting_date, fiscal_year',NULL,NULL,1,'Accounts','PCE/.###',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1311621379','Standard',1,NULL),('Period Control','2012-05-08 11:38:44','2012-03-27 14:36:22','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,36,'Setup',NULL,NULL,NULL,'White:FFF',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Permission Control','2012-05-08 11:38:43','2012-03-27 14:36:22','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,15,'Setup',NULL,NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Plot Control','2012-05-08 11:38:19','2012-03-27 14:36:12','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,215,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('POS Setting','2012-10-02 13:18:31','2012-07-16 16:27:51','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','POS/.####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549700','Standard',NULL,NULL),('Price List','2012-10-02 13:18:37','2012-07-11 17:35:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:price_list_name',NULL,'Maintain multiple selling rates for the same **Item** using **Price Lists**. You can upload / edit multiple prices by downloading and uploading the template.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,1,NULL,1,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1303100817',NULL,NULL,NULL),('Print Format','2012-10-02 13:18:07','2012-07-16 12:48:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,0,1,'Core','Prompt',NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,0,NULL,0,0,0,NULL,'doc_type','eval:(\"Module: %(module)s, Type: %(doc_type)s, Standard: %(standard)s\")','1322035799',NULL,NULL,NULL),('Print Heading','2012-05-08 11:38:44','2012-03-27 14:36:22','Administrator','Administrator',0,NULL,NULL,NULL,1,'print_heading',NULL,NULL,27,'Setup','field:print_heading',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1294312215',NULL,NULL,NULL),('Product','2012-02-13 19:12:21','2012-05-08 11:38:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,12,'Website','field:item',NULL,'A Product is shown on the website and is linked to an item.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,5,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,'1327997783',NULL,NULL,NULL),('Product Group','2012-02-13 19:12:21','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Production Control','2012-05-08 11:38:46','2012-03-27 14:36:05','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,19,'Production',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Production Order','2012-10-02 13:18:38','2012-05-28 19:03:56','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Production',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1325837006','Standard',1,NULL),('Production Plan Item','2012-05-08 11:38:46','2012-03-27 14:36:03','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,27,'Production','PPID/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Production Plan Sales Order','2012-05-08 11:38:46','2012-03-27 14:36:04','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Production','PP/.SO/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Production Planning Tool','2012-05-08 11:38:45','2012-03-27 14:36:05','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,106,'Production',NULL,NULL,NULL,'White:FFF',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1326188323','Standard',NULL,NULL),('Products Settings','2012-02-13 19:12:21','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,4,'Website',NULL,NULL,'\n\n','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1327911653',NULL,NULL,NULL),('Profile','2012-10-02 13:17:57','2012-08-13 13:07:47','Administrator','Administrator',0,NULL,NULL,NULL,1,'first_name, last_name',0,0,1,'Core',NULL,NULL,'Profile Represents a User in the system.','White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,1,NULL,5,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yes',NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,'1323345145','Standard',NULL,NULL),('Profile Control','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,12,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Project','2012-10-02 13:18:32','2012-08-08 13:55:01','Administrator','Administrator',0,NULL,NULL,NULL,1,'customer, status, priority, is_active',NULL,NULL,1,'Projects','field:project_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,4,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status',' ','1305714062','Standard',NULL,NULL),('Project Activity','2012-05-08 11:38:38','2012-03-27 14:36:06','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,15,'Projects','Activity.######',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Project Activity Update','2012-05-08 11:38:38','2012-03-27 14:36:06','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Projects',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Project Control','2012-05-08 11:38:38','2012-03-27 14:36:06','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,30,'Projects',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Project Milestone','2012-05-08 11:38:38','2012-03-27 14:36:06','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,4,'Projects',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Property Setter','2012-10-02 13:18:05','2012-05-25 12:46:53','Administrator','Administrator',0,NULL,NULL,NULL,1,'doc_name,property',NULL,NULL,1,'Core','eval:doc.select_doctype + \'-\' + (doc.select_item or doc.field_name) + \'-\' + doc.property',NULL,'Property Setter overrides a standard DocType or Field property','White:FFF',NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'property','%(property)s property of %(doc_type)s %(doc_name)s',NULL,NULL,NULL,NULL),('Purchase Common','2012-05-08 11:38:40','2012-03-27 14:35:51','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,187,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Purchase Invoice','2012-10-02 13:17:54','2012-07-16 16:26:02','Administrator','Administrator',0,NULL,NULL,NULL,1,'posting_date, credit_to, fiscal_year, bill_no, grand_total, outstanding_amount',NULL,NULL,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'From %(supplier_name)s worth %(grand_total)s due on %(due_date)s | %(outstanding_amount)s outstanding','1330345793','Standard',1,NULL),('Purchase Invoice Advance','2012-05-08 11:38:36','2012-03-27 14:35:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,20,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Purchase Invoice Item','2012-07-12 19:25:50','2012-06-04 12:10:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','EVD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Purchase Order','2012-10-02 13:17:53','2012-08-06 17:14:19','Administrator','Administrator',0,NULL,NULL,NULL,1,'status, transaction_date, supplier,grand_total',NULL,NULL,1,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,NULL,NULL,'Transaction',NULL,'To %(supplier_name)s on %(transaction_date)s | %(per_received)s% delivered','1330339817','Standard',1,NULL),('Purchase Order Item','2012-10-02 13:17:56','2012-08-06 15:55:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Buying','POD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Purchase Order Item Supplied','2012-05-08 11:38:40','2012-03-27 14:35:50','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Purchase Receipt','2012-10-02 13:18:18','2012-07-16 16:26:24','Administrator','Administrator',0,NULL,NULL,NULL,1,'status, posting_date, supplier',NULL,NULL,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,NULL,NULL,'Transaction',NULL,'From %(supplier_name)s against %(purchase_order)s on %(posting_date)s','1330593645','Standard',1,NULL),('Purchase Receipt Item','2012-07-12 19:25:50','2012-06-07 18:07:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','GRND/.#######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Purchase Receipt Item Supplied','2012-05-08 11:38:40','2012-03-27 14:35:50','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,17,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Purchase Request','2012-10-02 13:17:54','2012-05-01 13:02:17','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,transaction_date,sales_order_no',NULL,NULL,1,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'%(per_ordered)s% ordered','1326190064','Standard',1,NULL),('Purchase Request Item','2012-05-08 11:38:38','2012-04-12 14:52:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,37,'Buying','IDTD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Purchase Taxes and Charges','2012-10-02 13:18:31','2012-07-12 14:08:27','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','PVTD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549700','Standard',NULL,NULL),('Purchase Taxes and Charges Master','2012-10-02 13:18:31','2012-08-17 09:57:04','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','field:title',NULL,'Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.\n10. Add or Deduct: Whether you want to add or deduct the tax.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1325570646','Standard',NULL,NULL),('Quality Inspection','2012-05-08 11:38:39','2012-03-27 14:45:50','Administrator','Administrator',0,NULL,NULL,NULL,1,'item_code, report_date, purchase_receipt_no, delivery_note_no',NULL,NULL,38,'Buying','QAI/.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ','Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1317365120','Standard',1,NULL),('Quality Inspection Reading','2012-05-08 11:38:40','2012-03-27 14:35:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'Buying','QASD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Question','2012-10-02 13:18:13','2012-03-27 14:36:01','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,7,'Utilities','QUES.#######',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Quotation','2012-10-02 13:18:08','2012-07-16 16:23:50','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,transaction_date,customer,lead,order_type',NULL,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,1,NULL,1,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,1,NULL,'Transaction','status','To %(customer_name)s on %(transaction_date)s worth %(currency)s %(grand_total_export)s','1332235370','Standard',1,NULL),('Quotation Item','2012-10-02 13:18:07','2012-07-09 11:04:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Selling','QUOD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Quotation Lost Reason','2012-05-08 11:38:44','2012-03-27 14:36:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,4,'Setup','field:order_lost_reason',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Related Page','2012-05-08 11:38:47','2012-03-27 14:36:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Rename Tool','2012-10-02 13:18:13','2012-05-25 11:58:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1308739509',NULL,NULL,NULL),('Report','2012-07-12 19:25:51','2012-06-13 18:50:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Reposting Tool','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,173,'Utilities',NULL,NULL,NULL,'Light Blue:DEF',1,0,1,NULL,NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Role','2012-05-08 11:38:16','2012-03-27 14:35:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,0,1,'Core','field:role_name',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Salary Manager','2012-05-08 11:38:22','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,30,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,'1314253977','Standard',NULL,NULL),('Salary Slip','2012-05-08 11:38:21','2012-03-27 14:45:51','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,393,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'For %(employee_name)s, %(designation)s','1310019491',NULL,1,NULL),('Salary Slip Deduction','2012-05-08 11:38:21','2012-03-27 14:36:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,9,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Salary Slip Earning','2012-05-08 11:38:23','2012-03-27 14:36:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,7,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Salary Structure','2012-05-08 11:38:22','2012-03-27 14:36:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,587,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'For %(employee_name)s','1311621379',NULL,NULL,NULL),('Salary Structure Deduction','2012-05-08 11:38:22','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,14,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Salary Structure Earning','2012-05-08 11:38:22','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,26,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales and Purchase Return Item','2012-05-08 11:38:19','2012-03-27 14:36:14','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,8,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales and Purchase Return Tool','2012-10-02 13:18:16','2012-09-17 10:55:11','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,0,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,1,'Materials',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales BOM','2012-10-02 13:18:16','2012-07-12 18:00:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Stock',NULL,NULL,'Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. \n\nThe package **Item** will have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\".\n\nFor Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.\n\nNote: BOM = Bill of Materials','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549701',NULL,0,NULL),('Sales BOM Item','2012-10-02 13:18:19','2012-07-11 18:56:27','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales Browser Control','2012-05-08 11:38:44','2012-03-27 14:36:23','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,159,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales Common','2012-05-08 11:38:17','2012-03-27 14:36:14','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,290,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales Invoice','2012-10-02 13:18:21','2012-09-07 11:56:59','Administrator','Administrator',0,NULL,NULL,NULL,1,'posting_date, due_date, debit_to, fiscal_year, grand_total, outstanding_amount',NULL,NULL,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,'1. Change in pull_details method dt.-26-06-2009',1,NULL,NULL,NULL,NULL,'To %(customer_name)s worth %(currency)s %(grand_total_export)s due on %(due_date)s | %(outstanding_amount)s outstanding','1330671142','Standard',1,NULL),('Sales Invoice Advance','2012-05-08 11:38:36','2012-03-27 14:35:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,24,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales Invoice Item','2012-10-02 13:18:23','2012-07-09 11:00:18','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','INVD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Sales Order','2012-10-02 13:18:09','2012-09-26 13:05:15','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,transaction_date,customer,customer_name, territory,order_type,company',0,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,NULL,NULL,'Transaction','delivery_status,billing_status','From %(customer_name)s on %(transaction_date)s worth %(currency)s %(grand_total_export)s | %(per_delivered)s% delivered | %(per_billed)s% billed','1330670942','Standard',1,NULL),('Sales Order Item','2012-10-02 13:18:09','2012-07-09 11:05:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Selling','SOD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Sales Partner','2012-10-02 13:18:36','2012-07-12 11:22:15','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:partner_name',NULL,'A **Sales Partner** is a third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission. This is useful if you make the end sale to the **Customer**, involving your **Sales Partner**.\n\nIf you sell to your **Sales Partner** who in-turn sells it to the **Customer**, then you must make a **Customer** instead.','White:FFF',0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Sales Person','2012-10-02 13:18:35','2012-07-12 10:33:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'name,parent_sales_person',NULL,NULL,1,'Setup','field:sales_person_name',NULL,'All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.','White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1302765705',NULL,NULL,NULL),('Sales Taxes and Charges','2012-10-02 13:18:20','2012-07-12 13:50:43','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','INVTD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Sales Taxes and Charges Master','2012-10-02 13:18:20','2012-07-12 13:43:32','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','field:title',NULL,'Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Sales Team','2012-05-08 11:38:19','2012-03-27 14:36:17','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sandbox','2012-05-08 11:38:17','2012-03-27 14:45:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,2,'Core','_SD.####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL),('Search Criteria','2012-07-12 19:25:50','2012-06-13 19:12:56','Administrator','Administrator',0,NULL,NULL,NULL,1,'criteria_name',NULL,NULL,1,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201','Standard',NULL,NULL),('Serial No','2012-10-02 13:18:15','2012-04-26 13:01:57','Administrator','Administrator',0,NULL,NULL,NULL,1,'item_code,status',NULL,NULL,1,'Stock','field:serial_no',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status','Item Code: %(item_code)s, Warehouse: %(warehouse)s','1325570647','Standard',NULL,NULL),('Series Detail','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Setup Control','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,0,73,'Setup',NULL,NULL,NULL,'White:FFF',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Shipping Address','2012-05-08 11:38:20','2012-03-27 14:36:17','Administrator','Administrator',0,NULL,NULL,NULL,1,'customer, ship_to, shipping_address',NULL,NULL,8,'Selling','SA.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('SMS Center','2012-05-08 11:38:21','2012-03-27 14:36:17','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,41,'Selling',NULL,NULL,NULL,'White:FFF',1,0,1,4,NULL,NULL,1,1,1,NULL,0,0,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549700','Standard',NULL,NULL),('SMS Control','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,8,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('SMS Log','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Utilities','SMSLOG/.########',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('SMS Parameter','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,4,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('SMS Receiver','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('SMS Settings','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,16,'Setup',NULL,NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1306304974',NULL,NULL,NULL),('State','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,14,'Setup','field:state_name',NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Stock Entry','2012-10-02 13:18:17','2012-07-17 13:32:44','Administrator','Administrator',0,NULL,NULL,NULL,1,'transfer_date, from_warehouse, to_warehouse, purpose, remarks',0,NULL,1,'Stock',NULL,NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ','No',NULL,0,NULL,0,0,0,NULL,'purpose','%(remarks)s','1334303911','Standard',1,NULL),('Stock Entry Detail','2012-05-08 11:38:30','2012-05-01 16:16:20','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','MTND/.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Stock Ledger','2012-05-08 11:38:26','2012-03-27 14:36:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,10,'Stock',NULL,NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Stock Ledger Entry','2012-05-08 11:38:27','2012-03-27 14:36:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,53,'Stock','SLE/.########',NULL,NULL,'White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549701','Standard',NULL,NULL),('Stock Reconciliation','2012-10-02 13:18:18','2012-05-10 11:54:52','Administrator','Administrator',0,NULL,NULL,NULL,1,'reconciliation_date',NULL,NULL,1,'Stock','SR/.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Date: %(reconciliation_date)s, Time: %(reconciliation_time)s','1321617741','Standard',1,NULL),('Stock UOM Replace Utility','2012-05-08 11:38:26','2012-03-27 14:36:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,25,'Stock',NULL,NULL,NULL,'White:FFF',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Style Settings','2012-10-02 13:18:38','2012-05-01 15:58:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Website',NULL,NULL,'Set your background color, font and image (tiled)','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1330594969',NULL,NULL,NULL),('Supplier','2012-10-02 13:18:33','2012-07-18 17:41:49','Administrator','Administrator',0,NULL,NULL,NULL,1,'supplier_name,supplier_type',NULL,NULL,1,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','supplier_type',' ','1306471021',NULL,NULL,NULL),('Supplier Quotation','2012-10-02 13:17:55','2012-08-02 18:04:35','Administrator','Administrator',0,NULL,NULL,NULL,1,'status, transaction_date, supplier,grand_total',NULL,NULL,1,'Buying',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Transaction',NULL,NULL,NULL,'Standard',1,NULL),('Supplier Quotation Item','2012-10-02 13:17:56','2012-08-03 12:34:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Buying','SQI-.#####',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Supplier Type','2012-05-08 11:38:42','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Setup','field:supplier_type',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Support Ticket','2012-10-02 13:18:34','2012-05-02 11:33:24','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,customer,allocated_to,subject,raised_by',NULL,NULL,1,'Support',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'status,allocated_to','%(subject)s','1311584009','Standard',NULL,NULL),('Support Ticket Response','2012-05-08 11:38:41','2012-03-27 14:36:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,4,'Support',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('System Console','2012-05-08 11:38:13','2012-05-02 15:25:21','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,'1307624201',NULL,NULL,NULL),('Table Mapper Detail','2012-05-08 11:38:15','2012-03-27 14:35:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Core','TMD/.#######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Tag','2012-10-02 13:18:06','2012-07-09 14:19:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core','field:tag_name','Title Case',NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Target Detail','2012-05-08 11:38:43','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,15,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Task','2012-10-02 13:18:32','2012-09-17 10:58:32','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Projects','TASK.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status','%(subject)s','1324880734','Standard',NULL,NULL),('TDS Category','2012-05-08 11:38:36','2012-03-27 14:35:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,8,'Accounts','field:category_name',NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,'1302586171',NULL,NULL,NULL),('TDS Category Account','2012-05-08 11:38:34','2012-03-27 14:35:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('TDS Control','2012-05-08 11:38:37','2012-03-27 14:35:48','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,36,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Detail','2012-10-02 13:18:22','2012-09-17 11:08:28','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Payment','2012-05-08 11:38:31','2012-03-27 14:45:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,224,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',1,NULL),('TDS Payment Detail','2012-05-08 11:38:32','2012-03-27 14:35:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,11,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Rate Chart','2012-05-08 11:38:36','2012-03-27 14:35:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,11,'Accounts','Prompt',NULL,NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Rate Detail','2012-05-08 11:38:34','2012-03-27 14:35:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,7,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Return Acknowledgement','2012-05-08 11:38:37','2012-03-27 14:35:49','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,13,'Accounts','TDSR/.####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Terms and Conditions','2012-10-02 13:18:35','2012-07-12 11:37:56','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:title',NULL,'Standard Terms and Conditions that can be added to Sales and Purchases.\n\nExamples:\n\n1. Validity of the offer.\n1. Payment Terms (In Advance, On Credit, part advance etc).\n1. What is extra (or payable by the Customer).\n1. Safety / usage warning.\n1. Warranty if any.\n1. Returns Policy.\n1. Terms of shipping, if applicable.\n1. Ways of addressing disputes, indemnity, liability, etc.\n1. Address and Contact of your Company.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Territory','2012-10-02 13:18:37','2012-07-12 10:01:47','Administrator','Administrator',0,NULL,NULL,NULL,1,'name,parent_territory,territory_manager',NULL,NULL,1,'Setup','field:territory_name','Title Case','You can create **Territories** If your organization operates in multiple regions (could be countries, states or cities). Once you group **Customers** by **Territories**, you can set annual targets for each **Item Group** and get reports that will show your actual performance in the territory v/s what you had planned.','White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1311621379','Standard',NULL,NULL),('Timesheet','2012-10-02 13:18:33','2012-03-27 18:47:10','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'status, owner, timesheet_date',NULL,NULL,69,'Projects','TimeSheet.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'%(owner)s',NULL,NULL,1,NULL),('Timesheet Detail','2012-05-08 11:38:37','2012-03-27 14:36:07','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,15,'Projects','TSD.#####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('ToDo','2012-05-08 11:38:17','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,NULL,5,'Core','TDI.########',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,0,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Top Bar Item','2012-10-02 13:18:38','2012-05-07 15:21:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Trash Control','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,35,'Utilities',NULL,NULL,NULL,'White:FFF',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Trend Analyzer Control','2012-05-08 11:38:35','2012-03-27 14:35:49','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,11,'Accounts',NULL,NULL,NULL,'White:FFF',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('UOM','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'Setup','field:uom_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1307707462',NULL,NULL,NULL),('UOM Conversion Detail','2012-05-08 11:38:27','2012-03-27 14:36:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','UCDD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Update Delivery Date','2010-08-08 17:09:29','2010-09-20 14:06:57','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,1,NULL,5,'Production',NULL,'',NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,'//get query select Territory\n//=======================================================================================================================\ncur_frm.fields_dict[\'territory\'].get_query = function(doc,cdt,cdn) {\n return \'SELECT `tabTerritory`.`name`,`tabTerritory`.`parent_territory` FROM `tabTerritory` WHERE `tabTerritory`.`is_group` = \"No\" AND `tabTerritory`.`docstatus`!= 2 AND `tabTerritory`.%(key)s LIKE \"%s\" ORDER BY `tabTerritory`.`name` ASC LIMIT 50\';\n}',NULL,'class DocType:\n def __init__(self, d, dl):\n self.doc, self.doclist = d, dl\n\n def get_open_sales_order(self):\n if not (self.doc.from_date and self.doc.to_date):\n msgprint(\"From Date and To Date are Mandatory\")\n return\n \n cond = \'\' \n if self.doc.customer:\n cond += \" AND t1.customer = \'%s\' \" % self.doc.customer\n if self.doc.sales_order:\n cond += \" AND t1.name = \'%s\' \" % self.doc.sales_order\n if self.doc.territory:\n cond += \" AND t1.territory = \'%s\' \" %self.doc.territory\n\n dl = sql(\"select distinct t1.name, t1.customer, t1.delivery_date, t1.territory, t1.rounded_total from `tabSales Order` t1, `tabSales Order Detail` t2 where t1.transaction_date >= \'%s\' and t1.transaction_date <= \'%s\' and t1.docstatus=1 and t1.status != \'Completed\' and t1.name = t2.parent and t2.docstatus =1 and t2.qty > t2.delivered_qty and (t2.confirmation_date is null or t2.confirmation_date= \'\' or t2.confirmation_date=\'0000-00-00\') %s\"% (self.doc.from_date, self.doc.to_date, cond)) \n self.doc.clear_table(self.doclist, \'entries\')\n count = 0 \n for d in dl:\n nl = addchild(self.doc, \'entries\', \'Update Delivery Date Detail\', 1, self.doclist)\n nl.sales_order_no = str(d[0])\n nl.customer = str(d[1])\n nl.territory = str(d[3])\n nl.rounded_total = str(d[4])\n nl.delivery_date = str(d[2])\n count = count +1\n if not count:\n msgprint(\"No Sales Order found as per filters set.\")\n\n def update_sales_order(self):\n for d in getlist(self.doclist, \'entries\'):\n if d.confirmation_date:\n sql(\"update `tabSales Order Detail` set confirmation_date = %s where parent = %s \", (d.confirmation_date, d.sales_order_no))\n msgprint(\"Updated\")',NULL,NULL,' ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('UserRole','2012-10-02 13:18:05','2012-07-13 12:25:07','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,0,1,'Core','UR.#####',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Valuation Control','2012-05-08 11:38:28','2012-03-27 14:36:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,4,'Stock',NULL,NULL,NULL,'White:FFF',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Warehouse','2012-10-02 13:18:18','2012-07-11 10:18:07','Administrator','Administrator',0,NULL,NULL,NULL,1,'warehouse_type',NULL,NULL,1,'Stock','field:warehouse_name',NULL,'A logical Warehouse against which stock entries are made.\n\nThere are two main Warehouse Types that are significant in ERPNext.\n\n1. **Stores:** These are where your incoming **Items** are kept before they are consumed or sold. You can have as many “Stores” type **Warehouses** as you wish. Stores type warehouses are significant because if you set an Item for automatic re-order, ERPNext will check its quantities in all “Stores” type **Warehouses** when deciding whether to re-order or not.\n\n2. **Asset**: **Items** marked as type “Fixed Asset” are maintained in Asset Type **Warehouses**. This helps you separate them for the **Items** that are consumed as a part of your regular operations or “Cost of Goods Sold”.\n','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1319016431','Standard',NULL,NULL),('Warehouse Type','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,6,'Setup','field:warehouse_type',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Web Cache','2012-10-02 13:13:42','2012-09-17 10:48:17','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Website',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,NULL,NULL,NULL,NULL),('Web Page','2012-10-02 13:13:42','2012-06-22 18:49:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Website',NULL,NULL,'A custom page is a simple page with the layout - headline, main section, side section\n\nEditing:\n\n- Editing is in [markdown format](http://daringfireball.net/projects/markdown/syntax)\n- You can also add images and embed html code\n\nAccessing the page:\n\n- The page can be accessed as #![page-name] after the main url\n\nIdeal for pages like FAQ, Terms and Conditions, Help etc.\n\n','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,20,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1328093379',NULL,NULL,NULL),('Website Settings','2012-10-02 13:13:42','2012-07-09 16:20:58','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,10,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,'1329115882',NULL,NULL,NULL),('Workflow Action Detail','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Workflow Engine','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,4,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Workflow Rule','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,'select_form,rule_status',NULL,NULL,31,'Setup','field:rule_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,'Standard',NULL,NULL),('Workflow Rule Detail','2012-05-08 11:38:42','2012-03-27 14:36:26','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,9,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Workstation','2012-05-08 11:38:46','2012-03-27 18:46:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,14,'Production','field:workstation_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322125389','Standard',NULL,NULL); +/*!40000 ALTER TABLE `tabDocType` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEarning Type` +-- + +DROP TABLE IF EXISTS `tabEarning Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEarning Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `earning_name` varchar(180) default NULL, + `description` text, + `taxable` varchar(180) default NULL, + `exemption_limit` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEarning Type` +-- + +LOCK TABLES `tabEarning Type` WRITE; +/*!40000 ALTER TABLE `tabEarning Type` DISABLE KEYS */; +INSERT INTO `tabEarning Type` VALUES ('Basic','2010-12-14 17:56:47','2010-04-05 12:52:35','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Basic','Basic','Yes',NULL,NULL),('House Rent Allowance','2010-12-14 17:56:47','2010-04-05 12:33:19','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'House Rent Allowance','House Rent Allowance','No',NULL,NULL); +/*!40000 ALTER TABLE `tabEarning Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEmail Digest` +-- + +DROP TABLE IF EXISTS `tabEmail Digest`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEmail Digest` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `new_sales_orders` int(1) default NULL, + `custom_code` text, + `frequency` varchar(180) default NULL, + `expenses_booked` int(1) default NULL, + `new_quotations` int(1) default NULL, + `use_standard` int(1) default '1', + `next_send` varchar(180) default NULL, + `collections` int(1) default NULL, + `income` int(1) default NULL, + `new_purchase_orders` int(1) default NULL, + `recipient_list` text, + `email_template` text, + `invoiced_amount` int(1) default NULL, + `company` varchar(180) default NULL, + `bank_balance` int(1) default NULL, + `new_transactions` int(1) default NULL, + `new_enquiries` int(1) default NULL, + `new_leads` int(1) default NULL, + `stock_below_rl` int(1) default NULL, + `enabled` int(1) default NULL, + `payments` int(1) default NULL, + `payables` int(1) default NULL, + `income_year_to_date` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + `new_stock_entries` int(1) default NULL, + `new_delivery_notes` int(1) default NULL, + `new_purchase_receipts` int(1) default NULL, + `new_communications` int(1) default NULL, + `new_purchase_requests` int(1) default NULL, + `new_projects` int(1) default NULL, + `new_supplier_quotations` int(1) default NULL, + `new_support_tickets` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEmail Digest` +-- + +LOCK TABLES `tabEmail Digest` WRITE; +/*!40000 ALTER TABLE `tabEmail Digest` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEmail Digest` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEmployee Education` +-- + +DROP TABLE IF EXISTS `tabEmployee Education`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEmployee Education` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `school_univ` text, + `qualification` varchar(180) default NULL, + `level` varchar(180) default NULL, + `year_of_passing` int(11) default NULL, + `class_per` varchar(180) default NULL, + `maj_opt_subj` text, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEmployee Education` +-- + +LOCK TABLES `tabEmployee Education` WRITE; +/*!40000 ALTER TABLE `tabEmployee Education` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEmployee Education` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEmployee External Work History` +-- + +DROP TABLE IF EXISTS `tabEmployee External Work History`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEmployee External Work History` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `company_name` varchar(180) default NULL, + `designation` varchar(180) default NULL, + `salary` decimal(18,6) default NULL, + `address` text, + `contact` varchar(180) default NULL, + `total_experience` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEmployee External Work History` +-- + +LOCK TABLES `tabEmployee External Work History` WRITE; +/*!40000 ALTER TABLE `tabEmployee External Work History` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEmployee External Work History` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEmployee Internal Work History` +-- + +DROP TABLE IF EXISTS `tabEmployee Internal Work History`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEmployee Internal Work History` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `branch` varchar(180) default NULL, + `department` varchar(180) default NULL, + `designation` varchar(180) default NULL, + `grade` varchar(180) default NULL, + `from_date` date default NULL, + `to_date` date default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEmployee Internal Work History` +-- + +LOCK TABLES `tabEmployee Internal Work History` WRITE; +/*!40000 ALTER TABLE `tabEmployee Internal Work History` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEmployee Internal Work History` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEmployee Training` +-- + +DROP TABLE IF EXISTS `tabEmployee Training`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEmployee Training` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `institute` text, + `nature_of_training` text, + `duration` varchar(180) default NULL, + `loc` varchar(180) default NULL, + `certificate` text, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEmployee Training` +-- + +LOCK TABLES `tabEmployee Training` WRITE; +/*!40000 ALTER TABLE `tabEmployee Training` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEmployee Training` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEmployee` +-- + +DROP TABLE IF EXISTS `tabEmployee`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEmployee` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `fiscal_year` varchar(180) default NULL, + `salutation` varchar(180) default NULL, + `employee_name` varchar(180) default NULL, + `naming_series` varchar(180) default 'EMP/', + `employee_number` varchar(180) default NULL, + `date_of_joining` date default NULL, + `gender` varchar(180) default NULL, + `date_of_birth` date default NULL, + `month_of_birth` varchar(180) default NULL, + `employment_type` varchar(180) default NULL, + `scheduled_confirmation_date` date default NULL, + `final_confirmation_date` date default NULL, + `contract_end_date` date default NULL, + `date_of_retirement` date default NULL, + `status` varchar(180) default 'Active', + `holiday_list` varchar(180) default NULL, + `branch` varchar(180) default NULL, + `department` varchar(180) default NULL, + `reports_to` varchar(180) default NULL, + `designation` varchar(180) default NULL, + `grade` varchar(180) default NULL, + `company_email` varchar(180) default NULL, + `salary_mode` varchar(180) default NULL, + `bank_name` varchar(180) default NULL, + `bank_ac_no` varchar(180) default NULL, + `esic_card_no` varchar(180) default NULL, + `pf_number` varchar(180) default NULL, + `gratuity_lic_id` varchar(180) default NULL, + `resignation_letter_date` date default NULL, + `relieving_date` date default NULL, + `notice_number_of_days` int(11) default NULL, + `reason_for_leaving` varchar(180) default NULL, + `leave_encashed` varchar(180) default NULL, + `encashment_date` date default NULL, + `held_on` date default NULL, + `reason_for_resignation` varchar(180) default NULL, + `new_workplace` varchar(180) default NULL, + `feedback` text, + `personal_email` varchar(180) default NULL, + `permanent_accommodation_type` varchar(180) default NULL, + `relation` varchar(180) default NULL, + `pan_number` varchar(180) default NULL, + `permanent_address` text, + `blood_group` varchar(180) default NULL, + `date_of_issue` date default NULL, + `current_accommodation_type` varchar(180) default NULL, + `current_address` text, + `family_background` text, + `person_to_be_contacted` varchar(180) default NULL, + `place_of_issue` varchar(180) default NULL, + `passport_number` varchar(180) default NULL, + `cell_number` varchar(180) default NULL, + `valid_upto` date default NULL, + `emergency_phone_number` varchar(180) default NULL, + `marital_status` varchar(180) default NULL, + `health_details` text, + `file_list` text, + `is_sales_person` int(1) default NULL, + `company` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `status` (`status`), + KEY `designation` (`designation`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEmployee` +-- + +LOCK TABLES `tabEmployee` WRITE; +/*!40000 ALTER TABLE `tabEmployee` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEmployee` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEmployment Type` +-- + +DROP TABLE IF EXISTS `tabEmployment Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEmployment Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `employee_type_name` varchar(180) default NULL, + `trash_reason` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEmployment Type` +-- + +LOCK TABLES `tabEmployment Type` WRITE; +/*!40000 ALTER TABLE `tabEmployment Type` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEmployment Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEvent Role` +-- + +DROP TABLE IF EXISTS `tabEvent Role`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEvent Role` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `role` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEvent Role` +-- + +LOCK TABLES `tabEvent Role` WRITE; +/*!40000 ALTER TABLE `tabEvent Role` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEvent Role` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEvent User` +-- + +DROP TABLE IF EXISTS `tabEvent User`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEvent User` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `person` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `person` (`person`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEvent User` +-- + +LOCK TABLES `tabEvent User` WRITE; +/*!40000 ALTER TABLE `tabEvent User` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabEvent User` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabEvent` +-- + +DROP TABLE IF EXISTS `tabEvent`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabEvent` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `event_date` date default NULL, + `event_hour` time default NULL, + `description` text, + `notes` text, + `event_type` varchar(180) default NULL, + `ref_type` varchar(180) default NULL, + `ref_name` varchar(180) default NULL, + `event_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `event_date` (`event_date`), + KEY `event_type` (`event_type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabEvent` +-- + +LOCK TABLES `tabEvent` WRITE; +/*!40000 ALTER TABLE `tabEvent` DISABLE KEYS */; +INSERT INTO `tabEvent` VALUES ('EV00001','2009-06-17 13:13:43','2009-06-17 13:13:43','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'2009-06-18','08:00:00','test event',NULL,'Private',NULL,NULL,NULL,NULL),('EV00002','2009-06-18 12:12:54','2009-06-18 12:12:54','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'2009-06-19','08:00:00','test23',NULL,'Private',NULL,NULL,NULL,NULL),('EV00003','2009-06-18 12:12:58','2009-06-18 12:12:58','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'2009-06-20','10:00:00','53w',NULL,'Private',NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabEvent` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabExpense Claim Detail` +-- + +DROP TABLE IF EXISTS `tabExpense Claim Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabExpense Claim Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `expense_date` date default NULL, + `expense_type` varchar(180) default NULL, + `description` text, + `claim_amount` decimal(18,6) default NULL, + `sanctioned_amount` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabExpense Claim Detail` +-- + +LOCK TABLES `tabExpense Claim Detail` WRITE; +/*!40000 ALTER TABLE `tabExpense Claim Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabExpense Claim Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabExpense Claim Type` +-- + +DROP TABLE IF EXISTS `tabExpense Claim Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabExpense Claim Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `expense_type` varchar(180) default NULL, + `description` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabExpense Claim Type` +-- + +LOCK TABLES `tabExpense Claim Type` WRITE; +/*!40000 ALTER TABLE `tabExpense Claim Type` DISABLE KEYS */; +INSERT INTO `tabExpense Claim Type` VALUES ('Calls','2010-12-14 17:56:47','2010-08-23 18:26:38','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Calls',NULL,NULL),('Food','2010-12-14 17:56:47','2010-08-23 18:26:30','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Food',NULL,NULL),('Medical','2010-12-14 17:56:47','2010-08-23 18:26:49','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Medical',NULL,NULL),('Others','2010-12-14 17:56:47','2010-09-20 12:16:45','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Others',NULL,NULL),('Travel','2010-12-14 17:56:47','2010-09-20 12:16:45','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Travel',NULL,NULL); +/*!40000 ALTER TABLE `tabExpense Claim Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabExpense Claim` +-- + +DROP TABLE IF EXISTS `tabExpense Claim`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabExpense Claim` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `approval_status` varchar(180) default 'Draft', + `employee` varchar(180) default NULL, + `employee_name` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `company` varchar(180) default NULL, + `posting_date` date default NULL, + `exp_approver` varchar(180) default NULL, + `remark` text, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `total_claimed_amount` decimal(18,6) default NULL, + `total_sanctioned_amount` decimal(18,6) default NULL, + `email_id` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `approval_status` (`approval_status`), + KEY `employee` (`employee`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabExpense Claim` +-- + +LOCK TABLES `tabExpense Claim` WRITE; +/*!40000 ALTER TABLE `tabExpense Claim` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabExpense Claim` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabFeed` +-- + +DROP TABLE IF EXISTS `tabFeed`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabFeed` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `doc_name` varchar(180) default NULL, + `doc_type` varchar(180) default NULL, + `color` varchar(180) default NULL, + `subject` varchar(180) default NULL, + `feed_type` varchar(180) default NULL, + `full_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabFeed` +-- + +LOCK TABLES `tabFeed` WRITE; +/*!40000 ALTER TABLE `tabFeed` DISABLE KEYS */; +INSERT INTO `tabFeed` VALUES ('_FEED00002','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'home','Web Page','#000080','Home',NULL,'Administrator ',NULL); +/*!40000 ALTER TABLE `tabFeed` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabField Mapper Detail` +-- + +DROP TABLE IF EXISTS `tabField Mapper Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabField Mapper Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `from_field` varchar(180) default NULL, + `to_field` varchar(180) default NULL, + `match_id` int(11) default '0', + `map` varchar(180) default NULL, + `checking_operator` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabField Mapper Detail` +-- + +LOCK TABLES `tabField Mapper Detail` WRITE; +/*!40000 ALTER TABLE `tabField Mapper Detail` DISABLE KEYS */; +INSERT INTO `tabField Mapper Detail` VALUES ('000000474','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',1,'transaction_date','transaction_date',0,'No','>='),('000000475','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',2,'company','company',0,'Yes','='),('000000480','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',3,'parent','sales_order_no',1,'Yes',NULL),('000000485','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',4,'stock_uom','uom',1,'Yes',NULL),('000000487','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',5,'reserved_warehouse','warehouse',1,'Yes',NULL),('000000491','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',8,'reserved_warehouse','warehouse',1,'Yes',NULL),('FMD/00016','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',13,'name','customer_issue_no',0,'Yes',NULL),('FMD/00017','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',14,'complaint','description',1,'Yes','='),('FMD/00020','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',17,'doctype','prevdoc_doctype',1,'Yes',NULL),('FMD/00021','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',18,'name','prevdoc_docname',1,'Yes',NULL),('FMD/00022','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',0,'company','company',0,'Yes','='),('FMD/00028','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',2,'name','delivery_note_no',0,'Yes',NULL),('FMD/00029','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',3,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00030','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',4,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00031','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',5,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00034','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',6,'eval: flt(obj.qty) - flt(obj.installed_qty)','qty',1,'Yes',NULL),('FMD/00053','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',2,'parent','delivery_note',1,'Yes',NULL),('FMD/00054','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',3,'name','dn_detail',1,'Yes',NULL),('FMD/00055','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',4,'prevdoc_docname','sales_order',1,'Yes',NULL),('FMD/00056','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',5,'prevdoc_detail_docname','so_detail',1,'Yes',NULL),('FMD/00085','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',1,'uom','stock_uom',1,'Yes',NULL),('FMD/00088','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',2,'name','enq_no',0,'Yes',NULL),('FMD/00098','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',3,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00099','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',4,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00102','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',5,'enquiry_from','quotation_to',0,'Yes',NULL),('FMD/00103','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',6,'enquiry_type','order_type',0,'Yes',NULL),('FMD/00116','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',1,'company','company',0,'Yes','='),('FMD/00117','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',2,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00118','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',3,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00119','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',4,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00120','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',5,'uom','stock_uom',1,'Yes',NULL),('FMD/00121','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',6,'eval:flt(1)','conversion_factor',1,'Yes',NULL),('FMD/00130','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',7,'eval:flt(obj.qty) - flt(obj.ordered_qty)','stock_qty',1,'Yes',NULL),('FMD/00131','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',8,'eval:flt(obj.qty) - flt(obj.ordered_qty)','qty',1,'Yes',NULL),('FMD/00132','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Lead-Customer','field_mapper_details','DocType Mapper',0,'name','lead_name',0,'Yes',NULL),('FMD/00133','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Lead-Customer','field_mapper_details','DocType Mapper',1,'company_name','customer_name',0,'Yes',NULL),('FMD/00142','2010-08-08 17:09:34','2010-08-08 17:09:34','Administrator','ashwini@webnotestech.com',0,'Lead-Customer','field_mapper_details','DocType Mapper',11,'contact_no','phone_1',0,'Yes',NULL),('FMD/00144','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','field_mapper_details','DocType Mapper',1,'campaign_name','campaign',0,'Yes',NULL),('FMD/00149','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','field_mapper_details','DocType Mapper',2,'doctype','enquiry_from',0,'Yes',NULL),('FMD/00151','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','field_mapper_details','DocType Mapper',3,'name','lead',0,'Yes',NULL),('FMD/00179','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',1,'eval: flt(obj.qty) - flt(obj.billed_qty)','qty',1,'Yes',NULL),('FMD/00180','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',2,'purchase_rate','rate',1,'Yes',NULL),('FMD/00181','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',3,'eval: (flt(obj.qty) - flt(obj.billed_qty)) * flt(obj.purchase_rate)','amount',1,'Yes',NULL),('FMD/00183','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',4,'eval: (flt(obj.qty) - flt(obj.billed_qty)) * flt(obj.import_rate)','import_amount',1,'Yes',NULL),('FMD/00185','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',5,'parent','purchase_order',1,'Yes',NULL),('FMD/00186','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',6,'name','po_detail',1,'Yes',NULL),('FMD/00197','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',1,'supplier','supplier',0,'Yes','='),('FMD/00199','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',2,'company','company',0,'Yes','='),('FMD/00201','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',3,'currency','currency',0,'Yes','='),('FMD/00205','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',4,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00206','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',5,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00207','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',6,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00209','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',7,'item_code','item_code',1,'Yes','='),('FMD/00212','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',8,'eval:(flt(obj.qty) - flt(obj.received_qty)) ','received_qty',1,'Yes',NULL),('FMD/00213','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',9,'eval:(flt(obj.qty) - flt(obj.received_qty)) ','qty',1,'Yes',NULL),('FMD/00214','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',10,'eval:(flt(obj.qty) - flt(obj.received_qty)) * flt(obj.conversion_factor)','stock_qty',1,'Yes',NULL),('FMD/00219','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',11,'eval:(flt(obj.qty) - flt(obj.received_qty)) * flt(obj.import_rate)','import_amount',1,'Yes',NULL),('FMD/00221','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',12,'eval:(flt(obj.qty) - flt(obj.received_qty)) * flt(obj.purchase_rate)','amount',1,'Yes',NULL),('FMD/00242','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',1,'eval: flt(obj.qty) - flt(obj.billed_qty)','qty',1,'Yes',NULL),('FMD/00243','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',2,'purchase_rate','rate',1,'Yes',NULL),('FMD/00244','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',3,'eval: (flt(obj.qty) - flt(obj.billed_qty)) * flt(obj.purchase_rate)','amount',1,'Yes',NULL),('FMD/00246','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',4,'eval: (flt(obj.qty) - flt(obj.billed_qty)) * flt(obj.import_rate)','import_amount',1,'Yes',NULL),('FMD/00247','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',5,'parent','purchase_receipt',1,'Yes',NULL),('FMD/00248','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',6,'prevdoc_docname','purchase_order',1,'Yes',NULL),('FMD/00249','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',7,'name','pr_detail',1,'Yes',NULL),('FMD/00250','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',8,'prevdoc_detail_docname','po_detail',1,'Yes',NULL),('FMD/00261','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',0,'transaction_date','transaction_date',0,'No','>='),('FMD/00263','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',2,'name','quotation_no',0,'Yes',NULL),('FMD/00264','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',1,'transaction_date','quotation_date',0,'Yes',NULL),('FMD/00265','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',3,'company','company',0,'Yes','='),('FMD/00266','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',4,'fiscal_year','fiscal_year',0,'Yes','='),('FMD/00277','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',5,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00322','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',1,'name','sales_order_no',0,'Yes',NULL),('FMD/00323','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',2,'company','company',0,'Yes','='),('FMD/00331','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',3,'currency','currency',0,'Yes','='),('FMD/00341','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',6,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00342','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',7,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00343','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',8,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00345','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',9,'eval: (flt(obj.qty) - flt(obj.delivered_qty)) * flt(obj.export_rate)','export_amount',1,'Yes',NULL),('FMD/00355','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',11,'eval: flt(obj.qty) - flt(obj.delivered_qty)','qty',1,'Yes',NULL),('FMD/00356','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',12,'eval: (flt(obj.qty) - flt(obj.delivered_qty)) * flt(obj.basic_rate)','amount',1,'Yes',NULL),('FMD/00357','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',13,'reserved_warehouse','warehouse',1,'Yes',NULL),('FMD/00402','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Schedule','field_mapper_details','DocType Mapper',12,'name','sales_order_no',0,'Yes',NULL),('FMD/00403','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Schedule','field_mapper_details','DocType Mapper',13,'item_code','item_code',1,'Yes','='),('FMD/00406','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Schedule','field_mapper_details','DocType Mapper',16,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00413','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','field_mapper_details','DocType Mapper',13,'name','sales_order_no',0,'Yes',NULL),('FMD/00417','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','field_mapper_details','DocType Mapper',17,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00418','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','field_mapper_details','DocType Mapper',18,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00427','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00445','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',3,'parent','sales_order',1,'Yes',NULL),('FMD/00446','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',4,'name','so_detail',1,'Yes',NULL),('FMD/00551','2010-08-09 09:44:01','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',7,'posting_date','prevdoc_date',2,'Yes',NULL),('FMD/00555','2010-09-01 15:47:59','2011-06-03 14:46:40','Administrator','harshada@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00556','2010-09-01 15:47:59','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00564','2010-09-01 15:47:59','2010-09-01 15:47:59','Administrator','harshada@webnotestech.com',0,'Project-Delivery Note','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00572','2010-09-01 15:47:59','2012-05-08 11:38:10','Administrator','ashwini@webnotestech.com',0,'Project-Sales Invoice','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00576','2010-09-01 15:47:59','2010-09-01 15:47:59','Administrator','harshada@webnotestech.com',0,'Project-Sales Order','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00591','2010-09-01 15:47:59','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',7,'project_name','project_name',0,'Yes','='),('FMD/00592','2010-09-09 12:51:59','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',14,'project_name','project_name',0,'Yes','='),('FMD/00593','2010-09-09 12:51:59','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',15,'customer','customer',0,'Yes','='),('FMD/00595','2010-10-15 14:34:58','2010-10-15 14:34:58','Administrator','ashwini@webnotestech.com',0,'Lead-Customer','field_mapper_details','DocType Mapper',12,'fax','fax_1',0,'Yes',NULL),('FMD/00604','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',8,'modified_value','e_amount',1,'Yes',NULL),('FMD/00606','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',10,'d_modified_amt','d_amount',2,'Yes',NULL),('FMD/00607','2010-12-14 10:33:11','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Schedule','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00678','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',2,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00679','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',3,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00680','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',4,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00702','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',8,'customer_address','delivery_address',0,'Yes',NULL),('FMD/00707','2010-12-15 08:39:19','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',1,'eval: flt(obj.qty) - flt(obj.delivered_qty)','qty',1,'Yes',NULL),('FMD/00708','2010-12-15 08:39:19','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',5,'eval: (flt(obj.qty) - flt(obj.delivered_qty)) * flt(obj.basic_rate)','amount',1,'Yes',NULL),('FMD/00709','2010-12-15 08:39:19','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',6,'eval: (flt(obj.qty) - flt(obj.delivered_qty)) * flt(obj.export_rate)','export_amount',1,'Yes',NULL),('FMD/00710','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',7,'total_earning','gross_pay',0,'Yes',NULL),('FMD/00713','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',12,'modified_value','e_modified_amount',1,'Yes',NULL),('FMD/00714','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',13,'depend_on_lwp','e_depends_on_lwp',1,'Yes',NULL),('FMD/00715','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',16,'d_modified_amt','d_modified_amount',2,'Yes',NULL),('FMD/00716','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',17,'depend_on_lwp','d_depends_on_lwp',2,'Yes',NULL),('FMD/00774','2011-06-03 14:46:41','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',4,'shipping_address_name','customer_address',0,'Yes',NULL),('FMD/00775','2011-06-03 14:46:41','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',5,'shipping_address','address_display',0,'Yes',NULL),('FMD/00779','2011-06-03 14:46:41','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',19,'allocated_amount','customer_mobile_no',0,'Yes',NULL),('FMD/00786','2011-06-03 14:46:41','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Visit','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00799','2011-09-14 12:41:13','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',8,'serial_no','serial_no',1,'Yes',NULL),('FMD/00803','2011-09-14 12:41:13','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',8,'naming_series','naming_series',0,'No',NULL),('FMD/00804','2011-09-14 12:41:13','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',9,'incentives','incentives',3,'No',NULL),('FMD/00805','2011-09-14 12:41:13','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',10,'serial_no','serial_no',1,'Yes',NULL),('FMD/00806','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',7,'transaction_date','transaction_date',0,'No',NULL),('FMD/00807','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',8,'status','status',0,'No',NULL),('FMD/00808','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',9,'naming_series','naming_series',0,'No',NULL),('FMD/00809','2011-09-14 12:41:13','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','field_mapper_details','DocType Mapper',4,'status','status',0,'No',NULL),('FMD/00810','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',7,'naming_series','naming_series',0,'No',NULL),('FMD/00811','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',9,'naming_series','naming_series',0,'No',NULL),('FMD/00812','2011-09-14 12:41:13','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',6,'naming_series','naming_series',0,'No',NULL),('FMD/00813','2011-09-14 12:41:13','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',7,'status','status',0,'No',NULL),('FMD/00814','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',7,'naming_series','naming_series',0,'No',NULL),('FMD/00815','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',9,'serial_no','serial_no',1,'Yes',NULL),('FMD/00816','2011-09-14 12:41:13','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',16,'naming_series','naming_series',0,'No',NULL),('FMD/00817','2011-09-14 12:41:13','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',17,'status','status',0,'No',NULL),('FMD/00818','2011-09-14 12:41:13','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',18,'incentives','incentives',3,'No',NULL),('FMD/00822','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',9,'naming_series','naming_series',0,'No',NULL),('FMD/00823','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',10,'incentives','incentives',3,'No',NULL),('FMD/00824','2011-12-29 14:45:36','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',13,'schedule_date','schedule_date',1,'Yes',NULL),('FMD/00825','2011-12-29 14:45:36','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',14,'net_total','net_total',0,'Yes',NULL),('FMD/00826','2011-12-29 14:45:36','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',15,'grand_total','grand_total',0,'Yes',NULL),('FMD/00827','2011-12-29 14:45:36','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',16,'total_tax','total_tax',0,'Yes',NULL),('FMD/00829','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','field_mapper_details','DocType Mapper',1,'name','delivery_note',0,'Yes',NULL),('FMD/00830','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','field_mapper_details','DocType Mapper',2,'qty','qty',1,'No',NULL),('FMD/00831','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','field_mapper_details','DocType Mapper',3,'naming_series','naming_series',0,'No',NULL),('FMD/00832','2012-02-14 15:27:51','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',9,'schedule_date','schedule_date',1,'Yes',NULL),('FMD/00833','2012-02-21 14:31:09','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',17,'conversion_rate','conversion_rate',0,'Yes',NULL),('FMD/00834','2012-02-21 14:31:09','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',9,'conversion_rate','conversion_rate',0,'Yes',NULL),('FMD/00835','2012-03-28 11:36:01','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',10,'export_rate','export_rate',1,'Yes','='),('FMD/00836','2012-03-28 11:36:01','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',2,'eval: obj.basic_rate and (flt(obj.amount) - flt(obj.billed_amt))/flt(obj.basic_rate) or obj.qty','qty',1,'Yes',NULL),('FMD/00837','2012-03-28 11:36:01','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',5,'eval:flt(obj.amount) - flt(obj.billed_amt)','amount',1,'Yes',NULL),('FMD/00838','2012-03-28 11:36:01','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',6,'eval: (flt(obj.amount) - flt(obj.billed_amt))* flt(obj.export_rate)/flt(obj.basic_rate)','export_amount',1,'Yes',NULL),('FMD/00839','2012-03-28 11:36:01','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',11,'export_rate','export_rate',1,'Yes','='),('FMD/00840','2012-03-28 11:36:01','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',1,'eval: obj.basic_rate and (flt(obj.amount) - flt(obj.billed_amt)) / flt(obj.basic_rate) or obj.qty','qty',1,'Yes',NULL),('FMD/00841','2012-03-28 11:36:01','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',6,'eval: flt(obj.amount) - flt(obj.billed_amt)','amount',1,'Yes',NULL),('FMD/00842','2012-03-28 11:36:01','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',7,'eval: (flt(obj.amount) - flt(obj.billed_amt)) * flt(obj.export_rate)/flt(obj.basic_rate)','export_amount',1,'Yes',NULL),('FMD/00843','2012-03-28 11:36:01','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',11,'export_rate','export_rate',1,'Yes','='),('FMD/00844','2012-05-08 11:38:10','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',10,'net_total','net_total',0,'Yes',NULL),('FMD/00845','2012-05-08 11:38:10','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',11,'grand_total','grand_total',0,'Yes',NULL),('FMD/00846','2012-05-08 11:38:10','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',12,'total_tax','total_tax',0,'Yes',NULL),('FMD/00847','2012-05-08 11:38:10','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',8,'total_tax','total_tax',0,'Yes',NULL),('FMD/00848','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00849','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','field_mapper_details','DocType Mapper',2,'name','maintenance_schedule',0,'Yes',NULL),('FMD/00850','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','field_mapper_details','DocType Mapper',3,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00851','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','field_mapper_details','DocType Mapper',4,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00852','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',10,'transaction_date','transaction_date',0,'No','>='),('FMD/00853','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',1,'company','company',0,'Yes','='),('FMD/00854','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',2,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00855','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',3,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00856','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',4,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00857','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',5,'transaction_date','transaction_date',0,'No','>='),('FMD/00858','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',1,'company','company',0,'Yes','='),('FMD/00859','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',2,'transaction_date','transaction_date',0,'No','>='),('FMD/00860','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',3,'conversion_rate','conversion_rate',0,'Yes',NULL),('FMD/00861','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',4,'net_total','net_total',0,'Yes',NULL),('FMD/00862','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',5,'total_tax','total_tax',0,'Yes',NULL),('FMD/00863','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',6,'grand_total','grand_total',0,'Yes',NULL),('FMD/00864','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',7,'parent','supplier_quotation',1,'Yes',NULL),('FMD/00865','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',8,'name','supplier_quotation_item',1,'Yes',NULL),('FMD/00866','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',9,'uom','stock_uom',1,'Yes',NULL),('FMD/00867','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',10,'eval:flt(1)','conversion_factor',1,'Yes',NULL); +/*!40000 ALTER TABLE `tabField Mapper Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabFile Data` +-- + +DROP TABLE IF EXISTS `tabFile Data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabFile Data` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `file_name` varchar(180) default NULL, + `module` varchar(180) default NULL, + `blob_content` longblob, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabFile Data` +-- + +LOCK TABLES `tabFile Data` WRITE; +/*!40000 ALTER TABLE `tabFile Data` DISABLE KEYS */; +INSERT INTO `tabFile Data` VALUES ('FileData-00002','2009-06-04 11:01:18','2009-06-04 11:01:18','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'profilepic.jpg',NULL,NULL,NULL),('FileData-00003','2009-06-19 14:25:44','2009-06-19 14:25:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'banner_home1.jpg',NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabFile Data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabFiscal Year` +-- + +DROP TABLE IF EXISTS `tabFiscal Year`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabFiscal Year` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `year` varchar(180) default NULL, + `abbreviation` varchar(180) default NULL, + `year_start_date` date default NULL, + `is_fiscal_year_closed` varchar(180) default 'No', + `past_year` varchar(180) default NULL, + `company` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabFiscal Year` +-- + +LOCK TABLES `tabFiscal Year` WRITE; +/*!40000 ALTER TABLE `tabFiscal Year` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabFiscal Year` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabForm 16A Ack Detail` +-- + +DROP TABLE IF EXISTS `tabForm 16A Ack Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabForm 16A Ack Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `quarter` varchar(180) default NULL, + `ack_no` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabForm 16A Ack Detail` +-- + +LOCK TABLES `tabForm 16A Ack Detail` WRITE; +/*!40000 ALTER TABLE `tabForm 16A Ack Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabForm 16A Ack Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabForm 16A Tax Detail` +-- + +DROP TABLE IF EXISTS `tabForm 16A Tax Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabForm 16A Tax Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `amount_paid` decimal(18,6) default NULL, + `date_of_payment` date default NULL, + `tds_main` decimal(18,6) default NULL, + `surcharge` decimal(18,6) default NULL, + `edu_cess` decimal(18,6) default NULL, + `sh_edu_cess` decimal(18,6) default NULL, + `total_tax_deposited` decimal(18,6) default NULL, + `cheque_no` varchar(180) default NULL, + `bsr_code` varchar(180) default NULL, + `tax_deposited_date` date default NULL, + `challan_no` varchar(180) default NULL, + `cess_on_tds` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabForm 16A Tax Detail` +-- + +LOCK TABLES `tabForm 16A Tax Detail` WRITE; +/*!40000 ALTER TABLE `tabForm 16A Tax Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabForm 16A Tax Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabForm 16A` +-- + +DROP TABLE IF EXISTS `tabForm 16A`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabForm 16A` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `from_date` date default NULL, + `to_date` date default NULL, + `fiscal_year` varchar(180) default NULL, + `company` varchar(180) default NULL, + `company_address` text, + `registration_details` text, + `party_name` varchar(180) default NULL, + `party_address` text, + `party_details` varchar(180) default NULL, + `tds_category` varchar(180) default NULL, + `total_amount` decimal(18,6) default NULL, + `place` varchar(180) default NULL, + `dt` date default NULL, + `full_name` varchar(180) default NULL, + `designation` varchar(180) default NULL, + `pan_number` varchar(180) default NULL, + `in_words` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `company` (`company`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabForm 16A` +-- + +LOCK TABLES `tabForm 16A` WRITE; +/*!40000 ALTER TABLE `tabForm 16A` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabForm 16A` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabGL Entry` +-- + +DROP TABLE IF EXISTS `tabGL Entry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabGL Entry` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `posting_date` date default NULL, + `transaction_date` date default NULL, + `aging_date` date default NULL, + `account` varchar(180) default NULL, + `cost_center` varchar(180) default NULL, + `debit` decimal(18,6) default NULL, + `credit` decimal(18,6) default NULL, + `against` text, + `against_voucher` varchar(180) default NULL, + `against_voucher_type` varchar(180) default NULL, + `voucher_type` varchar(180) default NULL, + `voucher_no` varchar(180) default NULL, + `remarks` text, + `is_cancelled` varchar(180) default NULL, + `is_opening` varchar(180) default NULL, + `is_advance` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `company` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `posting_date` (`posting_date`), + KEY `account` (`account`), + KEY `voucher_no` (`voucher_no`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabGL Entry` +-- + +LOCK TABLES `tabGL Entry` WRITE; +/*!40000 ALTER TABLE `tabGL Entry` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabGL Entry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabGL Mapper Detail` +-- + +DROP TABLE IF EXISTS `tabGL Mapper Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabGL Mapper Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `table_field` varchar(180) default NULL, + `account` varchar(180) default NULL, + `debit` varchar(180) default NULL, + `credit` varchar(180) default NULL, + `cost_center` varchar(180) default NULL, + `against` varchar(180) default NULL, + `remarks` varchar(180) default NULL, + `voucher_type` varchar(180) default NULL, + `voucher_no` varchar(180) default NULL, + `posting_date` varchar(180) default NULL, + `transaction_date` varchar(180) default NULL, + `aging_date` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `against_voucher` varchar(180) default NULL, + `against_voucher_type` varchar(180) default NULL, + `company` varchar(180) default NULL, + `is_opening` varchar(180) default NULL, + `is_advance` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabGL Mapper Detail` +-- + +LOCK TABLES `tabGL Mapper Detail` WRITE; +/*!40000 ALTER TABLE `tabGL Mapper Detail` DISABLE KEYS */; +INSERT INTO `tabGL Mapper Detail` VALUES ('000000530','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',1,'entries','income_account','value:0','amount','cost_center','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('000000531','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',2,'other_charges','account_head','value:0','tax_amount','cost_center_other_charges','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('000000532','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',3,NULL,'debit_to','grand_total','value:0',NULL,'against_income_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('000000533','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',4,NULL,'debit_to','value:0','paid_amount',NULL,'cash_bank_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('000000534','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',5,NULL,'debit_to','value:0','write_off_amount',NULL,'write_off_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('000000535','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',6,NULL,'cash_bank_account','paid_amount','value:0',NULL,'debit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('000000536','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',7,NULL,'write_off_account','write_off_amount','value:0','write_off_cost_center','debit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('GLMDetail00003','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Purchase Invoice','fields','GL Mapper',1,'entries','expense_head','amount','value:0','cost_center','parent:credit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00004','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Purchase Invoice','fields','GL Mapper',2,'purchase_tax_details','account_head','value:d.fields.get(\'category\') != \'For Valuation\' and d.fields.get(\'add_deduct_tax\') == \'Add\' and d.fields.get(\'tax_amount\') or 0','value:d.fields.get(\'category\') != \'For Valuation\' and d.fields.get(\'add_deduct_tax\') == \'Deduct\' and d.fields.get(\'tax_amount\') or 0','cost_center','parent:credit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00005','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Purchase Invoice','fields','GL Mapper',3,'','tax_code','value:0','ded_amount','','credit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('GLMDetail00006','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Purchase Invoice','fields','GL Mapper',4,'','credit_to','value:0','total_amount_to_pay','','against_expense_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','value:\'Purchase Invoice\'','company','is_opening',NULL),('GLMDetail00007','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Sales Invoice','fields','GL Mapper',1,'entries','income_account','value:0','amount','cost_center','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00008','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Sales Invoice','fields','GL Mapper',2,'other_charges','account_head','value:0','tax_amount','cost_center_other_charges','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00009','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Sales Invoice','fields','GL Mapper',3,'','debit_to','grand_total','value:0','','against_income_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','value:\'Sales Invoice\'','company','is_opening',NULL),('GLMDetail00015','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',1,'entries','income_account','value:0','amount','cost_center','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00016','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',2,'other_charges','account_head','value:0','tax_amount','cost_center_other_charges','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00017','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',3,NULL,'debit_to','grand_total','value:0',NULL,'against_income_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('GLMDetail00018','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',4,NULL,'debit_to','value:0','paid_amount','','cash_bank_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('GLMDetail00019','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',5,NULL,'cash_bank_account','paid_amount','value:0','','debit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','','','company','is_opening',NULL),('GLMDetail00022','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Journal Voucher','fields','GL Mapper',1,'entries','account','debit','credit','cost_center','against_account','parent:remark','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year','value:d.against_voucher or d.against_invoice or d.against_jv or \'\'','value:(d.against_voucher and \'Purchase Invoice\') or (d.against_invoice and \'Sales Invoice\') or (d.against_jv and \'Journal Voucher\') or \'\'','parent:company','parent:is_opening','is_advance'),('GLMDetail00023','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Journal Voucher','fields','GL Mapper',2,NULL,'tax_code','value:0','ded_amount',NULL,'supplier_account','remark','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('GLMDetail00024','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',1,'entries','expense_head','amount','value:0','cost_center','parent:credit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00025','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',2,'purchase_tax_details','account_head','value:d.fields.get(\'category\') != \'For Valuation\' and d.fields.get(\'add_deduct_tax\') == \'Add\' and d.fields.get(\'tax_amount\') or 0','value:d.fields.get(\'category\') != \'For Valuation\' and d.fields.get(\'add_deduct_tax\') == \'Deduct\' and d.fields.get(\'tax_amount\') or 0','cost_center','parent:credit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00026','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',3,NULL,'tax_code','value:0','ded_amount',NULL,'credit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('GLMDetail00027','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',4,NULL,'credit_to','value:0','total_amount_to_pay',NULL,'against_expense_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','value:\'Purchase Invoice\'','company','is_opening',NULL),('GLMDetail00028','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',5,NULL,'write_off_account','value:0','write_off_amount','write_off_cost_center','credit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL); +/*!40000 ALTER TABLE `tabGL Mapper Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabGL Mapper` +-- + +DROP TABLE IF EXISTS `tabGL Mapper`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabGL Mapper` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `doc_type` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabGL Mapper` +-- + +LOCK TABLES `tabGL Mapper` WRITE; +/*!40000 ALTER TABLE `tabGL Mapper` DISABLE KEYS */; +INSERT INTO `tabGL Mapper` VALUES ('Journal Voucher','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Journal Voucher',NULL),('POS','2010-12-15 08:39:20','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'POS',NULL),('POS with write off','2011-05-20 10:07:58','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'POS with write off',NULL),('Purchase Invoice','2010-08-08 17:09:36','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Payable Voucher',NULL),('Purchase Invoice with write off','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'Purchase Invoice with write off',NULL),('Sales Invoice','2010-08-08 17:09:36','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Receivable Voucher',NULL); +/*!40000 ALTER TABLE `tabGL Mapper` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabGrade` +-- + +DROP TABLE IF EXISTS `tabGrade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabGrade` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `grade_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabGrade` +-- + +LOCK TABLES `tabGrade` WRITE; +/*!40000 ALTER TABLE `tabGrade` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabGrade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabHoliday List` +-- + +DROP TABLE IF EXISTS `tabHoliday List`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabHoliday List` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `holiday_list_name` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `is_default` int(1) default NULL, + `weekly_off` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabHoliday List` +-- + +LOCK TABLES `tabHoliday List` WRITE; +/*!40000 ALTER TABLE `tabHoliday List` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabHoliday List` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabHoliday` +-- + +DROP TABLE IF EXISTS `tabHoliday`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabHoliday` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `holiday_name` varchar(180) default NULL, + `holiday_date` date default NULL, + `description` text, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabHoliday` +-- + +LOCK TABLES `tabHoliday` WRITE; +/*!40000 ALTER TABLE `tabHoliday` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabHoliday` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabIndustry Type` +-- + +DROP TABLE IF EXISTS `tabIndustry Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabIndustry Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `industry` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabIndustry Type` +-- + +LOCK TABLES `tabIndustry Type` WRITE; +/*!40000 ALTER TABLE `tabIndustry Type` DISABLE KEYS */; +INSERT INTO `tabIndustry Type` VALUES ('Aerospace and Defence','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Aerospace and Defence',NULL),('Agriculture','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Agriculture',NULL),('Apparel','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Apparel',NULL),('Automobile','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Automobile',NULL),('Banking','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Banking',NULL),('Biotechnology','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Biotechnology',NULL),('Chemical','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Chemical',NULL),('Communications','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Communications',NULL),('Consulting','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Consulting',NULL),('Customer Service','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer Service',NULL),('Education','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Education',NULL),('Electronics','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Electronics',NULL),('Energy','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Energy',NULL),('Engineering','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Engineering',NULL),('Entertainment','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Entertainment',NULL),('Environmental','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Environmental',NULL),('Finance','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Finance',NULL),('Food and Beverage','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Food and Beverage',NULL),('Government','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Government',NULL),('Healthcare','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Healthcare',NULL),('Hospitality','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Hospitality',NULL),('Information Technology','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Information Technology',NULL),('Insurance','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Insurance',NULL),('Machinery','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Machinery',NULL),('Manufacturing','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Manufacturing',NULL),('Media','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Media',NULL),('Not For Profit','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Not For Profit',NULL),('Other','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Other',NULL),('Recreation','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Recreation',NULL),('Retail','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Retail',NULL),('Shipping','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Shipping',NULL),('Technology','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Technology',NULL),('Telecommunications','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Telecommunications',NULL),('Trading','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Trading',NULL),('Transportation','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Transportation',NULL),('Utilities','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Utilities',NULL); +/*!40000 ALTER TABLE `tabIndustry Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabInstallation Note Item` +-- + +DROP TABLE IF EXISTS `tabInstallation Note Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabInstallation Note Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `description` varchar(180) default NULL, + `prevdoc_date` date default NULL, + `qty` decimal(18,6) default NULL, + `serial_no` text, + `prevdoc_detail_docname` varchar(180) default NULL, + `prevdoc_docname` varchar(180) default NULL, + `prevdoc_doctype` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `prevdoc_docname` (`prevdoc_docname`), + KEY `prevdoc_doctype` (`prevdoc_doctype`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabInstallation Note Item` +-- + +LOCK TABLES `tabInstallation Note Item` WRITE; +/*!40000 ALTER TABLE `tabInstallation Note Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabInstallation Note Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabInstallation Note` +-- + +DROP TABLE IF EXISTS `tabInstallation Note`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabInstallation Note` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `customer_name` varchar(180) default NULL, + `address` mediumtext, + `contact_person` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `delivery_note_no` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `status` varchar(180) default 'Draft', + `inst_date` date default NULL, + `inst_time` time default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `remarks` text, + `cancel_reason` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `naming_series` varchar(180) default NULL, + `address_display` text, + `contact_display` text, + `customer_address` varchar(180) default NULL, + `contact_email` text, + `contact_mobile` text, + `customer_group` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `delivery_note_no` (`delivery_note_no`), + KEY `parent` (`parent`), + KEY `customer` (`customer`), + KEY `territory` (`territory`), + KEY `inst_date` (`inst_date`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabInstallation Note` +-- + +LOCK TABLES `tabInstallation Note` WRITE; +/*!40000 ALTER TABLE `tabInstallation Note` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabInstallation Note` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabItem Customer Detail` +-- + +DROP TABLE IF EXISTS `tabItem Customer Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabItem Customer Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `ref_code` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `ref_code` (`ref_code`), + KEY `customer_name` (`customer_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabItem Customer Detail` +-- + +LOCK TABLES `tabItem Customer Detail` WRITE; +/*!40000 ALTER TABLE `tabItem Customer Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabItem Customer Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabItem Group` +-- + +DROP TABLE IF EXISTS `tabItem Group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabItem Group` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `item_group_name` varchar(180) default NULL, + `show_in_catalogue` int(1) default NULL, + `description` text, + `parent_item_group` varchar(180) default NULL, + `is_group` varchar(180) default NULL, + `lft` int(11) default NULL, + `rgt` int(11) default NULL, + `old_parent` varchar(180) default NULL, + `show_in_website` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `lft` (`lft`), + KEY `rgt` (`rgt`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabItem Group` +-- + +LOCK TABLES `tabItem Group` WRITE; +/*!40000 ALTER TABLE `tabItem Group` DISABLE KEYS */; +INSERT INTO `tabItem Group` VALUES ('All Item Groups','2010-12-14 17:56:45','2012-10-02 13:17:59','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'All Item Groups',NULL,NULL,'','Yes',1,4,'',NULL,NULL),('Default','2010-12-14 17:56:45','2012-10-02 13:17:59','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Default',NULL,NULL,'All Item Groups','No',2,3,'All Item Groups',NULL,NULL); +/*!40000 ALTER TABLE `tabItem Group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabItem Price` +-- + +DROP TABLE IF EXISTS `tabItem Price`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabItem Price` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `price_list_name` varchar(180) default NULL, + `ref_rate` decimal(18,6) default NULL, + `ref_currency` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `price_list_name` (`price_list_name`), + KEY `ref_rate` (`ref_rate`), + KEY `ref_currency` (`ref_currency`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabItem Price` +-- + +LOCK TABLES `tabItem Price` WRITE; +/*!40000 ALTER TABLE `tabItem Price` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabItem Price` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabItem Quality Inspection Parameter` +-- + +DROP TABLE IF EXISTS `tabItem Quality Inspection Parameter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabItem Quality Inspection Parameter` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `specification` varchar(180) default NULL, + `value` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabItem Quality Inspection Parameter` +-- + +LOCK TABLES `tabItem Quality Inspection Parameter` WRITE; +/*!40000 ALTER TABLE `tabItem Quality Inspection Parameter` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabItem Quality Inspection Parameter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabItem Supplier` +-- + +DROP TABLE IF EXISTS `tabItem Supplier`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabItem Supplier` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `supplier` varchar(180) default NULL, + `supplier_part_no` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabItem Supplier` +-- + +LOCK TABLES `tabItem Supplier` WRITE; +/*!40000 ALTER TABLE `tabItem Supplier` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabItem Supplier` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabItem Tax` +-- + +DROP TABLE IF EXISTS `tabItem Tax`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabItem Tax` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `tax_type` varchar(180) default NULL, + `tax_rate` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabItem Tax` +-- + +LOCK TABLES `tabItem Tax` WRITE; +/*!40000 ALTER TABLE `tabItem Tax` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabItem Tax` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabItem` +-- + +DROP TABLE IF EXISTS `tabItem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabItem` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `stock_uom` varchar(180) default NULL, + `description` text, + `alternate_description` mediumtext, + `brand` varchar(180) default NULL, + `is_stock_item` varchar(180) default 'Yes', + `valuation_method` varchar(180) default NULL, + `default_warehouse` varchar(180) default NULL, + `tolerance` decimal(18,6) default NULL, + `re_order_level` decimal(18,6) default NULL, + `minimum_inventory_level` decimal(18,6) default NULL, + `min_order_qty` decimal(18,6) default '0.000000', + `is_asset_item` varchar(180) default 'No', + `has_batch_no` varchar(180) default 'No', + `has_serial_no` varchar(180) default 'No', + `warranty_period` varchar(180) default NULL, + `end_of_life` date default NULL, + `is_purchase_item` varchar(180) default 'Yes', + `lead_time_days` int(11) default NULL, + `purchase_account` varchar(180) default NULL, + `cost_center` varchar(180) default NULL, + `buying_cost` decimal(18,6) default NULL, + `last_purchase_rate` decimal(18,6) default NULL, + `standard_rate` decimal(18,6) default NULL, + `is_sales_item` varchar(180) default 'Yes', + `is_service_item` varchar(180) default 'No', + `is_sample_item` varchar(180) default 'No', + `max_discount` decimal(18,6) default NULL, + `sales_rate` decimal(18,6) default NULL, + `inspection_required` varchar(180) default 'No', + `is_manufactured_item` varchar(180) default 'No', + `default_bom` varchar(180) default NULL, + `is_pro_applicable` varchar(180) default 'No', + `is_sub_contracted_item` varchar(180) default 'No', + `fiscal_year` varchar(180) default NULL, + `default_income_account` varchar(180) default NULL, + `default_sales_cost_center` varchar(180) default NULL, + `file_list` text, + `description_html` text, + `weight_uom` varchar(180) default NULL, + `customer_code` varchar(180) default NULL, + `email_notify` int(1) default NULL, + `manufacturer_part_no` varchar(180) default NULL, + `manufacturer` varchar(180) default NULL, + `net_weight` decimal(18,6) default NULL, + `re_order_qty` decimal(18,6) default NULL, + `website_image` varchar(180) default NULL, + `page_name` varchar(180) default NULL, + `show_in_website` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + `web_short_description` text, + `barcode` varchar(180) default NULL, + `web_long_description` text, + PRIMARY KEY (`name`), + KEY `item_name` (`item_name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabItem` +-- + +LOCK TABLES `tabItem` WRITE; +/*!40000 ALTER TABLE `tabItem` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabItem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabJournal Voucher Detail` +-- + +DROP TABLE IF EXISTS `tabJournal Voucher Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabJournal Voucher Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `account` varchar(180) default NULL, + `cost_center` varchar(180) default NULL, + `balance` varchar(180) default NULL, + `debit` decimal(18,6) default NULL, + `credit` decimal(18,6) default NULL, + `against_voucher` varchar(180) default NULL, + `against_invoice` varchar(180) default NULL, + `is_advance` varchar(180) default NULL, + `against_account` text, + `against_jv` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `account` (`account`), + KEY `against_voucher` (`against_voucher`), + KEY `against_invoice` (`against_invoice`), + KEY `parent` (`parent`), + KEY `against_jv` (`against_jv`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabJournal Voucher Detail` +-- + +LOCK TABLES `tabJournal Voucher Detail` WRITE; +/*!40000 ALTER TABLE `tabJournal Voucher Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabJournal Voucher Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabJournal Voucher` +-- + +DROP TABLE IF EXISTS `tabJournal Voucher`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabJournal Voucher` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `voucher_type` varchar(180) default NULL, + `naming_series` varchar(180) default 'JV', + `voucher_date` date default NULL, + `posting_date` date default NULL, + `due_date` date default NULL, + `amendment_date` date default NULL, + `amended_from` varchar(180) default NULL, + `cheque_no` varchar(180) default NULL, + `cheque_date` date default NULL, + `clearance_date` date default NULL, + `user_remark` text, + `remark` text, + `total_debit` decimal(18,6) default NULL, + `total_credit` decimal(18,6) default NULL, + `difference` decimal(18,6) default NULL, + `bill_no` varchar(180) default NULL, + `bill_date` date default NULL, + `is_opening` varchar(180) default 'No', + `aging_date` date default NULL, + `cancel_reason` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `company` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `tds_applicable` varchar(180) default 'No', + `tds_category` varchar(180) default NULL, + `supplier_account` varchar(180) default NULL, + `tax_code` varchar(180) default NULL, + `rate` decimal(18,6) default NULL, + `ded_amount` decimal(18,6) default NULL, + `write_off_amount` decimal(18,6) default NULL, + `total_amount_in_words` varchar(180) default NULL, + `pay_to_recd_from` varchar(180) default NULL, + `total_amount` varchar(180) default NULL, + `write_off_based_on` varchar(180) default 'Accounts Receivable', + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `voucher_type` (`voucher_type`), + KEY `voucher_date` (`voucher_date`), + KEY `posting_date` (`posting_date`), + KEY `cheque_no` (`cheque_no`), + KEY `clearance_date` (`clearance_date`), + KEY `is_opening` (`is_opening`), + KEY `fiscal_year` (`fiscal_year`), + KEY `company` (`company`), + KEY `tds_applicable` (`tds_applicable`), + KEY `tds_category` (`tds_category`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabJournal Voucher` +-- + +LOCK TABLES `tabJournal Voucher` WRITE; +/*!40000 ALTER TABLE `tabJournal Voucher` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabJournal Voucher` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLanded Cost Item` +-- + +DROP TABLE IF EXISTS `tabLanded Cost Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLanded Cost Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `account_head` varchar(180) default NULL, + `description` varchar(180) default NULL, + `amount` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `account_head` (`account_head`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLanded Cost Item` +-- + +LOCK TABLES `tabLanded Cost Item` WRITE; +/*!40000 ALTER TABLE `tabLanded Cost Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLanded Cost Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLanded Cost Master Detail` +-- + +DROP TABLE IF EXISTS `tabLanded Cost Master Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLanded Cost Master Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `account_head` varchar(180) default NULL, + `description` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLanded Cost Master Detail` +-- + +LOCK TABLES `tabLanded Cost Master Detail` WRITE; +/*!40000 ALTER TABLE `tabLanded Cost Master Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLanded Cost Master Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLanded Cost Master` +-- + +DROP TABLE IF EXISTS `tabLanded Cost Master`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLanded Cost Master` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `title` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLanded Cost Master` +-- + +LOCK TABLES `tabLanded Cost Master` WRITE; +/*!40000 ALTER TABLE `tabLanded Cost Master` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLanded Cost Master` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLanded Cost Purchase Receipt` +-- + +DROP TABLE IF EXISTS `tabLanded Cost Purchase Receipt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLanded Cost Purchase Receipt` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `purchase_receipt_no` varchar(180) default NULL, + `include_in_landed_cost` int(1) default NULL, + `purchase_receipt` varchar(180) default NULL, + `select_pr` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLanded Cost Purchase Receipt` +-- + +LOCK TABLES `tabLanded Cost Purchase Receipt` WRITE; +/*!40000 ALTER TABLE `tabLanded Cost Purchase Receipt` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLanded Cost Purchase Receipt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLead` +-- + +DROP TABLE IF EXISTS `tabLead`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLead` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default 'LEAD', + `status` varchar(180) default 'Open', + `order_lost_reason` varchar(180) default NULL, + `lead_name` varchar(180) default NULL, + `transaction_date` date default NULL, + `source` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `company_name` varchar(180) default NULL, + `type` varchar(180) default NULL, + `rating` varchar(180) default NULL, + `remark` text, + `contact_no` varchar(180) default NULL, + `mobile_no` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `fax` varchar(180) default NULL, + `website` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `address_line1` varchar(180) default NULL, + `address_line2` varchar(180) default NULL, + `city` varchar(180) default NULL, + `country` varchar(180) default NULL, + `state` varchar(180) default NULL, + `pincode` varchar(180) default NULL, + `address` mediumtext, + `lead_owner` varchar(180) default NULL, + `market_segment` varchar(180) default NULL, + `industry` varchar(180) default NULL, + `campaign_name` varchar(180) default NULL, + `interested_in` varchar(180) default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `contact_by` varchar(180) default NULL, + `contact_date` date default NULL, + `last_contact_date` date default NULL, + `contact_date_ref` date default NULL, + `to_discuss` mediumtext, + `cc_to` varchar(180) default NULL, + `subject` varchar(180) default NULL, + `message` mediumtext, + `sms_message` mediumtext, + `request_type` varchar(180) default NULL, + `trash_reason` text, + `phone` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + `blog_subscriber` int(1) default NULL, + `unsubscribed` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `lead_name` (`lead_name`), + KEY `transaction_date` (`transaction_date`), + KEY `lead_owner` (`lead_owner`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLead` +-- + +LOCK TABLES `tabLead` WRITE; +/*!40000 ALTER TABLE `tabLead` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLead` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLease Agreement` +-- + +DROP TABLE IF EXISTS `tabLease Agreement`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLease Agreement` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `account` varchar(180) default NULL, + `naming_series` varchar(180) default NULL, + `lessee_address` text, + `invoice` varchar(180) default NULL, + `invoice_amount` decimal(18,6) default NULL, + `chassis_no` varchar(180) default NULL, + `down_payment` decimal(18,6) default NULL, + `lessee_father` varchar(180) default NULL, + `start_date` date default NULL, + `lessee_contact` varchar(180) default NULL, + `no_of_installments` int(11) default NULL, + `lessee_nic` varchar(180) default NULL, + `engine_no` varchar(180) default NULL, + `installment_amount` decimal(18,6) default NULL, + `model_no` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLease Agreement` +-- + +LOCK TABLES `tabLease Agreement` WRITE; +/*!40000 ALTER TABLE `tabLease Agreement` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLease Agreement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLease Installment` +-- + +DROP TABLE IF EXISTS `tabLease Installment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLease Installment` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `due_date` date default NULL, + `amount` decimal(18,6) default NULL, + `cheque_date` date default NULL, + `cheque_number` varchar(180) default NULL, + `jv_number` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLease Installment` +-- + +LOCK TABLES `tabLease Installment` WRITE; +/*!40000 ALTER TABLE `tabLease Installment` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLease Installment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLeave Allocation` +-- + +DROP TABLE IF EXISTS `tabLeave Allocation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLeave Allocation` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `amended_from` varchar(180) default NULL, + `description` text, + `new_leaves_allocated` decimal(18,6) default NULL, + `carry_forwarded_leaves` decimal(18,6) default NULL, + `carry_forward` int(1) default NULL, + `fiscal_year` varchar(180) default NULL, + `total_leaves_allocated` decimal(18,6) default NULL, + `leave_type` varchar(180) default NULL, + `amendment_date` date default NULL, + `employee_name` varchar(180) default NULL, + `employee` varchar(180) default NULL, + `posting_date` date default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `fiscal_year` (`fiscal_year`), + KEY `leave_type` (`leave_type`), + KEY `employee_name` (`employee_name`), + KEY `employee` (`employee`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLeave Allocation` +-- + +LOCK TABLES `tabLeave Allocation` WRITE; +/*!40000 ALTER TABLE `tabLeave Allocation` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLeave Allocation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLeave Application` +-- + +DROP TABLE IF EXISTS `tabLeave Application`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLeave Application` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `from_date` date default NULL, + `description` text, + `half_day` int(1) default NULL, + `total_leave_days` decimal(18,6) default NULL, + `fiscal_year` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `leave_balance` decimal(18,6) default NULL, + `leave_type` varchar(180) default NULL, + `to_date` date default NULL, + `amendment_date` date default NULL, + `employee_name` varchar(180) default NULL, + `employee` varchar(180) default NULL, + `posting_date` date default NULL, + `letter_head` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `employee` (`employee`), + KEY `leave_type` (`leave_type`), + KEY `to_date` (`to_date`), + KEY `from_date` (`from_date`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLeave Application` +-- + +LOCK TABLES `tabLeave Application` WRITE; +/*!40000 ALTER TABLE `tabLeave Application` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLeave Application` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLeave Type` +-- + +DROP TABLE IF EXISTS `tabLeave Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLeave Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `leave_type_name` varchar(180) default NULL, + `max_days_allowed` varchar(180) default NULL, + `is_carry_forward` int(1) default NULL, + `is_encash` int(1) default NULL, + `is_lwp` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLeave Type` +-- + +LOCK TABLES `tabLeave Type` WRITE; +/*!40000 ALTER TABLE `tabLeave Type` DISABLE KEYS */; +INSERT INTO `tabLeave Type` VALUES ('Casual Leave','2010-12-14 17:56:47','2010-04-02 10:52:32','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Casual Leave','3',1,1,NULL,NULL),('Compensatory Off','2010-12-14 17:56:47','2010-04-02 10:59:30','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Compensatory Off',NULL,NULL,NULL,NULL,NULL),('Leave Without Pay','2010-12-14 17:56:47','2010-04-02 10:57:37','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Leave Without Pay',NULL,NULL,NULL,1,NULL),('Privilege Leave','2010-12-14 17:56:47','2010-04-02 10:53:16','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Privilege Leave',NULL,NULL,1,NULL,NULL),('Sick Leave','2010-12-14 17:56:47','2010-04-02 10:54:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Sick Leave',NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabLeave Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabLetter Head` +-- + +DROP TABLE IF EXISTS `tabLetter Head`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabLetter Head` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `letter_head_name` varchar(180) default NULL, + `disabled` int(1) default NULL, + `content` text, + `file_list` text, + `is_default` int(1) default NULL, + `set_from_image` int(1) default NULL, + `url` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabLetter Head` +-- + +LOCK TABLES `tabLetter Head` WRITE; +/*!40000 ALTER TABLE `tabLetter Head` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabLetter Head` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabMaintenance Schedule Detail` +-- + +DROP TABLE IF EXISTS `tabMaintenance Schedule Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabMaintenance Schedule Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `scheduled_date` date default NULL, + `actual_date` date default NULL, + `incharge_name` varchar(180) default NULL, + `serial_no` text, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `scheduled_date` (`scheduled_date`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabMaintenance Schedule Detail` +-- + +LOCK TABLES `tabMaintenance Schedule Detail` WRITE; +/*!40000 ALTER TABLE `tabMaintenance Schedule Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabMaintenance Schedule Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabMaintenance Schedule Item` +-- + +DROP TABLE IF EXISTS `tabMaintenance Schedule Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabMaintenance Schedule Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` varchar(180) default NULL, + `start_date` date default NULL, + `end_date` date default NULL, + `periodicity` varchar(180) default NULL, + `no_of_visits` int(11) default NULL, + `incharge_name` varchar(180) default NULL, + `serial_no` text, + `prevdoc_docname` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `start_date` (`start_date`), + KEY `end_date` (`end_date`), + KEY `prevdoc_docname` (`prevdoc_docname`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabMaintenance Schedule Item` +-- + +LOCK TABLES `tabMaintenance Schedule Item` WRITE; +/*!40000 ALTER TABLE `tabMaintenance Schedule Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabMaintenance Schedule Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabMaintenance Schedule` +-- + +DROP TABLE IF EXISTS `tabMaintenance Schedule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabMaintenance Schedule` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `customer_name` varchar(180) default NULL, + `address` mediumtext, + `contact_person` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `company` varchar(180) default NULL, + `status` varchar(180) default 'Draft', + `transaction_date` date default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `sales_order_no` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `customer_address` varchar(180) default NULL, + `address_display` text, + `contact_display` text, + `contact_mobile` text, + `contact_email` text, + `customer_group` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `sales_order_no` (`sales_order_no`), + KEY `parent` (`parent`), + KEY `customer` (`customer`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabMaintenance Schedule` +-- + +LOCK TABLES `tabMaintenance Schedule` WRITE; +/*!40000 ALTER TABLE `tabMaintenance Schedule` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabMaintenance Schedule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabMaintenance Visit Purpose` +-- + +DROP TABLE IF EXISTS `tabMaintenance Visit Purpose`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabMaintenance Visit Purpose` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `description` text, + `service_person` varchar(180) default NULL, + `work_done` text, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `serial_no` text, + `prevdoc_docname` varchar(180) default NULL, + `prevdoc_detail_docname` varchar(180) default NULL, + `prevdoc_doctype` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabMaintenance Visit Purpose` +-- + +LOCK TABLES `tabMaintenance Visit Purpose` WRITE; +/*!40000 ALTER TABLE `tabMaintenance Visit Purpose` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabMaintenance Visit Purpose` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabMaintenance Visit` +-- + +DROP TABLE IF EXISTS `tabMaintenance Visit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabMaintenance Visit` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `status` varchar(180) default 'Draft', + `mntc_date` date default NULL, + `mntc_time` time default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `customer_name` varchar(180) default NULL, + `address` mediumtext, + `contact_person` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `completion_status` varchar(180) default NULL, + `maintenance_type` varchar(180) default 'Unscheduled', + `sales_order_no` varchar(180) default NULL, + `customer_issue_no` varchar(180) default NULL, + `customer_feedback` text, + `customer` varchar(180) default NULL, + `contact_display` text, + `customer_address` varchar(180) default NULL, + `contact_email` varchar(180) default NULL, + `contact_mobile` varchar(180) default NULL, + `address_display` text, + `customer_group` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + `maintenance_schedule` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `sales_order_no` (`sales_order_no`), + KEY `customer_issue_no` (`customer_issue_no`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabMaintenance Visit` +-- + +LOCK TABLES `tabMaintenance Visit` WRITE; +/*!40000 ALTER TABLE `tabMaintenance Visit` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabMaintenance Visit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabMarket Segment` +-- + +DROP TABLE IF EXISTS `tabMarket Segment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabMarket Segment` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `segment_name` varchar(180) default NULL, + `details` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabMarket Segment` +-- + +LOCK TABLES `tabMarket Segment` WRITE; +/*!40000 ALTER TABLE `tabMarket Segment` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabMarket Segment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabMode of Payment` +-- + +DROP TABLE IF EXISTS `tabMode of Payment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabMode of Payment` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `mode_of_payment` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabMode of Payment` +-- + +LOCK TABLES `tabMode of Payment` WRITE; +/*!40000 ALTER TABLE `tabMode of Payment` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabMode of Payment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabModule Def` +-- + +DROP TABLE IF EXISTS `tabModule Def`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabModule Def` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `module_name` varchar(180) default NULL, + `doctype_list` mediumtext, + `trash_reason` mediumtext, + `disabled` varchar(180) default NULL, + `module_label` varchar(180) default NULL, + `module_page` varchar(180) default NULL, + `module_desc` varchar(180) default NULL, + `module_icon` varchar(180) default NULL, + `module_seq` int(11) default NULL, + `file_list` mediumtext, + `widget_code` mediumtext, + `is_hidden` varchar(180) default NULL, + `last_updated_date` varchar(40) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `module_seq` (`module_seq`), + KEY `module_page` (`module_page`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabModule Def` +-- + +LOCK TABLES `tabModule Def` WRITE; +/*!40000 ALTER TABLE `tabModule Def` DISABLE KEYS */; +INSERT INTO `tabModule Def` VALUES ('Accounts','2010-09-25 10:50:34','2012-03-01 11:15:55','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','GL Mapper, Journal Voucher\nGL Mapper, Payable Voucher\nGL Mapper, Receivable Voucher\nDocType Label, Receivable Voucher\nDocType Label, Payable Voucher',NULL,'No','Accounts',NULL,'Data about your payables, receivables and books of accounts','Accounts.gif',5,'finance.gif,FileData-00210','var acc_set_tips = function() {\n $c_obj(\'Module Tip Control\', \'get_tip\', \'accounts\', function(r,rt) { \n if(r.message) {\n $(parent.tip_area).html(\'Tip: \' + r.message).css(\'display\',\'block\');\n }\n } );\n}\n\nacc_set_tips();',NULL,'2010-12-08 10:13:30',NULL),('Analysis','2010-08-08 17:35:41','2010-12-01 11:56:32','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Analysis',NULL,NULL,'No','Analysis',NULL,NULL,'Analysis.gif',20,NULL,'',NULL,'2010-12-02 09:25:40',NULL),('Buying','2011-07-06 14:35:16','2011-07-06 14:35:16','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Buying','DocType Mapper, Purchase Receipt-Payable Voucher\nDocType Mapper, Purchase Order-Payable Voucher\nDocType Mapper, Purchase Order-Purchase Receipt\nDocType Mapper, Indent-Purchase Order\nPrint Format, Purchase Order Format\nPrint Format, Purchase Receipt Format',NULL,'No','Buying',NULL,'

    All details about your Suppliers and past transactions

    ','Buying.gif',4,'scm.gif,FileData-00209',NULL,'No',NULL,NULL),('Core','2011-02-21 09:23:54','2011-02-12 10:07:59','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Core',NULL,NULL,'No','Core',NULL,NULL,NULL,NULL,NULL,NULL,'Yes',NULL,NULL),('Development','2010-08-08 17:35:42','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Development',NULL,NULL,'No','Development',NULL,NULL,'',NULL,NULL,'',NULL,NULL,NULL),('Home','2011-06-27 10:52:02','2011-06-27 10:52:02','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Home',NULL,NULL,NULL,'Home',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('HR','2011-07-06 14:35:16','2011-09-12 10:13:32','Administrator','Administrator',0,NULL,NULL,NULL,0,'HR',NULL,NULL,'No','HR',NULL,'Human Resource Management - Employee Database, Salaries etc.','HR.gif',9,NULL,NULL,'No',NULL,NULL),('Production','2010-09-25 10:50:35','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Production',NULL,NULL,'No','Production',NULL,'Production Documents','Production.gif',9,'support.gif,FileData-00214','',NULL,'2010-11-29 12:02:02',NULL),('Projects','2010-09-01 15:47:59','2010-11-11 10:56:45','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Projects',NULL,NULL,'No','Projects',NULL,'Manage your projects','Projects.gif',4,'undefined,undefined','',NULL,'2010-11-29 12:02:02',NULL),('Selling','2011-07-06 14:35:16','2012-01-24 07:02:51','Administrator','Administrator',0,NULL,NULL,NULL,1,'Selling','Print Format, Sales Order\nPrint Format, Quotation Format\nPrint Format, Delivery Note Format',NULL,'No','Selling',NULL,'Manage you sales team, with your leads, customers, quotes, orders etc.','Selling.gif',3,'crm.gif,FileData-00208',NULL,'No',NULL,NULL),('Setup','2010-08-08 17:35:42','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Setup',NULL,NULL,'No','Setup','Setup',NULL,'Setup.gif',2,NULL,'',NULL,'2010-12-09 17:08:07',NULL),('Setup Masters','2010-08-08 17:35:42','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Setup Masters','Currency, AED\nCurrency, AFN\nCurrency, ALL\nCurrency, AMD\nCurrency, ANG\nCurrency, AOA\nCurrency, ARS\nCurrency, AUD\nCurrency, AZN\nCurrency, BAM\nCurrency, BBD\nCurrency, BDT\nCurrency, BGN\nCurrency, BHD\nCurrency, BIF\nCurrency, BMD\nCurrency, BND\nCurrency, BOB\nCurrency, BRL\nCurrency, BSD\nCurrency, BTN\nCurrency, BWP\nCurrency, BYR\nCurrency, BZD\nCurrency, CAD\nCurrency, CDF\nCurrency, CFA\nCurrency, CFP\nCurrency, CHF\nCurrency, CLP\nCurrency, CNY\nCurrency, COP\nCurrency, CRC\nCurrency, CUC\nCurrency, CZK\nCurrency, DJF\nCurrency, DKK\nCurrency, DOP\nCurrency, DZD\nCurrency, EEK\nCurrency, EGP\nCurrency, ERN\nCurrency, ETB\nCurrency, EUR\nCurrency, EURO\nCurrency, FJD\nCurrency, FKP\nCurrency, FMG\nCurrency, GBP\nCurrency, GEL\nCurrency, GHS\nCurrency, GIP\nCurrency, GMD\nCurrency, GNF\nCurrency, GQE\nCurrency, GTQ\nCurrency, GYD\nCurrency, HKD\nCurrency, HNL\nCurrency, HRK\nCurrency, HTG\nCurrency, HUF\nCurrency, IDR\nCurrency, ILS\nCurrency, INR\nCurrency, IQD\nCurrency, IRR\nCurrency, ISK\nCurrency, JMD\nCurrency, JOD\nCurrency, JPY\nCurrency, KES\nCurrency, KGS\nCurrency, KHR\nCurrency, KMF\nCurrency, KPW\nCurrency, KRW\nCurrency, KWD\nCurrency, KYD\nCurrency, KZT\nCurrency, LAK\nCurrency, LBP\nCurrency, LKR\nCurrency, LRD\nCurrency, LSL\nCurrency, LTL\nCurrency, LVL\nCurrency, LYD\nCurrency, MAD\nCurrency, MDL\nCurrency, MGA\nCurrency, MKD\nCurrency, MMK\nCurrency, MNT\nCurrency, MOP\nCurrency, MRO\nCurrency, MUR\nCurrency, MVR\nCurrency, MWK\nCurrency, MXN\nCurrency, MYR\nCurrency, MZM\nCurrency, NAD\nCurrency, NGN\nCurrency, NIO\nCurrency, NOK\nCurrency, NPR\nCurrency, NRs\nCurrency, NZD\nCurrency, OMR\nCurrency, PAB\nCurrency, PEN\nCurrency, PGK\nCurrency, PHP\nCurrency, PKR\nCurrency, PLN\nCurrency, PYG\nCurrency, QAR\nCurrency, RMB\nCurrency, RON\nCurrency, RSD\nCurrency, RUB\nCurrency, RWF\nCurrency, SAR\nCurrency, SCR\nCurrency, SDG\nCurrency, SDR\nCurrency, SEK\nCurrency, SGD\nCurrency, SHP\nCurrency, SOS\nCurrency, SRD\nCurrency, STD\nCurrency, SYP\nCurrency, SZL\nCurrency, THB\nCurrency, TJS\nCurrency, TMT\nCurrency, TND\nCurrency, TRY\nCurrency, TTD\nCurrency, TWD\nCurrency, TZS\nCurrency, UAE\nCurrency, UAH\nCurrency, UGX\nCurrency, USD\nCurrency, UYU\nCurrency, UZS\nCurrency, VEB\nCurrency, VND\nCurrency, VUV\nCurrency, WST\nCurrency, XAF\nCurrency, XCD\nCurrency, XDR\nCurrency, XOF\nCurrency, XPF\nCurrency, YEN\nCurrency, YER\nCurrency, YTL\nCurrency, ZAR\nCurrency, ZMK\nCurrency, ZWR\nState, Alabama\nState, Alaska\nState, Andaman and Nicobar Islands\nState, Andhra Pradesh\nState, Arizona\nState, Arkansas\nState, Arunachal Pradesh\nState, Assam\nState, Bihar\nState, California\nState, Chandigarh\nState, Chhattisgarh\nState, Colorado\nState, Connecticut\nState, Dadra and Nagar Haveli\nState, Daman and Diu\nState, Delaware\nState, Delhi\nState, Florida\nState, Georgia\nState, Goa\nState, Gujarat\nState, Haryana\nState, Hawaii\nState, Himachal Pradesh\nState, Idaho\nState, Illinois\nState, Indiana\nState, Iowa\nState, Jammu and Kashmir\nState, Jharkhand\nState, Kansas\nState, Karnataka\nState, Kentucky\nState, Kerala\nState, Lakshadweep\nState, Louisiana\nState, Madhya Pradesh\nState, Maharashtra\nState, Maine\nState, Manipur\nState, Maryland\nState, Massachusetts\nState, Meghalaya\nState, Michigan\nState, Minnesota\nState, Mississippi\nState, Missouri\nState, Mizoram\nState, Montana\nState, Nagaland\nState, Nebraska\nState, Nevada\nState, New Hampshire\nState, New Jersey\nState, New Mexico\nState, New York\nState, North Carolina\nState, North Dakota\nState, Ohio\nState, Oklahoma\nState, Oregon\nState, Orissa\nState, Pennsylvania\nState, Puducherry\nState, Punjab\nState, Rajasthan\nState, Rhode Island\nState, Sikkim\nState, South Carolina\nState, South Dakota\nState, Tamil Nadu\nState, Tennessee\nState, Texas\nState, Tripura\nState, Utah\nState, Uttar Pradesh\nState, Uttarakhand\nState, Vermont\nState, Virginia\nState, Washington\nState, West Bengal\nState, West Virginia\nState, Wisconsin\nState, Wyoming\nCountry, Afghanistan\nCountry, Albania\nCountry, Algeria\nCountry, Andorra\nCountry, Angola\nCountry, Antarctica\nCountry, Antigua and Barbuda\nCountry, Argentina\nCountry, Armenia\nCountry, Australia\nCountry, Austria\nCountry, Azerbaijan\nCountry, Bahamas\nCountry, Bahrain\nCountry, Bangladesh\nCountry, Barbados\nCountry, Belarus\nCountry, Belgium\nCountry, Belize\nCountry, Benin\nCountry, Bermuda\nCountry, Bhutan\nCountry, Bolivia\nCountry, Bosnia and Herzegovina\nCountry, Botswana\nCountry, Brazil\nCountry, Brunei\nCountry, Bulgaria\nCountry, Burkina Faso\nCountry, Burma\nCountry, Burundi\nCountry, Cambodia\nCountry, Cameroon\nCountry, Canada\nCountry, Cape Verde\nCountry, Central African Republic\nCountry, Chad\nCountry, Chile\nCountry, China\nCountry, Colombia\nCountry, Comoros\nCountry, Costa Rica\nCountry, Croatia\nCountry, Cuba\nCountry, Cyprus\nCountry, Czech Republic\nCountry, Denmark\nCountry, Djibouti\nCountry, Dominica\nCountry, Dominican Republic\nCountry, East Timor\nCountry, Ecuador\nCountry, Egypt\nCountry, El Salvador\nCountry, Equatorial Guinea\nCountry, Eritrea\nCountry, Estonia\nCountry, Ethiopia\nCountry, Fiji\nCountry, Finland\nCountry, France\nCountry, Gabon\nCountry, Gambia\nCountry, Georgia\nCountry, Germany\nCountry, Ghana\nCountry, Greece\nCountry, Greenland\nCountry, Grenada\nCountry, Guatemala\nCountry, Guinea\nCountry, Guinea-Bissau\nCountry, Guyana\nCountry, Haiti\nCountry, Honduras\nCountry, Hong Kong\nCountry, Hungary\nCountry, Iceland\nCountry, India\nCountry, Indonesia\nCountry, Iran\nCountry, Iraq\nCountry, Ireland\nCountry, Israel\nCountry, Italy\nCountry, Jamaica\nCountry, Japan\nCountry, Jordan\nCountry, Kazakhstan\nCountry, Kenya\nCountry, Kiribati\nCountry, North Korea\nCountry, South Korea\nCountry, Kuwait\nCountry, Kyrgyzstan\nCountry, Laos\nCountry, Latvia\nCountry, Lebanon\nCountry, Lesotho\nCountry, Liberia\nCountry, Libya\nCountry, Liechtenstein\nCountry, Lithuania\nCountry, Luxembourg\nCountry, Macedonia\nCountry, Madagascar\nCountry, Malawi\nCountry, Malaysia\nCountry, Maldives\nCountry, Mali\nCountry, Malta\nCountry, Marshall Islands\nCountry, Mauritania\nCountry, Mauritius\nCountry, Mexico\nCountry, Micronesia\nCountry, Moldova\nCountry, Monaco\nCountry, Mongolia\nCountry, Morocco\nCountry, Mozambique\nCountry, Namibia\nCountry, Nauru\nCountry, Nepal\nCountry, Netherlands\nCountry, New Zealand\nCountry, Nicaragua\nCountry, Niger\nCountry, Nigeria\nCountry, Norway\nCountry, Oman\nCountry, Pakistan\nCountry, Panama\nCountry, Papua New Guinea\nCountry, Paraguay\nCountry, Peru\nCountry, Philippines\nCountry, Poland\nCountry, Portugal\nCountry, Qatar\nCountry, Romania\nCountry, Russia\nCountry, Rwanda\nCountry, Samoa\nCountry, San Marino\nCountry, Sao Tome\nCountry, Saudi Arabia\nCountry, Senegal\nCountry, Serbia and Montenegro\nCountry, Seychelles\nCountry, Sierra Leone\nCountry, Singapore\nCountry, Slovakia\nCountry, Slovenia\nCountry, Solomon Islands\nCountry, Somalia\nCountry, South Africa\nCountry, Spain\nCountry, Sri Lanka\nCountry, Sudan\nCountry, Suriname\nCountry, Swaziland\nCountry, Sweden\nCountry, Switzerland\nCountry, Syria\nCountry, Taiwan\nCountry, Tajikistan\nCountry, Tanzania\nCountry, Thailand\nCountry, Togo\nCountry, Tonga\nCountry, Trinidad and Tobago\nCountry, Tunisia\nCountry, Turkey\nCountry, Turkmenistan\nCountry, Uganda\nCountry, Ukraine\nCountry, United Arab Emirates\nCountry, United Kingdom\nCountry, United States\nCountry, Uruguay\nCountry, Uzbekistan\nCountry, Vanuatu\nCountry, Venezuela\nCountry, Vietnam\nCountry, Yemen\nCountry, Zambia\nCountry, Zimbabwe',NULL,'No','Setup Masters',NULL,NULL,'',NULL,NULL,'',NULL,'2010-11-29 12:02:02',NULL),('Stock','2011-07-06 14:35:16','2012-03-01 11:15:56','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','DocType Label, QA Inspection Report',NULL,'No','Stock',NULL,'Material Management','Stock.gif',7,NULL,NULL,'No',NULL,NULL),('Support','2011-07-06 14:35:16','2011-07-06 14:35:17','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support','DocType Label, Ticket',NULL,'No','Support',NULL,'Manage maintenance quotes, orders, schedule etc.','Maintenance.gif',8,NULL,NULL,'No',NULL,NULL),('System','2010-08-08 17:35:42','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'System','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'2010-12-13 11:15:57',NULL),('Utilities','2011-07-06 14:35:17','2011-07-06 14:35:17','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Utilities',NULL,NULL,'No','Utilities',NULL,NULL,NULL,NULL,NULL,NULL,'No',NULL,NULL),('Website','2012-02-13 19:12:21','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Website',NULL,NULL,'No','Website',NULL,NULL,NULL,NULL,NULL,NULL,'No',NULL,NULL); +/*!40000 ALTER TABLE `tabModule Def` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabMulti Ledger Report Detail` +-- + +DROP TABLE IF EXISTS `tabMulti Ledger Report Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabMulti Ledger Report Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `account` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabMulti Ledger Report Detail` +-- + +LOCK TABLES `tabMulti Ledger Report Detail` WRITE; +/*!40000 ALTER TABLE `tabMulti Ledger Report Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabMulti Ledger Report Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabNaming Series Options` +-- + +DROP TABLE IF EXISTS `tabNaming Series Options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabNaming Series Options` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `doc_type` varchar(180) default NULL, + `series_options` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabNaming Series Options` +-- + +LOCK TABLES `tabNaming Series Options` WRITE; +/*!40000 ALTER TABLE `tabNaming Series Options` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabNaming Series Options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabNewsletter` +-- + +DROP TABLE IF EXISTS `tabNewsletter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabNewsletter` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `customer_contacts` int(1) default NULL, + `blog_subscribers` int(1) default NULL, + `contacts` int(1) default NULL, + `naming_series` varchar(180) default 'NL-', + `email_sent` int(1) default NULL, + `leads` int(1) default NULL, + `test_email_id` varchar(180) default NULL, + `active_leads` int(1) default NULL, + `message` text, + `subject` text, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabNewsletter` +-- + +LOCK TABLES `tabNewsletter` WRITE; +/*!40000 ALTER TABLE `tabNewsletter` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabNewsletter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabOpportunity Item` +-- + +DROP TABLE IF EXISTS `tabOpportunity Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabOpportunity Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` text, + `qty` decimal(18,6) default NULL, + `uom` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `basic_rate` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabOpportunity Item` +-- + +LOCK TABLES `tabOpportunity Item` WRITE; +/*!40000 ALTER TABLE `tabOpportunity Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabOpportunity Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabOpportunity` +-- + +DROP TABLE IF EXISTS `tabOpportunity`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabOpportunity` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default 'ENQ', + `status` varchar(180) default 'Draft', + `enquiry_from` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `lead` varchar(180) default NULL, + `lead_name` varchar(180) default NULL, + `address` mediumtext, + `contact_person` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `transaction_date` date default NULL, + `enquiry_type` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `source` varchar(180) default NULL, + `campaign` varchar(180) default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `customer_group` varchar(180) default NULL, + `contact_no` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `order_lost_reason` text, + `contact_by` varchar(180) default NULL, + `contact_date` date default NULL, + `last_contact_date` date default NULL, + `contact_date_ref` date default NULL, + `to_discuss` text, + `email_id1` varchar(180) default NULL, + `cc_to` varchar(180) default NULL, + `subject` varchar(180) default NULL, + `message` mediumtext, + `sms_message` mediumtext, + `test_field` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `address_display` text, + `contact_display` text, + `customer_address` varchar(180) default NULL, + `contact_email` text, + `contact_mobile` text, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `territory` (`territory`), + KEY `company` (`company`), + KEY `fiscal_year` (`fiscal_year`), + KEY `parent` (`parent`), + KEY `customer_group` (`customer_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabOpportunity` +-- + +LOCK TABLES `tabOpportunity` WRITE; +/*!40000 ALTER TABLE `tabOpportunity` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabOpportunity` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabOther Income Detail` +-- + +DROP TABLE IF EXISTS `tabOther Income Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabOther Income Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `particulars2` text, + `under_section2` varchar(180) default NULL, + `max_limit2` decimal(18,6) default NULL, + `actual_amount2` decimal(18,6) default NULL, + `eligible_amount2` decimal(18,6) default NULL, + `modified_amount2` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabOther Income Detail` +-- + +LOCK TABLES `tabOther Income Detail` WRITE; +/*!40000 ALTER TABLE `tabOther Income Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabOther Income Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPOS Setting` +-- + +DROP TABLE IF EXISTS `tabPOS Setting`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPOS Setting` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `user` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `naming_series` varchar(180) default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `price_list_name` varchar(180) default NULL, + `company` varchar(180) default NULL, + `customer_account` varchar(180) default NULL, + `cash_bank_account` varchar(180) default NULL, + `income_account` varchar(180) default NULL, + `cost_center` varchar(180) default NULL, + `charge` varchar(180) default NULL, + `letter_head` varchar(180) default NULL, + `tc_name` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `warehouse` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPOS Setting` +-- + +LOCK TABLES `tabPOS Setting` WRITE; +/*!40000 ALTER TABLE `tabPOS Setting` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPOS Setting` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPacking Slip Item` +-- + +DROP TABLE IF EXISTS `tabPacking Slip Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPacking Slip Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `weight_uom` varchar(180) default NULL, + `page_break` int(1) default NULL, + `item_name` varchar(180) default NULL, + `net_weight` decimal(18,6) default NULL, + `qty` decimal(18,6) default NULL, + `stock_uom` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPacking Slip Item` +-- + +LOCK TABLES `tabPacking Slip Item` WRITE; +/*!40000 ALTER TABLE `tabPacking Slip Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPacking Slip Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPacking Slip` +-- + +DROP TABLE IF EXISTS `tabPacking Slip`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPacking Slip` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `to_case_no` varchar(180) default NULL, + `from_case_no` varchar(180) default NULL, + `naming_series` varchar(180) default NULL, + `net_weight_uom` varchar(180) default NULL, + `gross_weight_uom` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `delivery_note` varchar(180) default NULL, + `net_weight_pkg` decimal(18,6) default NULL, + `gross_weight_pkg` decimal(18,6) default NULL, + `amendment_date` date default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPacking Slip` +-- + +LOCK TABLES `tabPacking Slip` WRITE; +/*!40000 ALTER TABLE `tabPacking Slip` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPacking Slip` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPage Role` +-- + +DROP TABLE IF EXISTS `tabPage Role`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPage Role` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `role` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPage Role` +-- + +LOCK TABLES `tabPage Role` WRITE; +/*!40000 ALTER TABLE `tabPage Role` DISABLE KEYS */; +INSERT INTO `tabPage Role` VALUES ('PR000235','2010-12-14 10:33:09','2010-12-14 10:33:09','Administrator','Administrator',0,'My Company','roles','Page',1,'Administrator'),('PR000236','2010-12-14 10:33:09','2010-12-14 10:33:09','Administrator','nabin@webnotestech.com',0,'My Company','roles','Page',2,'All'),('PR000273','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'home','roles','Page',NULL,'Guest'),('PR000311','2012-05-08 11:38:47','2012-05-08 11:38:47','Administrator','Administrator',0,'unsubscribe','roles','Page',1,'Guest'),('PR000312','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'selling-home','roles','Page',1,'All'),('PR000313','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Sales Browser','roles','Page',1,'Sales Master Manager'),('PR000314','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Sales Browser','roles','Page',2,'Material Master Manager'),('PR000315','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Sales Dashboard','roles','Page',1,'Sales Manager'),('PR000316','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'dashboard','roles','Page',1,'System Manager'),('PR000317','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'dashboard','roles','Page',2,'Accounts Manager'),('PR000318','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',1,'Administrator'),('PR000319','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',2,'Sales Master Manager'),('PR000320','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',3,'Material Master Manager'),('PR000321','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',4,'Purchase Master Manager'),('PR000322','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',5,'Accounts Manager'),('PR000323','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Financial Statements','roles','Page',1,'Accounts User'),('PR000324','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Financial Statements','roles','Page',2,'Administrator'),('PR000325','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Financial Statements','roles','Page',3,'Accounts Manager'),('PR000326','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Accounts Browser','roles','Page',1,'Accounts User'),('PR000327','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','saumil@webnotestech.com',0,'Permission Engine','roles','Page',1,'System Manager'),('PR000328','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','ashwini@webnotestech.com',0,'Webforms','roles','Page',1,'Administrator'),('PR000329','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','ashwini@webnotestech.com',0,'Webforms','roles','Page',2,'System Manager'); +/*!40000 ALTER TABLE `tabPage Role` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPage` +-- + +DROP TABLE IF EXISTS `tabPage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPage` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `content` text, + `script` text, + `show_in_menu` int(1) default NULL, + `parent_node` varchar(180) default NULL, + `icon` varchar(180) default NULL, + `menu_index` int(11) default NULL, + `module` varchar(180) default NULL, + `standard` varchar(180) default NULL, + `style` text, + `static_content` mediumtext, + `page_name` varchar(180) default NULL, + `title` varchar(180) default NULL, + `web_page` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `standard` (`standard`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPage` +-- + +LOCK TABLES `tabPage` WRITE; +/*!40000 ALTER TABLE `tabPage` DISABLE KEYS */; +INSERT INTO `tabPage` VALUES ('Accounts Browser','2012-10-02 13:18:32','2010-12-29 12:57:23','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Accounts','Yes',NULL,NULL,'Accounts Browser',NULL,NULL,NULL,NULL),('accounts-home','2012-10-02 13:18:32','2012-02-21 13:23:08','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Accounts','Yes',NULL,NULL,'accounts-home','Accounts Home',NULL,NULL,NULL),('activity','2012-10-02 13:18:13','2012-02-29 12:11:46','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'activity','Activity',NULL,NULL,NULL),('attributions','2012-10-02 13:18:13','2012-03-01 12:30:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'attributions','Attributions',NULL,NULL,NULL),('billing','2011-08-18 13:32:35','2011-08-18 13:32:35','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Server Tools','Yes',NULL,NULL,'billing',NULL,NULL,NULL,NULL),('buying-home','2012-10-02 13:18:33','2012-02-21 13:22:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Buying','Yes',NULL,NULL,'buying-home','Buying Home',NULL,NULL,NULL),('calendar','2012-10-02 13:18:14','2012-02-24 11:24:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'calendar','Calendar',NULL,NULL,NULL),('dashboard','2012-10-02 13:18:13','2011-08-25 16:22:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'Dashboard',NULL,NULL,NULL,NULL),('data-import-tool','2012-10-02 13:18:07','2012-05-10 10:06:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Core','Yes',NULL,NULL,'Data Import Tool','Data Import Tool','No',NULL,NULL),('desktop','2012-10-02 13:18:13','2012-02-24 11:37:43','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'desktop','Desktop',NULL,NULL,NULL),('Event Updates','2010-12-14 10:33:09','2010-12-23 11:48:49','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'
    ','var home_link_style = {textDecoration:\'underline\', cursor:\'pointer\'};\n\npscript[\'onload_Event Updates\'] = function() {\n if(user==\'Guest\') {\n loadpage(\'Login Page\');\n return;\n }\n pscript.home_make_body();\n pscript.home_pre_process();\n pscript.home_make_status();\n pscript.home_make_widgets();\n}\n\n\npscript.home_make_body = function() {\n var wrapper = page_body.pages[\'Event Updates\'];\n wrapper.innerHTML = \'\';\n wrapper.head = $a(wrapper, \'div\');\n // body\n wrapper.main_tab = make_table(wrapper,1,2,\'100%\',[500/7 + \'%\',200/7+\'%\']);\n}\n\npscript.home_pre_process = function(wrapper) {\n var wrapper = page_body.pages[\'Event Updates\'];\n var cp = locals[\'Control Panel\'][\'Control Panel\'];\n\n // complete registration\n if(in_list(user_roles,\'System Manager\')) { pscript.complete_registration(); }\n\n // banner\n if(cp.client_name) {\n var banner = $a(wrapper.head, \'div\', \'\', {borderBottom:\'3px solid #444\', paddingBottom:\'4px\'})\n banner.innerHTML = cp.client_name;\n }\n\n // complete registration\n if(in_list(user_roles,\'System Manager\')) {\n pscript.complete_registration();\n }\n}\n\n// Widgets\n// ==================================\n\npscript.home_make_widgets = function() {\n var wrapper = page_body.pages[\'Event Updates\'];\n var cell = $td(wrapper.main_tab, 0, 1);\n $y(cell,{padding:\'0px 8px\'});\n\n new HomeCalendar(new HomeWidget(cell, \'Calendar\', \'Event\'));\n \n // calendar link\n var div = $a(cell,\'div\',\'\',{margin:\'4px\',marginBottom:\'16px\',textDecoration:\'underline\',cursor:\'pointer\',color:\'#888\'})\n div.innerHTML = \'View Full Calendar\';\n div.onclick = function() { loadpage(\'_calendar\'); }\n \n new HomeToDo(new HomeWidget(cell, \'To Do\', \'Item\'));\n new FeedList($td(wrapper.main_tab, 0, 0));\n}\n\nHomeWidget = function(parent, heading, item) {\n var me = this; this.item = item;\n \n this.wrapper = $a(parent, \'div\', \'\', {border:\'2px solid #CCC\'});\n $(this.wrapper)\n .css(\'-moz-border-radius\',\'5px\').css(\'-webkit-border-radius\',\'5px\')\n \n // head\n this.head = $a(this.wrapper,\'div\',\'\',{backgroundColor:\'#CCC\', fontSize:\'14px\', fontWeight:\'bold\'});\n this.head.tab = make_table($a(this.head,\'div\'), 1, 2, \'100%\', [\'90%\',\'10%\'], {padding:\'4px\', verticalAlign:\'middle\'})\n $td(this.head.tab,0,0).innerHTML = heading;\n this.working_img = $a($td(this.head.tab,0,0),\'img\',\'\',{marginLeft:\'8px\'});\n this.working_img.src = \'images/ui/button-load.gif\';\n \n // refresh\n this.refresh_btn = $a($td(this.head.tab,0,1),\'div\',\'wn-icon \' + \'ic-playback_reload\', {cursor:\'pointer\'});\n this.refresh_btn.onclick = function() { me.refresh(); }\n \n // body\n this.body = $a(this.wrapper,\'div\',\'\',{padding:\'0px 4px 16px 4px\'});\n this.footer = $a(this.wrapper,\'div\',\'\',{padding:\'4px\',paddingBottom:\'8px\'});\n \n // add button\n this.add_btn = $btn(this.footer,\'+ Add \' + item,function(){me.add()});\n}\n\nHomeWidget.prototype.refresh = function() {\n var me = this;\n $di(this.working_img);\n \n var callback = function(r,rt) {\n $dh(me.working_img);\n me.body.innerHTML = \'\';\n\n // prepare (for calendar?)\n if(me.decorator.setup_body) me.decorator.setup_body();\n\n for(var i=0;iDeleting...\';\n var callback = function(r,rt) {\n $(me.wrapper).slideUp();\n }\n $c_obj(\'Home Control\',this.widget.delete_method, this.widget.get_item_id(this.det) ,callback);\n \n}\n\n// Calendar\n// ===========================\n\nHomeCalendar = function(widget) {\n this.widget = widget;\n\n // methods\n this.widget.get_list_method = \'get_events_list\'\n this.widget.delete_method = \'delete_event\';\n this.widget.get_item_id = function(det) { return det.name; }\n\n this.widget.decorator = this;\n\n var hl = [];\n for(var i=0; i<24; i++) {\n hl.push(((i+8) % 24) + \':00\');\n }\n\n this.widget.dialog_fields = [\n [\'Date\',\'Event Date\']\n ,[\'Select\',\'Time\',\'\',hl]\n ,[\'Text\',\'Description\']\n ,[\'Button\',\'Save\']\n ];\n\n this.widget.refresh();\n}\n\n// create calendar grid\n// --------------------\nHomeCalendar.prototype.setup_body = function() {\n var w = this.widget;\n w.date_blocks = {};\n var td = new Date();\n for(var i=0; i<7; i++) {\n var dt = dateutil.obj_to_str(dateutil.add_days(td,i));\n var div = $a(w.body, \'div\', \'\', {padding:\'4px 0px\', borderBottom:\'1px solid #AAA\',display:\'none\'});\n div.head = $a(div, \'div\', \'\', {fontWeight:\'bold\', paddingBottom:\'4px\'});\n div.head.innerHTML = (i==0 ? \'Today\' : (i==1 ? \'Tomorrow\' : dateutil.str_to_user(dt)))\n w.date_blocks[dt] = div;\n }\n}\n\nHomeCalendar.prototype.get_item_parent = function(det) {\n var d = this.widget.date_blocks[det.event_date]; $ds(d);\n return d;\n}\n\nHomeCalendar.prototype.render_item = function(item, det) {\n $td(item.tab, 0, 0).innerHTML = \'\' + det.event_hour + \': \' + det.description;\n if(det.ref_type && det.ref_name) {\n var span=$a($a($td(item.tab, 0, 0),\'div\'),\'span\',\'link_type\');\n span.innerHTML = det.ref_name; span.dt = det.ref_type;\n span.onclick = function() { loaddoc(this.ref_type, this.innerHTML); }\n }\n}\n\nHomeCalendar.prototype.clear_dialog = function() {\n this.set_dialog_values({event_date:get_today(), event_hour:\'8:00\', description:\'\'});\n}\n\nHomeCalendar.prototype.set_dialog_values = function(det) {\n var d = this.widget.dialog;\n d.widgets[\'Event Date\'].value = dateutil.str_to_user(det.event_date);\n d.widgets[\'Time\'].value = cint(det.event_hour.split(\':\')) + \':00\';\n d.widgets[\'Description\'].value = det.description;\n d.det = det;\n}\n\nHomeCalendar.prototype.save = function(btn) {\n var d = this.widget.dialog;\n var me = this;\n d.det.event_date = dateutil.user_to_str(d.widgets[\'Event Date\'].value);\n d.det.event_hour = d.widgets[\'Time\'].value;\n d.det.description = d.widgets[\'Description\'].value;\n d.det.owner = user;\n if(!d.det.event_type)\n d.det.event_type = \'Private\';\n \n var callback = function(r,rt) {\n btn.done_working();\n me.widget.dialog.hide();\n me.widget.refresh();\n }\n $c_obj(\'Home Control\',\'edit_event\',JSON.stringify(d.det),callback); \n}\n\n// Todo\n// ===========================\n\nHomeToDo = function(widget) {\n this.widget = widget;\n\n // methods\n this.widget.get_list_method = \'get_todo_list\';\n this.widget.delete_method = \'remove_todo_item\';\n this.widget.get_item_id = function(det) { return det[0]; }\n\n this.widget.decorator = this;\n\n this.widget.dialog_fields = [\n [\'Date\',\'Date\']\n ,[\'Text\',\'Description\']\n ,[\'Check\',\'Completed\']\n ,[\'Select\',\'Priority\',\'\',[\'Medium\',\'High\',\'Low\']]\n ,[\'Button\',\'Save\']\n ];\n\n this.widget.refresh(); \n}\n\nHomeToDo.prototype.render_item = function(item, det) {\n \n // priority tag\n var div = $a($td(item.tab, 0, 0), \'div\', \'\', {margin:\'4px 0px\'});\n var span = $a(div, \'span\', \'\', {padding:\'2px\',color:\'#FFF\',fontSize:\'10px\'\n ,backgroundColor:(det[3]==\'Low\' ? \'#888\' : (det[3]==\'High\' ? \'#EDA857\' : \'#687FD3\'))});\n \n $(span).css(\'-moz-border-radius\',\'3px\').css(\'-webkit-border-radius\',\'3px\');\n span.innerHTML = det[3];\n\n // text\n var span = $a(div, \'span\', \'\', {paddingLeft:\'8px\'});\n span.innerHTML = det[1];\n if(det[4]) $y(span,{textDecoration:\'line-through\'});\n}\n\nHomeToDo.prototype.clear_dialog = function() {\n this.set_dialog_values([\'\',\'\',get_today(),\'Medium\',0]);\n}\n\nHomeToDo.prototype.set_dialog_values = function(det) {\n var d = this.widget.dialog;\n d.widgets[\'Date\'].value = dateutil.str_to_user(det[2]);\n d.widgets[\'Priority\'].value = det[3];\n d.widgets[\'Description\'].value = det[1];\n d.widgets[\'Completed\'].checked = det[4];\n d.det = det;\n}\n\nHomeToDo.prototype.save = function(btn) {\n var d = this.widget.dialog;\n var me = this;\n \n var det = {}\n det.date = dateutil.user_to_str(d.widgets[\'Date\'].value);\n det.priority = d.widgets[\'Priority\'].value;\n det.description = d.widgets[\'Description\'].value;\n det.name = d.det ? d.det[0] : \'\';\n det.checked = (d.widgets[\'Completed\'].checked ? 1 : 0);\n\n \n var callback = function(r,rt) {\n btn.done_working();\n me.widget.dialog.hide();\n me.widget.refresh();\n }\n $c_obj(\'Home Control\',\'add_todo_item\',JSON.stringify(det),callback); \n}\n\n// Feed\n// ==================================\n\n\nFeedList = function(parent) {\n // settings\n this.auto_feed_off = 0;\n \n this.wrapper = $a(parent, \'div\');\n this.make_head();\n this.make_status_input();\n this.make_list();\n this.list.run();\n}\n\nFeedList.prototype.make_head = function() {\n var me = this;\n this.head = $a(this.wrapper, \'div\', \'\', {padding:\'4px\',backgroundColor:\'#CCC\',marginBottom:\'8px\',fontSize:\'14px\'});\n $br(this.head,\'3px\');\n \n var span = $a(this.head,\'span\',\'\', {padding:\'0px 8px\'}); span.innerHTML = \'Recent Updates\'.bold();\n\n // all\n var span = $a(this.head,\'span\',\'\',home_link_style); $y(span,{borderLeft:\'1px solid #888\',padding:\'0px 8px\',});\n span.innerHTML = \'All\'; span.onclick = function() { me.auto_feed_off = 0; me.list.run() }\n\n // comments\n var span = $a(this.head,\'span\',\'\',home_link_style); $y(span,{borderLeft:\'1px solid #888\',padding:\'0px 8px\',});\n span.innerHTML = \'Comments\'; span.onclick = function() { me.auto_feed_off = 1; me.list.run() }\n\n}\n\nFeedList.prototype.make_status_input = function() {\n var me = this;\n this.status_area = $a(this.wrapper, \'div\', \'\', {padding:\'4px\'});\n\n this.status_inp = $a(this.status_area, \'input\', \'\', {fontSize:\'14px\', width:\'50%\'});\n this.status_inp.set_empty = function() {\n this.value = \'Share something...\'; $fg(this,\'#888\');\n $dh(this.status_btn);\n }\n this.status_inp.onfocus = function() {\n $fg(this,\'#000\');\n if(this.value==\'Share something...\')this.value = \'\';\n $ds(me.status_btn);\n }\n this.status_inp.onchange = function() {\n if(!this.value) this.set_empty();\n }\n this.status_inp.set_empty();\n this.status_btn = $btn(this.status_area, \'Share\', function() { me.share_status(); }, {fontSize:\'14px\', marginLeft:\'8px\'}, 0, 1);\n $y(this.status_btn.loading_img, {marginBottom:\'0px\'});\n\n $dh(this.status_btn);\n}\n\nFeedList.prototype.share_status = function() {\n var me = this;\n if(!this.status_inp.value) return;\n var callback = function() {\n me.status_inp.set_empty();\n me.status_btn.done_working();\n me.list.run();\n }\n this.status_btn.set_working();\n $c_obj(\'Feed Control\', \'add_feed\', this.status_inp.value, callback);\n}\n\nFeedList.prototype.make_list = function() {\n var l = new Listing(\'Feed List\',1);\n var me = this;\n\n // style\n l.colwidths = [\'100%\']; l.page_len = 20; \n l.opts.alt_cell_style = {backgroundColor:\'#FFF\'}; l.opts.no_border = 1; l.keyword = \'feeds\';\n \n // build query\n l.get_query = function(){\n var condn = me.auto_feed_off ? \' and (t1.doc_name is null or t1.doc_name =\"\")\' : \'\';\n this.query = repl(\'select t1.name, t1.feed, t1.feed_owner, t1.can_view, t1.doc_name, t1.doc_label, t1.doc_no, t1.action, t1.latest_comments, t1.total_comments, t1.modified, concat_ws(\" \", t2.first_name, t2.last_name),t2.social_points, t2.social_badge from tabFeed t1, tabProfile t2 where t1.feed_owner = t2.name%(condn)s order by t1.modified desc\',{\'condn\':condn});\n this.query_max = repl(\'select count(t1.name) from tabFeed t1, tabProfile t2 where t1.feed_owner = t2.name%(condn)s\',{\'condn\':condn});\n }\n \n // render list ui\n l.show_cell = function(cell,ri,ci,d){ me.render_feed(cell,ri,ci,d); }\n \n // onrun\n l.onrun = function(){ $(me.wrapper).fadeIn(); if(me.after_run) me.after_run(); }\n \n // make\n l.make($a(this.wrapper,\'div\'));\n $dh(l.btn_area);\n\n this.list = l;\n}\n\nFeedList.prototype.render_feed = function(cell,ri,ci,d) {\n new FeedItem(cell, d[ri], this);\n}\n\n// Item\n// -------------------------------\n\nFeedItem = function(cell, det, feedlist) {\n this.det = det; this.feedlist = feedlist;\n this.wrapper = $a(cell,\'div\',\'\',{marginBottom:\'4px\'});\n this.tab = make_table(this.wrapper, 1, 2, \'100%\', [(100/6)+\'%\', (500/7)+\'%\']);\n\n // image\n $y($td(this.tab,0,0),{textAlign:\'right\',paddingRight:\'4px\'});\n this.img = $a($td(this.tab,0,0), \'img\',\'\',{width:\'40px\'});\n set_user_img(this.img, det[2]);\n \n // text\n this.text_area = $a($td(this.tab,0,1), \'div\');\n if(det[4]) {\n // reference\n this.render_references(this.text_area, det);\n } else {\n this.text_area.innerHTML = \'\' + det[11] + \' (\' + det[12] + \'): \' + det[1];\n }\n \n if(feedlist) {\n this.make_comment_toolbar();\n this.render_comments();\n }\n}\nFeedItem.prototype.render_references = function(div, det) {\n // name\n div.innerHTML = \'\' + det[11] + \' (\' + det[12] + \'): has \' + det[7] + \' \';\n var l = det[6].split(\',\');\n \n // doctype\n var span = $a(div, \'span\'); span.innerHTML = det[5] + \' \';\n\n // records\n for(var i=0;i<(l.length > 5 ? 5 : l.length);i++) {\n if(i>0) {\n var comma_span = $a(div, \'span\'); comma_span.innerHTML = \', \'; //comma-space\n }\n var span = $a(div, \'span\', \'link_type\');\n span.innerHTML = l[i]; span.dt = det[4]; span.dn = l[i];\n span.onclick = function() { loaddoc(this.dt, this.dn); }\n }\n if(l.length>5) {\n var span = $a(div, \'span\');\n span.innerHTML += \' and \' + (l.length-5) + \' more record\' + (l.length > 6 ? \'s\': \'\');\n }\n}\n\n\nFeedItem.prototype.render_comments = function() {\n // render existing comments / in reverse order\n var cl = eval(this.det[8]);\n if(cl) {\n for(var i=0; i1 ? \'s\' : \'\');\n \n // link for all comments\n if(this.det[9]>2) {\n var span = $a(this.tbar, \'span\', \'\', {paddingRight:\'8px\', textDecoration:\'underline\', cursor:\'pointer\'});\n span.innerHTML = \'Show All\'; span.onclick = function() { me.show_all_comments(); }\n }\n }\n\n // add comment link\n var span = $a(this.tbar, \'span\', \'\', {paddingRight:\'8px\', textDecoration:\'underline\', cursor:\'pointer\'});\n span.innerHTML = \'Add Comment\';\n span.onclick = function() { me.add_comment(); }\n}\n\nFeedItem.prototype.show_all_comments = function() {\n var me = this;\n \n if(!me.all_comments_dialog){\n var d = new Dialog(500,400,\'All Comments\');\n d.make_body([[\'HTML\',\'cmt_body\']]);\n me.all_comments_dialog = d;\n }\n\n var d = me.all_comments_dialog;\n \n var callback = function(r,rt){\n var lst = r.message;\n \n if(lst && lst.length){\n d.widgets[\'cmt_body\'].innerHTML = \'\';\n var parent = $a(d.widgets[\'cmt_body\'],\'div\');\n\n if(lst.length > 5) $y(parent,{overflow:\'auto\', width:\'100%\', height:\'300px\'})\n \n // render the comments\n for(i=lst.length-1; i>=0; i--){\n new FeedComment(parent, lst[i]);\n }\n }\n d.show();\n }\n \n $c_obj(\'Feed Control\',\'show_all_comments\',me.det[0],callback);\n\n}\n\nFeedItem.prototype.add_comment = function() {\n var me = this;\n if(!this.comment_dialog) {\n var d = new Dialog(360,360,\'Add a Comment\');\n d.make_body([[\'Text\',\'Comment\'], [\'Button\',\'Save\']]);\n d.onshow = function() {\n d.widgets[\'Comment\'].value = \'\';\n }\n d.widgets[\'Save\'].onclick = function() {\n var c = d.widgets[\'Comment\'].value;\n if(!c) { msgprint(\"You must write a comment first!\"); return; }\n\n var args = {\n cmt:c, cmt_by: user, cmt_by_fullname: user_fullname, dt: \'Feed\', dn: me.det[0]\n };\n \n var callback = function(r,rt){\n d.hide();\n me.feedlist.list.run();\n }\n $c_obj(\'Feed Control\', \'add_comment\', JSON.stringify(args),callback); \n }\n this.comment_dialog = d;\n }\n this.comment_dialog.show();\n}\n\n// Comment\n// -------------------------------\n\nFeedComment = function(parent, det) {\n this.wrapper = $a(parent, \'div\', \'\', {margin:\'4px 0px\', color:\'#888\', fontSize:\'11px\'});\n this.tab = make_table($a(this.wrapper,\'div\'), 1, 2, \'100%\', [null,\'20px\']);\n $td(this.tab, 0, 0).innerHTML = \'\' + det[3] + \': \' + det[1];\n \n // if owner, then delete button\n if(det[2]==user) {\n this.del_btn = $a($td(this.tab,0,1),\'div\',\'wn-icon \' + \'ic-trash\', {cursor:\'pointer\'});\n this.del_btn.onclick = function() {\n $c_obj(\'\');\n }\n }\n}\n\n// Status bar\n// ==================================\n\npscript.home_make_status = function() {\n var wrapper = page_body.pages[\'Event Updates\'];\n\n var div = $a(wrapper.head,\'div\',\'\',{borderBottom:\'1px solid #AAA\', marginBottom:\'8px\'});\n var tab = make_table(div, 1, 3, null, [], {padding:\'4px 6px\', cursor:\'pointer\', color:\'#666\', textDecoration:\'underline\'});\n \n // messages\n $td(tab,0,0).innerHTML = \'Messages...\';\n $td(tab,0,0).onclick = function() { loadpage(\'Messages\') }\n \n // users\n $td(tab,0,1).innerHTML = \'Online Users...\';\n $td(tab,0,1).onclick = function() { loadpage(\'My Company\') }\n\n // get values\n $c_obj(\'Home Control\', \'get_status_details\', user,\n function(r,rt) { \n $td(tab,0,0).innerHTML = \'Messages (\' + r.message.unread + \')\'; \n $td(tab,0,1).innerHTML = r.message.user_count + \' user\'+(r.message.user_count >1 ? \'s\': \'\')+\' online\';\n });\n \n // wip montior\n $td(tab,0,2).innerHTML = \'Work In Progress\';\n $td(tab,0,2).onclick = function() { loadpage(\'WIP Monitor\') }\n $y($td(tab,0,2),{borderRight:\'0px\'}); \n}\n\n// complete my company registration\n// --------------------------------\npscript.complete_registration = function()\n{\n var reg_callback = function(r, rt){\n if(r.message == \'No\'){\n var d = new Dialog(400, 200, \"Please Complete Your Registration\");\n if(user != \'Administrator\'){\n d.no_cancel(); // Hide close image\n $dh(page_body.wntoolbar.wrapper);\n }\n $($a(d.body,\'div\',\'\', {margin:\'8px\', color:\'#888\'})).html(\'Company Name : \'+locals[\'Control Panel\'][\'Control Panel\'].company_name); \n\n d.make_body(\n [\n [\'Data\',\'Company Abbreviation\'],\n [\'Select\',\'Fiscal Year Start Date\'],\n [\'Select\',\'Default Currency\'],\n [\'Button\',\'Save\'],\n ]);\n\n //d.widgets[\'Save\'].disabled = true; // disable Save button\n pscript.make_dialog_field(d);\n\n // submit details\n d.widgets[\'Save\'].onclick = function()\n {\n flag = pscript.validate_fields(d);\n if(flag)\n {\n var args = [\n locals[\'Control Panel\'][\'Control Panel\'].company_name,\n d.widgets[\'Company Abbreviation\'].value,\n d.widgets[\'Fiscal Year Start Date\'].value,\n d.widgets[\'Default Currency\'].value\n ];\n \n $c_obj(\'Setup Control\',\'setup_account\',JSON.stringify(args),function(r, rt){\n sys_defaults = r.message;\n d.hide();\n $ds(page_body.wntoolbar.wrapper);\n });\n }\n }\n d.show();\n }\n }\n $c_obj(\'Home Control\',\'registration_complete\',\'\',reg_callback);\n}\n\n// complete my company registration\n// --------------------------------\npscript.complete_registration = function()\n{\n var reg_callback = function(r, rt){\n if(r.message == \'No\'){\n var d = new Dialog(400, 200, \"Please Complete Your Registration\");\n if(user != \'Administrator\'){\n d.no_cancel(); // Hide close image\n $dh(page_body.wntoolbar.wrapper);\n }\n $($a(d.body,\'div\',\'\', {margin:\'8px\', color:\'#888\'})).html(\'Company Name : \'+locals[\'Control Panel\'][\'Control Panel\'].company_name); \n\n d.make_body(\n [\n [\'Data\',\'Company Abbreviation\'],\n [\'Select\',\'Fiscal Year Start Date\'],\n [\'Select\',\'Default Currency\'],\n [\'Button\',\'Save\'],\n ]);\n\n //d.widgets[\'Save\'].disabled = true; // disable Save button\n pscript.make_dialog_field(d);\n\n // submit details\n d.widgets[\'Save\'].onclick = function()\n {\n flag = pscript.validate_fields(d);\n if(flag)\n {\n var args = [\n locals[\'Control Panel\'][\'Control Panel\'].company_name,\n d.widgets[\'Company Abbreviation\'].value,\n d.widgets[\'Fiscal Year Start Date\'].value,\n d.widgets[\'Default Currency\'].value\n ];\n \n $c_obj(\'Setup Control\',\'setup_account\',JSON.stringify(args),function(r, rt){\n sys_defaults = r.message;\n d.hide();\n $ds(page_body.wntoolbar.wrapper);\n });\n }\n }\n d.show();\n }\n }\n $c_obj(\'Home Control\',\'registration_complete\',\'\',reg_callback);\n}\n\n// make dialog fields\n// ------------------\npscript.make_dialog_field = function(d)\n{\n // fiscal year format \n fisc_format = d.widgets[\'Fiscal Year Start Date\'];\n add_sel_options(fisc_format, [\'\', \'1st Jan\', \'1st Apr\', \'1st Jul\', \'1st Oct\']);\n \n // default currency\n currency_list = [\'\', \'AED\', \'AFN\', \'ALL\', \'AMD\', \'ANG\', \'AOA\', \'ARS\', \'AUD\', \'AZN\', \'BAM\', \'BBD\', \'BDT\', \'BGN\', \'BHD\', \'BIF\', \'BMD\', \'BND\', \'BOB\', \'BRL\', \'BSD\', \'BTN\', \'BYR\', \'BZD\', \'CAD\', \'CDF\', \'CFA\', \'CFP\', \'CHF\', \'CLP\', \'CNY\', \'COP\', \'CRC\', \'CUC\', \'CZK\', \'DJF\', \'DKK\', \'DOP\', \'DZD\', \'EEK\', \'EGP\', \'ERN\', \'ETB\', \'EUR\', \'EURO\', \'FJD\', \'FKP\', \'FMG\', \'GBP\', \'GEL\', \'GHS\', \'GIP\', \'GMD\', \'GNF\', \'GQE\', \'GTQ\', \'GYD\', \'HKD\', \'HNL\', \'HRK\', \'HTG\', \'HUF\', \'IDR\', \'ILS\', \'INR\', \'IQD\', \'IRR\', \'ISK\', \'JMD\', \'JOD\', \'JPY\', \'KES\', \'KGS\', \'KHR\', \'KMF\', \'KPW\', \'KRW\', \'KWD\', \'KYD\', \'KZT\', \'LAK\', \'LBP\', \'LKR\', \'LRD\', \'LSL\', \'LTL\', \'LVL\', \'LYD\', \'MAD\', \'MDL\', \'MGA\', \'MKD\', \'MMK\', \'MNT\', \'MOP\', \'MRO\', \'MUR\', \'MVR\', \'MWK\', \'MXN\', \'MYR\', \'MZM\', \'NAD\', \'NGN\', \'NIO\', \'NOK\', \'NPR\', \'NRs\', \'NZD\', \'OMR\', \'PAB\', \'PEN\', \'PGK\', \'PHP\', \'PKR\', \'PLN\', \'PYG\', \'QAR\', \'RMB\', \'RON\', \'RSD\', \'RUB\', \'RWF\', \'SAR\', \'SCR\', \'SDG\', \'SDR\', \'SEK\', \'SGD\', \'SHP\', \'SOS\', \'SRD\', \'STD\', \'SYP\', \'SZL\', \'THB\', \'TJS\', \'TMT\', \'TND\', \'TRY\', \'TTD\', \'TWD\', \'TZS\', \'UAE\', \'UAH\', \'UGX\', \'USD\', \'USh\', \'UYU\', \'UZS\', \'VEB\', \'VND\', \'VUV\', \'WST\', \'XAF\', \'XCD\', \'XDR\', \'XOF\', \'XPF\', \'YEN\', \'YER\', \'YTL\', \'ZAR\', \'ZMK\', \'ZWR\'];\n currency = d.widgets[\'Default Currency\'];\n add_sel_options(currency, currency_list);\n}\n\n\n// validate fields\n// ---------------\npscript.validate_fields = function(d)\n{\n var lst = [\'Company Abbreviation\', \'Fiscal Year Start Date\', \'Default Currency\'];\n var msg = \'Please enter the following fields\';\n var flag = 1;\n for(var i=0; iLoading... \'\n var me=this;\n\n d.onshow = function() {\n if(!me.setup_done)\n me.get_all_roles(me.profile_id);\n }\n}\n\n// make role body\nRoleObj.prototype.make_role_body = function(id){\n var me = this;\n var d = this.dialog;\n this.role_div = $a(d.widgets[\'roles\'],\'div\');\n \n this.head = $a(this.role_div,\'div\',\'\',{marginLeft:\'4px\', marginBottom:\'4px\',fontWeight:\'bold\'});\n this.body = $a(this.role_div,\'div\');\n this.footer = $a(this.role_div,\'div\');\n \n this.update_btn = $btn(this.footer,\'Update\',function() { me.update_roles(me.profile_id); },{marginRight:\'4px\'},\'\',1); \n}\n\n// get all roles\nRoleObj.prototype.get_all_roles = function(id){\n if(pscript.all_roles) {\n this.make_roles(id);\n return;\n }\n\n var me = this;\n var callback = function(r,rt){\n pscript.all_roles = r.message;\n me.make_roles(id);\n }\n $c_obj(\'Company Control\',\'get_all_roles\',\'\',callback);\n}\n\n// make roles\nRoleObj.prototype.make_roles = function(id){\n var me = this;\n var list = pscript.all_roles;\n me.setup_done = 1;\n me.body.innerHTML = \'\';\n \n var tbl = make_table( me.body, cint(list.length / 2) + 1,4,\'100%\',[\'5%\',\'45%\',\'5%\',\'45%\'],{padding:\'4px\'});\n var in_right = 0; var ridx = 0;\n\n for(i=0;i 1){\n var c = confirm(\"You have unchecked the System Manager role.\\nYou will lose administrative rights and will not be able to set roles.\\n\\nDo you want to continue anyway?\");\n if(!c) return;\n }\n else{\n var c = \"There should be atleast one user with System Manager role.\";\n me.roles_dict[\'System Manager\'].checked = 1;\n }\n }\n me.set_roles(id);\n }\n $c_obj(\'Company Control\',\'get_sm_count\',\'\',callback);\n }\n else{\n me.set_roles(id);\n }\n}\n\n// set roles\nRoleObj.prototype.set_roles = function(id){\n\n var me = this;\n var role_list = [];\n \n for(d in me.roles_dict){\n if(me.roles_dict[d].checked){\n role_list.push(d);\n }\n }\n\n var callback = function(r,rt){\n me.update_btn.done_working();\n me.dialog.hide();\n }\n var arg = {\'usr\':id, \'role_list\':role_list};\n me.update_btn.set_working();\n $c_obj(\'Company Control\',\'update_roles\',docstring(arg), callback);\n\n}\n\n//=============================================\n\n// Remove User Object\n// ---------------------------------------------------------------------------------------------\nRemoveUserObj = function(uid){\n var me = this;\n\n var callback = function(r, rt){\n if(r.message){ \n var d = new Dialog(400,100,\'Remove Users\');\n \n d.make_body([[\'HTML\', \'remove_user_div\']]);\n me.dialog = d;\n var src = \'https://\'+r.message+\'/index.cgi?usr=\'+uid+\'&acc=\'+locals[\'Control Panel\'][\'Control Panel\'].account_id+\'#Page/Remove User\';\n $a(d.widgets[\'remove_user_div\'],\'div\').innerHTML = \'\';\n me.dialog.show();\n me.dialog.onhide = function(){global_search_object.search();}\n }\n else{\n msgprint(\"To use this feature for first time please logout and login again in your system\");\n return;\n }\n }\n $c_obj(\'Company Control\',\'get_login_url\',\'\',callback);\n}\n\n// Switch user Obj\n// -------------------\nSwitchUserObj = function(){\n var me = this;\n var callback = function(r, rt){\n if(r.message){ \n var d = new Dialog(450,200,\'Switch User\');\n d.make_body([[\'HTML\', \'switch_user_div\']]);\n me.dialog = d;\n var src = \'https://\'+r.message+\'/index.cgi?acc=\'+locals[\'Control Panel\'][\'Control Panel\'].account_id+\'#Page/Switch User\';\n $a(d.widgets[\'switch_user_div\'],\'div\').innerHTML = \'\';\n me.dialog.show();\n me.dialog.onhide = function(){global_search_object.search();}\n }\n else{\n msgprint(\"To use this feature for first time please logout and login again in your system\");\n return;\n }\n }\n $c_obj(\'Company Control\',\'get_login_url\',\'\',callback);\n}',1,NULL,NULL,NULL,'Home','Yes','','','My Company',NULL,NULL,NULL,NULL),('Permission Engine','2012-10-02 13:18:38','2011-01-04 13:11:17','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,'Setup','Yes',NULL,NULL,'Permission Engine',NULL,NULL,NULL,NULL),('production-home','2012-10-02 13:18:38','2012-02-21 13:24:34','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Production','Yes',NULL,NULL,'production-home','Production Home',NULL,NULL,NULL),('profile-settings','2012-10-02 13:18:13','2011-04-13 12:08:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'Profile Settings',NULL,NULL,NULL,NULL),('Projects','2012-10-02 13:18:33','2010-12-30 14:43:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Projects','Yes',NULL,NULL,'Projects',NULL,NULL,NULL,NULL),('projects-home','2012-10-02 13:18:33','2012-02-21 13:24:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Projects','Yes',NULL,NULL,'projects-home','Projects Home',NULL,NULL,NULL),('purchase-analytics','2012-10-02 13:18:33','2012-09-21 15:21:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Buying','Yes',NULL,NULL,'purchase-analytics','Purchase Analytics',NULL,NULL,NULL),('question-view','2012-10-02 13:18:13','2011-03-29 13:54:27','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'Question View',NULL,NULL,NULL,NULL),('questions','2012-10-02 13:18:14','2011-03-29 13:53:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'Questions',NULL,NULL,NULL,NULL),('Sales Browser','2012-10-02 13:18:11','2010-12-24 11:56:34','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Selling','Yes',NULL,NULL,'Sales Browser',NULL,NULL,NULL,NULL),('Sales Dashboard','2012-10-02 13:18:11','2010-09-25 00:00:00','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Selling','Yes',NULL,NULL,'Sales Dashboard',NULL,NULL,NULL,NULL),('sales-analytics','2012-10-02 13:18:11','2012-09-21 12:06:14','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Selling','Yes',NULL,NULL,'sales-analytics','Sales Analytics',NULL,NULL,NULL),('selling-home','2012-10-02 13:18:11','2012-02-20 15:46:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Selling','Yes',NULL,NULL,'selling-home','Selling Home',NULL,NULL,NULL),('Setup','2012-10-02 13:18:38','2011-07-04 16:58:27','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Setup','Yes',NULL,NULL,'Setup',NULL,NULL,NULL,NULL),('stock-ageing','2012-10-02 13:18:19','2012-09-21 18:21:31','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Stock','Yes',NULL,NULL,'stock-ageing','Stock Ageing',NULL,NULL,NULL),('stock-analytics','2012-10-02 13:18:19','2012-09-20 12:13:45','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Stock','Yes',NULL,NULL,'stock-analytics','Stock Analytics',NULL,NULL,NULL),('stock-home','2012-10-02 13:18:19','2012-02-21 13:23:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Stock','Yes',NULL,NULL,'stock-home','Stock Home',NULL,NULL,NULL),('stock-ledger','2012-10-02 13:18:19','2012-09-18 14:55:15','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Stock','Yes',NULL,NULL,'stock-ledger','Stock Ledger',NULL,NULL,NULL),('support-home','2012-10-02 13:18:35','2012-02-21 13:23:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Support','Yes',NULL,NULL,'support-home','Support Home',NULL,NULL,NULL),('todo','2012-10-02 13:18:14','2012-02-23 13:59:03','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'todo','To Do',NULL,NULL,NULL),('Trash','2012-10-02 13:18:13','2010-12-30 11:44:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'Trash',NULL,NULL,NULL,NULL),('trial-balance','2012-10-02 13:18:32','2012-09-17 13:47:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Accounts','Yes',NULL,NULL,'trial-balance','Trial Balance',NULL,NULL,NULL),('unsubscribe','2012-05-08 11:38:47','2012-05-08 08:08:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Website','Yes',NULL,NULL,'unsubscribe','Unsubscribe',NULL,NULL,NULL),('users','2012-10-02 13:18:13','2012-02-28 10:29:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'users','Users',NULL,NULL,NULL),('Webforms','2012-10-02 13:18:38','2011-01-04 13:19:54','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,'Setup','Yes',NULL,NULL,'Webforms',NULL,NULL,NULL,NULL),('website-home','2012-10-02 13:18:39','2012-02-21 13:23:51','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Website','Yes',NULL,NULL,'website-home','Website Home',NULL,NULL,NULL),('WIP Monitor','2012-10-02 13:18:14','2011-01-04 11:12:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'WIP Monitor',NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabPage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPayment to Invoice Matching Tool Detail` +-- + +DROP TABLE IF EXISTS `tabPayment to Invoice Matching Tool Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPayment to Invoice Matching Tool Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `total_amt` decimal(18,6) default NULL, + `selected` int(1) default NULL, + `voucher_detail_no` varchar(180) default NULL, + `against_account` varchar(180) default NULL, + `remarks` text, + `posting_date` date default NULL, + `voucher_no` varchar(180) default NULL, + `amt_to_be_reconciled` decimal(18,6) default NULL, + `amt_due` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPayment to Invoice Matching Tool Detail` +-- + +LOCK TABLES `tabPayment to Invoice Matching Tool Detail` WRITE; +/*!40000 ALTER TABLE `tabPayment to Invoice Matching Tool Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPayment to Invoice Matching Tool Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPeriod Closing Voucher` +-- + +DROP TABLE IF EXISTS `tabPeriod Closing Voucher`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPeriod Closing Voucher` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `transaction_date` date default NULL, + `posting_date` date default NULL, + `fiscal_year` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `company` varchar(180) default NULL, + `closing_account_head` varchar(180) default NULL, + `remarks` text, + `cancel_reason` text, + `next_fiscal_year` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPeriod Closing Voucher` +-- + +LOCK TABLES `tabPeriod Closing Voucher` WRITE; +/*!40000 ALTER TABLE `tabPeriod Closing Voucher` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPeriod Closing Voucher` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPeriod` +-- + +DROP TABLE IF EXISTS `tabPeriod`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPeriod` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `period_name` varchar(180) default NULL, + `start_date` date default NULL, + `end_date` date default NULL, + `period_type` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPeriod` +-- + +LOCK TABLES `tabPeriod` WRITE; +/*!40000 ALTER TABLE `tabPeriod` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPeriod` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPrice List` +-- + +DROP TABLE IF EXISTS `tabPrice List`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPrice List` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `price_list_name` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPrice List` +-- + +LOCK TABLES `tabPrice List` WRITE; +/*!40000 ALTER TABLE `tabPrice List` DISABLE KEYS */; +INSERT INTO `tabPrice List` VALUES ('Default Price List','2010-12-14 17:56:44','2010-12-01 17:52:33','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Default Price List',NULL,NULL),('Standard','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL); +/*!40000 ALTER TABLE `tabPrice List` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPrint Format` +-- + +DROP TABLE IF EXISTS `tabPrint Format`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPrint Format` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `html` text, + `module` varchar(180) default NULL, + `standard` varchar(180) default 'No', + `doc_type` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `standard` (`standard`), + KEY `module` (`module`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPrint Format` +-- + +LOCK TABLES `tabPrint Format` WRITE; +/*!40000 ALTER TABLE `tabPrint Format` DISABLE KEYS */; +INSERT INTO `tabPrint Format` VALUES ('Cheque Printing Format','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n
    \n



    \n
    \nPAYMENT ADVICE

    \n\n\n\n\n\n\n\n
    To :
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Voucher No :\n\n
    Voucher Date :\n\n
    Cheque No :\n\n
    Cheque Date :\n\n
    \n
    \n
    We are pleased to enclose our cheque in full/part Settlement of your under noted bills
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n
     Total :\n\n
    Narration :\n\n


    \n
    Prepared By
    \n
    Authorised Signatory
    \n
    Received Payment as Above
    \n
    _____________
    \n
    A/c Payee
    \n
    _____________
    \n
    \n\n
    \n
    \n\n
    \n
    \n\n
    \n
    \n\n
    \n
    ','Accounts','Yes','Journal Voucher',NULL,NULL),('Delivery Note Classic','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Delivery Note Date
    Sales Order No.\n
    \n ()\n
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Stock','Yes','Delivery Note',NULL,NULL),('Delivery Note Modern','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Delivery Note No.
    Delivery Note Date
    Sales Order No.\n
    \n ()\n
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Stock','Yes','Delivery Note',NULL,NULL),('Delivery Note Spartan','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Delivery Note Date
    Sales Order No.\n
    \n ()\n
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Stock','Yes','Delivery Note',NULL,NULL),('Form 16A Print Format','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n \n\n\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n

    FORM No. 16 A

    \n

    Certificate No:

    \n

    [See rule 31 (1)(b)]

    \n

    Certifiction of deduction of tax at source under section 203 of the Income-tax Act, 1961

    \n

    [For interest on securities; dividends; interests other than \'interests on securities\';winnings from lottery or crossword puzzle;\n winnings from horse race; payments to contractors and sub-contractors;insurance comission;payments to\n \n non-resident sportsmen/ sports associations;payments in respect of deposits under National Savings Scheme:\n payments on account of repurchase of units by Mutual Fund or Unit Trust of India; commission, remuneration or prize\n \n on sale of lottery tickets; comission or brokerage;rent;fees for professional or technical services;royalty and any sum \n under section 28(va);income in respect of units; payment of compensation on acquisition of certain immovable property;\n\n other sums under section 195; income in respect of units of non-residents referred to in section 196A; income from units\n referred to in section 196B;income from foreign currency bonds or shares of an Indian Company referred to in section

    \n 196C; income of Foreign Institutional Investors from securities referred to in section 196D]\n
    Name and address of person deducing taxAcknowledgement No.s of all quarterly statements of TDS under sub-section(3) of section 200 as provided by TIN Facilitation Centre or NSDL web-siteName and address of the person to whom payment is made or in whose account it is credited
    \n \n

    \n \n
    \n
    \n \n \n \n

    \n \n
    \n
    \n \n Registration Details OF THE DEDUCTOR
    \n \n
    \n
    \n \n
    NATURE OF PAYMENT


    \n
    \n \n
    \n
    \n \n PAN NO. OF THE PAYEE
    \n \n \n
    \n
    DETAILS OF PAYMENT, TAX DEDUCTION AND DEPOSIT OF TAX INTO CENTRAL GOVERNMENT ACCOUNT\n

    (The deductor is to provide transaction wise details of tax deducted and deposited)

    \n
    \n \n
    \n Certified that a sum of Rs. has been deducted at source and paid to the credit of the Central Government as per details given above



    \n

    Signature of person responsible for deduction of tax \n

    \n \n \n \n \n \n \n \n \n \n
    Place: Full Name:
    Date: Designation:
    \n
    \n\n','Accounts','Yes',NULL,NULL,NULL),('Payment Receipt Voucher','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'
    \n

    \n

    \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n
    Receipt No.:
    Date :
    Remark:
    Received From:
    \n
    \n\n

    \n

    \n
    This receipt is issued subject to realization of the Cheque
    \n
    \n
    \n\n\n\n\n

    For ,


    (Authorised Signatory)
    ','Accounts','Yes','Journal Voucher',NULL,NULL),('POS Invoice','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n \n \n\n\n \n\n
    NO: DATE:
    M/s
    \n\n
    \n\n
    \n\n

    \n\n \n \n \n \n
    For
     
    Signatory
    \n\n\n','Accounts','Yes','Sales Invoice',NULL,NULL),('Purchase Order Classic','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n
    Purchase Order Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    \n
    In Words
    \n \n
    \n
    \n','Buying','Yes','Purchase Order',NULL,NULL),('Purchase Order Modern','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Purchase Order No.
    Purchase Order Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    \n
    In Words
    \n \n
    \n
    \n','Buying','Yes','Purchase Order',NULL,NULL),('Purchase Order Spartan','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n
    Purchase Order Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    \n
    In Words
    \n \n
    \n
    \n','Buying','Yes','Purchase Order',NULL,NULL),('Purchase Receipt Format','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n
    \n\n
    \n
    \n

    Purchase Receipt:
    \n
    Date:
    \n
    \n\n
    \n
    \n

    \n
    \n\n
    \n
    \n \n\n
    \n\n\n
    \n\n \n \n
    \n
    \n
    \n

    Payment Terms
    \n

    \n

    For NCSCI
    \n


    (Authorised Signatory)
    \n
    \n','Stock','Yes',NULL,NULL,NULL),('Quotation Classic','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n
    Quotation Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Quotation',NULL,NULL),('Quotation Modern','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Quotation No.
    Quotation Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Quotation',NULL,NULL),('Quotation Spartan','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n
    Quotation Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Quotation',NULL,NULL),('Sales Invoice Classic','2012-07-12 19:25:46','2012-06-04 16:02:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Invoice Date
    Due Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Accounts','Yes','Sales Invoice',NULL,NULL),('Sales Invoice Modern','2012-07-12 19:25:46','2012-06-04 16:01:46','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Invoice No.
    Invoice Date
    Due Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Accounts','Yes','Sales Invoice',NULL,NULL),('Sales Invoice Spartan','2012-07-12 19:25:47','2012-06-04 16:01:09','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Invoice Date
    Due Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Accounts','Yes','Sales Invoice',NULL,NULL),('Sales Order Classic','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Sales Order Date
    Delivery Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Sales Order',NULL,NULL),('Sales Order Modern','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Sales Order No.
    Sales Order Date
    Delivery Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Sales Order',NULL,NULL),('Sales Order Spartan','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Sales Order Date
    Delivery Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Sales Order',NULL,NULL); +/*!40000 ALTER TABLE `tabPrint Format` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPrint Heading` +-- + +DROP TABLE IF EXISTS `tabPrint Heading`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPrint Heading` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `print_heading` varchar(180) default NULL, + `description` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPrint Heading` +-- + +LOCK TABLES `tabPrint Heading` WRITE; +/*!40000 ALTER TABLE `tabPrint Heading` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPrint Heading` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProduct Group` +-- + +DROP TABLE IF EXISTS `tabProduct Group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProduct Group` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_group` varchar(180) default NULL, + `label` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProduct Group` +-- + +LOCK TABLES `tabProduct Group` WRITE; +/*!40000 ALTER TABLE `tabProduct Group` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProduct Group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProduct` +-- + +DROP TABLE IF EXISTS `tabProduct`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProduct` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `currency` varchar(180) default NULL, + `file_list` text, + `title` varchar(180) default NULL, + `price` decimal(18,6) default NULL, + `full_image` varchar(180) default NULL, + `price_list` varchar(180) default NULL, + `sales` decimal(18,6) default NULL, + `item` varchar(180) default NULL, + `short_description` text, + `page_name` varchar(180) default NULL, + `thumbnail_image` varchar(180) default NULL, + `published` int(1) default NULL, + `warehouse` varchar(180) default NULL, + `long_description` text, + `stock` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProduct` +-- + +LOCK TABLES `tabProduct` WRITE; +/*!40000 ALTER TABLE `tabProduct` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProduct` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProduction Order` +-- + +DROP TABLE IF EXISTS `tabProduction Order`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProduction Order` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `transaction_date` date default NULL, + `posting_date` date default NULL, + `production_item` varchar(180) default NULL, + `description` text, + `qty` decimal(18,6) default NULL, + `bom_no` varchar(180) default NULL, + `origin` varchar(180) default NULL, + `status` varchar(180) default NULL, + `fg_warehouse` varchar(180) default NULL, + `wip_warehouse` varchar(180) default NULL, + `consider_sa_items` varchar(180) default NULL, + `stock_uom` varchar(180) default NULL, + `produced_qty` decimal(18,6) default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `project_name` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProduction Order` +-- + +LOCK TABLES `tabProduction Order` WRITE; +/*!40000 ALTER TABLE `tabProduction Order` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProduction Order` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProduction Plan Item` +-- + +DROP TABLE IF EXISTS `tabProduction Plan Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProduction Plan Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `source_doctype` varchar(180) default NULL, + `source_docname` varchar(180) default NULL, + `source_detail_docname` varchar(180) default NULL, + `parent_item` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + `document_date` date default NULL, + `confirmation_date` date default NULL, + `bom_no` varchar(180) default NULL, + `description` text, + `stock_uom` varchar(180) default NULL, + `prevdoc_reqd_qty` decimal(18,6) default NULL, + `planned_qty` decimal(18,6) default '0.000000', + `produced_qty` decimal(18,6) default NULL, + `pro_created` int(1) default NULL, + `mrp` int(1) default NULL, + `sales_order` varchar(180) default NULL, + `parent_packing_item` varchar(180) default NULL, + `is_pro_created` int(1) default NULL, + `so_pending_qty` decimal(18,6) default '0.000000', + PRIMARY KEY (`name`), + KEY `document_date` (`document_date`), + KEY `confirmation_date` (`confirmation_date`), + KEY `parent` (`parent`), + KEY `parent_item` (`parent_item`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProduction Plan Item` +-- + +LOCK TABLES `tabProduction Plan Item` WRITE; +/*!40000 ALTER TABLE `tabProduction Plan Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProduction Plan Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProduction Plan Sales Order` +-- + +DROP TABLE IF EXISTS `tabProduction Plan Sales Order`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProduction Plan Sales Order` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `prevdoc` varchar(180) default NULL, + `prevdoc_docname` varchar(180) default NULL, + `document_date` date default NULL, + `confirmation_date` date default NULL, + `include_in_plan` int(1) default NULL, + `customer` varchar(180) default NULL, + `grand_total` decimal(18,6) default NULL, + `sales_order_date` date default NULL, + `sales_order` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProduction Plan Sales Order` +-- + +LOCK TABLES `tabProduction Plan Sales Order` WRITE; +/*!40000 ALTER TABLE `tabProduction Plan Sales Order` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProduction Plan Sales Order` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProfile` +-- + +DROP TABLE IF EXISTS `tabProfile`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProfile` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `enabled` int(1) default '1', + `send_email_invite` int(1) default NULL, + `escalates_to` varchar(180) default NULL, + `recent_documents` text, + `first_name` varchar(180) default NULL, + `middle_name` varchar(180) default NULL, + `last_name` varchar(180) default NULL, + `email` varchar(180) default NULL, + `home_phone` varchar(180) default NULL, + `office_phone` varchar(180) default NULL, + `extension` varchar(180) default NULL, + `cell_no` varchar(180) default NULL, + `last_login` varchar(180) default NULL, + `last_ip` varchar(180) default NULL, + `line_1` varchar(180) default NULL, + `line_2` varchar(180) default NULL, + `city` varchar(180) default NULL, + `district` varchar(180) default NULL, + `state` varchar(180) default NULL, + `country` varchar(180) default NULL, + `pin` varchar(180) default NULL, + `password` varchar(180) default NULL, + `new_password` varchar(180) default NULL, + `retype_new_password` varchar(180) default NULL, + `file_list` text, + `password_last_updated` date default NULL, + `birth_date` date default NULL, + `user_type` varchar(180) default NULL, + `gender` varchar(180) default NULL, + `occupation` varchar(180) default NULL, + `bio` text, + `messanger_status` varchar(180) default NULL, + `avatar` varchar(180) default NULL, + `social_points` int(11) default NULL, + `social_badge` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `interests` text, + `activities` text, + `unsubscribed` int(1) default NULL, + `restrict_ip` varchar(180) default NULL, + `registered` int(1) default NULL, + `login_after` int(11) default NULL, + `login_before` int(11) default NULL, + `user_image` varchar(180) default NULL, + `background_image` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `escalates_to` (`escalates_to`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProfile` +-- + +LOCK TABLES `tabProfile` WRITE; +/*!40000 ALTER TABLE `tabProfile` DISABLE KEYS */; +INSERT INTO `tabProfile` VALUES ('Administrator','2009-05-12 11:19:22','2010-08-08 17:24:25','Administrator','Administrator',0,NULL,NULL,NULL,NULL,1,NULL,'','','Administrator',NULL,NULL,'na',NULL,NULL,NULL,NULL,'2011-08-02 15:03:32','111.119.212.198',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'*4ACFE3202A5FF5CF467898FC58AAB1D615029441','','','','2009-05-29',NULL,'','',NULL,NULL,NULL,'images/user/avatar/av1.jpg',0,'White Belt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Guest','2009-07-09 13:01:51','2010-01-20 11:17:49','Administrator','Guest',0,NULL,NULL,NULL,NULL,1,0,'','','Guest',NULL,NULL,'Guest',NULL,NULL,NULL,NULL,'2011-05-28 09:55:57','120.63.3.237',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'password','','',NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,0,'White Belt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabProfile` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProject Activity Update` +-- + +DROP TABLE IF EXISTS `tabProject Activity Update`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProject Activity Update` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `update` text, + `hours` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProject Activity Update` +-- + +LOCK TABLES `tabProject Activity Update` WRITE; +/*!40000 ALTER TABLE `tabProject Activity Update` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProject Activity Update` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProject Activity` +-- + +DROP TABLE IF EXISTS `tabProject Activity`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProject Activity` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `project` varchar(180) default NULL, + `activity_name` varchar(180) default NULL, + `percent_complete` varchar(180) default NULL, + `last_update` date default NULL, + `last_update_by` varchar(180) default NULL, + `new_update` text, + `hours` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProject Activity` +-- + +LOCK TABLES `tabProject Activity` WRITE; +/*!40000 ALTER TABLE `tabProject Activity` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProject Activity` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProject Milestone` +-- + +DROP TABLE IF EXISTS `tabProject Milestone`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProject Milestone` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `milestone_date` date default NULL, + `milestone` text, + `status` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProject Milestone` +-- + +LOCK TABLES `tabProject Milestone` WRITE; +/*!40000 ALTER TABLE `tabProject Milestone` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProject Milestone` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProject` +-- + +DROP TABLE IF EXISTS `tabProject`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProject` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `project_name` varchar(180) default NULL, + `priority` varchar(180) default NULL, + `completion_date` date default NULL, + `is_active` varchar(180) default NULL, + `notes` text, + `status` varchar(180) default 'Open', + `project_type` varchar(180) default NULL, + `project_start_date` date default NULL, + `amended_from` varchar(180) default NULL, + `amemdment_date` date default NULL, + `customer` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `customer_address` text, + `contact_person` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `contact_no` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `customer_group` varchar(180) default NULL, + `act_completion_date` date default NULL, + `project_value` decimal(18,6) default NULL, + `gross_margin_value` decimal(18,6) default NULL, + `per_gross_margin` decimal(18,6) default NULL, + `est_material_cost` decimal(18,6) default NULL, + `trash_reason` text, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `status` (`status`), + KEY `customer` (`customer`), + KEY `customer_name` (`customer_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProject` +-- + +LOCK TABLES `tabProject` WRITE; +/*!40000 ALTER TABLE `tabProject` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabProject` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabProperty Setter` +-- + +DROP TABLE IF EXISTS `tabProperty Setter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabProperty Setter` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `doc_type` varchar(180) default NULL, + `default_value` varchar(180) default NULL, + `property_type` varchar(180) default NULL, + `select_property` varchar(180) default NULL, + `value` text, + `doc_name` varchar(180) default NULL, + `select_doctype` varchar(180) default NULL, + `doctype_or_field` varchar(180) default NULL, + `select_item` varchar(180) default NULL, + `property` varchar(180) default NULL, + `field_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `doc_type` (`doc_type`), + KEY `doc_name` (`doc_name`), + KEY `property` (`property`), + KEY `field_name` (`field_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabProperty Setter` +-- + +LOCK TABLES `tabProperty Setter` WRITE; +/*!40000 ALTER TABLE `tabProperty Setter` DISABLE KEYS */; +INSERT INTO `tabProperty Setter` VALUES ('Attendance-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Attendance',NULL,'Select',NULL,'ATT',NULL,'Attendance','DocField',NULL,'default','naming_series',NULL),('Attendance-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Attendance',NULL,'Select',NULL,'ATT',NULL,'Attendance','DocField',NULL,'options','naming_series',NULL),('C-Form-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'C-Form',NULL,'Select',NULL,'C-FORM/',NULL,'C-Form','DocField',NULL,'default','naming_series',NULL),('C-Form-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'C-Form',NULL,'Select',NULL,'C-FORM/',NULL,'C-Form','DocField',NULL,'options','naming_series',NULL),('Customer Issue-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer Issue',NULL,'Select',NULL,'CI/2010-2011/',NULL,'Customer Issue','DocField',NULL,'default','naming_series',NULL),('Customer Issue-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer Issue',NULL,'Select',NULL,'CI/2010-2011/',NULL,'Customer Issue','DocField',NULL,'options','naming_series',NULL),('Customer-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer',NULL,'Select',NULL,'CUST',NULL,'Customer','DocField',NULL,'default','naming_series',NULL),('Customer-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer',NULL,'Select',NULL,'CUST',NULL,'Customer','DocField',NULL,'options','naming_series',NULL),('Delivery Note-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Delivery Note',NULL,'Select',NULL,'DN',NULL,'Delivery Note','DocField',NULL,'default','naming_series',NULL),('Delivery Note-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Delivery Note',NULL,'Select',NULL,'DN',NULL,'Delivery Note','DocField',NULL,'options','naming_series',NULL),('Employee-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Employee',NULL,'Select',NULL,'EMP/',NULL,'Employee','DocField',NULL,'default','naming_series',NULL),('Employee-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Employee',NULL,'Select',NULL,'EMP/',NULL,'Employee','DocField',NULL,'options','naming_series',NULL),('Enquiry-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Opportunity',NULL,'Select',NULL,'ENQUIRY',NULL,'Enquiry','DocField',NULL,'default','naming_series',NULL),('Enquiry-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Opportunity',NULL,'Select',NULL,'ENQUIRY',NULL,'Enquiry','DocField',NULL,'options','naming_series',NULL),('Indent-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Request',NULL,'Select',NULL,'IDT',NULL,'Indent','DocField',NULL,'default','naming_series',NULL),('Indent-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Request',NULL,'Select',NULL,'IDT',NULL,'Indent','DocField',NULL,'options','naming_series',NULL),('Installation Note-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Installation Note',NULL,'Select',NULL,'IN',NULL,'Installation Note','DocField',NULL,'default','naming_series',NULL),('Installation Note-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Installation Note',NULL,'Select',NULL,'IN\nIN/10-11/',NULL,'Installation Note','DocField',NULL,'options','naming_series',NULL),('Journal Voucher-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Journal Voucher',NULL,'Select',NULL,'JV',NULL,'Journal Voucher','DocField',NULL,'default','naming_series',NULL),('Journal Voucher-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Journal Voucher',NULL,'Select',NULL,'JV',NULL,'Journal Voucher','DocField',NULL,'options','naming_series',NULL),('Lead-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Lead',NULL,'Select',NULL,'LEAD',NULL,'Lead','DocField',NULL,'default','naming_series',NULL),('Lead-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Lead',NULL,'Select',NULL,'LEAD',NULL,'Lead','DocField',NULL,'options','naming_series',NULL),('Packing Slip-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Packing Slip',NULL,'Select',NULL,'PS',NULL,'Packing Slip','DocField',NULL,'default','naming_series',NULL),('Packing Slip-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Packing Slip',NULL,'Select',NULL,'PS',NULL,'Packing Slip','DocField',NULL,'options','naming_series',NULL),('Payable Voucher-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Invoice',NULL,'Select',NULL,'BILL',NULL,'Payable Voucher','DocField',NULL,'default','naming_series',NULL),('Payable Voucher-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Invoice',NULL,'Select',NULL,'BILL',NULL,'Payable Voucher','DocField',NULL,'options','naming_series',NULL),('Purchase Order-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Order',NULL,'Select',NULL,'PO',NULL,'Purchase Order','DocField',NULL,'default','naming_series',NULL),('Purchase Order-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Order',NULL,'Select',NULL,'PO',NULL,'Purchase Order','DocField',NULL,'options','naming_series',NULL),('Purchase Receipt-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Receipt',NULL,'Select',NULL,'GRN',NULL,'Purchase Receipt','DocField',NULL,'default','naming_series',NULL),('Purchase Receipt-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Receipt',NULL,'Select',NULL,'GRN',NULL,'Purchase Receipt','DocField',NULL,'options','naming_series',NULL),('QA Inspection Report-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quality Inspection',NULL,'Select',NULL,'QAI/11-12/',NULL,'QA Inspection Report','DocField',NULL,'default','naming_series',NULL),('QA Inspection Report-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quality Inspection',NULL,'Select',NULL,'QAI/11-12/',NULL,'QA Inspection Report','DocField',NULL,'options','naming_series',NULL),('Quotation-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quotation',NULL,'Select',NULL,'QTN',NULL,'Quotation','DocField',NULL,'default','naming_series',NULL),('Quotation-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quotation',NULL,'Select',NULL,'QTN',NULL,'Quotation','DocField',NULL,'options','naming_series',NULL),('Receivable Voucher-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Invoice',NULL,'Select',NULL,'INV',NULL,'Receivable Voucher','DocField',NULL,'default','naming_series',NULL),('Receivable Voucher-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Invoice',NULL,'Select',NULL,'INV',NULL,'Receivable Voucher','DocField',NULL,'options','naming_series',NULL),('Sales Order-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Order',NULL,'Select',NULL,'SO',NULL,'Sales Order','DocField',NULL,'default','naming_series',NULL),('Sales Order-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Order',NULL,'Select',NULL,'SO',NULL,'Sales Order','DocField',NULL,'options','naming_series',NULL),('Stock Entry-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Stock Entry',NULL,'Select',NULL,'STE',NULL,'Stock Entry','DocField',NULL,'default','naming_series',NULL),('Stock Entry-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Stock Entry',NULL,'Select',NULL,'STE',NULL,'Stock Entry','DocField',NULL,'options','naming_series',NULL),('Supplier-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Supplier',NULL,'Select',NULL,'SUPP',NULL,'Supplier','DocField',NULL,'default','naming_series',NULL),('Supplier-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Supplier',NULL,'Select',NULL,'SUPP',NULL,'Supplier','DocField',NULL,'options','naming_series',NULL),('Support Ticket-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support Ticket',NULL,'Select',NULL,'SUP',NULL,'Support Ticket','DocField',NULL,'default','naming_series',NULL),('Support Ticket-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support Ticket',NULL,'Select',NULL,'SUP',NULL,'Support Ticket','DocField',NULL,'options','naming_series',NULL),('TDS Payment-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'TDS Payment',NULL,'Select',NULL,'TDSP',NULL,'TDS Payment','DocField',NULL,'default','naming_series',NULL),('TDS Payment-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'TDS Payment',NULL,'Select',NULL,'TDSP',NULL,'TDS Payment','DocField',NULL,'options','naming_series',NULL); +/*!40000 ALTER TABLE `tabProperty Setter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Invoice Advance` +-- + +DROP TABLE IF EXISTS `tabPurchase Invoice Advance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Invoice Advance` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `journal_voucher` varchar(180) default NULL, + `jv_detail_no` date default NULL, + `advance_amount` decimal(18,6) default NULL, + `allocated_amount` decimal(18,6) default NULL, + `tds_amount` decimal(18,6) default NULL, + `tds_allocated` decimal(18,6) default NULL, + `remarks` text, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Invoice Advance` +-- + +LOCK TABLES `tabPurchase Invoice Advance` WRITE; +/*!40000 ALTER TABLE `tabPurchase Invoice Advance` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Invoice Advance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Invoice Item` +-- + +DROP TABLE IF EXISTS `tabPurchase Invoice Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Invoice Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `description` text, + `item_group` varchar(180) default NULL, + `rate` decimal(18,6) default NULL, + `qty` decimal(18,6) default NULL, + `import_rate` decimal(18,6) default NULL, + `amount` decimal(18,6) default NULL, + `import_amount` decimal(18,6) default NULL, + `expense_head` varchar(180) default NULL, + `cost_center` varchar(180) default NULL, + `purchase_order` varchar(180) default NULL, + `po_detail` varchar(180) default NULL, + `purchase_receipt` varchar(180) default NULL, + `pr_detail` varchar(180) default NULL, + `item_tax_rate` text, + `page_break` int(1) default NULL, + `discount_rate` decimal(18,6) default NULL, + `import_ref_rate` decimal(18,6) default NULL, + `purchase_ref_rate` decimal(18,6) default NULL, + `project_name` varchar(180) default NULL, + `uom` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `item_group` (`item_group`), + KEY `purchase_order` (`purchase_order`), + KEY `po_detail` (`po_detail`), + KEY `purchase_receipt` (`purchase_receipt`), + KEY `pr_detail` (`pr_detail`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Invoice Item` +-- + +LOCK TABLES `tabPurchase Invoice Item` WRITE; +/*!40000 ALTER TABLE `tabPurchase Invoice Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Invoice Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Invoice` +-- + +DROP TABLE IF EXISTS `tabPurchase Invoice`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Invoice` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `credit_to` varchar(180) default NULL, + `supplier` varchar(180) default NULL, + `supplier_address` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `naming_series` varchar(180) default 'BILL', + `voucher_date` date default NULL, + `due_date` date default NULL, + `posting_date` date default NULL, + `amendment_date` date default NULL, + `purchase_order_main` varchar(180) default NULL, + `purchase_receipt_main` varchar(180) default NULL, + `net_total` decimal(18,6) default NULL, + `grand_total` decimal(18,6) default NULL, + `in_words` varchar(180) default NULL, + `purchase_other_charges` varchar(180) default NULL, + `total_tax` decimal(18,6) default NULL, + `bill_no` varchar(180) default NULL, + `bill_date` date default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `remarks` text, + `is_opening` varchar(180) default 'No', + `aging_date` date default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `cancel_reason` varchar(180) default NULL, + `mode_of_payment` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `tds_applicable` varchar(180) default NULL, + `tds_category` varchar(180) default NULL, + `tax_code` varchar(180) default NULL, + `rate` decimal(18,6) default NULL, + `ded_amount` decimal(18,6) default NULL, + `other_charges_added` decimal(18,6) default NULL, + `other_charges_deducted` decimal(18,6) default NULL, + `total_tds_on_voucher` decimal(18,6) default NULL, + `tds_amount_on_advance` decimal(18,6) default NULL, + `total_advance` decimal(18,6) default NULL, + `total_amount_to_pay` decimal(18,6) default NULL, + `outstanding_amount` decimal(18,6) default NULL, + `net_total_import` decimal(18,6) default NULL, + `other_charges_added_import` decimal(18,6) default NULL, + `other_charges_deducted_import` decimal(18,6) default NULL, + `grand_total_import` decimal(18,6) default NULL, + `in_words_import` varchar(180) default NULL, + `against_expense_account` text, + `supplier_name` text, + `project_name` varchar(180) default NULL, + `contact_email` text, + `contact_display` text, + `address_display` text, + `contact_mobile` text, + `contact_person` varchar(180) default NULL, + `write_off_amount` decimal(18,6) default NULL, + `write_off_account` varchar(180) default NULL, + `file_list` text, + `write_off_cost_center` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `credit_to` (`credit_to`), + KEY `voucher_date` (`voucher_date`), + KEY `due_date` (`due_date`), + KEY `posting_date` (`posting_date`), + KEY `bill_no` (`bill_no`), + KEY `bill_date` (`bill_date`), + KEY `is_opening` (`is_opening`), + KEY `company` (`company`), + KEY `fiscal_year` (`fiscal_year`), + KEY `outstanding_amount` (`outstanding_amount`), + KEY `parent` (`parent`), + KEY `project_name` (`project_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Invoice` +-- + +LOCK TABLES `tabPurchase Invoice` WRITE; +/*!40000 ALTER TABLE `tabPurchase Invoice` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Invoice` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Order Item Supplied` +-- + +DROP TABLE IF EXISTS `tabPurchase Order Item Supplied`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Order Item Supplied` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `reference_name` varchar(180) default NULL, + `bom_detail_no` varchar(180) default NULL, + `main_item_code` varchar(180) default NULL, + `rm_item_code` varchar(180) default NULL, + `stock_uom` varchar(180) default NULL, + `required_qty` decimal(18,6) default NULL, + `conversion_factor` decimal(18,6) default NULL, + `rate` decimal(18,6) default NULL, + `amount` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Order Item Supplied` +-- + +LOCK TABLES `tabPurchase Order Item Supplied` WRITE; +/*!40000 ALTER TABLE `tabPurchase Order Item Supplied` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Order Item Supplied` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Order Item` +-- + +DROP TABLE IF EXISTS `tabPurchase Order Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Order Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `schedule_date` date default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` text, + `qty` decimal(18,6) default '0.000000', + `uom` varchar(180) default NULL, + `purchase_rate` decimal(18,6) default '0.000000', + `amount` decimal(18,6) default '0.000000', + `import_rate` decimal(18,6) default NULL, + `import_amount` decimal(18,6) default NULL, + `warehouse` varchar(180) default NULL, + `prevdoc_doctype` varchar(180) default NULL, + `prevdoc_docname` varchar(180) default NULL, + `prevdoc_date` date default NULL, + `prevdoc_detail_docname` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `conversion_factor` decimal(18,6) default NULL, + `stock_uom` varchar(180) default NULL, + `stock_qty` decimal(18,6) default NULL, + `received_qty` decimal(18,6) default NULL, + `billed_qty` decimal(18,6) default '0.000000', + `item_tax_rate` text, + `page_break` int(1) default NULL, + `discount_rate` decimal(18,6) default NULL, + `import_ref_rate` decimal(18,6) default NULL, + `project_name` varchar(180) default NULL, + `purchase_ref_rate` decimal(18,6) default NULL, + `supplier_part_no` varchar(180) default NULL, + `supplier_quotation` varchar(180) default NULL, + `supplier_quotation_item` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `schedule_date` (`schedule_date`), + KEY `item_code` (`item_code`), + KEY `item_name` (`item_name`), + KEY `prevdoc_docname` (`prevdoc_docname`), + KEY `prevdoc_detail_docname` (`prevdoc_detail_docname`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Order Item` +-- + +LOCK TABLES `tabPurchase Order Item` WRITE; +/*!40000 ALTER TABLE `tabPurchase Order Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Order Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Order` +-- + +DROP TABLE IF EXISTS `tabPurchase Order`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Order` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default NULL, + `status` varchar(180) default NULL, + `supplier` varchar(180) default NULL, + `supplier_address` varchar(180) default NULL, + `contact_person` varchar(180) default NULL, + `per_received` decimal(18,6) default NULL, + `per_billed` decimal(18,6) default NULL, + `transaction_date` date default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `indent_no` varchar(180) default NULL, + `net_total_import` decimal(18,6) default NULL, + `grand_total_import` decimal(18,6) default NULL, + `rounded_total` decimal(18,6) default NULL, + `in_words` varchar(180) default NULL, + `in_words_import` varchar(180) default NULL, + `other_charges_added_import` decimal(18,6) default NULL, + `other_charges_deducted_import` decimal(18,6) default NULL, + `purchase_other_charges` varchar(180) default NULL, + `total_tax` decimal(18,6) default NULL, + `tc_name` varchar(180) default NULL, + `terms` text, + `ref_sq` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `instructions` text, + `payment_terms` text, + `remarks` text, + `cancel_reason` varchar(180) default NULL, + `other_charges_added` decimal(18,6) default NULL, + `other_charges_deducted` decimal(18,6) default NULL, + `net_total` decimal(18,6) default NULL, + `grand_total` decimal(18,6) default NULL, + `supplier_name` varchar(180) default NULL, + `project_name` varchar(180) default NULL, + `contact_no` varchar(180) default NULL, + `email` varchar(180) default NULL, + `supplier_qtn` varchar(180) default NULL, + `letter_head` varchar(180) default NULL, + `is_subcontracted` varchar(180) default 'No', + `address_display` text, + `contact_mobile` text, + `contact_display` text, + `contact_email` text, + `file_list` text, + `_user_tags` varchar(180) default NULL, + `supplier_quotation` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `supplier` (`supplier`), + KEY `transaction_date` (`transaction_date`), + KEY `company` (`company`), + KEY `fiscal_year` (`fiscal_year`), + KEY `parent` (`parent`), + KEY `project_name` (`project_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Order` +-- + +LOCK TABLES `tabPurchase Order` WRITE; +/*!40000 ALTER TABLE `tabPurchase Order` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Order` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Receipt Item Supplied` +-- + +DROP TABLE IF EXISTS `tabPurchase Receipt Item Supplied`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Receipt Item Supplied` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `reference_name` varchar(180) default NULL, + `bom_detail_no` varchar(180) default NULL, + `main_item_code` varchar(180) default NULL, + `rm_item_code` varchar(180) default NULL, + `description` varchar(180) default NULL, + `stock_uom` varchar(180) default NULL, + `required_qty` decimal(18,6) default NULL, + `consumed_qty` decimal(18,6) default NULL, + `conversion_factor` decimal(18,6) default NULL, + `rate` decimal(18,6) default NULL, + `amount` decimal(18,6) default NULL, + `current_stock` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Receipt Item Supplied` +-- + +LOCK TABLES `tabPurchase Receipt Item Supplied` WRITE; +/*!40000 ALTER TABLE `tabPurchase Receipt Item Supplied` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Receipt Item Supplied` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Receipt Item` +-- + +DROP TABLE IF EXISTS `tabPurchase Receipt Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Receipt Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` text, + `received_qty` decimal(18,6) default '0.000000', + `qty` decimal(18,6) default '0.000000', + `rejected_qty` decimal(18,6) default '0.000000', + `purchase_rate` decimal(18,6) default '0.000000', + `uom` varchar(180) default NULL, + `amount` decimal(18,6) default '0.000000', + `import_rate` decimal(18,6) default '0.000000', + `import_amount` decimal(18,6) default NULL, + `warehouse` varchar(180) default NULL, + `rejected_warehouse` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `schedule_date` date default NULL, + `serial_no` text, + `batch_no` varchar(180) default NULL, + `qa_no` varchar(180) default NULL, + `conversion_factor` decimal(18,6) default NULL, + `stock_uom` varchar(180) default NULL, + `stock_qty` decimal(18,6) default NULL, + `prevdoc_doctype` varchar(180) default NULL, + `prevdoc_docname` varchar(180) default NULL, + `prevdoc_date` date default NULL, + `rm_supp_cost` decimal(18,6) default NULL, + `item_tax_amount` decimal(18,6) default NULL, + `prevdoc_detail_docname` varchar(180) default NULL, + `billed_qty` decimal(18,6) default '0.000000', + `valuation_rate` decimal(18,6) default NULL, + `item_tax_rate` text, + `page_break` int(1) default NULL, + `discount_rate` decimal(18,6) default NULL, + `import_ref_rate` decimal(18,6) default NULL, + `project_name` varchar(180) default NULL, + `purchase_ref_rate` decimal(18,6) default NULL, + `rejected_serial_no` text, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `item_group` (`item_group`), + KEY `prevdoc_docname` (`prevdoc_docname`), + KEY `item_tax_amount` (`item_tax_amount`), + KEY `prevdoc_detail_docname` (`prevdoc_detail_docname`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Receipt Item` +-- + +LOCK TABLES `tabPurchase Receipt Item` WRITE; +/*!40000 ALTER TABLE `tabPurchase Receipt Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Receipt Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Receipt` +-- + +DROP TABLE IF EXISTS `tabPurchase Receipt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Receipt` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default 'GRN', + `status` varchar(180) default NULL, + `supplier` varchar(180) default NULL, + `supplier_address` varchar(180) default NULL, + `contact_person` varchar(180) default NULL, + `transporter_name` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `transaction_date` date default NULL, + `per_billed` decimal(18,6) default NULL, + `bill_no` varchar(180) default NULL, + `bill_date` date default NULL, + `range` varchar(180) default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `lr_no` varchar(180) default NULL, + `lr_date` date default NULL, + `challan_no` varchar(180) default NULL, + `challan_date` date default NULL, + `is_subcontracted` varchar(180) default 'No', + `purchase_order_no` varchar(180) default NULL, + `rejected_warehouse` varchar(180) default NULL, + `supplier_warehouse` varchar(180) default NULL, + `net_total` decimal(18,6) default NULL, + `grand_total` decimal(18,6) default NULL, + `rounded_total` decimal(18,6) default NULL, + `in_words` varchar(180) default NULL, + `purchase_other_charges` varchar(180) default NULL, + `total_tax` decimal(18,6) default NULL, + `tc_name` varchar(180) default NULL, + `terms` text, + `posting_date` date default NULL, + `posting_time` time default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `instructions` text, + `remarks` text, + `cancel_reason` varchar(180) default NULL, + `other_charges_added` decimal(18,6) default NULL, + `other_charges_deducted` decimal(18,6) default NULL, + `net_total_import` decimal(18,6) default NULL, + `other_charges_added_import` decimal(18,6) default NULL, + `other_charges_deducted_import` decimal(18,6) default NULL, + `grand_total_import` decimal(18,6) default NULL, + `in_words_import` varchar(180) default NULL, + `supplier_name` varchar(180) default NULL, + `project_name` varchar(180) default NULL, + `address_display` text, + `contact_email` text, + `contact_mobile` text, + `contact_display` text, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `supplier` (`supplier`), + KEY `transaction_date` (`transaction_date`), + KEY `posting_date` (`posting_date`), + KEY `company` (`company`), + KEY `fiscal_year` (`fiscal_year`), + KEY `parent` (`parent`), + KEY `project_name` (`project_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Receipt` +-- + +LOCK TABLES `tabPurchase Receipt` WRITE; +/*!40000 ALTER TABLE `tabPurchase Receipt` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Receipt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Request Item` +-- + +DROP TABLE IF EXISTS `tabPurchase Request Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Request Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `schedule_date` date default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` text, + `qty` decimal(18,6) default '0.000000', + `warehouse` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `lead_time_date` date default NULL, + `uom` varchar(180) default NULL, + `min_order_qty` decimal(18,6) default NULL, + `ordered_qty` decimal(18,6) default NULL, + `projected_qty` decimal(18,6) default NULL, + `page_break` int(1) default NULL, + `sales_order_no` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `item_name` (`item_name`), + KEY `item_group` (`item_group`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Request Item` +-- + +LOCK TABLES `tabPurchase Request Item` WRITE; +/*!40000 ALTER TABLE `tabPurchase Request Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Request Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Request` +-- + +DROP TABLE IF EXISTS `tabPurchase Request`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Request` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default 'IDT', + `status` varchar(180) default NULL, + `transaction_date` date default NULL, + `per_ordered` decimal(18,6) default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `requested_by` varchar(180) default NULL, + `sales_order_no` varchar(180) default NULL, + `remark` text, + `cancel_reason` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `tc_name` varchar(180) default NULL, + `terms` text, + `letter_head` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `transaction_date` (`transaction_date`), + KEY `company` (`company`), + KEY `fiscal_year` (`fiscal_year`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Request` +-- + +LOCK TABLES `tabPurchase Request` WRITE; +/*!40000 ALTER TABLE `tabPurchase Request` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Request` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Taxes and Charges Master` +-- + +DROP TABLE IF EXISTS `tabPurchase Taxes and Charges Master`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Taxes and Charges Master` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `title` varchar(180) default NULL, + `company` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + `is_default` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Taxes and Charges Master` +-- + +LOCK TABLES `tabPurchase Taxes and Charges Master` WRITE; +/*!40000 ALTER TABLE `tabPurchase Taxes and Charges Master` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Taxes and Charges Master` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabPurchase Taxes and Charges` +-- + +DROP TABLE IF EXISTS `tabPurchase Taxes and Charges`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabPurchase Taxes and Charges` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(180) default NULL, + `idx` int(8) default NULL, + `category` varchar(180) default NULL, + `add_deduct_tax` varchar(180) default 'Add', + `charge_type` varchar(180) default NULL, + `row_id` varchar(180) default NULL, + `item_wise_tax_detail` text, + `description` text, + `account_head` varchar(180) default NULL, + `cost_center` varchar(180) default NULL, + `rate` decimal(18,6) default NULL, + `tax_amount` decimal(18,6) default NULL, + `total` decimal(18,6) default NULL, + `total_tax_amount` decimal(18,6) default NULL, + `total_amount` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabPurchase Taxes and Charges` +-- + +LOCK TABLES `tabPurchase Taxes and Charges` WRITE; +/*!40000 ALTER TABLE `tabPurchase Taxes and Charges` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabPurchase Taxes and Charges` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabQuality Inspection Reading` +-- + +DROP TABLE IF EXISTS `tabQuality Inspection Reading`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabQuality Inspection Reading` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `specification` varchar(180) default NULL, + `value` varchar(180) default NULL, + `reading_1` varchar(180) default NULL, + `reading_2` varchar(180) default NULL, + `reading_3` varchar(180) default NULL, + `reading_4` varchar(180) default NULL, + `reading_5` varchar(180) default NULL, + `reading_6` varchar(180) default NULL, + `reading_7` varchar(180) default NULL, + `reading_8` varchar(180) default NULL, + `reading_9` varchar(180) default NULL, + `reading_10` varchar(180) default NULL, + `status` varchar(180) default 'Accepted', + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabQuality Inspection Reading` +-- + +LOCK TABLES `tabQuality Inspection Reading` WRITE; +/*!40000 ALTER TABLE `tabQuality Inspection Reading` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabQuality Inspection Reading` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabQuality Inspection` +-- + +DROP TABLE IF EXISTS `tabQuality Inspection`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabQuality Inspection` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `inspection_type` varchar(180) default NULL, + `report_date` date default NULL, + `item_code` varchar(180) default NULL, + `sample_size` decimal(18,6) default NULL, + `description` text, + `item_serial_no` varchar(180) default NULL, + `batch_no` varchar(180) default NULL, + `purchase_receipt_no` varchar(180) default NULL, + `delivery_note_no` varchar(180) default NULL, + `inspected_by` varchar(180) default NULL, + `remarks` text, + `verified_by` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `naming_series` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `report_date` (`report_date`), + KEY `item_code` (`item_code`), + KEY `purchase_receipt_no` (`purchase_receipt_no`), + KEY `delivery_note_no` (`delivery_note_no`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabQuality Inspection` +-- + +LOCK TABLES `tabQuality Inspection` WRITE; +/*!40000 ALTER TABLE `tabQuality Inspection` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabQuality Inspection` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabQuestion` +-- + +DROP TABLE IF EXISTS `tabQuestion`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabQuestion` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `question` text, + `answer` text, + `tag_1` varchar(180) default NULL, + `tag_2` varchar(180) default NULL, + `tag_3` varchar(180) default NULL, + `file_list` text, + `_users_voted` text, + `points` int(11) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabQuestion` +-- + +LOCK TABLES `tabQuestion` WRITE; +/*!40000 ALTER TABLE `tabQuestion` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabQuestion` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabQuotation Item` +-- + +DROP TABLE IF EXISTS `tabQuotation Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabQuotation Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` text, + `stock_uom` varchar(180) default NULL, + `qty` decimal(18,6) default '0.000000', + `ref_rate` decimal(18,6) default '0.000000', + `adj_rate` decimal(18,6) default '0.000000', + `export_rate` decimal(18,6) default '0.000000', + `export_amount` decimal(18,6) default '0.000000', + `base_ref_rate` decimal(18,6) default NULL, + `basic_rate` decimal(18,6) default '0.000000', + `amount` decimal(18,6) default '0.000000', + `item_group` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `item_tax_rate` text, + `page_break` int(1) default NULL, + `prevdoc_docname` varchar(180) default NULL, + `prevdoc_doctype` varchar(180) default NULL, + `customer_item_code` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `item_name` (`item_name`), + KEY `item_group` (`item_group`), + KEY `brand` (`brand`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabQuotation Item` +-- + +LOCK TABLES `tabQuotation Item` WRITE; +/*!40000 ALTER TABLE `tabQuotation Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabQuotation Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabQuotation Lost Reason` +-- + +DROP TABLE IF EXISTS `tabQuotation Lost Reason`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabQuotation Lost Reason` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `order_lost_reason` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabQuotation Lost Reason` +-- + +LOCK TABLES `tabQuotation Lost Reason` WRITE; +/*!40000 ALTER TABLE `tabQuotation Lost Reason` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabQuotation Lost Reason` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabQuotation` +-- + +DROP TABLE IF EXISTS `tabQuotation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabQuotation` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `order_type` varchar(180) default 'Sales', + `naming_series` varchar(180) default 'QTN', + `status` varchar(180) default 'Draft', + `quotation_to` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `lead` varchar(180) default NULL, + `lead_name` text, + `customer_address` varchar(180) default NULL, + `contact_person` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `transaction_date` date default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `enq_no` varchar(180) default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `price_list_name` varchar(180) default NULL, + `net_total` decimal(18,6) default NULL, + `charge` varchar(180) default NULL, + `other_charges_total` decimal(18,6) default NULL, + `grand_total` decimal(18,6) default NULL, + `tc_name` varchar(180) default NULL, + `terms` text, + `enq_det` text, + `source` varchar(180) default NULL, + `campaign` varchar(180) default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `cancel_reason` varchar(180) default NULL, + `order_lost_reason` text, + `customer_group` varchar(180) default NULL, + `contact_no` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `rounded_total` decimal(18,6) default NULL, + `in_words` varchar(180) default NULL, + `grand_total_export` decimal(18,6) default NULL, + `rounded_total_export` decimal(18,6) default NULL, + `in_words_export` varchar(180) default NULL, + `customer_mobile_no` varchar(180) default NULL, + `message` mediumtext, + `file_list` text, + `contact_by` varchar(180) default NULL, + `contact_date` date default NULL, + `last_contact_date` date default NULL, + `contact_date_ref` date default NULL, + `to_discuss` text, + `customer` varchar(180) default NULL, + `letter_head` varchar(180) default NULL, + `contact_display` text, + `contact_email` text, + `contact_mobile` text, + `address_display` text, + `price_list_currency` varchar(180) default NULL, + `plc_conversion_rate` decimal(18,6) default NULL, + `organization` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `transaction_date` (`transaction_date`), + KEY `parent` (`parent`), + KEY `customer` (`customer`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabQuotation` +-- + +LOCK TABLES `tabQuotation` WRITE; +/*!40000 ALTER TABLE `tabQuotation` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabQuotation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabRelated Page` +-- + +DROP TABLE IF EXISTS `tabRelated Page`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabRelated Page` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `page` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabRelated Page` +-- + +LOCK TABLES `tabRelated Page` WRITE; +/*!40000 ALTER TABLE `tabRelated Page` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabRelated Page` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabReport` +-- + +DROP TABLE IF EXISTS `tabReport`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabReport` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `json` text, + `ref_doctype` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabReport` +-- + +LOCK TABLES `tabReport` WRITE; +/*!40000 ALTER TABLE `tabReport` DISABLE KEYS */; +INSERT INTO `tabReport` VALUES ('Supplier Quotations','2012-10-02 13:17:57','2012-08-07 14:57:57','Administrator','Administrator',0,NULL,NULL,NULL,1,'{\"filters\":[[\"Supplier Quotation\",\"supplier\",\"like\",\"%%\"],[\"Supplier Quotation Item\",\"item_code\",\"like\",\"%%\"]],\"columns\":[[\"name\",\"Supplier Quotation\"],[\"supplier\",\"Supplier Quotation\"],[\"item_code\",\"Supplier Quotation Item\"],[\"description\",\"Supplier Quotation Item\"],[\"qty\",\"Supplier Quotation Item\"],[\"currency\",\"Supplier Quotation\"],[\"import_rate\",\"Supplier Quotation Item\"],[\"import_amount\",\"Supplier Quotation Item\"]],\"sort_by\":\"modified\",\"sort_order\":\"desc\",\"sort_by_next\":\"name\",\"sort_order_next\":\"desc\"}','Supplier Quotation',NULL); +/*!40000 ALTER TABLE `tabReport` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabRole` +-- + +DROP TABLE IF EXISTS `tabRole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabRole` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `role_name` varchar(180) default NULL, + `module` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabRole` +-- + +LOCK TABLES `tabRole` WRITE; +/*!40000 ALTER TABLE `tabRole` DISABLE KEYS */; +INSERT INTO `tabRole` VALUES ('Accounts Manager','2010-08-08 17:08:51','2009-03-19 14:57:46','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts Manager','Accounts',NULL),('Accounts User','2010-08-08 17:08:51','2010-04-08 12:05:21','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts User','Accounts',NULL),('Administrator','2010-08-08 17:08:51','2009-03-12 12:01:57','Administrator','Administrator',0,'','','',0,'Administrator','Core',NULL),('All','2010-08-08 17:08:51','2009-03-12 14:40:07','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'All','Core',NULL),('Analytics','2012-10-02 13:17:59','2012-10-02 13:17:59','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Analytics','Setup',NULL),('Blogger','2012-02-21 14:31:10','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Blogger','Website',NULL),('Customer','2010-08-08 17:08:51','2009-06-26 14:42:33','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer','Selling',NULL),('Employee','2011-02-21 09:23:53','2011-02-14 14:05:55','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Employee','HR',NULL),('Guest','2010-08-08 17:08:51','2010-01-13 16:45:40','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Guest','Core',NULL),('HR Manager','2010-08-08 17:08:51','2010-04-01 10:19:09','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'HR Manager','HR',NULL),('HR User','2010-08-08 17:08:51','2010-04-01 10:18:55','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'HR User','HR',NULL),('Maintenance Manager','2010-08-08 17:08:51','2010-07-22 15:19:33','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Maintenance Manager','Support',NULL),('Maintenance User','2010-08-08 17:08:51','2010-07-22 15:19:19','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Maintenance User','Support',NULL),('Material Manager','2010-08-08 17:08:51','2009-03-19 14:56:51','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Material Manager','Stock',NULL),('Material Master Manager','2010-08-08 17:08:51','2010-04-08 13:49:58','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Material Master Manager','Stock',NULL),('Material User','2010-08-08 17:08:51','2010-04-08 12:08:13','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Material User','Stock',NULL),('Partner','2010-08-08 17:08:51','2009-07-13 11:29:39','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Partner','Selling',NULL),('Production Manager','2010-08-08 17:08:51','2009-09-23 16:35:35','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Production Manager','Production',NULL),('Production User','2010-08-08 17:08:51','2009-09-23 16:36:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Production User','Production',NULL),('Projects User','2010-08-08 17:08:51','2010-05-08 09:40:07','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Projects User','Projects',NULL),('Purchase Manager','2010-08-08 17:08:51','2010-04-08 12:07:53','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Manager','Buying',NULL),('Purchase Master Manager','2010-08-08 17:08:51','2010-04-08 13:50:20','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Master Manager','Buying',NULL),('Purchase User','2010-08-08 17:08:51','2010-04-08 12:08:01','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase User','Buying',NULL),('Quality Manager','2010-08-08 17:08:51','2010-05-04 13:12:27','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quality Manager','Stock',NULL),('Report Manager','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Report Manager','Core',NULL),('Sales Manager','2010-08-08 17:08:51','2010-04-08 12:07:36','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Manager','Selling',NULL),('Sales Master Manager','2010-08-08 17:08:51','2010-04-08 13:50:11','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Master Manager','Selling',NULL),('Sales User','2010-08-08 17:08:51','2010-04-08 12:07:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales User','Selling',NULL),('Supplier','2010-08-08 17:08:51','2009-06-26 14:42:19','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Supplier','Buying',NULL),('Support Manager','2010-12-28 17:02:39','2010-12-28 15:17:40','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support Manager','Support',NULL),('Support Team','2010-12-28 17:02:39','2010-12-28 15:19:11','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support Team','Support',NULL),('System Manager','2010-08-08 17:08:51','2009-07-07 17:00:24','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'System Manager','Setup',NULL),('Website Manager','2012-02-21 14:31:10','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Website Manager','Website',NULL); +/*!40000 ALTER TABLE `tabRole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSMS Log` +-- + +DROP TABLE IF EXISTS `tabSMS Log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSMS Log` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `sender_name` varchar(180) default NULL, + `no_of_requested_sms` int(11) default NULL, + `no_of_sent_sms` int(11) default NULL, + `message` text, + `receiver_list` text, + `sent_on` date default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSMS Log` +-- + +LOCK TABLES `tabSMS Log` WRITE; +/*!40000 ALTER TABLE `tabSMS Log` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSMS Log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSMS Parameter` +-- + +DROP TABLE IF EXISTS `tabSMS Parameter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSMS Parameter` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `parameter` varchar(180) default NULL, + `value` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSMS Parameter` +-- + +LOCK TABLES `tabSMS Parameter` WRITE; +/*!40000 ALTER TABLE `tabSMS Parameter` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSMS Parameter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSMS Receiver` +-- + +DROP TABLE IF EXISTS `tabSMS Receiver`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSMS Receiver` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `customer_name` varchar(180) default NULL, + `receiver_name` varchar(180) default NULL, + `mobile_no` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSMS Receiver` +-- + +LOCK TABLES `tabSMS Receiver` WRITE; +/*!40000 ALTER TABLE `tabSMS Receiver` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSMS Receiver` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSalary Slip Deduction` +-- + +DROP TABLE IF EXISTS `tabSalary Slip Deduction`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSalary Slip Deduction` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `d_type` varchar(180) default NULL, + `d_amount` decimal(18,6) default NULL, + `d_depends_on_lwp` int(1) default NULL, + `d_modified_amount` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSalary Slip Deduction` +-- + +LOCK TABLES `tabSalary Slip Deduction` WRITE; +/*!40000 ALTER TABLE `tabSalary Slip Deduction` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSalary Slip Deduction` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSalary Slip Earning` +-- + +DROP TABLE IF EXISTS `tabSalary Slip Earning`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSalary Slip Earning` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `e_type` varchar(180) default NULL, + `e_amount` decimal(18,6) default NULL, + `e_modified_amount` decimal(18,6) default NULL, + `e_depends_on_lwp` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSalary Slip Earning` +-- + +LOCK TABLES `tabSalary Slip Earning` WRITE; +/*!40000 ALTER TABLE `tabSalary Slip Earning` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSalary Slip Earning` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSalary Slip` +-- + +DROP TABLE IF EXISTS `tabSalary Slip`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSalary Slip` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `fiscal_year` varchar(180) default NULL, + `month` varchar(180) default NULL, + `year` varchar(180) default NULL, + `employee` varchar(180) default NULL, + `flag` int(11) default NULL, + `employee_name` varchar(180) default NULL, + `department` varchar(180) default NULL, + `designation` varchar(180) default NULL, + `branch` varchar(180) default NULL, + `grade` varchar(180) default NULL, + `pf_no` varchar(180) default NULL, + `esic_no` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `total_days_in_month` varchar(180) default NULL, + `leave_without_pay` decimal(18,6) default NULL, + `bank_name` varchar(180) default NULL, + `bank_account_no` varchar(180) default NULL, + `payment_days` decimal(18,6) default NULL, + `email_check` int(1) default NULL, + `arrear_amount` decimal(18,6) default NULL, + `encashment_amount` decimal(18,6) default NULL, + `gross_pay` decimal(18,6) default NULL, + `total_deduction` decimal(18,6) default NULL, + `net_pay` decimal(18,6) default NULL, + `net_pay_in_words` varchar(180) default NULL, + `leave_encashment_amount` decimal(18,6) default NULL, + `total_in_words` varchar(180) default NULL, + `letter_head` varchar(180) default NULL, + `company` varchar(180) default NULL, + `rounded_total` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `month` (`month`), + KEY `year` (`year`), + KEY `parent` (`parent`), + KEY `employee` (`employee`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSalary Slip` +-- + +LOCK TABLES `tabSalary Slip` WRITE; +/*!40000 ALTER TABLE `tabSalary Slip` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSalary Slip` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSalary Structure Deduction` +-- + +DROP TABLE IF EXISTS `tabSalary Structure Deduction`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSalary Structure Deduction` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `d_type` varchar(180) default NULL, + `d_value` decimal(18,6) default NULL, + `d_modified_amt` decimal(18,6) default NULL, + `depend_on_lwp` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSalary Structure Deduction` +-- + +LOCK TABLES `tabSalary Structure Deduction` WRITE; +/*!40000 ALTER TABLE `tabSalary Structure Deduction` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSalary Structure Deduction` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSalary Structure Earning` +-- + +DROP TABLE IF EXISTS `tabSalary Structure Earning`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSalary Structure Earning` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `e_type` varchar(180) default NULL, + `e_value` decimal(18,6) default NULL, + `modified_value` decimal(18,6) default NULL, + `depend_on_lwp` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSalary Structure Earning` +-- + +LOCK TABLES `tabSalary Structure Earning` WRITE; +/*!40000 ALTER TABLE `tabSalary Structure Earning` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSalary Structure Earning` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSalary Structure` +-- + +DROP TABLE IF EXISTS `tabSalary Structure`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSalary Structure` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `employee` varchar(180) default NULL, + `backup_employee` varchar(180) default NULL, + `employee_name` varchar(180) default NULL, + `branch` varchar(180) default NULL, + `designation` varchar(180) default NULL, + `department` varchar(180) default NULL, + `grade` varchar(180) default NULL, + `is_active` varchar(180) default 'Yes', + `fiscal_year` varchar(180) default NULL, + `from_date` date default NULL, + `to_date` date default NULL, + `ctc` decimal(18,6) default NULL, + `total_earning` decimal(18,6) default NULL, + `total_deduction` decimal(18,6) default NULL, + `total` decimal(18,6) default NULL, + `log_info` mediumtext, + `net_pay` decimal(18,6) default NULL, + `company` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSalary Structure` +-- + +LOCK TABLES `tabSalary Structure` WRITE; +/*!40000 ALTER TABLE `tabSalary Structure` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSalary Structure` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales BOM Item` +-- + +DROP TABLE IF EXISTS `tabSales BOM Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales BOM Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `is_main_item` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + `description` text, + `uom` varchar(180) default NULL, + `qty` decimal(18,6) default NULL, + `rate` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales BOM Item` +-- + +LOCK TABLES `tabSales BOM Item` WRITE; +/*!40000 ALTER TABLE `tabSales BOM Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales BOM Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales BOM` +-- + +DROP TABLE IF EXISTS `tabSales BOM`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales BOM` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `new_item_code` varchar(180) default NULL, + `new_item_name` varchar(180) default NULL, + `new_item_brand` varchar(180) default NULL, + `description` text, + `stock_uom` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `price_list` varchar(180) default NULL, + `currency` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales BOM` +-- + +LOCK TABLES `tabSales BOM` WRITE; +/*!40000 ALTER TABLE `tabSales BOM` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales BOM` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Invoice Advance` +-- + +DROP TABLE IF EXISTS `tabSales Invoice Advance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Invoice Advance` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `journal_voucher` varchar(180) default NULL, + `jv_detail_no` varchar(180) default NULL, + `advance_amount` decimal(18,6) default NULL, + `allocated_amount` decimal(18,6) default NULL, + `remarks` text, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Invoice Advance` +-- + +LOCK TABLES `tabSales Invoice Advance` WRITE; +/*!40000 ALTER TABLE `tabSales Invoice Advance` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Invoice Advance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Invoice Item` +-- + +DROP TABLE IF EXISTS `tabSales Invoice Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Invoice Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `description` text, + `item_group` varchar(180) default NULL, + `qty` decimal(18,6) default NULL, + `ref_rate` decimal(18,6) default NULL, + `adj_rate` decimal(18,6) default NULL, + `export_rate` decimal(18,6) default NULL, + `export_amount` decimal(18,6) default NULL, + `base_ref_rate` decimal(18,6) default NULL, + `basic_rate` decimal(18,6) default NULL, + `amount` decimal(18,6) default NULL, + `income_account` varchar(180) default NULL, + `cost_center` varchar(180) default 'Purchase - TC', + `sales_order` varchar(180) default NULL, + `so_detail` varchar(180) default NULL, + `delivery_note` varchar(180) default NULL, + `dn_detail` varchar(180) default NULL, + `item_tax_rate` text, + `clear_pending` int(1) default NULL, + `warehouse` varchar(180) default NULL, + `delivered_qty` decimal(18,6) default NULL, + `serial_no` text, + `actual_qty` decimal(18,6) default NULL, + `stock_uom` varchar(180) default NULL, + `batch_no` varchar(180) default NULL, + `page_break` int(1) default NULL, + `barcode` varchar(180) default NULL, + `customer_item_code` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `sales_order` (`sales_order`), + KEY `so_detail` (`so_detail`), + KEY `delivery_note` (`delivery_note`), + KEY `dn_detail` (`dn_detail`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Invoice Item` +-- + +LOCK TABLES `tabSales Invoice Item` WRITE; +/*!40000 ALTER TABLE `tabSales Invoice Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Invoice Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Invoice` +-- + +DROP TABLE IF EXISTS `tabSales Invoice`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Invoice` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `debit_to` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `customer_address` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `naming_series` varchar(180) default 'INV', + `voucher_date` date default NULL, + `due_date` date default NULL, + `posting_date` date default NULL, + `amendment_date` date default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `amended_from` varchar(180) default NULL, + `sales_order_main` varchar(180) default NULL, + `delivery_note_main` varchar(180) default NULL, + `net_total` decimal(18,6) default NULL, + `rounded_total` decimal(18,6) default NULL, + `charge` varchar(180) default NULL, + `other_charges_total` decimal(18,6) default NULL, + `tc_name` varchar(180) default NULL, + `terms` text, + `price_list_name` varchar(180) default NULL, + `is_opening` varchar(180) default 'No', + `aging_date` date default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `source` varchar(180) default NULL, + `campaign` varchar(180) default NULL, + `cancel_reason` varchar(180) default NULL, + `remarks` text, + `mode_of_payment` varchar(180) default NULL, + `grand_total` decimal(18,6) default NULL, + `in_words` varchar(180) default NULL, + `total_advance` decimal(18,6) default NULL, + `outstanding_amount` decimal(18,6) default NULL, + `grand_total_export` decimal(18,6) default NULL, + `rounded_total_export` decimal(18,6) default NULL, + `in_words_export` varchar(180) default NULL, + `gross_profit` decimal(18,6) default NULL, + `gross_profit_percent` decimal(18,6) default NULL, + `sales_partner` varchar(180) default NULL, + `commission_rate` decimal(18,6) default NULL, + `total_commission` decimal(18,6) default NULL, + `against_income_account` text, + `project_name` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `letter_head` varchar(180) default NULL, + `is_pos` int(1) default NULL, + `update_stock` int(1) default '1', + `cash_bank_account` varchar(180) default NULL, + `posting_time` time default NULL, + `paid_amount` decimal(18,6) default NULL, + `write_off_amount` decimal(18,6) default NULL, + `write_off_cost_center` varchar(180) default NULL, + `write_off_account` varchar(180) default NULL, + `contact_display` text, + `address_display` text, + `contact_mobile` text, + `contact_email` text, + `contact_person` varchar(180) default NULL, + `customer_group` varchar(180) default NULL, + `end_date` date default NULL, + `recurring_id` varchar(180) default NULL, + `repeat_on_day_of_month` varchar(180) default NULL, + `c_form_applicable` varchar(180) default NULL, + `next_date` date default NULL, + `notification_email_address` text, + `convert_into_recurring_invoice` int(1) default NULL, + `c_form_no` varchar(180) default NULL, + `price_list_currency` varchar(180) default NULL, + `plc_conversion_rate` decimal(18,6) default NULL, + `file_list` text, + `write_off_outstanding_amount_automatically` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + `invoice_period_to_date` date default NULL, + `recurring_type` varchar(180) default NULL, + `invoice_period_from_date` date default NULL, + PRIMARY KEY (`name`), + KEY `debit_to` (`debit_to`), + KEY `posting_date` (`posting_date`), + KEY `parent` (`parent`), + KEY `project_name` (`project_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Invoice` +-- + +LOCK TABLES `tabSales Invoice` WRITE; +/*!40000 ALTER TABLE `tabSales Invoice` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Invoice` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Order Item` +-- + +DROP TABLE IF EXISTS `tabSales Order Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Order Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `description` text, + `stock_uom` varchar(180) default NULL, + `qty` decimal(18,6) default '0.000000', + `ref_rate` decimal(18,6) default '0.000000', + `adj_rate` decimal(18,6) default '0.000000', + `export_rate` decimal(18,6) default '0.000000', + `export_amount` decimal(18,6) default '0.000000', + `base_ref_rate` decimal(18,6) default NULL, + `basic_rate` decimal(18,6) default '0.000000', + `amount` decimal(18,6) default '0.000000', + `reserved_warehouse` varchar(180) default NULL, + `projected_qty` decimal(18,6) default '0.000000', + `delivered_qty` decimal(18,6) default '0.000000', + `billed_qty` decimal(18,6) default NULL, + `planned_qty` decimal(18,6) default NULL, + `produced_qty` decimal(18,6) default NULL, + `brand` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `prevdoc_docname` varchar(180) default NULL, + `item_tax_rate` text, + `page_break` int(1) default NULL, + `transaction_date` date default NULL, + `delivery_date` date default NULL, + `confirmation_date` date default NULL, + `actual_qty` decimal(18,6) default '0.000000', + `billed_amt` decimal(18,6) default NULL, + `customer_item_code` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `brand` (`brand`), + KEY `item_group` (`item_group`), + KEY `prevdoc_docname` (`prevdoc_docname`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Order Item` +-- + +LOCK TABLES `tabSales Order Item` WRITE; +/*!40000 ALTER TABLE `tabSales Order Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Order Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Order` +-- + +DROP TABLE IF EXISTS `tabSales Order`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Order` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `order_type` varchar(180) default 'Sales', + `naming_series` varchar(180) default 'SO', + `status` varchar(180) default 'Draft', + `customer_name` varchar(180) default NULL, + `customer_address` varchar(180) default NULL, + `contact_person` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `po_no` varchar(180) default NULL, + `po_date` date default NULL, + `transaction_date` date default NULL, + `delivery_date` date default NULL, + `per_delivered` decimal(18,6) default NULL, + `per_billed` decimal(18,6) default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `quotation_no` varchar(180) default NULL, + `quotation_date` date default NULL, + `price_list_name` varchar(180) default NULL, + `net_total` decimal(18,6) default NULL, + `charge` varchar(180) default NULL, + `other_charges_total` decimal(18,6) default NULL, + `grand_total` decimal(18,6) default NULL, + `tc_name` varchar(180) default NULL, + `terms` text, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `source` varchar(180) default NULL, + `campaign` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `customer_group` varchar(180) default NULL, + `contact_no` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `cancel_reason` varchar(180) default NULL, + `note` text, + `rounded_total` decimal(18,6) default NULL, + `in_words` varchar(180) default NULL, + `grand_total_export` decimal(18,6) default NULL, + `rounded_total_export` decimal(18,6) default NULL, + `in_words_export` varchar(180) default NULL, + `sales_partner` varchar(180) default NULL, + `commission_rate` decimal(18,6) default NULL, + `total_commission` decimal(18,6) default NULL, + `customer_mobile_no` varchar(180) default NULL, + `message` mediumtext, + `project_name` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `serial_no` varchar(180) default NULL, + `letter_head` varchar(180) default NULL, + `per_amt_billed` decimal(18,6) default NULL, + `ship_to` varchar(180) default NULL, + `ship_det_no` varchar(180) default NULL, + `shipping_address` text, + `billing_status` varchar(180) default NULL, + `contact_display` text, + `contact_email` text, + `contact_mobile` text, + `delivery_status` varchar(180) default NULL, + `address_display` text, + `shipping_address_name` varchar(180) default NULL, + `price_list_currency` varchar(180) default NULL, + `plc_conversion_rate` decimal(18,6) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `territory` (`territory`), + KEY `transaction_date` (`transaction_date`), + KEY `delivery_date` (`delivery_date`), + KEY `quotation_no` (`quotation_no`), + KEY `company` (`company`), + KEY `fiscal_year` (`fiscal_year`), + KEY `sales_partner` (`sales_partner`), + KEY `parent` (`parent`), + KEY `project_name` (`project_name`), + KEY `customer` (`customer`), + KEY `serial_no` (`serial_no`), + KEY `customer_group` (`customer_group`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Order` +-- + +LOCK TABLES `tabSales Order` WRITE; +/*!40000 ALTER TABLE `tabSales Order` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Order` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Partner` +-- + +DROP TABLE IF EXISTS `tabSales Partner`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Partner` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `partner_name` varchar(180) default NULL, + `partner_type` varchar(180) default NULL, + `commission_rate` decimal(18,6) default NULL, + `area_code` varchar(180) default NULL, + `mobile` varchar(180) default NULL, + `telephone` varchar(180) default NULL, + `email` varchar(180) default NULL, + `address` mediumtext, + `address_line1` varchar(180) default NULL, + `address_line2` varchar(180) default NULL, + `city` varchar(180) default NULL, + `country` varchar(180) default NULL, + `state` varchar(180) default NULL, + `pincode` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `distribution_id` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `partner_name` (`partner_name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Partner` +-- + +LOCK TABLES `tabSales Partner` WRITE; +/*!40000 ALTER TABLE `tabSales Partner` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Partner` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Person` +-- + +DROP TABLE IF EXISTS `tabSales Person`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Person` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `sales_person_name` varchar(180) default NULL, + `parent_sales_person` varchar(180) default NULL, + `is_group` varchar(180) default NULL, + `department` varchar(180) default NULL, + `designation` varchar(180) default NULL, + `mobile_no` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `country` varchar(180) default NULL, + `state` varchar(180) default NULL, + `city` varchar(180) default NULL, + `territory` varchar(180) default NULL, + `lft` int(11) default NULL, + `rgt` int(11) default NULL, + `old_parent` varchar(180) default NULL, + `distribution_id` varchar(180) default NULL, + `employee` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `lft` (`lft`), + KEY `rgt` (`rgt`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Person` +-- + +LOCK TABLES `tabSales Person` WRITE; +/*!40000 ALTER TABLE `tabSales Person` DISABLE KEYS */; +INSERT INTO `tabSales Person` VALUES ('All Sales Persons','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'All Sales Persons','','Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,2,'',NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabSales Person` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Taxes and Charges Master` +-- + +DROP TABLE IF EXISTS `tabSales Taxes and Charges Master`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Taxes and Charges Master` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `title` varchar(180) default NULL, + `company` varchar(180) default NULL, + `is_default` int(1) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Taxes and Charges Master` +-- + +LOCK TABLES `tabSales Taxes and Charges Master` WRITE; +/*!40000 ALTER TABLE `tabSales Taxes and Charges Master` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Taxes and Charges Master` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Taxes and Charges` +-- + +DROP TABLE IF EXISTS `tabSales Taxes and Charges`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Taxes and Charges` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(180) default NULL, + `idx` int(8) default NULL, + `charge_type` varchar(180) default NULL, + `account_head` varchar(180) default NULL, + `cost_center_other_charges` varchar(180) default NULL, + `description` text, + `rate` decimal(18,6) default NULL, + `tax_amount` decimal(18,6) default NULL, + `total` decimal(18,6) default NULL, + `row_id` varchar(180) default NULL, + `item_wise_tax_detail` text, + `total_tax_amount` decimal(18,6) default NULL, + `total_amount` decimal(18,6) default NULL, + `included_in_print_rate` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `parenttype` (`parenttype`), + KEY `account_head` (`account_head`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Taxes and Charges` +-- + +LOCK TABLES `tabSales Taxes and Charges` WRITE; +/*!40000 ALTER TABLE `tabSales Taxes and Charges` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Taxes and Charges` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales Team` +-- + +DROP TABLE IF EXISTS `tabSales Team`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales Team` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(180) default NULL, + `idx` int(8) default NULL, + `sales_person` varchar(180) default NULL, + `sales_designation` varchar(180) default NULL, + `contact_no` varchar(180) default NULL, + `allocated_percentage` decimal(18,6) default NULL, + `allocated_amount` decimal(18,6) default NULL, + `incentives` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `sales_person` (`sales_person`), + KEY `parent` (`parent`), + KEY `parenttype` (`parenttype`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales Team` +-- + +LOCK TABLES `tabSales Team` WRITE; +/*!40000 ALTER TABLE `tabSales Team` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales Team` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSales and Purchase Return Item` +-- + +DROP TABLE IF EXISTS `tabSales and Purchase Return Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSales and Purchase Return Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `detail_name` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + `description` varchar(180) default NULL, + `qty` varchar(180) default NULL, + `returned_qty` varchar(180) default NULL, + `uom` varchar(180) default NULL, + `rate` decimal(18,6) default NULL, + `serial_no` text, + `batch_no` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSales and Purchase Return Item` +-- + +LOCK TABLES `tabSales and Purchase Return Item` WRITE; +/*!40000 ALTER TABLE `tabSales and Purchase Return Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSales and Purchase Return Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSandbox` +-- + +DROP TABLE IF EXISTS `tabSandbox`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSandbox` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `amendment_date` date default NULL, + `test_link` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `test_data` varchar(180) default NULL, + `test_date` date default NULL, + `test_select` varchar(180) default NULL, + `test_text` text, + `to_be_dropped` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSandbox` +-- + +LOCK TABLES `tabSandbox` WRITE; +/*!40000 ALTER TABLE `tabSandbox` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSandbox` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSearch Criteria` +-- + +DROP TABLE IF EXISTS `tabSearch Criteria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSearch Criteria` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `disabled` int(1) default NULL, + `module` varchar(180) default NULL, + `criteria_name` varchar(180) default NULL, + `description` mediumtext, + `doc_type` varchar(180) default NULL, + `filters` text, + `columns` text, + `parent_doc_type` varchar(180) default NULL, + `add_cond` text, + `add_col` text, + `add_tab` text, + `dis_filters` text, + `group_by` varchar(180) default NULL, + `graph_series` varchar(180) default NULL, + `graph_values` varchar(180) default NULL, + `report_script` text, + `server_script` text, + `sort_order` varchar(180) default NULL, + `sort_by` varchar(180) default NULL, + `custom_query` text, + `standard` varchar(180) default NULL, + `page_len` int(11) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`), + KEY `standard` (`standard`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSearch Criteria` +-- + +LOCK TABLES `tabSearch Criteria` WRITE; +/*!40000 ALTER TABLE `tabSearch Criteria` DISABLE KEYS */; +INSERT INTO `tabSearch Criteria` VALUES ('accounts_payable','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Accounts Payable',NULL,'GL Entry','{\'GL EntryIs Cancelled\':\'\',\'GL EntryFiscal Year\':\'\',\'GL EntryCompany\':\'\',\'Purchase InvoiceAging Based On\':\'Posting Date\',\'GL EntryRange 1\':\'30\',\'GL EntryRange 2\':\'45\',\'GL EntryRange 3\':\'60\',\'GL EntryRange 4\':\'90\'}','GL EntryPosting Date,GL EntryAccount,GL EntryAgainst Voucher,GL EntryVoucher No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabGL Entry`.`name`',NULL,'Yes',NULL,NULL),('accounts_receivable','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Accounts Receivable',NULL,'GL Entry','{\'GL EntryIs Cancelled\':\'No\',\'GL EntryFiscal Year\':\'\',\'GL EntryCompany\':\'\',\'GL EntryRange 1\':\'30\',\'GL EntryRange 2\':\'45\',\'GL EntryRange 3\':\'60\',\'GL EntryRange 4\':\'90\'}','GL EntryPosting Date,GL EntryTransaction Date,GL EntryAccount,GL EntryAgainst Voucher,GL EntryVoucher No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ASC','`tabGL Entry`.`name`',NULL,'Yes',NULL,NULL),('amc_summary','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Support','AMC Summary',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoStatus\':\'\'}','Serial NoTerritory',NULL,'`tabSerial No`.`territory` is not null\n`tabSerial No`.`territory` != \'\'\n`tabSerial No`.`status` not in (\'In Store\', \'Scrapped\')',NULL,NULL,NULL,'`tabSerial No`.`cost_center`',NULL,NULL,NULL,NULL,'ASC','`tabSerial No`.`cost_center`',NULL,'Yes',50,NULL),('bank_clearance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Bank Clearance report','Bank Clearance report','Journal Voucher Detail','{\'Journal VoucherSubmitted\':1,\'Journal VoucherVoucher Type\':\'\',\'Journal VoucherIs Opening\':\'\',\'Journal VoucherFiscal Year\':\'\',\'Journal VoucherCompany\':\'\',\'Journal VoucherTDS Applicable\':\'\',\'Journal VoucherTDS Category\':\'\'}','Journal VoucherID,Journal Voucher DetailAccount,Journal Voucher DetailDebit,Journal Voucher DetailCredit,Journal VoucherClearance Date,Journal VoucherCheque No,Journal VoucherCheque Date,Journal VoucherVoucher Date,Journal VoucherPosting Date,Journal Voucher DetailAgainst Payable,Journal Voucher DetailAgainst Receivable','Journal Voucher',NULL,NULL,NULL,'fiscal_year',NULL,NULL,NULL,NULL,NULL,'DESC','ID',NULL,'Yes',50,NULL),('bank_reconciliation_statement','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Bank Reconciliation Statement',NULL,'Journal Voucher Detail','{\'Journal VoucherSubmitted\':1,\'Journal VoucherVoucher Type\':\'\',\'Journal VoucherIs Opening\':\'\',\'Journal VoucherCompany\':\'\',\'Journal VoucherTDS Applicable\':\'\',\'Journal VoucherTDS Category\':\'\'}','Journal VoucherID,Journal VoucherPosting Date,Journal VoucherCheque No,Journal VoucherCheque Date,Journal VoucherClearance Date,Journal Voucher DetailAccount,Journal Voucher DetailDebit,Journal Voucher DetailCredit,Journal Voucher DetailAgainst Account','Journal Voucher','(`tabJournal Voucher Detail`.credit >= 0 or `tabJournal Voucher Detail`.credit is null)\n(`tabJournal Voucher`.cheque_no is not null or `tabJournal Voucher`.cheque_no != \'\')\n(ifnull(`tabJournal Voucher`.clearance_date, \'0000-00-00\') >\'%(clearance_date1)s\' or `tabJournal Voucher`.clearance_date is null or `tabJournal Voucher`.clearance_date = \'0000-00-00\')\n(`tabJournal Voucher`.posting_date <= \'%(clearance_date1)s\')',NULL,NULL,'clearance_date\nfiscal_year',NULL,NULL,NULL,NULL,NULL,'DESC','`tabJournal Voucher`.`name`',NULL,'Yes',50,NULL),('budget_variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Budget Variance Report',NULL,'Budget Detail','{\'Budget DetailFiscal Year\':\'\'}',NULL,'Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabCost Center`.`lft`',NULL,'Yes',50,NULL),('business_associate_commission_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Business Associate Commission Report','Track total commission given to your Business Associate','Sales Invoice','{\'Sales InvoiceSubmitted\':1}','Sales InvoiceBusiness Associate',NULL,'`tabSales Invoice`.`net_total` > 0\n`tabSales Invoice`.`total_commission` > 0','SUM(`tabSales Invoice`.`total_commission`) AS \'Total Commission\'\nSUM(`tabSales Invoice`.`net_total`) AS \'Net Total\'\n((SUM(`tabSales Invoice`.`total_commission`) / SUM(`tabSales Invoice`.`net_total`)) * 100) AS \'Average Commission Rate\'',NULL,NULL,'`tabSales Invoice`.sales_partner',NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('collection_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Collection Report',NULL,'Journal Voucher Detail','{\'Journal VoucherSaved\':1,\'Journal VoucherSubmitted\':1,\'Journal VoucherVoucher Type\':\'\',\'Journal VoucherIs Opening\':\'\',\'Journal VoucherCompany\':\'\',\'Journal VoucherTDS Applicable\':\'\',\'Journal VoucherTDS Category\':\'\',\'GL EntryRange 1\':\'30\',\'GL EntryRange 2\':\'45\',\'GL EntryRange 3\':\'60\',\'GL EntryRange 4\':\'90\'}','Journal VoucherID,Journal VoucherPosting Date,Journal VoucherCompany,Journal VoucherCheque No,Journal VoucherCheque Date,Journal Voucher DetailAccount,Journal Voucher DetailCredit,Journal Voucher DetailAgainst Receivable,Journal Voucher DetailIs Advance','Journal Voucher',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabJournal Voucher`.`name`',NULL,'Yes',NULL,NULL),('consumption_against_production','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Production','Consumption Against Production',NULL,'Stock Entry Detail','{\'Stock EntrySubmitted\':1,\'Stock EntryPurpose\':\'Production Order\',\'Stock EntryProcess\':\'\'}','Stock EntryID,Stock EntryProduction Order,Stock EntryProcess,Stock EntryPosting Date,Stock EntryCompany,Stock Entry DetailSource Warehouse,Stock Entry DetailTarget Warehouse,Stock Entry DetailFG Item,Stock Entry DetailItem Code,Stock Entry DetailDescription,Stock Entry DetailReqd Qty,Stock Entry DetailTransfer Quantity','Stock Entry','`tabProduction Order`.name = `tabStock Entry`.production_order','`tabProduction Order`.consider_sa_items','`tabProduction Order`',NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabStock Entry`.`name`',NULL,'Yes',50,NULL),('cost_center_wise_expense','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Cost Center wise Expense',NULL,'GL Entry','{\'GL EntryVoucher Type\':\'\',\'GL EntryIs Cancelled\':\'\',\'GL EntryFiscal Year\':\'\',\'GL EntryCompany\':\'\'}',NULL,NULL,NULL,NULL,NULL,'fiscal_year',NULL,NULL,NULL,NULL,NULL,'DESC','`tabGL Entry`.`name`',NULL,'Yes',50,NULL),('creditors_ledger','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Creditor\'s Ledger',NULL,'GL Entry','{\'GL EntryVoucher Type\':\'\',\'GL EntryIs Cancelled\':\'\',\'GL EntryIs Opening\':\'\',\'GL EntryFiscal Year\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('customer_address_contact','2012-07-12 19:25:48','2012-05-23 18:17:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Customer Address Contact',NULL,'Customer','{\'CustomerSaved\':1,\'CustomerSubmitted\':1}','CustomerID,CustomerCustomer Name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yes',50,NULL),('customer_issues','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Support','Customer Issues',NULL,'Customer Issue','{\'Customer IssueSaved\':1,\'Customer IssueSubmitted\':1,\'Customer IssueStatus\':\'\',\'Customer IssueFiscal Year\':\'\'}','Customer IssueID,Customer IssueStatus,Customer IssueComplaint Date,Customer IssueComplaint,Customer IssueItem Code,Customer IssueItem Name,Customer IssueAllocated To,Customer IssueAllocated On,Customer IssueResolved By,Customer IssueResolution Date,Customer IssueCustomer Name,Customer IssueFiscal Year',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabCustomer Issue`.`name`',NULL,'Yes',50,NULL),('custom_test2','2010-12-14 17:56:44','2010-11-19 16:00:07','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','custom test',NULL,'Delivery Note Item','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteProject Name\':\'Test Project1\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NotePosting Date,Delivery NotePosting Time,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemDescription,Delivery NoteProject Name,Delivery Note ItemQuantity,Delivery Note ItemRate*,Delivery Note ItemAmount*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','DESC','`tabDelivery Note`.`name`','','No',50,NULL),('custom_test3','2010-12-14 17:56:44','2010-11-19 16:00:07','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','custom test',NULL,'Delivery Note Item','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteProject Name\':\'Test Project1\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NotePosting Date,Delivery NotePosting Time,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemDescription,Delivery NoteProject Name,Delivery Note ItemQuantity,Delivery Note ItemRate*,Delivery Note ItemAmount*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','DESC','`tabDelivery Note`.`name`','','No',50,NULL),('custom_test4','2010-12-14 17:56:44','2010-11-19 16:00:07','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','custom test',NULL,'Delivery Note Item','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteProject Name\':\'Test Project1\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NotePosting Date,Delivery NotePosting Time,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemDescription,Delivery NoteProject Name,Delivery Note ItemQuantity,Delivery Note ItemRate*,Delivery Note ItemAmount*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','DESC','`tabDelivery Note`.`name`','','No',50,NULL),('debtors_ledger','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Debtor\'s Ledger',NULL,'GL Entry','{\'GL EntryVoucher Type\':\'\',\'GL EntryIs Cancelled\':\'No\',\'GL EntryIs Opening\':\'\',\'GL EntryFiscal Year\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('delivered_items_to_be_install','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Delivered Items to be Install','Delivered Items to be Install','Delivery Note Item','{\'Delivery NoteSaved\':1,\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NoteStatus,Delivery NoteCustomer,Delivery NoteCustomer Name,Delivery NoteContact Person,Delivery NoteVoucher Date,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemQuantity,Delivery Note ItemInstalled Qty,Delivery Note% Installed','Delivery Note','`tabDelivery Note Item`.`qty` > ifnull(`tabDelivery Note Item`.`installed_qty`, 0)','(`tabDelivery Note Item`.`qty`- ifnull(`tabDelivery Note Item`.`installed_qty`, 0)) AS \'Pending to Install\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('delivered_items_to_be_install1','2010-09-01 15:47:57','2010-08-30 12:59:18','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Selling','Delivered Items to be Install','Delivered Items to be Install','Delivery Note Item','{\'Delivery NoteSaved\':1,\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NoteStatus,Delivery NoteCustomer,Delivery NoteCustomer Name,Delivery NoteContact Person,Delivery NoteVoucher Date,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemQuantity,Delivery Note ItemInstalled Qty,Delivery Note% Installed','Delivery Note','','(`tabDelivery Note Item`.`qty`- `tabDelivery Note Item`.`installed_qty`) AS \'Pending to Install\'','',NULL,NULL,NULL,NULL,'report.customize_filters = function() {\n this.filter_fields_dict[\'Delivery Note\'+FILTER_SEP +\'Company\'].df[\'report_default\'] = sys_defaults.company;\n this.filter_fields_dict[\'Delivery Note\'+FILTER_SEP +\'Fiscal Year\'].df[\'report_default\'] = sys_defaults.fiscal_year;\n}',NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('delivery_note_itemwise_pending_to_bill','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Selling','Delivery Note Itemwise Pending To Bill',NULL,'Delivery Note Item','{\'Delivery NoteSaved\':1,\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteCompany Name\':\'\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NoteOwner,Delivery NoteStatus,Delivery NoteCustomer Name,Delivery NoteVoucher Date,Delivery Note% Billed,Delivery NotePosting Date,Delivery NoteCompany Name,Delivery NoteFiscal Year,Delivery Note ItemItem Code,Delivery Note ItemAgainst Document No,Delivery Note ItemDocument Type,Delivery Note ItemAgainst Document Detail No','Delivery Note','`tabDelivery Note`.status != \'Stopped\'\nCASE WHEN `tabDelivery Note`.`per_billed` IS NULL OR `tabDelivery Note`.per_billed = \'\' THEN 0 < 100 ELSE `tabDelivery Note`.per_billed <100 END','SUM(`tabDelivery Note Item`.`qty` - `tabDelivery Note Item`.`billed_qty`) AS \'Pending Qty\'\nSUM((`tabDelivery Note Item`.`qty` - `tabDelivery Note Item`.`billed_qty`) * `tabDelivery Note Item`.`basic_rate`) AS \'Pending Amount\'',NULL,NULL,'`tabDelivery Note Item`.item_code, `tabDelivery Note`.`name`',NULL,NULL,NULL,NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('draft_sales_orders','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Selling','Draft Sales Orders','List of Open Sales orders filtered by period, customer and other details','Sales Order','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'Draft\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderStatus,Sales OrderSales Order Date,Sales OrderCustomer,Sales OrderP.O. No,Sales OrderGrand Total',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('employees_birthday','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'HR','Employee\'s Birthday',NULL,'Employee','{\'EmployeeSaved\':1,\'EmployeeGender\':\'\',\'EmployeeMonth of Birth\':\'May\',\'EmployeeStatus\':\'\'}','EmployeeID,EmployeeEmployee Name,EmployeeDepartment,EmployeeGender,EmployeeDate of Birth,EmployeeMonth of Birth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabEmployee`.`name`',NULL,'Yes',50,NULL),('employee_appraisals','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Employee Appraisals',NULL,'Appraisal','{\'AppraisalSaved\':1,\'AppraisalSubmitted\':1,\'AppraisalStatus\':\'\',\'AppraisalFiscal Year\':\'\'}','AppraisalID,AppraisalStatus,AppraisalEmployee,AppraisalEmployee Name,AppraisalStart Date,AppraisalEnd Date,AppraisalApprover,AppraisalTotal Score',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabAppraisal`.`name`',NULL,'Yes',50,NULL),('employee_information','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Employee Information',NULL,'Employee','{\'EmployeeSaved\':1,\'EmployeeSubmitted\':1,\'EmployeeGender\':\'\',\'EmployeeMonth of Birth\':\'\',\'EmployeeStatus\':\'\'}','EmployeeID,EmployeeEmployee Name,EmployeeEmployee Number,EmployeeDate of Joining,EmployeeGender,EmployeeDate of Birth,EmployeeEmployment Type,EmployeeScheduled Confirmation Date,EmployeeContract End Date,EmployeeStatus,EmployeeBranch,EmployeeDepartment,EmployeeDesignation,EmployeeGrade,EmployeeReports to,EmployeeEmail (By company),EmployeeBank Name,EmployeeRelieving Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabEmployee`.`name`',NULL,'Yes',50,NULL),('employee_leave_balance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Employee Leave Balance Report','Employeewise Balance Leave Report','Employee','{\'EmployeeSaved\':1,\'EmployeeSubmitted\':1,\'EmployeeGender\':\'\',\'EmployeeMonth of Birth\':\'\',\'EmployeeStatus\':\'Active\'}','EmployeeID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ASC','`tabEmployee`.`name`',NULL,'Yes',100,NULL),('enquiry-quotations_to_be_sent','2010-08-08 17:09:31','2010-07-16 13:29:58','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','Enquiry-Quotations to be sent',NULL,'Opportunity','{}','OpportunityID,OpportunityOwner',NULL,'`tabQuotation`.enq_no!=`tabOpportunity`.name\n',NULL,'tabQuotation',NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabOpportunity`.`name`',NULL,'Yes',50,NULL),('enquiry-to_follow_up','2010-09-01 15:47:57','2010-08-30 12:08:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','Enquiry-To follow up',NULL,'Opportunity','{\'OpportunityFiscal Year\':\'\'}','OpportunityID,OpportunityOwner,OpportunityCompany,OpportunityFiscal Year',NULL,'`tabOpportunity`.name=`tabQuotation`.enq_no\n`tabOpportunity`.docstatus=1\n`tabQuotation`.status=\'Submitted\'','',NULL,NULL,NULL,NULL,NULL,'report.customize_filters = function() {\n\n this.filter_fields_dict[\'Opportunity\'+FILTER_SEP +\'Company\'].df[\'report_default\'] = sys_defaults.company;\n this.filter_fields_dict[\'Opportunity\'+FILTER_SEP +\'Fiscal Year\'].df[\'report_default\'] = sys_defaults.fiscal_year;\n}',NULL,'DESC','`tabOpportunity`.`name`',NULL,'Yes',50,NULL),('expense_claims','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Expense Claims',NULL,'Expense Claim','{\'Expense ClaimSaved\':1,\'Expense ClaimSubmitted\':1,\'Expense ClaimApproval Status\':\'\',\'Expense ClaimFiscal Year\':\'\'}','Expense ClaimID,Expense ClaimApproval Status,Expense ClaimFrom Employee,Expense ClaimEmployee Name,Expense ClaimApprover,Expense ClaimPosting Date,Expense ClaimTotal Claimed Amount,Expense ClaimTotal Sanctioned Amount',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabExpense Claim`.`name`',NULL,'Yes',50,NULL),('general_ledger','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','General Ledger',NULL,'GL Entry','{\'GL EntryFrom Posting Datelower\':\'\',\'GL EntryTo Posting Dateupper\':\'\',\'GL EntryVoucher Type\':\'\',\'GL EntryIs Cancelled\':\'No\',\'GL EntryIs Opening\':\'\',\'GL EntryFiscal Year\':\'\',\'GL EntryCompany\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabGL Entry`.`name`',NULL,'Yes',50,NULL),('gross_profit','2012-10-02 13:17:59','2012-09-24 14:11:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Gross Profit','Invoice wise','Delivery Note Item','{\"Delivery Note\\u0001Submitted\":1,\"Delivery Note\\u0001Status\":[],\"Delivery Note\\u0001Fiscal Year\":[]}','Delivery NoteID,Delivery NotePosting Date,Delivery NotePosting Time,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemDescription,Delivery Note ItemWarehouse,Delivery NoteProject Name,Delivery Note ItemQuantity,Delivery Note ItemRate*,Delivery Note ItemAmount*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('indent-purchase_order_to_be_made','2010-08-08 17:09:32','2010-05-13 17:37:18','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','Indent-Purchase Order to be made',NULL,'Purchase Request','{\'Purchase RequestSubmitted\':1,\'Purchase RequestStatus\':\'Submitted\',\'Purchase RequestFiscal Year\':\'\'}','Purchase RequestID,Purchase RequestPurchase Request Date,Purchase RequestRequested By,Purchase RequestOwner,Purchase Request% Ordered',NULL,'`tabPurchase Request`.status=\'Submitted\'\nifnull(`tabPurchase Request`.per_ordered,0)<100',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Request`.`name`',NULL,'Yes',50,NULL),('indent-to_be_submitted','2010-08-08 17:09:32','2010-05-13 17:38:49','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','Indent-To be submitted',NULL,'Purchase Request','{\'Purchase RequestSaved\':1,\'Purchase RequestStatus\':\'Draft\',\'Purchase RequestFiscal Year\':\'\'}','Purchase RequestID,Purchase RequestOwner,Purchase RequestPurchase Request Date,Purchase RequestRemarks',NULL,'`tabPurchase Request`.status=\'Draft\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Request`.`name`',NULL,'Yes',50,NULL),('invoices-overdue','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Invoices-Overdue',NULL,'Sales Invoice','{\'Sales InvoiceSaved\':1,\'Sales InvoiceSubmitted\':1,\'Sales InvoiceIs Opening\':\'\',\'Sales InvoiceFiscal Year\':\'\'}','Sales InvoiceID,Sales InvoiceDebit To,Sales InvoiceVoucher Date,Sales InvoiceDue Date,Sales InvoiceOutstanding Amount',NULL,'`tabSales Invoice`.due_date 0 or `tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.billed_qty, 0) > 0)\n`tabPurchase Order`.status != \"Stopped\"','(CASE WHEN (`tabPurchase Order Item`.qty- ifnull(`tabPurchase Order Item`.billed_qty, 0) > 0 ) THEN (`tabPurchase Order Item`.qty-ifnull(`tabPurchase Order Item`.billed_qty, 0) ) ELSE 0 END) AS \"Pending To Bill\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Order`.`name`',NULL,'Yes',50,NULL),('pending_po_items_to_receive','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Buying','Pending PO Items To Receive','Pending PO Items To Receive','Purchase Order Item','{\'Purchase OrderSaved\':1,\'Purchase OrderSubmitted\':1,\'Purchase OrderStatus\':\'\',\'Purchase OrderFiscal Year\':\'\'}','Purchase OrderID,Purchase OrderSupplier,Purchase OrderSupplier Name,Purchase OrderStatus,Purchase OrderPO Date,Purchase OrderFiscal Year,Purchase Order ItemPurchase Request No,Purchase Order ItemItem Code,Purchase Order ItemItem Name,Purchase Order ItemDescription,Purchase Order ItemQuantity,Purchase Order ItemUOM,Purchase Order ItemReceived Qty','Purchase Order','`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0) > 0 \n`tabPurchase Order`.status != \"Stopped\"','`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0) AS \"Pending Quantity To Receive\"\n(`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0)) * `tabPurchase Order Item`.purchase_rate AS \"Pending Amount To Receive\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Order`.`name`',NULL,'Yes',50,NULL),('production_orders_in_process','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Production','Production Orders In Process',NULL,'Production Order','{\'Production OrderSubmitted\':1,\'Production OrderOrigin\':\'\',\'Production OrderStatus\':\'\',\'Production OrderConsider SA Items\':\'\',\'Production OrderFiscal Year\':\'\'}','Production OrderID,Production OrderOrigin,Production OrderStatus,Production OrderPosting Date,Production OrderProduction Item,Production OrderBOM No,Production OrderDescription,Production OrderStock UOM,Production OrderQty,Production OrderProduced Qty,Production OrderFG Warehouse,Production OrderWIP Warehouse,Production OrderConsider SA Items,Production OrderFiscal Year,Production OrderCompany',NULL,'`tabProduction Order`.qty > `tabProduction Order`.produced_qty',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabProduction Order`.`name`',NULL,'Yes',50,NULL),('projectwise_delivered_qty_and_costs','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Delivered Qty and Costs',NULL,'Delivery Note Item','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'Submitted\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NoteProject Name,Delivery NoteCustomer,Delivery NoteCustomer Name,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemQuantity,Delivery NotePosting Date,Delivery Note% Billed,Delivery Note ItemAmount*','Delivery Note','IFNULL(`tabDelivery Note`.`project_name`,\"\")!=\"\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('projectwise_pending_qty_and_costs','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Pending Qty and Costs',NULL,'Sales Order Item','{\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'Submitted\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderProject Name,Sales OrderCustomer,Sales OrderCustomer Name,Sales Order ItemItem Code,Sales Order ItemItem Name,Sales Order% Delivered,Sales Order% Billed,Sales OrderSales Order Date,Sales OrderExpected Delivery Date','Sales Order','`tabSales Order Item`.`qty` > `tabSales Order Item`.`delivered_qty`\nIFNULL(`tabSales Order`.`project_name`,\"\")!=\"\"\n`tabSales Order`.order_type = \'Sales\'','SUM(`tabSales Order Item`.`qty` - `tabSales Order Item`.`delivered_qty`) AS \'Pending Qty\'\nSUM((`tabSales Order Item`.`qty` - `tabSales Order Item`.`delivered_qty`)* `tabSales Order Item`.basic_rate) AS \'Pending Amount\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('projectwise_purchase_details','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Purchase Details',NULL,'Purchase Order','{\'Purchase OrderStatus\':\'\',\'Purchase OrderFiscal Year\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('projectwise_sales_details','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Sales Details',NULL,'Sales Order','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('projectwise_sales_orders','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Sales Orders',NULL,'Sales Order','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderStatus,Sales OrderProject Name,Sales OrderCustomer,Sales OrderSales Order Date,Sales OrderExpected Delivery Date,Sales OrderQuotation No,Sales Order% Delivered,Sales Order% Billed,Sales OrderGrand Total*',NULL,'ifnull(`tabSales Order`.project_name ,\'\') != \'\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('projectwise_tracking_of_all_stock_movements','2010-12-14 17:52:48','2010-11-30 13:42:06','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Development','Projectwise Tracking of All Stock Movements',NULL,'Project','{\'ProjectStatus\':\'Open\'}','ProjectID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'report.customize_filters = function() {\n this.hide_all_filters();\n this.filter_fields_dict[\'Project\'+FILTER_SEP +\'ID\'].df.filter_hide = 0;\n this.filter_fields_dict[\'Project\'+FILTER_SEP +\'ID\'].df.in_first_page = 1;\n}\n\nthis.mytabs.items[\'Select Columns\'].hide();\nthis.mytabs.items[\'More Filters\'].hide();','cols=[]\ntotal_budget, total_grn, total_deliveries, total_stock_entries, total_agg, agg = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0\n\ncols = [[\'Project Desc\',\'Data\',\'200px\',\'\'], [\'Project Value\',\'Currency\',\'150px\',\'\'], [\'Cost of all GRN\',\'Currency\',\'150px\',\'\'], [\'Cost of all Deliveries\',\'Currency\',\'150px\',\'\'], [\'Cost of all Stock Entries\',\'Currency\',\'150px\',\'\'], [\'Aggregate value of all Movements\',\'Currency\',\'200px\',\'\']]\n\nfor c in cols:\n colnames.append(c[0])\n coltypes.append(c[1])\n colwidths.append(c[2])\n coloptions.append(c[3])\n col_idx[c[0]] = len(colnames)-1\n \nfor r in res: \n proj = sql(\"select notes, project_value from `tabProject` where name= %s\", r[0])\n \n r.append(proj and proj[0][0] or \'\')\n r.append(flt(proj and proj[0][1] or 0))\n \n pr = sql(\"SELECT SUM(net_total) FROM `tabPurchase Receipt` WHERE project_name= %s AND docstatus = 1 Group By project_name\", r[0])\n pr = pr and pr[0][0] or 0\n r.append(flt(pr))\n \n #dn = sql(\"SELECT SUM(net_total) FROM `tabDelivery Note` WHERE project_name= %s AND docstatus = 1 Group By project_name\", r[0])\n #dn = dn and dn[0][0] or 0 \n #r.append(flt(dn))\n sle = sql(\"select actual_qty, valuation_rate from `tabStock Ledger Entry` where voucher_no in (SELECT name FROM `tabDelivery Note` WHERE project_name= \'%s\' AND docstatus = 1 Group By project_name) AND voucher_type = \'Delivery Note\' AND is_cancelled = \'No\'\"% (r[0]), as_dict=1)\n calc_cost = 0\n for y in sle:\n cost = 0\n cost = abs(y[\'actual_qty\']) * y[\'valuation_rate\']\n calc_cost = calc_cost + cost\n r.append(flt(calc_cost))\n \n si = sql(\"SELECT SUM(total_amount) FROM `tabStock Entry` WHERE project_name= %s AND docstatus = 1 Group By project_name\", r[0])\n si = si and si[0][0] or 0 \n r.append(flt(si))\n \n agg = flt(pr+dn+si)/4\n r.append(flt(agg))\n \n total_budget += flt(r[col_idx[\'Project Value\']])\n total_grn += flt(r[col_idx[\'Cost of all GRN\']])\n total_deliveries += flt(r[col_idx[\'Cost of all Deliveries\']])\n total_stock_entries += flt(r[col_idx[\'Cost of all Stock Entries\']])\n total_agg += flt(r[col_idx[\'Aggregate value of all Movements\']])\n \ntotal = [\'\', \'Total\', total_budget, total_grn, total_deliveries, total_stock_entries, total_agg]\nres.append(total)','DESC','`tabProject`.`name`',NULL,'Yes',50,NULL),('purchase_in_transit','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Buying','Purchase in Transit','List of PR whose posting date is after PV posting date','Purchase Invoice Item','{\"Purchase Invoice\\u0001Submitted\":1,\"Purchase Invoice\\u0001Is Opening\":[\"\"],\"Purchase Invoice\\u0001Fiscal Year\":[\"\"]}','Purchase InvoiceID,Purchase InvoicePosting Date,Purchase InvoiceCredit To,Purchase Invoice ItemQty,Purchase Invoice ItemAmount,Purchase Invoice ItemPur Order,Purchase Invoice ItemPur Receipt','Purchase Invoice','`tabPurchase Invoice Item`.`purchase_receipt` = `tabPurchase Receipt`.`name`\n`tabPurchase Receipt`.`posting_date` >= \'%(pr_posting_date)s\'\n`tabPurchase Receipt`.`posting_date` <= \'%(pr_posting_date1)s\'\n`tabPurchase Receipt`.`posting_date` > `tabPurchase Invoice`.`posting_date`','`tabPurchase Receipt`.`posting_date` AS \'PR Posting Date\'','`tabPurchase Receipt`','`tabPurchase Receipt`.`pr_posting_date`',NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Invoice`.`name`',NULL,'Yes',50,NULL),('purchase_register','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Purchase Register',NULL,'Purchase Invoice','{\'Purchase InvoiceSubmitted\':1}','Purchase InvoiceID,Purchase InvoiceVoucher Date,Purchase InvoicePosting Date,Purchase InvoiceCredit To,Purchase InvoiceExpense Head',NULL,'`tabPurchase Invoice`.is_opening != \'Yes\'\n`tabPurchase Invoice`.name not like \'OP/%\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yes',NULL,NULL),('salary_register','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Salary Register',NULL,'Salary Slip','{\'Salary SlipSubmitted\':1,\'Salary SlipMonth\':\'\'}','Salary SlipID,Salary SlipEmployee,Salary SlipEmployee Name,Salary SlipYear,Salary SlipMonth,Salary SlipTotal days in month,Salary SlipPayment days',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSalary Slip`.`name`',NULL,'Yes',50,NULL),('salary_slips','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'HR','Salary Slips',NULL,'Salary Slip','{\'Salary SlipSaved\':1,\'Salary SlipSubmitted\':1}','Salary SlipID,Salary SlipFiscal Year,Salary SlipMonth,Salary SlipEmployee,Salary SlipEmployee Name,Salary SlipDepartment,Salary SlipDesignation,Salary SlipBranch,Salary SlipGrade,Salary SlipPF No.,Salary SlipESIC No.,Salary SlipLeave Without Pay,Salary SlipBank Name,Salary SlipBank Account No.,Salary SlipPayment days,Salary SlipArrear Amount,Salary SlipEncashment Amount,Salary SlipGross Pay,Salary SlipTotal Deduction,Salary SlipNet Pay',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSalary Slip`.`name`',NULL,'Yes',50,NULL),('salary_structure_details','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'HR','Salary Structure Details',NULL,'Salary Structure','{\'Salary StructureBranch\':\'\',\'Salary StructureDesignation\':\'\',\'Salary StructureDepartment\':\'\',\'Salary StructureGrade\':\'\',\'Salary StructureIs Active\':\'\'}','Salary StructureID,Salary StructureEmployee,Salary StructureFrom Date,Salary StructureTo Date,Salary StructureFiscal Year,Salary StructureBranch,Salary StructureDesignation,Salary StructureDepartment,Salary StructureGrade,Salary StructureIs Active,Salary StructureTotal Earning,Salary StructureTotal Deduction,Salary StructureCTC,Salary StructureTotal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSalary Structure`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_booking_&_delivery_summary','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Orderwise Booking & Delivery Summary','Sales Orderwise Booking & Delivery Summary','Sales Order Item','{\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderStatus,Sales Order% Billed,Sales OrderSales Order Date,Sales OrderCustomer,Sales OrderCustomer Name,Sales OrderTerritory','Sales Order',NULL,'SUM(CASE WHEN `tabSales Order`.`status` = \'Stopped\' THEN (`tabSales Order Item`.`delivered_qty` * `tabSales Order Item`.`basic_rate`) ELSE (`tabSales Order Item`.`qty` * `tabSales Order Item`.`basic_rate`) END) AS \'Booking Total\'\nSUM(`tabSales Order Item`.`delivered_qty` * `tabSales Order Item`.`basic_rate`) AS \'Delivered Amount\'',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_pending_amount_to_bill','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Orderwise Pending Amount To Bill','Sales Orderwise Pending Amount To Bill','Sales Order Item','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderCompany Name\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderCustomer,Sales OrderCustomer Address,Sales OrderStatus,Sales Order% Delivered,Sales Order% Billed,Sales OrderCompany Name,Sales OrderSales Order Date,Sales OrderNet Total,Sales OrderZone,Sales OrderTerritory,Sales OrderEmail Id','Sales Order','`tabSales Order`.status != \"Stopped\"\n`tabSales Order`.order_type!=\"Maintenance\"','SUM((`tabSales Order Item`.`qty` - ifnull(`tabSales Order Item`.`billed_qty`, 0)) * `tabSales Order Item`.`basic_rate`) AS \"Pending Amount\"',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_pending_amount_to_bill1','2010-09-01 15:47:57','2010-08-30 12:56:53','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','Sales Orderwise Pending Amount To Bill','Sales Orderwise Pending Amount To Bill','Sales Order Item','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderCompany Name\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderCustomer,Sales OrderCustomer Address,Sales OrderStatus,Sales Order% Delivered,Sales Order% Billed,Sales OrderCompany Name,Sales OrderSales Order Date,Sales OrderNet Total,Sales OrderZone,Sales OrderTerritory,Sales OrderEmail Id','Sales Order','`tabSales Order`.status != \'Stopped\'\n`tabSales Order`.order_type!=\'Maintenance\'','SUM((`tabSales Order Item`.`qty` - `tabSales Order Item`.`billed_qty`) * `tabSales Order Item`.`basic_rate`) AS \'Pending Amount\'',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,'report.customize_filters = function() {\n this.filter_fields_dict[\'Sales Order\'+FILTER_SEP +\'Company\'].df[\'report_default\'] = sys_defaults.company;\n this.filter_fields_dict[\'Sales Order\'+FILTER_SEP +\'Fiscal Year\'].df[\'report_default\'] = sys_defaults.fiscal_year;\n}',NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_pending_qty_to_deliver','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Orderwise Pending Qty To Deliver','Sales Orderwise Pending Qty To Deliver','Sales Order Item','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderCustomer,Sales OrderCustomer Name,Sales OrderCustomer Address,Sales OrderStatus,Sales Order% Delivered,Sales Order% Billed,Sales OrderSales Order Date,Sales OrderTerritory,Sales OrderEmail Id','Sales Order','`tabSales Order`.status != \"Stopped\"\n`tabSales Order Item`.`qty` > ifnull(`tabSales Order Item`.`delivered_qty`, 0)','SUM(`tabSales Order Item`.`qty` - ifnull(`tabSales Order Item`.`delivered_qty`, 0)) AS \"Pending Qty\"',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_pending_qty_to_deliver1','2010-09-01 15:47:57','2010-08-30 12:50:55','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','Sales Orderwise Pending Qty To Deliver','Sales Orderwise Pending Qty To Deliver','Sales Order Item','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderCustomer,Sales OrderCustomer Name,Sales OrderCustomer Address,Sales OrderStatus,Sales Order% Delivered,Sales Order% Billed,Sales OrderSales Order Date,Sales OrderTerritory,Sales OrderEmail Id','Sales Order','`tabSales Order`.status != \'Stopped\'\n`tabSales Order Item`.`qty` > `tabSales Order Item`.`delivered_qty`','SUM(`tabSales Order Item`.`qty` - `tabSales Order Item`.`delivered_qty`) AS \'Pending Qty\'',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,NULL,'','DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_order_pending_items','2012-05-18 12:00:33','2012-05-18 08:30:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Order Pending Items','Sales Order Pending Items','Sales Order Item','{\"Sales Order\\u0001Submitted\":1,\"Sales Order\\u0001Fiscal Year\":[],\"Sales Order\\u0001Status\":[]}','Sales OrderID,Sales OrderSales Order Date,Sales OrderCustomer,Sales Order ItemItem Code,Sales Order ItemItem Name,Sales Order ItemDescription,Sales Order ItemQuantity,Sales Order ItemDelivered Qty','Sales Order','(`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0) > 0 or `tabSales Order Item`.qty - ifnull(`tabSales Order Item`.billed_qty, 0) > 0)\n`tabSales Order`.status != \"Stopped\"','(`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0)) AS \"Qty To Deliver\"\n(`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0))*`tabSales Order Item`.basic_rate AS \"Amount To Deliver\"\n(`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.billed_qty, 0))*`tabSales Order Item`.basic_rate AS \"Amount To Bill\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_persons_target_variance_item_group_wise','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Persons Target Variance (Item Group wise)',NULL,'Target Detail','{\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\',\'Target DetailFiscal Year\':\'\'}',NULL,'Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabTarget Detail`.`target_amount`',NULL,'Yes',50,NULL),('sales_personwise_transaction_summary','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Personwise Transaction Summary',NULL,'Sales Person','{\'Sales PersonSaved\':1,\'Sales PersonSubmitted\':1,\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\'}','Sales PersonID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Person`.`name`',NULL,'Yes',50,NULL),('sales_register','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Sales Register',NULL,'Sales Invoice','{\'Sales InvoiceSubmitted\':1,\'Sales InvoiceIs Opening\':\'\'}','Sales InvoiceID,Sales InvoicePosting Date,Sales InvoiceDebit To',NULL,'ifnull(`tabSales Invoice`.`is_opening`, \'No\') = \'No\'\n`tabAccount`.name =`tabSales Invoice`.debit_to\n`tabCustomer`.`name` = `tabAccount`.`master_name`','`tabAccount`.`parent_account` AS \'Parent Account\'\n`tabCustomer`.`territory` AS \'Territory\'\n`tabCustomer`.`customer_details` AS \'Customer Details\'','`tabAccount`\n`tabCustomer`','fiscal_year',NULL,NULL,NULL,NULL,NULL,'DESC','`Parent Account`',NULL,'Yes',50,NULL),('serial_no-amc_expiring_this_month','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Serial No-AMC expiring this month',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoSubmitted\':1,\'Serial NoStatus\':\'\',\'Serial NoWarranty Status\':\'\'}','Serial NoID,Serial NoStatus,Serial NoAMC Expiry Date,Serial NoCustomer Name',NULL,'`tab Serial No`.month(amc_expiry_date)=month(now()) \n`tab Serial No`.year(amc_expiry_date)=year(now())',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSerial No`.`name`',NULL,'Yes',50,NULL),('serial_no-warranty_expiring_this_month','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Serial No-Warranty expiring this month',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoSubmitted\':1,\'Serial NoStatus\':\'Issued\',\'Serial NoMaintenance Status\':\'\'}','Serial NoID,Serial NoStatus,Serial NoWarranty Expiry Date,Serial NoCustomer Name',NULL,'`tab Serial No`.docstatus!=2\n`tab Serial No`.maintenance_status=\'Under Warranty\'\n`tab Serial No`.status!=\'Scrapped\'\n`tab Serial No`.status!=\'Not in Use\'\n`tab Serial No`.month(ifnull(warranty_expiry_date,0)) = month(now()) \n`tab Serial No`.yearmonth(ifnull(warranty_expiry_date,0)) = year(now())',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSerial No`.`name`',NULL,'Yes',50,NULL),('shortage_to_purchase_request','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Stock','Shortage To Purchase Request',NULL,'Item','{\'ItemSaved\':1}','ItemID,ItemItem Name,ItemDescription,ItemLead Time Days',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabItem`.`name`',NULL,'Yes',50,NULL),('stock_aging_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Stock','Stock Aging Report',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoSubmitted\':1,\'Serial NoStatus\':\'In Store\',\'Serial NoMaintenance Status\':\'\'}','Serial NoID,Serial NoItem Code,Serial NoDescription,Serial NoItem Group,Serial NoPurchase Date',NULL,'`tabSerial No`.status = \'In Store\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSerial No`.`name`',NULL,'Yes',1000,NULL),('stock_ledger','2012-10-02 13:17:58','2012-09-13 15:38:45','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Stock','Stock Ledger',NULL,'Stock Ledger Entry','{\"Stock Ledger Entry\\u0001Warehouse Type\":[\"\"],\"Stock Ledger Entry\\u0001Company\":[\"\"],\"Stock Ledger Entry\\u0001Is Cancelled\":[\"\"],\"Stock Ledger Entry\\u0001Is Stock Entry\":[\"\"]}','Stock Ledger EntryItem Code,Stock Ledger EntryWarehouse,Stock Ledger EntryPosting Date,Stock Ledger EntryPosting Time,Stock Ledger EntryActual Quantity,Stock Ledger EntryBin Actual Qty After Transaction,Stock Ledger EntryVoucher Type,Stock Ledger EntryVoucher No',NULL,'`tabItem`.`name` = `tabStock Ledger Entry`.`item_code`','`tabItem`.`item_name`\n`tabItem`.`description`','`tabItem`',NULL,NULL,NULL,NULL,NULL,NULL,'ASC','`tabStock Ledger Entry`.`posting_date`, `tabStock Ledger Entry`.`posting_time`, `tabStock Ledger Entry`.`name`',NULL,'Yes',50,NULL),('stock_level','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Stock','Stock Level',NULL,'Bin','{}','BinWarehouse,BinItem Code,BinUOM,BinReserved Quantity,BinActual Quantity,BinOrdered Quantity,BinPlanned Qty,BinProjected Qty,BinQuantity Requested for Purchase,BinValuation Rate,BinStock Value',NULL,'`tabItem`.name = `tabBin`.item_code','`tabItem`.`item_name`\n`tabItem`.`description`','`tabItem`',NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabBin`.`warehouse`',NULL,'Yes',50,NULL),('stock_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Stock','Stock Report',NULL,'Stock Ledger Entry','{\'Stock Ledger EntryIs Cancelled\':\'\',\'Stock Ledger EntryIs Stock Entry\':\'\'}','Stock Ledger EntryID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabStock Ledger Entry`.`name`',NULL,'Yes',50,NULL),('target_variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,0,'Selling','Target Variance Report',NULL,'Target Detail','{\'Sales PersonSaved\':1,\'Sales PersonSubmitted\':1,\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\',\'Target DetailFiscal Year\':\'\'}','Sales PersonID,Sales PersonOwner,Sales PersonSales Person,Sales PersonCountry,Sales PersonState,Target DetailItem Group,Target DetailFiscal Year,Target DetailTarget Amount','Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('tds_return','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','TDS Return',NULL,'TDS Payment Detail','{\'TDS PaymentSubmitted\':1}',NULL,'TDS Payment',NULL,NULL,NULL,'fiscal_year',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yes',NULL,NULL),('territories_target_variance_item_group_wise','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Territories Target Variance (Item Group wise)',NULL,'Target Detail','{\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\',\'Target DetailFiscal Year\':\'\'}',NULL,'Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabTarget Detail`.`target_amount`',NULL,'Yes',50,NULL),('territory_sales_-_variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Territory Sales - Variance Report',NULL,'Territory','{\'TerritoryState\':\'\',\'TerritoryBased On\':\'Sales Order\',\'TerritoryFiscal Year\':\'2009-2010\',\'TerritoryCompany\':\'Alpha Company\',\'TerritoryPeriod\':\'Quarterly\'}','TerritoryID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','ID',NULL,'Yes',50,NULL),('test_so2','2010-12-14 17:56:44','2010-11-12 11:03:44','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','Test SO',NULL,'Sales Order Item','{\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales Order ItemItem Code,Sales Order ItemDescription','Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','columns = [[\'DN No\',\'Data\',\'250px\',\'\']]\n\nfor c in columns:\n colnames.append(c[0])\n coltypes.append(c[1])\n colwidths.append(c[2])\n coloptions.append(c[3])\n col_idx[c[0]] = len(colnames)-1\n\n\nfor r in res:\n det = sql(\"select parent from `tabDelivery Note Item` where item_code = %s and prevdoc_docname = %s\" , (r[col_idx[\'Item Code\']], r[col_idx[\'ID\']]))\n dn = \'\'\n for d in det:\n dn += cstr(d[0])+NEWLINE\n r.append(cstr(dn))','DESC','`tabSales Order`.`name`','','No',50,NULL),('test_so3','2010-12-14 17:56:44','2010-11-12 11:03:44','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','Test SO',NULL,'Sales Order Item','{\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales Order ItemItem Code,Sales Order ItemDescription','Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','columns = [[\'DN No\',\'Data\',\'250px\',\'\']]\n\nfor c in columns:\n colnames.append(c[0])\n coltypes.append(c[1])\n colwidths.append(c[2])\n coloptions.append(c[3])\n col_idx[c[0]] = len(colnames)-1\n\n\nfor r in res:\n det = sql(\"select parent from `tabDelivery Note Item` where item_code = %s and prevdoc_docname = %s\" , (r[col_idx[\'Item Code\']], r[col_idx[\'ID\']]))\n dn = \'\'\n for d in det:\n dn += cstr(d[0])+NEWLINE\n r.append(cstr(dn))','DESC','`tabSales Order`.`name`','','No',50,NULL),('timesheet_report','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Timesheet Report',NULL,'Timesheet Detail','{\'TimesheetSaved\':1,\'TimesheetSubmitted\':1}','TimesheetID,TimesheetTimesheet Date,TimesheetTimesheet by,Timesheet DetailProject Name,Timesheet DetailTask Id,Timesheet DetailTask Name,Timesheet DetailActual Start Time,Timesheet DetailActual End Time,Timesheet DetailTotal Hours (Actual)','Timesheet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabTimesheet`.`name`',NULL,'Yes',50,NULL),('total_target_variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Total Target Variance Report',NULL,'Target Detail','{\'Sales PersonSaved\':1,\'Sales PersonSubmitted\':1,\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\',\'Target DetailFiscal Year\':\'\'}','Sales PersonID,Sales PersonOwner,Sales PersonSales Person,Sales PersonCountry,Sales PersonState,Sales Personlft,Sales Personrgt,Target DetailItem Group,Target DetailFiscal Year,Target DetailTarget Amount','Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Person`.`name`',NULL,'Yes',50,NULL),('trend_analyzer','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Trend Analyzer',NULL,'Profile','{}','ProfileID,ProfileOwner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabProfile`.`name`',NULL,'Yes',50,NULL),('trial_balance','2012-10-02 13:17:53','2012-07-23 11:49:53','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Trial Balance',NULL,'Account','{\'AccountGroup or Ledger\':\'Ledger\',\'AccountIs PL Account\':\'\',\'AccountAccount Type\':\'\',\'AccountShow Group Balance\':\'\'}','AccountID',NULL,NULL,NULL,NULL,'transaction_date',NULL,NULL,NULL,NULL,NULL,'DESC','`tabAccount`.`name`',NULL,'Yes',50,NULL),('variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Variance Report',NULL,'Target Detail','{\'TerritoryState\':\'\',\'Target DetailFiscal Year\':\'2009-2010\',\'Target DetailBased On\':\'Territory\',\'Target DetailCompany\':\'Alpha Company\',\'Target DetailPeriod\':\'Quarterly\',\'Target DetailUnder\':\'Sales Order\'}',NULL,'Territory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','ID',NULL,'Yes',50,NULL),('voucher_wise_tax_details','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Voucher wise tax details',NULL,'Sales Taxes and Charges','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteFiscal Year\':\'\'}','Sales Taxes and ChargesType,Sales Taxes and ChargesAccount Head,Sales Taxes and ChargesCost Center,Sales Taxes and ChargesDescription,Sales Taxes and ChargesRate,Sales Taxes and ChargesAmount*,Sales Taxes and ChargesTotal*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Taxes and Charges`.`parent`',NULL,'Yes',50,NULL),('warranty-amc_expiry_details','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Support','Warranty/AMC Expiry Details',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoStatus\':\'\',\'Serial NoMaintenance Status\':\'\'}','Serial NoID,Serial NoItem Code,Serial NoDescription,Serial NoStatus,Serial NoItem Group,Serial NoPurchase Receipt No,Serial NoDelivery Note No,Serial NoCustomer,Serial NoCustomer Name,Serial NoAMC Expiry Date,Serial NoWarranty Expiry Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSerial No`.`name`',NULL,'Yes',50,NULL),('warranty-amc_summary','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Support','Warranty/AMC Summary',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoStatus\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','name',NULL,'Yes',50,NULL),('yearly_transaction_summary','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Yearly Transaction Summary',NULL,'Profile','{\'DocTypeFiscal Year\':\'2009-2010\',\'DocTypeCompany\':\'Alpha Company\',\'DocTypePeriod\':\'Monthly\'}','ProfileID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabProfile`.`name`',NULL,'Yes',NULL,NULL); +/*!40000 ALTER TABLE `tabSearch Criteria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSerial No` +-- + +DROP TABLE IF EXISTS `tabSerial No`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSerial No` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `serial_no` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + `item_group` varchar(180) default NULL, + `brand` varchar(180) default NULL, + `description` text, + `pr_no` varchar(180) default NULL, + `purchase_date` date default NULL, + `purchase_rate` decimal(18,6) default NULL, + `warranty_period` int(11) default NULL, + `warranty_expiry_date` date default NULL, + `amc_expiry_date` date default NULL, + `status` varchar(180) default 'In Store', + `maintenance_status` varchar(180) default NULL, + `warehouse` varchar(180) default NULL, + `make` varchar(180) default NULL, + `label` varchar(180) default NULL, + `delivery_note_no` varchar(180) default NULL, + `delivery_date` date default NULL, + `customer_name` varchar(180) default NULL, + `customer_address` text, + `territory` varchar(180) default NULL, + `is_cancelled` varchar(180) default NULL, + `notes` mediumtext, + `trash_reason` text, + `customer` varchar(180) default NULL, + `purchase_time` time default NULL, + `delivery_document_type` varchar(180) default NULL, + `supplier_address` mediumtext, + `fiscal_year` varchar(180) default NULL, + `purchase_document_no` varchar(180) default NULL, + `item_name` varchar(180) default NULL, + `purchase_document_type` varchar(180) default NULL, + `supplier` varchar(180) default NULL, + `delivery_address` text, + `company` varchar(180) default NULL, + `supplier_name` varchar(180) default NULL, + `delivery_time` time default NULL, + `delivery_document_no` varchar(180) default NULL, + `serial_no_details` text, + `address_display` text, + `sle_exists` int(1) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `serial_no` (`serial_no`), + KEY `status` (`status`), + KEY `maintenance_status` (`maintenance_status`), + KEY `parent` (`parent`), + KEY `warehouse` (`warehouse`), + KEY `fiscal_year` (`fiscal_year`), + KEY `company` (`company`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSerial No` +-- + +LOCK TABLES `tabSerial No` WRITE; +/*!40000 ALTER TABLE `tabSerial No` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSerial No` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSeries Detail` +-- + +DROP TABLE IF EXISTS `tabSeries Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSeries Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `series` varchar(180) default NULL, + `remove` int(1) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSeries Detail` +-- + +LOCK TABLES `tabSeries Detail` WRITE; +/*!40000 ALTER TABLE `tabSeries Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSeries Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSeries` +-- + +DROP TABLE IF EXISTS `tabSeries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSeries` ( + `name` varchar(40) default NULL, + `current` int(10) default NULL, + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSeries` +-- + +LOCK TABLES `tabSeries` WRITE; +/*!40000 ALTER TABLE `tabSeries` DISABLE KEYS */; +INSERT INTO `tabSeries` VALUES ('FL',14129),('PERM',1002),('UR',71),('TIC/',1),('_SRCH',3),('FileData-',3),('TD',5),('MI',17),('PR',329),('EV',3),('MIR',7),('DEF',97),('',580),('TW',3),('Ann/',1),('Login Page/',1),('DF',26),('MDR',331),('MDI',1382),('FMD/',867),('TMD/',85),('GLMDetail',28),('Event Updates/',2),('__NSO',16),('Feed',1),('BSD',170),('SRCH/C/',6),('_TRIGGER',1),('_FEED',2); +/*!40000 ALTER TABLE `tabSeries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSessions` +-- + +DROP TABLE IF EXISTS `tabSessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSessions` ( + `user` varchar(180) default NULL, + `sid` varchar(120) default NULL, + `sessiondata` longtext, + `ipaddress` varchar(16) default NULL, + `lastupdate` datetime default NULL, + `status` varchar(20) default NULL, + KEY `sid` (`sid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSessions` +-- + +LOCK TABLES `tabSessions` WRITE; +/*!40000 ALTER TABLE `tabSessions` DISABLE KEYS */; +INSERT INTO `tabSessions` VALUES ('Administrator','c3d20249a117bd8a0ea47698a7d5411c997c2bc07a2b9ca50f4ce593',NULL,NULL,'2011-07-13 13:37:32','Active'),('Administrator','172129bcb4d2be15961c80740d7ae754245bfebe9bdad9d694eb119d',NULL,NULL,'2011-08-02 11:39:53','Active'),('Administrator','d00752af6d325746568534b71e4fb8be374cd7ce87d99483efbbfac7',NULL,NULL,'2011-08-02 11:33:56','Active'); +/*!40000 ALTER TABLE `tabSessions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabShipping Address` +-- + +DROP TABLE IF EXISTS `tabShipping Address`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabShipping Address` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `customer` varchar(180) default NULL, + `shipping_details` text, + `is_primary_address` varchar(180) default NULL, + `customer_address` text, + `trash_reason` text, + `shipping_address` text, + `ship_to` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabShipping Address` +-- + +LOCK TABLES `tabShipping Address` WRITE; +/*!40000 ALTER TABLE `tabShipping Address` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabShipping Address` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSingles` +-- + +DROP TABLE IF EXISTS `tabSingles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSingles` ( + `doctype` varchar(40) default NULL, + `field` varchar(40) default NULL, + `value` mediumtext, + KEY `doctype` (`doctype`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSingles` +-- + +LOCK TABLES `tabSingles` WRITE; +/*!40000 ALTER TABLE `tabSingles` DISABLE KEYS */; +INSERT INTO `tabSingles` VALUES ('DocType','server_code_error',' '),('Notification Control','quotation_message','

    Thank you for your interest

    Based on your request, we have prepared a quotation for you.

    We look forward to reply!

    '),('Notification Control','sales_order_message','

    Thank you for placing your order with us.

    Please check the confirmation details and contact us in case of any queries.

    '),('Notification Control','delivery_note_message','

    Requested items have been delivered/ ready for delivery.

    Please contact us in case of any queries.

    '),('Notification Control','sales_invoice_message','

    Thank you for your business!

    Please find the Invoice Details.

    Feel free to contact us in case of any queries.

    '),('Notification Control','purchase_order_message','

    Please find details of our Purchase Order for you.

    Please contact us in case of any queries

    '),('Notification Control','purchase_receipt_message','

    Your items have been received as per the details given below.

    '),('DocType','modified','2011-09-07 15:28:18'),('Email Settings','support_host',NULL),('Email Settings','support_use_ssl',NULL),('Email Settings','sync_support_mails',NULL),('Email Settings','support_password',NULL),('Email Settings','support_username',NULL),('Email Settings','signature',NULL),('Email Settings','support_email',NULL),('Control Panel','modified','2011-12-16 16:55:51'),('Control Panel','session_expiry','24:00'),('Control Panel','page_width',NULL),('Control Panel','left_sidebar_width','100'),('Control Panel','account_id','s5u011'),('Control Panel','letter_head',NULL),('Control Panel','owner',''),('Control Panel','background_color',''),('Control Panel','password_expiry_days','90'),('Control Panel','footer_height','0'),('Control Panel','modified_by','Administrator'),('Control Panel','title',NULL),('Control Panel','home_page','desktop'),('Control Panel','client_name','
    Banner Comes Here
    '),('Control Panel','company_name',NULL),('Control Panel','docstatus',NULL),('Control Panel','header_height','40'),('Control Panel','footer_html','\n'),('Control Panel','parent',NULL),('Control Panel','currency_format',''),('Control Panel','hide_webnotes_toolbar',NULL),('Control Panel','test_code',''),('Control Panel','letter_head_image',NULL),('Control Panel','client_logo',NULL),('Control Panel','date_format','dd-mm-yyyy'),('Control Panel','mail_footer',''),('Control Panel','idx',NULL),('Control Panel','country',NULL),('Control Panel','industry',NULL),('Control Panel','total_sms_sent',NULL),('Control Panel','parenttype',NULL),('Control Panel','time_zone',NULL),('Control Panel','right_sidebar_width',NULL),('Control Panel','parentfield',NULL),('Global Defaults','modified','2012-07-12 19:25:47'),('Global Defaults','date_format','dd-mm-yyyy'),('Global Defaults','maintain_same_rate','1'),('Global Defaults','default_territory','Default'),('Global Defaults','default_warehouse_type','Default Warehouse Type'),('Global Defaults','default_customer_group','Default Customer Group'),('Global Defaults','default_price_list','Standard'),('Global Defaults','default_supplier_type','Default Supplier Type'),('Global Defaults','supp_master_name','Supplier Name'),('Global Defaults','owner',''),('Global Defaults','default_item_group','Default'),('Global Defaults','cust_master_name','Customer Name'),('Features Setup','modified','2012-07-12 19:25:49'),('Features Setup','fs_imports','1'),('Features Setup','fs_projects','1'),('Features Setup','fs_item_batch_nos','1'),('Features Setup','fs_page_break','1'),('Features Setup','fs_recurring_invoice','1'),('Features Setup','fs_exports','1'),('Features Setup','fs_after_sales_installations','1'),('Features Setup','fs_more_info','1'),('Features Setup','fs_quality','1'),('Features Setup','fs_discounts','1'),('Features Setup','owner',''),('Features Setup','fs_packing_details','1'),('Features Setup','fs_brands','1'),('Features Setup','fs_item_group_in_details','1'),('Features Setup','fs_sales_extras','1'),('Features Setup','fs_item_advanced','1'),('Features Setup','fs_item_serial_nos','1'),('Features Setup','fs_manufacturing','1'),('Features Setup','fs_pos','1'),('Features Setup','fs_purchase_discounts','1'),('Features Setup','fs_item_barcode','0'),('Style Settings','modified','2012-10-02 13:13:44'),('Style Settings','custom_css','#body_div {\n \n\n\n font-size: 13px !important;\n\n}\n\n\n.small {\n font-size: 11px !important;\n}\n\n\n'),('Style Settings','font_size','13px'),('Style Settings','owner',''),('Website Settings','modified','2012-10-02 13:17:58'),('Website Settings','modified_by','Administrator'),('Website Settings','owner',''),('Website Settings','docstatus','0'); +/*!40000 ALTER TABLE `tabSingles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabState` +-- + +DROP TABLE IF EXISTS `tabState`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabState` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `state_name` varchar(180) default NULL, + `country` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabState` +-- + +LOCK TABLES `tabState` WRITE; +/*!40000 ALTER TABLE `tabState` DISABLE KEYS */; +INSERT INTO `tabState` VALUES ('Alabama','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Alabama','United States',NULL),('Alaska','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Alaska','United States',NULL),('Andaman and Nicobar Islands','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Andaman and Nicobar Islands','India',NULL),('Andhra Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Andhra Pradesh','India',NULL),('Arizona','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Arizona','United States',NULL),('Arkansas','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Arkansas','United States',NULL),('Arunachal Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Arunachal Pradesh','India',NULL),('Assam','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Assam','India',NULL),('Beijing','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Beijing ','China',NULL),('Bihar','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Bihar','India',NULL),('California','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'California','United States',NULL),('Chandigarh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Chandigarh','India',NULL),('Changchun','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Changchun ','China',NULL),('Chengde','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Chengde','China',NULL),('Chengdu','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Chengdu ','China',NULL),('Chhattisgarh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Chhattisgarh','India',NULL),('Chongqing','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Chongqing ','China',NULL),('Colorado','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Colorado','United States',NULL),('Connecticut','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Connecticut','United States',NULL),('Dadra and Nagar Haveli','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Dadra and Nagar Haveli','India',NULL),('Dalian','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Dalian','China',NULL),('Daman and Diu','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Daman and Diu','India',NULL),('Delaware','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Delaware','United States',NULL),('Delhi','2010-12-14 17:56:44','2010-04-15 14:23:23','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Delhi','India',NULL),('Dongguan','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Dongguan ','China',NULL),('Dunhuang','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Dunhuang ','China',NULL),('Florida','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Florida','United States',NULL),('Georgia','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Georgia','United States',NULL),('Goa','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Goa','India',NULL),('Guangzhou','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Guangzhou','China',NULL),('Guilin','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Guilin ','China',NULL),('Gujarat','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Gujarat','India',NULL),('Hangzhou','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Hangzhou ','China',NULL),('Harbin','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Harbin','China',NULL),('Haryana','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Haryana','India',NULL),('Hawaii','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Hawaii','United States',NULL),('Hefei','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Hefei ','China',NULL),('Himachal Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Himachal Pradesh','India',NULL),('Idaho','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Idaho','United States',NULL),('Illinois','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Illinois','United States',NULL),('Indiana','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Indiana','United States',NULL),('Iowa','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Iowa','United States',NULL),('Jammu and Kashmir','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Jammu and Kashmir','India',NULL),('Jharkhand','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Jharkhand','India',NULL),('Jinan','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Jinan ','China',NULL),('Kansas','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Kansas','United States',NULL),('Karnataka','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Karnataka','India',NULL),('Kashi','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Kashi','China',NULL),('Kentucky','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Kentucky','United States',NULL),('Kerala','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Kerala','India',NULL),('Kowloon','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Kowloon ','China',NULL),('Kunming','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Kunming ','China',NULL),('Lakshadweep','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Lakshadweep','India',NULL),('Lanzhou','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Lanzhou','China',NULL),('Lijiang City','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Lijiang City ','China',NULL),('Louisiana','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Louisiana','United States',NULL),('Madhya Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Madhya Pradesh','India',NULL),('Maharashtra','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Maharashtra','India',NULL),('Maine','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Maine','United States',NULL),('Manipur','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Manipur','India',NULL),('Maryland','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Maryland','United States',NULL),('Massachusetts','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Massachusetts','United States',NULL),('Meghalaya','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Meghalaya','India',NULL),('Michigan','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Michigan','United States',NULL),('Minnesota','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Minnesota','United States',NULL),('Mississippi','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Mississippi','United States',NULL),('Missouri','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Missouri','United States',NULL),('Mizoram','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Mizoram','India',NULL),('Montana','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Montana','United States',NULL),('Nagaland','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Nagaland','India',NULL),('Nanchang','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Nanchang ','China',NULL),('Nanjing','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Nanjing','China',NULL),('Nebraska','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Nebraska','United States',NULL),('Nevada','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Nevada','United States',NULL),('New Hampshire','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'New Hampshire','United States',NULL),('New Jersey','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'New Jersey','United States',NULL),('New Mexico','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'New Mexico','United States',NULL),('New York','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'New York','United States',NULL),('Ningbo','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Ningbo ','China',NULL),('North Carolina','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'North Carolina','United States',NULL),('North Dakota','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'North Dakota','United States',NULL),('Ohio','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Ohio','United States',NULL),('Oklahoma','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Oklahoma','United States',NULL),('Oregon','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Oregon','United States',NULL),('Orissa','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Orissa','India',NULL),('Pennsylvania','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Pennsylvania','United States',NULL),('Puducherry','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Puducherry','India',NULL),('Punjab','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Punjab','India',NULL),('Qingdao','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Qingdao ','China',NULL),('Qufu','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Qufu','China',NULL),('Rajasthan','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Rajasthan','India',NULL),('Rhode Island','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Rhode Island','United States',NULL),('Sanya','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Sanya ','China',NULL),('Shanghai','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Shanghai ','China',NULL),('Shenyang','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Shenyang','China',NULL),('Shenzhen','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Shenzhen','China',NULL),('Sikkim','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Sikkim','India',NULL),('South Carolina','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'South Carolina','United States',NULL),('South Dakota','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'South Dakota','United States',NULL),('suzhou','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'suzhou','China',NULL),('Tamil Nadu','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Tamil Nadu','India',NULL),('Tennessee','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Tennessee','United States',NULL),('Texas','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Texas','United States',NULL),('Tianjin','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Tianjin','China',NULL),('Tripura','2010-12-14 17:56:44','2009-07-17 15:12:48','Administrator','Administrator',0,NULL,'','',NULL,'Tripura','India',NULL),('Turpan','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Turpan','China',NULL),('Urumqi','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Urumqi','China',NULL),('Utah','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Utah','United States',NULL),('Uttar Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:48','Administrator','Administrator',0,NULL,'','',NULL,'Uttar Pradesh','India',NULL),('Uttarakhand','2010-12-14 17:56:44','2009-07-17 15:12:48','Administrator','Administrator',0,NULL,'','',NULL,'Uttarakhand','India',NULL),('Vermont','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Vermont','United States',NULL),('Virginia','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Virginia','United States',NULL),('Washington','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Washington','United States',NULL),('West Bengal','2010-12-14 17:56:44','2009-07-17 15:12:48','Administrator','Administrator',0,NULL,'','',NULL,'West Bengal','India',NULL),('West Virginia','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'West Virginia','United States',NULL),('Wisconsin','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Wisconsin','United States',NULL),('Wuhan','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Wuhan','China',NULL),('Wuxi','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Wuxi','China',NULL),('Wyoming','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Wyoming','United States',NULL),('Xiamen','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Xiamen','China',NULL),('Xian','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Xian','China',NULL),('Zhongshan','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Zhongshan ','China',NULL); +/*!40000 ALTER TABLE `tabState` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabStock Entry Detail` +-- + +DROP TABLE IF EXISTS `tabStock Entry Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabStock Entry Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `s_warehouse` varchar(180) default NULL, + `t_warehouse` varchar(180) default NULL, + `fg_item` int(1) default NULL, + `item_code` varchar(180) default NULL, + `description` text, + `batch_no` varchar(180) default NULL, + `actual_qty` varchar(180) default NULL, + `stock_uom` varchar(180) default NULL, + `reqd_qty` decimal(18,6) default NULL, + `transfer_qty` decimal(18,6) default NULL, + `serial_no` text, + `incoming_rate` decimal(18,6) default NULL, + `amount` decimal(18,6) default NULL, + `qty` decimal(18,6) default NULL, + `conversion_factor` decimal(18,6) default NULL, + `uom` varchar(180) default NULL, + `bom_no` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `actual_qty` (`actual_qty`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabStock Entry Detail` +-- + +LOCK TABLES `tabStock Entry Detail` WRITE; +/*!40000 ALTER TABLE `tabStock Entry Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabStock Entry Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabStock Entry` +-- + +DROP TABLE IF EXISTS `tabStock Entry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabStock Entry` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `naming_series` varchar(180) default 'STE', + `amendment_date` date default NULL, + `purpose` varchar(180) default NULL, + `delivery_note_no` varchar(180) default NULL, + `purchase_receipt_no` varchar(180) default NULL, + `supplier` varchar(180) default NULL, + `supplier_address` text, + `customer` varchar(180) default NULL, + `customer_address` text, + `process` varchar(180) default NULL, + `production_order` varchar(180) default NULL, + `fg_completed_qty` decimal(18,6) default NULL, + `from_warehouse` varchar(180) default NULL, + `to_warehouse` varchar(180) default NULL, + `transfer_date` date default NULL, + `posting_date` date default NULL, + `posting_time` time default NULL, + `amended_from` varchar(180) default NULL, + `transporter` varchar(180) default NULL, + `is_excisable_goods` varchar(180) default NULL, + `excisable_goods` varchar(180) default NULL, + `under_rule` varchar(180) default NULL, + `remarks` text, + `cancel_reason` varchar(180) default NULL, + `total_amount` decimal(18,6) default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `supplier_name` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `project_name` varchar(180) default NULL, + `sales_invoice_no` varchar(180) default NULL, + `consider_sa_items_as_raw_materials` varchar(180) default NULL, + `bom_no` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `posting_date` (`posting_date`), + KEY `parent` (`parent`), + KEY `delivery_note_no` (`delivery_note_no`), + KEY `purchase_receipt_no` (`purchase_receipt_no`), + KEY `production_order` (`production_order`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabStock Entry` +-- + +LOCK TABLES `tabStock Entry` WRITE; +/*!40000 ALTER TABLE `tabStock Entry` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabStock Entry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabStock Ledger Entry` +-- + +DROP TABLE IF EXISTS `tabStock Ledger Entry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabStock Ledger Entry` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_code` varchar(180) default NULL, + `batch_no` varchar(180) default NULL, + `warehouse` varchar(180) default NULL, + `warehouse_type` varchar(180) default NULL, + `posting_date` date default NULL, + `posting_time` time default NULL, + `transaction_date` date default NULL, + `voucher_type` varchar(180) default NULL, + `voucher_no` varchar(180) default NULL, + `voucher_detail_no` varchar(180) default NULL, + `actual_qty` decimal(18,6) default NULL, + `incoming_rate` decimal(18,6) default NULL, + `bin_aqat` decimal(18,6) default NULL, + `ma_rate` decimal(18,6) default NULL, + `fcfs_rate` decimal(18,6) default NULL, + `valuation_rate` decimal(18,6) default NULL, + `stock_value` decimal(18,6) default NULL, + `fcfs_stack` text, + `stock_uom` varchar(180) default NULL, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `is_cancelled` varchar(180) default NULL, + `is_stock_entry` varchar(180) default NULL, + `serial_no` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `item_code` (`item_code`), + KEY `warehouse` (`warehouse`), + KEY `posting_date` (`posting_date`), + KEY `parent` (`parent`), + KEY `posting_sort_index` (`posting_date`,`posting_time`,`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabStock Ledger Entry` +-- + +LOCK TABLES `tabStock Ledger Entry` WRITE; +/*!40000 ALTER TABLE `tabStock Ledger Entry` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabStock Ledger Entry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabStock Reconciliation` +-- + +DROP TABLE IF EXISTS `tabStock Reconciliation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabStock Reconciliation` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `reconciliation_date` date default NULL, + `reconciliation_time` time default NULL, + `next_step` varchar(180) default NULL, + `remark` text, + `company` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `file_list` text, + `amendment_date` date default NULL, + `amended_from` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + `diff_info` text, + PRIMARY KEY (`name`), + KEY `company` (`company`), + KEY `fiscal_year` (`fiscal_year`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabStock Reconciliation` +-- + +LOCK TABLES `tabStock Reconciliation` WRITE; +/*!40000 ALTER TABLE `tabStock Reconciliation` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabStock Reconciliation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSupplier Quotation Item` +-- + +DROP TABLE IF EXISTS `tabSupplier Quotation Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSupplier Quotation Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `qty` decimal(18,6) default '0.000000', + `item_tax_rate` text, + `import_amount` decimal(18,6) default NULL, + `discount_rate` decimal(18,6) default NULL, + `import_ref_rate` decimal(18,6) default NULL, + `page_break` int(1) default NULL, + `purchase_rate` decimal(18,6) default '0.000000', + `item_name` varchar(180) default NULL, + `prevdoc_detail_docname` varchar(180) default NULL, + `warehouse` varchar(180) default NULL, + `supplier_part_no` varchar(180) default NULL, + `uom` varchar(180) default NULL, + `project_name` varchar(180) default NULL, + `description` text, + `prevdoc_docname` varchar(180) default NULL, + `import_rate` decimal(18,6) default NULL, + `brand` varchar(180) default NULL, + `item_code` varchar(180) default NULL, + `purchase_ref_rate` decimal(18,6) default NULL, + `prevdoc_date` date default NULL, + `item_group` varchar(180) default NULL, + `amount` decimal(18,6) default '0.000000', + `prevdoc_doctype` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSupplier Quotation Item` +-- + +LOCK TABLES `tabSupplier Quotation Item` WRITE; +/*!40000 ALTER TABLE `tabSupplier Quotation Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSupplier Quotation Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSupplier Quotation` +-- + +DROP TABLE IF EXISTS `tabSupplier Quotation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSupplier Quotation` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `status` varchar(180) default NULL, + `naming_series` varchar(180) default NULL, + `in_words_import` varchar(180) default NULL, + `supplier_name` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `currency` varchar(180) default NULL, + `conversion_rate` decimal(18,6) default '1.000000', + `amendment_date` date default NULL, + `cancel_reason` varchar(180) default NULL, + `select_print_heading` varchar(180) default NULL, + `is_subcontracted` varchar(180) default 'No', + `supplier_address` varchar(180) default NULL, + `tc_name` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `transaction_date` date default NULL, + `contact_display` text, + `other_charges_added_import` decimal(18,6) default NULL, + `supplier` varchar(180) default NULL, + `grand_total_import` decimal(18,6) default NULL, + `rounded_total` decimal(18,6) default NULL, + `address_display` text, + `total_tax` decimal(18,6) default NULL, + `terms` text, + `company` varchar(180) default NULL, + `other_charges_deducted_import` decimal(18,6) default NULL, + `other_charges_added` decimal(18,6) default NULL, + `contact_email` text, + `purchase_other_charges` varchar(180) default NULL, + `contact_mobile` text, + `net_total_import` decimal(18,6) default NULL, + `grand_total` decimal(18,6) default NULL, + `other_charges_deducted` decimal(18,6) default NULL, + `file_list` text, + `indent_no` varchar(180) default NULL, + `letter_head` varchar(180) default NULL, + `net_total` decimal(18,6) default NULL, + `contact_person` varchar(180) default NULL, + `in_words` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSupplier Quotation` +-- + +LOCK TABLES `tabSupplier Quotation` WRITE; +/*!40000 ALTER TABLE `tabSupplier Quotation` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSupplier Quotation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSupplier Type` +-- + +DROP TABLE IF EXISTS `tabSupplier Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSupplier Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `supplier_type` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSupplier Type` +-- + +LOCK TABLES `tabSupplier Type` WRITE; +/*!40000 ALTER TABLE `tabSupplier Type` DISABLE KEYS */; +INSERT INTO `tabSupplier Type` VALUES ('Default Supplier Type','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Supplier Type',NULL); +/*!40000 ALTER TABLE `tabSupplier Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSupplier` +-- + +DROP TABLE IF EXISTS `tabSupplier`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSupplier` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `supplier_name` varchar(180) default NULL, + `supplier_type` varchar(180) default NULL, + `supplier_status` varchar(180) default NULL, + `website` varchar(180) default NULL, + `last_purchase_order` varchar(180) default NULL, + `address_line1` varchar(180) default NULL, + `address_line2` varchar(180) default NULL, + `city` varchar(180) default NULL, + `country` varchar(180) default NULL, + `state` varchar(180) default NULL, + `pincode` varchar(180) default NULL, + `address` mediumtext, + `company` varchar(180) default NULL, + `supplier_details` text, + `naming_series` varchar(180) default 'SUPP', + `credit_days` int(11) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + `default_currency` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `address_line1` (`address_line1`), + KEY `address_line2` (`address_line2`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSupplier` +-- + +LOCK TABLES `tabSupplier` WRITE; +/*!40000 ALTER TABLE `tabSupplier` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSupplier` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSupport Ticket Response` +-- + +DROP TABLE IF EXISTS `tabSupport Ticket Response`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSupport Ticket Response` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `mail` text, + `content_type` varchar(180) default NULL, + `from_email` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSupport Ticket Response` +-- + +LOCK TABLES `tabSupport Ticket Response` WRITE; +/*!40000 ALTER TABLE `tabSupport Ticket Response` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSupport Ticket Response` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabSupport Ticket` +-- + +DROP TABLE IF EXISTS `tabSupport Ticket`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabSupport Ticket` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `status` varchar(180) default 'Open', + `raised_by` varchar(180) default NULL, + `problem_description` mediumtext, + `contact_no` varchar(180) default NULL, + `opening_date` date default NULL, + `opening_time` time default NULL, + `customer` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `allocated_to` varchar(180) default NULL, + `resolution_details` text, + `resolution_date` date default NULL, + `resolution_time` time default NULL, + `description` text, + `new_response` text, + `content_type` varchar(180) default NULL, + `subject` text, + `address_display` text, + `contact_mobile` varchar(180) default NULL, + `contact_display` varchar(180) default NULL, + `contact_email` varchar(180) default NULL, + `file_list` text, + `naming_series` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `customer` (`customer`), + KEY `allocated_to` (`allocated_to`), + KEY `parent` (`parent`), + KEY `status` (`status`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabSupport Ticket` +-- + +LOCK TABLES `tabSupport Ticket` WRITE; +/*!40000 ALTER TABLE `tabSupport Ticket` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabSupport Ticket` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTDS Category Account` +-- + +DROP TABLE IF EXISTS `tabTDS Category Account`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTDS Category Account` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `company` varchar(180) default NULL, + `account_head` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTDS Category Account` +-- + +LOCK TABLES `tabTDS Category Account` WRITE; +/*!40000 ALTER TABLE `tabTDS Category Account` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTDS Category Account` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTDS Category` +-- + +DROP TABLE IF EXISTS `tabTDS Category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTDS Category` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `module` varchar(180) default 'Accounts', + `category_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTDS Category` +-- + +LOCK TABLES `tabTDS Category` WRITE; +/*!40000 ALTER TABLE `tabTDS Category` DISABLE KEYS */; +INSERT INTO `tabTDS Category` VALUES ('194J - Professional Fees - Non Company','2010-12-14 17:56:51','2009-05-06 14:10:17','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','194J - Professional Fees - Non Company',NULL),('Commission Brokerage - for Companies','2010-12-14 17:56:51','2009-11-03 16:23:34','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Commission Brokerage - for Companies',NULL),('Commission Brokerage - for Individuals','2010-12-14 17:56:51','2009-10-22 11:37:10','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Commission Brokerage - for Individuals',NULL),('Contractors - 194C - for Companies','2010-12-14 17:56:51','2010-03-10 10:38:19','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Contractors - 194C - for Companies',NULL),('Contractors - 194C - for Individuals','2010-12-14 17:56:50','2009-07-06 17:48:02','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Contractors - 194C - for Individuals',NULL),('Pay to Advt Or Sub Contr - for Companies','2010-12-14 17:56:51','2009-07-06 17:48:04','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Pay to Advt Or Sub Contr - for Companies',NULL),('Pay to Advt Or Sub Contr - for Individuals','2010-12-14 17:56:51','2009-07-06 17:48:07','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Pay to Advt Or Sub Contr - for Individuals',NULL),('Professional Fees - 194J - for Companies','2010-12-14 17:56:51','2010-10-04 16:08:02','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Professional Fees - 194J - for Companies',NULL),('Professional Fees - 194J - for Individuals','2010-12-14 17:56:51','2009-07-09 11:10:03','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Professional Fees - 194J - for Individuals',NULL),('T.D.S on Other Interest - for Individuals','2010-12-14 17:56:51','2010-03-10 10:56:52','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','T.D.S on Other Interest - for Individuals',NULL),('T.D.S on Rent - for Companies','2010-12-14 17:56:51','2009-07-06 17:48:16','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','T.D.S on Rent - for Companies',NULL),('T.D.S on Rent - for Individuals','2010-12-14 17:56:51','2010-03-10 10:37:58','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','T.D.S on Rent - for Individuals',NULL),('TDS on ECB Loan','2010-12-14 17:56:50','2009-07-17 16:24:51','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','TDS on ECB Loan',NULL),('TDS on Rent (Machinery)','2010-12-14 17:56:51','2010-05-26 15:58:40','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,'Accounts','TDS on Rent (Machinery)',NULL); +/*!40000 ALTER TABLE `tabTDS Category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTDS Detail` +-- + +DROP TABLE IF EXISTS `tabTDS Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTDS Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `tds_category` varchar(180) default NULL, + `special_tds_rate_applicable` varchar(180) default NULL, + `special_tds_rate` decimal(18,6) default NULL, + `special_tds_limit` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTDS Detail` +-- + +LOCK TABLES `tabTDS Detail` WRITE; +/*!40000 ALTER TABLE `tabTDS Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTDS Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTDS Payment Detail` +-- + +DROP TABLE IF EXISTS `tabTDS Payment Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTDS Payment Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `voucher_no` varchar(180) default NULL, + `party_name` varchar(180) default NULL, + `amount_paid` decimal(18,6) default NULL, + `date_of_payment` date default NULL, + `tds_amount` decimal(18,6) default NULL, + `cess_on_tds` decimal(18,6) default NULL, + `total_tax_amount` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTDS Payment Detail` +-- + +LOCK TABLES `tabTDS Payment Detail` WRITE; +/*!40000 ALTER TABLE `tabTDS Payment Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTDS Payment Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTDS Payment` +-- + +DROP TABLE IF EXISTS `tabTDS Payment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTDS Payment` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `from_date` date default NULL, + `to_date` date default NULL, + `tds_category` varchar(180) default NULL, + `naming_series` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `company` varchar(180) default NULL, + `registration_details` text, + `remarks` text, + `cheque_no` varchar(180) default NULL, + `bsr_code` varchar(180) default NULL, + `date_of_receipt` date default NULL, + `challan_id` varchar(180) default NULL, + `total_tds` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `from_date` (`from_date`), + KEY `to_date` (`to_date`), + KEY `tds_category` (`tds_category`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTDS Payment` +-- + +LOCK TABLES `tabTDS Payment` WRITE; +/*!40000 ALTER TABLE `tabTDS Payment` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTDS Payment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTDS Rate Chart` +-- + +DROP TABLE IF EXISTS `tabTDS Rate Chart`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTDS Rate Chart` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `module` varchar(180) default 'Accounts', + `applicable_from` date default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTDS Rate Chart` +-- + +LOCK TABLES `tabTDS Rate Chart` WRITE; +/*!40000 ALTER TABLE `tabTDS Rate Chart` DISABLE KEYS */; +INSERT INTO `tabTDS Rate Chart` VALUES ('Rate chart (01-07-2010)','2010-12-14 10:33:11','2010-10-04 17:24:25','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,'Accounts','2010-07-01',NULL),('TDS Rate Chart for 2009-10','2010-08-08 17:09:36','2009-10-05 11:27:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','2008-01-01',NULL),('TDS Rate Chart October 2009 Onwards','2010-08-08 17:09:36','2010-05-26 16:01:54','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','2009-10-01',NULL); +/*!40000 ALTER TABLE `tabTDS Rate Chart` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTDS Rate Detail` +-- + +DROP TABLE IF EXISTS `tabTDS Rate Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTDS Rate Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `category` varchar(180) default NULL, + `slab_from` decimal(18,6) default NULL, + `rate` decimal(18,6) default NULL, + `rate_without_pan` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTDS Rate Detail` +-- + +LOCK TABLES `tabTDS Rate Detail` WRITE; +/*!40000 ALTER TABLE `tabTDS Rate Detail` DISABLE KEYS */; +INSERT INTO `tabTDS Rate Detail` VALUES ('000000018','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',1,'Professional Fees - 194J - for Companies','20000.000000','10.000000',NULL),('000000019','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',2,'Professional Fees - 194J - for Companies','10000000.000000','10.000000',NULL),('000000020','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',3,'Professional Fees - 194J - for Individuals','20000.000000','10.000000',NULL),('000000021','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',4,'Professional Fees - 194J - for Individuals','10000000.000000','10.000000',NULL),('000000022','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',5,'Contractors - 194C - for Companies','20000.000000','2.000000',NULL),('000000023','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',6,'Contractors - 194C - for Companies','10000000.000000','2.000000',NULL),('000000024','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',7,'Contractors - 194C - for Individuals','20000.000000','1.000000',NULL),('000000025','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',8,'Contractors - 194C - for Individuals','10000000.000000','1.000000',NULL),('000000026','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',9,'T.D.S on Other Interest - for Individuals','5000.000000','10.000000',NULL),('000000027','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',10,'T.D.S on Other Interest - for Individuals','10000000.000000','10.000000',NULL),('000000028','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',11,'Pay to Advt Or Sub Contr - for Companies','20000.000000','2.000000',NULL),('000000029','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',12,'Pay to Advt Or Sub Contr - for Companies','10000000.000000','2.000000',NULL),('000000030','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',13,'Pay to Advt Or Sub Contr - for Individuals','20000.000000','1.000000',NULL),('000000031','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',14,'Pay to Advt Or Sub Contr - for Individuals','10000000.000000','1.000000',NULL),('000000032','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',15,'Commission Brokerage - for Companies','2500.000000','10.000000',NULL),('000000033','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',16,'Commission Brokerage - for Companies','10000000.000000','10.000000',NULL),('000000034','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',17,'Commission Brokerage - for Individuals','2500.000000','10.000000',NULL),('000000035','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',18,'Commission Brokerage - for Individuals','10000000.000000','10.000000',NULL),('000000036','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',19,'T.D.S on Rent - for Companies','120000.000000','10.000000',NULL),('000000037','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',20,'T.D.S on Rent - for Companies','10000000.000000','10.000000',NULL),('000000038','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',21,'T.D.S on Rent - for Individuals','120000.000000','10.000000',NULL),('000000039','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',22,'T.D.S on Rent - for Individuals','10000000.000000','10.000000',NULL),('000000040','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',23,'TDS on ECB Loan','5000.000000','10.000000',NULL),('000000041','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',24,'TDS on ECB Loan','10000000.000000','10.000000',NULL),('000000042','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',1,'Professional Fees - 194J - for Companies','20000.000000','10.000000',NULL),('000000043','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',2,'Professional Fees - 194J - for Individuals','20000.000000','10.000000',NULL),('000000044','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',3,'Contractors - 194C - for Companies','20000.000000','2.000000',NULL),('000000045','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',4,'Contractors - 194C - for Individuals','20000.000000','1.000000',NULL),('000000046','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',5,'T.D.S on Other Interest - for Individuals','5000.000000','10.000000',NULL),('000000047','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',6,'Pay to Advt Or Sub Contr - for Companies','20000.000000','2.000000',NULL),('000000048','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',7,'Pay to Advt Or Sub Contr - for Individuals','20000.000000','1.000000',NULL),('000000049','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',8,'Commission Brokerage - for Companies','2500.000000','10.000000',NULL),('000000050','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',9,'Commission Brokerage - for Individuals','2500.000000','10.000000',NULL),('000000051','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',10,'T.D.S on Rent - for Companies','120000.000000','10.000000',NULL),('000000052','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',11,'T.D.S on Rent - for Individuals','120000.000000','10.000000',NULL),('000000053','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',12,'TDS on ECB Loan','5000.000000','10.000000',NULL),('000000054','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','nabin@webnotestech.com',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',13,'TDS on Rent (Machinery)','120000.000000','2.000000',NULL),('000000055','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',1,'Professional Fees - 194J - for Companies','30000.000000','10.000000','20.000000'),('000000056','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',2,'Professional Fees - 194J - for Individuals','30000.000000','10.000000','20.000000'),('000000057','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',3,'Contractors - 194C - for Companies','30000.000000','2.000000','20.000000'),('000000058','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',4,'Contractors - 194C - for Individuals','30000.000000','1.000000','20.000000'),('000000059','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',5,'T.D.S on Other Interest - for Individuals','5000.000000','10.000000','20.000000'),('000000060','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',6,'Pay to Advt Or Sub Contr - for Companies','30000.000000','2.000000','20.000000'),('000000061','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',7,'Pay to Advt Or Sub Contr - for Individuals','30000.000000','1.000000','20.000000'),('000000062','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',8,'Commission Brokerage - for Companies','5000.000000','10.000000','20.000000'),('000000063','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',9,'Commission Brokerage - for Individuals','5000.000000','10.000000','20.000000'),('000000064','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',10,'T.D.S on Rent - for Companies','180000.000000','10.000000','20.000000'),('000000065','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',11,'T.D.S on Rent - for Individuals','180000.000000','10.000000','20.000000'),('000000066','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',12,'TDS on ECB Loan','5000.000000','10.000000','20.000000'),('000000067','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',13,'TDS on Rent (Machinery)','180000.000000','2.000000','20.000000'); +/*!40000 ALTER TABLE `tabTDS Rate Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTDS Return Acknowledgement` +-- + +DROP TABLE IF EXISTS `tabTDS Return Acknowledgement`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTDS Return Acknowledgement` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `fiscal_year` varchar(180) default NULL, + `quarter` varchar(180) default NULL, + `tds_category` varchar(180) default NULL, + `acknowledgement_no` varchar(180) default NULL, + `date_of_receipt` date default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTDS Return Acknowledgement` +-- + +LOCK TABLES `tabTDS Return Acknowledgement` WRITE; +/*!40000 ALTER TABLE `tabTDS Return Acknowledgement` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTDS Return Acknowledgement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTable Mapper Detail` +-- + +DROP TABLE IF EXISTS `tabTable Mapper Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTable Mapper Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `from_table` varchar(180) default NULL, + `to_table` varchar(180) default NULL, + `from_field` varchar(180) default NULL, + `to_field` varchar(180) default NULL, + `match_id` int(11) default NULL, + `validation_logic` text, + `reference_doctype_key` varchar(180) default NULL, + `reference_key` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTable Mapper Detail` +-- + +LOCK TABLES `tabTable Mapper Detail` WRITE; +/*!40000 ALTER TABLE `tabTable Mapper Detail` DISABLE KEYS */; +INSERT INTO `tabTable Mapper Detail` VALUES ('000000489','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','table_mapper_details','DocType Mapper',1,'Sales Order Item','Purchase Request Item','sales_order_details','indent_details',1,'docstatus=1','prevdoc_doctype','prevdoc_detail_docname'),('000000490','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','table_mapper_details','DocType Mapper',2,'Sales Order','Purchase Request',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000003','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','table_mapper_details','DocType Mapper',1,'Customer Issue','Maintenance Visit Purpose',NULL,'maintenance_visit_details',1,'docstatus=1','prevdoc_doctype','prevdoc_docname'),('TMD/0000004','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','table_mapper_details','DocType Mapper',2,'Customer Issue','Maintenance Visit',NULL,NULL,0,'docstatus=1',NULL,'prevdoc_docname'),('TMD/0000005','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','table_mapper_details','DocType Mapper',0,'Delivery Note Item','Installation Note Item','delivery_note_details','installed_item_details',1,'qty > ifnull(installed_qty,0) and docstatus = 1',NULL,NULL),('TMD/0000006','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','table_mapper_details','DocType Mapper',1,'Delivery Note','Installation Note',NULL,NULL,0,'docstatus = 1',NULL,NULL),('TMD/0000007','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','table_mapper_details','DocType Mapper',1,'Delivery Note','Sales Invoice',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000008','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','table_mapper_details','DocType Mapper',2,'Delivery Note Item','Sales Invoice Item','delivery_note_details','entries',1,'(ifnull(amount, 0) = 0 or amount > ifnull(billed_amt, 0)) and docstatus = 1',NULL,NULL),('TMD/0000009','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','table_mapper_details','DocType Mapper',3,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null',NULL,NULL),('TMD/0000010','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','table_mapper_details','DocType Mapper',4,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null',NULL,NULL),('TMD/0000011','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','table_mapper_details','DocType Mapper',1,'Opportunity','Quotation',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000012','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','table_mapper_details','DocType Mapper',2,'Opportunity Item','Quotation Item','enq_details','quotation_details',1,'docstatus=1',NULL,NULL),('TMD/0000014','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','table_mapper_details','DocType Mapper',1,'Purchase Request','Purchase Order','','',0,'docstatus = 1','','prevdoc_docname'),('TMD/0000015','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','table_mapper_details','DocType Mapper',2,'Purchase Request Item','Purchase Order Item','indent_details','po_details',1,'qty > ifnull(ordered_qty,0) and docstatus =1','prevdoc_doctype',''),('TMD/0000016','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Lead-Customer','table_mapper_details','DocType Mapper',0,'Lead','Customer',NULL,NULL,0,'name is not null','',''),('TMD/0000017','2010-08-08 17:09:35','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','table_mapper_details','DocType Mapper',1,'Lead','Opportunity',NULL,NULL,0,'name is not null','',''),('TMD/0000022','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','table_mapper_details','DocType Mapper',1,'Purchase Order','Purchase Invoice',NULL,NULL,0,'docstatus =1',NULL,NULL),('TMD/0000023','2010-08-08 17:09:35','2012-05-08 11:38:11','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','table_mapper_details','DocType Mapper',2,'Purchase Order Item','Purchase Invoice Item','po_details','entries',1,'ifnull(billed_qty,0) < qty and docstatus = 1',NULL,NULL),('TMD/0000024','2010-08-08 17:09:35','2012-05-08 11:38:11','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','table_mapper_details','DocType Mapper',3,'Purchase Taxes and Charges','Purchase Taxes and Charges','purchase_tax_details','purchase_tax_details',2,'docstatus =1',NULL,NULL),('TMD/0000025','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','table_mapper_details','DocType Mapper',1,'Purchase Order Item','Purchase Receipt Item','po_details','purchase_receipt_details',1,'docstatus=1 and qty > ifnull(received_qty,0)','prevdoc_doctype','prevdoc_detail_docname'),('TMD/0000026','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','table_mapper_details','DocType Mapper',2,'Purchase Order','Purchase Receipt',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000027','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','table_mapper_details','DocType Mapper',3,'Purchase Taxes and Charges','Purchase Taxes and Charges','purchase_tax_details','purchase_tax_details',2,'docstatus = 1',NULL,NULL),('TMD/0000028','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','table_mapper_details','DocType Mapper',1,'Purchase Receipt Item','Purchase Invoice Item','purchase_receipt_details','entries',1,'ifnull(billed_qty,0) < qty',NULL,NULL),('TMD/0000029','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','table_mapper_details','DocType Mapper',2,'Purchase Receipt','Purchase Invoice',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000030','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','table_mapper_details','DocType Mapper',3,'Purchase Taxes and Charges','Purchase Taxes and Charges','purchase_tax_details','purchase_tax_details',2,'docstatus=1',NULL,NULL),('TMD/0000031','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','table_mapper_details','DocType Mapper',0,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null',NULL,NULL),('TMD/0000032','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','table_mapper_details','DocType Mapper',1,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null',NULL,NULL),('TMD/0000033','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','table_mapper_details','DocType Mapper',2,'Quotation Item','Sales Order Item','quotation_details','sales_order_details',1,'name is not null','prevdoc_doctype',NULL),('TMD/0000034','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','table_mapper_details','DocType Mapper',3,'Quotation','Sales Order',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000035','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','table_mapper_details','DocType Mapper',1,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null',NULL,NULL),('TMD/0000036','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','table_mapper_details','DocType Mapper',2,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null',NULL,NULL),('TMD/0000037','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','table_mapper_details','DocType Mapper',3,'Sales Order Item','Delivery Note Item','sales_order_details','delivery_note_details',1,'qty > ifnull(delivered_qty,0) and docstatus = 1','prevdoc_doctype','prevdoc_detail_docname'),('TMD/0000038','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','table_mapper_details','DocType Mapper',4,'Sales Order','Delivery Note',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000041','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Schedule','table_mapper_details','DocType Mapper',1,'Sales Order Item','Maintenance Schedule Item','sales_order_details','item_maintenance_detail',1,'docstatus =1',NULL,NULL),('TMD/0000042','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Schedule','table_mapper_details','DocType Mapper',2,'Sales Order','Maintenance Schedule',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000043','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','table_mapper_details','DocType Mapper',1,'Sales Order Item','Maintenance Visit Purpose','sales_order_details','maintenance_visit_details',1,'docstatus=1',NULL,NULL),('TMD/0000044','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','table_mapper_details','DocType Mapper',2,'Sales Order','Maintenance Visit',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000047','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','table_mapper_details','DocType Mapper',1,'Sales Order','Sales Invoice',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000048','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','table_mapper_details','DocType Mapper',2,'Sales Order Item','Sales Invoice Item','sales_order_detail','entries',1,'(ifnull(amount, 0) = 0 or amount > ifnull(billed_amt, 0)) and docstatus = 1',NULL,NULL),('TMD/0000049','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','table_mapper_details','DocType Mapper',3,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null',NULL,NULL),('TMD/0000058','2010-08-09 09:44:01','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','table_mapper_details','DocType Mapper',2,'Delivery Note','Installation Note Item',NULL,'installed_item_details',2,'docstatus = 1','prevdoc_doctype','prevdoc_docname'),('TMD/0000059','2010-09-01 15:47:59','2012-05-08 11:38:10','Administrator','ashwini@webnotestech.com',0,'Appraisal Template-Appraisal','table_mapper_details','DocType Mapper',1,'Appraisal Template Goal','Appraisal Goal','kra_sheet','appraisal_details',0,'name is not Null','',''),('TMD/0000060','2010-09-01 15:47:59','2010-09-01 15:47:59','Administrator','harshada@webnotestech.com',0,'Project-Delivery Note','table_mapper_details','DocType Mapper',1,'Project','Delivery Note',NULL,NULL,0,'name is not null','',''),('TMD/0000061','2010-09-01 15:47:59','2012-05-08 11:38:10','Administrator','ashwini@webnotestech.com',0,'Project-Sales Invoice','table_mapper_details','DocType Mapper',1,'Project','Sales Invoice',NULL,NULL,0,'name is not null','',''),('TMD/0000062','2010-09-01 15:47:59','2010-09-01 15:47:59','Administrator','ashwini@webnotestech.com',0,'Project-Sales Order','table_mapper_details','DocType Mapper',1,'Project','Sales Order',NULL,NULL,0,'name is not null','',''),('TMD/0000063','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','table_mapper_details','DocType Mapper',1,'Salary Structure','Salary Slip',NULL,NULL,0,'name is not null','',''),('TMD/0000064','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','table_mapper_details','DocType Mapper',2,'Salary Structure Earning','Salary Slip Earning','earning_details','earning_details',1,'name is not null','',''),('TMD/0000065','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','table_mapper_details','DocType Mapper',3,'Salary Structure Deduction','Salary Slip Deduction','deduction_details','deduction_details',2,'name is not null','',''),('TMD/0000070','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','table_mapper_details','DocType Mapper',1,'Sales Invoice','Delivery Note','',NULL,0,'docstatus=1','',''),('TMD/0000071','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','table_mapper_details','DocType Mapper',2,'Sales Invoice Item','Delivery Note Item','entries','delivery_note_details',1,'docstatus = 1','',''),('TMD/0000072','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','table_mapper_details','DocType Mapper',3,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null','',''),('TMD/0000073','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','table_mapper_details','DocType Mapper',4,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null','',''),('TMD/0000074','2011-02-21 09:23:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','table_mapper_details','DocType Mapper',4,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null',NULL,NULL),('TMD/0000075','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','table_mapper_details','DocType Mapper',1,'Delivery Note','Packing Slip',NULL,NULL,0,'docstatus=0',NULL,NULL),('TMD/0000076','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','table_mapper_details','DocType Mapper',2,'Delivery Note Item','Packing Slip Item','delivery_note_details','item_details',1,'IFNULL(packed_qty, 0) < IFNULL(qty, 0)',NULL,NULL),('TMD/0000079','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','table_mapper_details','DocType Mapper',1,'Maintenance Schedule Item','Maintenance Visit Purpose','item_maintenance_detail','maintenance_visit_details',1,'docstatus=1',NULL,NULL),('TMD/0000080','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','table_mapper_details','DocType Mapper',2,'Maintenance Schedule','Maintenance Visit',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000081','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','table_mapper_details','DocType Mapper',1,'Purchase Request','Supplier Quotation',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000082','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','table_mapper_details','DocType Mapper',2,'Purchase Request Item','Supplier Quotation Item','indent_details','quotation_items',1,'docstatus =1','prevdoc_doctype',NULL),('TMD/0000083','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','table_mapper_details','DocType Mapper',1,'Supplier Quotation','Purchase Order',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000084','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','table_mapper_details','DocType Mapper',2,'Supplier Quotation Item','Purchase Order Item','quotation_details','po_details',1,'docstatus = 1','prevdoc_doctype',NULL),('TMD/0000085','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','table_mapper_details','DocType Mapper',3,'Purchase Taxes and Charges','Purchase Taxes and Charges','purchase_tax_details','purchase_tax_details',2,'docstatus = 1',NULL,NULL); +/*!40000 ALTER TABLE `tabTable Mapper Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTag` +-- + +DROP TABLE IF EXISTS `tabTag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTag` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `tag_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTag` +-- + +LOCK TABLES `tabTag` WRITE; +/*!40000 ALTER TABLE `tabTag` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTarget Detail` +-- + +DROP TABLE IF EXISTS `tabTarget Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTarget Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `item_group` varchar(180) default NULL, + `fiscal_year` varchar(180) default NULL, + `target_qty` decimal(18,6) default NULL, + `target_amount` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `item_group` (`item_group`), + KEY `fiscal_year` (`fiscal_year`), + KEY `target_amount` (`target_amount`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTarget Detail` +-- + +LOCK TABLES `tabTarget Detail` WRITE; +/*!40000 ALTER TABLE `tabTarget Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTarget Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTask` +-- + +DROP TABLE IF EXISTS `tabTask`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTask` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `subject` varchar(180) default NULL, + `status` varchar(180) default NULL, + `opening_date` date default NULL, + `review_date` date default NULL, + `closing_date` date default NULL, + `category` varchar(180) default NULL, + `external_or_internal` varchar(180) default NULL, + `priority` varchar(180) default NULL, + `senders_name` varchar(180) default NULL, + `senders_email` varchar(180) default NULL, + `senders_contact_no` varchar(180) default NULL, + `senders_company` varchar(180) default NULL, + `project` varchar(180) default NULL, + `start_date` date default NULL, + `scheduled_date` date default NULL, + `allocated_to` varchar(180) default NULL, + `assignee_email` varchar(180) default NULL, + `description` text, + `first_creation_flag` int(11) default NULL, + `second_creation_flag` int(11) default NULL, + `date` date default NULL, + `type` varchar(180) default NULL, + `reason` mediumtext, + `document_num` varchar(180) default NULL, + `ticket_by` varchar(180) default NULL, + `ticket_by_email` varchar(180) default NULL, + `customer` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `allocated_to_name` varchar(180) default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `exp_start_date` date default NULL, + `exp_end_date` date default NULL, + `exp_total_hrs` varchar(180) default NULL, + `allocated_budget` decimal(18,6) default NULL, + `act_start_date` date default NULL, + `act_end_date` date default NULL, + `act_total_hrs` varchar(180) default NULL, + `actual_budget` decimal(18,6) default NULL, + `task_email_notify` int(1) default NULL, + `sent_reminder` varchar(180) default NULL, + `allocated_to_old` varchar(180) default NULL, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `priority` (`priority`), + KEY `senders_name` (`senders_name`), + KEY `scheduled_date` (`scheduled_date`), + KEY `parent` (`parent`), + KEY `exp_end_date` (`exp_end_date`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTask` +-- + +LOCK TABLES `tabTask` WRITE; +/*!40000 ALTER TABLE `tabTask` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTask` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTerms and Conditions` +-- + +DROP TABLE IF EXISTS `tabTerms and Conditions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTerms and Conditions` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `title` varchar(180) default NULL, + `terms` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTerms and Conditions` +-- + +LOCK TABLES `tabTerms and Conditions` WRITE; +/*!40000 ALTER TABLE `tabTerms and Conditions` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTerms and Conditions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTerritory` +-- + +DROP TABLE IF EXISTS `tabTerritory`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTerritory` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `territory_name` varchar(180) default NULL, + `territory_manager` varchar(180) default NULL, + `parent_territory` varchar(180) default NULL, + `is_group` varchar(180) default NULL, + `lft` int(11) default NULL, + `rgt` int(11) default NULL, + `old_parent` varchar(180) default NULL, + `distribution_id` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `territory_manager` (`territory_manager`), + KEY `lft` (`lft`), + KEY `rgt` (`rgt`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTerritory` +-- + +LOCK TABLES `tabTerritory` WRITE; +/*!40000 ALTER TABLE `tabTerritory` DISABLE KEYS */; +INSERT INTO `tabTerritory` VALUES ('All Territories','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'All Territories',NULL,'','Yes',1,4,'',NULL,NULL),('Default','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Default',NULL,'All Territories','No',2,3,'All Territories',NULL,NULL); +/*!40000 ALTER TABLE `tabTerritory` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTimesheet Detail` +-- + +DROP TABLE IF EXISTS `tabTimesheet Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTimesheet Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `project_name` varchar(180) default NULL, + `task_name` varchar(180) default NULL, + `task_id` varchar(180) default NULL, + `customer_name` varchar(180) default NULL, + `act_start_time` time default NULL, + `act_end_time` time default NULL, + `act_total_hrs` varchar(180) default NULL, + `other_details` text, + `activity_type` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `project_name` (`project_name`), + KEY `task_id` (`task_id`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTimesheet Detail` +-- + +LOCK TABLES `tabTimesheet Detail` WRITE; +/*!40000 ALTER TABLE `tabTimesheet Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTimesheet Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTimesheet` +-- + +DROP TABLE IF EXISTS `tabTimesheet`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTimesheet` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(180) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `status` varchar(180) default 'Draft', + `timesheet_date` date default NULL, + `amended_from` varchar(180) default NULL, + `amendment_date` date default NULL, + `notes` text, + `file_list` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `status` (`status`), + KEY `timesheet_date` (`timesheet_date`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTimesheet` +-- + +LOCK TABLES `tabTimesheet` WRITE; +/*!40000 ALTER TABLE `tabTimesheet` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTimesheet` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabToDo` +-- + +DROP TABLE IF EXISTS `tabToDo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabToDo` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `description` text, + `date` date default NULL, + `priority` varchar(180) default NULL, + `reference_type` varchar(180) default NULL, + `reference_name` varchar(180) default NULL, + `checked` int(1) default NULL, + `role` varchar(180) default NULL, + `assigned_by` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabToDo` +-- + +LOCK TABLES `tabToDo` WRITE; +/*!40000 ALTER TABLE `tabToDo` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabToDo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabTop Bar Item` +-- + +DROP TABLE IF EXISTS `tabTop Bar Item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabTop Bar Item` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `url` varchar(180) default NULL, + `parent_label` varchar(180) default NULL, + `custom_page` varchar(180) default NULL, + `label` varchar(180) default NULL, + `target` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabTop Bar Item` +-- + +LOCK TABLES `tabTop Bar Item` WRITE; +/*!40000 ALTER TABLE `tabTop Bar Item` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabTop Bar Item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabUOM Conversion Detail` +-- + +DROP TABLE IF EXISTS `tabUOM Conversion Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabUOM Conversion Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `uom` varchar(180) default NULL, + `conversion_factor` decimal(18,6) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabUOM Conversion Detail` +-- + +LOCK TABLES `tabUOM Conversion Detail` WRITE; +/*!40000 ALTER TABLE `tabUOM Conversion Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabUOM Conversion Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabUOM` +-- + +DROP TABLE IF EXISTS `tabUOM`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabUOM` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `uom_name` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabUOM` +-- + +LOCK TABLES `tabUOM` WRITE; +/*!40000 ALTER TABLE `tabUOM` DISABLE KEYS */; +INSERT INTO `tabUOM` VALUES ('Box','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Box',NULL),('Ft','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Ft',NULL),('Kg','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Kg',NULL),('Ltr','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Ltr',NULL),('Mtr','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Mtr',NULL),('Nos','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Nos',NULL),('Pair','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Pair',NULL),('Set','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Set',NULL); +/*!40000 ALTER TABLE `tabUOM` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabUserRole` +-- + +DROP TABLE IF EXISTS `tabUserRole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabUserRole` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `role` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabUserRole` +-- + +LOCK TABLES `tabUserRole` WRITE; +/*!40000 ALTER TABLE `tabUserRole` DISABLE KEYS */; +INSERT INTO `tabUserRole` VALUES ('UR00001','2009-05-12 11:19:22','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',1,'Administrator'),('UR00002','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',2,'System Manager'),('UR00003','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',3,'Sales User'),('UR00004','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',4,'Sales Master Manager'),('UR00005','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',5,'Sales Manager'),('UR00006','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',6,'Quality Manager'),('UR00007','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',7,'Purchase User'),('UR00008','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',8,'Purchase Master Manager'),('UR00009','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',9,'Purchase Manager'),('UR00010','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',10,'Projects User'),('UR00011','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',11,'Production User'),('UR00012','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',12,'Production Manager'),('UR00013','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',13,'Material User'),('UR00014','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',14,'Material Master Manager'),('UR00015','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',15,'Material Manager'),('UR00016','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',16,'Maintenance User'),('UR00017','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',17,'Maintenance Manager'),('UR00018','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',18,'HR User'),('UR00019','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',19,'HR Manager'),('UR00020','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',20,'Accounts User'),('UR00021','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',21,'Accounts Manager'),('UR00022','2012-02-13 19:12:20','2012-02-13 19:12:20','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,NULL),('UR00023','2012-02-14 13:03:40','2012-02-14 13:03:40','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Website Manager'),('UR00024','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Accounts Manager'),('UR00025','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Accounts User'),('UR00026','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Blogger'),('UR00027','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'HR Manager'),('UR00028','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'HR User'),('UR00029','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Maintenance User'),('UR00030','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Maintenance Manager'),('UR00031','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material Manager'),('UR00032','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material User'),('UR00033','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material Master Manager'),('UR00034','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Production Manager'),('UR00035','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Production User'),('UR00036','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Projects User'),('UR00037','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase Manager'),('UR00038','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase User'),('UR00039','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase Master Manager'),('UR00040','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Quality Manager'),('UR00041','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales Manager'),('UR00042','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales User'),('UR00043','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales Master Manager'),('UR00044','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Support Manager'),('UR00045','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Support Team'),('UR00046','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'System Manager'),('UR00047','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Website Manager'),('UR00048','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Accounts Manager'),('UR00049','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Accounts User'),('UR00050','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Blogger'),('UR00051','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'HR Manager'),('UR00052','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'HR User'),('UR00053','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Maintenance User'),('UR00054','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Maintenance Manager'),('UR00055','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material Manager'),('UR00056','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material User'),('UR00057','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material Master Manager'),('UR00058','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Production Manager'),('UR00059','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Production User'),('UR00060','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Projects User'),('UR00061','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase Manager'),('UR00062','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase User'),('UR00063','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase Master Manager'),('UR00064','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Quality Manager'),('UR00065','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales Manager'),('UR00066','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales User'),('UR00067','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales Master Manager'),('UR00068','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Support Manager'),('UR00069','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Support Team'),('UR00070','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'System Manager'),('UR00071','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Website Manager'); +/*!40000 ALTER TABLE `tabUserRole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabWarehouse Type` +-- + +DROP TABLE IF EXISTS `tabWarehouse Type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabWarehouse Type` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `warehouse_type` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `warehouse_type` (`warehouse_type`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabWarehouse Type` +-- + +LOCK TABLES `tabWarehouse Type` WRITE; +/*!40000 ALTER TABLE `tabWarehouse Type` DISABLE KEYS */; +INSERT INTO `tabWarehouse Type` VALUES ('Default Warehouse Type','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Warehouse Type',NULL),('Fixed Asset','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Fixed Asset',NULL),('Rejected','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Rejected',NULL),('Reserved','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Reserved',NULL),('Sample','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Sample',NULL),('Stores','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Stores',NULL),('WIP Warehouse','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'WIP Warehouse',NULL); +/*!40000 ALTER TABLE `tabWarehouse Type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabWarehouse` +-- + +DROP TABLE IF EXISTS `tabWarehouse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabWarehouse` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `warehouse_name` varchar(180) default NULL, + `warehouse_type` varchar(180) default NULL, + `company` varchar(180) default NULL, + `email_id` varchar(180) default NULL, + `auto_indent_mail` varchar(180) default NULL, + `phone_no` varchar(180) default NULL, + `mobile_no` varchar(180) default NULL, + `address_line_1` varchar(180) default NULL, + `address_line_2` varchar(180) default NULL, + `country` varchar(180) default NULL, + `state` varchar(180) default NULL, + `city` varchar(180) default NULL, + `pin` int(11) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `company` (`company`), + KEY `parent` (`parent`), + KEY `country` (`country`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabWarehouse` +-- + +LOCK TABLES `tabWarehouse` WRITE; +/*!40000 ALTER TABLE `tabWarehouse` DISABLE KEYS */; +INSERT INTO `tabWarehouse` VALUES ('Default Warehouse','2010-08-08 17:49:05','2010-08-09 08:54:42','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Warehouse','Default Warehouse Type','',NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL,NULL,NULL); +/*!40000 ALTER TABLE `tabWarehouse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabWeb Cache` +-- + +DROP TABLE IF EXISTS `tabWeb Cache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabWeb Cache` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `doc_name` varchar(180) default NULL, + `doc_type` varchar(180) default NULL, + `html` longtext, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabWeb Cache` +-- + +LOCK TABLES `tabWeb Cache` WRITE; +/*!40000 ALTER TABLE `tabWeb Cache` DISABLE KEYS */; +INSERT INTO `tabWeb Cache` VALUES ('404','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('blog','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('home','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'home','Web Page',''),('index','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('login','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('products','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('unsubscribed','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''); +/*!40000 ALTER TABLE `tabWeb Cache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabWeb Page` +-- + +DROP TABLE IF EXISTS `tabWeb Page`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabWeb Page` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `next_page` varchar(180) default NULL, + `title` varchar(180) default NULL, + `side_section` text, + `file_list` text, + `head_section` text, + `main_section` text, + `layout` varchar(180) default NULL, + `insert_code` int(1) default NULL, + `javascript` text, + `text_align` varchar(180) default NULL, + `insert_style` int(1) default NULL, + `page_name` varchar(180) default NULL, + `css` text, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabWeb Page` +-- + +LOCK TABLES `tabWeb Page` WRITE; +/*!40000 ALTER TABLE `tabWeb Page` DISABLE KEYS */; +INSERT INTO `tabWeb Page` VALUES ('home','2012-02-13 19:12:21','2012-10-02 13:13:43','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','

    Links to other pages

    ',NULL,'

    Your Headline

    ','

    Some introduction about your company

    ',NULL,NULL,NULL,NULL,NULL,'home',NULL,NULL); +/*!40000 ALTER TABLE `tabWeb Page` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabWorkflow Action Detail` +-- + +DROP TABLE IF EXISTS `tabWorkflow Action Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabWorkflow Action Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `action_field` varchar(180) default NULL, + `action_value` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabWorkflow Action Detail` +-- + +LOCK TABLES `tabWorkflow Action Detail` WRITE; +/*!40000 ALTER TABLE `tabWorkflow Action Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabWorkflow Action Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabWorkflow Rule Detail` +-- + +DROP TABLE IF EXISTS `tabWorkflow Rule Detail`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabWorkflow Rule Detail` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `rule_field` varchar(180) default NULL, + `operator` varchar(180) default NULL, + `value` varchar(180) default NULL, + `comparing_field` varchar(180) default NULL, + `message` varchar(180) default NULL, + `exception` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabWorkflow Rule Detail` +-- + +LOCK TABLES `tabWorkflow Rule Detail` WRITE; +/*!40000 ALTER TABLE `tabWorkflow Rule Detail` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabWorkflow Rule Detail` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabWorkflow Rule` +-- + +DROP TABLE IF EXISTS `tabWorkflow Rule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabWorkflow Rule` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `rule_name` varchar(180) default NULL, + `rule_status` varchar(180) default NULL, + `select_form` varchar(180) default NULL, + `rule_priority` int(11) default NULL, + `extra_condition` text, + `message` text, + `raise_exception` varchar(180) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `select_form` (`select_form`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabWorkflow Rule` +-- + +LOCK TABLES `tabWorkflow Rule` WRITE; +/*!40000 ALTER TABLE `tabWorkflow Rule` DISABLE KEYS */; +/*!40000 ALTER TABLE `tabWorkflow Rule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabWorkstation` +-- + +DROP TABLE IF EXISTS `tabWorkstation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabWorkstation` ( + `name` varchar(120) NOT NULL, + `creation` datetime default NULL, + `modified` datetime default NULL, + `modified_by` varchar(40) default NULL, + `owner` varchar(40) default NULL, + `docstatus` int(1) default '0', + `parent` varchar(120) default NULL, + `parentfield` varchar(120) default NULL, + `parenttype` varchar(120) default NULL, + `idx` int(8) default NULL, + `trash_reason` text, + `workstation_name` varchar(180) default NULL, + `warehouse` varchar(180) default NULL, + `description` text, + `capacity` varchar(180) default NULL, + `capacity_units` varchar(180) default NULL, + `hour_rate_labour` decimal(18,6) default NULL, + `hour_rate_electricity` decimal(18,6) default NULL, + `hour_rate_consumable` decimal(18,6) default NULL, + `hour_rate_rent` decimal(18,6) default NULL, + `overhead` decimal(18,6) default NULL, + `hour_rate` decimal(18,6) default NULL, + `_user_tags` varchar(180) default NULL, + PRIMARY KEY (`name`), + KEY `parent` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabWorkstation` +-- + +LOCK TABLES `tabWorkstation` WRITE; +/*!40000 ALTER TABLE `tabWorkstation` DISABLE KEYS */; +INSERT INTO `tabWorkstation` VALUES ('Default Workstation','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Workstation','Default Warehouse','Default Workstation',NULL,NULL,'0.000000','0.000000','0.000000','0.000000','0.000000','0.000000',NULL); +/*!40000 ALTER TABLE `tabWorkstation` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2012-10-02 9:51:20 diff --git a/master.sql.gz b/master.sql.gz deleted file mode 100644 index f331784cf176a40251975498bd9b9d3ecbed9903..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 222996 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%0AXRl zWyvkmtmSf*HmH?Hei3z9V);|0QNyz@T8M&)6YL724!T1k>dEoGdW&7+ElX$Ljwmu% zGr+MoV)X@w@Q6WJnpV`*>TN3v{qyY33Bts2VLD%cRVE{SIO_c?=hI0UG96K6FlxXk z&>n=bq1{MKuj*N5JmW6ig}I|Jo1iK7S{YaR~7Q(>Hw^~hU(m8L1}j_J=< z*&P=~Q$1Wd;;e(b(Q$QnVbeXNBhs3QCEF8%$oBRQs;kvadcRZi1|I!n>A1Tj1e3f4 zo`4=#9zJVC(y(!#2Ij-Z0MN2M5E&9X%q%aa2;NsXjv_~^M3GAOW66PX9IkT@ z4=ReVu;yVM3wU9FFx#X6>?KL>sf#Lu`O*i?z?;682EZLLe%QOO8F?2URB34wS_heq zI6v&yw-B+kCMwv#1K7JyMcW|-G;KVoC?dp~hjjK0MHW3)L|-+J z((&QN7Htk@M~e#x)OwHsMvoN%SIr|bFc4z2dH?8W1%Lyt%HoXnnuQsa{ZmUlp$NNb z9+1%ihbT~lUo{WPI5lkOrNIe$nbhp;o|d7_+)IFH@FPX=Rr8ok_6^)n>mTB#4!qQ* zQ11m(N3jlL3_gUT>7t&b9Mc#}iXkHcF*OI&^K6P~$sd#1PkX z6E3}ZcsHl6%`w+mVox0xJf&Dhu?bgrv|0@9C(;pS9nt4;4aa!)SP;UaBc?o_wc@;J zpH7hh}57e%tGdXe%YA?iGr)1 zWR;U;^AG@8UOqr~i1DwmOY-eHTX7>qH5vp0SrGy08{fgOq=!5jeCmr($W^!iFf~d#BEb-dl$w!K`*M2MhS@_s1Ue$U5Lpy7 z;_ilgVA3tvO(w@WCW^qK<}n#l8yHN==mn7#T^=VyfOJGrA-bq2KaUPX3#W(&Y90?n zRWmlOU5WtNc#3VAtDfr9g$;*CrT|o(XuHF<`3a+vBH*p)F>1&g3p2T8&6i0Zq@T} zb+7A)MMLyYy!_q(Edm5wrkoPE69C4QR?712Bc{{OI^x<#IR|&MLm?3zG4G=h8%eZl zBq411@?l3i(sc;?yFFFeiY`CMB5)DBp>JD z-Cf%3-yzBQe0Rs;p(07uS*o$9wW?EuuQU(GQ3ejC;t}!4sC_a9$`u-+;&$=fI(Y^= z#`zEM!+-m0e;;dQgj+{+{AecPwg}^7zQDdpGT5D>bmx?&A0~bs@%E!*>1sH2iK19U zi;h%EpSQjOQbfx%j^wPbS{|2y$=23tJd3|#AJUHK{cMm~Pp1e7OKuT3X<7Sdb;Rjs z!*sEoHlHt*1)Ped+FF@wi@T0^{tOJSNxYo7_jT(9u_sKnCp41ITauGbxh2nN1P>Xc zJ|dfu6Gh-k^Qeuxb&ii(-ae7%X9R!QA%Q`Un3{KwU)Ah=$b%y8qy=;i)lWXcqfzBDwH-_>xNWW_u{&eA z;7(uaME-yD_Vyw#4b@$zV{}GzGcNVbJAy9^mwGUDMuNd#zTgLb{@|{69yx~jBK1)C z8%-sn%D!88givP$c~Hakj}-}{2v=xB+1Jl_BX7$`xjKLnoxkYYfmin$4&4z_ov~-R z7kwQE`no1WeCZ|klLRfl%rNIzf@0Q#el!312=4B*(0J!-37&Fr;3?+yr5N~EET!~c zP76zBz;Ycdi$}h3zd#&v<_g!rF6oIIbFQ4tR~Nr@6mK0nVc9_20ORjI(*bKZB;~OwDFlnwcVoQ;^doUJuU0Z9`&XeMW99-xQx4SicYG~=r5g- zdvK$Fn9k43<-pk;HbKXcbQkDT;jl^$Ht};KBxgOe9s}9z2TtW1Ja>q%s@6t-XX_Ji z{r|1_T}L=|wsOh1{67%S>vbG_NwDl}c>})w57F^D!lbhW4S4o%-Sv7i>kdVrN*jCi zeTCTE5%jPMz1T&A6beO%(bQBRLZQuhM{RK0&rW-r*jwF=JDyK{Ooz}pr2UTa(eoSNK z;=$LW8sU;5C)W)l5L*hKTZ&R=bRNPL5b?B1Hfu%ia0E47R&&R4cQQa>a!>QWCOCpHt}=6HTFiGw{KvC{4a10F z>5Sz=)Pwzk4(3jsG#yJh(`H3rN*gDP`W6D~)kUK-Y7PMnT8yCA_P|jDp|k-EBH1y@ z-{IlHF47c<-|RP$dzah2_~y#@p3b;6L_YA* zGGuoPBPw#K_U$ZouCht2FA=QBT@y#+z3fw}-XkZ~a%MDb6_|0&h;j;*O4)JzTB}t> zG)fy#OxlbeSL2|*x!`e%P?k2poVF6isnU#qhKk0Q-dtl;nKcZEjPKfQqfRdKMUWj;spD`|5)w|6Le4 z_x^)N-ut=ZC(gZx(qq&@#FtiHN0Cf=Q3wsh11xfx ztlhnAkZ&~vV~EEQFCu?S#nGG0T{cg{N0`>!h2C-0?{B|q&sjD&wHhO|Ncl4X{`|`h zkzF5Ok_4SCMa2lqNu%Br0>}QA*#kwyOIwi4(k_z5LUMZf)XH;$ z@-{cXMG@)J7B0se0q!fBJJ8N&)Dtf?g|G@98??8C`t^kqATr_dKRS>uis+TrFd2xL z2&3uQ8}H8DtrG{Zc=-chQz%%&+Oc$g8uV*TP>N8O)*ypG#M$xX38iSS$gZ{;OXhB=F!-d|M&Um}b48i|1-W%ZH-qBF zAI;AyuS(jizbsHhwX}u>;=DV&`S9!K^B%j-b_bkOXq%1@(d-W0a$N93vyHrmWw@B5 z{}P;tzBo>Ccri(tlKq;JuCR}eN)h7H8bn8#=CeVQJNS>?5K78b`7IC@*($_(gJG^i zRctN{6d^IKAvP0`AQN-}F1ovwD^}d|>NoRSm;*);7tG^ zl6a4S%BjC;@J0aKIbC@R;jbvH2Dy)+#VaLPv`@3Mr!Y%5c4FuTyS2yWH6+rP&g&;O z>*cd$PFRc1qxNCgiqM!gU>F|K{+1%P_NJ90Afy#&#)r6JrHKA$1(3-BZB{AbIa(lq5a*ZqgdrGbu6k~3sejUVC9KhL^a=;E8p zNv^48qqV>;hsuSHOXg zkR&NZrypVB(Fvwp4-GlPHH8ME_#O#&-=ksg`F&AgklmQBHu&kCEuHWVd;Zx{`O4gF zLK?0}D+0qn5n|C4D%h=06!V>ucW}cjqB1#U-plJiRoyS-G}aUXh|q8R<#O$@hMwa) zjDhp)Gd6~D*RZ>oEvAP@OM*krU`;`S$o$$(zx+ox?Gj?TRRrX$(HL9mXI&I!W3bn8 zQKSV#9WO*|K$Ijwix5_v0B?}b)|XjMqA#dMk1&nxUP z(1Ay80vavW@hsG}P1gngDa8(J9zGoLaMTW?^yY_B^cZe&%-_H=Tp{LcxJcF1ePB-Vs*Gy2EVO8IEwNEQ+ek{=ht9?uOg_=L88RJ4@dxP92$$f>r3ZU47CdH z1|{zN0I|6pc)xTLXX`~9KaR2Yb?iqS7hAcpo?ueM`7?&}6oRp#HZw2s7;uT(_!hvf z?qznlELeQRw@@cF3{wX2XgXsL#2FhLrpBK0;I4OG8kf!8CE>lxxI zaG$O8W5efg$)nG)2*E2R9LSkRTR;NFTfTHiCt)pi+{hyzeisw56eHqu^B2@(7OR`T z2;ba^c58TxYbfG5;P((#n&fq#JNF?x{FCdfBJb|6H-Gu>@4{&FQ)|aX5iZe~1{3A4!+SrN zyLUKrdG90KIVX2%AoJc?PaY3+aUoM(f<;3fS}^Xu4Ma)I%WsF)ZWj$%R)lhGIwW2%k9 z!;Gn^KGK^^&ZXxrozJKjWv^))`n-ZDT{w9wiz@f2*qeaiHyZCaCLvZuvzvfBZfM9nq0aiH*x8Rxd z;;xpw{mop2%YqWlUdg-})70w5zkR?)Q}TU%9u}`xzNc?D2+=?maL^bG;5Q;jqL8UQ z&frEJEzfk*B{bJq(?{UhUkCw%OEOh-CP(HmM60d!8ZQ~;#u`6nO$1iW8-ML@(#F#q znnwPVw5nm_C3MhO<0q_%bVH6bp6=9Ta%4N))k3ab%O&*BSj(q%{8-3r88p9qJ;xQY z=zPW?K=Xb8!99Br)rtehnFNgJq0=$|oE;Dj2iWf%U|C3ZU(ncG940kSZA=GYL}+XhSj!C&rNOo`6K zJAy~2t7KVlJ#%mj*x<;5LPk#p8fiJIedmA4bFj2h?MyZtJT@sK?BU~69gzB-UK~OX zu}K~WoIOTlXO@0rx=)+SllKQGYp6fiq>`{@51vWrJOZ9c==>t2R+$R6(P*0#axfvy zqdXBBP5GmcYNOHZvqun9q-)BT%@N6?Md)4jco*y0)hfb1yr(`@9Li$NHEi!i6mGqU z?vdf$A-T4I98;f%(H!Te*-jWa??@6O4%xu7s2tA6SL6p}4J{s~#gXTh*}!vE-J_pk z)jrYG!D`5ZHKr%~X;8;(^RqbB`X@yu|5=>>{7{n%4cK4*deh?_wATuJ?K4*$_{KtzP*OUD@Peo8*Yo;qbUXDxZJ*of0EVWp2VxR} z%|}J^5P3XEoq-9S1<3T5F&zQhS7I=dgs|}#doZt7ZW9hmKrji-RNsub-o#yhiXX~C z)mebxhM1UTe|KehLvAf&4jf95&jQR>*3tIbIg>&IT|8Zv8lCa~Jbwn3=!21Ezh_ox02_ zIiAecB71CQ>aEji%viGEb_Ov(3yw_)9{y3{IlJH~bP-NhrdPZBdoNZ{o92h`hO!`a z2Ad96O}G6rW2XAOe~(7D&tJBjcQ8ZB zg1VV(I|ML`V?VgZJ^3tluGqDZEc4rhrMu|l4~(tMue~ZWK9a+1ixNfyuEZzPp;mYB)_siX(qv$!q$KrEmm`$d4=yC zP6P7!HoAyiCYT=cy+}_fGlpANp%q>hPYDU;}=fI+9!#!h-D^m0FoHY7pQ^Qyd9tXIdy{|Oq^4e zC>Ch!=dT_bmX(P3_@=v@hvdYUhz6M}df5V2D5NY>nMn{vK$7S2?snrR0)f5~6X@{R zw-f9Ef?Wy;2P9oMkUWn(MkDe0=H{jCyAsbh^7zz(sNFT&x{VGq+RX^ z2P9Xh;qw(5`*=}BaQMJ)bGdfpf?etehb3_{lQ3N0x)B56n&0Mf?SNpHJHlZ}GV-^P zkIh0c1{d@un`H+8yL1tpm6KL72cQ@L<`p!XWd#6PlrWRKZGG0tMYw%p?LQ^gnG8Fv zx62ntc&~X}wpx%)2by~*HB?HnAYUfiJ%kw$gZ;*jw`=#QyU9-$*2`qmN2$35mTdF8 zFxt2v;F#3~7Jt|slFKcg8+kdYhlgEiI2sFU0Qe_#!4CXth1ekl0vuWOq^0cAL|MEp zlgLc)T5;*S>kwGbS>U{3*J8S55bScr(G*Jx5Kkv)wX|4Kui%|Y3%e|Fbi`&s7q^}- zoKDznE_ct)&|oJ@7GKLGBH$$3{YqQRe8iu-U!6?O#Dp0 zpq@u^xt4l@oLHIyVJduUerS$&2A)zZV+jrU2rz}lQKqFiY4L`q6w6pbL)~r@Xuy_b z7^D6lZv6$yxIj0~HNDB?SZcnURhnx4af47qy8qN`znnuhYJbMBFgx%mCs1qm)&m9G zNBWoD%cA#k-HYZ)tkP!7siKu;4{0J5dLrLe8h8T`Hvzf534l?eJ02B~q&RPvK6;s( z08R(o1c+|m1aGj*8<=};0v2Nt-NWA3P4Et_s^w7ML9o- z0tJ@nH^7q`stddeqEhSd7UDRtC?LW&Qw4&r@y%p`vuu5{5ly6`nTJM7llJJb!&VQVf6FqUxDR4R#(#7vFlz^I>~NX zwqtc$wjwFXn=v#-HC08a7*~-Mk|kMd>~Vhk!Ni3GNq__|0JZu(y*d^NqN;$0xI6&n zoDcqe1g$oD39f)7uC&Yj>p_t+bbM%Ekd5{Mo{vXDXNBUCe`y$C682X*jHal{IkFX0 zXVgMx>pqYn56m~vM|LAV$giGtp&e+*qK;)cTebkeJn_+6$FOl41J(CnI{dQs57zl$$%jO zk-HDVq`sHrjzf`s*1TWj5;TlAWlCArP#N>h^}uK5TLZrPjtS}&PbubUicqa3lT0?t z8Z_h#bMN}=Xvtgv$qnY@gZvY@Fk>BBcAY4GQzaW`zjvLGidlGfOzVbGU{JO3KwWF& zhC~^QMM(L4N%9c^8zOiUhdA{c_p7tp0$&lRS9Y@e}d8t8URU4K8c1ZQ9OtQ*-vK<+>@;<+6syEIEn*VnCh0A0(&m12L`T zilVyq-SggS=U!gfmxI{3=do9CF7Cr4q*_!_9n18aT2}qdVf!U9os!3ONJS6n1s!4R z8CS?un#|Uk*kG@`Jw4t9$!&gZz3$yJ-HN*7X=>+25tX4h=T~f2X&8;GLA|@@xE1w= zux+suABa;HyRiPYyC<|2wT2M%VMspvj{dd&rn{%BA4%XIVj8U))V3rGF_%tcveQo` zYT3nHhGf)-Sx{smM211ZW8T_}V0)Q_6iqLMRJ&GFG6^EXAW*-Pl*^n&D5W@=C!IpU zWN(RZS{$IA^Mz^60srPYm$We=XpEpk3MU9;y&Xw^Jw>s5vRH*8iGUd|K@2VtG=j*E z??D|dBWFYpCu+i{w!0c!2TZCJBtJu9nWIsVTG-}=U{s5%J#>IXO8W{lissg3%IcXJ2pcNLveD>?*$I?lPjueC*92S=h&{6r^r z_=~gjpkL7a{%<8g`i9|A~K* zeGC5iZSpl&aj^QrE)RP!aG*E8ySI@S5zJuDisd?4uR}M&-}~*i z=;YH|boL(V^bL;$`4SDk{c)Ii!h`{+{c+_=!Ts$?%IGCsFl1GNxY$H+>Cv z6NO5XVJIfgYOym>C@vWWVOkj$km6A^2+^u=X19-iqr}=4ee?2LYAbT~jMy zEfa+RlVN0XB11h#@t-K%91Vl8(2S_SP$^oe)$fWQ@o%s%|IKrWfgGL(d^{OKr*eGc ze#Nzb+dER~QqbfC%`j-Ck%+oOs=CRj>uIp|rD2F{)?QB8O|#dMAVfAR-w$;kRfL%6 zaF_sf`0vrq`ReTs;z1^gpol-B(eAc8m3fcEBhL1wH<{< zl4)SLM_NrOj1J~rp?Jh?^Ce2n_g`{L2js@9@-yFwLRiT(a8rqH2Cdh1CM2lTmQ}Os zaStp%K+bxN!r)PEUy%c(drF&SoAT|0c84V+W|%8@J64Uqqg=JS=c|>~9+&Assy9m{ z4M1a*If&=it)s;M3^ zU^dm5KUTJKg~F0i1m@WY93&&xUn~#Jkp{yz`96SO@KK4g00tgNG!T7ACdFu7Zs+n0K31##>Et0Skysh%k552WkQ`@cO zj`Z~da%k1GUe!%)vX*3cm&%Dk3Cb*k8&;kJ_DbXwx=>~@A!0BQ zMq%mP@mLdZi%#x%xQWcu!l+)-O85ds?LWW{;bDD8W>rLf20d=P)dpM&(4&KwA9w{w zOM!g%k@``;8fZ8&PZTOsW)U4r9Co=#d4=1qfpMn?8a&E{fO;=nm&bw9^j5AD4QirL znKFyOv|hZP?%%sYQ_5_uXGwUTvk0BT)(8IVQ}T(@&^-nq=z$x9;$SXr4+~SG9lpm1 z6g|*SkR9{`epvM>;CdNpnzh>ZKs$-xV4Ju-24Lucf`ZauyQn=zkm!MYj)z@F>M?>! z5A+kX2=kHsm_n&ue7`y{=tTLOD8!}OpzzBfh#j&uaTdEu(^Sl5cX(tZ9Rczowu3IF zXEze*w<#ir=1KQpqz-wO+pJK?OBsd$qUDq3;)YAH&ZjK#W)L9(7g|Y$7i!f`ajl(X zh1ir~I411PGpbXhD_$)7@psL>o0a#M!uUn>k$`SC(wAW(u*YYRgmM`ain z%(4H9fj#|lz)NF~T+#%-ahkaltF1LkPy`0USHt3HnLCA3h*B8_fcWbLt1rt#02zM$ zd_Ksgl)2f+@KBmC$Tfb=E?% ziMpdl^A?gHJ-VlxIz(%jRNUD?%YZN97x@QGFp&)>dU*6hJaH*+oyc9P2a|sr6tmPA zQc6fzakwq*J-yIU*v`eZ_g1{>Z{S7*CVf=dURsZ`xi+H^v@#6|=BByM15oI9n@SjJ zb{&PVm1!8JjEdif!C}ui`p@hp^Q5?LT$TvGbJ=0p#6YJ6|~s%RkpxsZ^j-YwfC#voa0L0=78a2e2DW zMVe0T9nX(MA*W)VGVVTlsan33w-pI0y)aX{C7jflS;+{fu#{pR1uCO1A?byh!uBwU zro;{MNpuB%`kr}G60bbzF4=xlYx7efZYAerNA>D2uR7-ro_`l4wBn51&>68_{Eez% zq1t3g0*bo&WrcVHTWp-qY$k!ht4eBZy%()?1M~d zmc6BU@^$YH1v!B=hr%3!4ineokMs|}%ha4cOQstW6_+zua}{6Es;0r1lPJt=IFRk1 zYX!Hg)=qI-;TPoK-Af z!h#AVyi|R@HmW4u^)ax`K}X{hgI#dzF@I0EK&dC5vFb~DhHVl$nxqKuPz$ULWTP!8 zK&ZW+r2&FMNy;DyQ~f9{2JFOjAhFFDVV@6Y_9KUS(KB`WlvFdFdP$z5g1uzNLb5(d zwt=sMH5rSpAwWOz5006Y_=;>X$Dnc=J|Qo{tC%$eR6@~H6uY}ugF?$o5wy)VVaG5C z*LYH4J3F7@hC5GXp2!v>SI!oK&Yn9SL??CpRqC=-VeY|3ZfBdiI#du+h3b<*Y!-C4 z6cW$qUsh_3eUQ?5w*W-FZf2XE!aiZTGEIGsv-@e$K%OffuQb04r$02~f==sOLny?f z48nCx0-4fL8vN{p;>w!J;K~Czy_&;xt<6M*h?K#7vmu$RCf_hb^8Ymqb^R zL^XE5JLRd=7bzKDxg?BA8>Z2AM=2_{`RsTi_KsQKy+ffjWw8F3%DVnvOCL5lKa()B z2j7dI$Z{rqlHKwW@}&_wJ<68n6>|JF6AZ#1yct{^ z@LE&M!y<3o4A7vG!zcu;3?dCe^|-`K4C=uPpV+*NvncAJ(Fu#lx9EEcaVmp|%!}#* zqJa^-?%YUhDj2T@c~K}(8H9(Nlw&lAs!$>}li)LuJywL85F8N&= za@L7pb>)UMJ}pG7=D&3F0x!4lGAn$AhypT+XA3=mDjB^NLm}!4O(`v4t1HX36M?&Z4gH-gpTBKe|E| z04B?0yn1v%e_Dd3q)XW5^JB0H*shkVz<+Q69PNO0R(p5JN^^6s({5L5?X@>(zaI(lVNs?Yur0Cvb}DYz<#%ENg$>w zhTAlA)4^8sY)YEccj)Xc6Zs&bUE4{s#2bh7WIu>Af|WeOOGx#}m+THOs&1ozjjK=O z1FGJmGrrnh(oE=fd~PTxbbCo2ZsA{LpseK&Ga_cFxglXCdx71K3DylzK>N-4%A{|; zDisn8r~zrfq0mM%2nU=3Y@Covs>1duBB)T_N*<82LY^hNhEjY0of9_G&Y+-d9977t z8H5S1d+uG#eiB4}h8>t9QnY5JtDWxAu)XG)z%D-?XF~xGb=%43%x~Z-KiRIgl_F+) z88pGmpmf(N#UkCaYSNZUcwSv=9SKIZ7aEhJTw6&tHH!mGviB+fKsVkybsCiIMa1Md zUw7WTSe&y0WT)bD+6c-*m6%uR)ftY0mlO=UH&JH*OMV8h_mvuVVR3Xe}5Sn>z zSV?PMI{NemkZq1UU8LhoT4~83ls?pmgrPMSY0lhJg`Ao}OfV3)@#Z*0BWzV*xRU3%;vKuWW zZ=1E}l8K`ZRi7$!-we9x4C&SiY32jAu~O2w3+rL}=~ZeXR$bf1;MivFvk~wAOm#%s zC4>cBc1<@(I##CJf&f@VciB1jA^{r{c}{elTDVHi>pB9{Hu0a08JG-5l!%-N$)cJ| z=B`$&YJi4qvOg1y;MwFdNX_6&{B-LBQ6CM3!kj@grh*9-EJ=kq&;CK-R3Rj1u>Lct zLr~&1mbeX3NJJIe>?1SogHwe-oIyb5Y4_N>VU+0|7d)YmBj-?>aV#39yC&V?Vw!k?^g1>` zGr7TKh%X<&=!g9nf~79!?J`%KZaG9Rho|LU;c<9-+-;lt-n1p8$k%`IBv{pR{>5QjT;a6j|zeSx9sI6-LRZ=1Exfwd=f z8l=?|Q*$GnVF+v!^f@s#!S8>Ys*|3Q`&7I%|Ga5bx(0CA=Iiq#?svQmqByN`N^?F2 z5C@j0%kt_*Umul$(+Dlw9DaVBJ;*Hcw6uAUsZi512gG7X#I554v2EiQX^LbZe;Yb? zAje5$O=5R_<5TDN)4;#;!d;pG4GxB0=!08#U7Y^qD%s@w2a2|npZjgo?ZpV(pa6>{ z)BeGn8BaS2L`>fNLz1k>ogJKWAIdU?>_vU@tq{*M2$B$a<(7y>!3HzmRC+^sxbQfS zMR4b3{km%{0{?)8TSSa4>2?)*+yr!y$9|Q$*HD`98lq>xit+9cA40i1c?zX%4!#g} zuUQC=447{dqj@n)F-k{wSOSjsF8DEoF0Ko7^uVVMU?iRgv6NT9Tn?^6;LjkqMDiM( zy|VCqbfN;nvV6KQm(G#o<0#-hUPM6?L-m>ihaQ~>!LM^z_58i23gJM5XhKw(0K!e- zqEmZB^ftN4JZVBSs@iJhFsP6bGziEXVyU~t#054r;VbAZdQWe2PjyYs+6D=pDr5u= zLa|_#h2-^l8;g_>=m_1CgiH`HQ;FX1co_Hkd4Uo1M9gE|_tBZHr;(Mbe4R-+%5F}>@ zEQxuNRK2R!v45rtT}5-y91S6LOMR~gWFwz@z_Zp{Hc3tx(}y`2)D<=bgCv}IjX2^LXRmR=Mz8Ur z{WJXc8kdmWjz*)gWTn-2jPa>LtI;IJ(^he`v*?M9RC(~tHVpKSx)lPBCP5L+WthdL zp}@*zEK8x#XtLt-(xAc`lTzmx$T_=73>IyJ2zQQwoNb%L;HX6q;m)fsXRIcxe{4B| zaB21Btkftg8+IP&RWjGAIY&jPR|!TvFxOG90hUW!jD5liQODzA++^WnO`Z>Y6>|=qo85>x({do$ctB>U(uM5JVmjys1600v@LNL?cxxw zHo)#_JC2}9-9Dj}n!pyjq(b7+C^Rzy1ZyA!9M($GRK-rC8lbf0FpP(dM5m_;rAMQ9 zKq$wJx8K9Ek&|5Rw#Cx9A-qaPB}aw3&Qbh=2RwTtsRkLoVZDGv*jesWL-OQ{Wj4rcZ#G=wzI z2aXlW+=J7VLL$;A2qVFpWZbtL;#8prX%vC6iOBBqk+t4os6rdkC>WEj!n><%7FpA3 z8f$H;(0DWois+iS9G5L4t#lHFkfTuuW}+5|pH;g2lvTQvgnAdw*d%)kilF0JH-_}* z{2+<$%q>&!!cm;9_&QR;`*U1Qp$2Ib%6UdsMWJw1$e~yVjM5ckW(z-A1Z3ZfOkYA{ zc2;Od8ii@W0^Q3bXh^L4f?ADYI8uI%oV~Q3#T8(ThQFUGgg%X8oih^|_s$)AFcFz_ z5dvSkeN{)m*J>;ZIZ&fOP5)mUh<>UN8#M~}tdmgm1~eh33gJ+rXv~dAqA%&V4Oyi^ zMARrwi>^Y^m;cjZlSH8?Y7~`x@bJ<`^!!57PZhGFMlm}!7L;CI^)^k)KIw-T;?F7` zeZB2lg+{4S#72gL($}8qN&&LZ$079ia}7&BRmhea#baVFFnt$&NTFnE6q2d===7aH zW1lZWaPiK<(U@N5j9@4f9*1Eyg~!hDCCo8 z83T2uP_;A)#q^&bi2h8Wa%mKp+4Br{THT{&3gJtmXtj>YUDcgZgL4{do%$;CFQM+r z4WP15oac*fVk1@r|EjrTAG>~nA$+Pi`Bhkgtv%gP@! zg;u3W6c@v;wLkQjZCQ8Cqhg=rL-g-%H3#I^beR7ejPuK-7j1(ToPTRZ)*q$_+2`?# zoF#VIrjS)qX`f$1=EB)m*pxR$@Kn(FDZdTHVlgL`UdyDjz z-z9DO#{U$=NVvUl!g%{6rkrkrh-W;38EGZNudW-lIsZJx&;Akv0(sxkO~VwvH*6QN z3_aRrDI)xu;l^(%Xq|&(e+2;{z4v&|1CUr$?+bdH4eYJEuUqegZ19!_EJY6U;r0Br z_u#D$u(L~ichdp!(Tl0>26&Sq9`Hzm$k<}w;|bI z2^`I-#D^DUeT#WY>RVjM)7ZD6G!jNNNcK7X(SmsgEmIf<%ufiNib;}O-QiSYOjf9Q z8U^Vn7d9^&4@)*74X(W1zPWH-H465b_R+C8ac8FL(IEFo;oO?e>IM+8PpglslyW-J z$SJL~QQFHjw519;z|HY+u!h$Q`S55#uEq51yiC8X^bEdqI+lJeg~BM6RYNfrY>mXa zi`%*aKD3&O6NoND^v@Lfn8pE_ur|Q9Z%N(R&aRlQaTZf{Fr_=EDugVJqcDYSooE$$ zd*+DzHglJKR<6NV+G8@fOw?>6*IN{dl*VC!po%dNhF=bjAA97ICg_j}-9dxxQ4dL2 zm+B^Bl$)xtfY9G@u==t*5UYw`Kc5e>DauIkRkH;io)a`4`TvH7Un4zry7!5i!a;)res3 zNj(;M-B}aKCe|B6N*hYuF~lhQEFogU1OsOWjRd}mU*sRug+~(dyf!X<5mc(-=q}X* z48(fKXXz@cL7i2$aYrC@iSnJVFFb9s50L!h$NNQK$9MMyKTytj!BQ8CX zM<=_ulcrKWgJ&U-GF}T1KqT+2D2O*fitq;tj zUZ)>P8L)Yr#w1QQ6jdB{$!!LyY!-c}6cn#5T2fwY0WILg5LgKM6p1^;w&r+ZcD{Z? zQ!C(*H>s*KQMn+b1qjA$Ba(ZDk{wFs^O=28+`mqJLroweopdZ9GJ*c#KCFY)6930G zXhpS?R|8p&62+5h3!&2Pm4QXB;AjCBuvB*L-NZKK0)*4K8A|5K>Be0Ne+%_dO-Hp3 zd*pJB7I2ucZV@|Q`GS!2g=^<4->S<$FW=GD8)K__j|3qpv$cTGyi=jsVI6E5Nz7L9 zKDppyD1Uoi4I&(zJt=pDRkR=$_i1rmDu$v4iea zvTzl28?$-5imE1%+290=-R}`ZEjx95bnf^-5ze_|DHra=>jM^ECqfUN!_)EP@UO`O zt!0B;EYcjdqHzQ7b3B3x?{m55#XdJ8yAwm%l%^d>XC_yMG*|P9P_vk%q&25G3eRPZ zSIndN#y?AJ-s_lK)*6K5I+5le!h;Zg=fv^C4LvGd6CExv7{6X!(|^x@Jy)G* zw=;;63q_j4Uh_AuZbC65UER;T`QAvbOq1gNu#+vtTjL98*FXMSU7GkPM z{yED1Uqq+JoGy+oQF~XA{9JC4D zyB}{}{I9>!HOiYXc*LFfb@sb&Ui@?&;Kc)()UuDFmuR*1R$tJ@4c#AJJ3nc(H3Qta z4C^Ch{I^VcA#iObN}LF5Yjl$@&j6dGYCtM!!3J1(8LG!%fkN2Ja+NX{PIN>%BjsL= zdvz{B2N?sLyp)FyQ)qyI3$VN;x3u75?AssQ-A^eOB*VG0-@8tT0)P92M|s!JhWzJ4 z!w;|VC-u=xLlp_mw2d&e&Fx1irYxW^$FvwjxMACBve6{hRWyi0E|f>#g4{E?sG>mt zCTUPp*132{)3VN$<{`e9{|sGBuEJ;#*=dR_>tY-=WteU|olGu|Xb_1Rbp|{5-iqpG zZ}5jHOE?wN(FdMxbdD?Qe{!)zgV@Xq*zmTJ0j8@#xgHpnSv;6-bQmDD2^>1z$1>j@ z9X&7M-#RUqurH^mW4(z!0U$<#uAQwd~~uR2I3@&Cjudy5IJb=-I0h>Nd&x? zC=%4XSyVhQ0U&ct|FrvX-$RTWL-#LdZ31+%V9PZxIL{w0!&%||>>)3Zb2wA4a zV9CKj5mbjcBn_3}s~Tdq4MKpOL>ifJt9v&_cd$<-ddmxko)JXsiRtH(%4v*cw)efo zjqfyYN3sW!M)#29V&^S_zhC242YM)B8i8&Qq3e_X2ZioEtqRO3{$Y3Ph7tP4y8~v+ zBKv#`XAaQ6?_J*wvmvzg5VuV5$GNx{lfGvUxelX20Dy;w?%IQ}vQMP7kvsI3-esSi z`7!^uJ`m$N7B8!qIR+df?7aI;j6%nYT;!m?5)*p77QQ>ghtSnpe96TWjiNg)8uNT2 z_lVo{NQ`~*_D=6U{qpPC;@^$W>kXO~YhEZ7S zji7paKyvj)qhKsLi0z+xZe0;|3hIG!8u)i!xPuJh`13J{;*1J_=CIA}6-6Ncoq?r$ zhF%5fQ98OZOI@-4%$PTqLk2Wi!hm`QC{OzUSSwRr9k9Bm=T%@GQ(rE!$4LKL;8xmr zbkE8wS?4fq8|fCm*nk*Jl3e*UaQ;&*R>Jhf0y) zJ7FHi7{9iaaHJ5re;wRNrgc(y19Q0`q}ewx>c%Xi0@#xFiWZ(rFSkDbTkXWLa-F4+9(6zWe?IuqOr@TGZNH9#6CsO+m0DI{jURo zed0~6$C!n4(kQY6V#|%*22H^};Ra(bj)S|yOj?*Y-qCxCg*_BX>T3*zQHsJYxb?{T zfx~c4640lh2Pk^jnI31IDVg7~n4}RXxufdar(iK{^ah}ir&9E{rLl4^?dW~zf%vm^KM)V=W;Pbv#({UbT6cM zh&)bsnDr&p+pN~ZHu(`5#C4nu^WfU2%wPl7pMgE-c)-Dz=L0t-(75-G`scB@@k}v5*F9 z65n^7kWTtD&ydF!99#!$!U3BEcq&EHKEDS`wLT>5E3i)?vCsFx678Q+lKjU1-PwM@ z!=XVtuDM)z(d;SxP!VfOOwF+>iAsCjxrSPm0FNb`$ULBxcZXI`>H(0PU}KCgXNaWE~BN za=k{gHJ|AF4_f9Qa$!cZXb2nVw~*x%?gBiz26{uAgzz}qDlWp{&eJ?<$$+w$rD2VU z?-4QTMRW@vvyXtXT=vr$hxt+)w|w)mzowYXg#9(j&oYp{X2x$zA3g z6uP)VV5WhS$%!Fhd=Sk^0=3@gZ+{6f!App(6UECMiXU-W9%xyK#@k!av}sp;P`^&iw>yvS0WQ4(F%LQ`1KRBf&jfuZZc0A8U?osxi*(;P@07V z1hO#AUAt>;FnL06xjAL-sfO5~9Enjq^^v(;h0-h-$E>=*`*}|~;R(FE6>{kJwYHGR zxxAcOjkF+Pwvo@yMx6dc^(Z12r8EP{__A=PVc!1n-O1Ys){#wvC>ZkomgAaobxSk#pCt>m6apG& zgGbBFJ}sh9sGjB#!6&wZ5QO)R@BM?WwPE&y5LY21JsV7Va0xUBx?K6v3~2M(8)3Pv zt~cA@UfiI9T`yr1OS<`W<0oF!5`nhrV60ck?hL1tuh7{YiSFzqyEI9}m75ny>0W4n zFK6yXz+YtiD}X(rdaf5*gfTr&WV>2F{)lb{#r@2|K#j8AU?=D2MxZ;YACSIu|F9W| zNyExx$NbfJiO3eCN1JQ9wMd2qVP8@2bV{!3X$Ixv=N0*IE|=>xL}!P!y+J8n>!!;2c2N zRGuRFA<*Wc0i3w0+Xty9^9U)6>P~8h|878jZOa2C5O5;Q;+)!XS!%Nyxg@9|fW{#1 zxpP7ov@ZEYl9JhVXs$9*1wgSY%B4OHVKDip2@W}z3w#>FWopeQpj7u>r@2^M2#jV; zoB=vmfY)gz7CAmxeeXAc4gGPL!4mwp{p zLcop5MUarspmFNe!EmY&-82KkG+WDY9)|Itm_hgOuRRhL2_^}XNsk0i=^u8-YMY7o zYvi?CWRKJ|`2g0gge3E;G)-YLnq)0SK-+s#f`UaFIcBjz$gTwY%kOh|JiQFts$LTAB#bCKSM3PXbxm`JhN~IYTFy(|DI5%EK?){GXZJm<@bd@9& za!4bK1&<(a?ZesNjeqW~*IPHa{dK=j9@0o#Rh>rP%v2#+X$CJ$A3cA4i0F)QmR<^} z+4jQour1+sov3U)QOH)B!C?Y>ws^h*N5!zqi~w29(je6VschUPm0q+yxdW7HFy?TE||M^W%!;LA_xC|pf)?C-x zogSF$Te>S$D9u23WX{BWm>ON{!dKI{okhB=!qX!22FqGI=Ip{KY1^V*A!TXCJaE|1 zxk-NtY_fJyh*_F}U}PxJcZJP%jnQ7AKxqaJOv(>_bhw4B>RZxef6d%7>acNFmUeX& zs*`4FkE!_WHn?9VHHI$$b4GL}q}a!xEsNebVYG49&VM|*w|)?V713(*Y6ZR+7>{>f z_pTqg=ydCNJ1HYf*J6h_B`mNtCT;0&TTB+u);~)j0cj5!IPeLGhX7wuUC>*;=*m59 z7j{Rt#VCX!?ZJXqrS8}LlFsmiF`lHCxhI98rct9A&1?93Dg+}flE9#Sc z6{3+Aff;q`HmwRZGLkeH9eDa?)?nt|xg&MgAob0W!495{FX_O;3I3Zy9Ft88exd3< z9D?SC7YgA>i$F|aO!J`8;mUodocX)Zzef`9H=E!`F3kQT85{_AX42hfIC z#zBmi1kMgjlz`ju2k06epcD3>vPntWRb`XX8EN_^#v>B<1Tb1b9y}{0SW$#dX>x*; zDtA4FR*Ap9)>u8v!Phr=2Ag{dNaXmWn-vkfN}l9Flzpaw(rqVDDzqjoLWvpoVGq;& z@*y~^hzY~sSCW8!;|bP>euYS+#hu7uI`lJKBvSzSyr2@S{zP6bN%jqO8eBaz`zGh$ zL6Gs0p<8JYs^u*sX=H7tOoa@j9ILSemEvKDu%lWLzlWI+4a6`$N!oKD6bgMvW9ZZf zxCp*4~OLqyO%xBLL!O8 z)O=kDgb|qJ={B&>R5c+Hs3cFmZoyA<_`oi`0t+IG`WaGc#Ez zG!M;zk(iZ`Qv>Ey@h(Y86sQY%WM(G9Ck)J|3xyh@IdFiAt~T!auyxm9KMNA&j;N(_ z#h-Ekb7~RKCXe#ZYRoWQU}l-6j)<{|4_lp*I=_b}QmoXUF@%$3AhOI}$&P#A=4}iMoULxX73_tg+|O6Df5pC~Imj^E{WG{- z?z#KT;6H;~ly%1GArji6q{e1;=!OksPCIMPl!GFc2LaJRh&HVm3{EmE+Suyyfq5ldt81ubcu)S zO0^%8LS~t_k^nf))(M|-=Yv-yQFcI>GobF^e6Y^!s}SHb2hdRh(2hpLVaS}*yWBI$ zHq0Bx{{sF#(FUR$Lre!Plv*G4EEH0E=Ab%;qh|jLKgWTJ^D`bXo%J?05M{$E)d<+0 z0#AMM3C=P%{HifqAT*S zR@{OFcAVGF6S46k>F7JwBEY2JEq$W;#2MLOIjgP0(EumQv=u_qxH~tz2kYx)aTtBa zpCQG7N>vx=^$)i{Df9pE`t~Q2%WZ`!oiX4b^bGA~%Q#rxx=S%i4()B|IzVq+4n!J! z#A2_r%vd29P3Ug=eSzq}_-JQ;61WyiX9Niryw7g$$fIP;vt7)4qv_ zLd?w^08=tX>>MAAFq{?W+5~HQQqD{=F8E_~B0d%agyw9UAdZSpqNqTC+O^R!)iQIP z&N6t>uv21&`v(}Mnx3TY33?Fg33n` zoCpdCu$2B_uuM~DW5Kf`wXI3qFLDMprOv0y8n!>XQD~`|gJqIhrFl_w;Ff5xGjK-l zla|rQJgq^?uuN5Fn5sTFTW`HQ?8$-oZ*YTtB{$Y9Z`)04mK%ppHoF*@peOlf+t1r+@eAq30PtwpE zA&s?`ZdYl84{qq9r{I8Aj*oVZ=i^0?k7$t)TP2~b_r;~+_Kv?s!D@Bb(^WMd^Y#ub zCSM}V8V?c8u-bTAytIVrpn3#X2)da=9Mj&7>ulqVun7D>5(-N|D_Cz_?|y>;d}M#| zZ@S^V=SDBl&Ru&Du5=anD>w8bdk(rb>5Am>Sr0`V9S& zeZ~ht>#J>rteiQFCM6h&$4e@#^379J^-k9-$;XY(6PBs?9PAnJK;wp@Bs@vzUkiSr zP^vSB2J8uk?t_O%+~s2sepy1mAIzulC;@boJwm_ZN9djKNR80o%EP~C)c9ASUS|%a zxqwm%Q05?)_nEIT9$s;OBZ%c1l%kuJe8dcVmP!5`lYG|KmY%;%z06r%(HV$C<{Zv@ zX;=z@J9Ee!(Fj|tJ*D8tn%0>wX(ts!xb!nd5wuME=OnzcM?wXWKhpMNH`3HXA!}z0 zghkGeZPEAIN19@q z!xLH>js21*q}b$gn1du|G_TOFGlvI}*aQKmvJPhxlmgT1?6wKNtAi8*s< z0Yk=#OR~lB0bildaFwRnY%2;yIdio?%8aUE#>rS1gD*1=l%J3~%F${6A`GHEPQ!x` z+owBa`(Y+WB!xzuIXp2Z_Hl=U^*lLY8i2CsBUuCR`}}j86PQA;&KMp?uruzuYuFaY z>F?7^AvL2j(sZM?9t@UA^3e!Vw=R!^@*ZD{VNc|>?lwg6LZKRGuF_*e0-hTG)RFOA zCweH5Z^=4(Hx z45mx#Ue{Y#t2^XD=$@?Vfsm|pct}6;DYd~biG(R;>b^a6&qVd0m~kj>ovlMp1Lz0e z@Ow5wXlhGzGfFDd+|0u?oOB zod?WS=(U+gxNNMb8V5VTqBn{;0-+*~#C6a&4t+692((NEo9NWa{GX}16a5P6D&5P}+86U2 z(V%my(A%d$=h8biopfP9HJA+bl~ET8Ni_?A5E@EOqc*NXciYMK)dzA%0TI_D#mD-X z)M+7oaZw1NT&jecj3mv?q-*sRg~pi$B<32Tr}A;tAR2NWDyJb6Ei{-{zk0)>SwI>C zb^sdljY6!<6h1X{rz{_qmhczOCdEIy)?~JRl|gd(ujC}BO&n)FoNUB_+S4O z{f))QbE73h3-(>vvR7yPkn>ejkj+zYcmv^>l z!DZ5o&;`GjG%-nrdOflTT+(VAG_NCtu9-1vh@X2HvC!LryXh*)dWKPR z?K$OROBc2RM=WE!?*cEK%JP>_0_lWQ6(SWLIbrjHcr zXvQFzmFQ&@X6{`4?Ir*W-hq`MN`Dh1dmlI6YJ=j97bRg3Z{2O+-$Pk7hE2P48n$do zG&PK(mfF1scNxI+fU?V^LFek=M~7S3{JkY6#J^^4*+kRe9I0vVvP+IZ$?BiMR_REg zfYt_=OP4r>UkAZfjtyqRgpn;Vd1BTXl%k;|59>bpAPB2faPZ?BpShUf3r5Xue7^R$ z@wu(bjsLq7x*KpnzwysvcX#7w!}b_yXbR0VlYoNqQLs8t0m}flDZUrP5@Dd_i4;m< zp<%e+DfG}x!ZD#Hu?z&TmhEDzqe0cXXR=jQpMotltN3N+jb|e83^J|3Oy#?0vcDYg zR9a&C_*eQ|$SR~-vVz4d7M5YRyC@ZKZzTOdSFw-&VZ zNFhgNtojT3vd8S@j|b^}4=-P#HD;{#N3^yRR{O~yz3-#;-4ndh+8--DUoz>6xxV{> zPaz8?pZ=#>^}lddU%(vsYU}M)WM@zFEF+vpj9V;x6v3KDWj`0kOf`dJk^+wDbe&Ys&7?ry!Os0;L&p|5WetVyX#|$znG`@y5Z+&W($pojUg} z@*?CwRJb_VzT#yZ=kUL#V+`$BJR*! zTuH{-QL&o!>MduMM(aI?Eh;iz%7zg`L#a+Tkn>EVSS&0EtJi4`a;|9H*y7d08aanJ05y4>w0%NOgrdU^K9T)AwD(AJ!0LfJgMozr@qzfd zq!6QDKcBZB@*5aG9x24i%z`nupm0~G&-Fm0!6@QB45BF8>wbo$PWxSEO%DBz{A#A> zxoOAyH9C-PCUma<&7MMaa6iN=K4;6Gy{bDJk)YV6q`r(JLL^SGjfOuh#tuGc+`O}q6z|P zNezb5S*#1g6#Oo7VrCS`BnlD!53g}CRagZ$0px*^=hFquQ-mqND`{y`IJ;-#xy@4f z2K}uQd8?)8-@!`n4cwqJawF|%y?8SoDOA2t1I$ zkr;IMfkOB6w;F}x6b0(_GRU~Xu$jUV0NvAG4W2ek5g`6vX)8eQ=zS>&RW+=KKrc+y zt|wp}IQk%`qj5!W!2HuOuJXga5e;6%qXbs2ejYtM65YEo3PQATB81x~-L!GP zx~l_T61|devfQ+zP&PA+C#JTm4K6C^X~RnBl-^KRyUY`XuU)r6i;olBbWvT$1YEH+0J0%C?CIm#LD3H!B~Pjll=Wo~xj zoBS<)dY}MkSl-!mpzDLoj*=)Fx4~|?aksG5Nuy}I`FxH(kOW$T57*}(>lisU9A6dM zVTQNYhP7?i%&YMoDOAJ^LownqG+?*Z_mQJQ8q6>RV|oZpLX{5a`7?=8`fr2mgY?8v zefT)!f20%eti}YakOec01<`=RQhZPA%pv!%<5|8B>O5YMS)O%Q7)>uiZ$&+! z$g9o`;(ge)DYVB719K#fV||+$E9AlqLvRcd*SIwhUpRgUl(vt7>~Zl}k?1^#pAx5g z@lVBk$Io4e(GmH&Eor0?>}|OrJJ9?Zo#}>SY>ezQEwAl=!0K4F_1(ukq7=hb$-XuN}ZZfB}T8n%UVi+f~2+8-$ zLLZdmVI5MvcCBd}y z#WQhv30@)^Y^|$BphCsY@XJ}yMc^uV8?X$Nyd?@=)vk^FO|;muQE1s21_dv50{jv~ z0TxAD7!-5n&j*yB)bHB$Ad@eR3`2ID10vb~EOwu3_C%gvXTP-CI;7sNsX`XdEM!wK zkxBMU)Ap0@nD*ZJ`dCIxNBNe)L1MAy3hn7sd`|03&!I|=qiW8rr6~15|EF9fjf^<# zq6yQes%jIOq0rDXjK~B$lW@C8Mv|Z5E*WjI&uWY^9h}N2#PkdU0x>It1Mv&t)xM!JrQ@-Q{P zOmXEBE*b$B1=5%)x*ls(2=EyOaIPP8!me$jLVnLM9E;5GvUI=hgD}pHKd=)DXn`lpa?J(bCr!>b&x6k zoSA`4ApmF=;2A`Yal>7-%vkmSr-D>UGXsC^!840{Ii)SJ4^}<{b>da_Obf{|67pp? zbV?vC%&P5C>VuWf#&kD@G^qjGODSnc#S?b&=~eDry#yU_XM9L@!PO3#M`1LkjoQDHtfX_~_K zsxWqxfRp(3!I!{M8$C>>2t~0&4vvW}Cti+(=#k45>A}_qv7QS`?Q9a_ezG+upeECE zY0v6|LC?pcm7$R!7 z$erDF&V5KkM`%eERx&yxR3CJC0Z~=L;7@=daYrGye4irsG>;8=IH;TvN}N#eN_F*x z`i5kOf9^Ko_)jSLp^8{4$0c|fL=hA22v18Za<;)Q(iF)+_3o=jCxTQb_mcb1-1sMJ zuwnKh7lM3(sP1+RR!T6B!bdmWEtyACZCxaM_}q!W#MGm?MLYA~Tz?&eFedKyj(6W~ z3%j)c_rdlT!1j}x4bn=Asks<~^?*oYdeC=^e*6*LBwunfkVv`dbo@S+1&bN+V8Y|x zqZeZm5HFn_C^#nr-tROSo$zEuZl)BjPz;w%v5oBsj}>B$hLOtcYR?+ms&u-)eXNjn zGz9#xzCUb} zyQH$Ep|ET9M1{7bVWf^}>w@>|B<=4^xXVAa*!g(l8cdjrjA$9J)s}B_SATGcy%^ z{#c<~X&B835gHRWUakZ5yKtL(nx(5kMh2Glh(5S<|2lXuJOw_U7(gi`av-)8*&ou| zLsRHn8iowBdiU!JuZ5O-hj{tDBX{V6sI&1y&1{zLB3A0a(g%M(n$a;kJgm6c+*$TE z_f#Rftou*BQM(VGenfaW@%JS}oL{ABxwRipSBIC+4ojjm~lk32@yeD_)4|EA^XTnys%^EspKAA^85UA#So+(va2bl?tr9_&@_zEaVmYzl-{|xjS!^9;6YR6 zsHD)wGz-h|FomTk2A^6}7W0&c3FY6A4;R{H-1B3FUZ!EhMm&^T>^i%GT|M)L#*ZvD zDV+}22Qxp;1#p@7X>EC|kjgX+!Gt#z(69Fi5v1+oBDv2$m&J%ka?8=tHn}VXs1Ndd zJk7R|MZayN52AcLBNTAwMcK$TJcUHALErrS+krG+Gk?}%Q>hUI{a7J^X&9$Da|mCi zC=8fuI64)RB)K|*slmwG2TeX+df3c8sr`+f|{h$ zxB*Q1puxw-kh*m_2YwHdJt6_t(5q>;HLp;qY*XzksxwQ>)TNS&VkrDF)l$2jj>igx zNpn!tP*AL2^#=9to|l%_e^T3E>kQ5ng3!J3-|_<#damX9=+_7*UmU{K24c5ey73|O z1v@TP_YwQhfPa6LDVIWB(i~J%m_r}~i)Jlk7SoH{2s*VdX(c(sK7|;hxq8p2vIyo6 zYZyUc{fg-Yxfav2G@Y(;C7$MD_o~Mw^6$TUZd#5*&Z@wOaeAGhqI=F+UVo-A!|lpQ zJE&B_)cvQ{E{8(((OlJul1#J;y*&#_^)_>teOBDJ*LklThQUO=@W}N5h1#Pz7>-#B z;Kuo+2{5z!?33bP!1I+330mzTHy$d~9u2Z5oZ}Yax!}Y%>@UC1)|)-m4DMH>%GL=Z z1bSxEy0|IIXZmsuX=5~02tFEwI-@Y76T;!v|D#6R2&T=HkBbp<@*YFrK+)&0e!l_!ZxcU+Jy-g zENXlL0u%GgJulj*NQPFvj%dd&6?%>a@t6zsWzI!s{wmm|zDKm+!gWc%XxSQUb4!pf zOlr?|a+BI$=2}DLPOqeIv{-N{^c)R>aikw>&&t%IkZ&}I0A`vQUpL`e%h*cty6d!n z++d*4U^KWZ1;T^OQ3R)7C6}}bi0-esXKiQ6e9dh$P0$(SHBVxXahI7!tIbj$xr*9b z-;D&@&GkBTqiDJIqWzXczDVkSLLZfGOt*zV()(=_OAr@Kq*x`Itra`gHlvRoE7TVa zf-`LwvZ?#Y!8UUQZNap82{+;Jku?n`kqox7TrF*L>y5v*`R7;^&gM(6q*LI%+w6vskU*{UpoqVB4!3jl00QP9ovK#(Dc$uKwr{e|>4_f&Rd_=g+85uw_V ztIZ6okP|cr$w=S5)XEHOK>M!(fpI!03Pa`~lbW;LPaX`5uV1=lqd#>RP~)qp|3sJ+ z*disFH&_&g{PW_maMJ;@YU|2?EMEm2Q(=%y=g4H7>}T0xKy|MI26f!7OnMSRE=t^(6zq08-Y)?h96whNMizIp3BMPMym%zEa>{9oN>)=3;=1B!JO##_U7cJ-b2 zKLY}E6$p%k2H<|(d+FjWX)y0dGGF5%ml`N7<&fQ{p|p%2gRAtt>XhJi063 z_L#`&uAJ`7yTD{pFBYYZ30xsKXAlI@{8OMd$*1zHrlqbz14z`BHw4K{>c7p~gt*m8 z<+pSG+xZq=qxShOA?LaVt3EIFyH-LVbG7ae205!W2m=*Qh&HJg^)=k4PS&}nS376B zMQry}ys6(eYAps8B5?+hIqKW1M4|U)u*wkp71!8>K#62%{P+&NV>h(Ys*rOd<)&b* zx2#ZXYg6Tq4v8Xk8bom-LoWBI`KRay3duDK2!VR77gLWi_Ltw61!L-Zl2k~kSpWc& zs4dC4T;ZGogAhLtmeS9}6-yzfW&x>b2B|DUgZ#6+n_}@d7%{5}SUs%Tve8E;@^=66 z=-&DuXcoJx&8tcAJ~ObJNb6T%iGxw6~f zIX~UP%vR5SPXb(9YTPYwQ|@f-QDYP4QYhM=2=*5ldp|Kx^-)<0UGg4mta$EdD=BNZFzdP;2eqIWNoD=KDi^_k`+zYK(*!b-2!z?^?W@_RJHtGt7sV$lBn4k_*7Mkv)D!+$8Sp0}QMv3Yxw1@b5E%2Ff{}CLXet}cd zVD)9`QtQ>hIZi@FgH|&QvJ|f8wGaR|P68JTN9%E7MG<3>YqNB#2hg4u?FY|K0@^Bc z*IrCWJxA=6B#AV>2e_UW*$1~z0@vET&7t)cQhElVW5vl(Av$Lc3_Se!?&DGnq;lbqXz3J*!c)FprhBIOV4`AUDUU7=VcJPthIr$| zD0KIjzu}*aNQ7jFRqEWkuh2CpB9Lr5%=Kt+fOvZ9c#GxriEEP6%SAQ=Fq`>`Fg#{rxOF}*+X9zbG|yn#J?1A2gUzpGyk zSh9U_8|)IYo9)CTj#MF!oUr9Oz7`v+*R2h%62uMX-@Si0;aWB7?ZaS27fu)ainf9e z*XJMk^$%Oe_|j1{)gAM_%{4$^a{Oq*@g)JW_XWZX$&tIjO}P~aHfk(gaH77bI=ow-R%>?(*Th-Kt5h4ksy`u zBePd@#QDwH9;l89IDjWV8M-THyE<%f+WLpr7_Fbo?d;>0V{qZ5*>c9Y*p=BBb(*m& zJIBS~sz(zSJZgiQ%W|K{&4bnpv@_u>L(5F9ixI})vPKh+DbXTH(YOx!!ouKcMH36K zOj3r2klH4xg5Y)riorFBCMa{dIhEfXXZuu&4e{(cMEV7h(SgR`NrWbD3*1Ilq+?0X z?DN2-7J!uGFs4`X36uCK6!L81chp7j<<4<2c>JJ=%W>Y8foaqf3_=oP3D%T^<3O27 zg+b5^9!u!*=ph}1(!L0TSI+jfIA)2aH#>q;`VH;y(paA2Z~LA#*w{q94{J41>-J%<4ou2@N(?07?!8M92`IP$R$nC z5oggIODGnD;j7_L{T(S9-EX~Xq5%pm~q zO$d&_!r_jGx4a0!2#_2QTyneJy9O#pLyk`Cw$Z)mye2Tm5EbuFUiY_Nv?2obR02wP z@_rjQar#$lyl9O|_h$0CWNZi`y0D?n>(AOrHc_Xk42wjpjdmJFr9X-~N&s+n&`jXV z_(lFfLu@i*OAVngj7x9q6;?F2bkj~X#QfW!n5C{xSSKL$#%jT^h1wMbUxApMxiQa1DLsWcgL+kqnE-4H`YECBv9%x#6RpB6M6TJ~y2xQ(`Foprr=_Y|f zX3hpA$2svBzC}=~Aft^zJ(i|Wo3pW(hO;`W_<%0g5%`N@yyu#M2AH@!Vf;NLQ zeh&?1P<(E`ne@h5AznJz3nq2HAU7!8SE}DuWZ^kEN!8eNREX2r00T63Lib@EtRTWQ z4-1}+1}@7Xk!@@{;^sL?Z>$wUrVCYOJJBci4)mIA#BWJH88pNCou@o*>13#ov$Fxu zT&OmS_?5?oOA=+XDV*n9(Um+by)jvcke<|+oEMih9(n|yYeV@@$)ezP+{+Z=csB6j zbT@XsCL%__WUrmCd=EGOT;tfIWA3X^%CmvbG0aoq~8hQ126W$LjVD46I+qQn@;`K?I|!0W}qAG%+{)_}|7=#h)! z14;Ca>vsckurXre$57D#zzBBd_|VRFhi&Zb@dAT>Gs2f(f_ERFI6zl!eAuI(&^gVU z6ed4q4Rg@RdyPrxsOaK8APb|5LzMGvlfYPs$ z86*=xvnG-oU=&J!CLuW@)n|j}GJwI8Vv`w92hv=*?o;?oyY7?6Moz3vVgs9{!H#XD ze?C`q72>6+%Z&!^gR}h}uSj08DHHwpBf1%o+3IE>5$i7PL2@o_ls=L`=6>Yi7rcxd z>RGvTBD|n@T<%y;A;DQ#CUkYetjHZapF5A}Jk7+0nw%=yr+`TIn8B1Axig1g!0 zM2}*of$+g~);N$fG>JuhnxZ zn~{Cm4h9Tykg4l6xNK)n+;TZuqcQm5_9s~OP@i@5&Lhs^>_y-KnH9kUS0{fBm3gXO zeJg|!jiNUvyEo(KvwNeEL^KKlu=pT?g+Jd1zo56tE_wE8ahH6gwRf{|5plb5V)VH2 zRvScpdSgVQTG5CA&}?u6!plZPkBRXV?|yYx2RseFDh_8UZuXfzm_u-6n3g2Rjmk&n zpI(c9GV^vBZsl{fLN3v0y^q0mdFO;*Ao()6O4Eu)K^;`oJ~s!e2Fl0NNHWhRqBlmw zK79oXhFvU%>^r~ylzMCCo)x0Qq~D$d@g8RW*Mh<+WD<>{G0q1X%B+h@+lB>~XoX^; zQA8%dHDYI*+GJnDElNzbb5C`bG;$hSF=E)~r%cU#VwO+TX#@5dDHtcf8jU*pVEV_; zMqzD7KMcD8mqH*D`64g>1zK&O0Yvs`=a|q=KgJA4m|9M0O21NElc7TO&?p|@EtbTr z9;D%`#nkMgCC$_63Qi$pXteT2X*Ic1DX$&3Ce1&W*c>LW(m2#f z?UOLn(p;sc7Fj&nwhH^)6NK7ZXmWSiCG68oBFWx?Ab0C7VV_fqTI{*d?4>9ptjL{5D)XWC zBZor0&?qz@0Rn>K+f=9Tl-#E>e);DrdsaT7Hkm{eDuza@enb=s$x&z$K9b$@J>C3s zncgus^^)${;g$W`Q8{6xwYSeIK}8)8kh8uANQE|`QR_C?v5ctr0c^T0?}LEkIE$$E z0ddLtnI%ed$}D!^Xx|584ebM0b#JiGCZ{BXK)#+uIP|cf7L$+-Ao0IT?>m9VKH~(5 z^n(xPC*gr?)BXxK=#t)Kp2+a{9O5~`37>BK*#e!MqHkv3B8S|(N8gOUMSu~;`c>Yt zs}VZ(`6q~_lc5qKO^`*`b>=SnOuh(dS?L~(WT#Rka3L+X^5p61F^_g_^Yev$RtdW2 zCF0+?XT?5HR03}RL;j`Pr;?z7j#)Dac?k9s@FnyXy{EUir@0L|@$1u8-;gzp6iRzW z0a&mqg8x(EIK~q=Zz|-F6DL{iYn_IB5n2T}fdt$4e4-)|Jw>s*%N&E}Ve6i3zVUo1 zT%(qeGqhAL>x~{Gh0dOd>W@Y9E#`EZnr|_`)Itt>+SnM3?)j$*j7f*FG`na9-IGjJ z&8J}Z5V_$)Vx@V>ZUukse3r6P&zfk+qYdRph3;9U3XfSn5CpjqvCxeE&=C^(meD{8ESU^OFHJ;g$%5oIYrTfKT%^S7P+lh)oIg#>?y2QCrDtD4me8%T1P9|0t&*rS)=@IV_q z)I2q!{EgjZpY;NUoLkB#&m%1`XcaHrRp76@t>-ZNDCrUu6Nf$7s-=JF^j=qhk9=5^ z-=ng6*%FWq0AjiZ2HZ@4?+O$&VQIc*aZ{N7-boxgu%wS3(4Dt+!B=mOzY(u^_Mmk4 z3bIY{#}BtVFD`t+jF%wxwrdxC^Z)%8Mc%y+K5>44*52Kn3oqA&eE~cXg28;!F%WbN z<3f5PMSu}2uYC*)Dlr$|ijlmqfhw;e)Q@yFXfb2T2L&rIO$t?Keh4|3m|KE8Z_#JL z2ux}~jKehLo(lu+%rFpA%Ho@L-lybT+X@OG?hris+rU{b`6xx6(=>FQq|sruC}(XB z7lr1T6_>vD=6UQJIp%V2{?X%}ACQb_^sLC0>6;zKa4xDJ!tD>lsg4>{* z$;o{iK#Fm2R9ajRm7evnH*jOw(y`jEZ8(lY4U z&zGMhJxDTWn+(7vfwOzYtOe(^g$v3k2O)1om6|IRF?vP{^)usO%!)22)W9~G-KbvBiM4dyAZs;Ns z;Pb&p!u?p2Q^I%NV zDzhHP;b1*4_f#44zI#Y|VzUqkGnGllpuvckDHGM=ba@s@kfi5-P!Kr(ivz?w^&k&O zK-Yx4C!RhQH7JN_d`^KP37s#=q>!FqACb4p@}rJFf&*INWz)|2g5gK}M-k(_2+l0i zQ;_5_DN`EGJeQ6F-$l1i7b@qVOH)+==4s08*zV4$i2G z!3NAkSNJW$@a&){hN#%#IpZ3%9c1&?EDS7RuAr;O z5Fv5gGGXyc7+({Xme&q+8!|P-yU(2V_Df)MyQc zq*F14zVD18N6p&SYaTtVejvykX$BE*8gt2rvK#Fe8_u_BMT}{FHs{dZOsloHfv-=ZJ$N zg`k~zAV!(lEj_RjCP49MOPbeyv+0R?L%=;gtf$pa24w-KVy>>{0PP8}CpHdY_aq~8 z3WQ=n7tt&Iy#3bJmtFf*HB^^@$;Wv$p2csm4{1+C9|8u(ZkXyq(cvF}gj5P-;IBP+ zW^r>@_Uk05j+DtEe!hX%RRP+E?%oOEoJ0C8bO(~8LU=RyLhcc&NeO#eeLz&hc$MgC z&<#}iYZCHhw}(sKs#c?|wc=L@0GbDC!FFY#vIDjuThg56TeBEK$%bsr#$1h2PwR{6 z5%2g+uT|Pt)Y7dlLIXBgPFT_!)G-*JuNY2!{@6MHBtx=ng?a1DH}wQ5gmxLj|}vpp4JqzaoSGy zZWv{n$puR&!jbjmG5|+U%ZFL7sxc5H0{k`b=#ASO8OHGX7k)n6(U2?7ZE%RCw2V#x z8+W@W8*vW)7e1QbwCX(-TXd&$4H`WpbP4N4?bpRGlMUg~p_LJm&lWD77j5 z4EK4X{_KvY7=4%F$%dnw!B3gbXF}E{!#)Y0_A=4P76cUu?kz0T-BMVzED&t(T zL?lY*NOLMRbPBCZ>Z~uqlql3ZZXmb=*<-+ecX-u@UxN=z65A7mw0&rBNphaV-7lbOPcq5}pubRLCexOA1M2YpWzetz7A&Z?yK z*4xj}9tL_M`U{Ze^zp|ID}LU1mc7kA&4_thi9f8+<}?q@hzDGzF5c{l^&@qBG0o|< z4gx*#|HU|?B+0j}uhXQy&w3Qno92

    TmJ`dJ!2W{VmC5Q*BKl(`gK!lEGTwh5Y`4K9@bs9dSCjL?XcIgl8YBfaBM4t7ygo}M-SsPUy>W4!Szc~$a_7dY z4R5Qk&#|NSUU(63^MY*2;VWKQILyGe`LCwGs&z0qR>+i^f1Th-94-}aR2r@dF(OaC zNc~x@&{xTKX)h}3*h7vL>Zj&WJywb&u<4^ZBxvcfwYuirlX`KzST25>Ix(lK>#Q5I z`8ac>;B-&x%fZP=<1#9iLc{1ve9os)lGeG~0>x_N&w@;cgd-r6&95u{T zNjU1I2X-7J5;Z!5OChx?>T5^iZ1-fnyy}>n?l*z&vM5P#N!NcuDy#Y#obS;r1`V^v z3VBp>5FCM>AH-p&wH0ErXVNXB&^@~?N8#A2I7%HPx@V*nylj|iH*7uJ2}Xm&=oeE` z+(96rki+6e(O99WY7moAuEyg$CgVINW80Y6rl=5QeML3cPw5|ar&nv$v1FYp+h(B< zB^^v~$*CCo%kNpO(-Z!~{kp*&`ESb1*4#BVT{}`48jOvSHfN? zPWcZv-23j=_|=M7m1;C4+td>xsEf!hx9<9$Y>JBjqmL|=B2o04%f1}#7L@_Gy4lIe zsXDb9oVV`QdvL=i;=qP3oYfcDm82owG4b5^v?)V3?&$7$CeAsx6e`;-< zDFj9>f-|NH1$f!Fc3Fk-N{?KN>D|LpwF*|Kj#`9f!XRMVLOn-bS^pHwTKsJ8>f=*@Fa7Web&<8Vg#mX z`fdzkh1{q`bmqdg(;z$L)ijUlnkp%@MlE8qcsclsEDL@i|I%w6zpTz@C^=2G2n86} z(L*nvIyaGX&kFTBGtENIpeO~U3A5h=S>*lt`Fy~yvl9+^ zqO~k)fI#mY7xrfMq5FV|8IUt}0(e1FP?AlOr?Gcf1KZiLLVDCDP=x#5yGg{Q3y_!Q zdls1|ryF-A{H@t&>NTM5DK1sIfAjggbU~e8Gd5flw+&x@@)f?S`| zHXiwqq63X@$$ubk=BfCC7P}&Ye?z}BtK3AfB8lY?r-9(~%yHz(pSF>2YTea&$CT@S zwu0l$VGT;-Zz0jUJ&-dqZv81An0A35Zw6qjLjUsnHU^Nj&VuBso;Fb!lTb%1%rk+p zJ6rJQV=Uz&Nk=DQx+;Gk6T4jYvlW1+a9((dE2y5(qTAshld;05uG4$dUGv}jQsEB#>( z4k;Nn3P*ZQCe(M39Fk=}F3p*rmxK>gwU5?ORmO4|PNRs;l1VvjJh|Cg9wIr(W&xJ& z$#oSh^R)KP?QNLW7oE`C+*9SIT$3?I0}{EArBO&0xYD;}hNg{YpE_=Vaz#p`6+Z&` zir}zc24QON^E0HNAWUq1Bza^Z2Fd4c{EUUrkc_j*SlhnC$aNl#f^-aQ1>Ozig$Df; z@S+whSQ-DM!S20C9NS-^>i|Xg;VsQWmro$3>7pMTv8rKH9d6Yx|C)i#ms(tN8*YJ|K=@oGlOFtKAPJKkn2pE ztsv&-;XPDG{8v@Micn4!wX@H*;b<<{u9uWZ56W)XfWv4~kybZ+!;)5PZ8KU92_{M8 zG56_Y$GF)<88M({6gU27AAJHL4v@+scW@@`1&0V-29M}u2R*u&&SVv<=w*weKDn5r zHDJeJTSA6268jRqkKU4CmxIF7>_o@%O1wuqLPstmX$_s+Hb8z4JKK@Va@Jh_YRy#D z;91+UmV!5}bEH~-Z%G*vv)0+FTrJWXMzc;1Su^~lMQ7`tao53OPGzH=9UW2zC;TFl z+7B|_)8abFESQA!fGJ21()&J4XytN`*3dWtmE%X|rB3!@@k~7s5|uF#mDOw0G`eTM zb-*}gc1n*P#Jj*9B?+NI+&g~vAkKyJmHROal-V@~U}L*(az#gbd zCZR#{OkmgX#)-TY0wVQ)G)!{@EQc8&vmxux?$8Rp#9hCnh9me#=?hC@zO4d3^44w$ zqCdE5+Ym36o-!pP`cy z)GHTSG>XnY%aOTUWzi@!6WVZa5@{*ye4Hh96_Sj&zq_yQUm>W*OGGO((V7k9B8x^b znX=AABAD`6sRW)YNa1l*i+Rf8sn)@(x}kK><*PuM5o=085o5X91`!btBhZ}kJ5?^( zHs7a!$c)LsDh)D1CC2bVBJ^Au>JuhOu#9@ltGJ0Hp?60{^(S&2AzC=S69KuFquf7y zJgPCbp7{@fw^D>y08cwSKk_(ebh2!&iov zynP3M?0yNZsnnvEUlbqYyWiQT-)?;T&ud(^(de~g%~)aZgn2RAIX;*wCaOR5_t2hl z*ZTm@lYiP67OHFk!WI>Y3YEsbCu`0f+VE1TSM z+ZS^2L&FGy0o4Jwo*g-bIZZEx)ZF^9H(*k)?T#VI>eG2Perr_prL2SX)M z0D=fMi}}{W1-<2a6S=3wjft$jpql7oj=v_uPnGmCAtGSQ7ldd78>+;DXZwWQukPv) z%U9VsA|jV4Gz}(%$2zzPR0o%XD5e$wtl=G!U`WqBV~*tQ6GIa7H_*zCsQw6_@?nF* z{ko^YQZhRl9<7cJqJ5BKhzq$3*6uR6Te7N=k$dfeZpuZHQp}@}SS@_CUAHb9<>V@Y zrU6^f175P?q<`5YZ+xd-V~CS02AYNhQ(~9y?hTTCzJZt~cSUC3iF9H^O4bkcfa!xG zkHEJ8axHIz-E!k@_etF$EW!tpKx;rXXq!y@^}0+S9CB#{c71D?E{*jo|u^SE(+vQOitQ-9_#Rs~`oWP1$u`EF8|B^5~eO{GR~cUc3CZqj!varvJb92Cfmn!GFviIG=T7lK!m}qlNxSir@J1aWlZEs ze5TPk76zrjoE@qKm}nxmJ3~`+iZjP+rUxm_~-+Bnc29!NRdooju0&-aQHY#HsNjt z5pm2$LX*&dyBBMa++O*(_o1#2jy{>DlVNtfC!{KdwpP8j5)QdIplLWrNSl2BEA%x< z9@g>H%VZs72BTMGm6Gj%{3Ji^{M~jxxd5SQq^Tzy+nbaJMC{k}dLox2G>yxGJABK5 zNgv9Vi0U|tg@)J>Mtv~&$q`-1q^`%Xlu@=K>&qIsKA~w)j%D#jbCAG~846O`@_1k( zS2#3nya=`<$qt_2^q%bBJ)>6D2h*R9at&sganhA~I?40vY$bPTfiaOwCz{4Ig!u$UycIQ^?+sWFPvqg&O(QbRE=9_=%F9^Az+$gM$y= zqP*Uh^gcl)|J?eZE0;SojSLus_{+y2BnG@FEXWClvTA zmz-WkU|SB`QkkM_`Atpa`iG_gJWAZO*AI?QaxpLNbTdun|~lWQrOhGmwm_>xIw0827#8lcgyP^rF$3nE@gz- zXU)4!YZJhUTyD`cJYY=%!D4P5|I5KuQZ>+DOi6HX@pcC+xFr2UVU=GN>e@ivUYzWMShCy|y*z^g)s5QxTY~m{AH&F_LozAVr{O z6Cf#+Aq|6s2{W$SE}?*lX7n|r(!-npk2vt`S^1((6nc(^@dC?^Rn{yL$)OVRWoP;l zWSccE$v-JdeX!^`GsY$@YrrfRO4?K5xS4)>wUju>C@AEW8$Jl}KpHfsJ{b1=h0j0|!%nMI+ZsFI(Rvgf5T8dXBGchGNy=T?+L@!?+w}H~Pw4?0PsPSBN7T#^jiU z3=Q_K@A>xw5=iuOa+7&d^hHUcBA50X=?3~B4UAS{@ud(rGz-fS&gI+-fvHaJg`icL zCuOm;JDpb*LWqWe7^N|~Vvl-bvIt(+^fveOTKrQ2M=QO+i9$BfFczSD>Bb-ynJS60 zK2nY?_1a4xob+g#py3B83hBs~p(5m=s!3E^rj^xRA#-TB_TbRx?Dmd#Pu3;rrI4Bn zoSQt*s%RRKISLNp%0)l^h;EWExfu)^bsUAPp<%GV-XRSB#GN5^dMCGB=_2*J3lqlqkR&T| z=h4l4NNk%z{Q35F0t$gd!2 z8~@V1bK!{Bz41@h;4th(E*LM}_!z}CI3Hm?a1S5dc(-KZ_r||EzzhkJgXxFQod|qM zJ(~Me@HhU=_16LZrJBQL{n=BY$Y}O09Fsj@Tr-~rmF8DzT3+>*rFXlXp%7p+T=x;A zCfYQEqUw$KOu;lWAIXDK0H6jUeQ@t%P?E;o2aJv(@)LXwy+!ZoZSJYeM?3ieBP6R2 z!hJkp6^D@}S*!AdWWActp}S_SP*tgjv`k_p;DnWMwii7`vAcUE-A7HK?1QZz16v0V zn{BGEc1rG3`L+D>hMrB7xc&{8>vHKu+h7GQV@=Gv6*`KBkpfw1cjts(Xv{@^m8NBM z>B<7%4_mJ56bgoh>pute2jYztk+0yF^sV*3yQ)wwG>i%}tKi7sUb1q%2NL%QOe{D| zxHs{1S|7Q6g_A|Kds3s&Ffec9~qWm3P##0I377s)oXG8EfYTz@lWJql6MPH zFA^=o5fAnnyUwm)Psk##;7685@lu3(k#HI21PhO!*XdXkpo=|!7xG@SF`1}O{!9{=D}Op@g4)1#{wA;Qsck&}`bXS#!?ltiafRWBlh zqv4S_nP;Z&(IEFo5o0Z#=?#D)C&cnLGwuwOVB}69rRTNy zzbJO%Lq~x6qnvG< zeidV}x5gw<=&Cdq@28@T#ChPyo9)w$|H}b$N;ibd56<@PJ2(u0n?J~3^&U67OJ7EL zizvRKt2FpG2HOkPR6GXm*=G{Rj(ZoA-lEz}`R=bmztQvyA(}FK*NK;SdR;qDAo#We zu*r)61ws10fd>c=mT#RW5O_PM4=5ng?Ozkf(+zi00H&NAZ=g_g^Bo{Ac?0gN`&S54 zQ#3w8ZoEPjFG0SZF#Qrh(wt^k(zZp8bNI0Z-_g3D&F(!>01-m4OV2Zmbb%Q6J$m-R z-UY{yqCMhQJ)+loK4jn0PpAf7x zo#=8Xp_9`BC|U_E zs6e!r#Tsa4y8fC2n$mg8^H34YLX%7og#}3kmc6X`Ky;H?aN>&Mam^LNaGWsH&NK2r zhzO+oMCN2)K46bTyU4;!Ryv2}0PAIC1`3^bc$DYIitq7t=1fsT!@gy`+b)0}oygn$ z$D?}-f_zczt~R*o?+5_bZ?D*apuF}k2k{yrr^oI+b0WkaI8ASJPZg$T*$-7$JD!;NnI#C^aJ zqEm%hrwv3WMN}j(e#3SyzZ)GdzWx75kR0fp4w%5M?dqdBcGD~lTW?1~Yl`4~WNET| zeF4_}V&y-BL+Ilg{}vop8#h#qbGI1j6?c(+12-*vWVMjdp8}=|c}~-?4(;-?_(&&BHeK z_LzOppFsE$6vplY*Z{wBmtmq%12v7wan9D| zIBSonY3$N<15pTe8mFs6ZUVK28En99q~5Z-?6U?`zK-itZg^2>bsC3clvst4i9EsN zl;7r_T1KTG0zb+d@s?Tf)}Ox{beMj4JDldPy*uVa3s1zG%#-d#f=cn|hkV1qI(XIG zI$P#Ya_)R_QHlzs)Jm5e-L}!(1a+zq*))y}ab`=K!)1D{o@q>Xntq5cImF($e;r&F zuY_EacqN(iqSvFQ^pXBrNFk4D9DzkrQ%3F?28`oppOtyhwtzy?9{QoBaALgLx=u(u z&p04FA;Bb{L%ALrmI0zawJJn0jiYg#n_9~vW!M-c6js*8_Xu&mL*#}_>h6ml{Th*o z73?niOyj(;aiQsi@&<}erkOOYjc91SZqyG$9Zy(o*{De{U_+;vZY#XtRH0jG90$xy z*TS5dPPS{knYP6StOSI9Na%P59^Pxr&e1ist{gCs?h;Dz0dUo8VctFF`i0XA`$s<~?%r02T7gaH{LVPpkF|)Q6{o>tO9XvCo3D2t6(R#t&k|4ryUAv~}0_ZWw(l8C-J{mqMx2 zIAjxjU02H-N1@1R9FZx}|6Ni$?Ifrlo+H31={1bsJn$a{Ng=2`RPvl!+*cvRX&i+a zKgCLheR{@~)sj@Kk=0h%wN5M)YMRFDKF`*D$+gsTAONNMou*qsqaV&cS#%u`G>b;d zD5+D0hNf{?jvB^@?Y8y`aZKa2KmKP9cRf`|WST~8I&2k5w(t}3fu!9iqtL}P4$bI) zU^LmOLOatqm}7JCWLvhbepv2wk~8VbnwR%){il$+G>!{cMtkn#lCD#Tog_?Mzu`3W zk)+kL&XBZ@7Iqm5xl7}y%!squfcU*M+X3(NWI&;KX&i<*^|{OVhJi0n#+9s)qtts$ z!g`b|Y>Bs7p8WK~h^Gq^u8O1Fu`72Wu1R+C5cR{3rw}HMDN2Ygyj)}=b@!Fz%Cep$ zD+8bdjEY@MA)09%remh)z2Er+!$6^$+i~X(8{LvfQOtK%TbzW;gJo-PD5*}JW@l} zv)=G4S|7cbEUhVyLTS@N<#BVseRanN7M4#;%8oTOL-v>;8%3~D6y>QxV$%Ww6G6XN zthcE51Ro}&WaU<8`Ae_0SX3x&T7YEAS^!hLBeiE@cw%~S&D>G|YM28+&TlOMFoWSR zT7}*|rXi2tX6~}j%EVTxUi}cNQp0Iqp{8j861*DvD~9>t7xFK?uIJg)Xq+fwpwQH` zfB{5-j)T>g<$-KZ{`&d6dY;hur`D*T5XrPqdlJR$j)(cU2q7~>=RurGr4MV+hZ>DS zgI6lVFD;;R40eQnasb|X5v9yD*1YiK{Wfso^siP^=l~Zr0;bs&L=^i9CRQ8)8u5cQ zn(U)`LA=pqQn(El^y z5&SM(i|N_bosf&Y)=rnX3Ux^vaLgh0axS7`A@*V+hweUGS=Ski#yNstwP~%8mb3vA zcwq)nyj;0H-O4+~cj%PgWuN6OJcOLJXkG(^dLzN$nF&Fm9Of)_MXsp}RVH22>#VyV zMhfXk8<-r!j1#Xm%%==4QR=cl+XuZS&#KLJ8;&muVM!a?XhXI&avuhV{ebP6{LF4L zPm23#JRbw31x3j>iQbqk_+;LOjt}P+Z{RQAKjMiBdyDGY*XR)aZK{G~HVG89r28Z% z501Bm17h?``~+q;;&hzJX`RC=L?LaU1d&3h3Z}be)ql(H5#46WKerE0Z%h{4GpU|d z5UvIJ!_Vw4`%ET%$a2>3H>)wU^u}z#V>1ev+A7rbGYi6n2H6L)U>Ti`uD!8Y@XTaA z<7o-uYSW%W^<)Rd=h+65%Wb5IC?p_l;Dc%G+80{Fr!;(TCf#rgQD{5bK;Ve64lo*E z`v8P$z;Qp@ddol83^3o};HnUFw1Lkt3!k#wyFRnUCh=9!MRH$wPKDQs0&Eo#=<7k! z8-)dL$Gvm!Cd$kg5ZyKt<*!tFZX^Sv7JZkiH_DwqCo)OPk`Ue(hj6ul7{0gzU^IY{ zo^G7*o_HZjZ30&0F^`GMBIRZiWww4Ngw5UfpMCTR44S}UhTL6*?t_OZAG!=4nFmcV zon)^zIB2okEf<081!TgK$(9Q7h!`Y0EZpKL_q1|1rhBlYof#Htk5tt$V>`PAxBs2XvX#UQm+j81{nF zg87UNn2+cnz3)ihq85#kYZ3N>446#>k5u-J3g6+0ejp?&w!%tULYpQdrQE#$0~9=U z5;zU~$XkOZ0bZd5A^Rjq(+x8Dik#~=XM3R9hVYAwa3zU1z9y$q^iGI0^Clo#wAE%7 za(%&m80?S)w!(|u^YjUZf0q%gXZ&L`(V_ucfhTbt)4E#o6HlLVQH5q19CmU zeo&e4U<(;KLE|j^?`zU2CC@A7R9zuJSkXHqSj&4T*^Pfeg>KdXf=DiFJP5>YxlrX) zt`*o1nA2j^4%|Ic#+H5doIq^54k&K>yg95vx8yA(dbbC*(2;I+tc5&`lL#sN=uVQW z#A&+LBn!X5C8y=())?yAE*Y9bI5rd_MB^XrL2o7(7qo&87^{)2%S;=h(<9`Rd=Z;e z;c5A2^9n8M?=tAYK9kE2T0s{Ez0ip^X)uFpxJ_dnczD6u)q9X>Dy9gT&w7iy(|{W@EDUIrfc`kIc%YEyyaKPJg3_J@4P$pvI;1}W+IJu zM1c`4oU)I)ZZf^l`7&4_S{(bJu;hU(rQA*NnfzE@_8kTrUoXppGL&b}qVcsQ`o$?O zHNBM%&igRfyJ1X~*!bB{!V74XdkxJ!lPmlg!=#2vY~xY7MvTgtT(!?w^(X0(Aag(>>f^C?>pr-!q4bgc<@aaIpxvOg#!RljXRNk(%p)eV z%OGU&nebC$DGOVeA9+eKkL*;QX20>7rLE>W=TQy#k5#mWw*0mpKEwv>){CL;iPRpI z*@f+Mo+8PkDI!&~!Q|0s%WmtTK_m0;x1xJTgf2dc-W|E;#dea9)6^{>Z7FR%Kw8G< z)a)8M^=`{q>(%>MUsT!36e$2#-E=n91#3e%dZe$f0Nawb>WGl$D4 zWe4n(fpZ6D+Le1Mn?>GxU)?o2i6S=vlS!e&i0ecfkT2i6e&nW)G0(s8vz}%*KBfG0 zkyC}58e?3vnCv@?H9;G9yN@6?6Ad{_BC&%c2G0ZmJVVEi9Kw?$neauv2iqmNa8M+e zr7~+2A*Ev9eyF&Xr;_haBcBqe@NYrTQxezDT}uFxG-ta^7>YC zWiL?RZ=bXTSY~nsLUS-<%1wFGa_v09Bg(7LTY8s$){ulZi03eqD-fE)VV2Z&>+Pth zGX>%!yUjnXK3b~@O4(c@kD6u<4NSdhtUEqg(5)LjlVqRCCK4V963+xY%9Q_Zx8DX& zuG?Z~i*`w2tPkCN=teH+?l_45)Jv4ap~QWX|LjWyvziA%{z6x?Guoy2;GE2$W$Swe zJ6rr`pJf=0E|@L&j9kpH6&M$vuMnH!<$zGh&jD4W93*%7pz^_;XEc2COfFz(wC=zW z+%WWF7Jyc`7Spp(2)Sf+s=YxfL85!MUxfr_0=UV891{4SldaM#eo=go8;g{+QcM46 z0?|FauL1(*YT2|SrYa8Kt8}~Cw~Ov6bQK)r%)oze!wAmHIdx7_xEEM4506mQILZ*W z`{QeGovEaI`do$29L^WKm5Vt`l(W%98Gsz*U zWlASk_Op!6ymQIXZZT@hx4Xcoat}zteQwOI>B&ld9d8UhwJl?gXGT-4%&q7 z-H$gf{@33aP!Vo&!DHlxuetHni=VCov?I1BnK$qft+w9k3pxM(;kEOV$yJYBW6(CV zAcp7eobU@IUnW;+T6a;A>R|I6nER-KgmgJtEh896aFUaDIeKHQmGiX|eNnCRV*D)Q zsTF-`;)#m!DoyLkFJAhAw90adZKTQ*qDQlgVkb

    b~pY9?|yUR{~F%AQfG~}gNa;f&V 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

    {% endblock %} \ No newline at end of file diff --git a/website/utils.py b/website/utils.py index 0983f62517..97c03bc049 100644 --- a/website/utils.py +++ b/website/utils.py @@ -242,7 +242,8 @@ def get_outer_env(page_name, args): where parent='Website Settings' and parentfield='footer_items' order by idx asc""", as_dict=1), - 'int':int + 'int':int, + "webnotes": webnotes }) args.update(ret) From c9e32e6c8dcc701324a4f6908246078546cbd05f Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 6 Mar 2013 11:30:09 +0530 Subject: [PATCH 103/982] fixed patches for new sync --- .../locale/_messages_doc.json | 41 ------------------- .../purchase_request/locale/de-doc.json | 39 ------------------ .../purchase_request/locale/pt-BR-doc.json | 41 ------------------- .../purchase_request/locale/th-doc.json | 41 ------------------- .../locale/_messages_doc.json | 19 --------- .../purchase_request_item/locale/de-doc.json | 18 -------- .../locale/pt-BR-doc.json | 19 --------- .../purchase_request_item/locale/th-doc.json | 19 --------- .../locale/_messages_doc.json | 16 -------- .../holiday_block_list/locale/de-doc.json | 16 -------- .../holiday_block_list/locale/pt-BR-doc.json | 16 -------- .../holiday_block_list/locale/th-doc.json | 16 -------- .../locale/_messages_doc.json | 5 --- .../locale/de-doc.json | 5 --- .../locale/pt-BR-doc.json | 5 --- .../locale/th-doc.json | 5 --- .../locale/_messages_doc.json | 6 --- .../locale/de-doc.json | 6 --- .../locale/pt-BR-doc.json | 6 --- .../locale/th-doc.json | 6 --- .../leave_application_cleanup.py | 1 + .../custom_script_delete_permission.py | 1 + 22 files changed, 2 insertions(+), 345 deletions(-) delete mode 100644 buying/doctype/purchase_request/locale/_messages_doc.json delete mode 100644 buying/doctype/purchase_request/locale/de-doc.json delete mode 100644 buying/doctype/purchase_request/locale/pt-BR-doc.json delete mode 100644 buying/doctype/purchase_request/locale/th-doc.json delete mode 100644 buying/doctype/purchase_request_item/locale/_messages_doc.json delete mode 100644 buying/doctype/purchase_request_item/locale/de-doc.json delete mode 100644 buying/doctype/purchase_request_item/locale/pt-BR-doc.json delete mode 100644 buying/doctype/purchase_request_item/locale/th-doc.json delete mode 100644 hr/doctype/holiday_block_list/locale/_messages_doc.json delete mode 100644 hr/doctype/holiday_block_list/locale/de-doc.json delete mode 100644 hr/doctype/holiday_block_list/locale/pt-BR-doc.json delete mode 100644 hr/doctype/holiday_block_list/locale/th-doc.json delete mode 100644 hr/doctype/holiday_block_list_allow/locale/_messages_doc.json delete mode 100644 hr/doctype/holiday_block_list_allow/locale/de-doc.json delete mode 100644 hr/doctype/holiday_block_list_allow/locale/pt-BR-doc.json delete mode 100644 hr/doctype/holiday_block_list_allow/locale/th-doc.json delete mode 100644 hr/doctype/holiday_block_list_date/locale/_messages_doc.json delete mode 100644 hr/doctype/holiday_block_list_date/locale/de-doc.json delete mode 100644 hr/doctype/holiday_block_list_date/locale/pt-BR-doc.json delete mode 100644 hr/doctype/holiday_block_list_date/locale/th-doc.json diff --git a/buying/doctype/purchase_request/locale/_messages_doc.json b/buying/doctype/purchase_request/locale/_messages_doc.json deleted file mode 100644 index f99e053c8e..0000000000 --- a/buying/doctype/purchase_request/locale/_messages_doc.json +++ /dev/null @@ -1,41 +0,0 @@ -[ - "% Ordered", - "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template", - "IDT", - "Select Terms and Conditions", - "Name of the entity who has requested for the Purchase Requisition", - "Status", - "Purchase Request", - "Cancel Reason", - "Terms and Conditions", - "Get Terms and Conditions", - "Company", - "Requested By", - "Amended From", - "File List", - "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field", - "Remarks", - "Sales Order No", - "Buying", - "To manage multiple series please go to Setup > Manage Series", - "Items", - "Pull Sales Order Items", - "Submitted", - "Fiscal Year", - "Stopped", - "Cancelled", - "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.", - "Letter Head", - "Amendment Date", - "The date at which current entry is made in system.", - "Transaction Date", - "Select the relevant company name if you have multiple companies", - "Series", - "The date at which current entry is corrected in the system.", - "Purchase Requisition Details", - "More Info", - "One or multiple Sales Order no which generated this Purchase Requisition", - "Draft", - "Terms and Conditions Content", - "% of materials ordered against this Purchase Requisition" -] \ No newline at end of file diff --git a/buying/doctype/purchase_request/locale/de-doc.json b/buying/doctype/purchase_request/locale/de-doc.json deleted file mode 100644 index 7d05e3f57b..0000000000 --- a/buying/doctype/purchase_request/locale/de-doc.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "% Ordered": "% Geordnete", - "% of materials ordered against this Purchase Requisition": "% Der bestellten Materialien gegen diese Bestellanforderung", - "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template": "F\u00fcgen AGB f\u00fcr die Bestellanforderung. Sie k\u00f6nnen auch eine AGB-Master und verwenden Sie die Vorlage", - "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field": "Nach dem Abbruch der Bestellanforderung, wird ein Dialogfeld bitten Grund f\u00fcr die Stornierung, die in diesem Bereich reflektiert werden", - "Amended From": "Ge\u00e4ndert von", - "Amendment Date": "\u00c4nderung Datum", - "Buying": "Kauf", - "Cancel Reason": "Abbrechen Reason", - "Cancelled": "Abgesagt", - "Company": "Firma", - "Draft": "Entwurf", - "File List": "Dateiliste", - "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.": "Die Einreichung in Weitere Informationen \u00fcber die Bestellanforderung wird Ihnen helfen, Ihre Daten analysieren besser.", - "Fiscal Year": "Gesch\u00e4ftsjahr", - "Get Terms and Conditions": "Holen AGB", - "IDT": "IDT", - "Items": "Artikel", - "Letter Head": "Briefkopf", - "More Info": "Mehr Info", - "Name of the entity who has requested for the Purchase Requisition": "Name der Organisation, die f\u00fcr die Bestellanforderung angefordert hat", - "One or multiple Sales Order no which generated this Purchase Requisition": "Eine oder mehrere Sales Order zur Requisition, die diese generiert Kauf", - "Pull Sales Order Items": "Ziehen Sie Sales Order Artikel", - "Remarks": "Bemerkungen", - "Requested By": "Angefordert von", - "Sales Order No": "In Sales Order", - "Select Terms and Conditions": "W\u00e4hlen AGB", - "Select the relevant company name if you have multiple companies": "W\u00e4hlen Sie den entsprechenden Firmennamen, wenn Sie mehrere Unternehmen haben", - "Series": "Serie", - "Status": "Status", - "Stopped": "Gestoppt", - "Submitted": "Eingereicht", - "Terms and Conditions": "AGB", - "Terms and Conditions Content": "AGB Inhalt", - "The date at which current entry is corrected in the system.": "Der Zeitpunkt, zu dem aktuellen Eintrag in dem System korrigiert.", - "The date at which current entry is made in system.": "Das Datum, an dem aktuellen Eintrag im System hergestellt wird.", - "To manage multiple series please go to Setup > Manage Series": "Um mehrere Reihen zu verwalten gehen Sie bitte auf Setup> Verwalten Series", - "Transaction Date": "Transaction Datum" -} \ No newline at end of file diff --git a/buying/doctype/purchase_request/locale/pt-BR-doc.json b/buying/doctype/purchase_request/locale/pt-BR-doc.json deleted file mode 100644 index ca7fc16330..0000000000 --- a/buying/doctype/purchase_request/locale/pt-BR-doc.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "% Ordered": "Pedido %", - "% of materials ordered against this Purchase Requisition": "% de materiais encomendados contra este Pedido de Compra", - "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template": "Adicione Termos e Condi\u00e7\u00f5es para o Pedido de Compra. Voc\u00ea tamb\u00e9m pode preparar um cadastro de Termos e Condi\u00e7\u00f5es e usar o Modelo", - "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field": "Depois de cancelar o Pedido de Compra, uma caixa de di\u00e1logo ir\u00e1 pedir-lhe a raz\u00e3o para o cancelamento que ser\u00e1 refletido neste campo", - "Amended From": "Corrigido De", - "Amendment Date": "Data da Corre\u00e7\u00e3o", - "Buying": "Compras", - "Cancel Reason": "Motivo do Cancelar", - "Cancelled": "Cancelado", - "Company": "Empresa", - "Draft": "Rascunho", - "File List": "Lista de Arquivos", - "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.": "Preenchimento de informa\u00e7\u00f5es adicionais sobre o pedido de compra vai ajudar a analisar melhor seus dados.", - "Fiscal Year": "Exerc\u00edcio fiscal", - "Get Terms and Conditions": "Obter os Termos e Condi\u00e7\u00f5es", - "IDT": "IDT", - "Items": "Itens", - "Letter Head": "Timbrado", - "More Info": "Mais informa\u00e7\u00f5es", - "Name of the entity who has requested for the Purchase Requisition": "Nome da entidade que solicitou para o Pedido de Compra", - "One or multiple Sales Order no which generated this Purchase Requisition": "Um ou v\u00e1rios n\u00ba de Ordens de Venda que gerou este Pedido de Compra", - "Pull Sales Order Items": "Puxar itens da Ordem de Venda", - "Purchase Request": "Pedido de Compra", - "Purchase Requisition Details": "Detalhes da Pedido de Compra", - "Remarks": "Observa\u00e7\u00f5es", - "Requested By": "Solicitado por", - "Sales Order No": "N\u00ba da Ordem de Venda", - "Select Terms and Conditions": "Selecione os Termos e Condi\u00e7\u00f5es", - "Select the relevant company name if you have multiple companies": "Selecione o nome da empresa em quest\u00e3o, se voc\u00ea tem v\u00e1rias empresas", - "Series": "S\u00e9ries", - "Status": "Estado", - "Stopped": "Parado", - "Submitted": "Enviado", - "Terms and Conditions": "Termos e Condi\u00e7\u00f5es", - "Terms and Conditions Content": "Conte\u00fados dos Termos e Condi\u00e7\u00f5es", - "The date at which current entry is corrected in the system.": "A data em que o lan\u00e7amento atual \u00e9 corrigido no sistema.", - "The date at which current entry is made in system.": "A data em que o lan\u00e7amento atual \u00e9 feito no sistema.", - "To manage multiple series please go to Setup > Manage Series": "Para gerenciar v\u00e1rias s\u00e9ries por favor, v\u00e1 para Configura\u00e7\u00e3o > Gerenciar S\u00e9ries", - "Transaction Date": "Data da Transa\u00e7\u00e3o" -} \ No newline at end of file diff --git a/buying/doctype/purchase_request/locale/th-doc.json b/buying/doctype/purchase_request/locale/th-doc.json deleted file mode 100644 index 5b604e8ebd..0000000000 --- a/buying/doctype/purchase_request/locale/th-doc.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "% Ordered": "\u0e2a\u0e31\u0e48\u0e07%", - "% of materials ordered against this Purchase Requisition": "% \u0e02\u0e2d\u0e07\u0e27\u0e31\u0e2a\u0e14\u0e38\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e40\u0e1a\u0e34\u0e01\u0e19\u0e35\u0e49", - "Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template": "\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e43\u0e19\u0e01\u0e32\u0e23\u0e40\u0e1a\u0e34\u0e01\u0e0b\u0e37\u0e49\u0e2d \u0e19\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e19\u0e35\u0e49\u0e04\u0e38\u0e13\u0e22\u0e31\u0e07\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e40\u0e15\u0e23\u0e35\u0e22\u0e21\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e02\u0e49\u0e2d\u0e01\u0e33\u0e2b\u0e19\u0e14\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e41\u0e25\u0e30\u0e1b\u0e23\u0e34\u0e0d\u0e0d\u0e32\u0e42\u0e17\u0e41\u0e25\u0e30\u0e43\u0e0a\u0e49\u0e41\u0e21\u0e48\u0e41\u0e1a\u0e1a", - "After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field": "\u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e01\u0e32\u0e23\u0e40\u0e1a\u0e34\u0e01\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e42\u0e15\u0e49\u0e15\u0e2d\u0e1a\u0e08\u0e30\u0e02\u0e2d\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e0b\u0e36\u0e48\u0e07\u0e08\u0e30\u0e2a\u0e30\u0e17\u0e49\u0e2d\u0e19\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e47\u0e19\u0e43\u0e19\u0e14\u0e49\u0e32\u0e19\u0e19\u0e35\u0e49", - "Amended From": "\u0e41\u0e01\u0e49\u0e44\u0e02\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", - "Amendment Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e41\u0e01\u0e49\u0e44\u0e02", - "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", - "Cancel Reason": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25", - "Cancelled": "\u0e22\u0e01\u0e40\u0e25\u0e34\u0e01", - "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", - "Draft": "\u0e23\u0e48\u0e32\u0e07", - "File List": "\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e1f\u0e25\u0e4c", - "Filing in Additional Information about the Purchase Requisition will help you analyze your data better.": "\u0e22\u0e37\u0e48\u0e19\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e43\u0e1a\u0e02\u0e2d\u0e0b\u0e37\u0e49\u0e2d\u0e08\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e43\u0e2b\u0e49\u0e04\u0e38\u0e13\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e27\u0e34\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e02\u0e2d\u0e07\u0e04\u0e38\u0e13\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19", - "Fiscal Year": "\u0e1b\u0e35\u0e07\u0e1a\u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13", - "Get Terms and Conditions": "\u0e23\u0e31\u0e1a\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", - "IDT": "IDT", - "Items": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", - "Letter Head": "\u0e2b\u0e31\u0e27\u0e08\u0e14\u0e2b\u0e21\u0e32\u0e22", - "More Info": "\u0e02\u0e49\u0e2d\u0e21\u0e39\u0e25\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21", - "Name of the entity who has requested for the Purchase Requisition": "\u0e0a\u0e37\u0e48\u0e2d\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e48\u0e27\u0e22\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e1a\u0e34\u0e01\u0e0b\u0e37\u0e49\u0e2d", - "One or multiple Sales Order no which generated this Purchase Requisition": "\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e2b\u0e25\u0e32\u0e22 no \u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e01\u0e32\u0e23\u0e02\u0e32\u0e22\u0e0b\u0e36\u0e48\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07\u0e43\u0e1a\u0e02\u0e2d\u0e0b\u0e37\u0e49\u0e2d\u0e19\u0e35\u0e49", - "Pull Sales Order Items": "\u0e14\u0e36\u0e07\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22", - "Purchase Request": "\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e2d", - "Purchase Requisition Details": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e23\u0e32\u0e22\u0e25\u0e30\u0e40\u0e2d\u0e35\u0e22\u0e14\u0e43\u0e1a\u0e40\u0e1a\u0e34\u0e01", - "Remarks": "\u0e02\u0e49\u0e2d\u0e04\u0e34\u0e14\u0e40\u0e2b\u0e47\u0e19", - "Requested By": "\u0e01\u0e32\u0e23\u0e23\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e08\u0e32\u0e01", - "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", - "Select Terms and Conditions": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", - "Select the relevant company name if you have multiple companies": "\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e0a\u0e37\u0e48\u0e2d \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17 \u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e02\u0e49\u0e2d\u0e07\u0e16\u0e49\u0e32\u0e04\u0e38\u0e13\u0e21\u0e35\u0e2b\u0e25\u0e32\u0e22 \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", - "Series": "\u0e0a\u0e38\u0e14", - "Status": "\u0e2a\u0e16\u0e32\u0e19\u0e30", - "Stopped": "\u0e2b\u0e22\u0e38\u0e14", - "Submitted": "Submitted", - "Terms and Conditions": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02", - "Terms and Conditions Content": "\u0e02\u0e49\u0e2d\u0e15\u0e01\u0e25\u0e07\u0e41\u0e25\u0e30\u0e40\u0e07\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e02\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32", - "The date at which current entry is corrected in the system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e21\u0e35\u0e01\u0e32\u0e23\u0e41\u0e01\u0e49\u0e44\u0e02\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", - "The date at which current entry is made in system.": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19\u0e08\u0e30\u0e17\u0e33\u0e43\u0e19\u0e23\u0e30\u0e1a\u0e1a", - "To manage multiple series please go to Setup > Manage Series": "\u0e43\u0e19\u0e01\u0e32\u0e23\u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e01\u0e31\u0e1a\u0e2b\u0e25\u0e32\u0e22\u0e0a\u0e38\u0e14\u0e42\u0e1b\u0e23\u0e14\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e01\u0e32\u0e23\u0e15\u0e31\u0e49\u0e07\u0e04\u0e48\u0e32> \u0e08\u0e31\u0e14\u0e01\u0e32\u0e23\u0e41\u0e1a\u0e1a", - "Transaction Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23" -} \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/_messages_doc.json b/buying/doctype/purchase_request_item/locale/_messages_doc.json deleted file mode 100644 index 5607dd9e92..0000000000 --- a/buying/doctype/purchase_request_item/locale/_messages_doc.json +++ /dev/null @@ -1,19 +0,0 @@ -[ - "Item Group", - "Item Name", - "Description", - "Required Date", - "Lead Time Date", - "Brand", - "Ordered Qty", - "Page Break", - "Stock UOM", - "Min Order Qty", - "Purchase Request Item", - "Warehouse", - "Projected Qty", - "Sales Order No", - "Item Code", - "Buying", - "Quantity" -] \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/de-doc.json b/buying/doctype/purchase_request_item/locale/de-doc.json deleted file mode 100644 index 6e5eff8979..0000000000 --- a/buying/doctype/purchase_request_item/locale/de-doc.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "Brand": "Marke", - "Buying": "Kauf", - "Description": "Beschreibung", - "Item Code": "Item Code", - "Item Group": "Artikel-Gruppe", - "Item Name": "Item Name", - "Lead Time Date": "Lead Time Datum", - "Min Order Qty": "Mindestbestellmenge", - "Ordered Qty": "Bestellte Menge", - "Page Break": "Seitenwechsel", - "Projected Qty": "Prognostizierte Anzahl", - "Quantity": "Menge", - "Required Date": "Erforderlich Datum", - "Sales Order No": "In Sales Order", - "Stock UOM": "Lager UOM", - "Warehouse": "Lager" -} \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/pt-BR-doc.json b/buying/doctype/purchase_request_item/locale/pt-BR-doc.json deleted file mode 100644 index 471321be76..0000000000 --- a/buying/doctype/purchase_request_item/locale/pt-BR-doc.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "Brand": "Marca", - "Buying": "Compras", - "Description": "Descri\u00e7\u00e3o", - "Item Code": "C\u00f3digo do Item", - "Item Group": "Grupo de Itens", - "Item Name": "Nome do Item", - "Lead Time Date": "Prazo de entrega", - "Min Order Qty": "Pedido M\u00ednimo", - "Ordered Qty": "Qtde. encomendada", - "Page Break": "Quebra de p\u00e1gina", - "Projected Qty": "Qtde. Projetada", - "Purchase Request Item": "Item do Pedido de Compra", - "Quantity": "Quantidade", - "Required Date": "Data Obrigat\u00f3ria", - "Sales Order No": "N\u00ba da Ordem de Venda", - "Stock UOM": "UDM do Estoque", - "Warehouse": "Almoxarifado" -} \ No newline at end of file diff --git a/buying/doctype/purchase_request_item/locale/th-doc.json b/buying/doctype/purchase_request_item/locale/th-doc.json deleted file mode 100644 index 2165e830cb..0000000000 --- a/buying/doctype/purchase_request_item/locale/th-doc.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "Brand": "\u0e22\u0e35\u0e48\u0e2b\u0e49\u0e2d", - "Buying": "\u0e01\u0e32\u0e23\u0e0b\u0e37\u0e49\u0e2d", - "Description": "\u0e25\u0e31\u0e01\u0e29\u0e13\u0e30", - "Item Code": "\u0e23\u0e2b\u0e31\u0e2a\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", - "Item Group": "\u0e01\u0e25\u0e38\u0e48\u0e21\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32", - "Item Name": "\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23", - "Lead Time Date": "\u0e19\u0e33\u0e27\u0e31\u0e19\u0e40\u0e27\u0e25\u0e32", - "Min Order Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e31\u0e49\u0e19\u0e15\u0e48\u0e33", - "Ordered Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e2a\u0e31\u0e48\u0e07", - "Page Break": "\u0e41\u0e1a\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32", - "Projected Qty": "\u0e08\u0e33\u0e19\u0e27\u0e19\u0e17\u0e35\u0e48\u0e04\u0e32\u0e14\u0e01\u0e32\u0e23\u0e13\u0e4c\u0e44\u0e27\u0e49", - "Purchase Request Item": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e02\u0e2d", - "Quantity": "\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e13", - "Required Date": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e01\u0e32\u0e23", - "Sales Order No": "\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e22\u0e2d\u0e14\u0e02\u0e32\u0e22", - "Stock UOM": "UOM \u0e2a\u0e15\u0e47\u0e2d\u0e01", - "Warehouse": "\u0e04\u0e25\u0e31\u0e07\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/_messages_doc.json b/hr/doctype/holiday_block_list/locale/_messages_doc.json deleted file mode 100644 index 9f03794347..0000000000 --- a/hr/doctype/holiday_block_list/locale/_messages_doc.json +++ /dev/null @@ -1,16 +0,0 @@ -[ - "Allow Users", - "Block Holidays on important days.", - "Block Days", - "HR", - "Company", - "Holiday Block List Allowed", - "Holiday Block List Dates", - "Holiday Block List", - "Stop users from making Leave Applications on following days.", - "Holiday Block List Name", - "Year", - "If not checked, the list will have to be added to each Department where it has to be applied.", - "Applies to Company", - "Allow the following users to make Leave Applications for block days." -] \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/de-doc.json b/hr/doctype/holiday_block_list/locale/de-doc.json deleted file mode 100644 index 7814136a5b..0000000000 --- a/hr/doctype/holiday_block_list/locale/de-doc.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "Allow Users": "Erm\u00f6glichen", - "Allow the following users to make Leave Applications for block days.": "Lassen Sie die folgenden Benutzer Leave Anwendungen f\u00fcr Block Tag machen.", - "Applies to Company": "Gilt f\u00fcr Unternehmen", - "Block Days": "Block Tage", - "Block Holidays on important days.": "Blockieren Urlaub auf wichtige Tage.", - "Company": "Firma", - "HR": "HR", - "Holiday Block List": "Ferienwohnung Block List", - "Holiday Block List Allowed": "Ferienwohnung Block List erlaubt", - "Holiday Block List Dates": "Ferienwohnung Block List Termine", - "Holiday Block List Name": "Urlaub Blockieren Name", - "If not checked, the list will have to be added to each Department where it has to be applied.": "Falls nicht, wird die Liste m\u00fcssen auf jeden Abteilung, wo sie angewendet werden hinzugef\u00fcgt werden.", - "Stop users from making Leave Applications on following days.": "Stoppen Sie den Nutzer von Leave Anwendungen auf folgenden Tagen.", - "Year": "Jahr" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/pt-BR-doc.json b/hr/doctype/holiday_block_list/locale/pt-BR-doc.json deleted file mode 100644 index 69249a7125..0000000000 --- a/hr/doctype/holiday_block_list/locale/pt-BR-doc.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "Allow Users": "Permitir que os usu\u00e1rios", - "Allow the following users to make Leave Applications for block days.": "Permitir que os usu\u00e1rios a seguir para fazer aplica\u00e7\u00f5es deixam para os dias de bloco.", - "Applies to Company": "Aplica-se a Empresa", - "Block Days": "Dias bloco", - "Block Holidays on important days.": "Bloquear feriados em dias importantes.", - "Company": "Empresa", - "HR": "RH", - "Holiday Block List": "Lista de Bloqueios de f\u00e9rias", - "Holiday Block List Allowed": "Lista de feriado Bloco admitidos", - "Holiday Block List Dates": "Datas de f\u00e9rias Lista de Bloqueios", - "Holiday Block List Name": "Nome de f\u00e9rias Lista de Bloqueios", - "If not checked, the list will have to be added to each Department where it has to be applied.": "Se n\u00e3o for controlada, a lista dever\u00e1 ser adicionado a cada departamento onde tem de ser aplicado.", - "Stop users from making Leave Applications on following days.": "Pare de usu\u00e1rios de fazer aplica\u00e7\u00f5es deixam nos dias seguintes.", - "Year": "Ano" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list/locale/th-doc.json b/hr/doctype/holiday_block_list/locale/th-doc.json deleted file mode 100644 index 30e3ba09c6..0000000000 --- a/hr/doctype/holiday_block_list/locale/th-doc.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "Allow Users": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19", - "Allow the following users to make Leave Applications for block days.": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e17\u0e35\u0e48\u0e08\u0e30\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49\u0e07\u0e32\u0e19\u0e2d\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e1a\u0e25\u0e47\u0e2d\u0e01", - "Applies to Company": "\u0e19\u0e33\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e01\u0e31\u0e1a \u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", - "Block Days": "\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01", - "Block Holidays on important days.": "\u0e1b\u0e34\u0e14\u0e01\u0e31\u0e49\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e43\u0e19\u0e27\u0e31\u0e19\u0e2a\u0e33\u0e04\u0e31\u0e0d", - "Company": "\u0e1a\u0e23\u0e34\u0e29\u0e31\u0e17", - "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", - "Holiday Block List": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14", - "Holiday Block List Allowed": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01 Holiday \u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e19\u0e33", - "Holiday Block List Dates": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e27\u0e31\u0e19\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", - "Holiday Block List Name": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e0a\u0e37\u0e48\u0e2d\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", - "If not checked, the list will have to be added to each Department where it has to be applied.": "\u0e16\u0e49\u0e32\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e15\u0e23\u0e27\u0e08\u0e2a\u0e2d\u0e1a\u0e23\u0e32\u0e22\u0e0a\u0e37\u0e48\u0e2d\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e41\u0e15\u0e48\u0e25\u0e30\u0e41\u0e1c\u0e19\u0e01\u0e17\u0e35\u0e48\u0e21\u0e31\u0e19\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e43\u0e0a\u0e49", - "Stop users from making Leave Applications on following days.": "\u0e2b\u0e22\u0e38\u0e14\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e17\u0e33\u0e41\u0e2d\u0e1e\u0e1e\u0e25\u0e34\u0e40\u0e04\u0e17\u0e35\u0e48\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07\u0e43\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e14\u0e31\u0e07\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e19\u0e35\u0e49", - "Year": "\u0e1b\u0e35" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_allow/locale/_messages_doc.json b/hr/doctype/holiday_block_list_allow/locale/_messages_doc.json deleted file mode 100644 index ac1046f409..0000000000 --- a/hr/doctype/holiday_block_list_allow/locale/_messages_doc.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - "HR", - "Allow User", - "Holiday Block List Allow" -] \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_allow/locale/de-doc.json b/hr/doctype/holiday_block_list_allow/locale/de-doc.json deleted file mode 100644 index 82df344920..0000000000 --- a/hr/doctype/holiday_block_list_allow/locale/de-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Allow User": "Benutzer zulassen", - "HR": "HR", - "Holiday Block List Allow": "Ferienwohnung Block List zulassen" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_allow/locale/pt-BR-doc.json b/hr/doctype/holiday_block_list_allow/locale/pt-BR-doc.json deleted file mode 100644 index 11d692db69..0000000000 --- a/hr/doctype/holiday_block_list_allow/locale/pt-BR-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Allow User": "Permitir que o usu\u00e1rio", - "HR": "RH", - "Holiday Block List Allow": "Lista de Bloqueios de f\u00e9rias Permitir" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_allow/locale/th-doc.json b/hr/doctype/holiday_block_list_allow/locale/th-doc.json deleted file mode 100644 index 1b1b4b18b7..0000000000 --- a/hr/doctype/holiday_block_list_allow/locale/th-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Allow User": "\u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49\u0e1c\u0e39\u0e49\u0e43\u0e0a\u0e49", - "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", - "Holiday Block List Allow": "\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01 Holiday \u0e2d\u0e19\u0e38\u0e0d\u0e32\u0e15\u0e43\u0e2b\u0e49" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/_messages_doc.json b/hr/doctype/holiday_block_list_date/locale/_messages_doc.json deleted file mode 100644 index 20482bdd12..0000000000 --- a/hr/doctype/holiday_block_list_date/locale/_messages_doc.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - "HR", - "Holiday Block List Date", - "Reason", - "Block Date" -] \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/de-doc.json b/hr/doctype/holiday_block_list_date/locale/de-doc.json deleted file mode 100644 index d4d6d69db2..0000000000 --- a/hr/doctype/holiday_block_list_date/locale/de-doc.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Block Date": "Blockieren Datum", - "HR": "HR", - "Holiday Block List Date": "Ferienwohnung Block List Datum", - "Reason": "Grund" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/pt-BR-doc.json b/hr/doctype/holiday_block_list_date/locale/pt-BR-doc.json deleted file mode 100644 index 83812b0b9b..0000000000 --- a/hr/doctype/holiday_block_list_date/locale/pt-BR-doc.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Block Date": "Bloquear Data", - "HR": "RH", - "Holiday Block List Date": "Data feriado Lista de Bloqueios", - "Reason": "Motivo" -} \ No newline at end of file diff --git a/hr/doctype/holiday_block_list_date/locale/th-doc.json b/hr/doctype/holiday_block_list_date/locale/th-doc.json deleted file mode 100644 index 35f09a93c8..0000000000 --- a/hr/doctype/holiday_block_list_date/locale/th-doc.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Block Date": "\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48", - "HR": "\u0e17\u0e23\u0e31\u0e1e\u0e22\u0e32\u0e01\u0e23\u0e1a\u0e38\u0e04\u0e04\u0e25", - "Holiday Block List Date": "\u0e27\u0e31\u0e19\u0e2b\u0e22\u0e38\u0e14\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23\u0e1a\u0e25\u0e47\u0e2d\u0e01", - "Reason": "\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25" -} \ No newline at end of file diff --git a/patches/november_2012/leave_application_cleanup.py b/patches/november_2012/leave_application_cleanup.py index 18e69cfa8d..eca0fae90f 100644 --- a/patches/november_2012/leave_application_cleanup.py +++ b/patches/november_2012/leave_application_cleanup.py @@ -1,6 +1,7 @@ import webnotes def execute(): + webnotes.reload_doc("core", "doctype", "doctype") webnotes.clear_perms("Leave Application") webnotes.reload_doc("hr", "doctype", "leave_application") webnotes.conn.sql("""update `tabLeave Application` set status='Approved' diff --git a/patches/october_2012/custom_script_delete_permission.py b/patches/october_2012/custom_script_delete_permission.py index c515b04ba0..efcb0593e6 100644 --- a/patches/october_2012/custom_script_delete_permission.py +++ b/patches/october_2012/custom_script_delete_permission.py @@ -1,3 +1,4 @@ import webnotes def execute(): + webnotes.reload_doc("core", "doctype", "docperm") webnotes.reset_perms("Custom Script") From 7804401d037786023dae19dd94728daf2c353ffb Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 6 Mar 2013 11:32:33 +0530 Subject: [PATCH 104/982] attendance code cleanup --- hr/doctype/attendance/attendance.py | 77 +++++++++++------------------ 1 file changed, 30 insertions(+), 47 deletions(-) diff --git a/hr/doctype/attendance/attendance.py b/hr/doctype/attendance/attendance.py index 289a14eebf..67af429dd0 100644 --- a/hr/doctype/attendance/attendance.py +++ b/hr/doctype/attendance/attendance.py @@ -17,87 +17,70 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import add_days, getdate, now -from webnotes.model import db_exists +from webnotes.utils import getdate, nowdate from webnotes.model.doc import make_autoname -from webnotes.model.bean import copy_doclist -from webnotes import msgprint +from webnotes import msgprint, _ sql = webnotes.conn.sql - - class DocType: def __init__(self, doc, doclist=[]): self.doc = doc self.doclist = doclist - #autoname function def autoname(self): self.doc.name = make_autoname(self.doc.naming_series+'.#####') - - #get employee name based on employee id selected + def get_emp_name(self): - emp_nm = sql("select employee_name from `tabEmployee` where name=%s", self.doc.employee) - - #this is done because sometimes user entered wrong employee name while uploading employee attendance - webnotes.conn.set(self.doc, 'employee_name', emp_nm and emp_nm[0][0] or '') - - ret = { 'employee_name' : emp_nm and emp_nm[0][0] or ''} - return ret + return { + "employee_name": webnotes.conn.get_value("Employee", + self.doc.employee_name, "employee_name") + } - #validation for duplicate record def validate_duplicate_record(self): - res = sql("select name from `tabAttendance` where employee = '%s' and att_date = '%s' and not name = '%s' and docstatus = 1"%(self.doc.employee,self.doc.att_date, self.doc.name)) + res = sql("""select name from `tabAttendance` where employee = %s and att_date = %s + and name != %s and docstatus = 1""", + (self.doc.employee, self.doc.att_date, self.doc.name)) if res: - msgprint("Employee's attendance already marked.") - raise Exception + msgprint(_("Attendance for the employee: ") + self.doc.employee + + _(" already marked"), raise_exception=1) - - #check for already record present in leave transaction for same date def check_leave_record(self): if self.doc.status == 'Present': - chk = sql("select name from `tabLeave Application` where employee=%s and (from_date <= %s and to_date >= %s) and docstatus!=2", (self.doc.employee, self.doc.att_date, self.doc.att_date)) - if chk: - msgprint("Leave Application created for employee "+self.doc.employee+" whom you are trying to mark as 'Present' ") - raise Exception + leave = sql("""select name from `tabLeave Application` + where employee = %s and %s between from_date and to_date and status = 'Approved' + and docstatus = 1""", (self.doc.employee, self.doc.att_date)) + + if leave: + webnotes.msgprint(_("Employee: ") + self.doc.employee + _(" was on leave on ") + + self.doc.att_date + _(". You can not mark his attendance as 'Present'"), + raise_exception=1) - def validate_fiscal_year(self): from accounts.utils import validate_fiscal_year validate_fiscal_year(self.doc.att_date, self.doc.fiscal_year) def validate_att_date(self): - import datetime - if getdate(self.doc.att_date)>getdate(datetime.datetime.now().date().strftime('%Y-%m-%d')): - msgprint("Attendance can not be marked for future dates") - raise Exception + if getdate(self.doc.att_date) > getdate(nowdate()): + msgprint(_("Attendance can not be marked for future dates"), raise_exception=1) - # Validate employee - #------------------- def validate_employee(self): - emp = sql("select name, status from `tabEmployee` where name = '%s'" % self.doc.employee) + emp = sql("select name from `tabEmployee` where name = %s and status = 'Active'", + self.doc.employee) if not emp: - msgprint("Employee: %s does not exists in the system" % self.doc.employee, raise_exception=1) - elif emp[0][1] != 'Active': - msgprint("Employee: %s is not Active" % self.doc.employee, raise_exception=1) + msgprint(_("Employee: ") + self.doc.employee + + _(" not active or does not exists in the system"), raise_exception=1) def validate(self): import utilities utilities.validate_status(self.doc.status, ["Present", "Absent", "Half Day"]) - self.validate_fiscal_year() self.validate_att_date() self.validate_duplicate_record() self.check_leave_record() def on_update(self): - #self.validate() - - #this is done because sometimes user entered wrong employee name while uploading employee attendance - x=self.get_emp_name() - - def on_submit(self): - #this is done because while uploading attendance chnage docstatus to 1 i.e. submit - webnotes.conn.set(self.doc,'docstatus',1) - pass + # this is done because sometimes user entered wrong employee name + # while uploading employee attendance + employee_name = webnotes.conn.get_value("Employee", self.doc.employee, "employee_name") + webnotes.conn.set(self.doc, 'employee_name', employee_name) \ No newline at end of file From 685be2fbea16d6c3ef885c2e1ef934fe7b78a441 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 6 Mar 2013 12:06:34 +0530 Subject: [PATCH 105/982] added validation for save conflict in single types too --- website/templates/pages/message.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/templates/pages/message.html b/website/templates/pages/message.html index c88784be96..ea9e14e8bb 100644 --- a/website/templates/pages/message.html +++ b/website/templates/pages/message.html @@ -1,6 +1,6 @@ {% extends "html/outer.html" %} -{% set title="{{ webnotes.message_title or 'Message' }}" %} +{% set title=webnotes.message_title %} {% block content %}
    From 87b9cd5ba15f4ebc4ab3a42e8352c2dd665efe84 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 6 Mar 2013 13:15:08 +0530 Subject: [PATCH 106/982] use get_global_default instead of control panel --- .../purchase_invoice/purchase_invoice.py | 20 +++++++++---------- .../doctype/sales_invoice/sales_invoice.py | 2 +- .../voucher_import_tool.py | 3 ++- patches/march_2013/p02_get_global_default.py | 11 ++++++++++ patches/patch_list.py | 1 + utilities/doctype/sms_control/sms_control.py | 10 +++++----- 6 files changed, 30 insertions(+), 17 deletions(-) create mode 100644 patches/march_2013/p02_get_global_default.py diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.py b/accounts/doctype/purchase_invoice/purchase_invoice.py index a39df410cc..7722c98a07 100644 --- a/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -522,13 +522,13 @@ class DocType(BuyingController): def update_raw_material_cost(self): if self.sub_contracted_items: for d in self.doclist.get({"parentfield": "entries"}): - rm_cost = webnotes.conn.sql(""" select raw_material_cost / quantity - from `tabBOM` where item = %s and is_default = 1 and docstatus = 1 - and is_active = 1 """, (d.item_code,)) - rm_cost = rm_cost and flt(rm_cost[0][0]) or 0 - - d.conversion_factor = d.conversion_factor or webnotes.conn.get_value( - "UOM Conversion Detail", {"parent": d.item_code, "uom": d.uom}, - "conversion_factor") or 1 - - d.rm_supp_cost = rm_cost * flt(d.qty) * flt(d.conversion_factor) + rm_cost = webnotes.conn.sql(""" select raw_material_cost / quantity + from `tabBOM` where item = %s and is_default = 1 and docstatus = 1 + and is_active = 1 """, (d.item_code,)) + rm_cost = rm_cost and flt(rm_cost[0][0]) or 0 + + d.conversion_factor = d.conversion_factor or webnotes.conn.get_value( + "UOM Conversion Detail", {"parent": d.item_code, "uom": d.uom}, + "conversion_factor") or 1 + + d.rm_supp_cost = rm_cost * flt(d.qty) * flt(d.conversion_factor) \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index 6ca804e7bc..47e3195d71 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -929,7 +929,7 @@ def send_notification(new_rv): """Notify concerned persons about recurring invoice generation""" subject = "Invoice : " + new_rv.doc.name - com = new_rv.doc.company # webnotes.conn.get_value('Control Panel', '', 'letter_head') + com = new_rv.doc.company hd = '''

    %s

    Invoice: %s

    diff --git a/accounts/page/voucher_import_tool/voucher_import_tool.py b/accounts/page/voucher_import_tool/voucher_import_tool.py index 0a2178acc6..6648ee6f8e 100644 --- a/accounts/page/voucher_import_tool/voucher_import_tool.py +++ b/accounts/page/voucher_import_tool/voucher_import_tool.py @@ -2,6 +2,7 @@ from __future__ import unicode_literals import webnotes from webnotes import _ from webnotes.utils import flt, comma_and +import webnotes.defaults @webnotes.whitelist() def get_template(): @@ -35,7 +36,7 @@ def get_template(): %(columns)s ''' % { "template_type": template_type, - "user_fmt": webnotes.conn.get_value('Control Panel', None, 'date_format'), + "user_fmt": webnotes.defaults.get_global_default('date_format'), "default_company": webnotes.conn.get_default("company"), "naming_options": naming_options.replace("\n", ", "), "voucher_type": voucher_type.replace("\n", ", "), diff --git a/patches/march_2013/p02_get_global_default.py b/patches/march_2013/p02_get_global_default.py new file mode 100644 index 0000000000..33983b5c41 --- /dev/null +++ b/patches/march_2013/p02_get_global_default.py @@ -0,0 +1,11 @@ +import webnotes +import webnotes.defaults + +def execute(): + # sesison expiry missing + if not webnotes.defaults.get_global_default("session_expiry"): + gd = webnotes.bean("Global Defaults", "Global Defaults") + gd.doc.session_expiry = webnotes.conn.get_value('Control Panel', None, 'session_expiry') \ + or '06:00' + gd.save() + \ No newline at end of file diff --git a/patches/patch_list.py b/patches/patch_list.py index 6c7c5e01a2..d6b8f183bb 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -207,4 +207,5 @@ patch_list = [ "patches.march_2013.p01_c_form", "execute:webnotes.conn.sql('update tabDocPerm set `submit`=1, `cancel`=1, `amend`=1 where parent=\"Time Log\"')", "execute:webnotes.delete_doc('DocType', 'Attendance Control Panel')", + "patches.march_2013.p02_get_global_default", ] \ No newline at end of file diff --git a/utilities/doctype/sms_control/sms_control.py b/utilities/doctype/sms_control/sms_control.py index 653eb77e14..f4d90b8926 100644 --- a/utilities/doctype/sms_control/sms_control.py +++ b/utilities/doctype/sms_control/sms_control.py @@ -75,11 +75,11 @@ class DocType: def send_sms(self, receiver_list, msg, sender_name = ''): receiver_list = self.validate_receiver_nos(receiver_list) - arg = { 'account_name' : webnotes.conn.get_value('Control Panel',None,'account_id'), - 'receiver_list' : receiver_list, - 'message' : msg, - 'sender_name' : sender_name or self.get_sender_name() - } + arg = { + 'receiver_list' : receiver_list, + 'message' : msg, + 'sender_name' : sender_name or self.get_sender_name() + } if webnotes.conn.get_value('SMS Settings', None, 'sms_gateway_url'): ret = self.send_via_gateway(arg) From 6985539c4d9c48ecd459c4241d2294c170a9447e Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 6 Mar 2013 13:28:15 +0530 Subject: [PATCH 107/982] brought back master.sql.gz --- master.sql | 11055 ------------------------------------------------ master.sql.gz | Bin 0 -> 222996 bytes 2 files changed, 11055 deletions(-) delete mode 100644 master.sql create mode 100644 master.sql.gz diff --git a/master.sql b/master.sql deleted file mode 100644 index b22178fcc4..0000000000 --- a/master.sql +++ /dev/null @@ -1,11055 +0,0 @@ --- MySQL dump 10.11 --- --- Host: localhost Database: s5u011 --- ------------------------------------------------------ --- Server version 5.0.86-ius+percona-highperf-log - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `__Auth` --- - -DROP TABLE IF EXISTS `__Auth`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `__Auth` ( - `user` varchar(180) NOT NULL, - `password` varchar(180) NOT NULL, - PRIMARY KEY (`user`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `__Auth` --- - -LOCK TABLES `__Auth` WRITE; -/*!40000 ALTER TABLE `__Auth` DISABLE KEYS */; -INSERT INTO `__Auth` VALUES ('Administrator','*4ACFE3202A5FF5CF467898FC58AAB1D615029441'),('Guest','password'); -/*!40000 ALTER TABLE `__Auth` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `__CacheItem` --- - -DROP TABLE IF EXISTS `__CacheItem`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `__CacheItem` ( - `key` varchar(180) NOT NULL, - `value` longtext, - `expires_on` datetime default NULL, - PRIMARY KEY (`key`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `__CacheItem` --- - -LOCK TABLES `__CacheItem` WRITE; -/*!40000 ALTER TABLE `__CacheItem` DISABLE KEYS */; -/*!40000 ALTER TABLE `__CacheItem` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `__CodeFileTimeStamps` --- - -DROP TABLE IF EXISTS `__CodeFileTimeStamps`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `__CodeFileTimeStamps` ( - `name` varchar(120) default NULL, - `doctype` varchar(120) default NULL, - `code_field` varchar(120) default NULL, - `timestamp` varchar(120) default NULL -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `__CodeFileTimeStamps` --- - -LOCK TABLES `__CodeFileTimeStamps` WRITE; -/*!40000 ALTER TABLE `__CodeFileTimeStamps` DISABLE KEYS */; -INSERT INTO `__CodeFileTimeStamps` VALUES ('Timesheet','DocType','record','1292513589'),('Timesheet','DocType','server_code_core','1292513589'),('Timesheet','DocType','client_script_core','1292513589'),('DocType','DocType','server_code_core','1292513589'),('DocType','DocType','client_script_core','1292513589'),('DocPerm','DocType','record','1292513589'),('DocFormat','DocType','record','1292513589'),('DocField','DocType','record','1292513589'),('Search Criteria','DocType','record','1292852791'),('Search Criteria','DocType','server_code_core','1293084140'),('Search Criteria','DocType','client_script_core','1292852791'),('Control Panel','Control Panel','startup_code','1292673147'),('Control Panel','Control Panel','startup_css','1292513589'),('Event','DocType','record','1292513602'),('Event User','DocType','record','1292513602'),('Event Role','DocType','record','1292513602'),('Event Updates','Page','script','1292667372'),('Event Updates','Page','content','1292513602'),('Event Updates','Page','style','1292513602'),('Event Updates','Page','static_content','1292513602'),('Home Control','DocType','record','1292513602'),('Home Control','DocType','server_code_core','1292513602'),('Home Control','DocType','client_script_core','1292513602'),('Receivable Voucher','DocType','record','1292513585'),('Receivable Voucher','DocType','server_code_core','1293011983'),('Receivable Voucher','DocType','client_script_core','1292837601'),('RV Detail','DocType','record','1292837496'),('RV Tax Detail','DocType','record','1292513585'),('Advance Adjustment Detail','DocType','record','1292852816'),('Sales Team','DocType','record','1292513587'),('Control Panel','DocType','record','1292513589'),('Control Panel','DocType','server_code_core','1292513589'),('DefaultValue','DocType','record','1292513589'),('Default Home Page','DocType','record','1292513589'),('Login Page','Page','script','1292513589'),('Login Page','Page','content','1292513589'),('Login Page','Page','static_content','1292513589'),('Module Def Item','DocType','record','1293186986'),('Module Def','DocType','record','1292513589'),('Module Def','DocType','server_code_core','1292513589'),('Module Def Role','DocType','record','1292513589'),('Role','DocType','record','1292513589'),('Role','DocType','server_code_core','1292513589'),('Role','DocType','client_script_core','1292513589'); -/*!40000 ALTER TABLE `__CodeFileTimeStamps` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `__DocTypeCache` --- - -DROP TABLE IF EXISTS `__DocTypeCache`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `__DocTypeCache` ( - `name` varchar(120) default NULL, - `modified` datetime default NULL, - `content` mediumtext, - `server_code_compiled` mediumtext -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `__DocTypeCache` --- - -LOCK TABLES `__DocTypeCache` WRITE; -/*!40000 ALTER TABLE `__DocTypeCache` DISABLE KEYS */; -/*!40000 ALTER TABLE `__DocTypeCache` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `__PatchLog` --- - -DROP TABLE IF EXISTS `__PatchLog`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `__PatchLog` ( - `patch` mediumtext, - `applied_on` datetime default NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `__PatchLog` --- - -LOCK TABLES `__PatchLog` WRITE; -/*!40000 ALTER TABLE `__PatchLog` DISABLE KEYS */; -INSERT INTO `__PatchLog` VALUES ('patches.install_print_formats','2011-11-16 09:11:39'),('patches.install_print_formats','2011-11-16 09:12:24'),('patches.reload_reco','2011-11-24 10:52:26'),('patches.reload_doclayer','2011-11-24 10:56:38'),('patches.reload_doclayer','2011-11-25 07:07:50'),('patches.accounts_default_form','2011-12-16 11:08:24'),('patches.c_form_patch','2011-12-16 11:15:49'),('patches.deploy_email_digest','2011-12-16 11:17:05'),('patches.Discount_purchase_cycle','2011-12-16 11:21:39'),('patches.employeewise_balance_leave_report','2011-12-16 11:25:02'),('patches.reload_employeewise_balance_leave_report','2011-12-16 11:59:54'),('patches.lcw_patch','2011-12-16 12:08:42'),('patches.p1','2011-12-16 12:09:01'),('patches.packing_slip','2011-12-16 12:09:44'),('patches.project_patch','2011-12-16 12:10:45'),('patches.reload_address','2011-12-16 12:11:20'),('patches.reload_bom','2011-12-16 12:11:50'),('patches.reload_email_digest','2011-12-16 12:12:18'),('patches.reload_flat_bom','2011-12-16 12:12:45'),('patches.reload_lc_wizard','2011-12-16 12:13:21'),('patches.reload_print_format','2011-12-16 12:14:11'),('patches.c_form_patch','2011-12-16 12:17:05'),('patches.c_form_patch','2011-12-16 12:21:00'),('patches.reload_project_task','2011-12-16 12:22:07'),('patches.reload_rv','2011-12-16 12:24:22'),('patches.remove_duplicate_table_mapper_detail','2011-12-16 12:25:31'),('patches.remove_old_cp_email_settings','2011-12-16 12:25:51'),('patches.remove_page_break_from_defaults','2011-12-16 12:27:05'),('patches.sal_man_patch','2011-12-16 12:27:31'),('patches.remove_extra_button_from_email_digest','2011-12-20 14:42:31'),('patches.deploy_email_digest','2011-12-22 07:49:45'),('patches.deploy_email_digest','2011-12-22 08:00:56'),('patches.price_list_patch','2011-12-22 08:20:25'),('patches.auto_indent','2011-12-22 08:32:12'),('patches.reload_project_task','2011-12-22 08:55:44'),('patches.update_0_idx','2011-12-22 10:38:44'),('patches.remove_previous_field_property_setter','2011-12-22 10:50:49'),('patches.reload_email_digest','2011-12-22 13:35:29'),('patches.edigest_enable_income_year_to_date','2011-12-22 13:50:46'),('patches.reload_email_digest','2011-12-22 14:33:59'),('patches.remove_extra_button_from_email_digest','2011-12-22 14:34:49'),('patches.print_hide_price_list','2011-12-22 14:36:38'),('patches.profile_mark_not_in_create','2011-12-23 09:23:54'),('patches.task_email_notification','2011-12-26 06:59:28'),('patches.reload_gl_mapper','2011-12-26 07:59:21'),('patches.reload_gl_mapper','2011-12-26 08:00:51'),('patches.update_gle_against_voucher_for_jv','2011-12-26 08:05:41'),('patches.task_email_notification','2011-12-26 08:17:23'),('patches.reload_support_ticket','2011-12-27 13:17:49'),('patches.reload_support_ticket','2011-12-27 15:17:31'),('patches.pending_patches','2011-12-29 10:15:36'),('patches.pending_patches','2011-12-29 10:28:56'),('patches.pending_patches','2011-12-29 11:13:38'),('patches.pos_setting_patch','2012-01-03 06:41:59'),('patches.reload_doctype','2012-01-05 06:48:01'),('patches.reload_po_pr_mapper','2012-01-05 06:55:55'),('patches.delete_pur_of_service','2012-01-05 07:47:14'),('patches.reload_doctype','2012-01-09 05:57:14'),('patches.old_patches.rename_search_criteria','2012-01-13 07:09:44'),('patches.jan_mar_2012.stable_branch_shift_09_01_12','2012-01-13 07:11:18'),('patches.jan_mar_2012.print_hide_totals','2012-01-13 07:11:18'),('patches.jan_mar_2012.rename_doctype_indent','2012-01-13 07:11:20'),('patches.old_patches.rename_search_criteria','2012-01-13 07:24:06'),('patches.old_patches.rename_search_criteria','2012-01-13 07:47:01'),('patches.old_patches.rename_search_criteria','2012-01-13 07:56:17'),('patches.old_patches.rename_search_criteria','2012-01-13 08:44:27'),('patches.old_patches.rename_search_criteria','2012-01-13 08:52:01'),('patches.jan_mar_2012.allocated_to_profile','2012-01-19 08:17:07'),('patches.jan_mar_2012.production_cleanup','2012-01-19 10:33:56'),('patches.jan_mar_2012.jan_production_patches','2012-01-19 10:33:57'),('patches.jan_mar_2012.remove_get_tds_button','2012-01-19 10:33:57'),('patches.jan_mar_2012.customer_address_contact_patch','2012-01-24 07:02:51'),('patches.jan_mar_2012.jan_production_patches','2012-01-25 05:34:34'),('patches.jan_mar_2012.doclabel_in_doclayer','2012-01-25 12:59:54'),('patches.jan_mar_2012.email_settings_reload','2012-01-30 07:26:52'),('patches.jan_mar_2012.serial_no_add_opt','2012-01-31 11:54:40'),('patches.jan_mar_2012.cancel_purchase_returned','2012-02-01 07:07:16'),('patches.jan_mar_2012.deploy_packing_slip','2012-02-02 07:23:19'),('patches.jan_mar_2012.convert_tables_to_utf8','2012-02-03 11:03:13'),('all','2012-02-13 14:42:22'),('account_type_patch','2012-02-14 05:46:00'),('website','2012-02-14 08:33:41'),('subcon_default_val','2012-02-14 11:40:06'),('update_admin_pwds','2012-02-14 11:50:25'),('analytics','2012-02-14 13:13:44'),('clear_session_cache','2012-02-14 14:26:21'),('clear_session_cache','2012-02-15 08:22:13'),('file_data_rename','2012-02-15 11:19:53'),('account_type_patch','2012-02-16 06:30:45'),('account_type_patch','2012-02-16 06:31:19'),('getfile_rename','2012-02-16 11:06:05'),('update_website_settings','2012-02-17 07:03:38'),('todo_item','2012-02-20 12:09:01'),('reload_item','2012-02-21 09:00:03'),('no_copy_patch','2012-02-21 09:19:54'),('patches.jan_mar_2012.map_conversion_rate','2012-02-21 10:01:09'),('patches.jan_mar_2012.account_type_patch','2012-02-21 10:01:09'),('patches.jan_mar_2012.subcon_default_val','2012-02-21 10:01:09'),('patches.jan_mar_2012.website.all','2012-02-21 10:01:11'),('patches.jan_mar_2012.remove_archive','2012-02-21 10:01:11'),('patches.jan_mar_2012.no_copy_patch','2012-02-21 10:01:11'),('patches.jan_mar_2012.reload_item','2012-02-21 10:01:11'),('patches.jan_mar_2012.fix_packing_slip','2012-02-21 12:00:49'),('patches.jan_mar_2012.website.allow_product_delete','2012-02-23 07:06:07'),('patches.jan_mar_2012.apps.todo_item','2012-03-01 11:15:54'),('patches.jan_mar_2012.pending_patches','2012-03-01 11:15:57'),('patches.jan_mar_2012.pos_setting_patch','2012-03-01 11:15:57'),('patches.jan_mar_2012.reload_doctype','2012-03-01 11:15:58'),('patches.jan_mar_2012.reload_po_pr_mapper','2012-03-01 11:15:58'),('patches.jan_mar_2012.delete_pur_of_service','2012-03-01 11:15:58'),('patches.jan_mar_2012.navupdate','2012-03-01 11:15:59'),('patches.jan_mar_2012.label_cleanup','2012-03-01 11:16:08'),('patches.jan_mar_2012.add_roles_to_admin','2012-03-01 11:16:08'),('patches.jan_mar_2012.website.file_data_rename','2012-03-01 11:22:07'),('patches.jan_mar_2012.clear_session_cache','2012-03-01 11:34:12'),('patches.jan_mar_2012.label_cleanup','2012-03-01 11:46:58'),('patches.jan_mar_2012.dt_map_fix','2012-03-01 13:35:46'),('patches.jan_mar_2012.reload_table','2012-03-05 06:38:08'),('patches.jan_mar_2012.reload_table','2012-03-05 10:58:19'),('patches.jan_mar_2012.remove_series_defval','2012-03-06 06:53:06'),('patches.jan_mar_2012.update_stockreco_perm','2012-03-13 08:19:13'),('patches.mar_2012.pos_invoice_fix','2012-03-20 07:56:54'),('patches.mar_2012.pos_invoice_fix','2012-03-20 08:03:40'),('patches.jan_mar_2012.stock_entry_others_patch','2012-03-21 05:47:24'),('patches.jan_mar_2012.reload_quote','2012-03-21 05:47:25'),('patches.jan_mar_2012.update_purpose_se','2012-03-21 06:34:10'),('patches.jan_mar_2012.update_se_fld_options','2012-03-21 11:35:06'),('patches.jan_mar_2012.reload_mapper','2012-03-28 08:06:01'),('patches.jan_mar_2012.reload_mapper','2012-03-28 08:10:23'),('patches.jan_mar_2012.mapper_fix','2012-03-28 10:42:58'),('patches.mar_2012.so_rv_mapper_fix','2012-03-28 15:57:55'),('patches.mar_2012.earning_deduction_type_patch','2012-04-03 09:57:32'),('patches.april_2012.reload_c_form','2012-04-06 14:24:28'),('patches.april_2012.remove_default_from_rv_detail','2012-04-24 07:11:23'),('patches.april_2012.update_role_in_address','2012-04-24 08:57:19'),('patches.april_2012.update_permlevel_in_address','2012-04-24 09:11:44'),('patches.april_2012.update_appraisal_permission','2012-04-24 10:03:59'),('patches.april_2012.serial_no_fixes','2012-04-25 15:01:03'),('patches.april_2012.repost_stock_for_posting_time','2012-04-30 08:26:44'),('patches.april_2012.repost_stock_for_posting_time','2012-04-30 13:17:11'),('patches.april_2012.repost_stock_for_posting_time','2012-04-30 13:28:48'),('patches.jan_mar_2012.sync_ref_db','2012-05-08 08:08:08'),('patches.mar_2012.clean_property_setter','2012-05-08 08:08:08'),('patches.april_2012.naming_series_patch','2012-05-08 08:08:08'),('patches.jan_mar_2012.rename_dt','2012-05-08 08:08:12'),('patches.mar_2012.cleanup_control_panel','2012-05-08 08:08:12'),('patches.mar_2012.doctype_get_refactor','2012-05-08 08:08:51'),('patches.mar_2012.delete_docformat','2012-05-08 08:08:51'),('patches.mar_2012.usertags','2012-05-08 08:08:53'),('patches.april_2012.after_sync_cleanup','2012-05-08 08:08:53'),('patches.april_2012.change_cacheitem_schema','2012-05-08 08:08:53'),('patches.may_2012.cleanup_property_setter','2012-05-08 08:08:53'),('patches.may_2012.rename_prev_doctype','2012-05-08 08:08:53'),('patches.may_2012.cleanup_notification_control','2012-05-08 08:08:53'),('patches.may_2012.renamedt_in_custom_search_criteria','2012-05-08 08:08:53'),('patches.april_2012.repost_stock_for_posting_time','2012-05-09 12:20:54'),('patches.april_2012.repost_stock_for_posting_time','2012-05-11 14:25:52'),('patches.may_2012.reload_so_pending_items','2012-05-18 08:30:33'),('patches.april_2012.repost_stock_for_posting_time','2012-05-21 07:14:18'),('patches.may_2012.stock_reco_patch','2012-07-12 15:55:45'),('patches.may_2012.cms','2012-07-12 15:55:46'),('patches.may_2012.reload_reports','2012-07-12 15:55:46'),('patches.may_2012.page_role_series_fix','2012-07-12 15:55:46'),('patches.may_2012.reload_sales_invoice_pf','2012-07-12 15:55:47'),('patches.may_2012.std_pf_readonly','2012-07-12 15:55:47'),('patches.may_2012.customize_form_cleanup','2012-07-12 15:55:47'),('patches.may_2012.cs_server_readonly','2012-07-12 15:55:47'),('patches.may_2012.clear_session_cache','2012-07-12 15:55:47'),('patches.may_2012.same_purchase_rate_patch','2012-07-12 15:55:47'),('patches.may_2012.create_report_manager_role','2012-07-12 15:55:47'),('patches.may_2012.reload_customer_address_contact','2012-07-12 15:55:48'),('patches.may_2012.profile_perm_patch','2012-07-12 15:55:48'),('patches.may_2012.remove_euro_currency','2012-07-12 15:55:48'),('patches.may_2012.remove_communication_log','2012-07-12 15:55:49'),('patches.june_2012.barcode_in_feature_setup','2012-07-12 15:55:49'),('patches.june_2012.copy_uom_for_pur_inv_item','2012-07-12 15:55:50'),('patches.june_2012.fetch_organization_from_lead','2012-07-12 15:55:50'),('patches.june_2012.reports_list_permission','2012-07-12 15:55:51'),('patches.june_2012.support_ticket_autoreply','2012-07-12 15:55:51'),('patches.june_2012.series_unique_patch','2012-07-12 15:55:51'),('patches.june_2012.set_recurring_type','2012-07-12 15:55:52'),('patches.june_2012.alter_tabsessions','2012-07-12 15:55:52'),('patches.june_2012.delete_old_parent_entries','2012-07-12 15:55:52'),('patches.april_2012.delete_about_contact','2012-07-12 15:55:52'),('patches.june_2012.cache_item_table','2012-07-12 15:55:52'),('patches.july_2012.reload_pr_po_mapper','2012-07-12 15:55:52'),('patches.july_2012.address_contact_perms','2012-07-12 15:55:53'),('patches.july_2012.packing_list_cleanup_and_serial_no','2012-07-12 15:55:53'),('patches.july_2012.deprecate_import_data_control','2012-07-12 15:55:53'),('patches.july_2012.default_freeze_account','2012-10-02 09:43:42'),('patches.july_2012.update_purchase_tax','2012-10-02 09:43:42'),('patches.june_2012.cms2','2012-10-02 09:43:44'),('patches.july_2012.auth_table','2012-10-02 09:47:53'),('patches.july_2012.remove_event_role_owner_match','2012-10-02 09:47:53'),('patches.july_2012.deprecate_bulk_rename','2012-10-02 09:47:53'),('patches.july_2012.sync_trial_balance','2012-10-02 09:47:53'),('patches.july_2012.blog_guest_permission','2012-10-02 09:47:53'),('patches.july_2012.bin_permission','2012-10-02 09:47:53'),('patches.july_2012.project_patch_repeat','2012-10-02 09:47:55'),('patches.july_2012.repost_stock_due_to_wrong_packing_list','2012-10-02 09:47:55'),('patches.july_2012.supplier_quotation','2012-10-02 09:47:57'),('patches.august_2012.report_supplier_quotations','2012-10-02 09:47:57'),('patches.august_2012.task_allocated_to_assigned','2012-10-02 09:47:57'),('patches.august_2012.change_profile_permission','2012-10-02 09:47:57'),('patches.august_2012.changed_blog_date_format','2012-10-02 09:47:58'),('patches.august_2012.repost_billed_amt','2012-10-02 09:47:58'),('patches.august_2012.remove_cash_flow_statement','2012-10-02 09:47:58'),('patches.september_2012.stock_report_permissions_for_accounts','2012-10-02 09:47:58'),('patches.september_2012.communication_delete_permission','2012-10-02 09:47:58'),('patches.september_2012.reload_criteria_stock_ledger','2012-10-02 09:47:58'),('patches.september_2012.all_permissions_patch','2012-10-02 09:47:58'),('patches.september_2012.customer_permission_patch','2012-10-02 09:47:58'),('patches.september_2012.add_stock_ledger_entry_index','2012-10-02 09:47:58'),('patches.september_2012.plot_patch','2012-10-02 09:47:59'),('patches.september_2012.event_permission','2012-10-02 09:47:59'),('patches.september_2012.repost_stock','2012-10-02 09:47:59'),('patches.september_2012.reload_gross_profit','2012-10-02 09:47:59'); -/*!40000 ALTER TABLE `__PatchLog` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `__SchedulerLog` --- - -DROP TABLE IF EXISTS `__SchedulerLog`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `__SchedulerLog` ( - `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, - `method` varchar(200) default NULL, - `error` text -) ENGINE=MyISAM DEFAULT CHARSET=latin1; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `__SchedulerLog` --- - -LOCK TABLES `__SchedulerLog` WRITE; -/*!40000 ALTER TABLE `__SchedulerLog` DISABLE KEYS */; -INSERT INTO `__SchedulerLog` VALUES ('2012-03-02 12:15:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:18:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:21:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:24:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:27:07','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:30:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:33:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:36:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:39:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:42:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:45:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:48:07','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:51:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:54:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 12:57:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:00:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:03:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:06:09','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:09:08','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:12:07','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:15:07','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:18:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:21:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:24:05','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:27:06','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:28:33','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:29:38','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'),('2012-03-02 13:30:08','get_support_mails','Traceback (innermost last):\n File \"/var/www/branches/latest/erpnext/erpnext/startup/schedule_handlers.py\", line 29, in execute_all\n get_support_mails()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 172, in get_support_mails\n SupportMailbox().get_messages()\n File \"/var/www/branches/latest/erpnext/erpnext/support/doctype/support_ticket/__init__.py\", line 32, in __init__\n if not self.email_settings.get(\'sync_support_mails\'): return\n TypeError: \'str\' object is not callable\n'); -/*!40000 ALTER TABLE `__SchedulerLog` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `__SessionCache` --- - -DROP TABLE IF EXISTS `__SessionCache`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `__SessionCache` ( - `user` varchar(120) default NULL, - `country` varchar(120) default NULL, - `cache` longtext -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `__SessionCache` --- - -LOCK TABLES `__SessionCache` WRITE; -/*!40000 ALTER TABLE `__SessionCache` DISABLE KEYS */; -/*!40000 ALTER TABLE `__SessionCache` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `__file_timestamp` --- - -DROP TABLE IF EXISTS `__file_timestamp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `__file_timestamp` ( - `file_name` varchar(180) NOT NULL, - `tstamp` varchar(40) default NULL, - PRIMARY KEY (`file_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `__file_timestamp` --- - -LOCK TABLES `__file_timestamp` WRITE; -/*!40000 ALTER TABLE `__file_timestamp` DISABLE KEYS */; -INSERT INTO `__file_timestamp` VALUES ('/var/www/erpnext-modules/accounts/DocType Mapper/Delivery Note-Receivable Voucher/Delivery Note-Receivable Voucher.txt','1315917878'),('/var/www/erpnext-modules/accounts/DocType Mapper/Project-Receivable Voucher/Project-Receivable Voucher.txt','1315375762'),('/var/www/erpnext-modules/accounts/DocType Mapper/Purchase Order-Payable Voucher/Purchase Order-Payable Voucher.txt','1315917878'),('/var/www/erpnext-modules/accounts/DocType Mapper/Purchase Receipt-Payable Voucher/Purchase Receipt-Payable Voucher.txt','1315917878'),('/var/www/erpnext-modules/accounts/DocType Mapper/Sales Order-Receivable Voucher/Sales Order-Receivable Voucher.txt','1315917878'),('/var/www/erpnext-modules/accounts/Module Def/Accounts/Accounts.txt','1315908111'),('/var/www/erpnext-modules/accounts/search_criteria/voucher_wise_tax_details/voucher_wise_tax_details.txt','1315908111'),('/var/www/erpnext-modules/buying/DocType Mapper/Indent-Purchase Order/Indent-Purchase Order.txt','1315375762'),('/var/www/erpnext-modules/buying/DocType Mapper/Sales Order-Indent/Sales Order-Indent.txt','1315375762'),('/var/www/erpnext-modules/home/page/dashboard/dashboard.txt','1315375762'),('/var/www/erpnext-modules/hr/DocType Mapper/KRA Template-Appraisal/KRA Template-Appraisal.txt','1315375762'),('/var/www/erpnext-modules/hr/DocType Mapper/Salary Structure-Salary Slip/Salary Structure-Salary Slip.txt','1315375762'),('/var/www/erpnext-modules/hr/doctype/salary_manager/salary_manager.txt','1315375762'),('/var/www/erpnext-modules/hr/doctype/salary_slip/salary_slip.txt','1312882590'),('/var/www/erpnext-modules/hr/Module Def/HR/HR.txt','1315375762'),('/var/www/erpnext-modules/knowledge_base/doctype/answer/answer.txt','1311058468'),('/var/www/erpnext-modules/production/DocType Mapper/Production Forecast-Production Plan/Production Forecast-Production Plan.txt','1315375762'),('/var/www/erpnext-modules/production/DocType Mapper/Production Forecast-Production Planning Tool/Production Forecast-Production Planning Tool.txt','1315375762'),('/var/www/erpnext-modules/production/DocType Mapper/Sales Order-Production Plan/Sales Order-Production Plan.txt','1315375762'),('/var/www/erpnext-modules/production/doctype/bill_of_materials/bill_of_materials.txt','1313994052'),('/var/www/erpnext-modules/selling/DocType Mapper/Delivery Note-Installation Note/Delivery Note-Installation Note.txt','1315917878'),('/var/www/erpnext-modules/selling/DocType Mapper/Enquiry-Quotation/Enquiry-Quotation.txt','1315908111'),('/var/www/erpnext-modules/selling/DocType Mapper/Lead-Customer/Lead-Customer.txt','1315908111'),('/var/www/erpnext-modules/selling/DocType Mapper/Lead-Enquiry/Lead-Enquiry.txt','1315908111'),('/var/www/erpnext-modules/selling/DocType Mapper/Project-Sales Order/Project-Sales Order.txt','1315375762'),('/var/www/erpnext-modules/selling/DocType Mapper/Quotation-Sales Order/Quotation-Sales Order.txt','1315908111'),('/var/www/erpnext-modules/selling/doctype/quotation/quotation.txt','1312882590'),('/var/www/erpnext-modules/server_tools/page/billing/billing.txt','1310549747'),('/var/www/erpnext-modules/setup/doctype/features_setup/features_setup.txt','1315908111'),('/var/www/erpnext-modules/stock/DocType Mapper/Project-Delivery Note/Project-Delivery Note.txt','1315375762'),('/var/www/erpnext-modules/stock/DocType Mapper/Purchase Order-Purchase Receipt/Purchase Order-Purchase Receipt.txt','1315917878'),('/var/www/erpnext-modules/stock/DocType Mapper/Receivable Voucher-Delivery Note/Receivable Voucher-Delivery Note.txt','1315917878'),('/var/www/erpnext-modules/stock/DocType Mapper/Sales Order-Delivery Note/Sales Order-Delivery Note.txt','1315908111'),('/var/www/erpnext-modules/stock/doctype/delivery_note/delivery_note.txt','1315398367'),('/var/www/erpnext-modules/stock/doctype/delivery_note_detail/delivery_note_detail.txt','1315398367'),('/var/www/erpnext-modules/stock/doctype/item/item.txt','1315375762'),('/var/www/erpnext-modules/stock/doctype/item_customer_detail/item_customer_detail.txt','1315375762'),('/var/www/erpnext-modules/stock/Print Format/Delivery Note Packing List Wise/Delivery Note Packing List Wise.txt','1315375762'),('/var/www/erpnext-modules/support/DocType Mapper/Customer Issue-Maintenance Visit/Customer Issue-Maintenance Visit.txt','1315375762'),('/var/www/erpnext-modules/support/DocType Mapper/Sales Order-Maintenance Schedule/Sales Order-Maintenance Schedule.txt','1315375762'),('/var/www/erpnext-modules/support/DocType Mapper/Sales Order-Maintenance Visit/Sales Order-Maintenance Visit.txt','1315375762'),('/var/www/html/erpnext-master/erpnext/accounts/Print Format/Sales Invoice Classic/Sales Invoice Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/accounts/Print Format/Sales Invoice Modern/Sales Invoice Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/accounts/Print Format/Sales Invoice Spartan/Sales Invoice Spartan.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/buying/Print Format/Purchase Order Classic/Purchase Order Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/buying/Print Format/Purchase Order Modern/Purchase Order Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/buying/Print Format/Purchase Order Spartan/Purchase Order Spartan.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Quotation Classic/Quotation Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Quotation Modern/Quotation Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Quotation Spartan/Quotation Spartan.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Sales Order Classic/Sales Order Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Sales Order Modern/Sales Order Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/selling/Print Format/Sales Order Spartan/Sales Order Spartan.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/stock/Print Format/Delivery Note Classic/Delivery Note Classic.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/stock/Print Format/Delivery Note Modern/Delivery Note Modern.txt','1321431069'),('/var/www/html/erpnext-master/erpnext/stock/Print Format/Delivery Note Spartan/Delivery Note Spartan.txt','1321431069'),('/var/www/html/erpnext/cgi-bin/core/doctype/doctype/doctype.txt','1315391597'),('/var/www/html/erpnext/cgi-bin/core/doctype/profile/profile.txt','1315375630'); -/*!40000 ALTER TABLE `__file_timestamp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `_tag_cnt` --- - -DROP TABLE IF EXISTS `_tag_cnt`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `_tag_cnt` ( - `doctype` varchar(180) NOT NULL default '', - `tag` varchar(22) NOT NULL default '', - `cnt` int(10) default NULL, - PRIMARY KEY (`doctype`,`tag`), - KEY `cnt` (`cnt`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `_tag_cnt` --- - -LOCK TABLES `_tag_cnt` WRITE; -/*!40000 ALTER TABLE `_tag_cnt` DISABLE KEYS */; -/*!40000 ALTER TABLE `_tag_cnt` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAbout Us Team` --- - -DROP TABLE IF EXISTS `tabAbout Us Team`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAbout Us Team` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `bio` text, - `image` varchar(180) default NULL, - `person_name` varchar(180) default NULL, - `designation` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAbout Us Team` --- - -LOCK TABLES `tabAbout Us Team` WRITE; -/*!40000 ALTER TABLE `tabAbout Us Team` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAbout Us Team` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAccount Balance` --- - -DROP TABLE IF EXISTS `tabAccount Balance`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAccount Balance` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `period` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `start_date` date default NULL, - `end_date` date default NULL, - `opening` decimal(18,6) default NULL, - `balance` decimal(18,6) default NULL, - `debit` decimal(18,6) default NULL, - `credit` decimal(18,6) default NULL, - `account` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `period` (`period`), - KEY `end_date` (`end_date`), - KEY `start_date` (`start_date`), - KEY `account` (`account`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAccount Balance` --- - -LOCK TABLES `tabAccount Balance` WRITE; -/*!40000 ALTER TABLE `tabAccount Balance` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAccount Balance` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAccount` --- - -DROP TABLE IF EXISTS `tabAccount`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAccount` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `account_name` varchar(180) default NULL, - `parent_account` varchar(180) default NULL, - `level` int(11) default NULL, - `group_or_ledger` varchar(180) default 'Ledger', - `is_pl_account` varchar(180) default NULL, - `freeze_account` varchar(180) default NULL, - `account_type` varchar(180) default NULL, - `tax_rate` decimal(18,6) default NULL, - `debit_or_credit` varchar(180) default NULL, - `company` varchar(180) default NULL, - `credit_days` int(11) default NULL, - `credit_limit` decimal(18,6) default NULL, - `old_parent` varchar(180) default NULL, - `lft` int(11) default NULL, - `rgt` int(11) default NULL, - `pan_number` varchar(180) default NULL, - `tds_applicable` varchar(180) default 'No', - `master_type` varchar(180) default NULL, - `master_name` varchar(180) default NULL, - `address` mediumtext, - `trash_reason` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `account_name` (`account_name`), - KEY `parent_account` (`parent_account`), - KEY `group_or_ledger` (`group_or_ledger`), - KEY `is_pl_account` (`is_pl_account`), - KEY `debit_or_credit` (`debit_or_credit`), - KEY `company` (`company`), - KEY `lft` (`lft`), - KEY `rgt` (`rgt`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAccount` --- - -LOCK TABLES `tabAccount` WRITE; -/*!40000 ALTER TABLE `tabAccount` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAccount` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabActivity Type` --- - -DROP TABLE IF EXISTS `tabActivity Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabActivity Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `activity_type` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabActivity Type` --- - -LOCK TABLES `tabActivity Type` WRITE; -/*!40000 ALTER TABLE `tabActivity Type` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabActivity Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAddress` --- - -DROP TABLE IF EXISTS `tabAddress`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAddress` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `address_line2` varchar(180) default NULL, - `fax` varchar(180) default NULL, - `address_line1` varchar(180) default NULL, - `trash_reason` text, - `city` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `country` varchar(180) default NULL, - `is_primary_address` int(1) default '0', - `pincode` varchar(180) default NULL, - `is_shipping_address` int(1) default '0', - `phone` varchar(180) default NULL, - `state` varchar(180) default NULL, - `supplier_name` varchar(180) default NULL, - `supplier` varchar(180) default NULL, - `address_type` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `sales_partner` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `city` (`city`), - KEY `country` (`country`), - KEY `pincode` (`pincode`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAddress` --- - -LOCK TABLES `tabAddress` WRITE; -/*!40000 ALTER TABLE `tabAddress` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAddress` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAnswer` --- - -DROP TABLE IF EXISTS `tabAnswer`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAnswer` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `answer` text, - `_users_voted` text, - `points` int(11) default NULL, - `question` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAnswer` --- - -LOCK TABLES `tabAnswer` WRITE; -/*!40000 ALTER TABLE `tabAnswer` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAnswer` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAppraisal Goal` --- - -DROP TABLE IF EXISTS `tabAppraisal Goal`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAppraisal Goal` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `kra` text, - `per_weightage` decimal(18,6) default NULL, - `target_achieved` text, - `score` decimal(18,6) default NULL, - `score_earned` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAppraisal Goal` --- - -LOCK TABLES `tabAppraisal Goal` WRITE; -/*!40000 ALTER TABLE `tabAppraisal Goal` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAppraisal Goal` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAppraisal Template Goal` --- - -DROP TABLE IF EXISTS `tabAppraisal Template Goal`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAppraisal Template Goal` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `kra` text, - `per_weightage` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAppraisal Template Goal` --- - -LOCK TABLES `tabAppraisal Template Goal` WRITE; -/*!40000 ALTER TABLE `tabAppraisal Template Goal` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAppraisal Template Goal` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAppraisal Template` --- - -DROP TABLE IF EXISTS `tabAppraisal Template`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAppraisal Template` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `kra_title` varchar(180) default NULL, - `description` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAppraisal Template` --- - -LOCK TABLES `tabAppraisal Template` WRITE; -/*!40000 ALTER TABLE `tabAppraisal Template` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAppraisal Template` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAppraisal` --- - -DROP TABLE IF EXISTS `tabAppraisal`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAppraisal` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `status` varchar(180) default 'Draft', - `employee` varchar(180) default NULL, - `employee_name` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `company` varchar(180) default NULL, - `start_date` date default NULL, - `end_date` date default NULL, - `kra_approver` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `kra_template` varchar(180) default NULL, - `total_score` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `employee` (`employee`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAppraisal` --- - -LOCK TABLES `tabAppraisal` WRITE; -/*!40000 ALTER TABLE `tabAppraisal` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAppraisal` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAttendance` --- - -DROP TABLE IF EXISTS `tabAttendance`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAttendance` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default NULL, - `employee` varchar(180) default NULL, - `employee_name` varchar(180) default NULL, - `status` varchar(180) default NULL, - `leave_type` varchar(180) default NULL, - `att_date` date default NULL, - `fiscal_year` varchar(180) default NULL, - `company` varchar(180) default NULL, - `shifts` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `employee` (`employee`), - KEY `status` (`status`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAttendance` --- - -LOCK TABLES `tabAttendance` WRITE; -/*!40000 ALTER TABLE `tabAttendance` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAttendance` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabAuthorization Rule` --- - -DROP TABLE IF EXISTS `tabAuthorization Rule`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabAuthorization Rule` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `transaction` varchar(180) default NULL, - `based_on` varchar(180) default NULL, - `master_name` varchar(180) default NULL, - `system_role` varchar(180) default NULL, - `system_user` varchar(180) default NULL, - `approving_role` varchar(180) default NULL, - `approving_user` varchar(180) default NULL, - `value` decimal(18,6) default '0.000000', - `trash_reason` text, - `to_emp` varchar(180) default NULL, - `to_designation` varchar(180) default NULL, - `company` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabAuthorization Rule` --- - -LOCK TABLES `tabAuthorization Rule` WRITE; -/*!40000 ALTER TABLE `tabAuthorization Rule` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabAuthorization Rule` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBOM Explosion Item` --- - -DROP TABLE IF EXISTS `tabBOM Explosion Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBOM Explosion Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `description` text, - `qty` decimal(18,6) default NULL, - `stock_uom` varchar(180) default NULL, - `moving_avg_rate` decimal(18,6) default NULL, - `amount_as_per_mar` decimal(18,6) default NULL, - `last_purchase_rate` decimal(18,6) default NULL, - `amount_as_per_lpr` decimal(18,6) default NULL, - `standard_rate` decimal(18,6) default NULL, - `amount_as_per_sr` decimal(18,6) default NULL, - `qty_consumed_per_unit` decimal(18,6) default NULL, - `flat_bom_no` varchar(180) default NULL, - `bom_mat_no` varchar(180) default NULL, - `parent_bom` varchar(180) default NULL, - `is_pro_applicable` varchar(180) default NULL, - `amount` decimal(18,6) default NULL, - `mat_detail_no` varchar(180) default NULL, - `rate` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBOM Explosion Item` --- - -LOCK TABLES `tabBOM Explosion Item` WRITE; -/*!40000 ALTER TABLE `tabBOM Explosion Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBOM Explosion Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBOM Item` --- - -DROP TABLE IF EXISTS `tabBOM Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBOM Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `operation_no` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - `bom_no` varchar(180) default NULL, - `description` text, - `qty` decimal(18,6) default NULL, - `scrap` decimal(18,6) default NULL, - `stock_uom` varchar(180) default NULL, - `dir_mat_as_per_mar` decimal(18,6) default NULL, - `dir_mat_as_per_lpr` decimal(18,6) default NULL, - `dir_mat_as_per_sr` decimal(18,6) default NULL, - `operating_cost` decimal(18,6) default NULL, - `value_as_per_mar` decimal(18,6) default NULL, - `value_as_per_lpr` decimal(18,6) default NULL, - `value_as_per_sr` decimal(18,6) default NULL, - `moving_avg_rate` decimal(18,6) default NULL, - `amount_as_per_mar` decimal(18,6) default NULL, - `last_purchase_rate` decimal(18,6) default NULL, - `amount_as_per_lpr` decimal(18,6) default NULL, - `standard_rate` decimal(18,6) default NULL, - `amount_as_per_sr` decimal(18,6) default NULL, - `qty_consumed_per_unit` decimal(18,6) default NULL, - `rate` decimal(18,6) default NULL, - `amount` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `bom_no` (`bom_no`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBOM Item` --- - -LOCK TABLES `tabBOM Item` WRITE; -/*!40000 ALTER TABLE `tabBOM Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBOM Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBOM Operation` --- - -DROP TABLE IF EXISTS `tabBOM Operation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBOM Operation` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `operation_no` varchar(180) default NULL, - `opn_description` text, - `details` varchar(180) default NULL, - `workstation` varchar(180) default NULL, - `hour_rate` decimal(18,6) default NULL, - `workstation_capacity` decimal(18,6) default NULL, - `time_in_mins` decimal(18,6) default NULL, - `operating_cost` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBOM Operation` --- - -LOCK TABLES `tabBOM Operation` WRITE; -/*!40000 ALTER TABLE `tabBOM Operation` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBOM Operation` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBOM` --- - -DROP TABLE IF EXISTS `tabBOM`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBOM` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `item` varchar(180) default NULL, - `description` text, - `quantity` decimal(18,6) default NULL, - `is_active` varchar(180) default NULL, - `is_default` int(1) default NULL, - `remarks` text, - `cost_as_per_mar` decimal(18,6) default NULL, - `cost_as_per_lpr` decimal(18,6) default NULL, - `cost_as_per_sr` decimal(18,6) default NULL, - `cost_as_on` varchar(180) default NULL, - `dir_mat_as_per_mar` decimal(18,6) default NULL, - `dir_mat_as_per_lpr` decimal(18,6) default NULL, - `dir_mat_as_per_sr` decimal(18,6) default NULL, - `operating_cost` decimal(18,6) default NULL, - `maintained_by` varchar(180) default NULL, - `project_name` varchar(180) default NULL, - `uom` varchar(180) default NULL, - `total_cost` decimal(18,6) default NULL, - `costing_date` date default NULL, - `raw_material_cost` decimal(18,6) default NULL, - `rm_cost_as_per` varchar(180) default NULL, - `amendment_date` date default NULL, - `amended_from` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item` (`item`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBOM` --- - -LOCK TABLES `tabBOM` WRITE; -/*!40000 ALTER TABLE `tabBOM` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBOM` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBank Reconciliation Detail` --- - -DROP TABLE IF EXISTS `tabBank Reconciliation Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBank Reconciliation Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `voucher_id` varchar(180) default NULL, - `against_account` varchar(180) default NULL, - `posting_date` date default NULL, - `cheque_number` varchar(180) default NULL, - `cheque_date` date default NULL, - `debit` decimal(18,6) default NULL, - `credit` decimal(18,6) default NULL, - `clearance_date` date default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBank Reconciliation Detail` --- - -LOCK TABLES `tabBank Reconciliation Detail` WRITE; -/*!40000 ALTER TABLE `tabBank Reconciliation Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBank Reconciliation Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBatch` --- - -DROP TABLE IF EXISTS `tabBatch`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBatch` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `batch_id` varchar(180) default NULL, - `description` text, - `start_date` date default NULL, - `finished_date` date default NULL, - `expiry_date` date default NULL, - `item` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBatch` --- - -LOCK TABLES `tabBatch` WRITE; -/*!40000 ALTER TABLE `tabBatch` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBatch` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBin` --- - -DROP TABLE IF EXISTS `tabBin`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBin` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `warehouse` varchar(180) default NULL, - `warehouse_type` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - `stock_uom` varchar(180) default NULL, - `reserved_qty` decimal(18,6) default '0.000000', - `actual_qty` decimal(18,6) default '0.000000', - `ordered_qty` decimal(18,6) default '0.000000', - `indented_qty` decimal(18,6) default '0.000000', - `planned_qty` decimal(18,6) default NULL, - `projected_qty` decimal(18,6) default NULL, - `ma_rate` decimal(18,6) default NULL, - `fcfs_rate` decimal(18,6) default NULL, - `valuation_rate` decimal(18,6) default NULL, - `stock_value` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `warehouse` (`warehouse`), - KEY `item_code` (`item_code`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBin` --- - -LOCK TABLES `tabBin` WRITE; -/*!40000 ALTER TABLE `tabBin` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBin` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBlog Subscriber` --- - -DROP TABLE IF EXISTS `tabBlog Subscriber`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBlog Subscriber` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBlog Subscriber` --- - -LOCK TABLES `tabBlog Subscriber` WRITE; -/*!40000 ALTER TABLE `tabBlog Subscriber` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBlog Subscriber` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBlog` --- - -DROP TABLE IF EXISTS `tabBlog`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBlog` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `content` text, - `file_list` text, - `published` int(1) default NULL, - `content_html` text, - `title` varchar(180) default NULL, - `page_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - `email_sent` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBlog` --- - -LOCK TABLES `tabBlog` WRITE; -/*!40000 ALTER TABLE `tabBlog` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBlog` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBranch` --- - -DROP TABLE IF EXISTS `tabBranch`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBranch` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `branch` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBranch` --- - -LOCK TABLES `tabBranch` WRITE; -/*!40000 ALTER TABLE `tabBranch` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBranch` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBrand` --- - -DROP TABLE IF EXISTS `tabBrand`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBrand` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `brand` varchar(180) default NULL, - `description` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBrand` --- - -LOCK TABLES `tabBrand` WRITE; -/*!40000 ALTER TABLE `tabBrand` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBrand` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBudget Detail` --- - -DROP TABLE IF EXISTS `tabBudget Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBudget Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `account` varchar(180) default NULL, - `budget_allocated` decimal(18,6) default NULL, - `actual` decimal(18,6) default NULL, - `fiscal_year` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `account` (`account`), - KEY `fiscal_year` (`fiscal_year`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBudget Detail` --- - -LOCK TABLES `tabBudget Detail` WRITE; -/*!40000 ALTER TABLE `tabBudget Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBudget Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBudget Distribution Detail` --- - -DROP TABLE IF EXISTS `tabBudget Distribution Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBudget Distribution Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `month` varchar(180) default NULL, - `percentage_allocation` decimal(18,6) default NULL, - `aggregate_percentage` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBudget Distribution Detail` --- - -LOCK TABLES `tabBudget Distribution Detail` WRITE; -/*!40000 ALTER TABLE `tabBudget Distribution Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBudget Distribution Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBudget Distribution` --- - -DROP TABLE IF EXISTS `tabBudget Distribution`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBudget Distribution` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `distribution_id` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `trash_reason` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `fiscal_year` (`fiscal_year`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBudget Distribution` --- - -LOCK TABLES `tabBudget Distribution` WRITE; -/*!40000 ALTER TABLE `tabBudget Distribution` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBudget Distribution` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabBulk Email` --- - -DROP TABLE IF EXISTS `tabBulk Email`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabBulk Email` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `status` varchar(180) default NULL, - `message` text, - `recipient` varchar(180) default NULL, - `sender` varchar(180) default NULL, - `error` text, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabBulk Email` --- - -LOCK TABLES `tabBulk Email` WRITE; -/*!40000 ALTER TABLE `tabBulk Email` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabBulk Email` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabC-Form Invoice Detail` --- - -DROP TABLE IF EXISTS `tabC-Form Invoice Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabC-Form Invoice Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `territory` varchar(180) default NULL, - `grand_total` decimal(18,6) default NULL, - `invoice_no` varchar(180) default NULL, - `invoice_date` date default NULL, - `net_total` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabC-Form Invoice Detail` --- - -LOCK TABLES `tabC-Form Invoice Detail` WRITE; -/*!40000 ALTER TABLE `tabC-Form Invoice Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabC-Form Invoice Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabC-Form` --- - -DROP TABLE IF EXISTS `tabC-Form`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabC-Form` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `customer` varchar(180) default NULL, - `total_amount` decimal(18,6) default NULL, - `naming_series` varchar(180) default NULL, - `company` varchar(180) default NULL, - `c_form_no` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `state` varchar(180) default NULL, - `received_date` date default NULL, - `quarter` varchar(180) default NULL, - `file_list` text, - `total_invoiced_amount` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabC-Form` --- - -LOCK TABLES `tabC-Form` WRITE; -/*!40000 ALTER TABLE `tabC-Form` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabC-Form` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCampaign` --- - -DROP TABLE IF EXISTS `tabCampaign`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCampaign` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `campaign_name` varchar(180) default NULL, - `description` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCampaign` --- - -LOCK TABLES `tabCampaign` WRITE; -/*!40000 ALTER TABLE `tabCampaign` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCampaign` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabComment` --- - -DROP TABLE IF EXISTS `tabComment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabComment` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `comment` text, - `comment_by` varchar(180) default NULL, - `comment_by_fullname` varchar(180) default NULL, - `comment_date` date default NULL, - `comment_time` varchar(180) default NULL, - `comment_doctype` varchar(180) default NULL, - `comment_docname` varchar(180) default NULL, - `post_topic` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - `unsubscribed` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabComment` --- - -LOCK TABLES `tabComment` WRITE; -/*!40000 ALTER TABLE `tabComment` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabComment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCommunication` --- - -DROP TABLE IF EXISTS `tabCommunication`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCommunication` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default 'COMM-', - `file_list` text, - `email_address` varchar(180) default NULL, - `subject` text, - `category` varchar(180) default NULL, - `lead` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - `content` text, - `communication_medium` varchar(180) default NULL, - `supplier` varchar(180) default NULL, - `support_ticket` varchar(180) default NULL, - `user` varchar(180) default NULL, - `opportunity` varchar(180) default NULL, - `quotation` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `phone_no` varchar(180) default NULL, - `contact` varchar(180) default NULL, - `communication_date` date default NULL, - `action` varchar(180) default NULL, - `sales_person` varchar(180) default NULL, - `next_communication_date` date default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCommunication` --- - -LOCK TABLES `tabCommunication` WRITE; -/*!40000 ALTER TABLE `tabCommunication` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCommunication` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCompany` --- - -DROP TABLE IF EXISTS `tabCompany`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCompany` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `company_name` varchar(180) default NULL, - `abbr` varchar(180) default NULL, - `address` text, - `phone_no` varchar(180) default NULL, - `email` varchar(180) default NULL, - `fax` varchar(180) default NULL, - `website` varchar(180) default NULL, - `registration_details` text, - `default_bank_account` varchar(180) default NULL, - `receivables_group` varchar(180) default NULL, - `payables_group` varchar(180) default NULL, - `yearly_bgt_flag` varchar(180) default NULL, - `monthly_bgt_flag` varchar(180) default NULL, - `credit_days` int(11) default NULL, - `credit_limit` decimal(18,6) default NULL, - `letter_head` mediumtext, - `trash_reason` text, - `default_salary_acount` varchar(180) default NULL, - `default_salary_account` varchar(180) default NULL, - `default_currency` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `default_salary_acount` (`default_salary_acount`), - KEY `default_salary_account` (`default_salary_account`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCompany` --- - -LOCK TABLES `tabCompany` WRITE; -/*!40000 ALTER TABLE `tabCompany` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCompany` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabContact` --- - -DROP TABLE IF EXISTS `tabContact`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabContact` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `first_name` varchar(180) default NULL, - `last_name` varchar(180) default NULL, - `contact_name` varchar(180) default NULL, - `contact_type` varchar(180) default NULL, - `is_supplier` int(1) default '0', - `supplier_name` varchar(180) default NULL, - `supplier_address` mediumtext, - `supplier_type` varchar(180) default NULL, - `is_customer` int(1) default '0', - `customer_name` varchar(180) default NULL, - `customer_address` mediumtext, - `customer_group` varchar(180) default NULL, - `is_sales_partner` int(1) default '0', - `sales_partner` varchar(180) default NULL, - `sales_partner_address` mediumtext, - `partner_type` varchar(180) default NULL, - `company_name` varchar(180) default NULL, - `company_address` mediumtext, - `is_primary_contact` int(1) default '0', - `phone` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `mobile_no` varchar(180) default NULL, - `fax` varchar(180) default NULL, - `contact_address` mediumtext, - `department` varchar(180) default NULL, - `designation` varchar(180) default NULL, - `has_login` varchar(180) default 'No', - `disable_login` varchar(180) default NULL, - `supplier` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `is_employee` int(1) default NULL, - `employee_id` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - `unsubscribed` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabContact` --- - -LOCK TABLES `tabContact` WRITE; -/*!40000 ALTER TABLE `tabContact` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabContact` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCost Center` --- - -DROP TABLE IF EXISTS `tabCost Center`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCost Center` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `cost_center_name` varchar(180) default NULL, - `parent_cost_center` varchar(180) default NULL, - `company_name` varchar(180) default NULL, - `company_abbr` varchar(180) default NULL, - `group_or_ledger` varchar(180) default NULL, - `distribution_id` varchar(180) default NULL, - `lft` int(11) default NULL, - `rgt` int(11) default NULL, - `old_parent` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `lft` (`lft`), - KEY `rgt` (`rgt`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCost Center` --- - -LOCK TABLES `tabCost Center` WRITE; -/*!40000 ALTER TABLE `tabCost Center` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCost Center` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCountry` --- - -DROP TABLE IF EXISTS `tabCountry`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCountry` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `country_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCountry` --- - -LOCK TABLES `tabCountry` WRITE; -/*!40000 ALTER TABLE `tabCountry` DISABLE KEYS */; -INSERT INTO `tabCountry` VALUES ('Afghanistan','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Afghanistan',NULL),('Albania','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Albania',NULL),('Algeria','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Algeria',NULL),('Andorra','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Andorra',NULL),('Angola','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Angola',NULL),('Antarctica','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Antarctica',NULL),('Antigua and Barbuda','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Antigua and Barbuda',NULL),('Argentina','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Argentina',NULL),('Armenia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Armenia',NULL),('Australia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Australia',NULL),('Austria','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Austria',NULL),('Azerbaijan','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Azerbaijan',NULL),('Bahamas','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bahamas',NULL),('Bahrain','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bahrain',NULL),('Bangladesh','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bangladesh',NULL),('Barbados','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Barbados',NULL),('Belarus','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Belarus',NULL),('Belgium','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Belgium',NULL),('Belize','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Belize',NULL),('Benin','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Benin',NULL),('Bermuda','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bermuda',NULL),('Bhutan','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bhutan',NULL),('Bolivia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bolivia',NULL),('Bosnia and Herzegovina','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bosnia and Herzegovina',NULL),('Botswana','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Botswana',NULL),('Brazil','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Brazil',NULL),('Brunei','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Brunei',NULL),('Bulgaria','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Bulgaria',NULL),('Burkina Faso','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Burkina Faso',NULL),('Burma','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Burma',NULL),('Burundi','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Burundi',NULL),('Cambodia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cambodia',NULL),('Cameroon','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cameroon',NULL),('Canada','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Canada',NULL),('Cape Verde','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cape Verde',NULL),('Central African Republic','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Central African Republic',NULL),('Chad','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Chad',NULL),('Chile','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Chile',NULL),('China','2010-12-14 17:56:47','2009-06-15 15:12:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'China',NULL),('Colombia','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Colombia',NULL),('Comoros','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Comoros',NULL),('Congo, Democratic Republic','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Congo, Democratic Republic',NULL),('Congo, Republic of the','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Congo, Republic of the',NULL),('Costa Rica','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Costa Rica',NULL),('Cote dIvoire','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Cote dIvoire',NULL),('Croatia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Croatia',NULL),('Cuba','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cuba',NULL),('Cyprus','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Cyprus',NULL),('Czech Republic','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Czech Republic',NULL),('Denmark','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Denmark',NULL),('Djibouti','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Djibouti',NULL),('Dominica','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Dominica',NULL),('Dominican Republic','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Dominican Republic',NULL),('East Timor','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'East Timor',NULL),('Ecuador','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Ecuador',NULL),('Egypt','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Egypt',NULL),('El Salvador','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'El Salvador',NULL),('Equatorial Guinea','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Equatorial Guinea',NULL),('Eritrea','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Eritrea',NULL),('Estonia','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Estonia',NULL),('Ethiopia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Ethiopia',NULL),('Fiji','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Fiji',NULL),('Finland','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Finland',NULL),('France','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'France',NULL),('Gabon','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Gabon',NULL),('Gambia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Gambia',NULL),('Georgia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Georgia',NULL),('Germany','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Germany',NULL),('Ghana','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Ghana',NULL),('Greece','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Greece',NULL),('Greenland','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Greenland',NULL),('Grenada','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Grenada',NULL),('Guatemala','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Guatemala',NULL),('Guinea','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Guinea',NULL),('Guinea-Bissau','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Guinea-Bissau',NULL),('Guyana','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Guyana',NULL),('Haiti','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Haiti',NULL),('Honduras','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Honduras',NULL),('Hong Kong','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Hong Kong',NULL),('Hungary','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Hungary',NULL),('Iceland','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Iceland',NULL),('India','2010-12-14 17:56:47','2010-04-03 17:29:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'India',NULL),('Indonesia','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Indonesia',NULL),('Iran','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Iran',NULL),('Iraq','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Iraq',NULL),('Ireland','2010-12-14 17:56:48','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Ireland',NULL),('Israel','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Israel',NULL),('Italy','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Italy',NULL),('Jamaica','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Jamaica',NULL),('Japan','2010-12-14 17:56:47','2010-04-15 13:41:42','Administrator','Administrator',0,NULL,'','',NULL,'Japan',NULL),('Jordan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Jordan',NULL),('Kazakhstan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kazakhstan',NULL),('Kenya','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kenya',NULL),('Kiribati','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kiribati',NULL),('Korea, North','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Korea, North',NULL),('Korea, South','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Korea, South',NULL),('Kuwait','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kuwait',NULL),('Kyrgyzstan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Kyrgyzstan',NULL),('Laos','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Laos',NULL),('Latvia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Latvia',NULL),('Lebanon','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Lebanon',NULL),('Lesotho','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Lesotho',NULL),('Liberia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Liberia',NULL),('Libya','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Libya',NULL),('Liechtenstein','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Liechtenstein',NULL),('Lithuania','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Lithuania',NULL),('Luxembourg','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Luxembourg',NULL),('Macedonia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Macedonia',NULL),('Madagascar','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Madagascar',NULL),('Malawi','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Malawi',NULL),('Malaysia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Malaysia',NULL),('Maldives','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Maldives',NULL),('Mali','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mali',NULL),('Malta','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Malta',NULL),('Marshall Islands','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Marshall Islands',NULL),('Mauritania','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mauritania',NULL),('Mauritius','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mauritius',NULL),('Mexico','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mexico',NULL),('Micronesia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Micronesia',NULL),('Moldova','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Moldova',NULL),('Monaco','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Monaco',NULL),('Mongolia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mongolia',NULL),('Morocco','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Morocco',NULL),('Mozambique','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Mozambique',NULL),('Namibia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Namibia',NULL),('Nauru','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Nauru',NULL),('Nepal','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Nepal',NULL),('Netherlands','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Netherlands',NULL),('New Zealand','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'New Zealand',NULL),('Nicaragua','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Nicaragua',NULL),('Niger','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Niger',NULL),('Nigeria','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Nigeria',NULL),('North Korea','2010-12-14 17:56:48','2010-04-15 15:03:20','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'North Korea',NULL),('Norway','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Norway',NULL),('Oman','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Oman',NULL),('Pakistan','2010-12-14 17:56:47','2009-12-15 17:33:39','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,NULL,'Pakistan',NULL),('Panama','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Panama',NULL),('Papua New Guinea','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Papua New Guinea',NULL),('Paraguay','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Paraguay',NULL),('Peru','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Peru',NULL),('Philippines','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Philippines',NULL),('Poland','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Poland',NULL),('Portugal','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Portugal',NULL),('Qatar','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Qatar',NULL),('Romania','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Romania',NULL),('Russia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Russia',NULL),('Rwanda','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Rwanda',NULL),('Samoa','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Samoa',NULL),('San Marino','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'San Marino',NULL),('Sao Tome','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,' Sao Tome',NULL),('Saudi Arabia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Saudi Arabia',NULL),('Senegal','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Senegal',NULL),('Serbia and Montenegro','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Serbia and Montenegro',NULL),('Seychelles','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Seychelles',NULL),('Sierra Leone','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Sierra Leone',NULL),('Singapore','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Singapore',NULL),('Slovakia','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Slovakia',NULL),('Slovenia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Slovenia',NULL),('Solomon Islands','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Solomon Islands',NULL),('Somalia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Somalia',NULL),('South Africa','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'South Africa',NULL),('South Korea','2010-12-14 17:56:47','2010-04-15 15:03:26','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'South Korea',NULL),('Spain','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Spain',NULL),('Sri Lanka','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Sri Lanka',NULL),('Sudan','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Sudan',NULL),('Suriname','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Suriname',NULL),('Swaziland','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Swaziland',NULL),('Sweden','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Sweden',NULL),('Switzerland','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Switzerland',NULL),('Syria','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Syria',NULL),('Taiwan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Taiwan',NULL),('Tajikistan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Tajikistan',NULL),('Tanzania','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Tanzania',NULL),('Thailand','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Thailand',NULL),('Togo','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Togo',NULL),('Tonga','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Tonga',NULL),('Trinidad and Tobago','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Trinidad and Tobago',NULL),('Tunisia','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Tunisia',NULL),('Turkey','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Turkey',NULL),('Turkmenistan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Turkmenistan',NULL),('Uganda','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Uganda',NULL),('Ukraine','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Ukraine',NULL),('United Arab Emirates','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'United Arab Emirates',NULL),('United Kingdom','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'United Kingdom',NULL),('United States','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'United States',NULL),('Uruguay','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Uruguay',NULL),('Uzbekistan','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Uzbekistan',NULL),('Vanuatu','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Vanuatu',NULL),('Venezuela','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Venezuela',NULL),('Vietnam','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Vietnam',NULL),('Yemen','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Yemen',NULL),('Zambia','2010-12-14 17:56:48','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Zambia',NULL),('Zimbabwe','2010-12-14 17:56:47','2010-04-15 13:41:43','Administrator','Administrator',0,NULL,'','',NULL,'Zimbabwe',NULL); -/*!40000 ALTER TABLE `tabCountry` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCurrency` --- - -DROP TABLE IF EXISTS `tabCurrency`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCurrency` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `currency_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCurrency` --- - -LOCK TABLES `tabCurrency` WRITE; -/*!40000 ALTER TABLE `tabCurrency` DISABLE KEYS */; -INSERT INTO `tabCurrency` VALUES ('AED','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'AED',NULL),('AFN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AFN',NULL),('ALL','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'ALL',NULL),('AMD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AMD',NULL),('ANG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ANG',NULL),('AOA','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AOA',NULL),('ARS','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'ARS',NULL),('AUD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AUD',NULL),('AZN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'AZN',NULL),('BAM','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BAM',NULL),('BBD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BBD',NULL),('BDT','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BDT',NULL),('BGN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BGN',NULL),('BHD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BHD',NULL),('BIF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BIF',NULL),('BMD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BMD',NULL),('BND','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BND',NULL),('BOB','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BOB',NULL),('BRL','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BRL',NULL),('BSD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BSD',NULL),('BTN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BTN',NULL),('BWP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BWP',NULL),('BYR','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BYR',NULL),('BZD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'BZD',NULL),('CAD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CAD',NULL),('CDF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CDF',NULL),('CFA','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CFA',NULL),('CFP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CFP',NULL),('CHF','2010-12-14 17:56:48','2009-03-25 10:58:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'CHF',NULL),('CLP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CLP',NULL),('CNY','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CNY',NULL),('COP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'COP',NULL),('CRC','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CRC',NULL),('CUC','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CUC',NULL),('CZK','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'CZK',NULL),('DJF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'DJF',NULL),('DKK','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'DKK',NULL),('DOP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'DOP',NULL),('DZD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'DZD',NULL),('EEK','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'EEK',NULL),('EGP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'EGP',NULL),('ERN','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'ERN',NULL),('ETB','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'ETB',NULL),('EUR','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'EUR',NULL),('FJD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'FJD',NULL),('FKP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'FKP',NULL),('FMG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'FMG',NULL),('GBP','2010-12-14 17:56:48','2010-04-03 17:29:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'GBP',NULL),('GEL','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GEL',NULL),('GHS','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GHS',NULL),('GIP','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GIP',NULL),('GMD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GMD',NULL),('GNF','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'GNF',NULL),('GQE','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GQE',NULL),('GTQ','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'GTQ',NULL),('GYD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'GYD',NULL),('HKD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'HKD',NULL),('HNL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'HNL',NULL),('HRK','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'HRK',NULL),('HTG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'HTG',NULL),('HUF','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'HUF',NULL),('IDR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'IDR',NULL),('ILS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ILS',NULL),('INR','2010-12-14 17:56:48','2010-04-03 17:29:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'INR',NULL),('IQD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'IQD',NULL),('IRR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'IRR',NULL),('ISK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ISK',NULL),('JMD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'JMD',NULL),('JOD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'JOD',NULL),('JPY','2010-12-14 17:56:48','2009-03-25 10:58:22','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'JPY',NULL),('KES','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KES',NULL),('KGS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KGS',NULL),('KHR','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'KHR',NULL),('KMF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'KMF',NULL),('KPW','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KPW',NULL),('KRW','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KRW',NULL),('KWD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KWD',NULL),('KYD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'KYD',NULL),('KZT','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'KZT',NULL),('LAK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LAK',NULL),('LBP','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LBP',NULL),('LKR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LKR',NULL),('LRD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LRD',NULL),('LSL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LSL',NULL),('LTL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LTL',NULL),('LVL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LVL',NULL),('LYD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'LYD',NULL),('MAD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MAD',NULL),('MDL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MDL',NULL),('MGA','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MGA',NULL),('MKD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MKD',NULL),('MMK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MMK',NULL),('MNT','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MNT',NULL),('MOP','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MOP',NULL),('MRO','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MRO',NULL),('MUR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MUR',NULL),('MVR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MVR',NULL),('MWK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MWK',NULL),('MXN','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MXN',NULL),('MYR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MYR',NULL),('MZM','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'MZM',NULL),('NAD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NAD',NULL),('NGN','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NGN',NULL),('NIO','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NIO',NULL),('NOK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NOK',NULL),('NPR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NPR',NULL),('NRs','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NRs',NULL),('NZD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'NZD',NULL),('OMR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'OMR',NULL),('PAB','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PAB',NULL),('PEN','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PEN',NULL),('PGK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PGK',NULL),('PHP','2010-12-14 17:56:48','2009-07-13 13:33:43','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'PHP',NULL),('PKR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PKR',NULL),('PLN','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PLN',NULL),('PYG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'PYG',NULL),('QAR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'QAR',NULL),('RMB','2010-12-14 17:56:48','2009-03-26 10:25:52','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'RMB',NULL),('RON','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'RON',NULL),('RSD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'RSD',NULL),('RUB','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'RUB',NULL),('RWF','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'RWF',NULL),('SAR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SAR',NULL),('SCR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SCR',NULL),('SDG','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SDG',NULL),('SDR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SDR',NULL),('SEK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SEK',NULL),('SGD','2010-12-14 17:56:48','2010-05-10 12:42:41','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,NULL,'SGD',NULL),('SHP','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SHP',NULL),('SOS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SOS',NULL),('SRD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SRD',NULL),('STD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'STD',NULL),('SYP','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SYP',NULL),('SZL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'SZL',NULL),('THB','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'THB',NULL),('TJS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TJS',NULL),('TMT','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TMT',NULL),('TND','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TND',NULL),('TRY','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TRY',NULL),('TTD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TTD',NULL),('TWD','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TWD',NULL),('TZS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'TZS',NULL),('UAE','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UAE',NULL),('UAH','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UAH',NULL),('UGX','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UGX',NULL),('USD','2010-12-14 17:56:48','2010-04-03 17:29:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'USD',NULL),('UYU','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UYU',NULL),('UZS','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'UZS',NULL),('VEB','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'VEB',NULL),('VND','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'VND',NULL),('VUV','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'VUV',NULL),('WST','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'WST',NULL),('XAF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'XAF',NULL),('XCD','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'XCD',NULL),('XDR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'XDR',NULL),('XOF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'XOF',NULL),('XPF','2010-12-14 17:56:48','2010-04-15 14:17:19','Administrator','Administrator',0,NULL,'','',NULL,'XPF',NULL),('YEN','2010-12-14 17:56:48','2009-03-25 10:57:45','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'YEN',NULL),('YER','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'YER',NULL),('YTL','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'YTL',NULL),('ZAR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ZAR',NULL),('ZMK','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ZMK',NULL),('ZWR','2010-12-14 17:56:48','2010-04-15 14:17:20','Administrator','Administrator',0,NULL,'','',NULL,'ZWR',NULL); -/*!40000 ALTER TABLE `tabCurrency` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCustom Field` --- - -DROP TABLE IF EXISTS `tabCustom Field`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCustom Field` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `dt` varchar(180) default NULL, - `label` varchar(180) default NULL, - `fieldtype` varchar(180) default NULL, - `options` text, - `length` int(11) default NULL, - `insert_after` varchar(180) default NULL, - `index` decimal(14,6) default NULL, - `reqd` int(1) default NULL, - `print_hide` int(1) default NULL, - `permlevel` int(11) default '0', - `fieldname` varchar(180) default NULL, - `description` text, - `default` text, - `width` varchar(180) default NULL, - `in_filter` int(1) default NULL, - `no_copy` int(1) default NULL, - `report_hide` int(1) default NULL, - `allow_on_submit` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `dt` (`dt`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCustom Field` --- - -LOCK TABLES `tabCustom Field` WRITE; -/*!40000 ALTER TABLE `tabCustom Field` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCustom Field` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCustom Script` --- - -DROP TABLE IF EXISTS `tabCustom Script`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCustom Script` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `dt` varchar(180) default NULL, - `script_type` varchar(180) default 'Client', - `script` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCustom Script` --- - -LOCK TABLES `tabCustom Script` WRITE; -/*!40000 ALTER TABLE `tabCustom Script` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCustom Script` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCustomer Group` --- - -DROP TABLE IF EXISTS `tabCustomer Group`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCustomer Group` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `customer_group_name` varchar(180) default NULL, - `description` text, - `parent_customer_group` varchar(180) default NULL, - `is_group` varchar(180) default NULL, - `lft` int(11) default NULL, - `rgt` int(11) default NULL, - `old_parent` varchar(180) default NULL, - `default_price_list` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `lft` (`lft`), - KEY `rgt` (`rgt`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCustomer Group` --- - -LOCK TABLES `tabCustomer Group` WRITE; -/*!40000 ALTER TABLE `tabCustomer Group` DISABLE KEYS */; -INSERT INTO `tabCustomer Group` VALUES ('All Customer Groups','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'All Customer Groups',NULL,'','Yes',1,4,'',NULL,NULL),('Default Customer Group','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Customer Group',NULL,'All Customer Groups','No',2,3,'All Customer Groups',NULL,NULL); -/*!40000 ALTER TABLE `tabCustomer Group` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCustomer Issue` --- - -DROP TABLE IF EXISTS `tabCustomer Issue`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCustomer Issue` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `status` varchar(180) default 'Open', - `complaint_date` date default NULL, - `fiscal_year` varchar(180) default NULL, - `complaint_raised_by` varchar(180) default NULL, - `service_address` text, - `customer_name` varchar(180) default NULL, - `customer_group` varchar(180) default NULL, - `customer_address` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `company` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` text, - `complaint` text, - `allocated_on` date default NULL, - `allocated_to` varchar(180) default NULL, - `resolution_details` text, - `resolution_date` date default NULL, - `resolved_by` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `from_company` varchar(180) default NULL, - `contact_person` varchar(180) default NULL, - `contact_no` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `naming_series` varchar(180) default NULL, - `serial_no` varchar(180) default NULL, - `warranty_amc_status` varchar(180) default NULL, - `amc_expiry_date` date default NULL, - `warranty_expiry_date` date default NULL, - `address_display` text, - `contact_display` text, - `contact_email` varchar(180) default NULL, - `contact_mobile` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `complaint_date` (`complaint_date`), - KEY `fiscal_year` (`fiscal_year`), - KEY `territory` (`territory`), - KEY `company` (`company`), - KEY `item_code` (`item_code`), - KEY `allocated_on` (`allocated_on`), - KEY `allocated_to` (`allocated_to`), - KEY `resolution_date` (`resolution_date`), - KEY `resolved_by` (`resolved_by`), - KEY `parent` (`parent`), - KEY `customer` (`customer`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCustomer Issue` --- - -LOCK TABLES `tabCustomer Issue` WRITE; -/*!40000 ALTER TABLE `tabCustomer Issue` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCustomer Issue` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCustomer` --- - -DROP TABLE IF EXISTS `tabCustomer`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCustomer` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `customer_name` varchar(180) default NULL, - `customer_group` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `lead_name` varchar(180) default NULL, - `phone_1` varchar(180) default NULL, - `fax_1` varchar(180) default NULL, - `website` varchar(180) default NULL, - `last_sales_order` varchar(180) default NULL, - `address_line1` varchar(180) default NULL, - `address_line2` varchar(180) default NULL, - `city` varchar(180) default NULL, - `pincode` varchar(180) default NULL, - `region` varchar(180) default NULL, - `country` varchar(180) default NULL, - `state` varchar(180) default NULL, - `address` mediumtext, - `telephone` varchar(180) default NULL, - `company` varchar(180) default NULL, - `customer_details` text, - `naming_series` varchar(180) default NULL, - `customer_type` varchar(180) default NULL, - `credit_days` int(11) default NULL, - `credit_limit` decimal(18,6) default NULL, - `email_id` varchar(180) default NULL, - `default_sales_partner` varchar(180) default NULL, - `default_commission_rate` decimal(18,6) default NULL, - `test_field` varchar(180) default NULL, - `default_price_list` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - `default_currency` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `customer_name` (`customer_name`), - KEY `customer_group` (`customer_group`), - KEY `country` (`country`), - KEY `state` (`state`), - KEY `company` (`company`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCustomer` --- - -LOCK TABLES `tabCustomer` WRITE; -/*!40000 ALTER TABLE `tabCustomer` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCustomer` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabCustomize Form Field` --- - -DROP TABLE IF EXISTS `tabCustomize Form Field`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabCustomize Form Field` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `print_hide` int(1) default NULL, - `description` text, - `default` text, - `depends_on` varchar(180) default NULL, - `allow_on_submit` int(1) default NULL, - `options` text, - `width` varchar(180) default NULL, - `fieldname` varchar(180) default NULL, - `fieldtype` varchar(180) default NULL, - `reqd` int(1) default NULL, - `hidden` int(1) default NULL, - `label` varchar(180) default NULL, - `permlevel` int(11) default '0', - `report_hide` int(1) default NULL, - `in_filter` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `fieldname` (`fieldname`), - KEY `fieldtype` (`fieldtype`), - KEY `label` (`label`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabCustomize Form Field` --- - -LOCK TABLES `tabCustomize Form Field` WRITE; -/*!40000 ALTER TABLE `tabCustomize Form Field` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabCustomize Form Field` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDeduction Type` --- - -DROP TABLE IF EXISTS `tabDeduction Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDeduction Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `deduction_name` varchar(180) default NULL, - `description` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDeduction Type` --- - -LOCK TABLES `tabDeduction Type` WRITE; -/*!40000 ALTER TABLE `tabDeduction Type` DISABLE KEYS */; -INSERT INTO `tabDeduction Type` VALUES ('Income Tax','2010-12-14 17:56:47','2010-04-05 12:53:07','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Income Tax','Income Tax',NULL),('Professional Tax','2010-12-14 17:56:47','2010-04-05 12:52:59','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Professional Tax','Professional Tax',NULL),('Provident Fund','2010-12-14 17:56:47','2010-04-05 12:52:52','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Provident Fund','Provident fund',NULL); -/*!40000 ALTER TABLE `tabDeduction Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDefault Home Page` --- - -DROP TABLE IF EXISTS `tabDefault Home Page`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDefault Home Page` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `role` varchar(180) default NULL, - `home_page` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDefault Home Page` --- - -LOCK TABLES `tabDefault Home Page` WRITE; -/*!40000 ALTER TABLE `tabDefault Home Page` DISABLE KEYS */; -INSERT INTO `tabDefault Home Page` VALUES ('000000580','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Control Panel','default_home_pages','Control Panel',1,'Guest',NULL); -/*!40000 ALTER TABLE `tabDefault Home Page` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDefaultValue` --- - -DROP TABLE IF EXISTS `tabDefaultValue`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDefaultValue` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `defkey` varchar(180) default NULL, - `defvalue` text, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDefaultValue` --- - -LOCK TABLES `tabDefaultValue` WRITE; -/*!40000 ALTER TABLE `tabDefaultValue` DISABLE KEYS */; -INSERT INTO `tabDefaultValue` VALUES ('Administrator_system_message_id',NULL,NULL,NULL,NULL,0,'Administrator',NULL,NULL,NULL,'system_message_id','5'),('DEF000004','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Guest','defaults','Role',1,'hide_webnotes_toolbar','1'),('DEF000005','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Guest','defaults','Role',2,'hide_sidebars','1'),('DEF000006','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fiscal_year',''),('DEF000007','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'company',''),('DEF000008','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'currency',''),('DEF000009','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'price_list_name','Standard'),('DEF000010','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'item_group','Default'),('DEF000011','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'customer_group','Default Customer Group'),('DEF000012','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'supplier_type','Default Supplier Type'),('DEF000013','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'territory','Default'),('DEF000014','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'stock_uom',''),('DEF000015','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'valuation_method',''),('DEF000016','2010-08-25 16:03:43','2010-08-25 16:03:43','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'cust_master_name','Customer Name'),('DEF000017','2010-08-25 16:03:43','2010-08-25 16:03:43','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'supp_master_name','Supplier Name'),('DEF000018','2010-09-20 16:56:24','2010-09-20 16:56:24','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'auto_feed_off','0'),('DEF000019','2010-11-16 10:34:12','2010-11-16 10:34:12','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'maintenance_status_update_date','2010-12-10'),('DEF000071','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_imports','1'),('DEF000072','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_projects','1'),('DEF000073','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_page_break','1'),('DEF000074','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_recurring_invoice','1'),('DEF000075','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_quality','1'),('DEF000076','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_more_info','1'),('DEF000077','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_packing_details','1'),('DEF000078','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_brands','1'),('DEF000079','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_sales_extras','1'),('DEF000080','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_item_serial_nos','1'),('DEF000081','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_manufacturing','1'),('DEF000082','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_item_batch_nos','1'),('DEF000083','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_exports','1'),('DEF000084','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_after_sales_installations','1'),('DEF000085','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_discounts','1'),('DEF000086','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_item_group_in_details','1'),('DEF000087','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_item_advanced','1'),('DEF000088','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_pos','1'),('DEF000089','2011-12-29 15:43:38','2011-12-29 15:43:38','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',NULL,'fs_purchase_discounts','1'),('DEF000090','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',1,'date_format','dd-mm-yyyy'),('DEF000091','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',2,'currency_format',NULL),('DEF000092','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',3,'price_list_currency',NULL),('DEF000093','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',4,'maintain_same_rate','1'),('DEF000094','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',5,'fraction_currency',NULL),('DEF000095','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',6,'account_url',NULL),('DEF000096','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',7,'allow_negative_stock',NULL),('DEF000097','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Control Panel','system_defaults','Control Panel',8,'fs_item_barcode','0'),('modules_last_update',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'modules_last_update','1296818001'),('next_patch',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'next_patch','368'),('__global_global_mail_footer',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'global_mail_footer','
    '),('__global_scheduler_last_event',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'scheduler_last_event','2012-05-03 12:12:54'),('__global_system_message',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'system_message','If your financial year starts on 1st April then you have make some changes in the system to start entry in the new year.
    We have made some guidelines regarding the basic steps you should follow. Please click on link How to start Entries in the New Fiscal Year in ERPNext?'),('__global_system_message_id',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'system_message_id','6'),('__session_status',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'__session_status','None'),('__session_status_message',NULL,NULL,NULL,NULL,0,'__global',NULL,NULL,NULL,'__session_status_message','None'); -/*!40000 ALTER TABLE `tabDefaultValue` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDelivery Note Item` --- - -DROP TABLE IF EXISTS `tabDelivery Note Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDelivery Note Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` text, - `stock_uom` varchar(180) default NULL, - `qty` decimal(18,6) default '0.000000', - `ref_rate` decimal(18,6) default '0.000000', - `adj_rate` decimal(18,6) default '0.000000', - `export_rate` decimal(18,6) default NULL, - `export_amount` decimal(18,6) default NULL, - `base_ref_rate` decimal(18,6) default NULL, - `basic_rate` decimal(18,6) default '0.000000', - `amount` decimal(18,6) default NULL, - `warehouse` varchar(180) default NULL, - `serial_no` text, - `batch_no` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `installed_qty` decimal(18,6) default NULL, - `actual_qty` decimal(18,6) default NULL, - `billed_qty` decimal(18,6) default NULL, - `prevdoc_docname` varchar(180) default NULL, - `prevdoc_doctype` varchar(180) default NULL, - `prevdoc_date` date default NULL, - `prevdoc_detail_docname` varchar(180) default NULL, - `item_tax_rate` text, - `page_break` int(1) default NULL, - `billed_amt` decimal(18,6) default NULL, - `packed_qty` decimal(18,6) default '0.000000', - `barcode` varchar(180) default NULL, - `customer_item_code` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `prevdoc_docname` (`prevdoc_docname`), - KEY `prevdoc_doctype` (`prevdoc_doctype`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDelivery Note Item` --- - -LOCK TABLES `tabDelivery Note Item` WRITE; -/*!40000 ALTER TABLE `tabDelivery Note Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabDelivery Note Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDelivery Note Packing Item` --- - -DROP TABLE IF EXISTS `tabDelivery Note Packing Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDelivery Note Packing Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `parent_item` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - `parent_detail_docname` varchar(180) default NULL, - `description` text, - `qty` decimal(18,6) default NULL, - `uom` varchar(180) default NULL, - `warehouse` varchar(180) default NULL, - `actual_qty` decimal(18,6) default NULL, - `planned_qty` decimal(18,6) default NULL, - `produced_qty` decimal(18,6) default NULL, - `prevdoc_doctype` varchar(180) default NULL, - `transaction_date` date default NULL, - `delivery_date` date default NULL, - `confirmation_date` date default NULL, - `page_break` int(1) default NULL, - `item_name` varchar(180) default NULL, - `projected_qty` decimal(18,6) default NULL, - `serial_no` text, - `batch_no` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `item_code_warehouse` (`item_code`,`warehouse`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDelivery Note Packing Item` --- - -LOCK TABLES `tabDelivery Note Packing Item` WRITE; -/*!40000 ALTER TABLE `tabDelivery Note Packing Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabDelivery Note Packing Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDelivery Note` --- - -DROP TABLE IF EXISTS `tabDelivery Note`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDelivery Note` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default 'DN', - `status` varchar(180) default 'Draft', - `customer_name` varchar(180) default NULL, - `customer_address` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `contact_person` varchar(180) default NULL, - `delivery_address` mediumtext, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `transporter_name` varchar(180) default NULL, - `transaction_date` date default NULL, - `per_billed` decimal(18,6) default NULL, - `per_installed` decimal(18,6) default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `lr_no` varchar(180) default NULL, - `lr_date` date default NULL, - `challan_no` varchar(180) default NULL, - `challan_date` date default NULL, - `sales_order_no` varchar(180) default NULL, - `price_list_name` varchar(180) default NULL, - `net_total` decimal(18,6) default NULL, - `charge` varchar(180) default NULL, - `other_charges_total` decimal(18,6) default NULL, - `grand_total` decimal(18,6) default NULL, - `rounded_total` decimal(18,6) default NULL, - `in_words` varchar(180) default NULL, - `grand_total_export` decimal(18,6) default NULL, - `rounded_total_export` decimal(18,6) default NULL, - `in_words_export` varchar(180) default NULL, - `tc_name` varchar(180) default NULL, - `terms` text, - `posting_date` date default NULL, - `posting_time` time default NULL, - `source` varchar(180) default NULL, - `campaign` varchar(180) default NULL, - `to_warehouse` varchar(180) default NULL, - `instructions` text, - `print_without_amount` int(1) default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `customer_group` varchar(180) default NULL, - `contact_no` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `po_no` varchar(180) default NULL, - `po_date` varchar(180) default NULL, - `cancel_reason` varchar(180) default NULL, - `excise_page` varchar(180) default NULL, - `note` mediumtext, - `sales_partner` varchar(180) default NULL, - `commission_rate` decimal(18,6) default NULL, - `total_commission` decimal(18,6) default NULL, - `supplier` varchar(180) default NULL, - `supplier_address` text, - `purchase_receipt_no` varchar(180) default NULL, - `purchase_order_no` varchar(180) default NULL, - `customer_mobile_no` varchar(180) default NULL, - `message` mediumtext, - `project_name` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `letter_head` varchar(180) default NULL, - `per_amt_billed` decimal(18,6) default NULL, - `ship_to` varchar(180) default NULL, - `ship_det_no` varchar(180) default NULL, - `shipping_address` mediumtext, - `billing_status` varchar(180) default NULL, - `contact_display` text, - `contact_email` text, - `contact_mobile` text, - `address_display` text, - `installation_status` varchar(180) default NULL, - `price_list_currency` varchar(180) default NULL, - `plc_conversion_rate` decimal(18,6) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `territory` (`territory`), - KEY `transaction_date` (`transaction_date`), - KEY `per_billed` (`per_billed`), - KEY `per_installed` (`per_installed`), - KEY `posting_date` (`posting_date`), - KEY `company` (`company`), - KEY `fiscal_year` (`fiscal_year`), - KEY `parent` (`parent`), - KEY `project_name` (`project_name`), - KEY `customer` (`customer`), - KEY `per_amt_billed` (`per_amt_billed`), - KEY `customer_group` (`customer_group`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDelivery Note` --- - -LOCK TABLES `tabDelivery Note` WRITE; -/*!40000 ALTER TABLE `tabDelivery Note` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabDelivery Note` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDepartment` --- - -DROP TABLE IF EXISTS `tabDepartment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDepartment` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `department_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDepartment` --- - -LOCK TABLES `tabDepartment` WRITE; -/*!40000 ALTER TABLE `tabDepartment` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabDepartment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDesignation` --- - -DROP TABLE IF EXISTS `tabDesignation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDesignation` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `designation_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDesignation` --- - -LOCK TABLES `tabDesignation` WRITE; -/*!40000 ALTER TABLE `tabDesignation` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabDesignation` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDocField` --- - -DROP TABLE IF EXISTS `tabDocField`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDocField` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `fieldname` varchar(180) default NULL, - `label` varchar(180) default NULL, - `oldfieldname` varchar(180) default NULL, - `fieldtype` varchar(180) default NULL, - `oldfieldtype` varchar(180) default NULL, - `options` text, - `search_index` int(1) default NULL, - `hidden` int(1) default NULL, - `print_hide` int(1) default NULL, - `report_hide` int(1) default NULL, - `reqd` int(1) default NULL, - `no_copy` int(1) default NULL, - `allow_on_submit` int(1) default NULL, - `trigger` varchar(180) default NULL, - `depends_on` varchar(180) default NULL, - `permlevel` int(11) default '0', - `width` varchar(180) default NULL, - `default` text, - `description` text, - `colour` varchar(180) default NULL, - `icon` varchar(180) default NULL, - `in_filter` int(1) default NULL, - `no_column` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `label` (`label`), - KEY `fieldtype` (`fieldtype`), - KEY `fieldname` (`fieldname`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDocField` --- - -LOCK TABLES `tabDocField` WRITE; -/*!40000 ALTER TABLE `tabDocField` DISABLE KEYS */; -INSERT INTO `tabDocField` VALUES ('FL01047','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Label','fields','DocType',1,'dt','Select DocType','dt','Select','Select','link:DocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL01048','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Label','fields','DocType',2,'dt_label','DocType Label','dt_label','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03646','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',1,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03647','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',2,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03648','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',3,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03649','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',4,'sales_order','Sales Order',NULL,'Link',NULL,'Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03650','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',5,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03651','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',6,'territory','Territory',NULL,'Link',NULL,'Territory',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03652','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',7,NULL,'Get Open Sales Order',NULL,'Button',NULL,'get_open_sales_order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL03653','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',8,'entries','Entries',NULL,'Table',NULL,'Update Delivery Date Detail',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,'','No Toolbar',NULL,NULL,NULL,NULL,NULL),('FL03654','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','fields','DocType',9,NULL,'Update Sales Order',NULL,'Button',NULL,'update_sales_order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06909','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',1,'item','Item',NULL,'Link',NULL,'Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL06910','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',2,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06911','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',3,'published','Published',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06912','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',4,'price_list','Price List',NULL,'Link',NULL,'Price List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Price List for the web. Leave blank to hide price.','White:FFF',NULL,NULL,NULL),('FL06913','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',5,'warehouse','Warehouse',NULL,'Link',NULL,'Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select shipping warehouse to show \"In Stock\" or \"Out of Stock\". To hide, leave blank','White:FFF',NULL,NULL,NULL),('FL06915','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',7,'thumbnail_image','Thumbnail Image',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Image for listing (Width: 100px) (Attach First)','White:FFF',NULL,NULL,NULL),('FL06916','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',8,'full_image','Full Image',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Image for listing (Width: 300px) (Attach First)','White:FFF',NULL,NULL,NULL),('FL06917','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',9,'short_description','Short Description',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL06919','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',11,'long_description','Long Description',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Full description (formatted as markdown)','White:FFF',NULL,NULL,NULL),('FL06921','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',13,'page_name','Page Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06922','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',14,'price','Price',NULL,'Currency',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL06923','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',15,'sales','Sales',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL06924','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',16,'stock','Stock',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06925','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',17,'currency','Currency',NULL,'Link',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06926','2012-02-13 19:12:21','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',18,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06927','2012-02-13 19:12:21','2012-02-21 14:31:10','Administrator','Administrator',0,'Product Group','fields','DocType',1,'item_group','Item Group',NULL,'Link',NULL,'Item Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06928','2012-02-13 19:12:21','2012-02-21 14:31:10','Administrator','Administrator',0,'Product Group','fields','DocType',2,'label','Label',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL06929','2012-02-13 19:12:21','2012-02-21 14:31:10','Administrator','Administrator',0,'Products Settings','fields','DocType',1,'groups','Groups',NULL,'Table',NULL,'Product Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Product Groups that are listed on the website. The first product group from this list will be listed by default on the \"Products Page\"','White:FFF',NULL,NULL,NULL),('FL07138','2012-02-22 18:36:09','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',6,NULL,NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07139','2012-02-22 18:36:09','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',10,NULL,NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07140','2012-02-22 18:36:09','2012-02-22 18:36:09','Administrator','Administrator',0,'Product','fields','DocType',12,NULL,NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07875','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',1,'general','General',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07876','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',2,'date_format','Date Format',NULL,'Select',NULL,'yyyy-mm-dd\ndd-mm-yyyy\ndd/mm/yyyy\nmm/dd/yyyy\nmm-dd-yyyy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07877','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',3,'currency_format','Currency Format',NULL,'Select',NULL,'Millions\nLacs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07878','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',4,'password_expiry_days','Password Expires in (days)',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07879','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',5,'session_expiry','Session Expires in (time)',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Format: hh:mm example for one hour expiry set as 01:00. \nMax expiry will be 72 hours. Default is 24 hours','White:FFF',NULL,NULL,NULL),('FL07880','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',6,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07881','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',7,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07882','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',8,'account_id','Account Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07883','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',9,'company_name','Company Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07884','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',10,'industry','Industry',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07885','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',11,'time_zone','Time Zone',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07886','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',12,'country','Country',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07887','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',13,'total_sms_sent','Total SMS Sent',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07888','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',14,'mail_server','Mail Server',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07889','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',15,'support_email_id','Support Email Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter Email Id to receive Error Report sent by users.\nE.g.: support@iwebnotes.com',NULL,NULL,NULL,NULL),('FL07890','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',16,'letter_head_image','Letter Head Image',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07891','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',17,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07892','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',18,'mail_footer','Mail Footer',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07893','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',19,'defaults','Defaults',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07894','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',20,'system_defaults','System Defaults',NULL,'Table',NULL,'DefaultValue',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07895','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',21,'banner','Banner',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07896','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',22,'client_name','Banner HTML',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07897','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',23,'startup','Startup',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07898','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',24,'custom_startup_code','Custom Startup Code',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07899','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',25,'home_pages','Home Pages',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07900','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',26,'home_page','Home Page',NULL,'Link',NULL,'Page',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07901','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Control Panel','fields','DocType',27,'default_home_pages','Default Home Pages',NULL,'Table',NULL,'Default Home Page',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07929','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'System Console','fields','DocType',1,'script','Script',NULL,'Code',NULL,'Python',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07930','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'System Console','fields','DocType',2,'server_python','Server (Python)',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL07931','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'System Console','fields','DocType',3,'client_js','Client (JS)',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL07932','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'System Console','fields','DocType',4,'response','Error',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07970','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',1,'module','Module','module','Select','Select','link:Module Def',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07971','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',2,'from_doctype','From DocType','from_doctype','Select','Select','link:DocType',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07972','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',3,'to_doctype','To DocType','to_doctype','Select','Select','link:DocType',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07973','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',4,'ref_doc_submitted','Ref Doc should be submitted?','ref_doc_submitted','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07974','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',5,'field_mapper_details','Field Mapper Details','field_mapper_details','Table','Table','Field Mapper Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07975','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'DocType Mapper','fields','DocType',6,'table_mapper_details','Table Mapper Details','table_mapper_details','Table','Table','Table Mapper Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL07999','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'Module Def','fields','DocType',1,'module_name','Module Name','module_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08000','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'Module Def','fields','DocType',2,'disabled','Disabled','disabled','Select','Select','No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08001','2012-05-08 11:38:13','2012-05-08 11:38:13','Administrator','Administrator',0,'Event Role','fields','DocType',1,'role','Role','role','Link','Link','Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08027','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',1,'label','Label','label','Data','Data',NULL,1,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08028','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',2,'fieldtype','Type','fieldtype','Select','Select','Data\nSelect\nText\nSmall Text\nText Editor\nLink\nInt\nDate\nTime\nCurrency\nTable\nFloat\nCheck\nSection Break\nColumn Break\nButton\nRead Only\nCode\nHTML\nImage\nBlob\nPassword',1,0,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08029','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',3,'fieldname','Name','fieldname','Data','Data',NULL,1,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08030','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',4,'options','Options','options','Text','Text',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'For Links, enter the DocType as range\nFor Select, enter list of Options separated by comma',NULL,NULL,NULL,NULL),('FL08031','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',5,'permlevel','Perm Level','permlevel','Int','Int',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'0',NULL,NULL,NULL,NULL,NULL),('FL08032','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',6,'width','Width','width','Data','Data',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08033','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',7,'reqd','Reqd','reqd','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08034','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',8,'search_index','Index','search_index','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08035','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',9,'in_filter','In Filter','in_filter','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08036','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',10,'hidden','Hidden','hidden','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08037','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',11,'no_column','No Column',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08038','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',12,'print_hide','Print Hide','print_hide','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08039','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',13,'no_copy','No Copy','no_copy','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08040','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',14,'report_hide','Report Hide','report_hide','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08041','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',15,'allow_on_submit','Allow on Submit','allow_on_submit','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08042','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',16,'depends_on','Depends On','depends_on','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08043','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',17,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08044','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',18,'trigger','Trigger','trigger','Select','Select','\nClient\nServer',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08045','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',19,'default','Default','default','Text','Text',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08046','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',20,'colour','Colour','colour','Select','Select','White:FFF\nLight Blue:DEF\nLight Green:DFE\nPeach:FEF3C5\nPink:FEF2EA\nLilac:FDEAFE\nAqua:EAFEFA',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08047','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',21,'icon','Icon','icon','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08048','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',22,'oldfieldname',NULL,'oldfieldname','Data','Data',NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08049','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'DocField','fields','DocType',23,'oldfieldtype',NULL,'oldfieldtype','Data','Data',NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08050','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',1,'from_table','From Table','from_table','Select','Select','link:DocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08051','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',2,'to_table','To Table','to_table','Select','Select','link:DocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08052','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',3,'from_field','From Field','from_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08053','2012-05-08 11:38:15','2012-05-08 11:38:15','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',4,'to_field','To Field','to_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08054','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',5,'match_id','Match Id','match_id','Int','Int',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'60px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08055','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',6,'validation_logic','Validation Logic','validation_logic','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08056','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',7,'reference_doctype_key','Reference DocType Key','reference_doctype_key','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08057','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Table Mapper Detail','fields','DocType',8,'reference_key','Reference Docname Key','reference_key','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08058','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Page Role','fields','DocType',1,'role','Role','role','Link','Link','Role',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08080','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',1,'permlevel','Level','permlevel','Int','Int',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'40px','0',NULL,NULL,NULL,NULL,NULL),('FL08081','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',2,'role','Role','role','Link','Link','Role',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08082','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',3,'read','Read','read','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08083','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',4,'write','Write','write','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08084','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',5,'create','Create','create','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08085','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',6,'submit','Submit','submit','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08086','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',7,'cancel','Cancel','cancel','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08087','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',8,'execute','Execute','execute','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'32px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08088','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',9,'amend','Amend','amend','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08089','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DocPerm','fields','DocType',10,'match','Match','match','Data','Data',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08092','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Role','fields','DocType',1,'module','Module','module','Select','Select','link:Module Def',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08093','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Role','fields','DocType',2,'role_name','Role Name','role_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08094','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Role','fields','DocType',3,'defaults','Defaults','defaults','Table','Table','DefaultValue',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08111','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',1,'from_field','From Field','from_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08112','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',2,'to_field','To Field','to_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08113','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',3,'match_id','Match Id','match_id','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px','0',NULL,NULL,NULL,NULL,NULL),('FL08114','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',4,'map','Map','map','Select','Select','Yes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08115','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Field Mapper Detail','fields','DocType',5,'checking_operator','Checking Operator (To Fld, Operator, From Fld)','checking_operator','Select','Select','\n=\n>\n>=\n<\n<=',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08116','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DefaultValue','fields','DocType',1,'defkey','Key','defkey','Data','Data',NULL,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08117','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'DefaultValue','fields','DocType',2,'defvalue','Value','defvalue','Text','Text',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08150','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Default Home Page','fields','DocType',1,'role','Role','role','Link','Link','Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08151','2012-05-08 11:38:16','2012-05-08 11:38:16','Administrator','Administrator',0,'Default Home Page','fields','DocType',2,'home_page','Home Page','home_page','Link','Link','Page',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08156','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',1,'description','Description','description','Text','Text',NULL,0,0,0,0,0,0,0,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,0,NULL),('FL08157','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',2,'date','Date','date','Date','Date',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08158','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',3,'priority','Priority','priority','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08159','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',4,'reference_type','Reference Type','reference_type','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08160','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',5,'reference_name','Reference Name','reference_name','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08161','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',6,'checked','Checked','checked','Check','Check',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08162','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',7,'role','Role','role','Link','Link','Role',0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08163','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'ToDo','fields','DocType',8,'assigned_by','Assigned By',NULL,'Link',NULL,'Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08185','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',1,'test_data','Test Data',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08186','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',2,'test_link','Test Link',NULL,'Link',NULL,'Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08187','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',3,'test_select','Test Select',NULL,'Select',NULL,'A\nB\nC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08188','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',4,'test_text','Test Text',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08189','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',5,'test_date','Test Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08190','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',6,'to_be_dropped','to be dropped',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08191','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',7,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL08192','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','fields','DocType',8,'amended_from','Amended From',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08193','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Event User','fields','DocType',1,'person','Person','person','Select','Select','link:Profile',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08194','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'File Data','fields','DocType',1,'file_name','File Name','file_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08195','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'File Data','fields','DocType',2,'module','Module','module','Link','Link','Module Def',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08196','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'File Data','fields','DocType',3,'blob_content','Blob Content','blob_content','Blob','Blob',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08294','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08295','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08296','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08297','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',4,'item_group','Item Group','item_group','Link','Link','Item Group',0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08298','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',5,'brand','Brand','brand','Link','Link','Brand',0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08299','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',6,'basic_rate','Basic Rate','basic_rate','Currency','Currency',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08300','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',7,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08301','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','Administrator',0,'Opportunity Item','fields','DocType',8,'uom','UOM','uom','Link','Link','UOM',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08302','2012-05-08 11:38:18','2012-05-08 11:38:18','Administrator','harshada@webnotestech.com',0,'Industry Type','fields','DocType',1,'industry','Industry','industry','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08393','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',1,'sales_person','Sales Person','sales_person','Link','Link','Sales Person',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,1,NULL),('FL08394','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',2,'sales_designation','Designation','sales_designation','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08395','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',3,'contact_no','Contact No.','contact_no','Data','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08396','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',4,'allocated_percentage','Allocated (%)','allocated_percentage','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08397','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',5,'allocated_amount','Allocated Amount','allocated_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08398','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',6,'parenttype','Parenttype','parenttype','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08399','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Sales Team','fields','DocType',7,'incentives','Incentives','incentives','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08400','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08401','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',2,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08402','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',3,'prevdoc_date','Delivery Date','prevdoc_date','Date','Date',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08403','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',4,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08404','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',5,'prevdoc_detail_docname','Against Document Detail No','prevdoc_detail_docname','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08405','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',6,'prevdoc_docname','Against Document No','prevdoc_docname','Data','Data',NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL08406','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',7,'prevdoc_doctype','Document Type','prevdoc_doctype','Data','Data',NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL08407','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','Administrator',0,'Installation Note Item','fields','DocType',8,'qty','Installed Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08467','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08468','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',2,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08469','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',3,'uom','UOM','uom','Link','Link','UOM',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08470','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',4,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08471','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',5,'qty','Qty','qty','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08472','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',6,'returned_qty','Returned Qty','returned_qty','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08473','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',7,'serial_no','Serial No',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08474','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',8,'batch_no','Batch No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08475','2012-05-08 11:38:19','2012-05-08 11:38:19','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Item','fields','DocType',9,'detail_name','Detail Name','detail_name','Data','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08476','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',1,'installation_note','Installation Note',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08477','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08478','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','\nIN',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08479','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',4,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08480','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',5,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08481','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',6,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08482','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',7,'customer_name','Name','customer_name','Data','Data',NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08483','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',8,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08484','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',9,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08485','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',10,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08486','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',11,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08487','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',12,'territory','Territory',NULL,'Link',NULL,'Territory',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08488','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',13,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08489','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',14,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08490','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',15,'inst_date','Installation Date','inst_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08491','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',16,'inst_time','Installation Time','inst_time','Time','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08492','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',17,'status','Status','status','Select','Select','Draft\nSubmitted\nCancelled',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,NULL,NULL,NULL,NULL),('FL08493','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',18,'company','Company','company','Select','Select','link:Company',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select the relevant company name if you have multiple companies.','White:FFF',NULL,1,NULL),('FL08494','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',19,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08495','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',20,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08496','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',21,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.','White:FFF',NULL,NULL,NULL),('FL08497','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',22,'remarks','Remarks','remarks','Small Text','Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08498','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',23,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08499','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',24,'item_details','Item Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08500','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',25,'delivery_note_no','Delivery Note No','delivery_note_no','Link','Link','Delivery Note',1,NULL,0,NULL,1,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08501','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',26,'get_items','Get Items',NULL,'Button','Button','pull_delivery_note_details',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08502','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Installation Note','fields','DocType',27,'installed_item_details','Installation Note Item','installed_item_details','Table','Table','Installation Note Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08503','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08504','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',2,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08505','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',3,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08506','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',4,'customer_address','Customer Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08507','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',5,'ship_to','Ship To',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08508','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',6,'shipping_address','Shipping Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08509','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',7,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08510','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',8,'is_primary_address','Is Primary Address',NULL,'Select',NULL,'Yes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08511','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',9,'shipping_details','Shipping Details',NULL,'Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08512','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','fields','DocType',10,'trash_reason','Trash Reason',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08598','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',1,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08599','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',2,'send_to','Send To',NULL,'Select',NULL,'\nAll Contact\nAll Customer Contact\nAll Supplier Contact\nAll Sales Partner Contact\nAll Lead (Open)\nAll Employee (Active)\nAll Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08600','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',3,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.send_to==\'All Customer Contact\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08601','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',4,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.send_to==\'All Supplier Contact\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08602','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',5,'department','Department',NULL,'Select',NULL,'link:Department',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.send_to==\'All Employee (Active)\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08603','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',6,'branch','Branch',NULL,'Select',NULL,'link:Branch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.send_to==\'All Employee (Active)\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08604','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',7,'create_receiver_list','Create Receiver List',NULL,'Button',NULL,'create_receiver_list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08605','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',8,'receiver_list','Receiver List',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08606','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',9,'column_break9',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08607','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',10,'message','Message',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Message greater than 160 character will be splitted into multiple mesage',NULL,NULL,NULL,NULL),('FL08608','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'SMS Center','fields','DocType',11,'send_sms','Send SMS',NULL,'Button',NULL,'send_sms',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08609','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08610','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',2,'employee_type','Employee Type',NULL,'Select',NULL,'link:Employment Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all employee types','White:FFF',NULL,NULL,NULL),('FL08611','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',3,'branch','Branch',NULL,'Select',NULL,'link:Branch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all branches','White:FFF',NULL,NULL,NULL),('FL08612','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',4,'department','Department',NULL,'Select',NULL,'link:Department',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all departments','White:FFF',NULL,NULL,NULL),('FL08613','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',5,'designation','Designation',NULL,'Select',NULL,'link:Designation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all designations','White:FFF',NULL,NULL,NULL),('FL08614','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',6,'grade','Grade',NULL,'Select',NULL,'link:Grade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Leave blank if considered for all grades','White:FFF',NULL,NULL,NULL),('FL08615','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',7,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08616','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',8,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08617','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',9,'leave_type','Leave Type',NULL,'Select',NULL,'link:Leave Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08618','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',10,'carry_forward','Carry Forward',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Please select Carry Forward if you also want to include previous fiscal year\'s balance leaves to this fiscal year','White:FFF',NULL,NULL,NULL),('FL08619','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',11,'no_of_days','New Leaves Allocated (In Days)',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08620','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Leave Control Panel','fields','DocType',12,'allocate','Allocate',NULL,'Button',NULL,'allocate_leave',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Server',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08621','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Deduction Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08622','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Deduction Type','fields','DocType',2,'deduction_name','Name','deduction_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08623','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Deduction Type','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08645','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Designation','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08646','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Designation','fields','DocType',2,'designation_name','Designation','designation_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08647','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Grade','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08648','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Grade','fields','DocType',2,'grade_name','Grade','grade_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08649','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Holiday','fields','DocType',1,'description','Description',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08650','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Holiday','fields','DocType',2,'holiday_date','Date','holiday_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08651','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08652','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08653','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',3,'employee','Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08654','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08655','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',5,'department','Department','department','Link','Link','Department',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08656','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',6,'designation','Designation','designation','Link','Link','Designation',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08657','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',7,'branch','Branch','branch','Link','Link','Branch',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08658','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',8,'grade','Grade','grade','Link','Link','Grade',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08659','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',9,'pf_no','PF No.','pf_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08660','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',10,'esic_no','ESIC No.','esic_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08661','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',11,'letter_head','Letter Head',NULL,'Link',NULL,'Letter Head',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08662','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',12,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08663','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',13,'fiscal_year','Fiscal Year','fiscal_year','Link','Data','Fiscal Year',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08664','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',14,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08665','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',15,'month','Month','month','Select','Select','\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'37%',NULL,NULL,'White:FFF',NULL,1,NULL),('FL08666','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',16,'total_days_in_month','Total days in month','total_days_in_month','Data','Int',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08667','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',17,'leave_without_pay','Leave Without Pay','leave_without_pay','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08668','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',18,'payment_days','Payment days','payment_days','Float','Float',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08669','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',19,'bank_name','Bank Name','bank_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08670','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',20,'bank_account_no','Bank Account No.','bank_account_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08671','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',21,'email_check','Email','email_check','Check','Check',NULL,NULL,NULL,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08672','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',22,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,0,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08673','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',23,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,0,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08674','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',24,'earning_deduction','Earning & Deduction',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08675','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',25,'earning','Earning',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08676','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',26,'earning_details','Salary Structure Earnings','earning_details','Table','Table','Salary Slip Earning',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08677','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',27,'deduction','Deduction',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08678','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',28,'deduction_details','Deductions','deduction_details','Table','Table','Salary Slip Deduction',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08679','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',29,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08680','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',30,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08681','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',31,'arrear_amount','Arrear Amount','arrear_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08682','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',32,'leave_encashment_amount','Leave Encashment Amount','encashment_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08683','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',33,'gross_pay','Gross Pay','gross_pay','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08684','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',34,'total_deduction','Total Deduction','total_deduction','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08685','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',35,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08686','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',36,'net_pay','Net Pay','net_pay','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Gross Pay + Arrear Amount +Encashment Amount - Total Deduction','White:FFF',NULL,NULL,NULL),('FL08687','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',37,'rounded_total','Rounded Total',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08688','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip','fields','DocType',38,'total_in_words','Total in words','net_pay_in_words','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Net Pay (in words) will be visible once you save the Salary Slip.',NULL,NULL,NULL,NULL),('FL08689','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip Deduction','fields','DocType',1,'d_type','Type','d_type','Link','Data','Deduction Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08690','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip Deduction','fields','DocType',2,'d_amount','Amount','d_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08691','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip Deduction','fields','DocType',3,'d_modified_amount','Modified Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08692','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Salary Slip Deduction','fields','DocType',4,'d_depends_on_lwp','Depends on LWP',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08693','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','ashwini@webnotestech.com',0,'Appraisal Template','fields','DocType',1,'kra_title','KRA Title','kra_title','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08694','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','ashwini@webnotestech.com',0,'Appraisal Template','fields','DocType',2,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08695','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','ashwini@webnotestech.com',0,'Appraisal Template','fields','DocType',3,'kra_sheet','Appraisal Template Goal','kra_sheet','Table','Table','Appraisal Template Goal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08696','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',1,'expense_date','Expense Date','expense_date','Date','Date',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08697','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',2,'expense_type','Expense Claim Type','expense_type','Link','Link','Expense Claim Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08698','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08699','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',4,'claim_amount','Claim Amount','claim_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08700','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','harshada@webnotestech.com',0,'Expense Claim Detail','fields','DocType',5,'sanctioned_amount','Sanctioned Amount','sanctioned_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,1,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08701','2012-05-08 11:38:21','2012-05-08 11:38:21','Administrator','Administrator',0,'Branch','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08702','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Branch','fields','DocType',2,'branch','Branch','branch','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08703','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Earning','fields','DocType',1,'e_type','Type','e_type','Link','Data','Earning Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08704','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Earning','fields','DocType',2,'modified_value','Amount','modified_value','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08705','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Earning','fields','DocType',3,'depend_on_lwp','Depend on LWP','depend_on_lwp','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08706','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08707','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',2,'holiday_list_name','Holiday List Name','holiday_list_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08708','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',3,'is_default','Default',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08709','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',4,'fiscal_year','Fiscal Year','fiscal_year','Select','Link','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08710','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',5,'weekly_off','Weekly Off',NULL,'Select',NULL,'\nSunday\nMonday\nTuesday\nWednesday\nThursday\nFriday\nSaturday',NULL,NULL,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08711','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',6,'get_weekly_off_dates','Get Weekly Off Dates',NULL,'Button',NULL,'get_weekly_off_dates',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08712','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',7,'holiday_list_details','Holidays','holiday_list_details','Table','Table','Holiday',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08713','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Holiday List','fields','DocType',8,'clear_table','Clear Table',NULL,'Button',NULL,'clear_table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08714','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',1,'particulars2','Particulars','particulars2','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08715','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',2,'under_section2','Under Section','under_section2','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08716','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',3,'max_limit2','Max. Limit','max_limit2','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08717','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',4,'actual_amount2','Actual Amount','actual_amount2','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08718','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',5,'eligible_amount2','Eligible Amount','eligible_amount2','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08719','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Other Income Detail','fields','DocType',6,'modified_amount2','Modified Amount','modified_amount2','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08720','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',1,'document_description','Document Description',NULL,'HTML',NULL,'
    You can generate multiple salary slips based on the selected criteria, submit and mail those to the employee directly from here
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08721','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',2,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08722','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',3,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08723','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',4,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08724','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',5,'branch','Branch',NULL,'Link',NULL,'Branch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08725','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',6,'department','Department',NULL,'Link',NULL,'Department',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08726','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',7,'designation','Designation',NULL,'Link',NULL,'Designation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08727','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',8,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08728','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',9,'grade','Grade',NULL,'Select',NULL,'link:Grade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08729','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',10,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08730','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',11,'month','Month',NULL,'Select',NULL,'\n01\n02\n03\n04\n05\n06\n07\n08\n09\n10\n11\n12',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08731','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',12,'send_email','Send Email',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check if you want to send salary slip in mail to each employee while submitting salary slip','White:FFF',NULL,NULL,NULL),('FL08732','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',13,'section_break1',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08733','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',14,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08734','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',15,'create_salary_slip','Create Salary Slip',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Creates salary slip for above mentioned criteria.','White:FFF',NULL,NULL,NULL),('FL08735','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',16,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'25%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08736','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',17,'submit_salary_slip','Submit Salary Slip',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Submit all salary slips for the above selected criteria','White:FFF',NULL,NULL,NULL),('FL08737','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',18,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'25%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08738','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',19,'make_bank_voucher','Make Bank Voucher',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Create Bank Voucher for the total salary paid for the above selected criteria','White:FFF',NULL,NULL,NULL),('FL08739','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',20,'section_break2',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08740','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Manager','fields','DocType',21,'activity_log','Activity Log',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08741','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',1,'basic_info','Basic Info','basic_info','Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08742','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08743','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',3,'employee','Employee','employee','Link','Link','Employee',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08744','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08745','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',5,'branch','Branch','branch','Select','Select','link:Branch',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08746','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',6,'designation','Designation','designation','Select','Select','link:Designation',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08747','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',7,'department','Department','department','Select','Select','link:Department',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08748','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',8,'grade','Grade','grade','Select','Select','link:Grade',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08749','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',9,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08750','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',10,'is_active','Is Active','is_active','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Yes',NULL,'White:FFF',NULL,1,NULL),('FL08751','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',11,'from_date','From Date','from_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08752','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',12,'to_date','To Date','to_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08753','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',13,'ctc','CTC','ctc','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Cost to Company','White:FFF',NULL,1,NULL),('FL08754','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',14,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08755','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',15,'earning_deduction','Earning & Deduction','earning_deduction','Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'You can create more earning and deduction type from Setup --> HR',NULL,NULL,NULL,NULL),('FL08756','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',16,'earning','Earning','col_brk2','Column Break','Column Break',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08757','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',17,'earning_details','Earning1','earning_details','Table','Table','Salary Structure Earning',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08758','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',18,'deduction','Deduction','col_brk3','Column Break','Column Break',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08759','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',19,'deduction_details','Deduction1','deduction_details','Table','Table','Salary Structure Deduction',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08760','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',20,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08761','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',21,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08762','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',22,'total_earning','Total Earning','total_earning','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08763','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',23,'total_deduction','Total Deduction','total_deduction','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08764','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',24,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08765','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure','fields','DocType',25,'net_pay','Net Pay',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08766','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',1,'school_univ','School/University','school_univ','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08767','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',2,'qualification','Qualification','qualification','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08768','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',3,'level','Level','level','Select','Select','Graduate\nPost Graduate\nUnder Graduate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08769','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',4,'year_of_passing','Year of Passing','year_of_passing','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08770','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',5,'class_per','Class / Percentage','class_per','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08771','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Employee Education','fields','DocType',6,'maj_opt_subj','Major/Optional Subjects','maj_opt_subj','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08772','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Deduction','fields','DocType',1,'d_type','Type','d_type','Link','Select','Deduction Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08773','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Deduction','fields','DocType',2,'d_modified_amt','Amount','d_modified_amt','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08774','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Salary Structure Deduction','fields','DocType',3,'depend_on_lwp','Depend on LWP','depend_on_lwp','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08775','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',1,'employee_details','Employee Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08776','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',2,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCompleted\nCancelled',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,1,NULL),('FL08777','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',3,'employee','Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08778','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08779','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',5,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08780','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',6,'company','Company','company','Select','Link','link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08781','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',7,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08782','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',8,'start_date','Start Date','start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08783','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',9,'end_date','End Date','end_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08784','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',10,'kra_approver','Approver','kra_approver','Select','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL08785','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',11,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08786','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',12,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08787','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',13,'declare_completed','Declare Completed',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08788','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',14,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08789','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',15,'kra_template','Appraisal Template','kra_template','Link','Link','Appraisal Template',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select template from which you want to fetch KRA','White:FFF',NULL,NULL,NULL),('FL08790','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',16,'fetch_template','Fetch Template',NULL,'Button','Button','fetch_kra',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08791','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',17,'update','Update',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08792','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',18,'appraisal_details','Appraisal Goals','appraisal_details','Table','Table','Appraisal Goal',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08793','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',19,'calculate_total_score','Calculate Total Score',NULL,'Button','Button','calculate_total',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08794','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','ashwini@webnotestech.com',0,'Appraisal','fields','DocType',20,'total_score','Total Score (Out of 5)','total_score','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08795','2012-05-08 11:38:22','2012-05-08 11:38:22','Administrator','Administrator',0,'Department','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08796','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Department','fields','DocType',2,'department_name','Department','department_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08797','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08798','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',2,'employee','Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08799','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',3,'employee_name','Employee Name',NULL,'Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08800','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',4,'leave_type','Leave Type','leave_type','Select','Link','link:Leave Type',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08801','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',5,'posting_date','Posting Date','date','Date','Date',NULL,0,0,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Today',NULL,'White:FFF',NULL,NULL,NULL),('FL08802','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',6,'fiscal_year','Fiscal Year','fiscal_year','Select','Data','link:Fiscal Year',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08803','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',7,'description','Description','reason','Small Text','Small Text',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08804','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',8,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08805','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',9,'carry_forward','Carry Forward',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08806','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',10,'carry_forwarded_leaves','Carry Forwarded Leaves',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08807','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',11,'new_leaves_allocated','New Leaves Allocated',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08808','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',12,'total_leaves_allocated','Total Leaves Allocated',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08809','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',13,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08810','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Allocation','fields','DocType',14,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL08811','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',1,'company_name','Company','company_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08812','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',2,'designation','Designation','designation','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08813','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',3,'salary','Salary','salary','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08814','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',4,'address','Address','address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08815','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',5,'contact','Contact','contact','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08816','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employee External Work History','fields','DocType',6,'total_experience','Total Experience','total_experience','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08817','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employment Type','fields','DocType',1,'employee_type_name','Employment Type','employee_type_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08818','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Employment Type','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08819','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Salary Slip Earning','fields','DocType',1,'e_type','Type','e_type','Link','Data','Earning Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08820','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Salary Slip Earning','fields','DocType',2,'e_amount','Amount','e_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08821','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Salary Slip Earning','fields','DocType',3,'e_modified_amount','Modified Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08822','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Salary Slip Earning','fields','DocType',4,'e_depends_on_lwp','Depends on LWP',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08823','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Template Goal','fields','DocType',1,'kra','KRA','kra','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,'Key Performance Area','White:FFF',NULL,NULL,NULL),('FL08824','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Template Goal','fields','DocType',2,'per_weightage','Weightage (%)','per_weightage','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08825','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08826','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',2,'leave_type_name','Leave Type Name','leave_type_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08827','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',3,'max_days_allowed','Max Days Leave Allowed','max_days_allowed','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08828','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',4,'is_carry_forward','Is Carry Forward','is_carry_forward','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08829','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',5,'is_encash','Is Encash','is_encash','Check','Check',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08830','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','Administrator',0,'Leave Type','fields','DocType',6,'is_lwp','Is LWP',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08831','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',1,'kra','KRA','kra','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Key Responsibility Area','White:FFF',NULL,NULL,NULL),('FL08832','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',2,'per_weightage','Weightage (%)','per_weightage','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08833','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',3,'target_achieved','Target Achieved','target_achieved','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08834','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',4,'score','Score (0-5)','score','Currency','Select','\n0\n1\n2\n3\n4\n5',NULL,NULL,NULL,NULL,NULL,1,1,'Client',NULL,0,'60px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08835','2012-05-08 11:38:23','2012-05-08 11:38:23','Administrator','ashwini@webnotestech.com',0,'Appraisal Goal','fields','DocType',5,'score_earned','Score Earned','score_earned','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08918','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',1,'branch','Branch','branch','Select','Select','link:Branch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08919','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',2,'department','Department','department','Select','Select','link:Department',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08920','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',3,'designation','Designation','designation','Select','Select','link:Designation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08921','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',4,'grade','Grade','grade','Select','Select','link:Grade',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08922','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',5,'from_date','From Date','from_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08923','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Internal Work History','fields','DocType',6,'to_date','To Date','to_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08924','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',1,'attendance_details','Attendance Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08925','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',2,'naming_series','Naming Series','naming_series','Select','Select','ATT',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08926','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',3,'employee','Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08927','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08928','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',5,'status','Status','status','Select','Select','\nPresent\nAbsent\nHalf Day',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL08929','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',6,'leave_type','Leave Type','leave_type','Link','Link','Leave Type',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08930','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',7,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL08931','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',8,'att_date','Attendance Date','att_date','Date','Date',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08932','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',9,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08933','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',10,'company','Company','company','Select','Link','link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL08934','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',11,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL08935','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','ashwini@webnotestech.com',0,'Attendance','fields','DocType',12,'amended_from','Amended From',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08936','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',1,'download_template','Download Template',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Get the template of the Attendance for which you want to import in CSV (Comma seperated values) format.\nFill data in the template. Save the template in CSV format.\nAll attendance dates inbetween \'Attendance From Date\' and \'Attendance To Date\' will come in the template with employees list.','White:FFF',NULL,NULL,NULL),('FL08937','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',2,'att_fr_date','Attendance From Date','attenadnce_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Selected Attendance date will comes in the attendance template.','White:FFF',NULL,NULL,NULL),('FL08938','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',3,'get_template','Get Template',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08939','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',4,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08940','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',5,'att_to_date','Attendance To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'All attendance dates inbetween selected Attendance From Date and Attendance To Date will come in the template with employees list.','White:FFF',NULL,NULL,NULL),('FL08941','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',6,'upload_attendance_data','Upload Attendance Data',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To import attendance data, click on \"Add\" button, select the saved CSV file and click on \"Upload\".\nSelect the date format as attendance date format in CSV file.\nClick on \"Import\".','White:FFF',NULL,NULL,NULL),('FL08942','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',7,'import_date_format','Import Date Format ',NULL,'Select',NULL,'yyyy-mm-dd\nmm/dd/yyyy\nmm/dd/yy\ndd-mm-yyyy\ndd/mm/yyyy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08943','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',8,'overwrite','Overwrite',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08944','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',9,'import','Import',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08945','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',10,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08946','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',11,'import_log','Import Log',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08947','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','fields','DocType',12,'import_log1','Import Log1',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08948','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',1,'institute','Institute / Conducted By','institute','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08949','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',2,'nature_of_training','Program / Seminar Title','nature_of_training','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08950','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',3,'duration','Duration','duration','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08951','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',4,'loc','Location','loc','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08952','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Employee Training','fields','DocType',5,'certificate','Certificate','certificate','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08953','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08954','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',2,'earning_name','Name','earning_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08955','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08956','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',4,'taxable','Taxable','taxable','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08957','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Earning Type','fields','DocType',5,'exemption_limit','Exemption Limit','exemption_limit','Currency','Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.taxable==\'No\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL08974','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Expense Claim Type','fields','DocType',1,'expense_type','Expense Claim Type','expense_type','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL08975','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','harshada@webnotestech.com',0,'Expense Claim Type','fields','DocType',2,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08976','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',1,'feed_type','Feed Type',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08977','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',2,'doc_type','Doc Type',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08978','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',3,'doc_name','Doc Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08979','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',4,'subject','Subject',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08980','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',5,'color','Color',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08981','2012-05-08 11:38:24','2012-05-08 11:38:24','Administrator','Administrator',0,'Feed','fields','DocType',6,'full_name','Full Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08982','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Receiver','fields','DocType',1,'customer_name','Customer Name','customer_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL08983','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Receiver','fields','DocType',2,'receiver_name','Receiver Name','receiver_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'350px',NULL,NULL,NULL,NULL,NULL,NULL),('FL08984','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Receiver','fields','DocType',3,'mobile_no','Mobile No','mobile_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09022','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09023','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',2,'sender_name','Sender Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09024','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',3,'sent_on','Sent On',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09025','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',4,'receiver_list','Receiver List',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09026','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',5,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09027','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',6,'no_of_requested_sms','No of Requested SMS',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09028','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',7,'no_of_sent_sms','No of Sent SMS',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09029','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'SMS Log','fields','DocType',8,'message','Message',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09030','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Reposting Tool','fields','DocType',1,'recalculate_mar_&_actual_qty','Recalculate MAR & Actual Qty',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09031','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Reposting Tool','fields','DocType',2,'repost_bin','Repost Bin',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09032','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Reposting Tool','fields','DocType',3,'repost_account_balances','Repost Account Balances',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09042','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',1,'table_field','Table Field','table_field','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09043','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',2,'account','Account','account','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09044','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',3,'debit','Debit','debit','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09045','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',4,'credit','Credit','credit','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09046','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',5,'cost_center','Cost Center','cost_center','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09047','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',6,'against','Against','against','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09048','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',7,'remarks','Remarks','remarks','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09049','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',8,'voucher_type','Voucher Type','voucher_type','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09050','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',9,'voucher_no','Voucher No','voucher_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09051','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',10,'posting_date','Posting Date','posting_date','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,NULL,NULL),('FL09052','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',11,'transaction_date','Transaction Date','transaction_date','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is made in system.',NULL,NULL,NULL,NULL),('FL09053','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',12,'aging_date','Aging Date','aging_date','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09054','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',13,'fiscal_year','Fiscal Year','fiscal_year','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09055','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',14,'against_voucher','Against Voucher','against_voucher','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09056','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',15,'against_voucher_type','Against Voucher Type','against_voucher_type','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09057','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',16,'company','Company','company','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09058','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',17,'is_opening','Is Opening','is_opening','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09059','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper Detail','fields','DocType',18,'is_advance','Is Advance','is_advance','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09060','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper','fields','DocType',1,'doc_type','Doc Type','doc_type','Data','Link',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09061','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'GL Mapper','fields','DocType',2,'fields','Fields','fields','Table','Table','GL Mapper Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09062','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Answer','fields','DocType',1,'question','Question',NULL,'Link',NULL,'Question',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09063','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Answer','fields','DocType',2,'answer','Answer','question','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09064','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Answer','fields','DocType',3,'points','Points',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09065','2012-05-08 11:38:25','2012-05-08 11:38:25','Administrator','Administrator',0,'Answer','fields','DocType',4,'_users_voted','Users Voted',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09096','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',1,'item_code','Item',NULL,'Link',NULL,'Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09097','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',2,'current_stock_uom','Current Stock UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09098','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',3,'new_stock_uom','New Stock UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09099','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',4,'update','Update',NULL,'Button',NULL,'update_stock_uom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09100','2012-05-08 11:38:26','2012-05-08 11:38:26','Administrator','Administrator',0,'Stock UOM Replace Utility','fields','DocType',5,'conversion_factor','Conversion Factor',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09235','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'UOM Conversion Detail','fields','DocType',1,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09236','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'UOM Conversion Detail','fields','DocType',2,'conversion_factor','Conversion Factor','conversion_factor','Float','Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09290','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL09291','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',2,'serial_no','Serial No',NULL,'Text',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,0,NULL),('FL09292','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',3,'batch_no','Batch No','batch_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09293','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',4,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL09294','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',5,'warehouse_type','Warehouse Type','warehouse_type','Select','Select','link:Warehouse Type',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09295','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',6,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL09296','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',7,'posting_time','Posting Time','posting_time','Time','Time',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,0,NULL),('FL09297','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',8,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,'The date at which current entry is made in system.',NULL,NULL,1,NULL),('FL09298','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',9,'voucher_type','Voucher Type','voucher_type','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09299','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',10,'voucher_no','Voucher No','voucher_no','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09300','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',11,'voucher_detail_no','Voucher Detail No','voucher_detail_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09301','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',12,'actual_qty','Actual Quantity','actual_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL09302','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',13,'incoming_rate','Incoming Rate','incoming_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09303','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',14,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09304','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',15,'bin_aqat','Bin Actual Qty After Transaction','bin_aqat','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09305','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',16,'ma_rate','Moving Average Rate','ma_rate','Currency','Currency',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09306','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',17,'fcfs_rate','FIFO Rate','fcfs_rate','Currency','Currency',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09307','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',18,'valuation_rate','Valuation Rate','valuation_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09308','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',19,'stock_value','Stock Value','stock_value','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09309','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',20,'fcfs_stack','FIFO Stack','fcfs_stack','Text','Text',NULL,0,1,1,1,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL09310','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',21,'company','Company','company','Select','Data','link:Company',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09311','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',22,'fiscal_year','Fiscal Year','fiscal_year','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL09312','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',23,'is_cancelled','Is Cancelled','is_cancelled','Select','Select','\nYes\nNo',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL09313','2012-05-08 11:38:27','2012-05-08 11:38:27','Administrator','Administrator',0,'Stock Ledger Entry','fields','DocType',24,'is_stock_entry','Is Stock Entry','is_stock_entry','Select','Select','\nYes\nNo',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL09314','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','Administrator',0,'Item Customer Detail','fields','DocType',1,'customer_name','Customer Name','price_list_name','Link','Select','Customer',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,1,NULL),('FL09315','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','Administrator',0,'Item Customer Detail','fields','DocType',2,'ref_code','Ref Code','ref_rate','Data','Currency',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'120px',NULL,NULL,NULL,NULL,1,NULL),('FL09316','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','Administrator',0,'Landed Cost Master Detail','fields','DocType',1,'account_head','Account Head','account_head','Link','Data','Account',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09317','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','Administrator',0,'Landed Cost Master Detail','fields','DocType',2,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09361','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09362','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',2,'batch_id','Batch ID','batch_id','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09363','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09364','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',4,'start_date','Batch Started Date','start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09365','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',5,'finished_date','Batch Finished Date','finished_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09366','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',6,'expiry_date','Expiry Date','expiry_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09367','2012-05-08 11:38:28','2012-05-08 11:38:28','Administrator','harshada@webnotestech.com',0,'Batch','fields','DocType',7,'item','Item','item','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09442','2012-05-08 11:38:29','2012-05-08 11:38:29','Administrator','wasim@webnotestech.com',0,'Landed Cost Purchase Receipt','fields','DocType',1,'purchase_receipt','Purchase Receipt','purchase_receipt_no','Link','Link','Purchase Receipt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'220px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09443','2012-05-08 11:38:29','2012-05-08 11:38:29','Administrator','wasim@webnotestech.com',0,'Landed Cost Purchase Receipt','fields','DocType',2,'select_pr','Select PR','include_in_landed_cost','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09545','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Quality Inspection Parameter','fields','DocType',1,'specification','Parameter','specification','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,0,NULL),('FL09546','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Quality Inspection Parameter','fields','DocType',2,'value','Acceptance Criteria','value','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09547','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Price','fields','DocType',1,'price_list_name','Price List Name','price_list_name','Select','Select','link:Price List',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09548','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Price','fields','DocType',2,'ref_rate','Ref Rate','ref_rate','Currency','Currency',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09549','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Price','fields','DocType',3,'ref_currency','Currency','ref_currency','Select','Select','link:Currency',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09550','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',1,'s_warehouse','Source Warehouse','s_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09551','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',2,'t_warehouse','Target Warehouse','t_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09552','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',3,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09553','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',4,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09554','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',5,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09555','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',6,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09556','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',7,'incoming_rate','Incoming Rate','incoming_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09557','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',8,'amount','Amount','amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09558','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',9,'serial_no','Serial No','serial_no','Text','Text',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09559','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',10,'batch_no','Batch No','batch_no','Link','Link','Batch',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09560','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',11,'reqd_qty','Reqd Qty','reqd_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL09561','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',12,'actual_qty','Actual Qty (at source)','actual_qty','Read Only','Read Only',NULL,1,NULL,1,NULL,0,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09562','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',13,'conversion_factor','Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09563','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',14,'transfer_qty','Stock Qty','transfer_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09564','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',15,'stock_uom','Stock UOM','stock_uom','Link','Link','UOM',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL09565','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',16,'bom_no','BOM No.',NULL,'Link',NULL,'BOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'BOM No. for a Finished Good Item',NULL,NULL,NULL,NULL),('FL09566','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Stock Entry Detail','fields','DocType',17,'fg_item','FG Item','fg_item','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09584','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Tax','fields','DocType',1,'tax_type','Tax','tax_type','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09585','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','Administrator',0,'Item Tax','fields','DocType',2,'tax_rate','Tax Rate','tax_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09586','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','wasim@webnotestech.com',0,'Landed Cost Item','fields','DocType',1,'account_head','Account Head','account_head','Link','Link','Account',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09587','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','wasim@webnotestech.com',0,'Landed Cost Item','fields','DocType',2,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09588','2012-05-08 11:38:30','2012-05-08 11:38:30','Administrator','wasim@webnotestech.com',0,'Landed Cost Item','fields','DocType',3,'amount','Amount','amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09675','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',1,'item_code','Item Code',NULL,'Link',NULL,'Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09676','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',2,'item_name','Item Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09677','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',3,'qty','Quantity',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09678','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',4,'stock_uom','UOM',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09679','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',5,'net_weight','Net Weight',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09680','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',6,'weight_uom','Weight UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09681','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Packing Slip Item','fields','DocType',7,'page_break','Page Break',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09682','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Item Supplier','fields','DocType',1,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09683','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Item Supplier','fields','DocType',2,'supplier_part_no','Supplier Part Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09690','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09691','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',2,'account','Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09692','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',3,'voucher_type','Voucher Type',NULL,'Select',NULL,'Sales Invoice\nPurchase Invoice\nJournal Voucher',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09693','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',4,'voucher_no','Voucher No',NULL,'Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09694','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',5,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09695','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',6,'total_amount','Total Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09696','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',7,'pending_amt_to_reconcile','Pending Amt To Reconcile',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09697','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',8,'payment_entries','Payment Entries',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09698','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',9,'column_break2','
    Filter payment entries based on date:
    ',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09699','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',10,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09700','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',11,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09701','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',12,'column_break3','
    Filter payment entries based on amount:
    ',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09702','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',13,'amt_greater_than','Amount >=',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09703','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',14,'amt_less_than','Amount <=',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09704','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',15,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09705','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',16,'pull_payment_entries','Pull Payment Entries',NULL,'Button',NULL,'get_payment_entries',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09706','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',17,'ir_payment_details','Payment Entries',NULL,'Table',NULL,'Payment to Invoice Matching Tool Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09707','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',18,'reconcile_html','Reconcile HTML',NULL,'HTML',NULL,'
    Select Payment Voucher and Amount to Reconcile in the above table and then click Reconcile button
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09708','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'Payment to Invoice Matching Tool','fields','DocType',19,'reconcile','Reconcile',NULL,'Button',NULL,'reconcile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09731','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',1,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09732','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',2,'from_date','From Date','from_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09733','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',3,'to_date','To Date','to_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09734','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',4,'tds_category','TDS Category','tds_category','Link','Link','TDS Category',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL09735','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',5,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09736','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',6,'naming_series','Naming Series','naming_series','Select','Select','TDSP',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Series Setup',NULL,NULL,NULL,NULL),('FL09737','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',7,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09738','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',8,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09739','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',9,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL09740','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',10,'section_break0',NULL,NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09741','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',11,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09742','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',12,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL09743','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',13,'registration_details','Registration Details','registration_details','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09744','2012-05-08 11:38:31','2012-05-08 11:38:31','Administrator','Administrator',0,'TDS Payment','fields','DocType',14,'remarks','Remark','remarks','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09745','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',15,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL09746','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',16,'html0',NULL,NULL,'HTML','HTML','Please Update Cheque No., BSR Code, Challan ID no. after actual payment. Unless you do not get it in Form 16A.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09747','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',17,'cheque_no','Cheque / DD No.','cheque_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09748','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',18,'bsr_code','BSR Code','bsr_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09749','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',19,'date_of_receipt','Date of Receipt','date_of_receipt','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09750','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',20,'challan_id','Challan ID','challan_id','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09751','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',21,'update','Update',NULL,'Button','Button','update_ack_details',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09752','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',22,'section_break1',NULL,NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09753','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',23,'get_tds_list','Get TDS List',NULL,'Button','Button','get_tds_list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09754','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',24,'tds_payment_details','TDS Payment Details','tds_payment_details','Table','Table','TDS Payment Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09755','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',25,'section_break2',NULL,NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09756','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',26,'total_tds','Total TDS','total_tds','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09757','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment','fields','DocType',27,'make_bank_voucher','Make Bank Voucher',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09767','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',1,'naming_series','Naming Series',NULL,'Select',NULL,'\nLA',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09768','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',2,'lessee_info','Lessee Info.',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09769','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',3,'account','Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09770','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',4,'lessee_father','Lessee Father',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09771','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',5,'lessee_nic','Lessee NIC',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09772','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',6,'lessee_contact','Lessee Contact',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09773','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',7,'lessee_address','Lessee Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09774','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',8,'vehicle_info','Vehicle Info.',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09775','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',9,'model_no','Model No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09776','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',10,'engine_no','Engine No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09777','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',11,'chassis_no','Chassis No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09778','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',12,'invoice_and_payment_info','Invoice and Payment Info.',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09779','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',13,'invoice','Invoice',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09780','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',14,'invoice_amount','Invoice Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09781','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',15,'down_payment','Down Payment',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09782','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',16,'start_date','Start Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09783','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',17,'no_of_installments','No of Installments',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09784','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',18,'installment_amount','Installment Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09785','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',19,'generate','Generate',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09786','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',20,'installments','Installments',NULL,'Table',NULL,'Lease Installment',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09787','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','fields','DocType',21,'installment_reciept','Installment Reciept',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09788','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',1,'amount','Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09789','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',2,'due_date','Due Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09790','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',3,'cheque_number','Cheque Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09791','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',4,'cheque_date','Cheque Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09792','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Installment','fields','DocType',5,'jv_number','JV Number',NULL,'Link',NULL,'Journal Voucher',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09819','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',1,'selected','Select',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'60px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09820','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',2,'voucher_no','Voucher No',NULL,'Link',NULL,'Journal Voucher',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'140px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09821','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',3,'amt_due','Amt Due',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09822','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',4,'amt_to_be_reconciled','Amt to be reconciled',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09823','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',5,'posting_date','Posting Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09824','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',6,'total_amt','Total Amt',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09825','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',7,'against_account','Against Account',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09826','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',8,'remarks','Remarks',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09827','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Payment to Invoice Matching Tool Detail','fields','DocType',9,'voucher_detail_no','Voucher Detail No',NULL,'Data',NULL,NULL,NULL,1,1,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL09839','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',1,'voucher_no','Voucher No','voucher_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09840','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',2,'party_name','Party Name','party_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09841','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',3,'amount_paid','Amount paid / credited','amount_paid','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09842','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',4,'date_of_payment','Date of payment / credit','date_of_payment','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09843','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',5,'tds_amount','TDS','tds_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09844','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',6,'cess_on_tds','Cess on TDS','cess_on_tds','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09845','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'TDS Payment Detail','fields','DocType',7,'total_tax_amount','Total Tax Amount','total_tax_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09846','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',1,'voucher_id','Voucher ID','voucher_id','Link','Link','Journal Voucher',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09847','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',2,'against_account','Against Account','against_account','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09848','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',3,'posting_date','Posting Date','posting_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,NULL,NULL),('FL09849','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',4,'cheque_number','Cheque Number','cheque_number','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09850','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',5,'cheque_date','Cheque Date','cheque_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09851','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',6,'debit','Debit','debit','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09852','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',7,'credit','Credit','credit','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09853','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Bank Reconciliation Detail','fields','DocType',8,'clearance_date','Clearance Date','clearance_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09854','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',1,'invoice_no','Invoice No',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09855','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',2,'invoice_date','Invoice Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09856','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',3,'territory','Territory',NULL,'Link',NULL,'Territory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09857','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',4,'net_total','Net Total',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09858','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'C-Form Invoice Detail','fields','DocType',5,'grand_total','Grand Total',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL09859','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Budget Detail','fields','DocType',1,'account','Account','account','Link','Link','Account',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09860','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Budget Detail','fields','DocType',2,'budget_allocated','Budget Allocated','budget_allocated','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09861','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Budget Detail','fields','DocType',3,'actual','Actual','actual','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09862','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Budget Detail','fields','DocType',4,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09863','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',1,'account','Account',NULL,'Link',NULL,'Account',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09864','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',2,'period','Period','period','Link','Link','Period',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09865','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',3,'opening','Opening','opening','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09866','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',4,'debit','Debit','debit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09867','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',5,'credit','Credit','credit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09868','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',6,'balance','Balance','balance','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09869','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',7,'fiscal_year','Fiscal Year','fiscal_year','Link','Link','Fiscal Year',0,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09870','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',8,'start_date','Start Date','start_date','Date','Date',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09871','2012-05-08 11:38:33','2012-05-08 11:38:33','Administrator','Administrator',0,'Account Balance','fields','DocType',9,'end_date','End Date','end_date','Date','Date',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09988','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',1,'select_date_range','Select Date Range',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09989','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',2,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09990','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',3,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09991','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',4,'select_ledgers','Select ledgers',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09992','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',5,'ledger_details','Multi Ledger Report Details',NULL,'Table',NULL,'Multi Ledger Report Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL09993','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'Multi Ledger Report','fields','DocType',6,'export_report','Export Report',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL09994','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Category Account','fields','DocType',1,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL09995','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Category Account','fields','DocType',2,'account_head','Account Head','account_head','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10080','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Rate Detail','fields','DocType',1,'category','Category','category','Link','Link','TDS Category',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10081','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Rate Detail','fields','DocType',2,'slab_from','Slab From','slab_from','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10082','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Rate Detail','fields','DocType',3,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10083','2012-05-08 11:38:34','2012-05-08 11:38:34','Administrator','Administrator',0,'TDS Rate Detail','fields','DocType',4,'rate_without_pan','Rate without PAN','rate_without_pan','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10084','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10085','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10086','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',3,'from_date','From Date','from_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10087','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',4,'to_date','To Date','to_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10088','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',5,'tds_category','TDS Category','tds_category','Link','Link','TDS Category',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10089','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',6,'party_name','Party Name','party_name','Link','Link','Account',NULL,0,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10090','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',7,'party_address','Address','party_address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10091','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',8,'pan_number','PAN No','pan_number','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10092','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',9,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10093','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',10,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10094','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',11,'company','Company ','company','Link','Link','Company',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10095','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',12,'company_address','Company Address','company_address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10096','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',13,'registration_details','Registration Details','registration_details','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10097','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',14,'return_details','Return Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10098','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',15,'get_return_details','Get Return Details',NULL,'Button','Button','get_return_ack_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10099','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',16,'form_16A_ack_details','Form 16A Ack Details','form_16A_ack_details','Table','Table','Form 16A Ack Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10100','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',17,'payment_details','Payment Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10101','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',18,'get_tds','Get TDS',NULL,'Button','Button','get_tds',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10102','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',19,'form_16A_tax_details','Tax Details','form_16A_tax_details','Table','Table','Form 16A Tax Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10103','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',20,'total_amount','Total Amount','total_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10104','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',21,'in_words','In Words',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10105','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',22,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10106','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',23,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10107','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',24,'place','Place','place','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10108','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',25,'dt','Date','dt','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10109','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',26,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10110','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',27,'full_name','Full Name','full_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10111','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Form 16A','fields','DocType',28,'designation','Designation','designation','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10112','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',1,'head_html','Head HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10113','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',2,'bank_account','Bank Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select account head of the bank where cheque was deposited.',NULL,NULL,NULL,NULL),('FL10114','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',3,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10115','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',4,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10116','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',5,'get_non_reconciled_entries','Get Non Reconciled Entries',NULL,'Button',NULL,'get_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10117','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',6,'entries','Entries',NULL,'Table',NULL,'Bank Reconciliation Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10118','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',7,'update_clearance_date','Update Clearance Date',NULL,'Button',NULL,'update_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10119','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Bank Reconciliation','fields','DocType',8,'total_amount','Total Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10124','2012-05-08 11:38:35','2012-05-08 11:38:35','Administrator','Administrator',0,'Multi Ledger Report Detail','fields','DocType',1,'account','Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10205','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',1,'journal_voucher','Journal Voucher','journal_voucher','Link','Link','Journal Voucher',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'180px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10206','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',2,'jv_detail_no','Journal Voucher Detail No','jv_detail_no','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'80px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10207','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',3,'advance_amount','Advance Amount','advance_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10208','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',4,'allocated_amount','Allocated Amount','allocated_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10209','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',5,'tds_amount','TDS Amount','tds_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'80px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10210','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',6,'tds_allocated','TDS Allocated','tds_allocated','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'80px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10211','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Purchase Invoice Advance','fields','DocType',7,'remarks','Remarks','remarks','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10226','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','harshada@webnotestech.com',0,'Mode of Payment','fields','DocType',1,'mode_of_payment','Mode of Payment','mode_of_payment','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10227','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10228','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',2,'naming_series','Series',NULL,'Select',NULL,'\nC-FORM/',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10229','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',3,'c_form_no','C-Form No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10230','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',4,'received_date','Received Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10231','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',5,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10232','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10233','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',7,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10234','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',8,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10235','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',9,'quarter','Quarter',NULL,'Select',NULL,'\nI\nII\nIII\nIV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10236','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',10,'total_amount','Total Amount',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10237','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',11,'state','State',NULL,'Select',NULL,'link:State\ncountry=\'India\'',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10238','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',12,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10239','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',13,'invoice_details','Invoice Details',NULL,'Table',NULL,'C-Form Invoice Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10240','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',14,'total_invoiced_amount','Total Invoiced Amount',NULL,'Currency',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10241','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'C-Form','fields','DocType',15,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10242','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Category','fields','DocType',1,'module','Module','module','Link','Link','Module Def',0,0,0,0,NULL,NULL,NULL,NULL,NULL,0,NULL,'Accounts',NULL,NULL,NULL,0,NULL),('FL10243','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Category','fields','DocType',2,'note_html','Note HTML',NULL,'HTML','HTML','Note: You must first create the Accounts from the Chart of Accounts and then link it to this Category.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10244','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Category','fields','DocType',3,'category_name','Category Name','category_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10245','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Category','fields','DocType',4,'tds_sh_edu_cess_account','TDS Account Detail','tds_sh_edu_cess_account','Table','Table','TDS Category Account',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10246','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',1,'journal_voucher','Journal Voucher','journal_voucher','Link','Link','Journal Voucher',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10247','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',2,'jv_detail_no','Journal Voucher Detail No','jv_detail_no','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10248','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',3,'advance_amount','Advance amount','advance_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10249','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',4,'allocated_amount','Allocated amount','allocated_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10250','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Sales Invoice Advance','fields','DocType',5,'remarks','Remarks','remarks','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10251','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',1,'amount_paid','Amount paid / credited','amount_paid','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10252','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',2,'date_of_payment','Date of payment / credit','date_of_payment','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10253','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',3,'tds_main','TDS(Main)','tds_main','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10254','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',4,'surcharge','Surcharge','surcharge','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10255','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',5,'cess_on_tds','Cess on TDS','cess_on_tds','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10256','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',6,'total_tax_deposited','Total Tax Deposited','total_tax_deposited','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10257','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',7,'cheque_no','Cheque / DD No.','cheque_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10258','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',8,'bsr_code','BSR Code','bsr_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10259','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',9,'tax_deposited_date','Tax Deposited Date','tax_deposited_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10260','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Tax Detail','fields','DocType',10,'challan_no','Challan No.','challan_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10265','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Rate Chart','fields','DocType',1,'module','Module','module','Link','Link','Module Def',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,'Accounts',NULL,NULL,NULL,NULL,NULL),('FL10266','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Rate Chart','fields','DocType',2,'applicable_from','Applicable From','applicable_from','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10267','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'TDS Rate Chart','fields','DocType',3,'rate_chart_detail','Rate Chart Detail','rate_chart_detail','Table','Table','TDS Rate Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10271','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Ack Detail','fields','DocType',1,'quarter','Quarter','quarter','Select','Select','\nApr-Jun\nJul-Sept\nOct-Dec\nJan-Mar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10272','2012-05-08 11:38:36','2012-05-08 11:38:36','Administrator','Administrator',0,'Form 16A Ack Detail','fields','DocType',2,'ack_no','Acknowledgement No.','ack_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10273','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',1,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10274','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',2,'quarter','Quarter','quarter','Select','Select','\nApr-Jun\nJul-Sept\nOct-Dec\nJan-Mar',NULL,NULL,NULL,NULL,1,NULL,0,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10275','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',3,'tds_category','TDS Category','tds_category','Select','Select','link:TDS Category',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10276','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',4,'acknowledgement_no','Acknowledgement No','acknowledgement_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10277','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','fields','DocType',5,'date_of_receipt','Date of Receipt','date_of_receipt','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10278','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',1,'account','Account','account','Link','Link','Account',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'250px',NULL,NULL,NULL,NULL,1,NULL),('FL10279','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',2,'debit','Debit','debit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10280','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',3,'credit','Credit','credit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10281','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',4,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'180px',NULL,NULL,NULL,NULL,1,NULL),('FL10282','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',5,'balance','Account Balance','balance','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10283','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',6,'against_voucher','Against Payable','against_voucher','Link','Link','Purchase Invoice',1,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10284','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',7,'against_invoice','Against Receivable','against_invoice','Link','Link','Sales Invoice',1,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10285','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',8,'against_jv','Against JV','against_jv','Link','Link','Journal Voucher',1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10286','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',9,'is_advance','Is Advance','is_advance','Select','Select','No\nYes',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10287','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Journal Voucher Detail','fields','DocType',10,'against_account','Against Account','against_account','Text','Text',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10332','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',1,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL10333','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',2,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is made in system.',NULL,NULL,NULL,NULL),('FL10334','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',3,'aging_date','Aging Date','aging_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10335','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',4,'account','Account','account','Link','Link','Account',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10336','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',5,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10337','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',6,'debit','Debit Amt','debit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10338','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',7,'credit','Credit Amt','credit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10339','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',8,'against','Against','against','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10340','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',9,'against_voucher','Against Voucher','against_voucher','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10341','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',10,'against_voucher_type','Against Voucher Type','against_voucher_type','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10342','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',11,'voucher_type','Voucher Type','voucher_type','Select','Select','Journal Voucher\nSales Invoice\nPurchase Invoice',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10343','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',12,'voucher_no','Voucher No','voucher_no','Data','Data',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10344','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',13,'remarks','Remarks','remarks','Text','Text',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10345','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',14,'is_cancelled','Is Cancelled','is_cancelled','Select','Select','No\nYes',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10346','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',15,'is_opening','Is Opening','is_opening','Select','Select','No\nYes',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10347','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',16,'is_advance','Is Advance','is_advance','Select','Select','No\nYes',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10348','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',17,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10349','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'GL Entry','fields','DocType',18,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10364','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',1,'act_start_time','Actual Start Time','act_start_time','Time','Time',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10365','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',2,'act_end_time','Actual End Time','act_end_time','Time','Time',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10366','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',3,'activity_type','Activity Type',NULL,'Link',NULL,'Activity Type',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10367','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',4,'other_details','Additional Info','other_details','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10368','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',5,'act_total_hrs','Total Hours (Actual)','act_total_hrs','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10369','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',6,'customer_name','Customer Name','customer_name','Link','Data','Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10370','2012-05-08 11:38:37','2012-05-08 11:38:37','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',7,'project_name','Project','project_name','Link','Link','Project',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL10371','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',8,'task_id','Task Id','task_id','Link','Link','Task',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL10372','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Timesheet Detail','fields','DocType',9,'task_name','Task Name','task_name','Link','Link',NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10411','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity Update','fields','DocType',1,'update','Update','update','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10412','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity Update','fields','DocType',2,'hours','Hours','hours','Float','Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'e.g. 0.5, 2.5 etc','White:FFF',NULL,NULL,NULL),('FL10413','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',1,'project','Project','project','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10414','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',2,'activity_name','Activity Name','activity_name','Data','Data',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10415','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',3,'percent_complete','Percent Complete','percent_complete','Select','Select','0\n5\n10\n15\n20\n25\n30\n35\n40\n45\n50\n55\n60\n65\n70\n75\n80\n85\n90\n95\n100',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10416','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',4,'last_update','Last Update','last_update','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10417','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',5,'last_update_by','Last Update By','last_update_by','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10418','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',6,'updates','Updates',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10419','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',7,'updates_html','Updates HTML',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10420','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',8,'new_update','New Update','new_update','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10421','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',9,'hours','Hours','hours','Float','Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10422','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Activity','fields','DocType',10,'add','Add',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10423','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Milestone','fields','DocType',1,'milestone_date','Milestone Date','milestone_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10424','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Milestone','fields','DocType',2,'milestone','Milestone','milestone','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10425','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Project Milestone','fields','DocType',3,'status','Status','status','Select','Select','Pending\nCompleted',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10426','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Activity Type','fields','DocType',1,'activity_type','Activity Type',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10469','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',1,'schedule_date','Required Date','schedule_date','Date','Date',NULL,NULL,NULL,0,NULL,1,1,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10470','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL10471','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10472','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',4,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,0,NULL,0,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10473','2012-05-08 11:38:38','2012-05-08 11:38:38','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',5,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,0,NULL,'Client',NULL,0,'80px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL10474','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',6,'uom','Stock UOM','uom','Link','Link','UOM',NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,1,'70px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10475','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',7,'lead_time_date','Lead Time Date','lead_time_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10476','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',8,'item_name','Item Name','item_name','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL10477','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',9,'item_group','Item Group','item_group','Link','Link','Item Group',1,NULL,1,NULL,0,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10478','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',10,'brand','Brand','brand','Link','Link','Brand',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10479','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',11,'min_order_qty','Min Order Qty','min_order_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,1,'70px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10480','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',12,'projected_qty','Projected Qty','projected_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'70px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10481','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',13,'ordered_qty','Ordered Qty','ordered_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10482','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',14,'sales_order_no','Sales Order No',NULL,'Link',NULL,'Sales Order',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10483','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Purchase Request Item','fields','DocType',15,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10484','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',1,'qa_inspection','QA Inspection',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10485','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10486','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',3,'naming_series','Naming Series',NULL,'Select',NULL,'\nQAI/11-12/',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10487','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',4,'inspection_type','Inspection Type','inspection_type','Select','Select','\nIncoming\nOutgoing\nIn Process',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10488','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',5,'report_date','Report Date','report_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10489','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',6,'item_code','Item Code','item_code','Link','Link','Item',1,0,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10490','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',7,'sample_size','Sample Size','sample_size','Currency','Currency',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10491','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',8,'description','Description','description','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,1,NULL),('FL10492','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',9,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL10493','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',10,'item_serial_no','Item Serial No','item_serial_no','Link','Link','Serial No',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10494','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',11,'batch_no','Batch No','batch_no','Link','Link','Batch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10495','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',12,'purchase_receipt_no','Purchase Receipt No','purchase_receipt_no','Link','Link','Purchase Receipt',1,0,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10496','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',13,'delivery_note_no','Delivery Note No','delivery_note_no','Link','Link','Delivery Note',1,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10497','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',14,'inspected_by','Inspected By','inspected_by','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10498','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',15,'remarks','Remarks','remarks','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10499','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',16,'verified_by','Verified By','verified_by','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10500','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',17,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10501','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',18,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10502','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',19,'specification_details','Specification Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10503','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',20,'get_specification_details','Get Specification Details',NULL,'Button',NULL,'get_item_specification_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10504','2012-05-08 11:38:39','2012-05-08 11:38:39','Administrator','Administrator',0,'Quality Inspection','fields','DocType',21,'qa_specification_details','Quality Inspection Readings','qa_specification_details','Table','Table','Quality Inspection Reading',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10604','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',1,'reference_name','Reference Name','reference_name','Data','Data',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10605','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',2,'bom_detail_no','BOM Detail No','bom_detail_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10606','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',3,'main_item_code','Item Code','main_item_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10607','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',4,'rm_item_code','Raw Material Item Code','rm_item_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10608','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',5,'required_qty','Required Qty','required_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10609','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',6,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10610','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',7,'amount','Amount','amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10611','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',8,'conversion_factor','Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10612','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','dhanalekshmi@webnotestech.com',0,'Purchase Order Item Supplied','fields','DocType',9,'stock_uom','Stock Uom','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10613','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',1,'specification','Parameter','specification','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10614','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',2,'value','Acceptance Criteria','value','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10615','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',3,'reading_1','Reading 1','reading_1','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10616','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',4,'reading_2','Reading 2','reading_2','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10617','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',5,'reading_3','Reading 3','reading_3','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10618','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',6,'reading_4','Reading 4','reading_4','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10619','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',7,'reading_5','Reading 5','reading_5','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10620','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',8,'reading_6','Reading 6','reading_6','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10621','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',9,'reading_7','Reading 7','reading_7','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10622','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',10,'reading_8','Reading 8','reading_8','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10623','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',11,'reading_9','Reading 9','reading_9','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10624','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',12,'reading_10','Reading 10','reading_10','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10625','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','Administrator',0,'Quality Inspection Reading','fields','DocType',13,'status','Status','status','Select','Select','Accepted\nRejected',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Accepted',NULL,NULL,NULL,NULL,NULL),('FL10674','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',1,'reference_name','Reference Name','reference_name','Data','Data',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10675','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',2,'bom_detail_no','BOM Detail No','bom_detail_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10676','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',3,'main_item_code','Item Code','main_item_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10677','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',4,'rm_item_code','Raw Material Item Code','rm_item_code','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10678','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',5,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10679','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',6,'required_qty','Required Qty','required_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10680','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',7,'consumed_qty','Consumed Qty','consumed_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10681','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',8,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10682','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',9,'conversion_factor','Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10683','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',10,'amount','Amount','amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10684','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',11,'stock_uom','Stock Uom','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10685','2012-05-08 11:38:40','2012-05-08 11:38:40','Administrator','wasim@webnotestech.com',0,'Purchase Receipt Item Supplied','fields','DocType',12,'current_stock','Current Stock','current_stock','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10752','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10753','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10754','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',3,'description','Description','description','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10755','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',4,'start_date','Start Date','start_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10756','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',5,'end_date','End Date','end_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10757','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',6,'periodicity','Periodicity','periodicity','Select','Select','\nWeekly\nMonthly\nQuarterly\nHalf Yearly\nYearly\nRandom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10758','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',7,'no_of_visits','No of Visits','no_of_visits','Int','Int',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10759','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',8,'incharge_name','Incharge Name','incharge_name','Link','Link','Sales Person',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10760','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',9,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10761','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Maintenance Schedule Item','fields','DocType',10,'prevdoc_docname','Against Docname','prevdoc_docname','Data','Data',NULL,1,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL10762','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',1,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10763','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',2,'service_person','Service Person','service_person','Link','Link','Sales Person',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10764','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',3,'work_done','Work Done','work_done','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10765','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',4,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10766','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',5,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10767','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',6,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10768','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',7,'prevdoc_docname','Against Document No','prevdoc_docname','Data','Data',NULL,NULL,0,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10769','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',8,'prevdoc_detail_docname','Against Document Detail No','prevdoc_detail_docname','Data','Data',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10770','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit Purpose','fields','DocType',9,'prevdoc_doctype','Document Type','prevdoc_doctype','Data','Data',NULL,NULL,0,1,1,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10771','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Support Ticket Response','fields','DocType',1,'mail','Mail',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10772','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Support Ticket Response','fields','DocType',2,'from_email','From Email',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10773','2012-05-08 11:38:41','2012-05-08 11:38:41','Administrator','Administrator',0,'Support Ticket Response','fields','DocType',3,'content_type','Content Type',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10830','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10831','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL10832','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',3,'scheduled_date','Scheduled Date','scheduled_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10833','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',4,'actual_date','Actual Date','actual_date','Date','Date',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10834','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',5,'incharge_name','Incharge Name','incharge_name','Link','Link','Sales Person',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10835','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Maintenance Schedule Detail','fields','DocType',6,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,'160px',NULL,NULL,NULL,NULL,1,NULL),('FL10836','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',1,'rule_field','Field','rule_field','Select','Select','[]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10837','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',2,'operator','Operator','operator','Select','Select','\nequal\nnot equal\ngreater than\ngreater than equal\nless than\nless than equal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10838','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',3,'value','Value','value','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10839','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',4,'comparing_field','Field from other forms','comparing_field','Select','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10840','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',5,'message','Message when Cond. False','message','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10841','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule Detail','fields','DocType',6,'exception','Raise Exception','exception','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10842','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Supplier Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10843','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Supplier Type','fields','DocType',2,'supplier_type','Supplier Type','supplier_type','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10844','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Naming Series Options','fields','DocType',1,'doc_type','Doc Type','doc_type','Data','Data',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10845','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Naming Series Options','fields','DocType',2,'series_options','Series Options','series_options','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10879','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',1,'period_name','Period Name','period_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10880','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',2,'start_date','Start Date','start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10881','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',3,'end_date','End Date','end_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10882','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',4,'period_type','Period Type','period_type','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10883','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','nabin@webnotestech.com',0,'Period','fields','DocType',5,'fiscal_year','Fiscal Year','fiscal_year','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10884','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',1,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10885','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',2,'transaction','Transaction','transaction','Select','Select','\nDelivery Note\nPurchase Invoice\nPurchase Order\nPurchase Receipt\nQuotation\nSales Invoice\nSales Order\nStock Entry\nExpense Claim\nAppraisal',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10886','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',3,'based_on','Based On','based_on','Select','Select','\nGrand Total\nAverage Discount\nCustomerwise Discount\nItemwise Discount\nTotal Claimed Amount\nNot Applicable',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10887','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',4,'master_name','Customer / Item Name','master_name','Link','Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10888','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',5,'system_role','Applicable To (Role)','system_role','Link','Link','Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10889','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',6,'system_user','Applicable To (User)','system_user','Link','Link','Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10890','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',7,'to_emp','Applicable To (Employee)','to_emp','Link','Link','Employee',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'This will be used for setting rule in HR module','White:FFF',NULL,NULL,NULL),('FL10891','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',8,'to_designation','Applicable To (Designation)','to_designation','Link','Link','Designation',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'This will be used for setting rule in HR module','White:FFF',NULL,NULL,NULL),('FL10892','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',9,'approving_role','Approving Role','approving_role','Link','Link','Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10893','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',10,'approving_user','Approving User','approving_user','Link','Link','Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10894','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',11,'value','Above Value','value','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,NULL,NULL),('FL10895','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Authorization Rule','fields','DocType',12,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10896','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Contact Control','fields','DocType',1,'header','Header',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10897','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Contact Control','fields','DocType',2,'customer_intro','Customer Intro',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10898','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Contact Control','fields','DocType',3,'supplier_intro','Supplier Intro',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10928','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Country','fields','DocType',1,'country_name','Country Name','country_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10932','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',1,'rule_definition','Rule Definition',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10933','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',2,'intro_html','Intro HTML',NULL,'HTML','HTML','Select form for which you want to define rules,set priority & status.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10934','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',3,'rule_name','Rule Name','rule_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10935','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',4,'rule_status','Rule Status','rule_status','Select','Select','\nActive\nInactive',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10936','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',5,'select_form','Select Form','select_form','Link','Link','DocType',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL10937','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',6,'rule_priority','Rule Priority','rule_priority','Int','Int',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10938','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',7,'define_rule','Define Rule',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10939','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',8,'workflow_rule_details','Workflow Rule Details','workflow_rule_details','Table','Table','Workflow Rule Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10940','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',9,'extra_condition','Extra Condition','extra_condition','Code','Code',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10941','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',10,'action_detail','Action Detail',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10942','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',11,'action_html','Action html',NULL,'HTML','HTML','Specify actions to be taken when conditions hold satisfied',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10943','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',12,'workflow_action_details','Workflow Action Details','workflow_action_details','Table','Table','Workflow Action Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10944','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',13,'reject_html','Reject HTML',NULL,'HTML','HTML','If any condition holds false the following message will be displayed . If you wish to stop rule engine when condition holds false then set \'Raise Exception\' as \'Yes\' otherwise keep this field blank or \'No\'.',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10945','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',14,'message','Enter message','message','Text','Text',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10946','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','fields','DocType',15,'raise_exception','Raise Exception','raise_exception','Select','Select','\nYes\nNo',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL10976','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Warehouse Type','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL10977','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Warehouse Type','fields','DocType',2,'warehouse_type','Warehouse Type','warehouse_type','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL10978','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Action Detail','fields','DocType',1,'action_field','Field','action_field','Select','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL10979','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','swarnalata@webnotestech.com',0,'Workflow Action Detail','fields','DocType',2,'action_value','Value','action_value','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11009','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'UOM','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11010','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'UOM','fields','DocType',2,'uom_details','UOM Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11011','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'UOM','fields','DocType',3,'uom_name','UOM Name','uom_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11012','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Target Detail','fields','DocType',1,'item_group','Item Group','item_group','Link','Link','Item Group',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11013','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Target Detail','fields','DocType',2,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11014','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Target Detail','fields','DocType',3,'target_qty','Target Qty','target_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11015','2012-05-08 11:38:43','2012-05-08 11:38:43','Administrator','Administrator',0,'Target Detail','fields','DocType',4,'target_amount','Target Amount','target_amount','Currency','Currency',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11084','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'State','fields','DocType',1,'state_name','State Name','state_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11085','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'State','fields','DocType',2,'country','Country','country','Select','Select','link:Country',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11122','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Print Heading','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11123','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Print Heading','fields','DocType',2,'print_heading','Print Heading','print_heading','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11124','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Print Heading','fields','DocType',3,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11131','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Series Detail','fields','DocType',1,'series','Series','series','Read Only','Read Only',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11132','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Series Detail','fields','DocType',2,'remove','Remove','remove','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11133','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Parameter','fields','DocType',1,'parameter','Parameter',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11134','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Parameter','fields','DocType',2,'value','Value',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11135','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Brand','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11136','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Brand','fields','DocType',2,'brand','Brand Name','brand','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11137','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Brand','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11138','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Quotation Lost Reason','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11139','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'Quotation Lost Reason','fields','DocType',2,'order_lost_reason','Quotation Lost Reason','order_lost_reason','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11140','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11141','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',2,'sms_gateway_url','SMS Gateway URL',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Eg. smsgateway.com/api/send_sms.cgi','White:FFF',NULL,NULL,NULL),('FL11142','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',3,'message_parameter','Message Parameter',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter url parameter for message','White:FFF',NULL,NULL,NULL),('FL11143','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',4,'receiver_parameter','Receiver Parameter',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter url parameter for receiver nos','White:FFF',NULL,NULL,NULL),('FL11144','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',5,'static_parameters','Static Parameters',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11145','2012-05-08 11:38:44','2012-05-08 11:38:44','Administrator','Administrator',0,'SMS Settings','fields','DocType',6,'static_parameter_details','SMS Parameters',NULL,'Table',NULL,'SMS Parameter',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)','White:FFF',NULL,NULL,NULL),('FL11155','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'Market Segment','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11156','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'Market Segment','fields','DocType',2,'segment_name','Segment Name','segment_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11157','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'Market Segment','fields','DocType',3,'details','Details','details','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11209','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',1,'select_sales_orders','Select Sales Orders',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11210','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11211','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',3,'from_date','From Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11212','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',4,'to_date','To Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11213','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',5,'fg_item','FG Item',NULL,'Link',NULL,'Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11214','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11215','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',7,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11216','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',8,'company','Company',NULL,'Link',NULL,'Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11217','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',9,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11218','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',10,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11219','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',11,'get_sales_orders','Get Sales Orders',NULL,'Button',NULL,'get_open_sales_orders',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11220','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',12,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11221','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',13,'clear_so_table','Clear SO Table',NULL,'Button',NULL,'clear_so_table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11222','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',14,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11223','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',15,'pp_so_details','Production Plan Sales Orders',NULL,'Table',NULL,'Production Plan Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Sales Orders from which you want to create Production Orders. You can get sales orders based on above criteria.',NULL,NULL,NULL,NULL),('FL11224','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',16,'items','Items',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11225','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',17,'get_items_from_so','Get Items from SO',NULL,'Button',NULL,'get_items_from_so',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11226','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',18,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11227','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',19,'clear_item_table','Clear Item Table',NULL,'Button',NULL,'clear_item_table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11228','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',20,'section_break2',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11229','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',21,'pp_details','Production Plan Items',NULL,'Table',NULL,'Production Plan Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter items and planned qty for which you want to raise production orders or download raw materials for analysis. You can pull items (which are pending to deliver) from SO as well by adding SO in plan.',NULL,NULL,NULL,NULL),('FL11230','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',22,'consider_sa_items','Consider Sub Assemblies as Raw Material',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if stock is maintained and tracked for sub assembly items.','White:FFF',NULL,NULL,NULL),('FL11231','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',23,'section_break3',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11232','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',24,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11233','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',25,'raise_production_order','Raise Production Order',NULL,'Button',NULL,'raise_production_order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11234','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',26,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11235','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','jai@webnotestech.com',0,'Production Planning Tool','fields','DocType',27,'download_raw_material','Download Raw Material',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11236','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',1,'operation_no','Operation No','operation_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11237','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11238','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',3,'bom_no','BOM No','bom_no','Link','Link','BOM',1,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL11239','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',4,'qty','Qty','qty','Float','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11240','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',5,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11241','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',6,'rate','Rate',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11242','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',7,'amount','Amount','amount_as_per_mar','Float','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11243','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',8,'scrap','Scrap %','scrap','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11244','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',9,'description','Item Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11245','2012-05-08 11:38:45','2012-05-08 11:38:45','Administrator','Administrator',0,'BOM Item','fields','DocType',10,'qty_consumed_per_unit','Qty Consumed Per Unit','qty_consumed_per_unit','Float','Float',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11265','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',1,'operation_no','Operation No','operation_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11266','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',2,'opn_description','Opn Description','opn_description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11267','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',3,'workstation','Workstation','workstation','Link','Link','Workstation',NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11268','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',4,'hour_rate','Hour Rate','hour_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11269','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',5,'time_in_mins','Operation Time (mins)','time_in_mins','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11270','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'BOM Operation','fields','DocType',6,'operating_cost','Operating Cost','operating_cost','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11271','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11272','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',2,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11273','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',3,'qty','Qty','qty','Float','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11274','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',4,'rate','Rate','standard_rate','Float','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11275','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',5,'amount','Amount','amount_as_per_sr','Float','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11276','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',6,'stock_uom','Stock UOM','stock_uom','Link','Link','UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11277','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',7,'parent_bom','Parent BOM','parent_bom','Link','Link',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'250px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11278','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',8,'mat_detail_no','Mat Detail No',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11279','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','jai@webnotestech.com',0,'BOM Explosion Item','fields','DocType',9,'qty_consumed_per_unit','Qty Consumed Per Unit',NULL,'Float',NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11280','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',1,'sales_order','Sales Order','prevdoc_docname','Link','Data','Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11281','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',2,'sales_order_date','Sales Order Date','document_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11282','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',3,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11283','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',4,'grand_total','Grand Total',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11284','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Sales Order','fields','DocType',5,'include_in_plan','Include In Plan','include_in_plan','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11285','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11286','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',2,'workstation_name','Workstation Name','workstation_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11287','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',3,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11288','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',4,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11289','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',5,'capacity','Capacity','capacity','Data','Data',NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11290','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',6,'capacity_units','Capacity Units','capacity_units','Select','Select','\nUnits/Shifts\nUnits/Hour',NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11291','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',7,'hour_rate_labour','Hour Rate Labour','hour_rate_labour','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11292','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',8,'over_heads','Over Heads',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11293','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',9,'hour_rate_electricity','Hour Rate Electricity','hour_rate_electricity','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11294','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',10,'hour_rate_consumable','Hour Rate Consumable','hour_rate_consumable','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11295','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',11,'hour_rate_rent','Hour Rate Rent','hour_rate_rent','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11296','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',12,'overhead','Overhead','overhead','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11297','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',13,'hour_rate_section_break','Hour Rate',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11298','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Workstation','fields','DocType',14,'hour_rate','Hour Rate','hour_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11299','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',1,'sales_order','Sales Order','source_docname','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11300','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11301','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',3,'bom_no','BOM No','bom_no','Link','Link','BOM',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11302','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',4,'so_pending_qty','SO Pending Qty','prevdoc_reqd_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11303','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',5,'planned_qty','Planned Qty','planned_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11304','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',6,'stock_uom','UOM','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,'80px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11305','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',7,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11306','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',8,'parent_packing_item','Parent Packing Item','parent_item','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11307','2012-05-08 11:38:46','2012-05-08 11:38:46','Administrator','Administrator',0,'Production Plan Item','fields','DocType',9,'is_pro_created','Is PRO Created','pro_created','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11344','2012-05-08 11:38:47','2012-05-08 11:38:47','Administrator','Administrator',0,'Related Page','fields','DocType',1,'page','Page',NULL,'Link',NULL,'Page',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11384','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','fields','DocType',1,'dt','DocType','dt','Link','Link','DocType',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11385','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','fields','DocType',2,'script_type','Script Type','script_type','Select','Select','Client\nServer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,'White:FFF',NULL,NULL,NULL),('FL11386','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','fields','DocType',3,'script','Script','script','Code','Code','Script',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11477','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',1,'item_code','Item','item_code','Link','Link','Item',1,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11478','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL11479','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11480','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',4,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11481','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',5,'import_ref_rate','Ref Rate ',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11482','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',6,'discount_rate','Discount %',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11483','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',7,'import_rate','Rate ','import_rate','Currency','Currency',NULL,NULL,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11484','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',8,'import_amount','Amount','import_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11485','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',9,'purchase_ref_rate','Ref Rate *',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11486','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',10,'rate','Rate *(Default Curr.)','rate','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11487','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',11,'amount','Amount (Default Curr.)','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11488','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',12,'expense_head','Expense Head','expense_head','Link','Link','Account',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'120px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11489','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',13,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'120px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11490','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',14,'project_name','Project Name',NULL,'Link',NULL,'Project',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11491','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',15,'uom','UOM',NULL,'Link',NULL,'UOM',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11492','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',16,'brand','Brand','brand','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11493','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',17,'item_group','Item Group','item_group','Link','Link','Item Group',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11494','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',18,'purchase_order','Pur Order','purchase_order','Link','Link','Purchase Order',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11495','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',19,'po_detail','Purchase Order Item','po_detail','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11496','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',20,'purchase_receipt','Pur Receipt','purchase_receipt','Link','Link','Purchase Receipt',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11497','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',21,'pr_detail','PR Detail','pr_detail','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11498','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',22,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges',NULL,NULL,NULL,NULL),('FL11499','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Invoice Item','fields','DocType',23,'page_break','Page Break',NULL,'Check',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11500','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,1,NULL),('FL11501','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',2,'item_name','Item Name','item_name','Data','Data',NULL,0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL11502','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11503','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',4,'received_qty','Recd Quantity','received_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11504','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',5,'qty','Accepted Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11505','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',6,'rejected_qty','Rejected Quantity','rejected_qty','Currency','Currency',NULL,0,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL11506','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',7,'import_ref_rate','Ref Rate ',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11507','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',8,'discount_rate','Discount %',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11508','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',9,'import_rate','Rate','import_rate','Currency','Currency',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL11509','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',10,'import_amount','Amount','import_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11510','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',11,'purchase_ref_rate','Ref Rate *',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11511','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',12,'purchase_rate','Rate *(Default Curr.)','purchase_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL11512','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',13,'amount','Amount (Default Curr.)','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11513','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',14,'warehouse','Accepted Warehouse','warehouse','Link','Link','Warehouse',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11514','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',15,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11515','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',16,'conversion_factor','Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11516','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',17,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11517','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',18,'serial_no','Serial No','serial_no','Text','Text',NULL,NULL,NULL,0,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11518','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',19,'rejected_serial_no','Rejected Serial No',NULL,'Text',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11519','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',20,'batch_no','Batch No','batch_no','Link','Link','Batch',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11520','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',21,'rejected_warehouse','Rejected Warehouse','rejected_warehouse','Link','Link','Warehouse',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11521','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',22,'schedule_date','Schedule date','schedule_date','Date','Date',NULL,NULL,NULL,1,0,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11522','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',23,'project_name','Project Name',NULL,'Link',NULL,'Project',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11523','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',24,'qa_no','QA No','qa_no','Link','Link','Quality Inspection',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11524','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',25,'brand','Brand','brand','Link','Link','Brand',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11525','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',26,'item_group','Item Group','item_group','Link','Link','Item Group',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11526','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',27,'stock_qty','Stock Qty','stock_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11527','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',28,'prevdoc_doctype','Prevdoc Doctype','prevdoc_doctype','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11528','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',29,'prevdoc_docname','PO No','prevdoc_docname','Link','Link','Purchase Order',1,0,1,NULL,0,0,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL11529','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',30,'prevdoc_date','PO Date','prevdoc_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11530','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',31,'rm_supp_cost','Raw Materials Supplied Cost','rm_supp_cost','Currency','Currency',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,2,'150px',NULL,NULL,NULL,NULL,0,NULL),('FL11531','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',32,'item_tax_amount','Item Tax Amount','item_tax_amount','Currency','Currency',NULL,1,1,1,NULL,0,1,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11532','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',33,'prevdoc_detail_docname','Purchase Order Item No','prevdoc_detail_docname','Data','Data',NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL11533','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',34,'billed_qty','Billed Quantity','billed_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL11534','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',35,'valuation_rate','Valuation Rate','valuation_rate','Currency','Currency',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'80px',NULL,NULL,'White:FFF',NULL,0,NULL),('FL11535','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',36,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges','White:FFF',NULL,0,NULL),('FL11536','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Purchase Receipt Item','fields','DocType',37,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11537','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',1,'criteria_name','Criteria Name','criteria_name','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11538','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',2,'disabled','Disabled','disabled','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11539','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',3,'module','Module','module','Link','Link','Module Def',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11540','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',4,'standard','Standard','standard','Select','Select','\nYes\nNo',1,NULL,NULL,NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11541','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',5,'doc_type','Doc Type','doc_type','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11542','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',6,'filters','Filters','filters','Text','Text',NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11543','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',7,'columns','Columns','columns','Text','Text',NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11544','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',8,'parent_doc_type','Parent Doc Type','parent_doc_type','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11545','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',9,'add_cond','Additional Conditions','add_cond','Text','Text',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11546','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',10,'add_col','Additional Columns','add_col','Text','Text',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11547','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',11,'add_tab','Additional Tables','add_tab','Text','Text',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11548','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',12,'dis_filters','Disabled Filters','dis_filters','Text','Text',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11549','2012-07-12 19:25:50','2012-07-12 19:25:50','Administrator','Administrator',0,'Search Criteria','fields','DocType',13,'group_by','Group By','group_by','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11550','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',14,'sort_by','Sort By','sort_by','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11551','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',15,'sort_order','Sort Order','sort_order','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11552','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',16,'page_len','Page Len','page_len','Int','Int',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11553','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',17,'client_script','Client Script',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11554','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',18,'report_script','Report Script','report_script','Code','Code',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11555','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',19,'server_script_section_break','Server Script',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11556','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',20,'server_script','Report Server Script','server_script','Code','Code',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11557','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',21,'overload_query','Overload Query',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11558','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','fields','DocType',22,'custom_query','Custom Query','custom_query','Code','Code',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11559','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','fields','DocType',1,'json','JSON',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11560','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','fields','DocType',2,'ref_doctype','Ref DocType',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11701','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',1,'address_details','Address Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11702','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',2,'address_type','Address Type',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'e.g. Office, Billing, Shipping','White:FFF',NULL,NULL,NULL),('FL11703','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',3,'address_line1','Address Line1',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11704','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',4,'address_line2','Address Line2',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11705','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',5,'city','City/Town',NULL,'Data',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11706','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',6,'pincode','Pincode',NULL,'Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11707','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',7,'country','Country',NULL,'Select',NULL,'link:Country',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11708','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',8,'state','State',NULL,'Data',NULL,'Suggest',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11709','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',9,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11710','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',10,'phone','Phone',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11711','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',11,'email_id','Email Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11712','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',12,'fax','Fax',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11713','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',13,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.supplier && !doc.sales_partner',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11714','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',14,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.supplier && !doc.sales_partner',1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11715','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',15,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.customer && !doc.sales_partner',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11716','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',16,'supplier_name','Supplier Name',NULL,'Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.customer && !doc.sales_partner',1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11717','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',17,'sales_partner','Sales Partner',NULL,'Link',NULL,'Sales Partner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.customer && !doc.supplier',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11718','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',18,'is_primary_address','Is Primary Address',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0','Check to make primary address','White:FFF',NULL,NULL,NULL),('FL11719','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',19,'is_shipping_address','Is Shipping Address',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0','Check to make Shipping Address','White:FFF',NULL,NULL,NULL),('FL11720','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','fields','DocType',20,'trash_reason','Trash Reason',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11738','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','fields','DocType',1,'doc_type','DocType',NULL,'Link',NULL,'DocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11739','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','fields','DocType',2,'doc_name','DocName',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL11740','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','fields','DocType',3,'html','HTML',NULL,'Long Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11741','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',1,'sb0','Title and Style',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11742','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',2,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Title / headline of your page','White:FFF',NULL,NULL,NULL),('FL11743','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',3,'page_name','Page Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Page url name (auto-generated) ','White:FFF',NULL,NULL,NULL),('FL11744','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',4,'cb1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11745','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',5,'layout','Layout',NULL,'Select',NULL,'Single column\nTwo column\nTwo column with header',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11746','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',6,'sb1','Content',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Page content','White:FFF',NULL,NULL,NULL),('FL11747','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',7,'head_section','Head Section',NULL,'Text',NULL,'Markdown',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Section that will span 2 columns, formatted as markdown. If no head, leave blank. If you are displaying a banner, it must be 860px','White:FFF',NULL,NULL,NULL),('FL11748','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',8,'main_section','Main Section',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Content in markdown format that appears on the main side of your page','White:FFF',NULL,NULL,NULL),('FL11749','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',9,'side_section','Side Section',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Content in markdown format that appears on the right side','White:FFF',NULL,NULL,NULL),('FL11750','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',10,'sb2','More',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Link to other pages in the side bar and next section','White:FFF',NULL,NULL,NULL),('FL11751','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',11,'text_align','Text Align',NULL,'Select',NULL,'Left\nCenter\nRight',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11752','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',12,'insert_code','Insert Code',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add code as <script>','White:FFF',NULL,NULL,NULL),('FL11753','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',13,'javascript','Javascript',NULL,'Code',NULL,'Javascript',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11754','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',14,'insert_style','Insert Style',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11755','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',15,'css','CSS',NULL,'Code',NULL,'CSS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11756','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Page','fields','DocType',16,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11763','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',1,'top_bar','Top Bar',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11764','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',2,'title_prefix','Title Prefix',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.','White:FFF',NULL,NULL,NULL),('FL11765','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',3,'home_page','Home Page',NULL,'Link',NULL,'Web Page',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The \"Web Page\" that is the website home page','White:FFF',NULL,NULL,NULL),('FL11766','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',4,'default_product_category','Default Product Category',NULL,'Link',NULL,'Item Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11767','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',5,'brand_html','Brand HTML',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Brand is what appears on the top-right of the toolbar. If it is an image, make sure it\nhas a transparent background and use the <img /> tag','White:FFF',NULL,NULL,NULL),('FL11768','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',6,'top_bar_items','Top Bar Items',NULL,'Table',NULL,'Top Bar Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11769','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',7,'footer','Footer',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11770','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',8,'address','Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11771','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',9,'copyright','Copyright',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11772','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',10,'footer_items','Footer Items',NULL,'Table',NULL,'Top Bar Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11773','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',11,'misc_section','Misc',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11774','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',12,'favicon','FavIcon',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]','White:FFF',NULL,NULL,NULL),('FL11775','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',13,'subdomain','Subdomain',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,'Sub-domain provided by erpnext.com',NULL,NULL,NULL,NULL),('FL11776','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',14,'domain_list','Domain List',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter domain names associated to this website, each on a new line',NULL,NULL,NULL,NULL),('FL11777','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',15,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11778','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',16,'analytics','Startup',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11779','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Website Settings','fields','DocType',17,'startup_code','Startup Code',NULL,'Code',NULL,'Javascript',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Bind events on startup and page change','White:FFF',NULL,NULL,NULL),('FL11780','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',1,'item','Item',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11781','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11782','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',3,'item_code','Item Code','item_code','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Item will be saved by this name in the data base.','White:FFF',NULL,0,NULL),('FL11783','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',4,'item_name','Item Name','item_name','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11784','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',5,'item_group','Item Group','item_group','Link','Link','Item Group',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Manage Item Groups','White:FFF',NULL,1,NULL),('FL11785','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',6,'brand','Brand','brand','Link','Link','Brand',NULL,0,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11786','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',7,'barcode','Barcode',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11787','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',8,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11788','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',9,'description','Description','description','Text','Text',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,0,NULL),('FL11789','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',10,'description_html','Description HTML',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11790','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',11,'add_image','Add Image',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Generates HTML to include image (1st attachment) in the description','White:FFF',NULL,NULL,NULL),('FL11791','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',12,'inventory','Inventory',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11792','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',13,'stock_uom','Default UoM','stock_uom','Link','Link','UOM',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter unit of measurement in which stock of this item is maintained in your warehouse.','White:FFF',NULL,NULL,NULL),('FL11793','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',14,'is_stock_item','Is Stock Item','is_stock_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Yes','Select \"Yes\" if you are maintaining stock of this item in your Inventory.','White:FFF',NULL,NULL,NULL),('FL11794','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',15,'valuation_method','Valuation Method','valuation_method','Select','Select','\nFIFO\nMoving Average',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11795','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',16,'default_warehouse','Default Warehouse','default_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11796','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',17,'tolerance','Allowance Percent','tolerance','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Percentage variation in quantity to be allowed while receiving or delivering this item.','White:FFF',NULL,NULL,NULL),('FL11797','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',18,'re_order_level','Re-Order Level','re_order_level','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The system will generate auto indent when stock reaches re-order level.','White:FFF',NULL,NULL,NULL),('FL11798','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',19,'re_order_qty','Re-Order Qty',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'The system will create auto indent of re-order quantity when stock reaches re-order level','White:FFF',NULL,NULL,NULL),('FL11799','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',20,'email_notify','Send Email Notification when stock reaches re-order level',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11800','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',21,'min_order_qty','Minimum Order Qty','min_order_qty','Currency','Currency',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00','You can enter the minimum quantity of this item to be ordered.','White:FFF',NULL,NULL,NULL),('FL11801','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',22,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11802','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',23,'is_asset_item','Is Asset Item','is_asset_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if this item is used for some internal purpose in your company.','White:FFF',NULL,NULL,NULL),('FL11803','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',24,'has_batch_no','Has Batch No','has_batch_no','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL11804','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',25,'has_serial_no','Has Serial No','has_serial_no','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Selecting \"Yes\" will give a unique identity to each entity of this item which can be viewed in the Serial No master.','White:FFF',NULL,1,NULL),('FL11805','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',26,'warranty_period','Warranty Period (in days)','warranty_period','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11806','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',27,'end_of_life','End of Life','end_of_life','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11807','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',28,'net_weight','Net Weight',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Net Weight of each Item',NULL,NULL,NULL,NULL),('FL11808','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',29,'weight_uom','Weight UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11809','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',30,'purchase_details','Purchase Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11810','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',31,'is_purchase_item','Is Purchase Item','is_purchase_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Yes','Selecting \"Yes\" will allow this item to appear in Purchase Order , Purchase Receipt.','White:FFF',NULL,NULL,NULL),('FL11811','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',32,'lead_time_days','Lead Time Days','lead_time_days','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Lead Time days is number of days by which this item is expected in your warehouse. This days is fetched in Purchase Request when you select this item.','White:FFF',NULL,NULL,NULL),('FL11812','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',33,'purchase_account','Default Expense Account','purchase_account','Link','Link','Account',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Default Purchase Account in which cost of the item will be debited.','White:FFF',NULL,NULL,NULL),('FL11813','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',34,'cost_center','Default Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Default Cost Center for tracking expense for this item.','White:FFF',NULL,NULL,NULL),('FL11814','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',35,'buying_cost','Buying Cost','buying_cost','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Buying Cost will be updated from Purchase Orders and Purchase Receipts.
    The buying cost will calculated by moving average method.','White:FFF',NULL,NULL,NULL),('FL11815','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',36,'last_purchase_rate','Last Purchase Rate','last_purchase_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11816','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',37,'standard_rate','Standard Rate','standard_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11817','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',38,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11818','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',39,'uom_conversion_details','UOM Conversion Details','uom_conversion_details','Table','Table','UOM Conversion Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11819','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',40,'manufacturer','Manufacturer',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11820','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',41,'manufacturer_part_no','Manufacturer Part Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11821','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',42,'item_supplier_details','Item Supplier Details',NULL,'Table',NULL,'Item Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11822','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',43,'sales_details','Sales Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11823','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',44,'is_sales_item','Is Sales Item','is_sales_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Yes','Selecting \"Yes\" will allow this item to figure in Sales Order, Delivery Note','White:FFF',NULL,1,NULL),('FL11824','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',45,'is_service_item','Is Service Item','is_service_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if this item represents some work like training, designing, consulting etc.','White:FFF',NULL,1,NULL),('FL11825','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',46,'is_sample_item','Allow Samples','is_sample_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if this item is to be sent to a customer or received from a supplier as a sample. Delivery notes and Purchase Receipts will update stock levels but there will be no invoice against this item.','White:FFF',NULL,NULL,NULL),('FL11826','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',47,'max_discount','Max Discount (%)','max_discount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11827','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',48,'default_income_account','Default Income Account',NULL,'Link',NULL,'Account',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11828','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',49,'default_sales_cost_center','Cost Center',NULL,'Link',NULL,'Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11829','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',50,'sales_rate','Sales Rate','sales_rate','Currency','Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11830','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',51,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11831','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',52,'ref_rate_details','Item Prices','ref_rate_details','Table','Table','Item Price',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Create a price list from Price List master and enter standard ref rates against each of them. On selection of a price list in Quotation, Sales Order or Delivery Note, corresponding ref rate will be fetched for this item.','White:FFF',NULL,NULL,NULL),('FL11832','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',53,'item_customer_details','Customer Codes',NULL,'Table',NULL,'Item Customer Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes',NULL,NULL,NULL,NULL),('FL11833','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',54,'item_tax_section_break','Item Tax',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11834','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',55,'item_tax','Item Tax1','item_tax','Table','Table','Item Tax',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11835','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',56,'inspection_criteria','Inspection Criteria',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11836','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',57,'inspection_required','Inspection Required','inspection_required','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,'No',NULL,NULL,NULL,NULL,NULL),('FL11837','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',58,'item_specification_details','Item Quality Inspection Parameter','item_specification_details','Table','Table','Item Quality Inspection Parameter',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11838','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',59,'manufacturing','Manufacturing',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11839','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',60,'is_manufactured_item','Allow Bill of Materials','is_manufactured_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Selecting \"Yes\" will allow you to create Bill of Material showing raw material and operational costs incurred to manufacture this item.','White:FFF',NULL,NULL,NULL),('FL11840','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',61,'default_bom','Default BOM','default_bom','Link','Link','BOM',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11841','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',62,'is_pro_applicable','Allow Production Order','is_pro_applicable','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Selecting \"Yes\" will allow you to make a Production Order for this item.','White:FFF',NULL,NULL,NULL),('FL11842','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',63,'is_sub_contracted_item','Is Sub Contracted Item','is_sub_contracted_item','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" if you supply raw materials to your supplier to manufacture this item.','White:FFF',NULL,NULL,NULL),('FL11843','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',64,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11844','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',65,'customer_code','Customer Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11845','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',66,'website_section','Website',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11846','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',67,'show_in_website','Show in Website',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11847','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',68,'page_name','Page Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'website page link','White:FFF',NULL,NULL,NULL),('FL11848','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',69,'website_image','Image',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11849','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',70,'web_short_description','Short Description',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11850','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,'Item','fields','DocType',71,'web_long_description','Long Description',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11851','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',1,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11852','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',2,'published','Published',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11853','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',3,'content','Content',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11854','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',4,'page_name','Page Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11855','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',5,'email_sent','Email Sent',NULL,'Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11856','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','fields','DocType',6,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11857','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11858','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11859','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','\nPO',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL11860','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',4,'supplier','Supplier','supplier','Link','Link','Supplier',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Supplier (vendor) name as entered in supplier master','White:FFF',NULL,1,NULL),('FL11861','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',5,'supplier_name','Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11862','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11863','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11864','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11865','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11866','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',10,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11867','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',11,'transaction_date','Purchase Order Date','transaction_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'The date at which current entry is made in system.','White:FFF',NULL,1,NULL),('FL11868','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',12,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11869','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',13,'po_details','Purchase Order Items','po_details','Table','Table','Purchase Order Item',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11870','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',14,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11871','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',15,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11872','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',16,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11873','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',17,'net_total_import','Net Total (Import)','net_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11874','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',18,'get_last_purchase_rate','Get Last Purchase Rate',NULL,'Button','Button',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11875','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',19,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11876','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',20,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11877','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',21,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Supplier\'s currency','White:FFF',NULL,NULL,NULL),('FL11878','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',22,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,0,1,NULL,1,1,NULL,'Client',NULL,0,NULL,'1','Rate at which supplier\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL11879','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',23,'indent_no','Select Purchase Request','indent_no','Link','Link','Purchase Request',NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'You can make a purchase order from multiple Purchase Requests. Select Purchase Requests one by one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL11880','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',24,'get_items','Get Items',NULL,'Button','Button','get_indent_details',NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11881','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',25,'supplier_quotation','Select Supplier Quotation',NULL,'Link',NULL,'Supplier Quotation',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'You can make a purchase order from multiple Supplier Quotations. Select Supplier Quotations one by one and click on the button below.',NULL,NULL,NULL,NULL),('FL11882','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',26,'get_supplier_quotation_items','Get Items',NULL,'Button',NULL,'get_supplier_quotation_items',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11883','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',27,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11884','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',28,'purchase_other_charges','Purchase Taxes and Charges','purchase_other_charges','Link','Link','Purchase Taxes and Charges Master',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL11885','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',29,'get_tax_detail','Get Tax Detail',NULL,'Button','Button','get_purchase_tax_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11886','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',30,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11887','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',31,'calculate_tax','Calculate Tax',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11888','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',32,'tax_calculation','Tax Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11889','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',33,'total_tax','Total Tax*','total_tax','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11890','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',34,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11891','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',35,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11892','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',36,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11893','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',37,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Purchase Order.','White:FFF',NULL,NULL,NULL),('FL11894','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',38,'other_charges_added','Taxes and Charges Added','other_charges_added','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11895','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',39,'other_charges_deducted','Taxes and Charges Deducted','other_charges_deducted','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11896','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',40,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11897','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',41,'grand_total_import','Grand Total (Import)','grand_total_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11898','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',42,'in_words_import','In Words(Import)','in_words_import','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11899','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',43,'other_charges_added_import','Taxes and Charges Added (Import)','other_charges_added_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11900','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',44,'other_charges_deducted_import','Taxes and Charges Deducted (Import)','other_charges_deducted_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11901','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',45,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11902','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',46,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11903','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',47,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11904','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',48,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11905','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',49,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11906','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Purchase Order','fields','DocType',50,'terms','Terms and Conditions1','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11907','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',51,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11908','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',52,'supplier_address','Supplier Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11909','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',53,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11910','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',54,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11911','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',55,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL11912','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',56,'is_subcontracted','Is Subcontracted',NULL,'Select',NULL,'\nYes\nNo',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,NULL,NULL,NULL,NULL),('FL11913','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',57,'ref_sq','Ref SQ','ref_sq','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11914','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',58,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,0,1,0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11915','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',59,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL11916','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',60,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL11917','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',61,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11918','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',62,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11919','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',63,'instructions','Instructions','instructions','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11920','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',64,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11921','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',65,'per_received','% Received','per_received','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials received against this Purchase Order','White:FFF',NULL,NULL,NULL),('FL11922','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',66,'per_billed','% Billed','per_billed','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials billed against this Purchase Order.','White:FFF',NULL,NULL,NULL),('FL11923','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',67,'payment_terms','Payment Terms','payment_terms','Text','Text',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11924','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',68,'remarks','Remarks','remarks','Text','Text',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11925','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',69,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11926','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',70,'raw_material_details','Raw Material Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Required raw materials issued to the supplier for producing a sub - contracted item.','White:FFF',NULL,NULL,NULL),('FL11927','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',71,'po_raw_material_details','Purchase Order Items Supplied','po_raw_material_details','Table','Table','Purchase Order Item Supplied',NULL,NULL,1,NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11928','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Order','fields','DocType',72,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11929','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Enter items and their details which are falling short in your warehouse and for which you want your purchase department to raise a purchase order.','Enter items and their details for which you want your purchase department to raise a purchase order.','White:FFF',NULL,NULL,NULL),('FL11930','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',2,'naming_series','Series','naming_series','Select','Select','IDT',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL11931','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',3,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,1,NULL,NULL,NULL,1,1,NULL,'Client',NULL,0,'100px',NULL,'The date at which current entry is made in system.','White:FFF',NULL,1,NULL),('FL11932','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',4,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11933','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',5,'indent_details','Purchase Requisition Details','indent_details','Table','Table','Purchase Request Item',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11934','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',6,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11935','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',7,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11936','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',8,'sales_order_no','Sales Order No','sales_order_no','Link','Data','Sales Order',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'One or multiple Sales Order no which generated this Purchase Requisition','White:FFF',NULL,NULL,NULL),('FL11937','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',9,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11938','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',10,'pull_sales_order_details','Pull Sales Order Items',NULL,'Button',NULL,'pull_so_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11939','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',11,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Give additional details about the indent.','Filing in Additional Information about the Purchase Requisition will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL11940','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',12,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11941','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',13,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL11942','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',14,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL11943','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',15,'requested_by','Requested By','requested_by','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'Name of the entity who has requested for the Purchase Requisition','White:FFF',NULL,NULL,NULL),('FL11944','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',16,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'After cancelling the Purchase Requisition, a dialog box will ask you reason for cancellation which will be reflected in this field','White:FFF',NULL,NULL,NULL),('FL11945','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',17,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11946','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',18,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11947','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',19,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nCancelled',1,NULL,1,NULL,0,1,NULL,NULL,NULL,1,'100px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL11948','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',20,'per_ordered','% Ordered','per_ordered','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'% of materials ordered against this Purchase Requisition','White:FFF',NULL,NULL,NULL),('FL11949','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',21,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11950','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',22,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL11951','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',23,'remark','Remarks','remark','Small Text','Small Text',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL11952','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',24,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add Terms and Conditions for the Purchase Requisition. You can also prepare a Terms and Conditions Master and use the Template',NULL,NULL,NULL,NULL),('FL11953','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',25,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11954','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',26,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11955','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',27,'terms','Terms and Conditions Content','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11956','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Request','fields','DocType',28,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11957','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11958','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11959','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','BILL\nBILLJ',NULL,NULL,1,0,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL11960','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',4,'credit_to','Credit To','credit_to','Link','Link','Account',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'The account to which you will pay (have paid) the money to.',NULL,NULL,1,NULL),('FL11961','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',5,'supplier_name','Name','supplier_name','Text','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11962','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11963','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11964','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11965','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11966','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',10,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11967','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',11,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,'Today','The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL11968','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',12,'bill_no','Bill No','bill_no','Data','Data',NULL,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'If not applicable please enter: NA',NULL,NULL,1,NULL),('FL11969','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',13,'bill_date','Bill Date','bill_date','Date','Date',NULL,1,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL11970','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',14,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11971','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',15,'entries','Entries','entries','Table','Table','Purchase Invoice Item',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11972','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',16,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11973','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',17,'net_total','Net Total','net_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Will be calculated automatically when you enter the details',NULL,NULL,NULL,NULL),('FL11974','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',18,'net_total_import','Net Total (Import)','net_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11975','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',19,'recalculate','Recalculate',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11976','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',20,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11977','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',21,'conversion_rate','Bill Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'1','The rate at which Bill Currency is converted into company\'s base currency','White:FFF',NULL,NULL,NULL),('FL11978','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',22,'currency','Bill Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11979','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',23,'purchase_order_main','Purchase Order','purchase_order_main','Link','Link','Purchase Order',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select Items from Purchase Order','White:FFF',NULL,NULL,NULL),('FL11980','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',24,'purchase_receipt_main','Purchase Receipt','purchase_receipt_main','Link','Link','Purchase Receipt',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select Items from Purchase Receipt','White:FFF',NULL,NULL,NULL),('FL11981','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',25,'get_items','Get Items',NULL,'Button','Button','pull_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11982','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',26,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add / Edit Taxes and Charges','White:FFF',NULL,NULL,NULL),('FL11983','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',27,'purchase_other_charges','Purchase Taxes and Charges','purchase_other_charges','Link','Link','Purchase Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11984','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',28,'get_tax_detail','Get Tax Detail',NULL,'Button','Button','get_purchase_tax_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11985','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',29,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11986','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',30,'calculate_tax','Calculate Tax',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11987','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',31,'tax_calculation','Tax Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11988','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',32,'total_tax','Total Tax','total_tax','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11989','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',33,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11990','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',34,'supplier','Supplier','supplier','Link','Link','Supplier',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11991','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',35,'supplier_address','Supplier Address',NULL,'Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.supplier',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11992','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',36,'col_break23',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11993','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',37,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.supplier',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL11994','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',38,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11995','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',39,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL11996','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',40,'is_opening','Is Opening','is_opening','Select','Select','No\nYes',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,'No',NULL,'White:FFF',NULL,1,NULL),('FL11997','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',41,'aging_date','Aging Date','aging_date','Date','Date',NULL,0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11998','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',42,'amended_from','Amended From','amended_from','Link','Link','Purchase Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL11999','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',43,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12000','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',44,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12001','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',45,'due_date','Due Date','due_date','Date','Date',NULL,1,NULL,0,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12002','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',46,'mode_of_payment','Mode of Payment','mode_of_payment','Select','Select','link:Mode of Payment',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12003','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',47,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12004','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',48,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12005','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',49,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12006','2012-10-02 13:17:54','2012-10-02 13:17:54','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',50,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12007','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',51,'remarks','Remarks','remarks','Small Text','Text',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12008','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',52,'advances','Advances',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12009','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',53,'get_advances_paid','Get Advances Paid',NULL,'Button','Button','get_advances',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12010','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',54,'advance_allocation_details','Purchase Invoice Advances','advance_allocation_details','Table','Table','Purchase Invoice Advance',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12011','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',55,'tds','TDS',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12012','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',56,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12013','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',57,'tds_applicable','TDS Applicable','tds_applicable','Select','Select','\nYes\nNo',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12014','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',58,'tds_category','TDS Category','tds_category','Select','Select','link:TDS Category',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12015','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',59,'get_tds','Get TDS',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12016','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',60,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12017','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',61,'tax_code','TDS Account Head','tax_code','Link','Link','Account',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12018','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',62,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12019','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',63,'ded_amount','TDS Amount','ded_amount','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12020','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',64,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12021','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',65,'column_break7',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12022','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',66,'other_charges_added','Taxes and Charges Added','other_charges_added','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12023','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',67,'other_charges_deducted','Taxes and Charges Deducted','other_charges_deducted','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12024','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',68,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12025','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',69,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Purchase Invoice.','White:FFF',NULL,NULL,NULL),('FL12026','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',70,'total_tds_on_voucher','Total TDS On Voucher','total_tds_on_voucher','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12027','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',71,'tds_amount_on_advance','TDS Amount On Advance','tds_amount_on_advance','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12028','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',72,'column_break8',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12029','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',73,'total_amount_to_pay','Total Amount To Pay','total_amount_to_pay','Currency','Currency',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12030','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',74,'total_advance','Total Advance (Incl. TDS)','total_advance','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12031','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',75,'outstanding_amount','Outstanding Amount','outstanding_amount','Currency','Currency',NULL,1,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12032','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',76,'write_off_amount','Write Off Amount',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12033','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',77,'write_off_account','Write Off Account',NULL,'Link',NULL,'Account',NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:flt(doc.write_off_amount)!=0',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12034','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',78,'write_off_cost_center','Write Off Cost Center',NULL,'Link',NULL,'Account',NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:flt(doc.write_off_amount)!=0',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12035','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',79,'other_charges_added_import','Taxes and Charges Added (Import)','other_charges_added_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12036','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',80,'other_charges_deducted_import','Taxes and Charges Deducted (Import)','other_charges_deducted_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12037','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',81,'grand_total_import','Grand Total (Import)','grand_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12038','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',82,'in_words_import','In Words (Import)','in_words_import','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12039','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',83,'against_expense_account','Against Expense Account','against_expense_account','Small Text','Small Text',NULL,NULL,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12040','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Purchase Invoice','fields','DocType',84,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12041','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12042','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12043','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','SQTN',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12044','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',4,'supplier','Supplier','supplier','Link','Link','Supplier',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Supplier (vendor) name as entered in supplier master','White:FFF',NULL,1,NULL),('FL12045','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',5,'supplier_name','Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12046','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12047','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12048','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12049','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12050','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',10,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12051','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',11,'transaction_date','Quotation Date','transaction_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'The date at which current entry is made in system.','White:FFF',NULL,1,NULL),('FL12052','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',12,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12053','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',13,'quotation_items','Quotation Items','po_details','Table','Table','Supplier Quotation Item',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12054','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',14,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12055','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',15,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12056','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',16,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12057','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',17,'net_total_import','Net Total (Import)','net_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12058','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',18,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12059','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',19,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12060','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',20,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Supplier\'s currency','White:FFF',NULL,NULL,NULL),('FL12061','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',21,'conversion_rate','Conversion Rate','conversion_rate','Currency','Currency',NULL,NULL,0,1,NULL,1,1,NULL,'Client',NULL,0,NULL,'1','Rate at which supplier\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12062','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',22,'indent_no','Select Purchase Request','indent_no','Link','Link','Purchase Request',NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'You can make a purchase order from multiple Purchase Requests. Select Purchase Requests one by one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL12063','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',23,'get_items','Get Items',NULL,'Button','Button','get_indent_details',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12064','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',24,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12065','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',25,'purchase_other_charges','Purchase Taxes and Charges','purchase_other_charges','Link','Link','Purchase Taxes and Charges Master',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL12066','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',26,'get_tax_detail','Get Tax Detail',NULL,'Button','Button','get_purchase_tax_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12067','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',27,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12068','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',28,'calculate_tax','Calculate Tax',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12069','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',29,'tax_calculation','Tax Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12070','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',30,'total_tax','Total Tax*','total_tax','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12071','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',31,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12072','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',32,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12073','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',33,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12074','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',34,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Purchase Order.','White:FFF',NULL,NULL,NULL),('FL12075','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',35,'other_charges_added','Taxes and Charges Added','other_charges_added','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12076','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',36,'other_charges_deducted','Taxes and Charges Deducted','other_charges_deducted','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12077','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',37,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12078','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',38,'grand_total_import','Grand Total (Import)','grand_total_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12079','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',39,'in_words_import','In Words(Import)','in_words_import','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12080','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',40,'other_charges_added_import','Taxes and Charges Added (Import)','other_charges_added_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12081','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',41,'other_charges_deducted_import','Taxes and Charges Deducted (Import)','other_charges_deducted_import','Currency','Currency',NULL,NULL,NULL,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12082','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',42,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12083','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',43,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12084','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',44,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12085','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',45,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12086','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',46,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12087','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',47,'terms','Terms and Conditions1','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12088','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',48,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12089','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',49,'supplier_address','Supplier Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12090','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',50,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12091','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',51,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12092','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',52,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12093','2012-10-02 13:17:55','2012-10-02 13:17:55','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',53,'is_subcontracted','Is Subcontracted',NULL,'Select',NULL,'\nYes\nNo',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,NULL,NULL,NULL,NULL),('FL12094','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',54,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12095','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',55,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12096','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',56,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL12097','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',57,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12098','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',58,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12099','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',59,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12100','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',60,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12101','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','fields','DocType',61,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12102','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12103','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',2,'supplier_part_no','Supplier Part Number',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'If Supplier Part Number exists for given Item, it gets stored here','White:FFF',NULL,NULL,NULL),('FL12104','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',3,'item_name','Item Name','item_name','Data','Data',NULL,1,0,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12105','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12106','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',5,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'60px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12107','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',6,'import_ref_rate','Ref Rate ',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12108','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',7,'discount_rate','Discount %',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12109','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',8,'import_rate','Rate ','import_rate','Currency','Currency',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12110','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',9,'import_amount','Amount','import_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12111','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',10,'purchase_ref_rate','Ref Rate *',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12112','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',11,'purchase_rate','Rate (Default Curr.) *','purchase_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12113','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',12,'amount','Amount (Default Curr.)','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,'0.00',NULL,NULL,NULL,NULL,NULL),('FL12114','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',13,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,0,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12115','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',14,'project_name','Project Name',NULL,'Link',NULL,'Project',NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12116','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',15,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12117','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',16,'prevdoc_doctype','Prevdoc DocType','prevdoc_doctype','Data','Data',NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12118','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',17,'prevdoc_docname','Purchase Request No','prevdoc_docname','Link','Link','Purchase Request',1,0,1,NULL,NULL,0,NULL,NULL,NULL,1,'120px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL12119','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',18,'prevdoc_date','Purchase Request Date','prevdoc_date','Date','Date',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12120','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',19,'prevdoc_detail_docname','Purchase Request Detail No','prevdoc_detail_docname','Data','Data',NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12121','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',20,'brand','Brand','brand','Link','Link','Brand',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12122','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',21,'item_group','Item Group','item_group','Link','Link','Item Group',0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12123','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',22,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges','White:FFF',NULL,NULL,NULL),('FL12124','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation Item','fields','DocType',23,'page_break','Page Break','page_break','Check','Check',NULL,NULL,0,1,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12125','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',1,'schedule_date','Reqd By Date','schedule_date','Date','Date',NULL,1,0,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12126','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12127','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',3,'supplier_part_no','Supplier Part Number',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'If Supplier Part Number exists for given Item, it gets stored here','White:FFF',NULL,NULL,NULL),('FL12128','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',4,'item_name','Item Name','item_name','Data','Data',NULL,1,0,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12129','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',5,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12130','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',6,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'60px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12131','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',7,'import_ref_rate','Ref Rate ',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12132','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',8,'discount_rate','Discount %',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12133','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',9,'import_rate','Rate ','import_rate','Currency','Currency',NULL,NULL,0,0,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12134','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',10,'import_amount','Amount','import_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12135','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',11,'purchase_ref_rate','Ref Rate *',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12136','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',12,'purchase_rate','Rate (Default Curr.) *','purchase_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12137','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',13,'amount','Amount (Default Curr.)','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,'0.00',NULL,NULL,NULL,NULL,NULL),('FL12138','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',14,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,0,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12139','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',15,'project_name','Project Name',NULL,'Link',NULL,'Project',NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12140','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',16,'uom','UOM','uom','Link','Link','UOM',NULL,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12141','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',17,'conversion_factor','UOM Conversion Factor','conversion_factor','Currency','Currency',NULL,NULL,0,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12142','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',18,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,0,1,NULL,1,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12143','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',19,'prevdoc_doctype','Prevdoc DocType','prevdoc_doctype','Data','Data',NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12144','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',20,'prevdoc_docname','Purchase Requisition No','prevdoc_docname','Link','Link','Purchase Request',1,0,1,NULL,NULL,0,NULL,NULL,NULL,1,'120px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL12145','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',21,'prevdoc_date','Purchase Request Date','prevdoc_date','Date','Date',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12146','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',22,'prevdoc_detail_docname','Purchase Request Detail No','prevdoc_detail_docname','Data','Data',NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12147','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',23,'supplier_quotation','Supplier Quotation',NULL,'Link',NULL,'Supplier Quotation',0,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12148','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',24,'supplier_quotation_item','Supplier Quotation Item',NULL,'Link',NULL,'Supplier Quotation Item',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12149','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',25,'brand','Brand','brand','Link','Link','Brand',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12150','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',26,'item_group','Item Group','item_group','Link','Link','Item Group',0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12151','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',27,'stock_qty','Stock Qty','stock_qty','Currency','Currency',NULL,NULL,0,1,NULL,NULL,1,NULL,'Client',NULL,1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12152','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',28,'received_qty','Received Qty','received_qty','Currency','Currency',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12153','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',29,'billed_qty','Billed Quantity','billed_qty','Currency','Currency',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'0.00',NULL,NULL,NULL,NULL,NULL),('FL12154','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',30,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tax detail table fetched from item master as a string and stored in this field.\nUsed for Taxes and Charges','White:FFF',NULL,NULL,NULL),('FL12155','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Purchase Order Item','fields','DocType',31,'page_break','Page Break','page_break','Check','Check',NULL,NULL,0,1,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12156','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',1,'sb0','Profile Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12157','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',2,'enabled','Enabled','enabled','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'1',NULL,NULL,NULL,NULL,NULL),('FL12158','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',3,'sb0_5',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12159','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',4,'unsubscribed','Unsubscribed',NULL,'Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12160','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',5,'recent_documents','Recent Documents','recent_documents','Text','Text',NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12161','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',6,'email','Email','email','Data','Data',NULL,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Id of the profile will be the email.','White:FFF',NULL,NULL,NULL),('FL12162','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',7,'first_name','First Name','first_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12163','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',8,'middle_name','Middle Name (Optional)','middle_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12164','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',9,'last_name','Last Name','last_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12165','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',10,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12166','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',11,'new_password','New Password',NULL,'Password',NULL,NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set a new password.','White:FFF',NULL,NULL,NULL),('FL12167','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',12,'birth_date','Birth Date','birth_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12168','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',13,'user_type','User Type','user_type','Select','Select','\nSystem User\nPartner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12169','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',14,'gender','Gender','gender','Select','Select','\nMale\nFemale\nOther',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12170','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',15,'sb1','Roles',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check / Uncheck roles assigned to the Profile. Click on the Role to find out what permissions that Role has.','White:FFF',NULL,NULL,NULL),('FL12171','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',16,'roles_html','Roles HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12172','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',17,'sb2','Defaults',NULL,'Section Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'50%',NULL,'These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.','White:FFF',NULL,NULL,NULL),('FL12173','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',18,'defaults','Profile Defaults',NULL,'Table',NULL,'DefaultValue',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to Customize Form.','White:FFF',NULL,NULL,NULL),('FL12174','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',19,'sb3','Security Settings',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12175','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',20,'login_after','Login After',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Allow user to login only after this hour (0-24)','White:FFF',NULL,NULL,NULL),('FL12176','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',21,'login_before','Login Before',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Allow user to login only before this hour (0-24)','White:FFF',NULL,NULL,NULL),('FL12177','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',22,'restrict_ip','Restrict IP',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)','White:FFF',NULL,NULL,NULL),('FL12178','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',23,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12179','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',24,'last_login','Last Login','last_login','Read Only','Read Only',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12180','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',25,'last_ip','Last IP','last_ip','Read Only','Read Only',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12181','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',26,'user_image','User Image',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12182','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',27,'background_image','Background Image',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12183','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','fields','DocType',28,'file_list','File List','file_list','Text','Text',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12184','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',1,'details','Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12185','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',2,'intro_html','Intro HTML',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12186','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',3,'event_date','Event Date','event_date','Date','Date',NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12187','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',4,'event_hour','Event Time','event_hour','Time','Time',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12188','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',5,'event_name','Event Name','event_name','Data','Data',NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12189','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',6,'description','Description','description','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12190','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',7,'notes','Notes','notes','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12191','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',8,'event_type','Event Type','event_type','Select','Select','Private\nPublic\nCancel',1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12192','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',9,'participants','Participants',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12193','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',10,'individuals','Individuals',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12194','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',11,'event_individuals','Event Individuals','event_individuals','Table','Table','Event User',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12195','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',12,'groups','Groups',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12196','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',13,'event_roles','Event Roles','event_roles','Table','Table','Event Role',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12197','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',14,'ref_type','Ref Type','ref_type','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12198','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Event','fields','DocType',15,'ref_name','Ref Name','ref_name','Data','Data',NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12199','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'UserRole','fields','DocType',1,'role','Role','role','Link','Link','Role',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12200','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',1,'doctype_or_field','DocType or Field',NULL,'Select',NULL,'\nDocField\nDocType',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL12201','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',2,'select_doctype','Select DocType',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.doctype_or_field && doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12202','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',3,'select_item','Select Field',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'eval:doc.doctype_or_field==\'DocField\' && doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12203','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',4,'select_property','Select Property',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'eval:doc.doctype_or_field && doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL12204','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',5,'value','Set Value',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doc_name',0,NULL,NULL,'New value to be set','White:FFF',NULL,NULL,NULL),('FL12205','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',6,'column_break0',NULL,NULL,'Column Break',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12206','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',7,'doc_type','DocType',NULL,'Link',NULL,'DocType',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,0),('FL12207','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',8,'field_name','Field Name',NULL,'Read Only',NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'eval:doc.doctype_or_field==\'DocField\'',0,NULL,NULL,'ID (name) of the entity whose property is to be set','White:FFF',NULL,0,NULL),('FL12208','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',9,'property','Property',NULL,'Read Only',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'eval:doc.doc_name && doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12209','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',10,'property_type','Property Type',NULL,'Read Only',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doc_name',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12210','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Property Setter','fields','DocType',11,'default_value','Default Value',NULL,'Read Only',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'doc_name',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12211','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',1,'sb0','DocType Details',NULL,'Section Break','Section Break',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12212','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',2,'module','Module','module','Data','Link','Suggest',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12213','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',3,'cb01',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12214','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',4,'document_type','Document Type','document_type','Select','Select','\nMaster\nTransaction\nSystem\nOther',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12215','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',5,'sb0_5',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12216','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',6,'description','Description','description','Text','Text',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12217','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',7,'fields_section_break','Fields',NULL,'Section Break','Section Break',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12218','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',8,'fields','Fields','fields','Table','Table','DocField',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12219','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',9,'sb1',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12220','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',10,'cb10','Database',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12221','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',11,'issingle','Is Single','issingle','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12222','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',12,'istable','Is Table','istable','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12223','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',13,'cb11','Naming',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12224','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',14,'autoname','Auto Name','autoname','Data','Data',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12225','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',15,'name_case','Name Case','name_case','Select','Select','\nTitle Case\nUPPER CASE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12226','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',16,'search_fields','Search Fields','search_fields','Data','Data',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12227','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',17,'sb2','Permission Rules',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12228','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',18,'permissions','Permissions','permissions','Table','Table','DocPerm',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12229','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',19,'sb3',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12230','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',20,'cb30','Permissions Settings',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12231','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',21,'in_create','User Cannot Create','in_create','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12232','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',22,'read_only','User Cannot Search','read_only','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12233','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',23,'is_submittable','Is Submittable',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12234','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',24,'allow_rename','Allow Rename','allow_rename','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12235','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',25,'cb31','Hide Actions',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12236','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',26,'hide_heading','Hide Heading','hide_heading','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12237','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',27,'hide_toolbar','Hide Toolbar','hide_toolbar','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12238','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',28,'allow_print','Hide Print','allow_print','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12239','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',29,'allow_email','Hide Email','allow_email','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12240','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',30,'allow_copy','Hide Copy','allow_copy','Check','Check',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12241','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',31,'sb4',NULL,NULL,'Section Break','Column Break',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12242','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',32,'cb41','Display',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12243','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',33,'default_print_format','Default Print Format',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12244','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',34,'read_only_onload','Show Print First','read_only_onload','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12245','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',35,'in_dialog','In Dialog','in_dialog','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12246','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',36,'cb42','Attachments',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12247','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',37,'allow_attach','Allow Attach','allow_attach','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12248','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'DocType','fields','DocType',38,'max_attachments','Max Attachments','max_attachments','Int','Int',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12249','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Comment','fields','DocType',1,'comment','Comment','comment','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12250','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Comment','fields','DocType',2,'comment_by','Comment By','comment_by','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12251','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Comment','fields','DocType',3,'comment_by_fullname','Comment By Fullname','comment_by_fullname','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12252','2012-10-02 13:18:05','2012-10-02 13:18:05','Administrator','Administrator',0,'Comment','fields','DocType',4,'comment_date','Comment Date','comment_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12253','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',5,'comment_time','Comment Time','comment_time','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12254','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',6,'comment_doctype','Comment Doctype','comment_doctype','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12255','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',7,'comment_docname','Comment Docname','comment_docname','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12256','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',8,'post_topic','Post Topic','post_topic','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12257','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Comment','fields','DocType',9,'unsubscribed','Unsubscribed',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12258','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',1,'label','Label','label','Data','Data',NULL,1,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12259','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',2,'fieldtype','Type','fieldtype','Select','Select','Data\nSelect\nText\nSmall Text\nText Editor\nLink\nInt\nDate\nTime\nCurrency\nTable\nFloat\nCheck\nSection Break\nColumn Break\nButton\nRead Only\nCode\nHTML\nImage\nBlob\nPassword',1,0,0,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12260','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',3,'fieldname','Name','fieldname','Data','Data',NULL,1,0,0,NULL,0,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12261','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',4,'options','Options','options','Text','Text',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,'For Links, enter the DocType as range\nFor Select, enter list of Options separated by comma',NULL,NULL,NULL,NULL),('FL12262','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',5,'permlevel','Perm Level','permlevel','Int','Int',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,'0',NULL,NULL,NULL,NULL,NULL),('FL12263','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',6,'width','Width','width','Data','Data',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12264','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',7,'reqd','Reqd','reqd','Check','Check',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12265','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',8,'in_filter','In Filter','in_filter','Check','Check',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12266','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',9,'hidden','Hidden','hidden','Check','Check',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12267','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',10,'print_hide','Print Hide','print_hide','Check','Check',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12268','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',11,'report_hide','Report Hide','report_hide','Check','Check',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12269','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',12,'allow_on_submit','Allow on Submit','allow_on_submit','Check','Check',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12270','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',13,'depends_on','Depends On','depends_on','Data','Data',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,'This field will appear only if the fieldname defined here has value OR the rules are true (examples):
    \nmyfield\neval:doc.myfield==\'My Value\'
    \neval:doc.age>18','White:FFF',NULL,NULL,NULL),('FL12271','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',14,'description','Description','description','Text','Text',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12272','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Customize Form Field','fields','DocType',15,'default','Default','default','Text','Text',NULL,0,0,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12273','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Tag','fields','DocType',1,'tag_name','Tag Name','tag_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12274','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',1,'sender','Sender',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12275','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',2,'recipient','Recipient',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12276','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',3,'message','Message',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12277','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',4,'status','Status',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12278','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','fields','DocType',5,'error','Error',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12279','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',1,'letter_head_name','Letter Head Name','letter_head_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12280','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',2,'disabled','Disabled','disabled','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12281','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',3,'is_default','Is Default','is_default','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check this to make this the default letter head in all prints',NULL,NULL,NULL,NULL),('FL12282','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',4,'set_from_image','Set From Image',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'To update your HTML from attachment, click here',NULL,NULL,NULL,NULL),('FL12283','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',5,'content','Content','content','Code','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your letter head content in HTML.',NULL,NULL,NULL,NULL),('FL12284','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',6,'url','URL',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12285','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Letter Head','fields','DocType',7,'file_list','File LIst','file_list','Text','Text',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12286','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',1,'page_html','Page HTML',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12287','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',2,'page_name','Page Name','page_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12288','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',3,'title','Title',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12289','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',4,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12290','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',5,'module','Module','module','Select','Select','link:Module Def',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12291','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',6,'standard','Standard','standard','Select','Select','\nYes\nNo',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12292','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',7,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12293','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',8,'content','Content','content','Code','Text Editor',NULL,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12294','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',9,'permissions','Permissions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12295','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',10,'roles','Roles','roles','Table','Table','Page Role',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12296','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',11,'section_break1',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12297','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',12,'script','Script (JS)',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12298','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Page','fields','DocType',13,'style','Style (CSS)',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12299','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',1,'doc_type','Select Form Type',NULL,'Select',NULL,'link:DocType\n(module IN (\"Accounts\", \"Buying\", \"HR\", \"Knowledge Base\", \"Production\", \"Projects\", \"Selling\", \"Stock\", \"Support\", \"Website\") OR name IN (\"Contact\", \"Address\")) AND IFNULL(issingle, 0)=0 AND IFNULL(in_create, 0)=0',0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12300','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',2,'properties','Properties',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12301','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',3,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12302','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',4,'search_fields','Search Fields',NULL,'Data',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Fields separated by comma (,) will be included in the
    Search By list of Search dialog box',NULL,NULL,NULL,NULL),('FL12303','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',5,'default_print_format','Default Print Format',NULL,'Link',NULL,'Print Format',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12304','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12305','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',7,'read_only_onload','Show Print First',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Load Print View on opening of an existing form',NULL,NULL,NULL,NULL),('FL12306','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',8,'allow_print','Hide Print',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12307','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',9,'allow_email','Hide Email',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12308','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',10,'allow_copy','Hide Copy',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12309','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',11,'allow_attach','Allow Attach',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Note: maximum attachment size = 1mb',NULL,NULL,NULL,NULL),('FL12310','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',12,'max_attachments','Max Attachments',NULL,'Int',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'eval:doc.allow_attach',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12311','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',13,'fields_section_break','Fields',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Customize Label, Print Hide, Default etc.',NULL,NULL,NULL,NULL),('FL12312','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Customize Form','fields','DocType',14,'fields','Fields',NULL,'Table',NULL,'Customize Form Field',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,'no add rows',NULL,NULL,NULL,NULL,NULL),('FL12313','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Print Format','fields','DocType',1,'module','Module','module','Select','Select','link:Module Def',1,0,0,0,1,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12314','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Print Format','fields','DocType',2,'doc_type','DocType',NULL,'Select',NULL,'link:DocType',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Associate a DocType to the Print Format',NULL,NULL,1,NULL),('FL12315','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Print Format','fields','DocType',3,'standard','Standard','standard','Select','Select','No\nYes',1,0,0,0,1,1,0,NULL,NULL,1,NULL,'No',NULL,'White:FFF',NULL,1,NULL),('FL12316','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Print Format','fields','DocType',4,'html','HTML','html','Code','Text Editor','HTML',0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12317','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',1,'details','Details',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12318','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12319','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',3,'dt','Document','dt','Link','Link','DocType',1,NULL,NULL,NULL,1,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12320','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',4,'label','Label','label','Data','Data',NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12321','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',5,'label_help','Label Help',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12322','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',6,'fieldtype','Field Type','fieldtype','Select','Select','\nButton\nCheck\nCode\nColumn Break\nCurrency\nData\nDate\nFloat\nHTML\nInt\nLink\nRead Only\nSection Break\nSelect\nSmall Text\nText\nText Editor\nTime\nTable',0,NULL,NULL,NULL,1,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12323','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',7,'options_help','Options Help',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12324','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',8,'options','Options','options','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12325','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',9,'description','Field Description','description','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12326','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',10,'properties','Properties',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12327','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',11,'insert_after','Insert After','insert_after','Select','Select',NULL,0,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,'Select the label after which you want to insert new field.','White:FFF',NULL,NULL,NULL),('FL12328','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',12,'default','Default Value','default','Text','Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12329','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',13,'fieldname','Fieldname','fieldname','Data','Data',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12330','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',14,'width','Width','width','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12331','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',15,'reqd','Is Mandatory Field','reqd','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12332','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',16,'in_filter','In Report Filter','in_filter','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12333','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',17,'no_copy','No Copy','no_copy','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12334','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',18,'print_hide','Print Hide','print_hide','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12335','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',19,'report_hide','Report Hide','report_hide','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12336','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',20,'allow_on_submit','Allow on Submit','allow_on_submit','Check','Check',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12337','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Custom Field','fields','DocType',21,'permlevel','Permission Level','permlevel','Int','Int',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,'0',NULL,NULL,NULL,NULL,NULL),('FL12338','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,0,0,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12339','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',2,'customer_item_code','Customer\'s Item Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12340','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',3,'item_name','Item Name','item_name','Data','Data',NULL,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12341','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12342','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',5,'qty','Quantity','qty','Currency','Currency',NULL,0,NULL,0,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12343','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',6,'stock_uom','UOM','stock_uom','Data','Data',NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12344','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',7,'ref_rate','Price List Rate','ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12345','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',8,'adj_rate','Discount (%)','adj_rate','Float','Float',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12346','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',9,'export_rate','Rate','export_rate','Currency','Currency',NULL,0,NULL,0,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12347','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',10,'export_amount','Amount','export_amount','Currency','Currency',NULL,0,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12348','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',11,'base_ref_rate','Price List Rate*','base_ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12349','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',12,'basic_rate','Basic Rate*','basic_rate','Currency','Currency',NULL,0,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12350','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',13,'amount','Amount*','amount','Currency','Currency',NULL,0,NULL,1,NULL,0,NULL,NULL,'Client',NULL,1,'100px','0.00',NULL,NULL,NULL,0,NULL),('FL12351','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',14,'item_group','Item Group','item_group','Link','Link','Item Group',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12352','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',15,'brand','Brand','brand','Link','Link','Brand',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12353','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',16,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12354','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',17,'prevdoc_docname','Against Docname','prevdoc_docname','Data','Data',NULL,NULL,NULL,1,0,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12355','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',18,'prevdoc_doctype','Against Doctype','prevdoc_doctype','Data','Data',NULL,NULL,1,1,0,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12356','2012-10-02 13:18:07','2012-10-02 13:18:07','Administrator','Administrator',0,'Quotation Item','fields','DocType',19,'page_break','Page Break','page_break','Check','Check',NULL,NULL,0,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12357','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12358','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12359','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',3,'naming_series','Naming Series','naming_series','Select','Select','QTN',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12360','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',4,'quotation_to','Quotation To','quotation_to','Select','Select','\nLead\nCustomer',NULL,NULL,1,0,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12361','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',5,'customer','Customer','customer','Link','Link','Customer',1,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12362','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',6,'lead','Lead','lead','Link','Link','Lead',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12363','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',7,'lead_name','Lead Name',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12364','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',8,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12365','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',9,'organization','Organization',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12366','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',10,'address_display','Address','customer_address','Small Text','Small Text',NULL,0,1,0,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12367','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',11,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12368','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',12,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12369','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',13,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12370','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',14,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12371','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',15,'transaction_date','Quotation Date','transaction_date','Date','Date',NULL,1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,'100px','Today','The date at which current entry is made in system.',NULL,NULL,1,NULL),('FL12372','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',16,'order_type','Order Type','order_type','Select','Select','\nSales\nMaintenance',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Sales',NULL,'White:FFF',NULL,1,NULL),('FL12373','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',17,'items','Items',NULL,'Section Break','Section Break',NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12374','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',18,'quotation_details','Quotation Items','quotation_details','Table','Table','Quotation Item',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,'40px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12375','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',19,'sec_break23',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12376','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',20,'col_break34',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12377','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',21,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12378','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',22,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12379','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',23,'col_break35',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12380','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',24,'enq_no','Opportunity No','enq_no','Link','Link','Opportunity',0,0,0,0,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'To create Quotation against Opportunity, Select Opportunity No. and click on \'Pull Opportunity Details\' ','White:FFF',NULL,1,NULL),('FL12381','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',25,'pull_enquiry_detail','Pull Opportunity Detail',NULL,'Button','Button',NULL,NULL,0,0,0,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12382','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',26,'section_break0','Price List and Currency',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12383','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',27,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,'Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.','White:FFF',NULL,1,NULL),('FL12384','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',28,'price_list_currency','Price List Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select the currency in which price list is maintained','White:FFF',NULL,NULL,NULL),('FL12385','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',29,'plc_conversion_rate','Price List Currency Conversion Rate',NULL,'Float',NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which Price list currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12386','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',30,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12387','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',31,'currency','Currency','currency','Select','Select','link:Currency',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,'Customer\'s currency - If you want to select a currency that is not the default currency, then you must also specify the Currency Conversion Rate.','White:FFF',NULL,1,NULL),('FL12388','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',32,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','1.00','Rate at which customer\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12389','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',33,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12390','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',34,'charge','Sales Taxes and Charges','charge','Link','Link','Sales Taxes and Charges Master',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12391','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',35,'get_charges','Get Taxes and Charges',NULL,'Button','Button',NULL,NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12392','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',36,'other_charges','Sales Taxes and Charges','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12393','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',37,'calculate_charges','Calculate Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12394','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',38,'other_charges_total','Taxes and Charges Total*','other_charges_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12395','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',39,'other_charges_calculation','Taxes and Charges Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12396','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',40,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12397','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',41,'grand_total','Grand Total*','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,0,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12398','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',42,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,'Client',NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12399','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',43,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,'200px',NULL,'In Words will be visible once you save the Quotation.','White:FFF',NULL,NULL,NULL),('FL12400','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',44,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12401','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',45,'grand_total_export','Grand Total','grand_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12402','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',46,'rounded_total_export','Rounded Total','rounded_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12403','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',47,'in_words_export','In Words','in_words_export','Data','Data',NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,'200px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12404','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',48,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add Terms and Conditions for the Quotation like Payment Terms, Validity of Offer etc. You can also prepare a Terms and Conditions Master and use the Template','White:FFF',NULL,NULL,NULL),('FL12405','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',49,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12406','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',50,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12407','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',51,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12408','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',52,'terms','Term Details','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12409','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',53,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12410','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',54,'col_break98',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12411','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',55,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12412','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',56,'contact_person','Contact Person','contact_person','Link','Link','Contact',NULL,0,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12413','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',57,'col_break99',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12414','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',58,'territory','Territory',NULL,'Link',NULL,'Territory',0,0,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Will be fetched from Customer','White:FFF',NULL,1,NULL),('FL12415','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',59,'customer_group','Customer Group','customer_group','Link','Link','Customer Group',0,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12416','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',60,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filling in additional information about the Quotation will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL12417','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',61,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12418','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',62,'company','Company','company','Link','Link','Company',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies.','White:FFF',NULL,1,NULL),('FL12419','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',63,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12420','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',64,'enq_det','Opportunity Item','enq_det','Text','Text',NULL,NULL,1,1,0,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12421','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',65,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign',NULL,0,1,0,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12422','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',66,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,0,1,0,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12423','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',67,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12424','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',68,'order_lost_reason','Quotation Lost Reason','order_lost_reason','Small Text','Small Text',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12425','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',69,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12426','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',70,'status','Status','status','Select','Select','\nDraft\nSubmitted\nOrder Confirmed\nOrder Lost\nCancelled',0,NULL,1,NULL,1,1,0,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,1,NULL),('FL12427','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',71,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12428','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',72,'contact_by','Next Contact By','contact_by','Link','Link','Profile',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your sales person who will contact the customer/lead in future',NULL,NULL,NULL,NULL),('FL12429','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',73,'contact_date','Next Contact Date','contact_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your sales person will get a reminder on this date to contact the customer/lead',NULL,NULL,NULL,NULL),('FL12430','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',74,'last_contact_date','Last Contact Date','last_contact_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Date on which the lead/customer was last contacted','White:FFF',NULL,NULL,NULL),('FL12431','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',75,'to_discuss','To Discuss','to_discuss','Small Text','Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12432','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',76,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12433','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',77,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12434','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',78,'communication_history','Communication History',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Keep a track on communications regarding this Quotation. This will help you remember earlier communications in case the Customer comes back again','White:FFF',NULL,NULL,NULL),('FL12435','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',79,'communication_html','Communication HTML','follow_up','HTML','Table',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,'40px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12436','2012-10-02 13:18:08','2012-10-02 13:18:08','Administrator','Administrator',0,'Quotation','fields','DocType',80,'file_list','File List',NULL,'Small Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12437','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12438','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,0,NULL),('FL12439','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','PI/2011/\nSO\nSO/10-11/\nSO1112',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12440','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',4,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select Customer','White:FFF',NULL,1,NULL),('FL12441','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',5,'customer_name','Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12442','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12443','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12444','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12445','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12446','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',10,'order_type','Order Type','order_type','Select','Select','\nSales\nMaintenance',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Sales',NULL,'White:FFF',NULL,NULL,NULL),('FL12447','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12448','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',12,'transaction_date','Sales Order Date','transaction_date','Date','Date',NULL,1,NULL,0,NULL,1,1,NULL,NULL,NULL,0,'160px','Today','The date at which current entry is made in system.',NULL,NULL,1,NULL),('FL12449','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',13,'delivery_date','Expected Delivery Date','delivery_date','Date','Date',NULL,1,0,1,NULL,0,NULL,NULL,NULL,'eval:doc.order_type == \'Sales\'',0,'160px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL12450','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',14,'po_no','P.O. No','po_no','Data','Data',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,0,'100px',NULL,'Purchase Order sent by customer','White:FFF',NULL,NULL,NULL),('FL12451','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',15,'po_date','P.O. Date','po_date','Date','Date',NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,'eval:doc.po_no',0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12452','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',16,'shipping_address_name','Shipping Address Name',NULL,'Data',NULL,'Address',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12453','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',17,'shipping_address','Shipping Address',NULL,'Small Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL12454','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',18,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12455','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',19,'sales_order_details','Sales Order Items','sales_order_details','Table','Table','Sales Order Item',NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12456','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',20,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12457','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',21,'col_break20',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12458','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',22,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12459','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',23,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,0,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12460','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',24,'col_break_21',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12461','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',25,'quotation_no','Quotation No','quotation_no','Link','Link','Quotation',1,NULL,1,NULL,NULL,0,NULL,'Client',NULL,0,'150px',NULL,'Quotation no against which this Sales Order is made ','White:FFF',NULL,1,NULL),('FL12462','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',26,'quotation_date','Quotation Date','quotation_date','Date','Date',NULL,NULL,1,1,NULL,0,0,NULL,NULL,'eval:doc.quotation_no',1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12463','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',27,'pull_quotation_details','Pull Quotation Items',NULL,'Button','Button','pull_quotation_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12464','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',28,'sec_break45','Price List and Currency',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12465','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',29,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px',NULL,'Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.','White:FFF',NULL,NULL,NULL),('FL12466','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',30,'price_list_currency','Price List Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select the currency in which price list is maintained',NULL,NULL,NULL,NULL),('FL12467','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',31,'plc_conversion_rate','Price List Currency Conversion Rate',NULL,'Float',NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which Price list currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12468','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',32,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12469','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',33,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,'Customer\'s currency','White:FFF',NULL,NULL,NULL),('FL12470','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',34,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'100px','1.00','Rate at which customer\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12471','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',35,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12472','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',36,'charge','Sales Taxes and Charges','charge','Link','Link','Sales Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12473','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',37,'get_charges','Get Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12474','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',38,'other_charges','Sales Taxes and Charges','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12475','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',39,'calculate_charges','Calculate Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12476','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',40,'other_charges_total','Taxes and Charges Total*','other_charges_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12477','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',41,'other_charges_calculation','Taxes and Charges Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12478','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',42,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12479','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',43,'grand_total','Grand Total*','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12480','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',44,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12481','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',45,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,'In Words will be visible once you save the Sales Order.','White:FFF',NULL,NULL,NULL),('FL12482','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',46,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12483','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',47,'grand_total_export','Grand Total (Export)','grand_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12484','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',48,'rounded_total_export','Rounded Total (Export)','rounded_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12485','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',49,'in_words_export','In Words (Export)','in_words_export','Data','Data',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,'200px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12486','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',50,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12487','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',51,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12488','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',52,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12489','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',53,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12490','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',54,'terms','Terms and Conditions Details','terms','Text Editor','Text Editor',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12491','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',55,'contact_info','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12492','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',56,'col_break45',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12493','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',57,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12494','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',58,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12495','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',59,'territory','Territory',NULL,'Link',NULL,'Territory',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12496','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',60,'col_break46',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12497','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',61,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Category of customer as entered in Customer master','White:FFF',NULL,1,NULL),('FL12498','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',62,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filling in additional information about the Sales Order will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL12499','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',63,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12500','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',64,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12501','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',65,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12502','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',66,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Campaign\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12503','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',67,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12504','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',68,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.','White:FFF',NULL,NULL,NULL),('FL12505','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',69,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies.','White:FFF',NULL,1,NULL),('FL12506','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',70,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12507','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',71,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,0),('FL12508','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',72,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12509','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',73,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12510','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',74,'project_name','Project Name','project_name','Link','Link','Project',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Track this Sales Order against any Project','White:FFF',NULL,1,NULL),('FL12511','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',75,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,'100px','Draft',NULL,NULL,NULL,1,NULL),('FL12512','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',76,'per_delivered','% Delivered','per_delivered','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,'100px',NULL,'% of materials delivered against this Sales Order','White:FFF',NULL,1,NULL),('FL12513','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',77,'per_billed','% Amount Billed','per_billed','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,'100px',NULL,'% of materials billed against this Sales Order','White:FFF',NULL,1,NULL),('FL12514','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',78,'delivery_status','Delivery Status',NULL,'Select',NULL,'Delivered\nNot Delivered\nPartly Delivered\nClosed\nNot Applicable',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL12515','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',79,'billing_status','Billing Status',NULL,'Select',NULL,'Billed\nNot Billed\nPartly Billed\nClosed',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0),('FL12516','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',80,'packing_list','Packing List',NULL,'Section Break','Section Break',NULL,NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Display all the individual items delivered with the main items','White:FFF',NULL,NULL,NULL),('FL12517','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',81,'packing_details','Packing Details','packing_details','Table','Table','Delivery Note Packing Item',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12518','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',82,'sales_team_section_break','Sales Team',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12519','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',83,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12520','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',84,'sales_partner','Sales Partner','sales_partner','Link','Link','Sales Partner',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'150px',NULL,'Name as entered in Sales Partner master','White:FFF',NULL,1,NULL),('FL12521','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',85,'column_break7',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12522','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',86,'commission_rate','Commission Rate','commission_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12523','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',87,'total_commission','Total Commission','total_commission','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12524','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',88,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12525','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',89,'sales_team','Sales Team1','sales_team','Table','Table','Sales Team',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12526','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order','fields','DocType',90,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12527','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',1,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12528','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',2,'customer_item_code','Customer\'s Item Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12529','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',3,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150',NULL,NULL,NULL,NULL,NULL,NULL),('FL12530','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,1,NULL),('FL12531','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',5,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12532','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',6,'stock_uom','UOM','stock_uom','Data','Data',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,1,'70px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12533','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',7,'ref_rate','Price List Rate','ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'70px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12534','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',8,'adj_rate','Discount(%)','adj_rate','Float','Float',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'70px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12535','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',9,'export_rate','Rate','export_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12536','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',10,'export_amount','Amount','export_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12537','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',11,'base_ref_rate','Price List Rate*','base_ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12538','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',12,'basic_rate','Basic Rate*','basic_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12539','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',13,'amount','Amount*','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,0,0,NULL,NULL,NULL,1,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL12540','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',14,'reserved_warehouse','Reserved Warehouse','reserved_warehouse','Link','Link','Warehouse',NULL,NULL,1,NULL,0,1,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12541','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',15,'projected_qty','Projected Qty','projected_qty','Currency','Currency',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'70px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL12542','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',16,'actual_qty','Actual Qty',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'70px','0.00',NULL,'White:FFF',NULL,NULL,NULL),('FL12543','2012-10-02 13:18:09','2012-10-02 13:18:09','Administrator','Administrator',0,'Sales Order Item','fields','DocType',17,'delivered_qty','Delivered Qty','delivered_qty','Currency','Currency',NULL,0,0,1,NULL,NULL,1,NULL,NULL,NULL,1,'100px','0.00',NULL,'White:FFF',NULL,0,NULL),('FL12544','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',18,'billed_amt','Billed Amt',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12545','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',19,'planned_qty','Planned Quantity','planned_qty','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,'50px',NULL,'For Production','White:FFF',NULL,NULL,NULL),('FL12546','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',20,'produced_qty','Produced Quantity','produced_qty','Currency','Currency',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,'50px',NULL,'For Production','White:FFF',NULL,NULL,NULL),('FL12547','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',21,'brand','Brand Name','brand','Link','Link','Brand',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12548','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',22,'item_group','Item Group','item_group','Link','Link','Item Group',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12549','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',23,'prevdoc_docname','Quotation No.','prevdoc_docname','Link','Link','Quotation',1,0,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12550','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',24,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12551','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',25,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12552','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Sales Order Item','fields','DocType',26,'transaction_date','Sales Order Date','transaction_date','Date','Date',NULL,0,1,1,1,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'The date at which current entry is made in system.','White:FFF',NULL,0,NULL),('FL12553','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Campaign','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12554','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Campaign','fields','DocType',2,'campaign','Campaign',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12555','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Campaign','fields','DocType',3,'campaign_name','Campaign Name','campaign_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12556','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Campaign','fields','DocType',4,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12557','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts','White:FFF',NULL,NULL,NULL),('FL12558','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',2,'customer_name','Customer Name','customer_name','Data','Data',NULL,1,0,0,0,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12559','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',3,'customer_type','Customer Type','customer_type','Select','Select','\nCompany\nIndividual',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12560','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',4,'naming_series','Series',NULL,'Select',NULL,'\nCUST\nCUSTMUM',NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12561','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',5,'lead_name','Lead Ref','lead_name','Link','Link','Lead',NULL,0,1,1,NULL,1,NULL,'Client',NULL,0,NULL,NULL,'Fetch lead which will be converted into customer.','White:FFF',NULL,1,NULL),('FL12562','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',6,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12563','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',7,'customer_group','Customer Group','customer_group','Link','Link','Customer Group',1,0,0,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'To manage Customer Groups, click here','White:FFF',NULL,1,NULL),('FL12564','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',8,'territory','Territory','territory','Link','Link','Territory',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'To manage Territory, click here','White:FFF',NULL,NULL,NULL),('FL12565','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',9,'address_contacts','Address & Contacts',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12566','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',10,'address_desc','Address Desc',NULL,'HTML',NULL,'Addresses will appear only when you save the customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12567','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',11,'address_html','Address HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12568','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',12,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12569','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',13,'contact_desc','Contact Desc',NULL,'HTML',NULL,'Contact Details will appear only when you save the customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12570','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',14,'contact_html','Contact HTML',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12571','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',15,'communication_history','Communication History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12572','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',16,'communication_html','Communication HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12573','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',17,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12574','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',18,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12575','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',19,'company','Company','company','Link','Link','Company',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'To create an Account Head under a different company, select the company and save customer.','White:FFF',NULL,1,NULL),('FL12576','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',20,'default_price_list','Default Price List',NULL,'Link',NULL,'Price List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12577','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',21,'default_currency','Default Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'This currency will get fetched in Sales transactions of this customer','White:FFF',NULL,NULL,NULL),('FL12578','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',22,'customer_details','Customer Details','customer_details','Text','Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your Customer\'s TAX registration numbers (if applicable) or any general information','White:FFF',NULL,NULL,NULL),('FL12579','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',23,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12580','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',24,'credit_days','Credit Days','credit_days','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12581','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',25,'credit_limit','Credit Limit','credit_limit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12582','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',26,'website','Website',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12583','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',27,'sales_team_section_break','Sales Team',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12584','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',28,'default_sales_partner','Default Sales Partner','default_sales_partner','Link','Link','Sales Partner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12585','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',29,'default_commission_rate','Default Commission Rate','default_commission_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12586','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',30,'sales_team','Sales Team Details','sales_team','Table','Table','Sales Team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12587','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',31,'transaction_history','Transaction History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12588','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',32,'history_html','History HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12589','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Customer','fields','DocType',33,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12590','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter customer enquiry for which you might raise a quotation in future','White:FFF',NULL,NULL,NULL),('FL12591','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',2,'naming_series','Naming Series','naming_series','Select','Select','ENQUIRY\nENQ',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12592','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',3,'enquiry_from','Opportunity From','enquiry_from','Select','Select','\nLead\nCustomer',NULL,NULL,1,0,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12593','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',4,'customer','Customer','customer','Link','Link','Customer',0,0,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12594','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',5,'lead','Lead','lead','Link','Link','Lead',NULL,0,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12595','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',6,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12596','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',7,'status','Status','status','Select','Select','\nDraft\nSubmitted\nQuotation Sent\nOrder Confirmed\nOpportunity Lost\nCancelled',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,NULL,NULL),('FL12597','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',8,'enquiry_type','Opportunity Type','enquiry_type','Select','Select','\nSales\nMaintenance',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12598','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',9,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12599','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',10,'enquiry_details','Opportunity Items','enquiry_details','Table','Table','Opportunity Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Items which do not exist in Item master can also be entered on customer\'s request','White:FFF',NULL,NULL,NULL),('FL12600','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',11,'communication_history','Communication History',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Keep a track of communication related to this enquiry which will help for future reference.','White:FFF',NULL,NULL,NULL),('FL12601','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',12,'communication_html','Communication HTML','follow_up','HTML','Table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12602','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',13,'contact_info','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12603','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',14,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12604','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',15,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12605','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',16,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12606','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',17,'address_display','Address','address','Small Text','Small Text',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12607','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',18,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12608','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',19,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12609','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',20,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12610','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',21,'contact_mobile','Contact Mobile No',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12611','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',22,'lead_name','Name','lead_name','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12612','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',23,'customer_group','Customer Group','customer_group','Link','Link','Customer Group',1,0,1,NULL,0,NULL,NULL,'Client','eval:doc.enquiry_from==\"Customer\"',0,NULL,NULL,'To Manage Customer Groups, click here','White:FFF',NULL,1,NULL),('FL12613','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',24,'territory','Territory',NULL,'Link',NULL,'Territory',1,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,'To Manage Territory, click here','White:FFF',NULL,1,NULL),('FL12614','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',25,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filing in Additional Information about the Opportunity will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL12615','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',26,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12616','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',27,'transaction_date','Opportunity Date','transaction_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'50px','Today','The date at which current entry is made in system.',NULL,NULL,NULL,NULL),('FL12617','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',28,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12618','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',29,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign\nWalk In',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12619','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',30,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter name of campaign if source of enquiry is campaign','White:FFF',NULL,NULL,NULL),('FL12620','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',31,'order_lost_reason','Quotation Lost Reason','order_lost_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12621','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',32,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12622','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',33,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12623','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',34,'contact_by','Next Contact By','contact_by','Link','Link','Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'75px',NULL,'Your sales person who will contact the customer in future','White:FFF',NULL,1,NULL),('FL12624','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',35,'contact_date','Next Contact Date','contact_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your sales person will get a reminder on this date to contact the customer','White:FFF',NULL,NULL,NULL),('FL12625','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',36,'last_contact_date','Last Contact Date','last_contact_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,0,NULL,'eval:!doc.__islocal',1,NULL,NULL,'Date on which the lead was last contacted','White:FFF',NULL,NULL,NULL),('FL12626','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',37,'to_discuss','To Discuss','to_discuss','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12627','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',38,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12628','2012-10-02 13:18:10','2012-10-02 13:18:10','Administrator','Administrator',0,'Opportunity','fields','DocType',39,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12629','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12630','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12631','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',3,'naming_series','Naming Series','naming_series','Select','Select','LEAD\nLEAD/10-11/\nLEAD/MUMBAI/',NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12632','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',4,'lead_name','Contact Name','lead_name','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12633','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',5,'company_name','Company Name','company_name','Data','Data',NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,'Name of organization from where lead has come','White:FFF',NULL,1,NULL),('FL12634','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',6,'source','Source','source','Select','Select','\nAdvertisement\nBlog\nCampaign\nCall\nCustomer\nExhibition\nSupplier\nWebsite',0,NULL,NULL,NULL,1,1,NULL,'Client',NULL,0,NULL,NULL,'Source of the lead. If via a campaign, select \"Campaign\"','White:FFF',NULL,1,NULL),('FL12635','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',7,'customer','From Customer','customer','Link','Link','Customer',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Existing Customer\'',0,NULL,NULL,'Source of th','White:FFF',NULL,NULL,NULL),('FL12636','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',8,'campaign_name','Campaign Name','campaign_name','Link','Link','Campaign',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Campaign\'',0,NULL,NULL,'Enter campaign name if the source of lead is campaign.','White:FFF',NULL,NULL,NULL),('FL12637','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',9,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12638','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',10,'status','Status','status','Select','Select','\nOpen\nAttempted to Contact\nContact in Future\nContacted\nInterested\nNot interested\nLead Lost\nConverted',1,NULL,NULL,NULL,1,1,NULL,'Client',NULL,0,NULL,'Open',NULL,'White:FFF',NULL,1,NULL),('FL12639','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',11,'type','Lead Type','type','Select','Select','\nClient\nChannel Partner\nConsultant',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12640','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',12,'remark','Remark','remark','Small Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12641','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',13,'communication_history','Communication History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12642','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',14,'communication_html','Communication HTML','follow_up','HTML','Table',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12643','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',15,'contact_info','Contact Info',NULL,'Section Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12644','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',16,'phone','Phone','contact_no','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12645','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',17,'mobile_no','Mobile No.','mobile_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12646','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',18,'email_id','Email Id','email_id','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12647','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',19,'fax','Fax','fax','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12648','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',20,'website','Website','website','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12649','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',21,'territory','Territory','territory','Link','Link','Territory',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To manage Territory, click here','White:FFF',NULL,NULL,NULL),('FL12650','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',22,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12651','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',23,'address_line1','Address Line 1','address_line1','Data','Data',NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12652','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',24,'address_line2','Address Line 2','address_line2','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12653','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',25,'city','City','city','Data','Select',NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12654','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',26,'country','Country','country','Select','Select','link:Country',NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12655','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',27,'state','State','state','Data','Select','Suggest',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12656','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',28,'pincode','Pin Code','pincode','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12657','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',29,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12658','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',30,'lead_owner','Lead Owner','lead_owner','Link','Link','Profile',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'__user',NULL,NULL,NULL,1,NULL),('FL12659','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',31,'market_segment','Market Segment','market_segment','Select','Select','\nLower Income\nMiddle Income\nUpper Income',0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12660','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',32,'industry','Industry','industry','Link','Link','Industry Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12661','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',33,'request_type','Request Type','request_type','Select','Select','\nProduct Enquiry\nRequest for Information\nSuggestions\nOther',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12662','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',34,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12663','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',35,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12664','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',36,'order_lost_reason','Lost Reason','order_lost_reason','Link','Link','Quotation Lost Reason',NULL,0,NULL,NULL,NULL,NULL,0,NULL,'eval:doc.status == \'Lead Lost\'',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12665','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',37,'contact_by','Next Contact By','contact_by','Link','Link','Profile',NULL,0,0,NULL,0,NULL,0,NULL,NULL,0,'100px',NULL,'Your sales person who will contact the lead in future','White:FFF',NULL,1,NULL),('FL12666','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',38,'contact_date','Next Contact Date','contact_date','Date','Date',NULL,NULL,NULL,NULL,NULL,0,1,0,NULL,NULL,0,'100px',NULL,'Your sales person will get a reminder on this date to contact the lead','White:FFF',NULL,1,NULL),('FL12667','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',39,'last_contact_date','Last Contact Date','last_contact_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'Date on which the lead was last contacted','White:FFF',NULL,NULL,NULL),('FL12668','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',40,'company','Company','company','Link','Link','Company',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12669','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',41,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12670','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',42,'unsubscribed','Unsubscribed',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12671','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Lead','fields','DocType',43,'blog_subscriber','Blog Subscriber',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12672','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',1,'details','Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12673','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',2,'approval_status','Approval Status','approval_status','Select','Select','\nDraft\nSubmitted\nApproved \nRejected\nCancelled',1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,1,NULL),('FL12674','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',3,'employee','From Employee','employee','Link','Link','Employee',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12675','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',4,'employee_name','Employee Name','employee_name','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12676','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',5,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12677','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',6,'company','Company','company','Select','Link','link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12678','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',7,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12679','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',8,'posting_date','Posting Date','posting_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12680','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',9,'exp_approver','Approver','exp_approver','Select','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'160px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12681','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',10,'remark','Remark','remark','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12682','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',11,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12683','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',12,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,1,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12684','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',13,'approve','Approve',NULL,'Button','Button',NULL,NULL,1,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12685','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',14,'reject','Reject',NULL,'Button','Button',NULL,NULL,1,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12686','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',15,'expense_details','Expense Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12687','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',16,'calculate_total_amount','Calculate Total Amount',NULL,'Button','Button',NULL,NULL,NULL,1,1,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12688','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',17,'total_claimed_amount','Total Claimed Amount','total_claimed_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,1,'160px',NULL,NULL,'White:FFF',NULL,0,NULL),('FL12689','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',18,'total_sanctioned_amount','Total Sanctioned Amount','total_sanctioned_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'160px',NULL,NULL,'White:FFF',NULL,0,NULL),('FL12690','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',19,'update_voucher','Update Voucher',NULL,'Button','Button',NULL,NULL,1,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12691','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',20,'expense_voucher_details','Expense Claim Details','expense_voucher_details','Table','Table','Expense Claim Detail',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12692','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Expense Claim','fields','DocType',21,'email_id','Employees Email Id','email_id','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12693','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',1,'basic_information','Basic Information',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12694','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12695','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',3,'naming_series','Naming Series','naming_series','Select','Select','EMP/',NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series',NULL,NULL,NULL,NULL),('FL12696','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',4,'salutation','Salutation','salutation','Select','Select','\nMr\nMs',0,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12697','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',5,'employee_name','Employee Name','employee_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12698','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',6,'employee_number','Employee Number','employee_number','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12699','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',7,'date_of_joining','Date of Joining','date_of_joining','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12700','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',8,'date_of_birth','Date of Birth','date_of_birth','Date','Date',NULL,0,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12701','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',9,'gender','Gender','gender','Select','Select','\nMale\nFemale',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12702','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',10,'company','Company',NULL,'Select',NULL,'link:Company',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12703','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',11,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12704','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',12,'status','Status','status','Select','Select','\nActive\nLeft',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Active',NULL,'White:FFF',NULL,1,NULL),('FL12705','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',13,'employment_type','Employment Type','employment_type','Link','Link','Employment Type',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12706','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',14,'scheduled_confirmation_date','Scheduled Confirmation Date','scheduled_confirmation_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12707','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',15,'final_confirmation_date','Final Confirmation Date','final_confirmation_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12708','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',16,'contract_end_date','Contract End Date','contract_end_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12709','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',17,'date_of_retirement','Date Of Retirement','date_of_retirement','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12710','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',18,'holiday_list','Holiday List','holiday_list','Link','Link','Holiday List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Applicable Holiday List','White:FFF',NULL,NULL,NULL),('FL12711','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',19,'job_profile','Job Profile',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12712','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',20,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12713','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',21,'branch','Branch','branch','Link','Link','Branch',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12714','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',22,'department','Department','department','Link','Link','Department',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12715','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',23,'designation','Designation','designation','Link','Link','Designation',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12716','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',24,'grade','Grade','grade','Link','Link','Grade',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12717','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',25,'reports_to','Reports to','reports_to','Link','Link','Employee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12718','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',26,'company_email','Email (By company)','company_email','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Provide email id registered in company',NULL,NULL,1,NULL),('FL12719','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',27,'salary_information','Salary Information',NULL,'Column Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12720','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',28,'salary_mode','Salary Mode','salary_mode','Select','Select','\nBank\nCash\nCheque',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12721','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',29,'bank_name','Bank Name','bank_name','Data','Link','Suggest',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.salary_mode == \'Bank\'',0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12722','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',30,'bank_ac_no','Bank A/C No.','bank_ac_no','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.salary_mode == \'Bank\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12723','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',31,'esic_card_no','ESIC CARD No','esic_card_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12724','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',32,'pf_number','PF Number','pf_number','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12725','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',33,'gratuity_lic_id','Gratuity LIC ID','gratuity_lic_id','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12726','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',34,'contact_details','Contact Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12727','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',35,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12728','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',36,'cell_number','Cell Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12729','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',37,'personal_email','Personal Email',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12730','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',38,'notice_number_of_days','Notice - Number of Days','notice_number_of_days','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12731','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',39,'emergency_contact_details','Emergency Contact Details',NULL,'HTML',NULL,'Emergency Contact Details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12732','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',40,'person_to_be_contacted','Person To Be Contacted',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12733','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',41,'relation','Relation',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12734','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',42,'emergency_phone_number','Emergency Phone Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12735','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',43,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12736','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',44,'permanent_accommodation_type','Permanent Accommodation Type',NULL,'Select',NULL,'\nRented\nOwned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12737','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',45,'permanent_address','Permanent Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12738','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',46,'current_accommodation_type','Current Accommodation Type',NULL,'Select',NULL,'\nRented\nOwned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12739','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',47,'current_address','Current Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12740','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',48,'personal_details','Personal Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12741','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',49,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12742','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',50,'pan_number','PAN Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12743','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',51,'passport_number','Passport Number',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12744','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',52,'employee_profile','Employee Profile',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12745','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',53,'date_of_issue','Date of Issue',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12746','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',54,'valid_upto','Valid Upto',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12747','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',55,'salary_structure','Salary Structure',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12748','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',56,'place_of_issue','Place of Issue',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12749','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',57,'marital_status','Marital Status',NULL,'Select',NULL,'\nSingle\nMarried\nDivorced\nWidowed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12750','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',58,'blood_group','Blood Group',NULL,'Select',NULL,'\nA+\nA-\nB+\nB-\nAB+\nAB-\nO+\nO-',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12751','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',59,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12752','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',60,'family_background','Family Background',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Here you can maintain family details like name and occupation of parent, spouse and children','White:FFF',NULL,NULL,NULL),('FL12753','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',61,'health_details','Health Details',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Here you can maintain height, weight, allergies, medical concerns etc','White:FFF',NULL,NULL,NULL),('FL12754','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',62,'educational_qualification','Educational Qualification',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12755','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',63,'educational_qualification_details','Educational Qualification Details',NULL,'Table',NULL,'Employee Education',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12756','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',64,'career_history','Career History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12757','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',65,'previous_work_experience','Previous Work Experience',NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12758','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',66,'previous_experience_details','Employee External Work History',NULL,'Table',NULL,'Employee External Work History',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12759','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',67,'history_in_company','History In Company',NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12760','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',68,'experience_in_company_details','Employee Internal Work Historys',NULL,'Table',NULL,'Employee Internal Work History',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12761','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',69,'exit','Exit',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12762','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',70,'column_break7',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12763','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',71,'resignation_letter_date','Resignation Letter Date','resignation_letter_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12764','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',72,'relieving_date','Relieving Date','relieving_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12765','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',73,'reason_for_leaving','Reason for Leaving','reason_for_leaving','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12766','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',74,'leave_encashed','Leave Encashed?','leave_encashed','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12767','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',75,'encashment_date','Encashment Date','encashment_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12768','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',76,'exit_interview_details','Exit Interview Details','col_brk6','Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12769','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',77,'held_on','Held On','held_on','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12770','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',78,'reason_for_resignation','Reason for Resignation','reason_for_resignation','Select','Select','\nBetter Prospects\nHealth Concerns',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12771','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',79,'new_workplace','New Workplace','new_workplace','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12772','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',80,'feedback','Feedback','feedback','Small Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12773','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',81,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12774','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Employee','fields','DocType',82,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12775','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12776','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',2,'employee','Employee',NULL,'Link',NULL,'Employee',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12777','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',3,'employee_name','Employee Name',NULL,'Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12778','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',4,'leave_type','Leave Type',NULL,'Select',NULL,'link:Leave Type',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12779','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',5,'leave_balance','Leave Balance',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12780','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',6,'posting_date','Posting Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Today',NULL,'White:FFF',NULL,NULL,NULL),('FL12781','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',7,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12782','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',8,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12783','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',9,'half_day','Half Day',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12784','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',10,'from_date','From Date',NULL,'Date',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12785','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',11,'to_date','To Date',NULL,'Date',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12786','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',12,'total_leave_days','Total Leave Days',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12787','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',13,'description','Description',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12788','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',14,'letter_head','Letter Head',NULL,'Link',NULL,'Letter Head',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12789','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',15,'amended_from','Amended From',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12790','2012-10-02 13:18:12','2012-10-02 13:18:12','Administrator','Administrator',0,'Leave Application','fields','DocType',16,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12791','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',1,'contact_details','Contact Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12792','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12793','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',3,'first_name','First Name','first_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12794','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',4,'last_name','Last Name','last_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12795','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',5,'customer','Customer','customer','Link','Link','Customer',NULL,NULL,0,NULL,NULL,NULL,NULL,'Client','eval:!doc.supplier && !doc.sales_partner',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12796','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',6,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.supplier && !doc.sales_partner',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12797','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',7,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client','eval:!doc.customer && !doc.sales_partner',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12798','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',8,'supplier_name','Supplier Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'eval:!doc.customer && !doc.sales_partner',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12799','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',9,'sales_partner','Sales Partner',NULL,'Link',NULL,'Sales Partner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.customer && !doc.supplier',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12800','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',10,'is_primary_contact','Is Primary Contact','is_primary_contact','Check','Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:(doc.customer || doc.supplier || doc.sales_partner)',0,NULL,'0',NULL,'White:FFF',NULL,NULL,NULL),('FL12801','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12802','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',12,'email_id','Email Id','email_id','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12803','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',13,'phone','Phone','contact_no','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12804','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',14,'mobile_no','Mobile No','mobile_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12805','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',15,'department','Department',NULL,'Data',NULL,'Suggest',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter department to which this Contact belongs','White:FFF',NULL,NULL,NULL),('FL12806','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',16,'designation','Designation',NULL,'Data',NULL,'Suggest',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter designation of this Contact','White:FFF',NULL,NULL,NULL),('FL12807','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',17,'unsubscribed','Unsubscribed',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12808','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Contact','fields','DocType',18,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12809','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Rename Tool','fields','DocType',1,'select_doctype','Select DocType',NULL,'Select',NULL,'\nAccount\nCompany\nCustomer\nSupplier\nEmployee\nWarehouse\nItem\nProfile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12810','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Rename Tool','fields','DocType',2,'document_to_rename','Document to rename',NULL,'Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12811','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Rename Tool','fields','DocType',3,'new_name','New Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12812','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Rename Tool','fields','DocType',4,'rename','Rename',NULL,'Button',NULL,'rename',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12813','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',1,'question','Question','question','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12814','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',2,'points','Points',NULL,'Int',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12815','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',3,'answer','Answer','answer','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12816','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',4,'_user_tags','User Tags',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12817','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',5,'tag_1','Tag 1','tag_1','Link','Link','Question Tag',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12818','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',6,'_users_voted','Users Voted',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12819','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',7,'tag_2','Tag 2','tag_2','Link','Link','Question Tag',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12820','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',8,'tag_3','Tag 3','tag_3','Link','Link','Question Tag',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12821','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Question','fields','DocType',9,'file_list','File List','file_list','Text','Text',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12822','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',1,'packing_slip_details','Packing Slip Items',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12823','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12824','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',3,'delivery_note','Delivery Note',NULL,'Link',NULL,'Delivery Note',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Indicates that the package is a part of this delivery','White:FFF',NULL,NULL,NULL),('FL12825','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',4,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12826','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',5,'naming_series','Series',NULL,'Select',NULL,'PS',NULL,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12827','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',6,'section_break0',NULL,NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12828','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',7,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12829','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',8,'from_case_no','From Package No.',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,'50px',NULL,'Identification of the package for the delivery (for print)','White:FFF',NULL,NULL,NULL),('FL12830','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',9,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12831','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',10,'to_case_no','To Package No.',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,'50px',NULL,'If more than one package of the same type (for print)','White:FFF',NULL,NULL,NULL),('FL12832','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',11,'package_item_details','Package Item Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12833','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',12,'item_details','Items',NULL,'Table',NULL,'Packing Slip Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12834','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',13,'package_weight_details','Package Weight Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12835','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',14,'net_weight_pkg','Net Weight',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'The net weight of this package. (calculated automatically as sum of net weight of items)','White:FFF',NULL,NULL,NULL),('FL12836','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',15,'net_weight_uom','Net Weight UOM',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12837','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',16,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12838','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',17,'gross_weight_pkg','Gross Weight',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The gross weight of the package. Usually net weight + packaging material weight. (for print)','White:FFF',NULL,NULL,NULL),('FL12839','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',18,'gross_weight_uom','Gross Weight UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12840','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',19,'misc_details','Misc Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12841','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',20,'amended_from','Amended From',NULL,'Link',NULL,'Packing Slip',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12842','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Packing Slip','fields','DocType',21,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12843','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12844','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12845','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','DN',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL12846','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',4,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12847','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',5,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12848','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',6,'customer_address','Select Shipping Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12849','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',7,'address_display','Shipping Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12850','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',8,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12851','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',9,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12852','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',10,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12853','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12854','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',12,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,0,NULL,1,1,NULL,NULL,NULL,0,'100px','Today','The date at which current entry will get or has actually executed.','White:FFF',NULL,1,NULL),('FL12855','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',13,'challan_no','Challan No','challan_no','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12856','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',14,'challan_date','Challan Date','challan_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12857','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',15,'po_no','P.O. No','po_no','Data','Data',NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12858','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',16,'po_date','P.O. Date','po_date','Data','Data',NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,'eval:doc.po_no',1,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12859','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',17,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12860','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',18,'delivery_note_details','Delivery Note Items','delivery_note_details','Table','Table','Delivery Note Item',NULL,NULL,0,NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12861','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',19,'sales_bom_help','Sales BOM Help',NULL,'HTML',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12862','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',20,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12863','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',21,'col_break24',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12864','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',22,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12865','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',23,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12866','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',24,'col_break28',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12867','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',25,'sales_order_no','Sales Order No','sales_order_no','Link','Link','Sales Order',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'You can make a delivery note from multiple sales orders. Select sales orders one by one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL12868','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',26,'get_items','Get Items',NULL,'Button','Button','pull_sales_order_details',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12869','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',27,'sec_break25','Price List and Currency',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12870','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',28,'col_break23',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12871','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',29,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select the price list as entered in \"Price List\" master. This will pull the reference rates of items against this price list as specified in \"Item\" master.','White:FFF',NULL,NULL,NULL),('FL12872','2012-10-02 13:18:14','2012-10-02 13:18:14','Administrator','Administrator',0,'Delivery Note','fields','DocType',30,'price_list_currency','Price List Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select the currency in which price list is maintained','White:FFF',NULL,NULL,NULL),('FL12873','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',31,'plc_conversion_rate','Price List Currency Conversion Rate',NULL,'Float',NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which Price list currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12874','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',32,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12875','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',33,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Customer\'s Currency','White:FFF',NULL,NULL,NULL),('FL12876','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',34,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,'1.00','Rate at which customer\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL12877','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',35,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12878','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',36,'charge','Taxes and Charges','charge','Link','Link','Sales Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you have created a standard template in Sales Taxes and Charges Master, select one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL12879','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',37,'get_charges','Get Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12880','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',38,'other_charges','Sales Taxes and Charges','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12881','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',39,'other_charges_total','Taxes and Charges Total','other_charges_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12882','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',40,'calculate_charges','Calculate Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12883','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',41,'other_charges_calculation','Taxes and Charges Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12884','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',42,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12885','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',43,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,0,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12886','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',44,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12887','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',45,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,1,'200px',NULL,'In Words will be visible once you save the Delivery Note.','White:FFF',NULL,NULL,NULL),('FL12888','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',46,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12889','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',47,'grand_total_export','Grand Total (Export)','grand_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12890','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',48,'rounded_total_export','Rounded Total (Export)','rounded_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12891','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',49,'in_words_export','In Words (Export)','in_words_export','Data','Data',NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,'150px',NULL,'In Words (Export) will be visible once you save the Delivery Note.','White:FFF',NULL,NULL,NULL),('FL12892','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',50,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12893','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',51,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12894','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',52,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,1,NULL,NULL,NULL,NULL,'Server',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12895','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',53,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12896','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',54,'terms','Terms and Conditions Details','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12897','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',55,'transporter_info','Transporter Info',NULL,'Section Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12898','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',56,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12899','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',57,'transporter_name','Transporter Name','transporter_name','Data','Data',NULL,NULL,NULL,1,NULL,0,0,NULL,'Client',NULL,0,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12900','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',58,'col_break34',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12901','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',59,'lr_no','LR No','lr_no','Data','Data',NULL,NULL,NULL,1,NULL,0,0,NULL,NULL,NULL,0,'100px',NULL,'Transporter lorry number','White:FFF',NULL,NULL,NULL),('FL12902','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',60,'lr_date','LR Date','lr_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'100px','Today','Date on which lorry started from your warehouse','White:FFF',NULL,NULL,NULL),('FL12903','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',61,'contact_info','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12904','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',62,'col_break20',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12905','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',63,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12906','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',64,'col_break21',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12907','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',65,'territory','Territory',NULL,'Link',NULL,'Territory',1,0,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12908','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',66,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12909','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',67,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filling in Additional Information about the Delivery Note will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL12910','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',68,'posting_time','Posting Time','posting_time','Time','Time',NULL,0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'100px',NULL,'Time at which items were delivered from warehouse','White:FFF',NULL,0,NULL),('FL12911','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',69,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,'150px','Draft',NULL,NULL,NULL,1,NULL),('FL12912','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',70,'letter_head','Letter Head','letter_head','Select','Link','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12913','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',71,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12914','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',72,'project_name','Project Name','project_name','Link','Link','Project',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Track this Delivery Note against any Project','White:FFF',NULL,1,NULL),('FL12915','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',73,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12916','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',74,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Campaign\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12917','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',75,'print_without_amount','Print Without Amount','print_without_amount','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12918','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',76,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12919','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',77,'per_billed','% Amount Billed','per_billed','Currency','Currency',NULL,1,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials billed against this Delivery Note','White:FFF',NULL,1,NULL),('FL12920','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',78,'billing_status','Billing Status',NULL,'Select',NULL,'\nNot Billed\nPartly Billed\nFully Billed',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12921','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',79,'per_installed','% Installed','per_installed','Currency','Currency',NULL,1,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials delivered against this Delivery Note','White:FFF',NULL,1,NULL),('FL12922','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',80,'installation_status','Installation Status',NULL,'Select',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12923','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',81,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,0,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12924','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',82,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL12925','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',83,'to_warehouse','To Warehouse','to_warehouse','Link','Link','Warehouse',NULL,0,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Required only for sample item.','White:FFF',NULL,NULL,NULL),('FL12926','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',84,'excise_page','Excise Page Number','excise_page','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12927','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',85,'instructions','Instructions','instructions','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12928','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',86,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL12929','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',87,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12930','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',88,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12931','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',89,'packing_list','Packing List',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12932','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',90,'packing_details','Packing Details','packing_details','Table','Table','Delivery Note Packing Item',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12933','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',91,'sales_team_section_break','Sales Team',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12934','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',92,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12935','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',93,'sales_partner','Sales Partner','sales_partner','Link','Link','Sales Partner',NULL,NULL,1,NULL,NULL,0,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12936','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',94,'column_break7',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12937','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',95,'commission_rate','Commission Rate (%)','commission_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL12938','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',96,'total_commission','Total Commission','total_commission','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12939','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',97,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12940','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',98,'sales_team','Sales Team1','sales_team','Table','Table','Sales Team',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12941','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Delivery Note','fields','DocType',99,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12942','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',1,'details','Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12943','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12944','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',3,'status','Status','status','Select','Select','\nIn Store\nDelivered\nNot in Use\nPurchase Returned',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'In Store',NULL,NULL,NULL,1,NULL),('FL12945','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',4,'serial_no','Serial No','serial_no','Data','Data',NULL,1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12946','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',5,'item_code','Item Code','item_code','Link','Link','Item',0,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12947','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12948','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',7,'item_name','Item Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12949','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',8,'description','Description','description','Text','Text',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,1,NULL),('FL12950','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',9,'item_group','Item Group','item_group','Link','Link','Item Group',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12951','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',10,'brand','Brand','brand','Link','Link','Brand',0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12952','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',11,'purchase_details','Purchase Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12953','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',12,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12954','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',13,'purchase_document_type','Purchase Document Type',NULL,'Select',NULL,'\nPurchase Receipt\nStock Entry',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12955','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',14,'purchase_document_no','Purchase Document No',NULL,'Data',NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12956','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',15,'purchase_date','Purchase Date','purchase_date','Date','Date',NULL,0,NULL,NULL,NULL,0,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12957','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',16,'purchase_time','Incoming Time',NULL,'Time',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12958','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',17,'purchase_rate','Incoming Rate','purchase_rate','Currency','Currency',NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL12959','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',18,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12960','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',19,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',1,NULL,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12961','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',20,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12962','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',21,'supplier_name','Supplier Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12963','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',22,'address_display','Supplier Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12964','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',23,'delivery_details','Delivery Details',NULL,'Section Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12965','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',24,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12966','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',25,'delivery_document_type','Delivery Document Type',NULL,'Select',NULL,'\nDelivery Note\nSales Invoice\nStock Entry',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12967','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',26,'delivery_document_no','Delivery Document No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12968','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',27,'customer_address','Customer Address','customer_address','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12969','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',28,'delivery_date','Delivery Date','delivery_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12970','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',29,'delivery_time','Delivery Time',NULL,'Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12971','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',30,'is_cancelled','Is Cancelled','is_cancelled','Select','Select','\nYes\nNo',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12972','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',31,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12973','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',32,'customer','Customer','customer','Link','Link','Customer',0,NULL,1,NULL,NULL,1,NULL,'Client',NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12974','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',33,'customer_name','Customer Name','customer_name','Data','Data',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL12975','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',34,'delivery_address','Delivery Address',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12976','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',35,'territory','Territory','territory','Link','Link','Territory',NULL,NULL,1,0,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12977','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',36,'warranty_amc_details','Warranty / AMC Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12978','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',37,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12979','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',38,'maintenance_status','Maintenance Status','maintenance_status','Select','Select','\nUnder Warranty\nOut of Warranty\nUnder AMC\nOut of AMC',1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12980','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',39,'warranty_period','Warranty Period (Days)','warranty_period','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL12981','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',40,'column_break7',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL12982','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',41,'warranty_expiry_date','Warranty Expiry Date','warranty_expiry_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12983','2012-10-02 13:18:15','2012-10-02 13:18:15','Administrator','Administrator',0,'Serial No','fields','DocType',42,'amc_expiry_date','AMC Expiry Date','amc_expiry_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL12984','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',43,'more_info','More Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12985','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',44,'serial_no_details','Serial No Details',NULL,'Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12986','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',45,'company','Company',NULL,'Select',NULL,'link:Company',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12987','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',46,'fiscal_year','Fiscal Year',NULL,'Select',NULL,'link:Fiscal Year',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL12988','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',47,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12989','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',48,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12990','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Serial No','fields','DocType',49,'sle_exists','SLE Exists',NULL,'Check',NULL,NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12991','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Landed Cost Master','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12992','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Landed Cost Master','fields','DocType',2,'title','Title','title','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12993','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Landed Cost Master','fields','DocType',3,'landed_cost_details','Landed Cost Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12994','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Landed Cost Master','fields','DocType',4,'landed_cost','Landed Cost','landed_cost','Table','Table','Landed Cost Master Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12995','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',1,'return_date','Return Date','return_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12996','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',2,'return_type','Return Type','return_type','Select','Select','\nSales Return\nPurchase Return',NULL,NULL,NULL,NULL,1,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12997','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',3,'delivery_note_no','Delivery Note No','delivery_note_no','Link','Link','Delivery Note',NULL,1,NULL,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12998','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',4,'sales_invoice_no','Sales Invoice No',NULL,'Link',NULL,'Sales Invoice',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL12999','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',5,'purchase_receipt_no','Purchase Receipt No','purchase_receipt_no','Link','Link','Purchase Receipt',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13000','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',6,'cust_supp','Customer/Supplier',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13001','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',7,'cust_supp_name','Cust/Supp Name',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13002','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',8,'cust_supp_address','Cust/Supp Address',NULL,'Small Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13003','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',9,'get_items','Get Items',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13004','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',10,'return_details','Sales and Purchase Return Items','return_details','Table','Table','Sales and Purchase Return Item',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13005','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',11,'make_stock_entry','Make Stock Entry',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13006','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',12,'make_excise_invoice','Make Excise Invoice',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13007','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',13,'make_credit_note','Make Credit Note',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13008','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','fields','DocType',14,'make_debit_note','Make Debit Note',NULL,'Button','Button',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13009','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Sales BOM','fields','DocType',1,'basic_section','Sales BOM Item',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13010','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Sales BOM','fields','DocType',2,'new_item_code','Parent Item','new_item_code','Link','Data','Item',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'The Item that represents the Package. This Item must have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\"','White:FFF',NULL,NULL,NULL),('FL13011','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Sales BOM','fields','DocType',3,'item_section','Package Items',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'List items that form the package.','White:FFF',NULL,NULL,NULL),('FL13012','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Sales BOM','fields','DocType',4,'sales_bom_items','Sales BOM Items','sales_bom_items','Table','Table','Sales BOM Item',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13013','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',1,'process','Process',NULL,'HTML',NULL,'
    Process:
    1. Fetch and select Purchase Receipt
    2. Enter extra costs
    3. Click on Update Landed Cost button
    4. Cost will be added into other charges table of selected PR proportionately based on net total
    5. Item Valuation Rate will be recalculated
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13014','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',2,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13015','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',3,'from_pr_date','From PR Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13016','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',4,'to_pr_date','To PR Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13017','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',5,'currency','Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13018','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',6,'get_purchase_receipt','Get Purchase Receipt',NULL,'Button',NULL,'get_purchase_receipts',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13019','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',7,'lc_pr_details','Landed Cost Purchase Receipts',NULL,'Table',NULL,'Landed Cost Purchase Receipt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13020','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',8,'section_break1',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13021','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',9,'landed_cost','Select Landed Cost Items Master',NULL,'Link',NULL,'Landed Cost Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13022','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',10,'get_details','Get Details',NULL,'Button',NULL,'get_landed_cost_master_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13023','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',11,'landed_cost_details','Landed Cost Items',NULL,'Table',NULL,'Landed Cost Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13024','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','fields','DocType',12,'update_pr','Update PR',NULL,'Button',NULL,'update_landed_cost',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13025','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',1,'barcode','Barcode',NULL,'Data',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13026','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL13027','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',3,'customer_item_code','Customer\'s Item Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13028','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',4,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13029','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',5,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13030','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',6,'qty','Quantity','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL13031','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',7,'stock_uom','UOM','stock_uom','Data','Data',NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,1,'50px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13032','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',8,'ref_rate','Price List Rate','ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,0,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL13033','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',9,'adj_rate','Discount (%)','adj_rate','Float','Float',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px','0.00',NULL,NULL,NULL,NULL,NULL),('FL13034','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',10,'export_rate','Rate','export_rate','Currency','Currency',NULL,NULL,NULL,0,NULL,0,NULL,NULL,'Client',NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13035','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',11,'export_amount','Amount','export_amount','Currency','Currency',NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13036','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',12,'base_ref_rate','Price List Rate*','base_ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13037','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',13,'basic_rate','Rate*','basic_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'150px','0.00',NULL,NULL,NULL,NULL,NULL),('FL13038','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',14,'amount','Amount*','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13039','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',15,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13040','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',16,'serial_no','Serial No','serial_no','Text','Text',NULL,NULL,NULL,0,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13041','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',17,'batch_no','Batch No','batch_no','Link','Link','Batch',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13042','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',18,'item_group','Item Group','item_group','Link','Link','Item Group',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13043','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',19,'brand','Brand Name','brand','Link','Link','Brand',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13044','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',20,'actual_qty','Available Qty at Warehouse','actual_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13045','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',21,'billed_amt','Billed Amt',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13046','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',22,'installed_qty','Installed Qty','installed_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13047','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',23,'packed_qty','Packed Quantity',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,NULL,1,NULL,'0',NULL,'White:FFF',NULL,NULL,NULL),('FL13048','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',24,'prevdoc_doctype','Document Type','prevdoc_doctype','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL13049','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',25,'prevdoc_docname','Against Document No','prevdoc_docname','Data','Data',NULL,1,0,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13050','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',26,'prevdoc_date','Against Document Date','prevdoc_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13051','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',27,'prevdoc_detail_docname','Against Document Detail No','prevdoc_detail_docname','Data','Data',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL13052','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',28,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13053','2012-10-02 13:18:16','2012-10-02 13:18:16','Administrator','Administrator',0,'Delivery Note Item','fields','DocType',29,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13054','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',1,'col1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13055','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',2,'naming_series','Series','naming_series','Select','Select','\nSTE',0,0,1,0,1,1,0,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,0,NULL),('FL13056','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',3,'purpose','Purpose','purpose','Select','Select','Material Issue\nMaterial Receipt\nMaterial Transfer\nSales Return\nPurchase Return\nSubcontracting\nProduction Order\nOther',0,0,0,0,1,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13057','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',4,'delivery_note_no','Delivery Note No','delivery_note_no','Link','Link','Delivery Note',1,1,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13058','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',5,'purchase_receipt_no','Purchase Receipt No','purchase_receipt_no','Link','Link','Purchase Receipt',1,1,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13059','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',6,'sales_invoice_no','Sales Invoice No',NULL,'Link',NULL,'Sales Invoice',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13060','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',7,'process','Process','process','Select','Select','\nMaterial Transfer\nBackflush',0,1,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13061','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',8,'production_order','Production Order','production_order','Link','Link','Production Order',1,1,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13062','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',9,'bom_no','BOM No',NULL,'Link',NULL,'BOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.purpose == \'Other\'',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13063','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',10,'consider_sa_items_as_raw_materials','Consider SA Items as Raw Materials',NULL,'Select',NULL,'\nNo\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.purpose == \'Other\'',0,NULL,NULL,'Select \"Yes\" if stock is maintained and tracked for sub-assembly items. Select \"No\" if you want child items of sub-assembly for material transfer.','White:FFF',NULL,NULL,NULL),('FL13064','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',11,'fg_completed_qty','FG Completed Qty','fg_completed_qty','Currency','Currency',NULL,0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13065','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',12,'get_items','Get Items',NULL,'Button','Button','get_items',0,0,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13066','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',13,'warehouse_html','Warehouse HTML',NULL,'HTML','HTML','
    Warehouse
    ',NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13067','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',14,'from_warehouse','Source Warehouse','from_warehouse','Link','Link','Warehouse',0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13068','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',15,'to_warehouse','Target Warehouse','to_warehouse','Link','Link','Warehouse',0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,'Notes: Either Source or Target is Mandatory','White:FFF',NULL,0,NULL),('FL13069','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',16,'col2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13070','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',17,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,0,1,0,1,1,0,NULL,NULL,0,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL13071','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',18,'posting_time','Posting Time','posting_time','Time','Time',NULL,0,0,1,0,1,1,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13072','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',19,'remarks','Remarks','remarks','Text','Text',NULL,0,0,1,0,1,1,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13073','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',20,'items_section','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13074','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',21,'mtn_details','MTN Details','mtn_details','Table','Table','Stock Entry Detail',0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13075','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',22,'item_section',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13076','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',23,'total_amount','Total Amount','total_amount','Currency','Currency',NULL,0,0,1,0,0,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13077','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',24,'col3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13078','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',25,'get_stock_and_rate','Get Stock and Rate',NULL,'Button','Button','get_stock_and_rate',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13079','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',26,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13080','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',27,'supplier','Supplier','supplier','Link','Link','Supplier',0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13081','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',28,'supplier_name','Supplier Name','supplier_name','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13082','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',29,'supplier_address','Supplier Address','supplier_address','Small Text','Small Text',NULL,0,0,0,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13083','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',30,'customer','Customer','customer','Link','Link','Customer',0,0,1,0,0,0,0,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13084','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',31,'customer_name','Customer Name','customer_name','Data','Data',NULL,0,0,0,0,0,0,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13085','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',32,'customer_address','Customer Address','customer_address','Small Text','Small Text',NULL,0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13086','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',33,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13087','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',34,'col4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13088','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',35,'project_name','Project Name','project_name','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13089','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',36,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',0,0,0,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13090','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',37,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,0,1,1,0,0,1,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13091','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',38,'transfer_date','Transfer Date','transfer_date','Date','Date',NULL,0,0,0,0,1,1,0,NULL,NULL,0,NULL,'Today',NULL,NULL,NULL,1,NULL),('FL13092','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',39,'col5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13093','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',40,'is_excisable_goods','Is Excisable Goods','is_excisable_goods','Select','Select','\nYes\nNo',0,0,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13094','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',41,'excisable_goods','Excisable Goods','excisable_goods','Select','Select','\nReturnable\nNon-Returnable',0,0,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13095','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',42,'under_rule','Under Rule','under_rule','Select','Select','\nOrdinary\n57 AC (5) a\n57 F (2) Non-Exc.',0,1,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13096','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',43,'transporter','Transporter','transporter','Data','Data',NULL,0,0,1,0,0,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13097','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',44,'company','Company','company','Link','Link','Company',0,0,1,0,1,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13098','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',45,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,0,1,0,1,0,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13099','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',46,'amended_from','Amended From','amended_from','Link','Link','Stock Entry',0,0,1,0,0,1,0,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13100','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Stock Entry','fields','DocType',47,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,0,0,1,0,0,1,0,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,0,NULL),('FL13101','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',1,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13102','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',2,'warehouse_type','Warehouse Type','warehouse_type','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13103','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',3,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13104','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',4,'reserved_qty','Reserved Quantity','reserved_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,0,NULL),('FL13105','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',5,'actual_qty','Actual Quantity','actual_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,1,NULL),('FL13106','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',6,'ordered_qty','Ordered Quantity','ordered_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,0,NULL),('FL13107','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',7,'indented_qty','Quantity Requested for Purchase','indented_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'0.00',NULL,NULL,NULL,0,NULL),('FL13108','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',8,'planned_qty','Planned Qty','planned_qty','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13109','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',9,'projected_qty','Projected Qty','projected_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13110','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',10,'ma_rate','Moving Average Rate','ma_rate','Currency','Currency',NULL,0,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13111','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',11,'stock_uom','UOM','stock_uom','Data','Data',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13112','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',12,'fcfs_rate','FCFS Rate','fcfs_rate','Currency','Currency',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13113','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',13,'valuation_rate','Valuation Rate','valuation_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13114','2012-10-02 13:18:17','2012-10-02 13:18:17','Administrator','Administrator',0,'Bin','fields','DocType',14,'stock_value','Stock Value','stock_value','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13115','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',1,'steps','Steps',NULL,'HTML',NULL,'
    Steps:
    1. Enter Reconciliation Date and Time
    2. Save the document
    3. Attach csv file as per template.
    4. Submit the document
    5. Enter tilde (~) sign if no difference in qty or valuation rate
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13116','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',2,'reconciliation_date','Reconciliation Date','reconciliation_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13117','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',3,'reconciliation_time','Reconciliation Time','reconciliation_time','Time','Time',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13118','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',4,'remark','Remark','remark','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13119','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',5,'download_template','Download Template',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13120','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',6,'file_list','File List','file_list','Text','Text',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13121','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',7,'diff_info','Diff Info',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13122','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',8,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL13123','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Stock Reconciliation','fields','DocType',9,'amended_from','Amended From',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13124','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13125','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13126','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','\nGRN',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL13127','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',4,'supplier','Supplier','supplier','Link','Link','Supplier',1,NULL,1,NULL,1,NULL,0,'Client',NULL,0,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13128','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',5,'supplier_name','Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13129','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',6,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13130','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',7,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13131','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',8,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13132','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',9,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13133','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',10,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13134','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',11,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,1,NULL,1,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry will get or has actually executed.','White:FFF',NULL,1,NULL),('FL13135','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',12,'posting_time','Posting Time','posting_time','Time','Time',NULL,0,NULL,1,NULL,1,1,NULL,NULL,NULL,0,'100px',NULL,'Time at which materials were received','White:FFF',NULL,0,NULL),('FL13136','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',13,'challan_no','Challan No','challan_no','Data','Data',NULL,NULL,1,0,NULL,0,1,NULL,NULL,NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13137','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',14,'challan_date','Challan Date','challan_date','Date','Date',NULL,NULL,1,0,NULL,0,1,NULL,NULL,NULL,0,'100px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13138','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',15,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13139','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',16,'purchase_receipt_details','Purchase Receipt Items','purchase_receipt_details','Table','Table','Purchase Receipt Item',NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13140','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',17,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13141','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',18,'net_total','Net Total','net_total','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13142','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',19,'net_total_import','Net Total (Import)','net_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13143','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',20,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13144','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',21,'get_current_stock','Get Current Stock',NULL,'Button','Button','get_current_stock',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13145','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',22,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13146','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',23,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Supplier\'s currency','White:FFF',NULL,NULL,NULL),('FL13147','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',24,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,'1.00','Rate at which supplier\'s currency is converted to company\'s base currency','White:FFF',NULL,NULL,NULL),('FL13148','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',25,'purchase_order_no','Purchase Order','purchase_order_no','Link','Link','Purchase Order',NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'You can make a purchase receipt from multiple purchase orders. Select purchase orders one by one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL13149','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',26,'pull_purchase_order_details','Pull Purchase Order Details',NULL,'Button','Button','get_po_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13150','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',27,'taxes','Taxes',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add / Edit Taxes and Charges','White:FFF',NULL,NULL,NULL),('FL13151','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',28,'purchase_other_charges','Purchase Taxes and Charges','purchase_other_charges','Link','Link','Purchase Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you have created a standard template in Purchase Taxes and Charges Master, select one and click on the button below.','White:FFF',NULL,NULL,NULL),('FL13152','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',29,'get_tax_detail','Get Tax Detail',NULL,'Button','Button','get_purchase_tax_details',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13153','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',30,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13154','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',31,'calculate_tax','Calculate Tax',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13155','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',32,'total_tax','Total Tax','total_tax','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13156','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',33,'tax_calculation','Tax Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13157','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',34,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Detailed Breakup of the totals','White:FFF',NULL,NULL,NULL),('FL13158','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',35,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13159','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',36,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13160','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',37,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Purchase Receipt.','White:FFF',NULL,NULL,NULL),('FL13161','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',38,'other_charges_added','Taxes and Charges Added','other_charges_added','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13162','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',39,'other_charges_deducted','Taxes and Charges Deducted','other_charges_deducted','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13163','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',40,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13164','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',41,'grand_total_import','Grand Total (Import)','grand_total_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13165','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',42,'in_words_import','In Words (Import)','in_words_import','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13166','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',43,'other_charges_added_import','Taxes and Charges Added (Import)','other_charges_added_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13167','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',44,'other_charges_deducted_import','Taxes and Charges Deducted (Import)','other_charges_deducted_import','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13168','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',45,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add Terms and Conditions for the Purchase Receipt. You can also prepare a Terms and Conditions Master and use the Template.','White:FFF',NULL,NULL,NULL),('FL13169','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',46,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13170','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',47,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13171','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',48,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13172','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',49,'terms','Terms and Conditions1','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13173','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',50,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13174','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',51,'supplier_address','Supplier Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13175','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',52,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13176','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',53,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Filing in Additional Information about the Purchase Receipt will help you analyze your data better.','White:FFF',NULL,NULL,NULL),('FL13177','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',54,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCancelled',1,NULL,1,NULL,1,1,NULL,NULL,NULL,1,'150px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13178','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',55,'per_billed','% Billed','per_billed','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,'% of materials billed against this Purchase Receipt','White:FFF',NULL,NULL,NULL),('FL13179','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',56,'is_subcontracted','Is Subcontracted','is_subcontracted','Select','Select','\nYes\nNo',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No','Select \"Yes\" for sub - contracting items','White:FFF',NULL,NULL,NULL),('FL13180','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',57,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13181','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',58,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL13182','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',59,'range','Range','range','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13183','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',60,'bill_no','Bill No','bill_no','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13184','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',61,'bill_date','Bill Date','bill_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13185','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',62,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13186','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',63,'company','Company','company','Link','Link','Company',1,0,1,NULL,1,0,NULL,NULL,NULL,0,'150px',NULL,'Select the relevant company name if you have multiple companies','White:FFF',NULL,1,NULL),('FL13187','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',64,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,1,NULL),('FL13188','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',65,'column_break4',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13189','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',66,'other_details','Other Details',NULL,'HTML','HTML','
    Other Details
    ',NULL,1,1,NULL,0,NULL,NULL,NULL,NULL,0,'30%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13190','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',67,'rejected_warehouse','Rejected Warehouse','rejected_warehouse','Link','Link','Warehouse',NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,'Warehouse where you are maintaining stock of rejected items','White:FFF',NULL,NULL,NULL),('FL13191','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',68,'supplier_warehouse','Supplier Warehouse','supplier_warehouse','Link','Link','Warehouse',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'50px',NULL,'Supplier warehouse where you have issued raw materials for sub - contracting','White:FFF',NULL,NULL,NULL),('FL13192','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',69,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,0,1,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13193','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',70,'instructions','Instructions','instructions','Small Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13194','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',71,'remarks','Remarks',NULL,'Small Text',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13195','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',72,'transporter_info','Transporter Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13196','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',73,'transporter_name','Transporter Name','transporter_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13197','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',74,'lr_no','LR No','lr_no','Data','Data',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'Transporter lorry number','White:FFF',NULL,NULL,NULL),('FL13198','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',75,'lr_date','LR Date','lr_date','Date','Date',NULL,NULL,NULL,0,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,'Date on which lorry started from supplier warehouse','White:FFF',NULL,NULL,NULL),('FL13199','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',76,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13200','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',77,'raw_material_details','Raw Material Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Following table will show values if items are sub - contracted. These values will be fetched from the master of \"Bill of Materials\" of sub - contracted items.','White:FFF',NULL,NULL,NULL),('FL13201','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',78,'pr_raw_material_details','Purchase Receipt Item Supplieds','pr_raw_material_details','Table','Table','Purchase Receipt Item Supplied',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13202','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Purchase Receipt','fields','DocType',79,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13203','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',1,'warehouse_detail','Warehouse Detail',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13204','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',2,'warehouse_name','Warehouse Name','warehouse_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13205','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',3,'warehouse_type','Warehouse Type','warehouse_type','Link','Link','Warehouse Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13206','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',4,'company','Company','company','Link','Link','Company',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13207','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',5,'warehouse_contact_info','Warehouse Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'For Reference Only.','White:FFF',NULL,NULL,NULL),('FL13208','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',6,'email_id','Email Id','email_id','Data','Data',NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13209','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',7,'phone_no','Phone No','phone_no','Data','Int','Phone',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13210','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',8,'mobile_no','Mobile No','mobile_no','Data','Int','Phone',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13211','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',9,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13212','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',10,'address_line_1','Address Line 1','address_line_1','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13213','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',11,'address_line_2','Address Line 2','address_line_2','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13214','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',12,'city','City','city','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13215','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',13,'state','State','state','Data','Select','Suggest',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13216','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',14,'pin','PIN','pin','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13217','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',15,'repost_stock','Repost Stock',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'For Admin use only. Please report errors to support@erpnext.com','White:FFF',NULL,NULL,NULL),('FL13218','2012-10-02 13:18:18','2012-10-02 13:18:18','Administrator','Administrator',0,'Warehouse','fields','DocType',16,'repost_stock_ledger','Repost Stock Ledger',NULL,'Button','Button','repost_stock',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13219','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',1,'parent_item','Parent Item','parent_item','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13220','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',2,'item_code','Item Code','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13221','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',3,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13222','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',4,'parent_detail_docname','Parent Detail docname','parent_detail_docname','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13223','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',5,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13224','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',6,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13225','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',7,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13226','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',8,'serial_no','Serial No',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13227','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',9,'batch_no','Batch No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13228','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',10,'actual_qty','Actual Qty','actual_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13229','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',11,'projected_qty','Projected Qty','projected_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13230','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',12,'uom','UOM','uom','Link','Link','UOM',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13231','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',13,'prevdoc_doctype','Prevdoc DocType','prevdoc_doctype','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13232','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Delivery Note Packing Item','fields','DocType',14,'page_break','Page Break','page_break','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13233','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',1,'item_code','Item','item_code','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13234','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',2,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13235','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13236','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',4,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13237','2012-10-02 13:18:19','2012-10-02 13:18:19','Administrator','Administrator',0,'Sales BOM Item','fields','DocType',5,'uom','UOM','uom','Link','Link','UOM',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13238','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges Master','fields','DocType',1,'title','Title','title','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13239','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges Master','fields','DocType',2,'is_default','Default',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13240','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges Master','fields','DocType',3,'other_charges','Sales Taxes and Charges Master','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'* Will be calculated in the transaction.','White:FFF',NULL,NULL,NULL),('FL13241','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges Master','fields','DocType',4,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13242','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Budget Distribution Detail','fields','DocType',1,'month','Month','month','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13243','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Budget Distribution Detail','fields','DocType',2,'percentage_allocation','Percentage Allocation','percentage_allocation','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13244','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',1,'sb0','Cost Center Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13245','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13246','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',3,'cost_center_name','Cost Center Name','cost_center_name','Data','Data',NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13247','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',4,'parent_cost_center','Parent Cost Center','parent_cost_center','Link','Link','Cost Center',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13248','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',5,'company_name','Company','company_name','Link','Link','Company',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13249','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',6,'company_abbr','Company Abbr','company_abbr','Data','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13250','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',7,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13251','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',8,'group_or_ledger','Group or Ledger','group_or_ledger','Select','Select','\nGroup\nLedger',NULL,0,1,1,1,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13252','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',9,'sb1','Budget',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Define Budget for this Cost Center. To set budget action, see Company Master','White:FFF',NULL,NULL,NULL),('FL13253','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',10,'distribution_id','Distribution Id','distribution_id','Link','Link','Budget Distribution',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Budget Distribution, if you want to track based on seasonality.','White:FFF',NULL,NULL,NULL),('FL13254','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',11,'budget_details','Budget Details','budget_details','Table','Table','Budget Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Add rows to set annual budgets on Accounts.','White:FFF',NULL,NULL,NULL),('FL13255','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',12,'lft','lft','lft','Int','Int',NULL,1,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13256','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',13,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,1,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13257','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Cost Center','fields','DocType',14,'old_parent','old_parent','old_parent','Link','Data','Cost Center',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13258','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',1,'charge_type','Type','charge_type','Select','Select','\nActual\nOn Net Total\nOn Previous Row Amount\nOn Previous Row Total',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13259','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',2,'account_head','Account Head','account_head','Link','Link','Account',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13260','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',3,'cost_center_other_charges','Cost Center','cost_center_other_charges','Link','Link','Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13261','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13262','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',5,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13263','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',6,'tax_amount','Amount','tax_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13264','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',7,'total','Total','total','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13265','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',8,'row_id','Enter Row','row_id','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13266','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',9,'item_wise_tax_detail','Item Wise Tax Detail ','item_wise_tax_detail','Small Text','Small Text',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13267','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',10,'parenttype','Parenttype','parenttype','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13268','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',11,'total_tax_amount','Total Tax Amount','total_tax_amount','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Cheating Field\nPlease do not delete ','White:FFF',NULL,NULL,NULL),('FL13269','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',12,'total_amount','Total Amount','total_amount','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Cheating Field\nPlease do not delete ',NULL,NULL,NULL,NULL),('FL13270','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Sales Taxes and Charges','fields','DocType',13,'included_in_print_rate','Is this Tax included in Basic Rate?',NULL,'Check',NULL,NULL,NULL,NULL,1,1,NULL,1,0,NULL,NULL,0,'150px',NULL,'If checked, the tax amount will be considered as already included in the Print Rate / Print Amount',NULL,NULL,NULL,0),('FL13271','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',1,'year_details','Fiscal Year Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13272','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',2,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13273','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',3,'year','Year Name','year','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'For e.g. 2012, 2012-13','White:FFF',NULL,NULL,NULL),('FL13274','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',4,'year_start_date','Year Start Date','year_start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13275','2012-10-02 13:18:20','2012-10-02 13:18:20','Administrator','Administrator',0,'Fiscal Year','fields','DocType',5,'is_fiscal_year_closed','Year Closed','is_fiscal_year_closed','Select','Select','\nNo\nYes',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,'No','Entries are not allowed against this Fiscal Year if the year is closed.','White:FFF',NULL,NULL,NULL),('FL13276','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13277','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13278','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','INV\nINV/10-11/',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL13279','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',4,'is_pos','Is POS','is_pos','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13280','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',5,'update_stock','Update Stock','update_stock','Check','Check',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.is_pos==1',0,NULL,'1',NULL,NULL,NULL,NULL,NULL),('FL13281','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',6,'debit_to','Debit To','debit_to','Link','Link','Account',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'The account to which you will pay (have paid) the money to.','White:FFF',NULL,1,NULL),('FL13282','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',7,'customer','Customer','customer','Link','Link','Customer',NULL,0,1,NULL,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13283','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',8,'customer_name','Name','customer_name','Data','Data',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13284','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',9,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13285','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',10,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13286','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',11,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13287','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',12,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13288','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',13,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13289','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',14,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,0,NULL,1,1,NULL,NULL,NULL,0,NULL,'Today','The date at which current entry will get or has actually executed.','White:FFF',NULL,1,NULL),('FL13290','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',15,'due_date','Due Date','due_date','Date','Date',NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,'Today','Enter the date by which payments from customer is expected against this invoice.','White:FFF',NULL,1,NULL),('FL13291','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',16,'mode_of_payment','Mode of Payment','mode_of_payment','Select','Select','link:Mode of Payment',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13292','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',17,'items','Items',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13293','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',18,'entries','Entries','entries','Table','Table','Sales Invoice Item',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13294','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',19,'sales_bom_help','Sales BOM Help',NULL,'HTML',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13295','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',20,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13296','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',21,'col_break26',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13297','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',22,'net_total','Net Total*','net_total','Currency','Currency',NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,'Will be calculated automatically when you enter the details',NULL,NULL,NULL,NULL),('FL13298','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',23,'recalculate_values','Re-Calculate Values',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13299','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',24,'col_break25',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13300','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',25,'sales_order_main','Sales Order','sales_order_main','Link','Link','Sales Order',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Items from Sales Order','White:FFF',NULL,NULL,NULL),('FL13301','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',26,'delivery_note_main','Delivery Note','delivery_note_main','Link','Link','Delivery Note',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Items from Delivery Note','White:FFF',NULL,NULL,NULL),('FL13302','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',27,'get_items','Get Items',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13303','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',28,'currency_section','Price List and Currency',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13304','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',29,'col_break27',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13305','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',30,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13306','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',31,'price_list_currency','Price List Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select the currency in which price list is maintained','White:FFF',NULL,NULL,NULL),('FL13307','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',32,'plc_conversion_rate','Price List Currency Conversion Rate',NULL,'Float',NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which Price list currency is converted to customer\'s base currency','White:FFF',NULL,NULL,NULL),('FL13308','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',33,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13309','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',34,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13310','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',35,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'1.00','Rate at which Customer Currency is converted to customer\'s base currency','White:FFF',NULL,NULL,NULL),('FL13311','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',36,'taxes','Taxes and Charges',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13312','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',37,'charge','Taxes and Charges','charge','Link','Link','Sales Taxes and Charges Master',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13313','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',38,'get_charges','Get Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13314','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',39,'other_charges','Taxes and Charges1','other_charges','Table','Table','Sales Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13315','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',40,'calculate_charges','Calculate Taxes and Charges',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13316','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',41,'other_charges_total','Total Taxes and Charges','other_charges_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13317','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',42,'other_charges_calculation','Taxes and Charges Calculation',NULL,'HTML','HTML',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13318','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',43,'totals','Totals',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13319','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',44,'column_break5',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13320','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',45,'grand_total','Grand Total','grand_total','Currency','Currency',NULL,0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13321','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',46,'rounded_total','Rounded Total','rounded_total','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13322','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',47,'in_words','In Words','in_words','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'In Words will be visible once you save the Sales Invoice.','White:FFF',NULL,NULL,NULL),('FL13323','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',48,'total_advance','Total Advance','total_advance','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13324','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',49,'outstanding_amount','Outstanding Amount','outstanding_amount','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13325','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',50,'column_break6',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13326','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',51,'grand_total_export','Grand Total (Export)','grand_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13327','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',52,'rounded_total_export','Rounded Total (Export)','rounded_total_export','Currency','Currency',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13328','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',53,'in_words_export','In Words (Export)','in_words_export','Data','Data',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13329','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',54,'gross_profit','Gross Profit','gross_profit','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13330','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',55,'gross_profit_percent','Gross Profit (%)','gross_profit_percent','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13331','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',56,'payments_section','Payments',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13332','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',57,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13333','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',58,'paid_amount','Paid Amount','paid_amount','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13334','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',59,'cash_bank_account','Cash/Bank Account','cash_bank_account','Link','Link','Account',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13335','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',60,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13336','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',61,'write_off_outstanding_amount_automatically','Write Off Outstanding Amount',NULL,'Check',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13337','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',62,'write_off_amount','Write Off Amount',NULL,'Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13338','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',63,'write_off_account','Write Off Account',NULL,'Link',NULL,'Account',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13339','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',64,'write_off_cost_center','Write Off Cost Center',NULL,'Link',NULL,'Cost Center',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13340','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',65,'terms_section_break','Terms and Conditions',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13341','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',66,'tc_name','Select Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13342','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',67,'get_terms','Get Terms and Conditions',NULL,'Button','Button','get_tc_details',NULL,NULL,1,NULL,NULL,NULL,NULL,'Server',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13343','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',68,'terms_html','Terms and Conditions HTML',NULL,'HTML','HTML','You can add Terms and Notes that will be printed in the Transaction',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13344','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',69,'terms','Terms and Conditions Details','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13345','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',70,'contact_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13346','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',71,'col_break23',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13347','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',72,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13348','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',73,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13349','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',74,'col_break24',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13350','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',75,'territory','Territory',NULL,'Link',NULL,'Territory',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13351','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',76,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',0,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13352','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',77,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13353','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',78,'column_break7',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13354','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',79,'is_opening','Is Opening','is_opening','Select','Select','No\nYes',0,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,'No',NULL,'White:FFF',NULL,1,NULL),('FL13355','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',80,'aging_date','Aging Date','aging_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13356','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',81,'posting_time','Posting Time','posting_time','Time','Time',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13357','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',82,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13358','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',83,'c_form_applicable','C-Form Applicable',NULL,'Select',NULL,'No\nYes',NULL,NULL,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13359','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',84,'c_form_no','C-Form No',NULL,'Link',NULL,'C-Form',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13360','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',85,'campaign','Campaign','campaign','Link','Link','Campaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:doc.source == \'Campaign\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13361','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',86,'project_name','Project Name','project_name','Link','Link','Project',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Track this Sales Invoice against any Project','White:FFF',NULL,1,NULL),('FL13362','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',87,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13363','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',88,'column_break8',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13364','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',89,'source','Source','source','Select','Select','\nExisting Customer\nReference\nAdvertisement\nCold Calling\nExhibition\nSupplier Reference\nMass Mailing\nCustomer\'s Vendor\nCampaign',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13365','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',90,'company','Company','company','Link','Link','Company',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13366','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',91,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,1,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13367','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',92,'amended_from','Amended From','amended_from','Link','Link','Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13368','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',93,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL13369','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',94,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13370','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',95,'remarks','Remarks','remarks','Small Text','Text',NULL,NULL,NULL,1,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13371','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',96,'advances','Advances',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13372','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',97,'get_advances_received','Get Advances Received',NULL,'Button','Button','get_advances',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13373','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',98,'advance_adjustment_details','Sales Invoice Advance','advance_adjustment_details','Table','Table','Sales Invoice Advance',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13374','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',99,'packing_list','Packing List',NULL,'Section Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13375','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',100,'packing_details','Packing Details',NULL,'Table',NULL,'Delivery Note Packing Item',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13376','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',101,'sales_team_section_break','Sales Team',NULL,'Section Break','Section Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13377','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',102,'column_break9',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13378','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',103,'sales_partner','Sales Partner','sales_partner','Link','Link','Sales Partner',NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13379','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',104,'column_break10',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13380','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',105,'commission_rate','Commission Rate (%)','commission_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13381','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',106,'total_commission','Total Commission','total_commission','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13382','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',107,'section_break2',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13383','2012-10-02 13:18:21','2012-10-02 13:18:21','Administrator','Administrator',0,'Sales Invoice','fields','DocType',108,'sales_team','Sales Team1','sales_team','Table','Table','Sales Team',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13384','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',109,'recurring_invoice','Recurring Invoice',NULL,'Section Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13385','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',110,'column_break11',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13386','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',111,'convert_into_recurring_invoice','Convert into Recurring Invoice',NULL,'Check',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,'Client','eval:doc.docstatus==1',0,NULL,NULL,'Check if recurring invoice, uncheck to stop recurring or put proper End Date','White:FFF',NULL,NULL,NULL),('FL13387','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',112,'recurring_type','Recurring Type',NULL,'Select',NULL,'Monthly\nQuarterly\nHalf-yearly\nYearly',NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'Select the period when the invoice will be generated automatically',NULL,NULL,NULL,NULL),('FL13388','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',113,'repeat_on_day_of_month','Repeat on Day of Month',NULL,'Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'The day of the month on which auto invoice will be generated e.g. 05, 28 etc ',NULL,NULL,NULL,NULL),('FL13389','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',114,'invoice_period_from_date','Invoice Period From Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'Start date of the invoice period','White:FFF',NULL,NULL,NULL),('FL13390','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',115,'invoice_period_to_date','Invoice Period To Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'End date of the invoice period',NULL,NULL,NULL,NULL),('FL13391','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',116,'column_break12',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13392','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',117,'notification_email_address','Notification Email Address',NULL,'Small Text',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'Enter email id separated by commas, invoice will be mailed automatically on particular date',NULL,NULL,NULL,NULL),('FL13393','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',118,'recurring_id','Recurring Id',NULL,'Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.convert_into_recurring_invoice==1',1,NULL,NULL,'The unique id for tracking all recurring invoices ',NULL,NULL,NULL,NULL),('FL13394','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',119,'next_date','Next Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.convert_into_recurring_invoice==1',1,NULL,NULL,'The date on which next invoice will be generated ',NULL,NULL,NULL,NULL),('FL13395','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',120,'end_date','End Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,1,NULL,'eval:doc.convert_into_recurring_invoice==1',0,NULL,NULL,'The date on which recurring invoice will be stop',NULL,NULL,NULL,NULL),('FL13396','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',121,'against_income_account','Against Income Account','against_income_account','Small Text','Small Text',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13397','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Sales Invoice','fields','DocType',122,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13398','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','fields','DocType',1,'tds_category','TDS Category','tds_category','Select','Select','link:TDS Category',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13399','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','fields','DocType',2,'special_tds_rate_applicable','Special TDS Rate Applicable','special_tds_rate_applicable','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13400','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','fields','DocType',3,'special_tds_rate','Special TDS Rate(Section-197) ','special_tds_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13401','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','fields','DocType',4,'special_tds_limit','Special TDS Limit','special_tds_limit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13402','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13403','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13404','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',3,'naming_series','Series','naming_series','Select','Select','JV',NULL,NULL,1,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'To manage multiple series please go to Setup > Manage Series','White:FFF',NULL,NULL,NULL),('FL13405','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',4,'voucher_type','Voucher Type','voucher_type','Select','Select','\nJournal Entry\nBank Voucher\nCash Voucher\nCredit Card Voucher\nDebit Note\nCredit Note\nContra Voucher\nExcise Voucher\nWrite Off Voucher',1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13406','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',5,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13407','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',6,'posting_date','Posting Date','posting_date','Date','Date',NULL,1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry will get or has actually executed.',NULL,NULL,1,NULL),('FL13408','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',7,'2_add_edit_gl_entries','Journal Entries',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13409','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',8,'entries','Entries','entries','Table','Table','Journal Voucher Detail',NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13410','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',9,'section_break99',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13411','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',10,'total_debit','Total Debit','total_debit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13412','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',11,'total_credit','Total Credit','total_credit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13413','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',12,'column_break99',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13414','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',13,'difference','Difference','difference','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13415','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',14,'get_balance','Make Difference Entry',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13416','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',15,'reference','Reference',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13417','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',16,'cheque_no','Cheque No','cheque_no','Data','Data',NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13418','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',17,'cheque_date','Cheque Date','cheque_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13419','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',18,'clearance_date','Clearance Date','clearance_date','Date','Date',NULL,1,NULL,0,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13420','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',19,'column_break98',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13421','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',20,'user_remark','User Remark','user_remark','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13422','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',21,'remark','Remark','remark','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,0,1,NULL,NULL,NULL,1,NULL,NULL,'User Remark will be added to Auto Remark',NULL,NULL,NULL,NULL),('FL13423','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',22,'bill_no','Bill No','bill_no','Data','Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13424','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',23,'bill_date','Bill Date','bill_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13425','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',24,'due_date','Due Date','due_date','Date','Date',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13426','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',25,'addtional_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13427','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',26,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13428','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',27,'is_opening','Is Opening','is_opening','Select','Select','No\nYes',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,'No',NULL,'White:FFF',NULL,1,NULL),('FL13429','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',28,'aging_date','Aging Date','aging_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'For opening invoice entry, this date will reflect in the period-wise aging report.','White:FFF',NULL,NULL,NULL),('FL13430','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',29,'write_off_based_on','Write Off Based On',NULL,'Select',NULL,'Accounts Receivable\nAccounts Payable',NULL,NULL,1,1,NULL,NULL,NULL,NULL,'eval:doc.voucher_type == \'Write Off Voucher\'',0,NULL,'Accounts Receivable',NULL,'White:FFF',NULL,NULL,NULL),('FL13431','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',30,'write_off_amount','Write Off Amount <=',NULL,'Currency',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,'eval:doc.voucher_type == \'Write Off Voucher\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13432','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',31,'get_outstanding_invoices','Get Outstanding Invoices',NULL,'Button',NULL,'get_outstanding_invoices',NULL,NULL,1,NULL,NULL,NULL,NULL,'Server','eval:doc.voucher_type == \'Write Off Voucher\'',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13433','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',32,'voucher_date','Voucher Date','voucher_date','Date','Date',NULL,1,NULL,0,NULL,1,1,NULL,NULL,NULL,0,NULL,'Today','Date of entry (not posting to ledgers)','White:FFF',NULL,1,NULL),('FL13434','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',33,'column_break3',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13435','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',34,'pay_to_recd_from','Pay To / Recd From',NULL,'Data',NULL,NULL,NULL,0,0,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13436','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',35,'total_amount','Total Amount',NULL,'Data',NULL,NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13437','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',36,'total_amount_in_words','Total Amount in Words',NULL,'Data',NULL,NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13438','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',37,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13439','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',38,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13440','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',39,'select_print_heading','Select Print Heading','select_print_heading','Link','Link','Print Heading',NULL,NULL,1,1,NULL,1,1,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13441','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',40,'amended_from','Amended From','amended_from','Link','Link','Journal Voucher',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13442','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',41,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL13443','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',42,'cancel_reason','Cancel Reason','cancel_reason','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13444','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',43,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13445','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',44,'view_ledger_entry','View Ledger Entry',NULL,'Button','Button',NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13446','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',45,'tds','TDS',NULL,'Section Break','Section Break',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13447','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',46,'tds_applicable','TDS Applicable','tds_applicable','Select','Select','\nYes\nNo',1,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,'No',NULL,NULL,NULL,1,NULL),('FL13448','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',47,'tds_category','TDS Category','tds_category','Select','Select','link:TDS Category',1,0,1,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13449','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',48,'supplier_account','Supplier Account','supplier_account','Link','Link','Account',NULL,0,1,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13450','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',49,'get_tds','Get TDS',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13451','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',50,'tax_code','TDS Account Head','tax_code','Link','Link','Account',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Tax Code will be populated based on account head mentioned in TDS Category master','White:FFF',NULL,NULL,NULL),('FL13452','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',51,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13453','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','Administrator',0,'Journal Voucher','fields','DocType',52,'ded_amount','Amount','ded_amount','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13454','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',1,'barcode','Barcode',NULL,'Data',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13455','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',2,'item_code','Item','item_code','Link','Link','Item',1,NULL,0,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13456','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',3,'customer_item_code','Customer\'s Item Code',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13457','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',4,'item_name','Item Name','item_name','Data','Data',NULL,0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13458','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',5,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13459','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',6,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13460','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',7,'stock_uom','UOM',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13461','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',8,'ref_rate','Price List Rate','ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13462','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',9,'adj_rate','Discount (%)','adj_rate','Float','Float',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13463','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',10,'export_rate','Basic Rate','export_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13464','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',11,'export_amount','Amount','export_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13465','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',12,'base_ref_rate','Price List Rate*','base_ref_rate','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13466','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',13,'basic_rate','Basic Rate*','basic_rate','Currency','Currency',NULL,0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13467','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',14,'amount','Amount*','amount','Currency','Currency',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13468','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',15,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,0,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13469','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',16,'income_account','Income Account','income_account','Link','Link','Account',NULL,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,'120px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13470','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',17,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,1,NULL,0,NULL,NULL,'Client',NULL,0,'120px',NULL,NULL,'White:FFF',NULL,1,NULL),('FL13471','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',18,'serial_no','Serial No','serial_no','Small Text','Small Text',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13472','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',19,'batch_no','Batch No',NULL,'Link',NULL,'Batch',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13473','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',20,'item_group','Item Group','item_group','Link','Link','Item Group',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13474','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',21,'brand','Brand Name','brand','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13475','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',22,'actual_qty','Available Qty at Warehouse','actual_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13476','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',23,'delivered_qty','Delivered Qty','delivered_qty','Currency','Currency',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13477','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',24,'sales_order','Sales Order','sales_order','Link','Link','Sales Order',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13478','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',25,'so_detail','SO Detail ','so_detail','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13479','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',26,'delivery_note','Delivery Note','delivery_note','Link','Link','Delivery Note',1,NULL,1,NULL,NULL,NULL,NULL,'Client',NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13480','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',27,'dn_detail','DN Detail','dn_detail','Data','Data',NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13481','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',28,'item_tax_rate','Item Tax Rate','item_tax_rate','Small Text','Small Text',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13482','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',29,'clear_pending','Clear Pending','clear_pending','Check','Check',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13483','2012-10-02 13:18:23','2012-10-02 13:18:23','Administrator','Administrator',0,'Sales Invoice Item','fields','DocType',30,'page_break','Page Break',NULL,'Check',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13484','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',1,'charge_type','Type','charge_type','Select','Select','\nActual\nOn Net Total\nOn Previous Row Amount\nOn Previous Row Total',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13485','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',2,'account_head','Account Head','account_head','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13486','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',3,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13487','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',4,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13488','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',5,'rate','Rate','rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13489','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',6,'tax_amount','Amount','tax_amount','Currency','Currency',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13490','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',7,'total','Total','total','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13491','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',8,'row_id','Enter Row','row_id','Data','Data',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13492','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',9,'category','Consider Tax or Charge for','category','Select','Select','Valuation and Total\nValuation\nTotal',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'For Both','White:FFF',NULL,NULL,NULL),('FL13493','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',10,'add_deduct_tax','Add or Deduct','add_deduct_tax','Select','Select','Add\nDeduct',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,'Add',NULL,'White:FFF',NULL,NULL,NULL),('FL13494','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',11,'item_wise_tax_detail','Item Wise Tax Detail ','item_wise_tax_detail','Small Text','Small Text',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13495','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',12,'parenttype','Parenttype','parenttype','Data','Data',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13496','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',13,'total_tax_amount','Total +Tax','total_tax_amount','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Cheating Field\nPlease do not delete ',NULL,NULL,NULL,NULL),('FL13497','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges','fields','DocType',14,'total_amount','Tax Amount','total_amount','Currency','Currency',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'Cheating Field\nPlease do not delete ',NULL,NULL,NULL,NULL),('FL13498','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Budget Distribution','fields','DocType',1,'distribution_id','Distribution Name','distribution_id','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Name of the Budget Distribution','White:FFF',NULL,NULL,NULL),('FL13499','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Budget Distribution','fields','DocType',2,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13500','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Budget Distribution','fields','DocType',3,'budget_distribution_details','Budget Distribution Details','budget_distribution_details','Table','Table','Budget Distribution Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13501','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Budget Distribution','fields','DocType',4,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13502','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',1,'title','Title','title','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13503','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',2,'is_default','Default',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13504','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',3,'company','Company',NULL,'Link',NULL,'Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13505','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',4,'purchase_tax_details','Purchase Taxes and Charges','purchase_tax_details','Table','Table','Purchase Taxes and Charges',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13506','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','fields','DocType',5,'company','Company',NULL,'Link',NULL,'Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13507','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',1,'properties','Account Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13508','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13509','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',3,'account_name','Account Name','account_name','Data','Data',NULL,1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13510','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',4,'level','Level','level','Int','Int',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13511','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',5,'group_or_ledger','Group or Ledger','group_or_ledger','Select','Select','\nLedger\nGroup',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,'Ledger',NULL,NULL,NULL,1,NULL),('FL13512','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',6,'debit_or_credit','Debit or Credit','debit_or_credit','Data','Data',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13513','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',7,'is_pl_account','Is PL Account','is_pl_account','Select','Select','Yes\nNo',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13514','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',8,'company','Company','company','Link','Link','Company',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13515','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',9,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13516','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',10,'parent_account','Parent Account','parent_account','Link','Link','Account',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13517','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',11,'account_type','Account Type','account_type','Select','Select','\nFixed Asset Account\nBank or Cash\nExpense Account\nTax\nIncome Account\nChargeable',0,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Setting Account Type helps in selecting this Account in transactions.','White:FFF',NULL,1,NULL),('FL13518','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',12,'tax_rate','Rate','tax_rate','Currency','Currency',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'Rate at which this tax is applied','White:FFF',NULL,NULL,NULL),('FL13519','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',13,'freeze_account','Frozen','freeze_account','Select','Select','No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'If the account is frozen, entries are allowed for the \"Account Manager\" only.','White:FFF',NULL,NULL,NULL),('FL13520','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',14,'credit_days','Credit Days','credit_days','Int','Int',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13521','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',15,'credit_limit','Credit Limit','credit_limit','Currency','Currency',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13522','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',16,'master_type','Master Type','master_type','Select','Select','\nSupplier\nCustomer\nEmployee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If this Account represents a Customer, Supplier or Employee, set it here.','White:FFF',NULL,NULL,NULL),('FL13523','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'Account','fields','DocType',17,'master_name','Master Name','master_name','Link','Link',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13524','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',1,'user','User','user','Link','Link','Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13525','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',2,'territory','Territory','territory','Link','Link','Territory',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13526','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',3,'naming_series','Series','naming_series','Select','Select',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13527','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',4,'currency','Currency','currency','Select','Select','link:Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13528','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',5,'conversion_rate','Conversion Rate','conversion_rate','Float','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'1',NULL,'White:FFF',NULL,NULL,NULL),('FL13529','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',6,'price_list_name','Price List','price_list_name','Select','Select','link:Price List',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13530','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',7,'company','Company','company','Link','Link','Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13531','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',8,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13532','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',9,'customer_account','Customer Account','customer_account','Link','Link','Account',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13533','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',10,'cash_bank_account','Cash/Bank Account','cash_bank_account','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13534','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',11,'income_account','Income Account','income_account','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13535','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',12,'warehouse','Warehouse','warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13536','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',13,'cost_center','Cost Center','cost_center','Link','Link','Cost Center',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13537','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',14,'charge','Charge','charge','Link','Link','Sales Taxes and Charges Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13538','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',15,'letter_head','Letter Head','letter_head','Select','Select','link:Letter Head',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13539','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',16,'tc_name','Terms and Conditions','tc_name','Link','Link','Terms and Conditions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13540','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','Administrator',0,'POS Setting','fields','DocType',17,'select_print_heading','Select Print Heading','select_print_heading','Select','Select','link:Print Heading',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13541','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',1,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13542','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',2,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13543','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',3,'posting_date','Posting Date','posting_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13544','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',4,'fiscal_year','Closing Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13545','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',5,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13546','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',6,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13547','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',7,'company','Company','company','Select','Select','link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13548','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',8,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13549','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',9,'closing_account_head','Closing Account Head','closing_account_head','Link','Link','Account',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13550','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',10,'coa_help','CoA Help',NULL,'HTML','HTML','To manage Account Head, click here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13551','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',11,'remarks','Remarks','remarks','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13552','2012-10-02 13:18:31','2012-10-02 13:18:31','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','fields','DocType',12,'cancel_reason','Cancel Reason','cancel_reason','Small Text','Small Text',NULL,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13553','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',1,'task_details','Task Details',NULL,'Section Break','Section Break',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13554','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',2,'subject','Subject','subject','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13555','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',3,'exp_start_date','Expected Start Date','exp_start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13556','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',4,'exp_end_date','Expected End Date','exp_end_date','Date','Date',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13557','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',5,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13558','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',6,'project','Project','project','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13559','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',7,'status','Status','status','Select','Select','Open\nWorking\nPending Review\nClosed\nCancelled',NULL,NULL,NULL,NULL,NULL,1,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13560','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',8,'priority','Priority','priority','Select','Select','Low\nMedium\nHigh\nUrgent',1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13561','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',9,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13562','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',10,'description','Details','description','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13563','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',11,'time_and_budget','Time and Budget',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13564','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',12,'expected','Expected',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13565','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',13,'exp_total_hrs','Total Hours (Expected)','exp_total_hrs','Data','Data',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13566','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',14,'allocated_budget','Allocated Budget','allocated_budget','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13567','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',15,'actual','Actual',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13568','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',16,'act_start_date','Actual Start Date','act_start_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13569','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',17,'act_end_date','Actual End Date','act_end_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13570','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',18,'act_total_hrs','Total Hours (Actual)','act_total_hrs','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13571','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',19,'actual_budget','Actual Budget','actual_budget','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13572','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',20,'more_details','More Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13573','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',21,'review_date','Review Date','review_date','Date','Date',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.status == \"Closed\" || doc.status == \"Pending Review\"',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13574','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Task','fields','DocType',22,'closing_date','Closing Date','closing_date','Date','Date',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.status == \"Closed\"',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13575','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Helps you keep track of your projects and links to Tasks. You can tag a task to a project to track its progress','White:FFF',NULL,NULL,NULL),('FL13576','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',2,'cb_project_status','Status',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13577','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',3,'project_name','Project Name','project_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Project will get saved and will be searchable with project name given',NULL,NULL,NULL,NULL),('FL13578','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',4,'status','Status','status','Select','Select','Open\nCompleted\nCancelled',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,'Open',NULL,'White:FFF',NULL,1,NULL),('FL13579','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',5,'is_active','Is Active','is_active','Select','Select','Yes\nNo',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13580','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',6,'priority','Priority','priority','Select','Select','Medium\nLow\nHigh',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13581','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',7,'cb_project_dates','Dates',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13582','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',8,'project_start_date','Project Start Date','project_start_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13583','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',9,'completion_date','Completion Date','completion_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13584','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',10,'act_completion_date','Actual Completion Date','act_completion_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13585','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',11,'project_type','Project Type','project_type','Select','Data','Internal\nExternal\nOther',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13586','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',12,'sb_milestones','Milestones',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Important dates and commitments in your project life cycle','White:FFF',NULL,NULL,NULL),('FL13587','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',13,'project_milestones','Project Milestones','project_milestones','Table','Table','Project Milestone',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Milestones will be added as Events in the Calendar','White:FFF',NULL,NULL,NULL),('FL13588','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',14,'sb_tasks','Tasks',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Tasks belonging to this Project.','White:FFF',NULL,NULL,NULL),('FL13589','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',15,'project_tasks','Project Tasks',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13590','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',16,'section_break0','Project Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13591','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',17,'notes','Notes','notes','Text Editor','Text Editor',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13592','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',18,'project_details','Project Costing',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13593','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',19,'project_value','Project Value','project_value','Currency','Currency',NULL,0,NULL,NULL,NULL,0,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13594','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',20,'est_material_cost','Estimated Material Cost','est_material_cost','Currency','Currency',NULL,0,NULL,NULL,NULL,NULL,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13595','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',21,'column_break0','Margin',NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13596','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',22,'gross_margin_value','Gross Margin Value','gross_margin_value','Currency','Currency',NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13597','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',23,'per_gross_margin','Gross Margin %','per_gross_margin','Currency','Currency',NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13598','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',24,'customer_details','Customer Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13599','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',25,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,0,0,NULL,'Client',NULL,0,NULL,NULL,'Select name of Customer to whom project belongs','White:FFF',NULL,1,NULL),('FL13600','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',26,'customer_name','Customer Name','customer_name','Data','Data',NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13601','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',27,'customer_address','Customer Address','customer_address','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13602','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',28,'contact_person','Contact Person','contact_person','Link','Link',NULL,0,NULL,NULL,NULL,0,0,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13603','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',29,'territory','Territory','territory','Link','Link','Territory',0,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13604','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',30,'contact_no','Contact No','contact_no','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13605','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',31,'email_id','Email Id','email_id','Data','Data',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13606','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',32,'customer_group','Customer Group','customer_group','Link','Link','Customer Group',0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13607','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',33,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,0,1,1,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13608','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Project','fields','DocType',34,'file_list','File List',NULL,'Small Text',NULL,NULL,0,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13609','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',1,'timesheet_details_section_break','Timesheet Details',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13610','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',2,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCancelled',1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,0,NULL),('FL13611','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',3,'timesheet_date','Timesheet Date','timesheet_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Today',NULL,'White:FFF',NULL,1,NULL),('FL13612','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',4,'owner','Timesheet By','owner','Link','Link','Profile',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13613','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',5,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13614','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',6,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13615','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',7,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13616','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',8,'notes','Notes',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13617','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',9,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13618','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','ashwini@webnotestech.com',0,'Timesheet','fields','DocType',10,'timesheet_details','Timesheet Details','timesheet_details','Table','Table','Timesheet Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13619','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts','White:FFF',NULL,NULL,NULL),('FL13620','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',2,'supplier_name','Supplier Name','supplier_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13621','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',3,'supplier_type','Supplier Type','supplier_type','Link','Link','Supplier Type',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13622','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',4,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13623','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',5,'naming_series','Series','naming_series','Select','Select','\nSUPP\nSUPP/10-11/',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13624','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',6,'address_contacts','Address & Contacts',NULL,'Section Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13625','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',7,'address_desc','Address Desc',NULL,'HTML',NULL,'Addresses will appear only when you save the supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13626','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',8,'address_html','Address HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13627','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',9,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13628','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',10,'contact_desc','Contact Desc',NULL,'HTML',NULL,'Contact Details will appear only when you save the supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13629','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',11,'contact_html','Contact HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13630','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',12,'communication_history','Communication History',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13631','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',13,'communication_html','Communication HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13632','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',14,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13633','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',15,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter the company name under which Account Head will be created for this Supplier','White:FFF',NULL,1,NULL),('FL13634','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',16,'default_currency','Default Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,'This currency will get fetched in Purchase transactions of this supplier','White:FFF',NULL,NULL,NULL),('FL13635','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',17,'supplier_details','Supplier Details','supplier_details','Text','Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Statutory info and other general information about your Supplier','White:FFF',NULL,NULL,NULL),('FL13636','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',18,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13637','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',19,'credit_days','Credit Days',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13638','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',20,'website','Website','website','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13639','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',21,'transaction_history','Transaction History',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13640','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',22,'history_html','History HTML',NULL,'HTML','HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13641','2012-10-02 13:18:33','2012-10-02 13:18:33','Administrator','Administrator',0,'Supplier','fields','DocType',23,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13642','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13643','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',2,'naming_series','Series','naming_series','Select','Select','\nCI/2010-2011/',0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL),('FL13644','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',3,'complaint_date','Issue Date','complaint_date','Date','Date',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Today',NULL,NULL,NULL,1,NULL),('FL13645','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',4,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13646','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',5,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13647','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',6,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13648','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',7,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13649','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',8,'issue_details','Issue Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13650','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',9,'serial_no','Serial No',NULL,'Link',NULL,'Serial No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13651','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',10,'item_code','Item Code','item_code','Link','Link','Item',1,NULL,NULL,NULL,0,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13652','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',11,'complaint','Issue','complaint','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13653','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',12,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13654','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',13,'item_name','Item Name','item_name','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.item_code',1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13655','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',14,'description','Description','description','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.item_code',1,'300px',NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13656','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',15,'warranty_amc_status','Warranty / AMC Status',NULL,'Select',NULL,'\nUnder Warranty\nOut of Warranty\nUnder AMC\nOut of AMC',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13657','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',16,'warranty_expiry_date','Warranty Expiry Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13658','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',17,'amc_expiry_date','AMC Expiry Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13659','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',18,'resolution_section','Resolution',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13660','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',19,'allocated_on','Allocated On','allocated_on','Date','Date',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13661','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',20,'allocated_to','Allocated To','allocated_to','Link','Link','Profile',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13662','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',21,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13663','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',22,'resolution_date','Resolution Date','resolution_date','Date','Date',NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13664','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',23,'resolved_by','Resolved By','resolved_by','Link','Link','Sales Person',1,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13665','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',24,'resolution_details','Resolution Details','resolution_details','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13666','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',25,'contact_info','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13667','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',26,'col_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13668','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',27,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13669','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',28,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13670','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',29,'territory','Territory','territory','Link','Link','Territory',1,NULL,1,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13671','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',30,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13672','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',31,'col_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13673','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',32,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13674','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',33,'contact_mobile','Mobile No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13675','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',34,'contact_email','Contact Email',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13676','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',35,'service_address','Service Address','service_address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13677','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',36,'more_info','More Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13678','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',37,'col_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13679','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',38,'company','Company','company','Link','Link','Company',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13680','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',39,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13681','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',40,'status','Status','status','Select','Select','\nOpen\nClosed\nWork In Progress\nCancelled',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,'Open',NULL,'White:FFF',NULL,1,NULL),('FL13682','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',41,'col_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13683','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',42,'complaint_raised_by','Raised By','complaint_raised_by','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13684','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',43,'from_company','From Company','from_company','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13685','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',44,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13686','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','harshada@webnotestech.com',0,'Customer Issue','fields','DocType',45,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13687','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',1,'customer_details','Customer Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13688','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13689','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',3,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13690','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',4,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13691','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',5,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13692','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',6,'customer_name','Name','customer_name','Data','Data',NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13693','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',7,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13694','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',8,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13695','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',9,'contact_mobile','Mobile No',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13696','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',10,'contact_email','Contact Email',NULL,'Text',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13697','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13698','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',12,'transaction_date','Transaction Date','transaction_date','Date','Date',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13699','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',13,'status','Status','status','Select','Select','\nDraft\nSubmitted\nCancelled',0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,1,NULL),('FL13700','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',14,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13701','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',15,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13702','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',16,'company','Company','company','Link','Link','Company',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13703','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',17,'territory','Territory','territory','Link','Link','Territory',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13704','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',18,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13705','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',19,'items','Items',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13706','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',20,'sales_order_no','Sales Order No','sales_order_no','Link','Link','Sales Order',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13707','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',21,'get_items','Get Items',NULL,'Button','Button','pull_sales_order_detail',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13708','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',22,'item_maintenance_detail','Maintenance Schedule Item','item_maintenance_detail','Table','Table','Maintenance Schedule Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13709','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',23,'schedule','Schedule',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13710','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',24,'generate_schedule','Generate Schedule',NULL,'Button','Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13711','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Maintenance Schedule','fields','DocType',25,'maintenance_schedule_detail','Maintenance Schedule Detail','maintenance_schedule_detail','Table','Table','Maintenance Schedule Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13712','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',1,'naming_series','Naming Series',NULL,'Select',NULL,'SUP',0,0,1,NULL,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13713','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',2,'status','Status','status','Select','Select','\nOpen\nTo Reply\nWaiting for Customer\nHold\nClosed',1,NULL,NULL,NULL,0,1,NULL,NULL,NULL,1,NULL,'Open',NULL,'White:FFF',NULL,0,NULL),('FL13714','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',3,'subject','Subject',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13715','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',4,'raised_by','Raised By (Email)','raised_by','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13716','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',5,'description','Description','problem_description','Text','Text',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13717','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',6,'thread_html','Thread HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13718','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',7,'new_response','New Response',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13719','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',8,'send','Send',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13720','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',9,'additional_info','Additional Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13721','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',10,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13722','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',11,'customer','Customer','customer','Link','Link','Customer',1,NULL,1,NULL,0,NULL,NULL,'Client',NULL,1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13723','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',12,'customer_name','Customer Name','customer_name','Data','Data',NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13724','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',13,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13725','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',14,'contact_display','Contact Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13726','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',15,'contact_mobile','Mobile No',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13727','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',16,'contact_email','Contact Email','contact_no','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13728','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',17,'opening_date','Opening Date','opening_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Today',NULL,NULL,NULL,NULL,NULL),('FL13729','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',18,'opening_time','Opening Time','opening_time','Time','Time',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13730','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',19,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13731','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',20,'allocated_to','Allocated To','allocated_to','Link','Link','Profile',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13732','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',21,'resolution_details','Resolution Details','resolution_details','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13733','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',22,'resolution_date','Resolution Date','resolution_date','Date','Date',NULL,0,NULL,NULL,NULL,NULL,1,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,'White:FFF',NULL,0,NULL),('FL13734','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',23,'resolution_time','Resolution Time','resolution_time','Time','Time',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13735','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',24,'content_type','Content Type',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13736','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Support Ticket','fields','DocType',25,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13737','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',1,'customer_details','Customer Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13738','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',2,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13739','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',3,'customer','Customer','customer','Link','Link','Customer',0,NULL,1,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13740','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',4,'customer_name','Customer Name',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13741','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',5,'address_display','Address',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13742','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',6,'contact_display','Contact',NULL,'Small Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13743','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',7,'contact_mobile','Mobile No',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13744','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',8,'contact_email','Contact Email',NULL,'Data',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13745','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',9,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13746','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',10,'mntc_date','Maintenance Date','mntc_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,'Today',NULL,NULL,NULL,NULL,NULL),('FL13747','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',11,'mntc_time','Maintenance Time','mntc_time','Time','Time',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13748','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',12,'maintenance_details','Maintenance Details',NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13749','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',13,'completion_status','Completion Status','completion_status','Select','Select','\nPartially Completed\nFully Completed',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13750','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',14,'maintenance_type','Maintenance Type','maintenance_type','Select','Select','\nScheduled\nUnscheduled\nBreakdown',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'Unscheduled',NULL,'White:FFF',NULL,1,NULL),('FL13751','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',15,'column_break2',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13752','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',16,'sales_order_no','Sales Order No','sales_order_no','Link','Link','Sales Order',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13753','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',17,'customer_issue_no','Customer Issue No','customer_issue_no','Link','Link','Customer Issue',1,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,1,NULL),('FL13754','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',18,'maintenance_schedule','Maintenance Schedule',NULL,'Link',NULL,'Maintenance Schedule',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13755','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',19,'get_items','Get Items',NULL,'Button','Button','fetch_items',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13756','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',20,'section_break0',NULL,NULL,'Section Break','Section Break','Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13757','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',21,'maintenance_visit_details','Maintenance Visit Purpose','maintenance_visit_details','Table','Table','Maintenance Visit Purpose',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13758','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',22,'more_info','More Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13759','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',23,'customer_feedback','Customer Feedback','customer_feedback','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13760','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',24,'col_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13761','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',25,'status','Status','status','Data','Data','\nDraft\nCancelled\nSubmitted',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,'Draft',NULL,'White:FFF',NULL,NULL,NULL),('FL13762','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',26,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,'150px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13763','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',27,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,0,'100px',NULL,NULL,NULL,NULL,NULL,NULL),('FL13764','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',28,'company','Company','company','Select','Select','link:Company',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13765','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',29,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',0,NULL,1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13766','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',30,'contact_info_section','Contact Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13767','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',31,'customer_address','Customer Address',NULL,'Link',NULL,'Address',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13768','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',32,'contact_person','Contact Person',NULL,'Link',NULL,'Contact',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13769','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',33,'col_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13770','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',34,'territory','Territory',NULL,'Link',NULL,'Territory',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13771','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','fields','DocType',35,'customer_group','Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13772','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Communication','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13773','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Communication','fields','DocType',2,'naming_series','Naming Series',NULL,'Select',NULL,'COMM-',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'COMM-',NULL,'White:FFF',NULL,NULL,NULL),('FL13774','2012-10-02 13:18:34','2012-10-02 13:18:34','Administrator','Administrator',0,'Communication','fields','DocType',3,'category','Category',NULL,'Select',NULL,'\nSales\nComplaint\nHelp\nSuggestion\nMiscellaneous\nSent Mail',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13775','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',4,'action','Action',NULL,'Select',NULL,'\nCreated Opportunity\nSent Quotation\nCreated Support Ticket\nCreated Customer Issue\nNo Action\nSent Mail',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13776','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',5,'next_communication_date','Next Communcation On',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13777','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',6,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13778','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',7,'subject','Subject',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13779','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',8,'section_break1',NULL,NULL,'Section Break',NULL,'simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13780','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',9,'content','Content',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13781','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',10,'additional_info','Additional Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13782','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',11,'column_break3','Communication With / Related To',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13783','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',12,'lead','Lead',NULL,'Link',NULL,'Lead',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13784','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',13,'contact','Contact',NULL,'Link',NULL,'Contact',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13785','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',14,'customer','Customer',NULL,'Link',NULL,'Customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13786','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',15,'supplier','Supplier',NULL,'Link',NULL,'Supplier',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13787','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',16,'opportunity','Opportunity',NULL,'Link',NULL,'Opportunity',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13788','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',17,'quotation','Quotation',NULL,'Link',NULL,'Quotation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13789','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',18,'support_ticket','Support Ticket',NULL,'Link',NULL,'Support Ticket',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13790','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',19,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13791','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',20,'communication_medium','Communication Medium',NULL,'Select',NULL,'\nChat\nPhone\nEmail\nSMS\nVisit\nOther',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13792','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',21,'phone_no','Phone No.',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13793','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',22,'email_address','Email Address',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13794','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',23,'section_break2',NULL,NULL,'Section Break',NULL,'simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13795','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',24,'column_break4','Communication Carried Out By',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13796','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',25,'user','User',NULL,'Link',NULL,'Profile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'__user',NULL,'White:FFF',NULL,NULL,NULL),('FL13797','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',26,'sales_person','Sales Person',NULL,'Link',NULL,'Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13798','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',27,'column_break5','Communication Carried Out On',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13799','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',28,'communication_date','Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Today',NULL,'White:FFF',NULL,NULL,NULL),('FL13800','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',29,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13801','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Communication','fields','DocType',30,'_user_tags','User Tags',NULL,'Data',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13802','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',1,'basic_info','Basic Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13803','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',2,'naming_series','Naming Series',NULL,'Select',NULL,'NL-',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'NL-',NULL,'White:FFF',NULL,NULL,NULL),('FL13804','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',3,'test_email_id','Test Email Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'A Lead with this email id should exist','White:FFF',NULL,NULL,NULL),('FL13805','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',4,'test_send','Test',NULL,'Button',NULL,'test_send',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13806','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',5,'column_break1','Send To',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13807','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',6,'contacts','All Contacts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13808','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',7,'customer_contacts','All Customer Contacts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13809','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',8,'leads','All Leads',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13810','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',9,'active_leads','All Active Leads',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13811','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',10,'blog_subscribers','All Blog Subscribers',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13812','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',11,'newsletter_content','Newsletter Content',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13813','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',12,'subject','Subject',NULL,'Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13814','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',13,'message','Message',NULL,'Code',NULL,'Markdown',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13815','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',14,'newsletter_status','Newsletter Status',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13816','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','fields','DocType',15,'email_sent','Email Sent?',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13817','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',1,'item_group_name','Item Group Name','item_group_name','Data','Data',NULL,0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13818','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',2,'show_in_website','Show in Website',NULL,'Check',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,'Check this if you want to show in website','White:FFF',NULL,NULL,NULL),('FL13819','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',3,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13820','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',4,'parent_item_group','Parent Item Group','parent_item_group','Link','Link','Item Group',0,NULL,NULL,NULL,1,0,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13821','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',5,'is_group','Has Child Node','is_group','Select','Select','\nYes\nNo',0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Only leaf nodes are allowed in transaction','White:FFF',NULL,NULL,NULL),('FL13822','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',6,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13823','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',7,'lft','lft','lft','Int','Int',NULL,1,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13824','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',8,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13825','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Item Group','fields','DocType',9,'old_parent','old_parent','old_parent','Link','Data','Item Group',0,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13826','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13827','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',2,'sales_person_name','Sales Person Name','sales_person_name','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13828','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',3,'parent_sales_person','Parent Sales Person','parent_sales_person','Link','Link','Sales Person',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select company name first.','White:FFF',NULL,NULL,NULL),('FL13829','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',4,'is_group','Has Child Node','is_group','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13830','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',5,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13831','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',6,'employee','Employee',NULL,'Link',NULL,'Employee',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13832','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',7,'lft','lft','lft','Int','Int',NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13833','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',8,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13834','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',9,'old_parent','old_parent','old_parent','Data','Data',NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13835','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',10,'target_details_section_break','Sales Person Targets',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set targets Item Group-wise for this Sales Person.','White:FFF',NULL,NULL,NULL),('FL13836','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',11,'target_details','Target Details1','target_details','Table','Table','Target Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13837','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Sales Person','fields','DocType',12,'distribution_id','Target Distribution','distribution_id','Link','Link','Budget Distribution',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Budget Distribution to unevenly distribute targets across months.','White:FFF',NULL,NULL,NULL),('FL13838','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',1,'materials','Materials',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13839','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',2,'fs_item_serial_nos','Item Serial Nos',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track item in sales and purchase documents based on their serial nos. This is can also used to track warranty details of the product.','White:FFF',NULL,NULL,NULL),('FL13840','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',3,'fs_item_batch_nos','Item Batch Nos',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track items in sales and purchase documents with batch nos
    Preferred Industry: Chemicals etc','White:FFF',NULL,NULL,NULL),('FL13841','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',4,'fs_brands','Brands',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track brand name in the following documents
    \nDelivery Note, Enuiry, Purchase Request, Item, Purchase Order, Purchase Voucher, Purchaser Receipt, Quotation, Sales Invoice, Sales BOM, Sales Order, Serial No','White:FFF',NULL,NULL,NULL),('FL13842','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',5,'fs_item_barcode','Item Barcode',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.',NULL,NULL,NULL,NULL),('FL13843','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',6,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13844','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',7,'fs_item_advanced','Item Advanced',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'1. To maintain the customer wise item code and to make them searchable based on their code use this option','White:FFF',NULL,NULL,NULL),('FL13845','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',8,'fs_packing_details','Packing Detials',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If Sale BOM is defined, the actual BOM of the Pack is displayed as table.\nAvailable in Delivery Note and Sales Order','White:FFF',NULL,NULL,NULL),('FL13846','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',9,'fs_item_group_in_details','Item Groups in Details',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To get Item Group in details table','White:FFF',NULL,NULL,NULL),('FL13847','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',10,'sales_and_purchase','Sales and Purchase',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13848','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',11,'fs_exports','Exports',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'All export related fields like currency, conversion rate, export total, export grand total etc are available in
    \nDelivery Note, POS, Quotation, Sales Invoice, Sales Order etc.','White:FFF',NULL,NULL,NULL),('FL13849','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',12,'fs_imports','Imports',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'All import related fields like currency, conversion rate, import total, import grand total etc are available in
    \nPurchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.','White:FFF',NULL,NULL,NULL),('FL13850','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',13,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13851','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',14,'fs_discounts','Sales Discounts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Field available in Delivery Note, Quotation, Sales Invoice, Sales Order','White:FFF',NULL,NULL,NULL),('FL13852','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',15,'fs_purchase_discounts','Purchase Discounts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice','White:FFF',NULL,NULL,NULL),('FL13853','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',16,'fs_after_sales_installations','After Sale Installations',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To track any installation or commissioning related work after sales','White:FFF',NULL,NULL,NULL),('FL13854','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',17,'fs_projects','Projects',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Available in \nBOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet',NULL,NULL,NULL,NULL),('FL13855','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',18,'fs_sales_extras','Sales Extras',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity','White:FFF',NULL,NULL,NULL),('FL13856','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',19,'accounts','Accounts',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13857','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',20,'fs_recurring_invoice','Recurring Invoice',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.','White:FFF',NULL,NULL,NULL),('FL13858','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',21,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13859','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',22,'fs_pos','Point of Sale',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To enable Point of Sale features','White:FFF',NULL,NULL,NULL),('FL13860','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',23,'production','Production',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13861','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',24,'fs_manufacturing','Manufacturing',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you involve in manufacturing activity
    \nEnables item Is Manufactured','White:FFF',NULL,NULL,NULL),('FL13862','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',25,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13863','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',26,'fs_quality','Quality',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you follow Quality Inspection
    \nEnables item QA Required and QA No in Purchase Receipt','White:FFF',NULL,NULL,NULL),('FL13864','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',27,'miscelleneous','Miscelleneous',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13865','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',28,'fs_page_break','Page Break',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If you have long print formats, this feature can be used to split the page to be printed on multiple pages with all headers and footers on each page','White:FFF',NULL,NULL,NULL),('FL13866','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',29,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13867','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Features Setup','fields','DocType',30,'fs_more_info','More Info',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enables More Info. in all documents','White:FFF',NULL,NULL,NULL),('FL13868','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Terms and Conditions','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13869','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Terms and Conditions','fields','DocType',2,'title','Title','title','Data','Data',NULL,0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13870','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Terms and Conditions','fields','DocType',3,'terms','Terms and Conditions','terms','Text Editor','Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13871','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',1,'settings','Email Digest Settings',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13872','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',2,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13873','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',3,'enabled','Enabled',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13874','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',4,'company','For Company',NULL,'Select',NULL,'link:Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13875','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',5,'frequency','How frequently?',NULL,'Select',NULL,'Daily\nWeekly\nMonthly',NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13876','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',6,'next_send','Next email will be sent on:',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.enabled',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13877','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',7,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13878','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',8,'recipient_list','Recipients',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,'Note: Email will not be sent to disabled users',NULL,NULL,NULL,NULL),('FL13879','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',9,'addremove_recipients','Add/Remove Recipients',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13880','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Email Digest','fields','DocType',10,'select_digest_content','Select Digest Content',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check all the items below that you want to send in this digest.','White:FFF',NULL,NULL,NULL),('FL13881','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',11,'new_leads','New Leads',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13882','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',12,'new_enquiries','New Enquiries',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13883','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',13,'new_quotations','New Quotations',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13884','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',14,'new_sales_orders','New Sales Orders',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13885','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',15,'new_delivery_notes','New Delivery Notes',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13886','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',16,'new_purchase_requests','New Purchase Requests',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13887','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',17,'new_supplier_quotations','New Supplier Quotations',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13888','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',18,'new_purchase_orders','New Purchase Orders',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13889','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',19,'new_purchase_receipts','New Purchase Receipts',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13890','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',20,'new_stock_entries','New Stock Entries',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13891','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',21,'new_support_tickets','New Support Tickets',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13892','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',22,'new_communications','New Communications',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13893','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',23,'new_projects','New Projects',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13894','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',24,'cb1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13895','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',25,'income_year_to_date','Income Year to Date',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13896','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',26,'bank_balance','Bank Balance',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13897','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',27,'income','Income',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13898','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',28,'expenses_booked','Expenses Booked',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13899','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',29,'collections','Collections',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13900','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',30,'payments','Payments',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13901','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',31,'invoiced_amount','Receivables',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13902','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Email Digest','fields','DocType',32,'payables','Payables',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13903','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',1,'basic_info','Sales Partner Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Note: You Can Manage Multiple Address or Contacts via Addresses & Contacts','White:FFF',NULL,NULL,NULL),('FL13904','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',2,'partner_name','Sales Partner Name','partner_name','Data','Data',NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13905','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',3,'partner_type','Partner Type','partner_type','Select','Select','\nChannel Partner\nDistributor\nDealer\nAgent\nRetailer\nImplementation Partner\nReseller',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL13906','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',4,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13907','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',5,'commission_rate','Commission Rate','commission_rate','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13908','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',6,'territory','Territory',NULL,'Link',NULL,'Territory',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13909','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',7,'address_contacts','Address & Contacts',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13910','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',8,'address_desc','Address Desc',NULL,'HTML',NULL,'Addresses will appear only when you save the customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13911','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',9,'address_html','Address HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13912','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',10,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13913','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',11,'contact_desc','Contact Desc',NULL,'HTML',NULL,'Contact Details will appear only when you save the customer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13914','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',12,'contact_html','Contact HTML',NULL,'HTML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13915','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',13,'partner_target_details_section_break','Sales Partner Target',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13916','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',14,'partner_target_details','Partner Target Detail','partner_target_details','Table','Table','Target Detail',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13917','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',15,'distribution_id','Target Distribution','distribution_id','Link','Link','Budget Distribution',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Budget Distribution to unevenly distribute targets across months.','White:FFF',NULL,NULL,NULL),('FL13918','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Sales Partner','fields','DocType',16,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13919','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',1,'setup_series','Setup Series',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set prefix for numbering series on your transactions',NULL,NULL,NULL,NULL),('FL13920','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',2,'select_doc_for_series','Select Transaction',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13921','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',3,'help_html','Help HTML',NULL,'HTML',NULL,'
    \nEdit list of Series in the box below. Each Series Prefix on a new line.

    \nAllowed special characters are \"/\" and \"-\"
    \nExamples:
    \nINV-
    \nINV-10-
    \nINVK-
    \n
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13922','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',4,'set_options','Series List for this Transaction',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13923','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',5,'user_must_always_select','User must always select',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check this if you want to force the user to select a series before saving. There will be no default if you check this.','White:FFF',NULL,NULL,NULL),('FL13924','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',6,'update','Update',NULL,'Button',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13925','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',7,'update_series','Update Series',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Change the starting / current sequence number of an existing series.','White:FFF',NULL,NULL,NULL),('FL13926','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',8,'prefix','Prefix',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13927','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',9,'current_value','Current Value',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'This is the number of the last created transaction with this prefix','White:FFF',NULL,NULL,NULL),('FL13928','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Naming Series','fields','DocType',10,'update_series_start','Update Series Number',NULL,'Button',NULL,'update_series_start',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL13929','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',1,'outgoing_mails','Outgoing Mails',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set your outgoing mail SMTP settings here. All system generated notifications, emails will go from this mail server. If you are not sure, leave this blank to use ERPNext servers (emails will still be sent from your email id) or contact your email provider.','White:FFF',NULL,NULL,NULL),('FL13930','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',2,'outgoing_mail_server','Outgoing Mail Server',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'SMTP Server (e.g. smtp.gmail.com)','White:FFF',NULL,NULL,NULL),('FL13931','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',3,'use_ssl','Use SSL',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13932','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',4,'mail_port','Mail Port',NULL,'Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If non standard port (e.g. 587)','White:FFF',NULL,NULL,NULL),('FL13933','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',5,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13934','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',6,'mail_login','Login Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set Login and Password if authentication is required.','White:FFF',NULL,NULL,NULL),('FL13935','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',7,'mail_password','Mail Password',NULL,'Password',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13936','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',8,'auto_email_id','Auto Email Id',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'System generated mails will be sent from this email id.','White:FFF',NULL,NULL,NULL),('FL13937','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',9,'support_ticket_mail_settings','Support Ticket Mail Settings',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set the POP3 email settings to pull emails directly from a mailbox and create Support Tickets',NULL,NULL,NULL,NULL),('FL13938','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',10,'section_break0','Incoming Mail Setting',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'To automatically create Support Tickets from your incoming mail, set your POP3 settings here. You must ideally create a separate email id for the erp system so that all emails will be synced into the system from that mail id. If you are not sure, please contact your EMail Provider.','White:FFF',NULL,NULL,NULL),('FL13939','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',11,'sync_support_mails','Sync Support Mails',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Check this to pull emails from your mailbox','White:FFF',NULL,NULL,NULL),('FL13940','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',12,'support_email','Support Email',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Your support email id - must be a valid email - this is where your emails will come!','White:FFF',NULL,NULL,NULL),('FL13941','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',13,'support_host','POP3 Mail Server',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'POP3 mail server (e.g. pop.gmail.com)','White:FFF',NULL,NULL,NULL),('FL13942','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',14,'support_use_ssl','Use SSL',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13943','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',15,'support_username','User Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13944','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',16,'support_password','Support Password',NULL,'Password',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13945','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',17,'cb1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13946','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',18,'support_signature','Signature',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Signature to be appended at the end of every email','White:FFF',NULL,NULL,NULL),('FL13947','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',19,'send_autoreply','Send Autoreply',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'1',NULL,'White:FFF',NULL,NULL,NULL),('FL13948','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','harshada@webnotestech.com',0,'Email Settings','fields','DocType',20,'support_autoreply','Custom Autoreply Message',NULL,'Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Autoreply when a new mail is received','White:FFF',NULL,NULL,NULL),('FL13949','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',1,'company','Company',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13950','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',2,'default_company','Default Company',NULL,'Link',NULL,'Company',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13951','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',3,'current_fiscal_year','Current Fiscal Year',NULL,'Link',NULL,'Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13952','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',4,'date_format','Date Format',NULL,'Select',NULL,'yyyy-mm-dd\ndd-mm-yyyy\ndd/mm/yyyy\nmm/dd/yyyy\nmm-dd-yyyy',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13953','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',5,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13954','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',6,'default_currency','Default Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,'INR',NULL,NULL,NULL,NULL,NULL),('FL13955','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',7,'default_currency_format','Default Currency Format',NULL,'Select',NULL,'Lacs\nMillions',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13956','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',8,'default_currency_fraction','Default Currency Fraction',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13957','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',9,'stock','Stock',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13958','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',10,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13959','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',11,'default_item_group','Default Item Group',NULL,'Link',NULL,'Item Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13960','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',12,'ighelp','IGHelp',NULL,'HTML',NULL,'To manage Item Groups, click here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13961','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',13,'default_stock_uom','Default Stock UOM',NULL,'Link',NULL,'UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13962','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',14,'default_valuation_method','Default Valuation Method',NULL,'Select',NULL,'FIFO\nMoving Average',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13963','2012-10-02 13:18:36','2012-10-02 13:18:36','Administrator','Administrator',0,'Global Defaults','fields','DocType',15,'allow_negative_stock','Allow Negative Stock',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Applicable only if valuation method is moving average','White:FFF',NULL,NULL,NULL),('FL13964','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',16,'default_warehouse_type','Default Warehouse Type',NULL,'Link',NULL,'Warehouse Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13965','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',17,'auto_indent','Raise Purchase Request when stock reaches re-order level',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13966','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',18,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%','1',NULL,NULL,NULL,NULL,NULL),('FL13967','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',19,'tolerance','Allowance Percent',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'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

    ','White:FFF',NULL,NULL,NULL),('FL13968','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',20,'stock_frozen_upto','Stock Frozen Upto',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Stock level frozen up to this date, nobody can do / modify entry except authorized person','White:FFF',NULL,NULL,NULL),('FL13969','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',21,'stock_auth_role','Authorized Role (Frozen Entry)',NULL,'Link',NULL,'Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Users with this role are allowed to do / modify stock entry before frozen date','White:FFF',NULL,NULL,NULL),('FL13970','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',22,'accounts','Accounts',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13971','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',23,'acc_frozen_upto','Accounts Frozen Upto',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Accounting entry frozen up to this date, nobody can do / modify entry except authorized person','White:FFF',NULL,NULL,NULL),('FL13972','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',24,'bde_auth_role','Authourized Role (Frozen Entry)',NULL,'Link',NULL,'Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Users with this role are allowed to do / modify accounting entry before frozen date','White:FFF',NULL,NULL,NULL),('FL13973','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',25,'credit_controller','Credit Controller',NULL,'Link',NULL,'Role',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13974','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',26,'column_break4',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13975','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',27,'account_info','Account Info',NULL,'HTML',NULL,'
    For more accounting defaults, Open Company
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13976','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',28,'selling','Selling',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13977','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',29,'cust_master_name','Customer Master created by ',NULL,'Select',NULL,'Customer Name\nNaming Series',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Customer Name',NULL,'White:FFF',NULL,NULL,NULL),('FL13978','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',30,'default_customer_group','Default Customer Group',NULL,'Link',NULL,'Customer Group',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13979','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',31,'cghelp','CGHelp',NULL,'HTML',NULL,'To manage Customer Groups, click here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13980','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',32,'default_territory','Default Territory',NULL,'Link',NULL,'Territory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13981','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',33,'territoryhelp','TerritoryHelp',NULL,'HTML',NULL,'To manage Territory, click here',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13982','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',34,'column_break5',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13983','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',35,'default_price_list','Default Price List',NULL,'Link',NULL,'Price List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13984','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',36,'default_price_list_currency','Default Price List Currency',NULL,'Link',NULL,'Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13985','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',37,'so_required','Sales Order Required',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL13986','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',38,'dn_required','Delivery Note Required',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL13987','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',39,'buying','Buying',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13988','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',40,'default_supplier_type','Default Supplier Type',NULL,'Link',NULL,'Supplier Type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13989','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',41,'supp_master_name','Supplier Master created by ',NULL,'Select',NULL,'Supplier Name\nNaming Series',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'Supplier Name',NULL,'White:FFF',NULL,NULL,NULL),('FL13990','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',42,'column_break6',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL13991','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',43,'po_required','Purchase Order Required',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL13992','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',44,'pr_required','Purchase Receipt Required',NULL,'Select',NULL,'No\nYes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'No',NULL,'White:FFF',NULL,NULL,NULL),('FL13993','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',45,'maintain_same_rate','Maintain same rate throughout purchase cycle',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13994','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',46,'hr','HR',NULL,'Section Break',NULL,'
    HR
    ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13995','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',47,'emp_created_by','Employee Records to be created by ',NULL,'Select',NULL,'\nNaming Series\nEmployee Number',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Employee record is created using selected field. ','White:FFF',NULL,NULL,NULL),('FL13996','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',48,'system','System',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13997','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Global Defaults','fields','DocType',49,'sms_sender_name','SMS Sender Name',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13998','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL13999','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',2,'territory_name','Territory Name','territory_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14000','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',3,'parent_territory','Parent Territory','parent_territory','Link','Link','Territory',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14001','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',4,'is_group','Has Child Node','is_group','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Only leaf nodes are allowed in transaction','White:FFF',NULL,NULL,NULL),('FL14002','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',5,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14003','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',6,'territory_manager','Territory Manager','territory_manager','Link','Link','Sales Person',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'For reference','White:FFF',NULL,1,NULL),('FL14004','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',7,'lft','lft','lft','Int','Int',NULL,1,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14005','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',8,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,0,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14006','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',9,'old_parent','old_parent','old_parent','Link','Data','Territory',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14007','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',10,'target_details_section_break','Territory Targets',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.','White:FFF',NULL,NULL,NULL),('FL14008','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',11,'target_details','Target Details','target_details','Table','Table','Target Detail',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14009','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Territory','fields','DocType',12,'distribution_id','Target Distribution','distribution_id','Link','Link','Budget Distribution',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Select Budget Distribution to unevenly distribute targets across months.','White:FFF',NULL,NULL,NULL),('FL14010','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Currency','fields','DocType',1,'currency_name','Currency Name','currency_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14011','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',1,'details','Company Details',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14012','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',2,'company_name','Company','company_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14013','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',3,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14014','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',4,'abbr','Abbr','abbr','Data','Data',NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,0,NULL,NULL,'Please Enter Abbreviation or Short Name properly as it will be added as Suffix to all Account Heads.','White:FFF',NULL,NULL,NULL),('FL14015','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',5,'default_settings','Default Settings',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14016','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',6,'default_currency','Default Currency',NULL,'Select',NULL,'link:Currency',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14017','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',7,'default_bank_account','Default Bank Account','default_bank_account','Link','Link','Account',NULL,NULL,NULL,NULL,NULL,1,NULL,'Client','eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14018','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',8,'receivables_group','Receivables Group','receivables_group','Link','Link','Account',NULL,NULL,NULL,NULL,NULL,1,NULL,'Client','eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14019','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',9,'payables_group','Payables Group','payables_group','Link','Link','Account',NULL,NULL,NULL,NULL,NULL,1,NULL,'Client','eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14020','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',10,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14021','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',11,'credit_days','Credit Days','credit_days','Int','Int',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14022','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',12,'credit_limit','Credit Limit','credit_limit','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14023','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',13,'yearly_bgt_flag','If Yearly Budget Exceeded','yearly_bgt_flag','Select','Select','\nWarn\nIgnore\nStop',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14024','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',14,'monthly_bgt_flag','If Monthly Budget Exceeded','monthly_bgt_flag','Select','Select','\nWarn\nIgnore\nStop',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'eval:!doc.__islocal',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14025','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',15,'company_info','Company Info',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'For reference only.','White:FFF',NULL,NULL,NULL),('FL14026','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',16,'address','Address','address','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14027','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',17,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14028','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',18,'phone_no','Phone No','phone_no','Data','Data','Phone',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14029','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',19,'fax','Fax','fax','Data','Data','Phone',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14030','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',20,'email','Email','email','Data','Data','Email',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14031','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',21,'website','Website','website','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14032','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',22,'registration_info','Registration Info',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,'Company registration numbers for your reference. Example: VAT Registration Numbers etc.','White:FFF',NULL,NULL,NULL),('FL14033','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',23,'registration_details','Registration Details','registration_details','Code','Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Company registration numbers for your reference. Tax numbers etc.','White:FFF',NULL,NULL,NULL),('FL14034','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Company','fields','DocType',24,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14035','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Price List','fields','DocType',1,'price_list_name','Price List Name','price_list_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14036','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Price List','fields','DocType',2,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14037','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',1,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14038','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',2,'customer_group_name','Customer Group Name','customer_group_name','Data','Data',NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14039','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',3,'parent_customer_group','Parent Customer Group','parent_customer_group','Link','Link','Customer Group',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14040','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',4,'is_group','Has Child Node','is_group','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Only leaf nodes are allowed in transaction','White:FFF',NULL,NULL,NULL),('FL14041','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',5,'cb0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14042','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',6,'default_price_list','Default Price List',NULL,'Link',NULL,'Price List',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'This Price List will be selected as default for all Customers under this Group.','White:FFF',NULL,NULL,NULL),('FL14043','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',7,'lft','lft','lft','Int','Int',NULL,1,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14044','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',8,'rgt','rgt','rgt','Int','Int',NULL,1,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14045','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Customer Group','fields','DocType',9,'old_parent','old_parent','old_parent','Link','Data','Customer Group',NULL,1,1,1,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14046','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',1,'send_autonotification_for','Send Email Automatically on Submission of',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'When any of the checked transactions are \"Submitted\", an email is automatically sent to the associated \"Contact\" in that transaction, with the transaction as an attachment.','White:FFF',NULL,NULL,NULL),('FL14047','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',2,'sales','Sales',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14048','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',3,'quotation','Quotation',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14049','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',4,'sales_order','Sales Order',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14050','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',5,'delivery_note','Delivery Note',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14051','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',6,'sales_invoice','Sales Invoice',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14052','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',7,'purchase','Purchase',NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14053','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',8,'purchase_order','Purchase Order',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14054','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',9,'purchase_receipt','Purchase Receipt',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14055','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',10,'expense_claim','Expense Claim',NULL,'Check',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14056','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',11,'customize_the_notification','Customize the Notification',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.','White:FFF',NULL,NULL,NULL),('FL14057','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',12,'select_transaction','Select Transaction',NULL,'Select',NULL,'\nQuotation\nSales Order\nDelivery Note\nSales Invoice\nPurchase Order\nPurchase Receipt\nExpense Claim\nExpense Claim Approved\nExpense Claim Rejected',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14058','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',13,'custom_message','Custom Message',NULL,'Text Editor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14059','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',14,'update','Update',NULL,'Button',NULL,'set_message',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14060','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',15,'quotation_message','Quotation Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14061','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',16,'sales_order_message','Sales Order Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14062','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',17,'delivery_note_message','Delivery Note Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14063','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',18,'sales_invoice_message','Sales Invoice Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14064','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',19,'purchase_order_message','Purchase Order Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14065','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',20,'purchase_receipt_message','Purchase Receipt Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14066','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',21,'expense_claim_approved_message','Expense Claim Approved Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14067','2012-10-02 13:18:37','2012-10-02 13:18:37','Administrator','Administrator',0,'Notification Control','fields','DocType',22,'expense_claim_rejected_message','Expense Claim Rejected Message',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14068','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',1,'column_break0',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14069','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',2,'item','Item','item','Link','Link','Item',1,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select the item code for which Bill of Material is being created','White:FFF',NULL,1,NULL),('FL14070','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',3,'quantity','Quantity','quantity','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Total quantity of items for which raw materials required and operations done will be defined','White:FFF',NULL,NULL,NULL),('FL14071','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',4,'uom','UOM',NULL,'Select',NULL,'link:UOM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14072','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',5,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL14073','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',6,'column_break1',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14074','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',7,'project_name','Project Name','project_name','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select name of the project if BOM need to be created against any project',NULL,NULL,1,NULL),('FL14075','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',8,'is_active','Is Active','is_active','Select','Select','\nYes\nNo',NULL,0,NULL,NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14076','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',9,'is_default','Is Default','is_default','Check','Check',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14077','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',10,'maintained_by','Maintained By','maintained_by','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14078','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',11,'remarks','Remarks','remarks','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL),('FL14079','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',12,'operations','Operations',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14080','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',13,'bom_operations','BOM Operations','bom_operations','Table','Table','BOM Operation',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Specify the operations, operating cost and give a unique Operation no to your operations.','White:FFF',NULL,NULL,NULL),('FL14081','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',14,'materials','Materials',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14082','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',15,'bom_materials','BOM Item','bom_materials','Table','Table','BOM Item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Enter the raw materials required to manufacture the BOM item. Specify the operation no as entered in the previous tab which will be performed on the raw materials entered.','White:FFF',NULL,NULL,NULL),('FL14083','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',16,'costing','Costing',NULL,'Section Break','Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14084','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',17,'column_break2',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14085','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',18,'rm_cost_as_per','Consider Raw Material Cost As Per',NULL,'Select',NULL,'Valuation Rate\nLast Purchase Rate\nStandard Rate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14086','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',19,'costing_date','Costing Date',NULL,'Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14087','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',20,'update_cost_as_on_today','Update Cost as on today',NULL,'Button',NULL,'calculate_cost',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14088','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',21,'column_break3',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14089','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',22,'raw_material_cost','Raw Material Cost',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14090','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',23,'operating_cost','Operating Cost',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14091','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',24,'total_cost','Total Cost',NULL,'Float',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14092','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',25,'section_break0',NULL,NULL,'Section Break',NULL,'Simple',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14093','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',26,'flat_bom_details','BOM Explosion Item','flat_bom_details','Table','Table','BOM Explosion Item',NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,'No Toolbar',NULL,'White:FFF',NULL,NULL,NULL),('FL14094','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',27,'trash_reason','Trash Reason','trash_reason','Small Text','Small Text',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14095','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',28,'amendment_date','Amendment Date',NULL,'Date',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,'eval:doc.amended_from',0,NULL,NULL,'The date at which current entry is corrected in the system.',NULL,NULL,NULL,NULL),('FL14096','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'BOM','fields','DocType',29,'amended_from','Amended From',NULL,'Link',NULL,'Sales Invoice',NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14097','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',1,'column_break0',NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14098','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',2,'production_item','Production Item','production_item','Link','Link','Item',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,1,NULL,NULL,'Item for which this Production Order is raised.','White:FFF',NULL,1,NULL),('FL14099','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',3,'description','Description','description','Text','Text',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'300px',NULL,NULL,NULL,NULL,NULL,NULL),('FL14100','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',4,'stock_uom','Stock UOM','stock_uom','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14101','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',5,'bom_no','BOM No','bom_no','Link','Link','BOM',NULL,NULL,NULL,NULL,1,NULL,NULL,'Client',NULL,1,NULL,NULL,'Bill of Material which was considered for manufacturing the production item.','White:FFF',NULL,NULL,NULL),('FL14102','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',6,'qty','Qty','qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'Quantity of item for which Production Order is raised.','White:FFF',NULL,NULL,NULL),('FL14103','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',7,'fg_warehouse','FG Warehouse','fg_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The warehouse for finished goods where stock of produced items will be updated.','White:FFF',NULL,1,NULL),('FL14104','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',8,'wip_warehouse','WIP Warehouse','wip_warehouse','Link','Link','Warehouse',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The work in progress warehouse where raw materials will be operated upon to create finished goods.','White:FFF',NULL,1,NULL),('FL14105','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',9,'amended_from','Amended From','amended_from','Data','Data',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14106','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',10,'amendment_date','Amendment Date','amendment_date','Date','Date',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14107','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',11,'column_break1',NULL,NULL,'Column Break','Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14108','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',12,'posting_date','Posting Date','posting_date','Date','Date',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'The date on which current entry will get or has actually executed.','White:FFF',NULL,NULL,NULL),('FL14109','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',13,'consider_sa_items','Consider SA Items as raw material','consider_sa_items','Select','Select','\nYes\nNo',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1,NULL,NULL,'Select \"Yes\" if stock is maintained and tracked for sub-assembly items. Select \"No\" if you want child items of sub-assembly for material transfer.','White:FFF',NULL,1,NULL),('FL14110','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',14,'project_name','Project Name','project_name','Link','Link','Project',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Client',NULL,0,NULL,NULL,'Select name of the project if Production Order need to be created against any project',NULL,NULL,1,NULL),('FL14111','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',15,'origin','Origin','origin','Select','Select','Manual\nMRP',NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14112','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',16,'status','Status','status','Select','Select','\nDraft\nSubmitted\nStopped\nIn Process\nCompleted\nCancelled',1,NULL,NULL,NULL,1,1,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14113','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',17,'produced_qty','Produced Qty','produced_qty','Currency','Currency',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,NULL,'Updated after finished goods are transferred to FG Warehouse through Stock Entry','White:FFF',NULL,NULL,NULL),('FL14114','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',18,'company','Company','company','Link','Link','Company',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14115','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Production Order','fields','DocType',19,'fiscal_year','Fiscal Year','fiscal_year','Select','Select','link:Fiscal Year',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL),('FL14116','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Top Bar Item','fields','DocType',1,'label','Label',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'120px',NULL,NULL,NULL,NULL,NULL,NULL),('FL14117','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Top Bar Item','fields','DocType',2,'url','URL',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'200px',NULL,NULL,NULL,NULL,NULL,NULL),('FL14118','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Top Bar Item','fields','DocType',3,'target','Target',NULL,'Select',NULL,'\ntarget = \"_blank\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14119','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Top Bar Item','fields','DocType',4,'parent_label','Parent Label',NULL,'Select',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14120','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',1,'background_image','Background Image',NULL,'Select',NULL,'attach_files:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'If image is selected, color will be ignored (attach first)','White:FFF',NULL,NULL,NULL),('FL14121','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',2,'background_color','Background Color',NULL,'Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Solid background color (default light gray)','White:FFF',NULL,NULL,NULL),('FL14122','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',3,NULL,NULL,NULL,'Column Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'50%',NULL,NULL,NULL,NULL,NULL,NULL),('FL14123','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',4,'font','Font',NULL,'Select',NULL,'\nHelvetica Neue\nLucida Grande\nVerdana\nArial\nGeorgia\nTahoma\nLato\nOpen Sans',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14124','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',5,'font_size','Font Size',NULL,'Select',NULL,'\n12px\n13px\n14px\n15px\n16px',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14125','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',6,'heading_font','Heading Font',NULL,'Select',NULL,'\nHelvetica Neue\nLucida Grande\nVerdana\nArial\nGeorgia\nTahoma\nLato\nOpen Sans',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14126','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',7,'css','CSS',NULL,'Section Break',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('FL14127','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',8,'add_css','Add CSS',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'add your own CSS (careful!)','White:FFF',NULL,NULL,NULL),('FL14128','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',9,'custom_css','Custom CSS',NULL,'Code',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Auto generated','White:FFF',NULL,NULL,NULL),('FL14129','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','Administrator',0,'Style Settings','fields','DocType',10,'file_list','File List',NULL,'Text',NULL,NULL,NULL,1,1,NULL,NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabDocField` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDocPerm` --- - -DROP TABLE IF EXISTS `tabDocPerm`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDocPerm` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `permlevel` int(11) default '0', - `role` varchar(180) default NULL, - `match` varchar(180) default NULL, - `read` int(1) default NULL, - `write` int(1) default NULL, - `create` int(1) default NULL, - `submit` int(1) default NULL, - `cancel` int(1) default NULL, - `amend` int(1) default NULL, - `execute` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDocPerm` --- - -LOCK TABLES `tabDocPerm` WRITE; -/*!40000 ALTER TABLE `tabDocPerm` DISABLE KEYS */; -INSERT INTO `tabDocPerm` VALUES ('000000159','2011-05-20 10:07:33','2011-05-20 10:07:33','Administrator','Administrator',0,'Account Balance','permissions','DocType',NULL,0,'Accounts User',NULL,1,0,0,0,0,0,NULL),('000000160','2011-05-20 10:07:33','2011-05-20 10:07:33','Administrator','Administrator',0,'Account Balance','permissions','DocType',NULL,0,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('000000454','2011-05-20 10:07:54','2011-05-20 10:07:54','Administrator','Administrator',0,'Answer','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,1,NULL,NULL),('000000492','2011-05-20 10:07:56','2011-05-20 10:07:56','Administrator','Administrator',0,'System Console','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('000000493','2011-05-20 10:07:56','2011-05-20 10:07:56','Administrator','Administrator',0,'System Console','permissions','DocType',2,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('000000555','2011-05-20 10:08:00','2011-05-20 10:08:00','Administrator','Administrator',0,'Property Setter','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,1,NULL,NULL),('000000556','2011-05-20 10:08:00','2011-05-20 10:08:00','Administrator','Administrator',0,'Property Setter','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('000000578','2011-05-20 10:08:01','2011-05-20 10:08:01','Administrator','Administrator',0,'DocType','permissions','DocType',NULL,0,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('000000579','2011-05-20 10:08:01','2011-05-20 10:08:01','Administrator','Administrator',0,'Custom Script','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00003','2009-05-12 11:19:22','2009-11-25 10:03:15','Administrator','Administrator',0,'DocField','permissions','DocType',1,0,'Administrator','',0,0,0,0,0,NULL,0),('PERM00004','2009-05-12 11:19:22','2010-08-08 16:51:13','Administrator','Administrator',0,'DocType','permissions','DocType',1,0,'Administrator','',1,1,1,0,0,NULL,0),('PERM00005','2009-05-12 11:19:22','2010-08-08 16:51:13','Administrator','Administrator',0,'DocType','permissions','DocType',2,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00006','2009-05-12 11:19:22','2009-05-12 11:19:22','Administrator','Administrator',0,'Event','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00007','2009-05-12 11:19:22','2010-08-08 17:16:13','Administrator','Administrator',0,'Module Def','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00009','2009-05-12 11:19:22','2009-11-25 10:15:16','Administrator','Administrator',0,'Print Format','permissions','DocType',1,0,'Administrator','',1,1,1,0,0,NULL,0),('PERM00014','2009-05-12 11:19:22','2009-06-30 16:20:34','Administrator','Administrator',0,'Role','permissions','DocType',1,0,'Administrator','',1,1,1,0,0,NULL,0),('PERM00020','2009-05-12 11:19:22','2009-05-12 11:19:22','Administrator','Administrator',0,'ToDo','permissions','DocType',1,0,'All',NULL,1,NULL,1,NULL,NULL,NULL,NULL),('PERM00042','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',1,0,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00043','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',2,0,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00044','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,0,1,0,NULL),('PERM00045','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',4,0,'Accounts Manager',NULL,1,1,1,0,1,0,NULL),('PERM00046','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',5,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00047','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',6,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00048','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',7,2,'Accounts Manager',NULL,1,1,0,0,0,0,NULL),('PERM00049','2010-08-08 17:08:51','2010-08-08 17:08:51','Administrator','Administrator',0,'Account','permissions','DocType',8,2,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00050','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Authorization Rule','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00051','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Authorization Rule','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00055','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bank Reconciliation','permissions','DocType',1,0,'Accounts User','',1,1,1,0,0,0,NULL),('PERM00056','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bank Reconciliation','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00057','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','harshada@webnotestech.com',0,'Batch','permissions','DocType',1,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00058','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','harshada@webnotestech.com',0,'Batch','permissions','DocType',2,1,'Material Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00059','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00060','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00061','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',3,0,'Production Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00062','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',4,1,'Production Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00063','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',5,0,'Production User',NULL,1,1,1,1,1,NULL,NULL),('PERM00064','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'BOM','permissions','DocType',6,1,'Production User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00065','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',1,0,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00066','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',2,0,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00067','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',3,0,'Purchase Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00068','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',4,0,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00069','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',5,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00070','2010-08-08 17:08:52','2010-08-08 17:08:52','Administrator','Administrator',0,'Bin','permissions','DocType',6,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00071','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'BOM Item','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00072','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'BOM Item','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00073','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'BOM Operation','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00074','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'BOM Operation','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00084','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Branch','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00085','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','harshada@webnotestech.com',0,'Branch','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00086','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','harshada@webnotestech.com',0,'Branch','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00087','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00088','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00089','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00090','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00091','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','saumil@webnotestech.com',0,'Brand','permissions','DocType',5,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00092','2010-08-08 17:08:53','2010-08-08 17:08:53','Administrator','Administrator',0,'Brand','permissions','DocType',6,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00093','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Budget Distribution','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00094','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Budget Distribution','permissions','DocType',2,1,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00095','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Budget Distribution','permissions','DocType',3,2,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00096','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','saumil@webnotestech.com',0,'Budget Distribution','permissions','DocType',4,0,'Accounts Manager',NULL,1,1,1,0,1,0,NULL),('PERM00097','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','saumil@webnotestech.com',0,'Budget Distribution','permissions','DocType',5,1,'Accounts Manager',NULL,1,1,0,0,0,0,NULL),('PERM00098','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','saumil@webnotestech.com',0,'Budget Distribution','permissions','DocType',6,2,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00105','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00106','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00107','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',3,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00108','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00109','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',5,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00110','2010-08-08 17:08:54','2010-08-08 17:08:54','Administrator','Administrator',0,'Campaign','permissions','DocType',6,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00118','2010-08-08 17:08:55','2010-08-08 17:08:55','Administrator','Administrator',0,'Comment','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00119','2010-08-08 17:08:55','2010-08-08 17:08:55','Administrator','Administrator',0,'Company','permissions','DocType',1,0,'System Manager','',1,1,1,0,1,0,NULL),('PERM00120','2010-08-08 17:08:55','2010-08-08 17:08:55','Administrator','Administrator',0,'Company','permissions','DocType',2,0,'System Manager','',1,1,1,0,1,0,NULL),('PERM00121','2010-08-08 17:08:55','2010-08-08 17:08:55','Administrator','Administrator',0,'Company','permissions','DocType',3,1,'All',NULL,1,NULL,NULL,NULL,0,NULL,NULL),('PERM00130','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Contact Control','permissions','DocType',1,0,'System Manager',NULL,1,1,0,NULL,NULL,NULL,NULL),('PERM00131','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00132','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,0,1,0,NULL),('PERM00133','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',3,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00134','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',4,0,'Accounts User','',1,0,0,0,0,0,NULL),('PERM00135','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00136','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Cost Center','permissions','DocType',6,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00137','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Country','permissions','DocType',1,0,'Sales Master Manager',NULL,1,1,1,0,0,0,NULL),('PERM00138','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Country','permissions','DocType',2,0,'Purchase Master Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00139','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','harshada@webnotestech.com',0,'Country','permissions','DocType',3,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00140','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','harshada@webnotestech.com',0,'Country','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00141','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Currency','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00142','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Currency','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,0,0,NULL),('PERM00143','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Currency','permissions','DocType',3,0,'Purchase Master Manager',NULL,1,1,1,0,0,0,NULL),('PERM00149','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Custom Script','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00150','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00151','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00152','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00153','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00154','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',5,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00155','2010-08-08 17:08:56','2010-08-08 17:08:56','Administrator','Administrator',0,'Customer','permissions','DocType',6,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00156','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00157','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00158','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',3,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00159','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00160','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',5,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00161','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Customer Group','permissions','DocType',6,0,'Sales Master Manager','',1,1,1,0,1,0,NULL),('PERM00162','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','harshada@webnotestech.com',0,'Customer Issue','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00163','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','harshada@webnotestech.com',0,'Customer Issue','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00164','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','ashwini@webnotestech.com',0,'Customer Issue','permissions','DocType',3,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00165','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','ashwini@webnotestech.com',0,'Customer Issue','permissions','DocType',4,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00166','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','ashwini@webnotestech.com',0,'Customer Issue','permissions','DocType',5,0,'Maintenance User',NULL,1,1,1,1,1,1,NULL),('PERM00167','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','ashwini@webnotestech.com',0,'Customer Issue','permissions','DocType',6,1,'Maintenance User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00172','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Deduction Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00173','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','harshada@webnotestech.com',0,'Deduction Type','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00174','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','harshada@webnotestech.com',0,'Deduction Type','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00175','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',1,0,'Material User',NULL,1,1,1,1,1,1,NULL),('PERM00176','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',2,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00177','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',3,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00178','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',4,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00179','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',5,0,'Sales User','',1,1,1,1,1,1,NULL),('PERM00180','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',6,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00181','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',7,0,'Accounts User',NULL,1,0,0,0,0,NULL,NULL),('PERM00182','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',8,1,'Accounts User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00183','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','Administrator',0,'Delivery Note','permissions','DocType',9,0,'Customer','customer_name',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00184','2010-08-08 17:08:57','2010-08-08 17:08:57','Administrator','nabin@webnotestech.com',0,'Delivery Note','permissions','DocType',10,2,'All',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00185','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','Administrator',0,'Department','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00186','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','harshada@webnotestech.com',0,'Department','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00187','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','harshada@webnotestech.com',0,'Department','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00188','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','Administrator',0,'Designation','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00189','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','harshada@webnotestech.com',0,'Designation','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00190','2010-08-08 17:08:58','2010-08-08 17:08:58','Administrator','harshada@webnotestech.com',0,'Designation','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00191','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Label','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00192','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Mapper','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00193','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'DocType Mapper','permissions','DocType',2,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00199','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'Earning Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00200','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Earning Type','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00201','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Earning Type','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00202','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Email Settings','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00203','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Email Settings','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00205','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','Administrator',0,'Employee','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00206','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Employee','permissions','DocType',3,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00207','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Employee','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00208','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Employee','permissions','DocType',5,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00209','2010-08-08 17:08:59','2010-08-08 17:08:59','Administrator','harshada@webnotestech.com',0,'Employee','permissions','DocType',6,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00216','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','Administrator',0,'Employment Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00217','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','harshada@webnotestech.com',0,'Employment Type','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00218','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','harshada@webnotestech.com',0,'Employment Type','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00219','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','Administrator',0,'Opportunity','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00220','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','Administrator',0,'Opportunity','permissions','DocType',2,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00221','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','Administrator',0,'Opportunity','permissions','DocType',3,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00222','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','nabin@webnotestech.com',0,'Opportunity','permissions','DocType',4,0,'Sales User',NULL,1,1,1,1,1,1,NULL),('PERM00223','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','nabin@webnotestech.com',0,'Opportunity','permissions','DocType',5,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00224','2010-08-08 17:09:00','2010-08-08 17:09:00','Administrator','nabin@webnotestech.com',0,'Opportunity','permissions','DocType',6,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00231','2010-08-08 17:09:02','2010-08-08 17:09:02','Administrator','Administrator',0,'Fiscal Year','permissions','DocType',1,0,'System Manager','',1,1,1,0,1,0,NULL),('PERM00232','2010-08-08 17:09:02','2010-08-08 17:09:02','Administrator','Administrator',0,'Fiscal Year','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00240','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','Administrator',0,'GL Entry','permissions','DocType',1,0,'Accounts Manager','',1,0,0,0,0,0,NULL),('PERM00241','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','Administrator',0,'GL Entry','permissions','DocType',2,0,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00242','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','Administrator',0,'GL Mapper','permissions','DocType',1,0,'Accounts User','',1,0,0,0,0,0,NULL),('PERM00243','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','wasim@webnotestech.com',0,'GL Mapper','permissions','DocType',2,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00244','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','Administrator',0,'Grade','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00245','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','harshada@webnotestech.com',0,'Grade','permissions','DocType',2,0,'HR User',NULL,1,1,1,0,1,NULL,NULL),('PERM00246','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','harshada@webnotestech.com',0,'Grade','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00249','2010-08-08 17:09:03','2010-08-08 17:09:03','Administrator','harshada@webnotestech.com',0,'Holiday List','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00254','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',1,1,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00255','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',2,0,'Purchase Manager',NULL,1,1,1,1,1,1,NULL),('PERM00256','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',3,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00257','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',4,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00258','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',5,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00259','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',6,0,'Material User',NULL,1,1,1,1,1,1,NULL),('PERM00260','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',7,0,'Purchase User','',1,1,1,1,1,1,NULL),('PERM00261','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Purchase Request','permissions','DocType',8,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00262','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','harshada@webnotestech.com',0,'Industry Type','permissions','DocType',1,0,'Sales Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00263','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','harshada@webnotestech.com',0,'Industry Type','permissions','DocType',2,0,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00264','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','harshada@webnotestech.com',0,'Industry Type','permissions','DocType',3,0,'Sales Master Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00265','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00266','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00267','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',3,0,'Sales User',NULL,1,1,1,1,1,1,NULL),('PERM00268','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',4,1,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00269','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',5,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00270','2010-08-08 17:09:04','2010-08-08 17:09:04','Administrator','Administrator',0,'Installation Note','permissions','DocType',6,1,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00280','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00281','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00282','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00283','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00284','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','dhanalekshmi@webnotestech.com',0,'Item','permissions','DocType',5,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00285','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','dhanalekshmi@webnotestech.com',0,'Item','permissions','DocType',6,1,'Material Master Manager',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00286','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','dhanalekshmi@webnotestech.com',0,'Item','permissions','DocType',7,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00287','2010-08-08 17:09:05','2010-08-08 17:09:05','Administrator','Administrator',0,'Item','permissions','DocType',8,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00288','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00289','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00290','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00291','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00292','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Item Group','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00293','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','saumil@webnotestech.com',0,'Item Group','permissions','DocType',6,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00294','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Journal Voucher','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00295','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Journal Voucher','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00296','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Journal Voucher','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,1,1,1,NULL),('PERM00297','2010-08-08 17:09:06','2010-08-08 17:09:06','Administrator','Administrator',0,'Journal Voucher','permissions','DocType',4,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00299','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',2,0,'Purchase Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00300','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00301','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',4,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00302','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',5,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00303','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',6,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00304','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',7,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00305','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Landed Cost Master','permissions','DocType',8,1,'Purchase Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00314','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Lead','permissions','DocType',1,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00315','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Lead','permissions','DocType',2,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00316','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','swarnalata@webnotestech.com',0,'Lead','permissions','DocType',3,0,'Sales Manager',NULL,1,1,1,0,1,0,NULL),('PERM00317','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','swarnalata@webnotestech.com',0,'Lead','permissions','DocType',4,0,'Sales User',NULL,1,1,1,0,0,0,NULL),('PERM00318','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Lead','permissions','DocType',5,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00319','2010-08-08 17:09:07','2010-08-08 17:09:07','Administrator','Administrator',0,'Lead','permissions','DocType',6,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00320','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','Administrator',0,'Leave Control Panel','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00321','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','Administrator',0,'Leave Control Panel','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00322','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Control Panel','permissions','DocType',3,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00323','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Control Panel','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00324','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Control Panel','permissions','DocType',5,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00325','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Control Panel','permissions','DocType',6,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00333','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','Administrator',0,'Leave Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00334','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Type','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00335','2010-08-08 17:09:08','2010-08-08 17:09:08','Administrator','harshada@webnotestech.com',0,'Leave Type','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00338','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Maintenance Schedule','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00339','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Maintenance Schedule','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00340','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Schedule','permissions','DocType',3,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00341','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Schedule','permissions','DocType',4,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00342','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00343','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00344','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',3,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00345','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',4,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00346','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',5,0,'Maintenance User',NULL,1,1,1,1,1,1,NULL),('PERM00347','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','ashwini@webnotestech.com',0,'Maintenance Visit','permissions','DocType',6,1,'Maintenance User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00348','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',1,0,'System Manager','',1,1,1,0,0,0,NULL),('PERM00349','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00350','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',3,1,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00351','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',4,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00352','2010-08-08 17:09:09','2010-08-08 17:09:09','Administrator','Administrator',0,'Global Defaults','permissions','DocType',5,2,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00356','2010-08-08 17:09:10','2010-08-08 17:09:10','Administrator','harshada@webnotestech.com',0,'Mode of Payment','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00363','2010-08-08 17:09:10','2010-08-08 17:09:10','Administrator','Administrator',0,'Quotation Lost Reason','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00364','2010-08-08 17:09:10','2010-08-08 17:09:10','Administrator','saumil@webnotestech.com',0,'Quotation Lost Reason','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00365','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',1,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00366','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',2,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00367','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',3,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00368','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',4,0,'Accounts Manager','',1,1,1,0,1,0,NULL),('PERM00369','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00370','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Sales Taxes and Charges Master','permissions','DocType',6,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00371','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Other Income Detail','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00372','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Other Income Detail','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00374','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00375','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00376','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',3,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00377','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',4,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00378','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',5,0,'Purchase User','',1,1,1,0,0,0,NULL),('PERM00379','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',6,0,'Accounts User',NULL,1,1,1,1,1,1,NULL),('PERM00380','2010-08-08 17:09:11','2010-08-08 17:09:11','Administrator','Administrator',0,'Purchase Invoice','permissions','DocType',7,0,'Supplier','supplier',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00384','2010-08-08 17:09:12','2010-08-08 17:09:12','Administrator','nabin@webnotestech.com',0,'Period','permissions','DocType',1,0,'System Manager',NULL,1,0,NULL,NULL,NULL,NULL,NULL),('PERM00385','2010-08-08 17:09:12','2010-08-08 17:09:12','Administrator','nabin@webnotestech.com',0,'Period','permissions','DocType',2,0,'System Manager',NULL,1,0,NULL,NULL,NULL,NULL,NULL),('PERM00389','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Production Plan Sales Order','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00390','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Production Plan Sales Order','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00391','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Employee External Work History','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00392','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00393','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00394','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00395','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00396','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Price List','permissions','DocType',5,0,'Sales Master Manager','',1,1,1,0,1,0,NULL),('PERM00397','2010-08-08 17:09:13','2010-08-08 17:09:13','Administrator','Administrator',0,'Print Heading','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00401','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Production Order','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00402','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Production Order','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00403','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Production Order','permissions','DocType',3,0,'Production Manager',NULL,1,1,1,1,1,1,NULL),('PERM00404','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Production Order','permissions','DocType',4,0,'Production User',NULL,1,1,1,1,1,1,NULL),('PERM00405','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','jai@webnotestech.com',0,'Production Planning Tool','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00406','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','saumil@webnotestech.com',0,'Production Planning Tool','permissions','DocType',2,0,'Production User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00407','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','saumil@webnotestech.com',0,'Production Planning Tool','permissions','DocType',3,0,'Production Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00409','2010-08-08 17:09:14','2010-08-08 17:09:14','Administrator','Administrator',0,'Project','permissions','DocType',2,0,'Projects User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00411','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',1,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00412','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',2,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00413','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',3,1,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00414','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',4,0,'Purchase Manager',NULL,1,1,1,1,1,1,NULL),('PERM00415','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',5,0,'Purchase User','',1,1,1,1,1,1,NULL),('PERM00416','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',6,1,'All','',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00417','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Order','permissions','DocType',7,0,'Supplier','supplier',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00418','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','nabin@webnotestech.com',0,'Purchase Order','permissions','DocType',8,2,'All','',1,1,NULL,NULL,NULL,NULL,NULL),('PERM00419','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','permissions','DocType',1,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00420','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','permissions','DocType',2,0,'Purchase Manager','',1,0,0,0,0,0,NULL),('PERM00421','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','wasim@webnotestech.com',0,'Purchase Taxes and Charges Master','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00422','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','harshada@webnotestech.com',0,'Purchase Taxes and Charges Master','permissions','DocType',4,0,'Purchase Master Manager',NULL,1,1,1,0,1,NULL,NULL),('PERM00423','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00424','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',2,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00425','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00426','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',4,0,'Material User',NULL,1,1,1,1,1,1,NULL),('PERM00427','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',5,0,'Purchase User','',1,1,1,1,1,1,NULL),('PERM00428','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',6,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00429','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','Administrator',0,'Purchase Receipt','permissions','DocType',7,0,'Supplier','supplier',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00430','2010-08-08 17:09:15','2010-08-08 17:09:15','Administrator','nabin@webnotestech.com',0,'Purchase Receipt','permissions','DocType',8,2,'All',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00431','2010-08-08 17:09:17','2010-08-08 17:09:17','Administrator','Administrator',0,'Quality Inspection','permissions','DocType',1,0,'Quality Manager',NULL,1,1,1,1,1,1,NULL),('PERM00432','2010-08-08 17:09:17','2010-08-08 17:09:17','Administrator','Administrator',0,'Quality Inspection','permissions','DocType',2,1,'Quality Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00433','2010-08-08 17:09:17','2010-08-08 17:09:17','Administrator','Administrator',0,'Question','permissions','DocType',1,0,'All',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00435','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00436','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',2,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00437','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',3,0,'Sales User','',1,1,1,1,1,1,NULL),('PERM00438','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00439','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','Administrator',0,'Quotation','permissions','DocType',5,0,'Customer','customer_name',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00440','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','ashwini@webnotestech.com',0,'Quotation','permissions','DocType',6,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00441','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','ashwini@webnotestech.com',0,'Quotation','permissions','DocType',7,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00442','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','ashwini@webnotestech.com',0,'Quotation','permissions','DocType',8,0,'Maintenance User',NULL,1,1,1,1,1,1,NULL),('PERM00443','2010-08-08 17:09:17','2010-11-30 11:44:58','Administrator','ashwini@webnotestech.com',0,'Quotation','permissions','DocType',9,1,'Maintenance User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00446','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00447','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00448','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,1,1,1,NULL),('PERM00449','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',4,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00450','2010-08-08 17:09:18','2010-08-08 17:09:18','Administrator','Administrator',0,'Sales Invoice','permissions','DocType',5,0,'Customer','customer',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00451','2010-08-08 17:09:19','2010-08-08 17:09:19','Administrator','Administrator',0,'Reposting Tool','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00455','2010-08-08 17:09:20','2010-08-08 17:09:20','Administrator','harshada@webnotestech.com',0,'Salary Slip','permissions','DocType',3,0,'HR User',NULL,1,1,1,1,NULL,0,NULL),('PERM00456','2010-08-08 17:09:20','2010-08-08 17:09:20','Administrator','harshada@webnotestech.com',0,'Salary Slip','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00457','2010-08-08 17:09:20','2010-08-08 17:09:20','Administrator','harshada@webnotestech.com',0,'Salary Slip','permissions','DocType',5,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00458','2010-08-08 17:09:20','2010-08-08 17:09:20','Administrator','harshada@webnotestech.com',0,'Salary Slip','permissions','DocType',6,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00468','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales and Purchase Return Tool','permissions','DocType',1,0,'Material User',NULL,1,1,1,0,0,0,NULL),('PERM00469','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales and Purchase Return Tool','permissions','DocType',2,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00470','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales and Purchase Return Tool','permissions','DocType',3,0,'Material Manager',NULL,1,1,1,0,0,0,NULL),('PERM00471','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales and Purchase Return Tool','permissions','DocType',4,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00473','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',6,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00474','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',7,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00475','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',8,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00476','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',9,0,'Sales User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00477','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',10,0,'Sales Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00478','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',11,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00479','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',12,0,'Purchase Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00480','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',13,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00481','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',14,1,'System Manager',NULL,1,0,0,0,0,0,NULL),('PERM00482','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',15,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00483','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',16,1,'Accounts User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00484','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',17,1,'Sales User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00485','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',18,1,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00486','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',19,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00487','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','wasim@webnotestech.com',0,'Sales and Purchase Return Tool','permissions','DocType',20,1,'Purchase Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00488','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00489','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',2,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00490','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00491','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00492','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',5,0,'Sales User',NULL,1,1,1,0,1,0,NULL),('PERM00493','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales BOM','permissions','DocType',6,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00494','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00495','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',2,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00496','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',3,0,'Sales User','',1,1,1,1,1,1,NULL),('PERM00497','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00498','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','Administrator',0,'Sales Order','permissions','DocType',5,0,'Customer','customer_name',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00499','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','saumil@webnotestech.com',0,'Sales Order','permissions','DocType',6,2,'Accounts User',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00500','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','ashwini@webnotestech.com',0,'Sales Order','permissions','DocType',7,0,'Maintenance Manager',NULL,1,1,1,1,1,1,NULL),('PERM00501','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','ashwini@webnotestech.com',0,'Sales Order','permissions','DocType',8,1,'Maintenance Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00502','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','ashwini@webnotestech.com',0,'Sales Order','permissions','DocType',9,0,'Maintenance User',NULL,1,1,1,1,1,1,NULL),('PERM00503','2010-08-08 17:09:21','2010-08-08 17:09:21','Administrator','ashwini@webnotestech.com',0,'Sales Order','permissions','DocType',10,1,'Maintenance User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00504','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00505','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00506','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00507','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00508','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',5,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00509','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',6,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00510','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',7,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00511','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Partner','permissions','DocType',8,1,'System Manager',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00512','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00513','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00514','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00515','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00516','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',5,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00517','2010-08-08 17:09:22','2010-08-08 17:09:22','Administrator','Administrator',0,'Sales Person','permissions','DocType',6,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00518','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00519','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00520','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00521','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00522','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00523','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',6,0,'Material Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00524','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',7,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00525','2010-08-08 17:09:23','2010-08-08 17:09:23','Administrator','Administrator',0,'Serial No','permissions','DocType',8,1,'Sales Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00534','2010-08-08 17:09:24','2010-08-08 17:09:24','Administrator','Administrator',0,'SMS Control','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00535','2010-08-08 17:09:24','2010-08-08 17:09:24','Administrator','Administrator',0,'SMS Control','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00536','2010-08-08 17:09:24','2010-08-08 17:09:24','Administrator','Administrator',0,'Salary Slip Deduction','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00537','2010-08-08 17:09:24','2010-08-08 17:09:24','Administrator','Administrator',0,'Salary Slip Earning','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00538','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','dhanalekshmi@webnotestech.com',0,'State','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00539','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'State','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,0,0,NULL),('PERM00540','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'State','permissions','DocType',3,0,'Purchase Master Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00541','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Entry','permissions','DocType',1,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00542','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Entry','permissions','DocType',2,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00543','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Entry','permissions','DocType',3,0,'Material User','',1,1,1,1,1,1,NULL),('PERM00544','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Entry','permissions','DocType',4,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00545','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',5,0,'Production User',NULL,1,1,1,1,1,1,NULL),('PERM00546','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',6,1,'Production User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00547','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',7,2,'Production User',NULL,1,1,0,NULL,NULL,NULL,NULL),('PERM00548','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',8,0,'Production Manager',NULL,1,1,1,1,1,1,NULL),('PERM00549','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',9,1,'Production Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00550','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','jai@webnotestech.com',0,'Stock Entry','permissions','DocType',10,2,'Production Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00551','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger','permissions','DocType',1,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00552','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger','permissions','DocType',2,1,'Material User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00553','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',1,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00554','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00555','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00556','2010-08-08 17:09:25','2010-08-08 17:09:25','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',4,2,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00557','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Stock Reconciliation','permissions','DocType',1,0,'Material Manager','',1,1,1,1,1,0,NULL),('PERM00558','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Stock Reconciliation','permissions','DocType',2,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00559','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock Reconciliation','permissions','DocType',3,0,'System Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00560','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00561','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',2,1,'System Manager',NULL,1,0,NULL,NULL,NULL,NULL,NULL),('PERM00562','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',3,0,'Material Master Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00563','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',4,0,'Material Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00564','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',5,1,'Material Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00565','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','jai@webnotestech.com',0,'Stock UOM Replace Utility','permissions','DocType',6,1,'Material Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00566','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier','permissions','DocType',1,1,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00567','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier','permissions','DocType',2,0,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00568','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier','permissions','DocType',3,1,'Purchase Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00569','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier','permissions','DocType',4,0,'Purchase Master Manager','',1,1,1,0,1,0,NULL),('PERM00570','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',1,1,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00571','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',2,0,'Purchase Manager',NULL,1,0,0,0,0,0,NULL),('PERM00572','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',3,1,'Purchase User',NULL,1,0,0,0,0,0,NULL),('PERM00573','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',4,0,'Purchase User',NULL,1,0,0,0,0,0,NULL),('PERM00574','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Supplier Type','permissions','DocType',5,0,'Purchase Master Manager','',1,1,1,0,1,0,NULL),('PERM00575','2010-08-08 17:09:26','2010-08-08 17:09:26','Administrator','Administrator',0,'Tag','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00578','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Category','permissions','DocType',1,0,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00579','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Category','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,0,0,0,NULL),('PERM00580','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Category','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00585','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',1,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00586','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',2,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00587','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,1,1,1,NULL),('PERM00588','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',4,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00589','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Payment','permissions','DocType',5,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00590','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Rate Chart','permissions','DocType',1,0,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00591','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Rate Chart','permissions','DocType',2,0,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00592','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'TDS Rate Chart','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00593','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','permissions','DocType',1,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00594','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','nabin@webnotestech.com',0,'TDS Return Acknowledgement','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00595','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',1,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00596','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00597','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',3,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00598','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',4,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00599','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',5,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00600','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',6,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00601','2010-08-08 17:09:27','2010-08-08 17:09:27','Administrator','Administrator',0,'Terms and Conditions','permissions','DocType',7,0,'Accounts User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00602','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',1,1,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00603','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',2,0,'Sales Manager',NULL,1,0,0,0,0,0,NULL),('PERM00604','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',3,1,'Sales Master Manager',NULL,1,0,0,0,0,0,NULL),('PERM00605','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',4,1,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00606','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Territory','permissions','DocType',5,0,'Sales User',NULL,1,0,0,0,0,0,NULL),('PERM00607','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','saumil@webnotestech.com',0,'Territory','permissions','DocType',6,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00617','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Task','permissions','DocType',3,0,'Projects User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00618','2010-08-08 17:09:28','2010-08-08 17:09:28','Administrator','Administrator',0,'Task','permissions','DocType',4,1,'Projects User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00621','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00622','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00623','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00624','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00625','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','Administrator',0,'UOM','permissions','DocType',5,0,'Material Master Manager','',1,1,1,0,1,0,NULL),('PERM00626','2010-08-08 17:09:29','2010-08-08 17:09:29','Administrator','jai@webnotestech.com',0,'Update Delivery Date','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00628','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',1,2,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00629','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',2,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00630','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00631','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',4,2,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00632','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',5,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00633','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',6,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00634','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',7,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00635','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',8,0,'Material Master Manager','',1,1,1,0,1,0,NULL),('PERM00636','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',9,1,'Material Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00637','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','jai@webnotestech.com',0,'Warehouse','permissions','DocType',10,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00638','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse','permissions','DocType',11,2,'System Manager',NULL,1,1,0,NULL,NULL,NULL,NULL),('PERM00639','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',1,1,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00640','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',2,0,'Material Manager',NULL,1,0,0,0,0,0,NULL),('PERM00641','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',3,1,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00642','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00643','2010-08-08 17:09:30','2010-08-08 17:09:30','Administrator','Administrator',0,'Warehouse Type','permissions','DocType',5,0,'Material Master Manager','',1,1,1,0,1,0,NULL),('PERM00651','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','swarnalata@webnotestech.com',0,'Workflow Rule','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00652','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','Administrator',0,'Workstation','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00653','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','Administrator',0,'Workstation','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00654','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','jai@webnotestech.com',0,'Workstation','permissions','DocType',3,0,'Production User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00655','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','jai@webnotestech.com',0,'Workstation','permissions','DocType',4,0,'Production User',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00656','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','jai@webnotestech.com',0,'Workstation','permissions','DocType',5,1,'Production Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00657','2010-08-08 17:09:31','2010-08-08 17:09:31','Administrator','jai@webnotestech.com',0,'Workstation','permissions','DocType',6,1,'Production User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00658','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00659','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00660','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',3,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00661','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',4,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00662','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',5,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00663','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',6,0,'HR User',NULL,1,1,1,1,1,1,NULL),('PERM00664','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',7,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00665','2010-09-01 15:47:54','2010-09-01 15:47:54','Administrator','ashwini@webnotestech.com',0,'Appraisal','permissions','DocType',8,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00666','2010-09-01 15:47:55','2010-09-01 15:47:55','Administrator','ashwini@webnotestech.com',0,'Appraisal Template','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00667','2010-09-01 15:47:56','2010-09-01 15:47:56','Administrator','Administrator',0,'Notification Control','permissions','DocType',1,0,'Guest',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00668','2010-09-01 15:47:56','2010-09-01 15:47:56','Administrator','Administrator',0,'Notification Control','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00672','2010-09-03 16:45:05','2010-09-03 16:45:05','Administrator','harshada@webnotestech.com',0,'Expense Claim Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00673','2010-09-03 16:45:05','2010-09-03 16:45:05','Administrator','harshada@webnotestech.com',0,'Expense Claim Type','permissions','DocType',2,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00674','2010-09-03 16:45:05','2010-09-03 16:45:05','Administrator','ashwini@webnotestech.com',0,'Expense Claim Type','permissions','DocType',3,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00677','2010-09-03 16:45:05','2010-09-03 16:45:05','Administrator','harshada@webnotestech.com',0,'Expense Claim','permissions','DocType',3,1,'All','',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00678','2010-09-07 17:04:25','2010-09-07 17:04:25','Administrator','Administrator',0,'Appraisal Template','permissions','DocType',NULL,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00679','2010-09-07 17:04:25','2010-09-07 17:04:25','Administrator','Administrator',0,'Appraisal Template','permissions','DocType',NULL,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00680','2010-09-07 17:04:25','2010-09-07 17:04:25','Administrator','Administrator',0,'Appraisal Template','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00681','2010-09-23 10:26:02','2010-09-23 10:26:02','Administrator','ashwini@webnotestech.com',0,'Attendance','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00682','2010-09-23 17:49:12','2010-09-23 17:49:12','Administrator','Administrator',0,'Attendance','permissions','DocType',NULL,0,'HR User',NULL,1,1,1,1,1,NULL,NULL),('PERM00683','2010-09-23 17:49:12','2010-09-23 17:49:12','Administrator','Administrator',0,'Attendance','permissions','DocType',NULL,0,'HR Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00684','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',1,1,'Accounts Manager',NULL,1,0,0,0,0,0,NULL),('PERM00685','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,0,0,0,NULL),('PERM00686','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',3,1,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00687','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',4,0,'Accounts User',NULL,1,1,1,0,0,0,NULL),('PERM00688','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',5,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00689','2010-09-27 15:56:51','2010-09-27 15:56:51','Administrator','Administrator',0,'Form 16A','permissions','DocType',6,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00693','2010-10-07 12:49:37','2010-10-07 12:49:37','Administrator','Administrator',0,'Lead','permissions','DocType',NULL,0,'Guest',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00694','2010-10-07 12:49:37','2010-10-07 12:49:37','Administrator','Administrator',0,'Customer Issue','permissions','DocType',NULL,0,'Guest',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00695','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','Administrator',0,'Custom Field','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00696','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','saumil@webnotestech.com',0,'Custom Field','permissions','DocType',2,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00697','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','saumil@webnotestech.com',0,'Custom Field','permissions','DocType',3,2,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00698','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','saumil@webnotestech.com',0,'Custom Field','permissions','DocType',4,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00699','2010-10-13 16:39:01','2010-10-13 16:39:01','Administrator','saumil@webnotestech.com',0,'Custom Field','permissions','DocType',5,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00704','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00705','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',2,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00706','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00707','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',4,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00708','2010-10-19 11:19:21','2010-10-19 11:19:21','Administrator','harshada@webnotestech.com',0,'Attendance Control Panel','permissions','DocType',5,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00716','2010-10-19 13:01:06','2010-10-19 13:01:06','Administrator','Administrator',0,'Home Control','permissions','DocType',NULL,0,'Guest',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00717','2010-10-25 17:25:21','2010-10-25 17:25:21','Administrator','jai@webnotestech.com',0,'Period Closing Voucher','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00718','2010-10-25 17:25:21','2010-10-25 17:25:21','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,1,1,NULL,NULL),('PERM00719','2010-10-25 17:38:07','2010-10-25 17:38:07','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00720','2010-10-25 17:38:07','2010-10-25 17:38:07','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00723','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','Administrator',0,'Naming Series','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00724','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','Administrator',0,'Naming Series','permissions','DocType',2,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00725','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','Administrator',0,'Naming Series','permissions','DocType',3,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00726','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','Administrator',0,'Naming Series','permissions','DocType',4,1,'System Manager',NULL,1,0,0,0,0,0,NULL),('PERM00727','2010-10-27 14:56:59','2010-10-27 14:56:59','Administrator','saumil@webnotestech.com',0,'Naming Series','permissions','DocType',5,0,'Guest',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00735','2010-12-14 10:32:59','2010-12-14 10:32:59','Administrator','Administrator',0,'Letter Head','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00739','2010-12-14 10:33:07','2010-12-14 10:33:07','Administrator','ashwini@webnotestech.com',0,'Timesheet','permissions','DocType',1,0,'System Manager',NULL,1,1,1,1,1,1,NULL),('PERM00740','2010-12-14 10:33:07','2010-12-14 10:33:07','Administrator','ashwini@webnotestech.com',0,'Timesheet','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00742','2010-12-14 12:40:34','2010-12-14 12:40:34','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00743','2010-12-14 12:40:34','2010-12-14 12:40:34','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00755','2010-12-14 17:54:11','2010-12-14 17:54:11','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00756','2010-12-14 17:54:11','2010-12-14 17:54:11','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00763','2010-12-14 17:56:50','2010-12-14 17:56:50','Administrator','Administrator',0,'POS Setting','permissions','DocType',1,0,'System Manager',NULL,1,1,1,0,NULL,NULL,NULL),('PERM00764','2010-12-14 17:56:50','2010-12-14 17:56:50','Administrator','Administrator',0,'POS Setting','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00765','2010-12-14 17:56:50','2010-12-14 17:56:50','Administrator','Administrator',0,'POS Setting','permissions','DocType',3,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00766','2010-12-14 17:56:50','2010-12-14 17:56:50','Administrator','Administrator',0,'POS Setting','permissions','DocType',4,0,'Accounts User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00767','2010-12-14 18:11:59','2010-12-14 18:11:59','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00768','2010-12-14 18:11:59','2010-12-14 18:11:59','Administrator','Administrator',0,'Period Closing Voucher','permissions','DocType',NULL,1,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00769','2010-12-23 11:48:49','2010-12-23 11:48:49','Administrator','Administrator',0,'Timesheet','permissions','DocType',NULL,0,'Projects User',NULL,1,1,1,1,1,1,NULL),('PERM00770','2010-12-23 11:48:49','2010-12-23 11:48:49','Administrator','Administrator',0,'Timesheet','permissions','DocType',NULL,1,'Projects User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00785','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','Administrator',0,'Salary Structure','permissions','DocType',2,1,'All',NULL,1,0,NULL,NULL,NULL,0,NULL),('PERM00786','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','harshada@webnotestech.com',0,'Salary Structure','permissions','DocType',3,0,'HR User',NULL,1,1,1,NULL,NULL,0,NULL),('PERM00787','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','harshada@webnotestech.com',0,'Salary Structure','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,NULL,NULL,0,NULL),('PERM00788','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','harshada@webnotestech.com',0,'Salary Structure','permissions','DocType',5,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,0,NULL),('PERM00789','2010-12-30 13:02:27','2010-12-30 13:02:27','Administrator','harshada@webnotestech.com',0,'Salary Structure','permissions','DocType',6,1,'HR User',NULL,1,NULL,NULL,NULL,NULL,0,NULL),('PERM00790','2011-01-11 17:49:59','2011-01-11 17:49:59','Administrator','Administrator',0,'SMS Log','permissions','DocType',1,0,'System Manager',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00791','2011-01-11 17:49:59','2011-01-11 17:49:59','Administrator','Administrator',0,'SMS Center','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00792','2011-01-11 17:49:59','2011-01-11 17:49:59','Administrator','Administrator',0,'SMS Center','permissions','DocType',2,1,'System Manager',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00793','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Employee','permissions','DocType',NULL,0,'Employee',NULL,1,0,0,0,0,0,NULL),('PERM00794','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Employee','permissions','DocType',NULL,0,'Employee',NULL,1,0,0,0,0,0,NULL),('PERM00795','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00796','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00797','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Slip','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00798','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Slip','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00799','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',1,0,NULL,'owner',1,1,1,1,1,1,NULL),('PERM00800','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',2,0,NULL,'owner',1,0,0,0,0,0,NULL),('PERM00801','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',3,0,'HR User','',1,1,1,1,1,1,NULL),('PERM00802','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',4,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00803','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',5,1,'HR User','',1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00804','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Leave Application','permissions','DocType',6,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00805','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',1,0,'HR User','owner',1,1,1,1,1,1,NULL),('PERM00806','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',2,0,'HR User','owner',1,0,0,0,0,0,NULL),('PERM00807','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',3,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00808','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',4,1,'HR Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00809','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Application','permissions','DocType',NULL,0,'Employee','owner',1,1,1,1,1,1,NULL),('PERM00810','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Application','permissions','DocType',NULL,0,'Employee','owner',1,0,0,0,0,0,NULL),('PERM00811','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',NULL,0,'HR User','owner',1,1,1,1,1,1,NULL),('PERM00812','2011-02-21 09:23:55','2011-02-21 09:23:55','Administrator','Administrator',0,'Leave Allocation','permissions','DocType',NULL,0,'HR User',NULL,1,0,0,0,0,0,NULL),('PERM00813','2011-03-05 17:16:43','2011-03-05 17:16:43','Administrator','Administrator',0,'Activity Type','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00814','2011-03-05 17:16:43','2011-03-05 17:16:43','Administrator','Administrator',0,'Activity Type','permissions','DocType',2,0,'Projects User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00815','2011-03-05 17:16:47','2011-03-05 17:16:47','Administrator','Administrator',0,'Expense Claim','permissions','DocType',NULL,0,'Employee','owner',1,1,1,1,1,1,NULL),('PERM00816','2011-03-05 17:16:47','2011-03-05 17:16:47','Administrator','Administrator',0,'Expense Claim','permissions','DocType',NULL,0,'HR Manager',NULL,1,1,1,1,1,1,NULL),('PERM00817','2011-03-05 17:16:47','2011-03-05 17:16:47','Administrator','Administrator',0,'Expense Claim','permissions','DocType',NULL,0,'HR User',NULL,1,1,1,1,1,1,NULL),('PERM00819','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',1,0,'Guest',NULL,1,1,1,0,0,0,NULL),('PERM00820','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',2,0,'Customer','customer',1,1,1,NULL,NULL,NULL,NULL),('PERM00821','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',3,0,'Support Team',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00822','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',4,1,'Support Team','allocated_to',1,1,0,NULL,0,NULL,NULL),('PERM00823','2011-06-03 14:46:24','2011-06-03 14:46:24','Administrator','Administrator',0,'Support Ticket','permissions','DocType',5,2,'Support Team',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00825','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'Multi Ledger Report','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00826','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'Multi Ledger Report','permissions','DocType',2,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00827','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'SMS Settings','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00828','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'SMS Settings','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00829','2011-06-03 14:46:42','2011-06-03 14:46:42','Administrator','Administrator',0,'GL Entry','permissions','DocType',NULL,NULL,'Accounts User',NULL,1,0,0,0,0,0,NULL),('PERM00830','2011-06-27 10:52:02','2011-06-27 10:52:02','Administrator','Administrator',0,'Rename Tool','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00837','2011-08-18 13:32:35','2011-08-18 13:32:35','Administrator','Administrator',0,'DocType Mapper','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00838','2011-08-18 13:32:35','2011-08-18 13:32:35','Administrator','Administrator',0,'Role','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00839','2011-08-18 13:32:35','2011-08-18 13:32:35','Administrator','Administrator',0,'Print Format','permissions','DocType',NULL,0,'System Manager',NULL,1,1,1,0,0,0,NULL),('PERM00840','2011-09-12 13:43:32','2011-09-12 13:43:32','Administrator','Administrator',0,'Profile','permissions','DocType',0,0,'Administrator',NULL,1,1,1,0,0,NULL,0),('PERM00841','2011-09-12 13:43:32','2011-09-12 13:43:32','Administrator','Administrator',0,'Profile','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00844','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Salary Manager','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00845','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Salary Manager','permissions','DocType',1,0,'HR User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00846','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Salary Manager','permissions','DocType',2,0,'HR Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00847','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Features Setup','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00848','2011-09-14 12:41:12','2011-09-14 12:41:12','Administrator','Administrator',0,'Features Setup','permissions','DocType',1,0,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00849','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00850','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form','permissions','DocType',1,1,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00851','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form','permissions','DocType',2,2,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00852','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form Field','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00853','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form Field','permissions','DocType',1,1,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00854','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form Field','permissions','DocType',2,2,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00855','2011-11-24 15:26:37','2011-11-24 15:26:37','Administrator','Administrator',0,'Customize Form Field','permissions','DocType',3,2,'Administrator',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00856','2011-12-16 15:45:49','2011-12-16 15:45:49','Administrator','Administrator',0,'C-Form','permissions','DocType',0,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00857','2011-12-16 15:45:49','2011-12-16 15:45:49','Administrator','Administrator',0,'C-Form','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,0,NULL,NULL,NULL),('PERM00858','2011-12-16 15:45:49','2011-12-16 15:45:49','Administrator','Administrator',0,'C-Form','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00859','2011-12-16 15:47:05','2011-12-16 15:47:05','Administrator','Administrator',0,'Email Digest','permissions','DocType',0,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00860','2011-12-16 15:47:05','2011-12-16 15:47:05','Administrator','Administrator',0,'Email Digest','permissions','DocType',1,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00862','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',1,0,'Purchase Manager',NULL,1,1,1,0,0,0,NULL),('PERM00863','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00864','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',3,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00865','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',4,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00866','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',5,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00867','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',6,1,'Purchase User',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00868','2011-12-16 16:43:20','2011-12-16 16:43:20','Administrator','wasim@webnotestech.com',0,'Landed Cost Wizard','permissions','DocType',7,1,'Purchase Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00869','2011-12-29 14:45:35','2011-12-29 14:45:35','Administrator','Administrator',0,'Payment to Invoice Matching Tool','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00870','2011-12-29 14:45:35','2011-12-29 14:45:35','Administrator','Administrator',0,'Payment to Invoice Matching Tool','permissions','DocType',2,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00871','2011-12-29 14:45:35','2011-12-29 14:45:35','Administrator','Administrator',0,'Payment to Invoice Matching Tool','permissions','DocType',3,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00872','2011-12-29 14:45:35','2011-12-29 14:45:35','Administrator','Administrator',0,'Payment to Invoice Matching Tool','permissions','DocType',4,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00873','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',1,0,'Material User',NULL,1,1,1,1,1,1,NULL),('PERM00874','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',2,0,'Sales User',NULL,1,1,1,1,1,1,NULL),('PERM00875','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',3,0,'Material Master Manager',NULL,1,1,1,1,1,1,NULL),('PERM00876','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',4,0,'Material Manager',NULL,1,1,1,1,1,1,NULL),('PERM00877','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',5,0,'Sales Manager',NULL,1,1,1,1,1,1,NULL),('PERM00878','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Packing Slip','permissions','DocType',6,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00886','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Product','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00887','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Product','permissions','DocType',2,1,'Website Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00888','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Products Settings','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00889','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Style Settings','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00890','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Style Settings','permissions','DocType',2,1,'Website Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00891','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Web Page','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00892','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Web Page','permissions','DocType',2,1,'Website Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00893','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Website Settings','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00894','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Website Settings','permissions','DocType',2,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00895','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'Website Settings','permissions','DocType',3,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00898','2012-02-21 14:31:10','2012-02-21 14:31:10','Administrator','Administrator',0,'Page','permissions','DocType',1,0,'Administrator',NULL,1,1,1,0,0,NULL,0),('PERM00899','2012-02-21 14:31:10','2012-02-21 14:31:10','Administrator','Administrator',0,'Control Panel','permissions','DocType',1,0,'Administrator',NULL,1,1,1,0,0,NULL,0),('PERM00910','2012-04-24 13:33:59','2012-04-24 13:33:59','Administrator','Administrator',0,'Appraisal','permissions','DocType',NULL,0,'Employee',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00914','2012-05-08 11:38:17','2012-05-08 11:38:17','Administrator','Administrator',0,'Sandbox','permissions','DocType',1,0,'Administrator',NULL,1,1,1,1,1,1,1),('PERM00915','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','permissions','DocType',1,0,'Sales Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00916','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','permissions','DocType',2,1,'Sales Master Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00917','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','permissions','DocType',3,0,'Sales Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00918','2012-05-08 11:38:20','2012-05-08 11:38:20','Administrator','Administrator',0,'Shipping Address','permissions','DocType',4,1,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00919','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','permissions','DocType',1,0,'Accounts Manager',NULL,1,1,1,1,1,1,NULL),('PERM00920','2012-05-08 11:38:32','2012-05-08 11:38:32','Administrator','Administrator',0,'Lease Agreement','permissions','DocType',2,0,'Accounts Manager',NULL,1,0,1,0,0,0,NULL),('PERM00921','2012-05-08 11:38:42','2012-05-08 11:38:42','Administrator','Administrator',0,'Naming Series Options','permissions','DocType',1,0,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00922','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Print Format','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00923','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Print Format','permissions','DocType',3,1,'Administrator',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00924','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00925','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,'Custom Script','permissions','DocType',3,1,'Administrator',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00926','2012-07-12 19:25:48','2012-07-12 19:25:48','Administrator','Administrator',0,'Profile','permissions','DocType',3,0,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00927','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',1,0,'Support Team',NULL,1,1,1,0,0,0,NULL),('PERM00928','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',2,0,'Sales Manager',NULL,1,1,1,0,0,0,NULL),('PERM00929','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',3,0,'Sales User',NULL,1,1,1,0,0,0,NULL),('PERM00930','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',4,1,'Sales Manager',NULL,1,1,0,0,0,0,NULL),('PERM00931','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',5,1,'Support Manager',NULL,1,1,0,0,0,0,NULL),('PERM00932','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',6,0,'Administrator',NULL,1,1,1,0,1,0,NULL),('PERM00933','2012-07-12 19:25:49','2012-07-12 19:25:49','Administrator','Administrator',0,'Communication','permissions','DocType',7,1,'Administrator',NULL,1,1,0,0,0,0,NULL),('PERM00934','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',1,0,'All',NULL,1,0,0,NULL,NULL,NULL,NULL),('PERM00935','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',2,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00936','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',3,0,'Report Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00937','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',4,1,'Report Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00938','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',5,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00939','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',6,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00940','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',7,0,'Administrator',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00941','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Search Criteria','permissions','DocType',8,1,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00942','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','permissions','DocType',1,0,'Administrator',NULL,1,NULL,NULL,NULL,1,NULL,NULL),('PERM00943','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','permissions','DocType',2,0,'System Manager',NULL,1,NULL,NULL,NULL,1,NULL,NULL),('PERM00944','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','permissions','DocType',3,0,'Report Manager',NULL,1,NULL,NULL,NULL,1,NULL,NULL),('PERM00945','2012-07-12 19:25:51','2012-07-12 19:25:51','Administrator','Administrator',0,'Report','permissions','DocType',4,0,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00946','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00947','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00948','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',3,0,'Purchase Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00949','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',4,0,'Maintenance Manager',NULL,1,1,1,NULL,0,NULL,NULL),('PERM00950','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Address','permissions','DocType',5,0,'Accounts Manager',NULL,1,1,1,NULL,0,NULL,NULL),('PERM00951','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',6,0,'Sales Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00952','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',7,0,'Purchase Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00953','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',8,0,'Sales User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00954','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',9,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00955','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',10,0,'Maintenance User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00956','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',11,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00957','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Address','permissions','DocType',12,1,'All',NULL,1,0,0,NULL,0,NULL,NULL),('PERM00958','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',1,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00959','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',2,0,'Sales Master Manager',NULL,1,1,1,0,1,0,NULL),('PERM00960','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',3,0,'Purchase Master Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00961','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',4,0,'Sales Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00962','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',5,0,'Purchase Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00963','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',6,0,'Maintenance Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00964','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',7,0,'Accounts Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00965','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',8,0,'Sales User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00966','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',9,0,'Purchase User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00967','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',10,0,'Maintenance User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00968','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',11,0,'Accounts User',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00969','2012-07-12 19:25:53','2012-07-12 19:25:53','Administrator','Administrator',0,'Contact','permissions','DocType',12,1,'All',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00970','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','permissions','DocType',1,0,'Guest',NULL,1,1,0,NULL,NULL,NULL,NULL),('PERM00971','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','permissions','DocType',2,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00972','2012-10-02 13:13:42','2012-10-02 13:13:42','Administrator','Administrator',0,'Web Cache','permissions','DocType',3,0,'Blogger',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00973','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','permissions','DocType',1,0,'Website Manager',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00974','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','permissions','DocType',2,0,'Blogger',NULL,1,1,1,NULL,NULL,NULL,NULL),('PERM00975','2012-10-02 13:17:53','2012-10-02 13:17:53','Administrator','Administrator',0,'Blog','permissions','DocType',3,0,'Guest',NULL,1,0,NULL,NULL,NULL,NULL,NULL),('PERM00976','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',1,0,'Production Manager',NULL,1,1,1,1,1,1,NULL),('PERM00977','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',2,0,'Purchase Manager',NULL,1,1,1,1,1,1,NULL),('PERM00978','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',3,0,'Purchase User',NULL,1,1,1,0,0,1,NULL),('PERM00979','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',4,0,'Material User',NULL,1,0,0,0,0,0,NULL),('PERM00980','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',5,0,'Supplier',NULL,1,0,0,0,0,0,NULL),('PERM00981','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',6,1,'All',NULL,1,0,0,0,0,0,NULL),('PERM00982','2012-10-02 13:17:56','2012-10-02 13:17:56','Administrator','Administrator',0,'Supplier Quotation','permissions','DocType',7,2,'All',NULL,1,1,0,0,0,0,NULL),('PERM00983','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','permissions','DocType',4,1,'Administrator',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00984','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Profile','permissions','DocType',5,1,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00985','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Stock Ledger Entry','permissions','DocType',5,0,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00986','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Bin','permissions','DocType',7,0,'Accounts Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00987','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Communication','permissions','DocType',8,0,'Support Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00988','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Communication','permissions','DocType',9,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00989','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',7,2,'Accounts Manager',NULL,1,1,0,NULL,0,NULL,NULL),('PERM00990','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',8,2,'System Manager',NULL,1,1,0,NULL,0,NULL,NULL),('PERM00991','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',9,2,'All',NULL,1,0,0,NULL,0,NULL,NULL),('PERM00992','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',10,0,'Accounts Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00993','2012-10-02 13:17:58','2012-10-02 13:17:58','Administrator','Administrator',0,'Customer','permissions','DocType',11,1,'All',NULL,1,0,0,NULL,0,NULL,NULL),('PERM00994','2012-10-02 13:17:59','2012-10-02 13:17:59','Administrator','Administrator',0,'Event','permissions','DocType',2,0,'System Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM00995','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','permissions','DocType',1,0,'Administrator',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00996','2012-10-02 13:18:06','2012-10-02 13:18:06','Administrator','Administrator',0,'Bulk Email','permissions','DocType',2,0,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00997','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','permissions','DocType',1,0,'System Manager',NULL,1,1,NULL,NULL,NULL,NULL,NULL),('PERM00998','2012-10-02 13:18:22','2012-10-02 13:18:22','Administrator','wasim@webnotestech.com',0,'TDS Detail','permissions','DocType',2,1,'System Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM00999','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','permissions','DocType',1,0,'Sales Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM01000','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','permissions','DocType',2,0,'Support Manager',NULL,1,1,1,NULL,1,NULL,NULL),('PERM01001','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','permissions','DocType',3,1,'Sales Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL),('PERM01002','2012-10-02 13:18:35','2012-10-02 13:18:35','Administrator','Administrator',0,'Newsletter','permissions','DocType',4,1,'Support Manager',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabDocPerm` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDocType Label` --- - -DROP TABLE IF EXISTS `tabDocType Label`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDocType Label` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `dt` varchar(180) default NULL, - `dt_label` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDocType Label` --- - -LOCK TABLES `tabDocType Label` WRITE; -/*!40000 ALTER TABLE `tabDocType Label` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabDocType Label` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDocType Mapper` --- - -DROP TABLE IF EXISTS `tabDocType Mapper`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDocType Mapper` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `module` varchar(180) default NULL, - `from_doctype` varchar(180) default NULL, - `to_doctype` varchar(180) default NULL, - `ref_doc_submitted` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDocType Mapper` --- - -LOCK TABLES `tabDocType Mapper` WRITE; -/*!40000 ALTER TABLE `tabDocType Mapper` DISABLE KEYS */; -INSERT INTO `tabDocType Mapper` VALUES ('Appraisal Template-Appraisal','2010-09-01 15:47:59','2012-05-08 08:08:10','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'HR','Appraisal Template','Appraisal',NULL,NULL),('Customer Issue-Maintenance Visit','2010-08-08 17:09:34','2011-09-14 09:11:13','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Support','Customer Issue','Maintenance Visit',1,NULL),('Delivery Note-Installation Note','2010-08-08 17:09:34','2011-09-14 09:11:13','Administrator','Administrator',0,NULL,NULL,NULL,0,'Selling','Delivery Note','Installation Note',1,NULL),('Delivery Note-Packing Slip','2012-02-02 11:53:19','2012-02-02 07:23:19','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','Delivery Note','Packing Slip',0,NULL),('Delivery Note-Sales Invoice','2010-08-08 17:09:34','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','Delivery Note','Sales Invoice',1,NULL),('Lead-Customer','2010-08-08 17:09:34','2011-09-14 09:11:13','Administrator','Administrator',0,NULL,NULL,NULL,0,'Selling','Lead','Customer',NULL,NULL),('Lead-Opportunity','2010-08-08 17:09:34','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,'Selling','Lead','Opportunity',NULL,NULL),('Maintenance Schedule-Maintenance Visit','2012-06-27 14:23:48','2012-06-27 13:18:25','Administrator','Administrator',0,NULL,NULL,NULL,1,'Support','Maintenance Schedule','Maintenance Visit',1,NULL),('Opportunity-Quotation','2010-08-08 17:09:34','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Selling','Opportunity','Quotation',1,NULL),('Project-Delivery Note','2010-09-01 15:47:59','2011-09-14 09:11:13','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Stock','Project','Delivery Note',NULL,NULL),('Project-Sales Invoice','2010-09-01 15:47:59','2012-05-08 08:08:10','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'Accounts','Project','Sales Invoice',NULL,NULL),('Project-Sales Order','2010-09-01 15:47:59','2011-09-14 09:11:13','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Selling','Project','Sales Order',NULL,NULL),('Purchase Order-Purchase Invoice','2010-08-08 17:09:35','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','Purchase Order','Purchase Invoice',1,NULL),('Purchase Order-Purchase Receipt','2010-08-08 17:09:35','2012-03-01 13:35:46','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','Purchase Order','Purchase Receipt',1,NULL),('Purchase Receipt-Purchase Invoice','2010-08-08 17:09:35','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','Purchase Receipt','Purchase Invoice',1,NULL),('Purchase Request-Purchase Order','2010-08-08 17:09:34','2012-07-02 11:12:28','Administrator','Administrator',0,NULL,'','',1,'Buying','Purchase Request','Purchase Order',1,NULL),('Purchase Request-Supplier Quotation','2012-10-02 13:17:57','2012-08-03 12:34:09','Administrator','Administrator',0,NULL,NULL,NULL,1,'Buying','Purchase Request','Supplier Quotation',1,NULL),('Quotation-Sales Order','2010-08-08 17:09:35','2011-09-14 09:11:13','Administrator','Administrator',0,NULL,NULL,NULL,0,'Selling','Quotation','Sales Order',1,NULL),('Salary Structure-Salary Slip','2010-12-14 10:33:11','2011-09-14 09:11:13','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'HR','Salary Structure','Salary Slip',NULL,NULL),('Sales Invoice-Delivery Note','2010-12-14 17:56:41','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','Sales Invoice','Delivery Note',1,NULL),('Sales Order-Delivery Note','2010-08-08 17:09:35','2012-03-28 08:10:23','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','Sales Order','Delivery Note',1,NULL),('Sales Order-Maintenance Schedule','2010-08-08 17:09:35','2011-09-14 09:11:13','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support','Sales Order','Maintenance Schedule',1,NULL),('Sales Order-Maintenance Visit','2010-08-08 17:09:36','2011-09-14 09:11:13','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Support','Sales Order','Maintenance Visit',1,NULL),('Sales Order-Purchase Request','2011-05-20 10:07:55','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Buying','Sales Order','Purchase Request',1,NULL),('Sales Order-Sales Invoice','2010-08-08 17:09:36','2012-05-08 08:08:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','Sales Order','Sales Invoice',1,NULL),('Supplier Quotation-Purchase Order','2012-10-02 13:17:57','2012-08-06 16:45:56','Administrator','Administrator',0,NULL,NULL,NULL,1,'Buying','Supplier Quotation','Purchase Order',1,NULL); -/*!40000 ALTER TABLE `tabDocType Mapper` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabDocType` --- - -DROP TABLE IF EXISTS `tabDocType`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabDocType` ( - `name` varchar(180) NOT NULL default '', - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(180) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `search_fields` varchar(180) default NULL, - `issingle` int(1) default NULL, - `istable` int(1) default NULL, - `version` int(11) default NULL, - `module` varchar(180) default NULL, - `autoname` varchar(180) default NULL, - `name_case` varchar(180) default NULL, - `description` text, - `colour` varchar(180) default NULL, - `read_only` int(1) default NULL, - `in_create` int(1) default NULL, - `show_in_menu` int(1) default NULL, - `menu_index` int(11) default NULL, - `parent_node` varchar(180) default NULL, - `smallicon` varchar(180) default NULL, - `allow_print` int(1) default NULL, - `allow_email` int(1) default NULL, - `allow_copy` int(1) default NULL, - `allow_rename` int(1) default NULL, - `hide_toolbar` int(1) default NULL, - `hide_heading` int(1) default NULL, - `allow_attach` int(1) default NULL, - `use_template` int(1) default NULL, - `max_attachments` int(11) default NULL, - `section_style` varchar(180) default NULL, - `client_script` mediumtext, - `client_script_core` mediumtext, - `server_code` mediumtext, - `server_code_core` mediumtext, - `server_code_compiled` mediumtext, - `client_string` mediumtext, - `server_code_error` varchar(180) default NULL, - `print_outline` varchar(180) default NULL, - `dt_template` mediumtext, - `is_transaction_doc` int(1) default NULL, - `change_log` mediumtext, - `read_only_onload` int(1) default NULL, - `allow_trash` int(1) default NULL, - `in_dialog` int(1) default NULL, - `document_type` varchar(180) default NULL, - `tag_fields` varchar(180) default NULL, - `subject` varchar(180) default NULL, - `_last_update` varchar(32) default NULL, - `default_print_format` varchar(180) default NULL, - `is_submittable` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabDocType` --- - -LOCK TABLES `tabDocType` WRITE; -/*!40000 ALTER TABLE `tabDocType` DISABLE KEYS */; -INSERT INTO `tabDocType` VALUES ('Account','2012-10-02 13:18:31','2012-07-11 13:58:44','Administrator','Administrator',0,NULL,NULL,NULL,1,'debit_or_credit, group_or_ledger',NULL,NULL,1,'Accounts',NULL,NULL,'An **Account** is heading under which financial and business transactions are carried on. For example, “Travel Expense” is an account, “Customer Zoe”, “Supplier Mae” are accounts. \n\n**Note:** ERPNext creates accounts for Customers and Suppliers automatically.\n\n### Groups and Ledgers\n\nThere are two main kinds of Accounts in ERPNext - Group and Ledger. Groups can have sub-groups and ledgers within them, whereas ledgers are the leaf nodes of your chart and cannot be further classified.\n\nAccounting Transactions can only be made against Ledger Accounts (not Groups)\n','White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1325570645','Standard',NULL,NULL),('Account Balance','2012-05-08 11:38:33','2012-03-27 14:35:40','Administrator','Administrator',0,NULL,NULL,NULL,1,'account, period, fiscal_year, balance',NULL,0,6,'Accounts','_ACB.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549700','Standard',NULL,NULL),('Activity Type','2012-05-08 11:38:38','2012-03-27 14:36:05','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,12,'Projects','field:activity_type',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Address','2012-07-12 19:25:52','2012-07-02 20:24:15','Administrator','Administrator',0,NULL,NULL,NULL,1,'customer, supplier, sales_partner, country, state',NULL,NULL,1,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'Master',NULL,NULL,'1319016431','Standard',NULL,NULL),('Answer','2012-05-08 11:38:25','2012-03-27 14:36:01','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Utilities','_ANS.#######',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Appraisal','2012-05-08 11:38:22','2012-03-27 14:45:46','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'status, employee, employee_name',NULL,NULL,161,'HR','APRSL.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1316075905','Standard',1,NULL),('Appraisal Goal','2012-05-08 11:38:23','2012-03-27 14:35:53','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,15,'HR','APRSLD.#####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Appraisal Template','2012-05-08 11:38:21','2012-03-27 14:35:58','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'HR','field:kra_title',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Appraisal Template Goal','2012-05-08 11:38:23','2012-03-27 14:35:58','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,6,'HR','KSHEET.#####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Attendance','2012-05-08 11:38:24','2012-03-27 14:45:46','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'employee, employee_name, att_date, status',NULL,NULL,75,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,'1317365120','Standard',1,NULL),('Attendance Control Panel','2012-05-08 11:38:24','2012-03-27 14:35:53','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,122,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1294312182',NULL,NULL,NULL),('Authorization Control','2012-05-08 11:38:43','2012-03-27 14:36:18','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,216,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Authorization Rule','2012-05-08 11:38:42','2012-03-27 14:36:18','Administrator','Administrator',0,NULL,NULL,NULL,1,'transaction,based_on,system_user,system_role,approving_user,approving_role',NULL,NULL,58,'Setup','AR.####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1308741898',NULL,NULL,NULL),('Bank Reconciliation','2012-05-08 11:38:35','2012-03-27 14:35:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,12,'Accounts',NULL,NULL,NULL,'White:FFF',1,NULL,0,NULL,NULL,NULL,1,1,1,NULL,1,1,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1294312169',NULL,NULL,NULL),('Bank Reconciliation Detail','2012-05-08 11:38:32','2012-03-27 14:35:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Batch','2012-05-08 11:38:28','2012-03-27 14:36:26','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,12,'Stock','field:batch_id',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Bin','2012-10-02 13:18:17','2012-07-31 17:23:42','Administrator','Administrator',0,NULL,NULL,NULL,1,'item_code,warehouse',NULL,NULL,1,'Stock','BIN/.#######',NULL,NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549701','Standard',NULL,NULL),('Blog','2012-10-02 13:17:53','2012-08-03 12:18:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,5,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1328599743',NULL,NULL,NULL),('Blog Subscriber','2012-05-08 11:38:47','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('BOM','2012-10-02 13:18:38','2012-03-27 14:45:46','Administrator','Administrator',0,NULL,NULL,NULL,1,'item',0,0,196,'Production',NULL,NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,'%(item)s','1326963484','Standard',1,NULL),('BOM Control','2012-05-08 11:38:46','2012-03-27 14:36:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,108,'Production',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('BOM Explosion Item','2012-05-08 11:38:46','2012-03-27 14:36:03','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,24,'Production','FBD/.######',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('BOM Item','2012-05-08 11:38:45','2012-03-27 14:36:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,27,'Production',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('BOM Operation','2012-05-08 11:38:46','2012-03-27 14:36:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,8,'Production',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Branch','2012-05-08 11:38:21','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,11,'HR','field:branch',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Brand','2012-05-08 11:38:44','2012-03-27 14:36:19','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'Setup','field:brand',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Budget Control','2012-05-08 11:38:37','2012-03-27 14:35:41','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,23,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Budget Detail','2012-05-08 11:38:33','2012-03-27 14:35:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,6,'Accounts','CBD/.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Budget Distribution','2012-10-02 13:18:31','2012-07-11 14:37:30','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','field:distribution_id','Title Case','**Budget Distribution** helps you distribute your budget across months if you have seasonality in your business.\n\nTo distribute a budget using this distribution, set this **Budget Distribution** in the **Cost Center**','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Budget Distribution Detail','2012-10-02 13:18:20','2012-07-11 14:32:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','BDD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Bulk Email','2012-10-02 13:18:06','2012-08-02 15:17:29','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core',NULL,NULL,'Bulk Email records.',NULL,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,NULL,NULL,NULL,NULL),('C-Form','2012-05-08 11:38:36','2012-04-06 17:29:50','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,19,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,3,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1333712835',NULL,NULL,NULL),('C-Form Invoice Detail','2012-05-08 11:38:32','2012-03-27 14:35:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Campaign','2012-10-02 13:18:10','2012-07-12 13:21:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Selling','field:campaign_name',NULL,'Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. ','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1326102553','Standard',NULL,NULL),('Comment','2012-10-02 13:18:05','2012-08-06 15:10:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,NULL,1,'Core','CWR/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1311536932','Standard',NULL,NULL),('Communication','2012-10-02 13:18:34','2012-08-31 16:44:13','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Support',NULL,NULL,'Keep a track of all communications',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Company','2012-10-02 13:18:37','2012-08-10 12:15:45','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:company_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1323855292',NULL,NULL,NULL),('Company Control','2012-05-08 11:38:24','2012-03-27 14:35:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,13,'Home',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Contact','2012-10-02 13:18:13','2012-08-02 13:16:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,1,'Master',NULL,'%(first_name)s %(last_name)s - Email: %(email_id)s | Contact: %(phone)s | Mobile: %(mobile_no)s','1327314958','Standard',NULL,NULL),('Contact Control','2012-05-08 11:38:43','2012-03-27 14:36:19','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,25,'Setup',NULL,NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Control Panel','2012-05-08 11:38:12','2012-04-11 17:15:53','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,0,27,'Core',NULL,NULL,NULL,'White:FFF',0,1,1,5,NULL,'controller.png',0,0,0,NULL,0,0,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1327389019','Standard',NULL,NULL),('Cost Center','2012-10-02 13:18:20','2012-07-11 14:41:39','Administrator','Administrator',0,NULL,NULL,NULL,1,'name,parent_cost_center',NULL,NULL,1,'Accounts','field:cost_center_name',NULL,'**Chart of Accounts** is mainly for reporting information for governmental purposes and less for how business actually performs. \n\nMost businesses have multiple activities like different product lines, market segments, areas of business that share some common overheads but should ideally have their own structure to report whether they are profitable or not. For this purpose, there is an alternate structure, called the **Cost Centers**.\n\nA tree of **Cost Centers** to cab be designed to reflect the different units of an organization. Each Income / Expense entry is also tagged against a **Cost Center** and hence you can get Profit and Loss against a **Cost Center** too.\n\n### Budgeting\n\n**Cost Centers** can be used for budgeting purposes too. A budget can be set against each **Account** and the system will either stop, warn or ignore the budget based on the settings in the **Company** master.\n\nBudgets can also be distributed seasonally using **Budget Distribution**.','White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1317365120','Standard',NULL,NULL),('Country','2012-05-08 11:38:43','2012-03-27 14:36:19','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,11,'Setup','field:country_name',NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Currency','2012-10-02 13:18:37','2012-07-11 16:11:45','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:currency_name',NULL,'**Currency** Master','White:FFF',0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Custom Field','2012-10-02 13:18:07','2012-09-10 12:14:04','Administrator','Administrator',0,NULL,NULL,NULL,1,'dt,label,fieldtype,options',NULL,NULL,1,'Core','eval:doc.dt+\"-\"+doc.fieldname',NULL,'Adds a custom field to a DocType','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'dt,fieldtype','%(label)s (%(fieldtype)s) on %(dt)s','1305789385','Standard',NULL,NULL),('Custom Script','2012-07-12 19:25:47','2012-05-21 15:02:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core','CustomScript.####',NULL,'Adds a custom script (client or server) to a DocType','White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201',NULL,NULL,NULL),('Customer','2012-10-02 13:18:10','2012-09-17 11:31:55','Administrator','Administrator',0,NULL,NULL,NULL,1,'customer_name,customer_group,country,territory',NULL,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','customer_group,customer_type','eval:\"%(customer_name)s\"==\"%(name)s\" ? \"\" : \"%(customer_name)s\"','1330501485','Standard',NULL,NULL),('Customer Group','2012-10-02 13:18:37','2012-07-12 09:47:20','Administrator','Administrator',0,NULL,NULL,NULL,1,'name,parent_customer_group',NULL,NULL,1,'Setup','field:customer_group_name',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1294214943','Standard',NULL,NULL),('Customer Issue','2012-10-02 13:18:34','2012-05-18 17:04:36','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,'status,customer,customer_name,allocated_to,allocated_on, territory',NULL,NULL,1,'Support',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'status','%(complaint)s By %(complaint_raised_by)s on %(issue_date)s','1325570647','Standard',1,NULL),('Customize Form','2012-10-02 13:18:07','2012-06-12 12:10:15','Administrator','Administrator',0,NULL,NULL,NULL,1,'doc_type',1,NULL,1,'Core','DL.####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1326273643',NULL,NULL,NULL),('Customize Form Field','2012-10-02 13:18:06','2012-08-07 16:34:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,1,'Core','DLF.#####',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1326705243',NULL,NULL,NULL),('Deduction Type','2012-05-08 11:38:21','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,10,'HR','field:deduction_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Default Home Page','2012-05-08 11:38:16','2012-03-27 14:35:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('DefaultValue','2012-05-08 11:38:16','2012-03-27 14:35:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,NULL,'Core','DEF.######',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Delivery Note','2012-10-02 13:18:14','2012-07-16 16:24:46','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,customer,customer_name, territory,grand_total',NULL,NULL,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,NULL,NULL,'Transaction','billing_status','To %(customer_name)s on %(posting_date)s | %(per_billed)s% billed','1330593645','Standard',1,NULL),('Delivery Note Item','2012-10-02 13:18:16','2012-07-09 11:06:26','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','DND/.#######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1311621379','Standard',NULL,NULL),('Delivery Note Packing Item','2012-10-02 13:18:19','2012-07-10 12:05:31','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Department','2012-05-08 11:38:22','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,7,'HR','field:department_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Designation','2012-05-08 11:38:21','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,7,'HR','field:designation_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('DocField','2012-05-08 11:38:15','2012-03-27 18:23:58','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,6,'Core','FL.#####',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201',NULL,NULL,NULL),('DocPerm','2012-05-08 11:38:16','2012-03-27 14:35:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,NULL,'Core','PERM.#####',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('DocType','2012-10-02 13:18:05','2012-07-11 16:15:21','Administrator','Administrator',0,NULL,NULL,NULL,1,'autoname',0,0,1,'Core','Prompt',NULL,'The basic building block of wnframework is a **DocType**. A DocType represents both a table in the database and a form from which a user can enter data. Actions are also embedded in the DocType. Hence it is the Model, View and Controller.\n\nDocTypes can be single tables or groups. For example, Quotation has a “Quotation” DocType and a “Quotation Item” doctype for the Items table, among others. DocTypes contain a collection of fields called DocFields that form the basis of the columns in the database and the layout of the form.','White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ','Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('DocType Label','2010-08-08 17:08:59','2010-09-20 14:06:57','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,'Core','field:dt','',NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,'',NULL,'',NULL,NULL,' ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('DocType Mapper','2012-05-08 11:38:13','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,NULL,9,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201',NULL,NULL,NULL),('Earning Type','2012-05-08 11:38:24','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,13,'HR','field:earning_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Email Digest','2012-10-02 13:18:35','2012-09-15 19:34:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','Prompt',NULL,'Send regular summary reports via Email.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,'1324556758',NULL,NULL,NULL),('Email Settings','2012-10-02 13:18:36','2012-07-12 16:16:27','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,NULL,'Email Settings for Outgoing and Incoming Emails.','White:FFF',NULL,1,NULL,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1325570647','Standard',NULL,NULL),('Employee','2012-10-02 13:18:12','2012-03-27 14:35:55','Administrator','Administrator',0,NULL,NULL,NULL,1,'employee_name',NULL,NULL,444,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status','%(employee_name)s','1308918132',NULL,NULL,NULL),('Employee Education','2012-05-08 11:38:22','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Employee External Work History','2012-05-08 11:38:23','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Employee Internal Work History','2012-05-08 11:38:24','2012-03-27 14:35:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,6,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Employee Training','2012-05-08 11:38:24','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Employment Type','2012-05-08 11:38:23','2012-03-27 14:35:55','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,16,'HR','field:employee_type_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Event','2012-10-02 13:18:05','2012-09-24 15:40:46','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core','EV.#####',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,'---intro_html---\n\n
    \n %(ref)s\n Go To Calendar\n
    \n\n---ref_html---\n\nReference : %(dn)s

    ',' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201','Standard',NULL,NULL),('Event Role','2012-05-08 11:38:13','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Core','__EVR.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Event User','2012-05-08 11:38:17','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Core','EVP.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Expense Claim','2012-10-02 13:18:11','2012-03-27 14:45:48','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,'approval_status,employee,employee_name',NULL,NULL,135,'HR','EXP.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'approval_status','From %(employee_name)s for %(total_claimed_amount)s (claimed)','1308808105','Standard',1,NULL),('Expense Claim Detail','2012-05-08 11:38:21','2012-03-27 14:35:56','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Expense Claim Type','2012-05-08 11:38:24','2012-03-27 14:35:55','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'HR','field:expense_type',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Features Setup','2012-10-02 13:18:35','2012-06-07 18:41:50','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,'Title Case',NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1323840127','Standard',NULL,NULL),('Feed','2012-05-08 11:38:24','2012-03-27 14:35:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Home','_FEED.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Field Mapper Detail','2012-05-08 11:38:16','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,10,'Core','FMD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('File Data','2012-05-08 11:38:17','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Core','FileData/.#####',NULL,NULL,'White:FFF',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Fiscal Year','2012-10-02 13:18:20','2012-07-11 14:56:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','field:year',NULL,'**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Form 16A','2012-05-08 11:38:35','2012-03-27 14:35:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,75,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1308123438',NULL,NULL,NULL),('Form 16A Ack Detail','2012-05-08 11:38:36','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Form 16A Tax Detail','2012-05-08 11:38:36','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('GL Control','2012-05-08 11:38:35','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,288,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('GL Entry','2012-05-08 11:38:37','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,'voucher_no,account,posting_date,against_voucher',NULL,NULL,103,'Accounts','GL.#######',NULL,NULL,'White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1319016431','Standard',NULL,NULL),('GL Mapper','2012-05-08 11:38:25','2012-04-23 12:27:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Utilities','field:doc_type',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1305006361',NULL,NULL,NULL),('GL Mapper Detail','2012-05-08 11:38:25','2012-03-27 14:36:46','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,4,'Utilities','GLMDetail.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Global Defaults','2012-10-02 13:18:36','2012-05-22 14:11:21','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,NULL,NULL,'White:FFF',1,1,1,NULL,NULL,NULL,1,1,1,NULL,0,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1323855502','Standard',NULL,NULL),('Grade','2012-05-08 11:38:21','2012-03-27 14:35:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,7,'HR','field:grade_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Holiday','2012-05-08 11:38:21','2012-03-27 14:35:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Holiday List','2012-05-08 11:38:22','2012-03-27 14:35:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,17,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Home Control','2012-05-08 11:38:24','2012-03-27 14:35:53','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,6,'Home',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Industry Type','2012-05-08 11:38:18','2012-03-27 14:36:09','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,4,'Selling','field:industry',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Installation Note','2012-05-08 11:38:20','2012-03-27 18:48:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,98,'Selling','IN/.####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'At %(customer_name)s on %(inst_date)s','1306480044','Standard',1,NULL),('Installation Note Item','2012-05-08 11:38:19','2012-03-27 14:36:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,25,'Selling','IID/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Item','2012-10-02 13:13:43','2012-07-11 09:57:42','Administrator','Administrator',0,NULL,NULL,NULL,1,'item_name,description,item_group,customer_code',NULL,NULL,1,'Stock','field:item_code',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','item_group','%(item_name)s','1329808172','Standard',NULL,NULL),('Item Customer Detail','2012-05-08 11:38:28','2012-03-27 14:36:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,7,'Stock','ITEMCUST/.#####',NULL,'For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes','White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Item Group','2012-10-02 13:18:35','2012-07-12 11:26:21','Administrator','Administrator',0,NULL,NULL,NULL,1,'parent_item_group',0,NULL,1,'Setup','field:item_group_name',NULL,'Item Classification','White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Item Price','2012-05-08 11:38:30','2012-03-27 14:36:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Stock','RFD/.#####',NULL,NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Item Quality Inspection Parameter','2012-05-08 11:38:30','2012-03-27 14:36:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','IISD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Item Supplier','2012-05-08 11:38:31','2012-03-27 14:36:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Item Tax','2012-05-08 11:38:30','2012-03-27 14:36:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Journal Voucher','2012-10-02 13:18:22','2012-05-04 10:05:25','Administrator','Administrator',0,NULL,NULL,NULL,1,'voucher_type,posting_date, due_date, cheque_no',NULL,NULL,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'voucher_type',' ','1311251040','Standard',1,NULL),('Journal Voucher Detail','2012-05-08 11:38:37','2012-04-30 16:05:46','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','JVD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Landed Cost Item','2012-05-08 11:38:30','2012-05-04 13:02:26','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Landed Cost Master','2012-10-02 13:18:16','2012-09-17 10:53:26','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Stock','field:title',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,'1309508838',NULL,NULL,NULL),('Landed Cost Master Detail','2012-05-08 11:38:28','2012-05-04 13:02:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Landed Cost Purchase Receipt','2012-05-08 11:38:29','2012-03-27 14:36:34','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Landed Cost Wizard','2012-10-02 13:18:16','2012-09-17 10:54:21','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1321441191','Standard',NULL,NULL),('Lead','2012-10-02 13:18:11','2012-08-06 14:49:48','Administrator','Administrator',0,NULL,NULL,NULL,1,'lead_name,lead_owner,status',NULL,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status,source','%(lead_name)s from %(company_name)s | To Discuss: %(to_discuss)s','1332222225','Standard',NULL,NULL),('Lease Agreement','2012-05-08 11:38:32','2012-03-27 14:35:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,24,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1311555967','Standard',NULL,NULL),('Lease Installment','2012-05-08 11:38:32','2012-03-27 14:35:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Leave Allocation','2012-05-08 11:38:23','2012-03-27 14:45:49','Administrator','Administrator',0,NULL,NULL,NULL,1,'employee,employee_name,leave_type,total_leaves_allocated,fiscal_year',NULL,NULL,1560,'HR','LAL/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1317365120','Standard',1,NULL),('Leave Application','2012-10-02 13:18:12','2012-03-27 14:45:49','Administrator','Administrator',0,NULL,NULL,NULL,1,'employee,employee_name,leave_type,from_date,to_date,total_leave_days,fiscal_year',NULL,NULL,17,'HR','LAP/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Transaction','leave_type','From %(employee_name)s, %(designation)s','1310019491',NULL,1,NULL),('Leave Control Panel','2012-05-08 11:38:21','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,162,'HR',NULL,NULL,NULL,'White:FFF',1,NULL,0,NULL,NULL,NULL,1,1,1,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1297751828','Standard',NULL,NULL),('Leave Type','2012-05-08 11:38:23','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,23,'HR','field:leave_type_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Letter Head','2012-10-02 13:18:06','2012-03-27 14:35:37','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,2,'Core','field:letter_head_name',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,3,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307340319',NULL,NULL,NULL),('Maintenance Schedule','2012-10-02 13:18:34','2012-03-27 14:45:49','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,customer,customer_name, sales_order_no',NULL,NULL,156,'Support','MS.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549701','Standard',1,NULL),('Maintenance Schedule Detail','2012-05-08 11:38:42','2012-03-27 14:36:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,13,'Support','MSD.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Maintenance Schedule Item','2012-05-08 11:38:41','2012-03-27 14:36:41','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,9,'Support','IMD.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Maintenance Visit','2012-10-02 13:18:34','2012-06-27 12:50:00','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'status,maintenance_type,customer,customer_name, address,mntc_date,company,fiscal_year',NULL,NULL,1,'Support','MV.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'completion_status,maintenance_type','To %(customer_name)s on %(mntc_date)s','1322549701','Standard',1,NULL),('Maintenance Visit Purpose','2012-05-08 11:38:41','2012-03-27 14:36:43','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,13,'Support','MVD.#####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Market Segment','2012-05-08 11:38:45','2012-03-27 14:36:21','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:segment_name','Title Case',NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('MIS Control','2012-05-08 11:38:31','2012-03-27 14:35:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,120,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Mode of Payment','2012-05-08 11:38:36','2012-03-27 14:35:44','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Accounts','field:mode_of_payment',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Module Def','2012-05-08 11:38:13','2012-04-15 11:13:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core','field:module_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Multi Ledger Report','2012-05-08 11:38:34','2012-03-27 14:35:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,9,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,1,1,1,NULL,NULL,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,'1306229235',NULL,NULL,NULL),('Multi Ledger Report Detail','2012-05-08 11:38:35','2012-03-27 14:35:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Naming Series','2012-10-02 13:18:36','2012-07-12 15:59:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,NULL,'Set prefix for numbering series on your transactions','White:FFF',1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Naming Series Options','2012-05-08 11:38:42','2012-03-27 14:36:21','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'Setup','__NSO.#####',NULL,NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Newsletter','2012-10-02 13:18:35','2012-08-24 14:45:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Support',NULL,NULL,'Create and Send Newsletters',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,NULL,NULL,NULL,NULL),('Notification Control','2012-10-02 13:18:37','2012-07-12 16:20:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Setup',NULL,NULL,'Send automatic emails to Contacts on Submitting transactions.','White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Opportunity','2012-10-02 13:18:10','2012-05-31 12:42:38','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,transaction_date,customer,lead,enquiry_type,territory,company',NULL,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Transaction',NULL,'To %(customer_name)s%(lead_name)s on %(transaction_date)s','1324284087','Standard',1,NULL),('Opportunity Item','2012-05-08 11:38:18','2012-03-27 14:36:08','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,59,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Other Income Detail','2012-05-08 11:38:22','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,6,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Packing Slip','2012-10-02 13:18:14','2012-06-29 12:24:16','Administrator','Administrator',0,NULL,NULL,NULL,1,'delivery_note',NULL,NULL,1,'Stock','PS.#######',NULL,'Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Transaction',NULL,'[%(delivery_note)s] Case Nos: %(from_case_no)s - %(to_case_no)s | Net Weight: %(net_weight_pkg)s %(net_weight_uom)s | Gross Weight: %(gross_weight_pkg)s %(gross_weight_uom)s','1328091392',NULL,1,NULL),('Packing Slip Item','2012-05-08 11:38:31','2012-03-27 14:36:34','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,9,'Stock','PSD/.#######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Page','2012-10-02 13:18:06','2012-07-12 11:37:24','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,0,1,'Core','field:page_name',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1327650972','Standard',NULL,NULL),('Page Role','2012-05-08 11:38:16','2012-03-27 14:35:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,1,NULL,'Core','PR.######',NULL,NULL,'White:FFF',0,NULL,NULL,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Payment to Invoice Matching Tool','2012-05-08 11:38:31','2012-03-27 14:35:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,37,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,'1316509358','Standard',NULL,NULL),('Payment to Invoice Matching Tool Detail','2012-05-08 11:38:32','2012-03-27 14:35:43','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,14,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Period','2012-05-08 11:38:42','2012-03-27 14:36:22','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'Setup','field:period_name',NULL,NULL,'White:FFF',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Period Closing Voucher','2012-10-02 13:18:31','2012-07-10 14:21:21','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,'posting_date, fiscal_year',NULL,NULL,1,'Accounts','PCE/.###',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1311621379','Standard',1,NULL),('Period Control','2012-05-08 11:38:44','2012-03-27 14:36:22','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,36,'Setup',NULL,NULL,NULL,'White:FFF',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Permission Control','2012-05-08 11:38:43','2012-03-27 14:36:22','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,15,'Setup',NULL,NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Plot Control','2012-05-08 11:38:19','2012-03-27 14:36:12','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,215,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('POS Setting','2012-10-02 13:18:31','2012-07-16 16:27:51','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','POS/.####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549700','Standard',NULL,NULL),('Price List','2012-10-02 13:18:37','2012-07-11 17:35:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:price_list_name',NULL,'Maintain multiple selling rates for the same **Item** using **Price Lists**. You can upload / edit multiple prices by downloading and uploading the template.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,1,NULL,1,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1303100817',NULL,NULL,NULL),('Print Format','2012-10-02 13:18:07','2012-07-16 12:48:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,0,1,'Core','Prompt',NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,0,NULL,0,0,0,NULL,'doc_type','eval:(\"Module: %(module)s, Type: %(doc_type)s, Standard: %(standard)s\")','1322035799',NULL,NULL,NULL),('Print Heading','2012-05-08 11:38:44','2012-03-27 14:36:22','Administrator','Administrator',0,NULL,NULL,NULL,1,'print_heading',NULL,NULL,27,'Setup','field:print_heading',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1294312215',NULL,NULL,NULL),('Product','2012-02-13 19:12:21','2012-05-08 11:38:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,12,'Website','field:item',NULL,'A Product is shown on the website and is linked to an item.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,5,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,'1327997783',NULL,NULL,NULL),('Product Group','2012-02-13 19:12:21','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Production Control','2012-05-08 11:38:46','2012-03-27 14:36:05','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,19,'Production',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Production Order','2012-10-02 13:18:38','2012-05-28 19:03:56','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Production',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1325837006','Standard',1,NULL),('Production Plan Item','2012-05-08 11:38:46','2012-03-27 14:36:03','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,27,'Production','PPID/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Production Plan Sales Order','2012-05-08 11:38:46','2012-03-27 14:36:04','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Production','PP/.SO/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Production Planning Tool','2012-05-08 11:38:45','2012-03-27 14:36:05','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,106,'Production',NULL,NULL,NULL,'White:FFF',1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1326188323','Standard',NULL,NULL),('Products Settings','2012-02-13 19:12:21','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,4,'Website',NULL,NULL,'\n\n','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1327911653',NULL,NULL,NULL),('Profile','2012-10-02 13:17:57','2012-08-13 13:07:47','Administrator','Administrator',0,NULL,NULL,NULL,1,'first_name, last_name',0,0,1,'Core',NULL,NULL,'Profile Represents a User in the system.','White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,1,NULL,5,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yes',NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,'1323345145','Standard',NULL,NULL),('Profile Control','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,12,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Project','2012-10-02 13:18:32','2012-08-08 13:55:01','Administrator','Administrator',0,NULL,NULL,NULL,1,'customer, status, priority, is_active',NULL,NULL,1,'Projects','field:project_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,4,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status',' ','1305714062','Standard',NULL,NULL),('Project Activity','2012-05-08 11:38:38','2012-03-27 14:36:06','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,15,'Projects','Activity.######',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Project Activity Update','2012-05-08 11:38:38','2012-03-27 14:36:06','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Projects',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Project Control','2012-05-08 11:38:38','2012-03-27 14:36:06','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,30,'Projects',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Project Milestone','2012-05-08 11:38:38','2012-03-27 14:36:06','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,4,'Projects',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Property Setter','2012-10-02 13:18:05','2012-05-25 12:46:53','Administrator','Administrator',0,NULL,NULL,NULL,1,'doc_name,property',NULL,NULL,1,'Core','eval:doc.select_doctype + \'-\' + (doc.select_item or doc.field_name) + \'-\' + doc.property',NULL,'Property Setter overrides a standard DocType or Field property','White:FFF',NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'property','%(property)s property of %(doc_type)s %(doc_name)s',NULL,NULL,NULL,NULL),('Purchase Common','2012-05-08 11:38:40','2012-03-27 14:35:51','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,187,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Purchase Invoice','2012-10-02 13:17:54','2012-07-16 16:26:02','Administrator','Administrator',0,NULL,NULL,NULL,1,'posting_date, credit_to, fiscal_year, bill_no, grand_total, outstanding_amount',NULL,NULL,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'From %(supplier_name)s worth %(grand_total)s due on %(due_date)s | %(outstanding_amount)s outstanding','1330345793','Standard',1,NULL),('Purchase Invoice Advance','2012-05-08 11:38:36','2012-03-27 14:35:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,20,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Purchase Invoice Item','2012-07-12 19:25:50','2012-06-04 12:10:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','EVD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Purchase Order','2012-10-02 13:17:53','2012-08-06 17:14:19','Administrator','Administrator',0,NULL,NULL,NULL,1,'status, transaction_date, supplier,grand_total',NULL,NULL,1,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,NULL,NULL,'Transaction',NULL,'To %(supplier_name)s on %(transaction_date)s | %(per_received)s% delivered','1330339817','Standard',1,NULL),('Purchase Order Item','2012-10-02 13:17:56','2012-08-06 15:55:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Buying','POD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Purchase Order Item Supplied','2012-05-08 11:38:40','2012-03-27 14:35:50','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Purchase Receipt','2012-10-02 13:18:18','2012-07-16 16:26:24','Administrator','Administrator',0,NULL,NULL,NULL,1,'status, posting_date, supplier',NULL,NULL,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,NULL,NULL,'Transaction',NULL,'From %(supplier_name)s against %(purchase_order)s on %(posting_date)s','1330593645','Standard',1,NULL),('Purchase Receipt Item','2012-07-12 19:25:50','2012-06-07 18:07:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','GRND/.#######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Purchase Receipt Item Supplied','2012-05-08 11:38:40','2012-03-27 14:35:50','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,17,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Purchase Request','2012-10-02 13:17:54','2012-05-01 13:02:17','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,transaction_date,sales_order_no',NULL,NULL,1,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'%(per_ordered)s% ordered','1326190064','Standard',1,NULL),('Purchase Request Item','2012-05-08 11:38:38','2012-04-12 14:52:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,37,'Buying','IDTD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Purchase Taxes and Charges','2012-10-02 13:18:31','2012-07-12 14:08:27','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','PVTD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549700','Standard',NULL,NULL),('Purchase Taxes and Charges Master','2012-10-02 13:18:31','2012-08-17 09:57:04','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','field:title',NULL,'Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both.\n10. Add or Deduct: Whether you want to add or deduct the tax.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1325570646','Standard',NULL,NULL),('Quality Inspection','2012-05-08 11:38:39','2012-03-27 14:45:50','Administrator','Administrator',0,NULL,NULL,NULL,1,'item_code, report_date, purchase_receipt_no, delivery_note_no',NULL,NULL,38,'Buying','QAI/.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ','Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1317365120','Standard',1,NULL),('Quality Inspection Reading','2012-05-08 11:38:40','2012-03-27 14:35:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'Buying','QASD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Question','2012-10-02 13:18:13','2012-03-27 14:36:01','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,7,'Utilities','QUES.#######',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Quotation','2012-10-02 13:18:08','2012-07-16 16:23:50','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,transaction_date,customer,lead,order_type',NULL,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,1,NULL,1,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,1,NULL,'Transaction','status','To %(customer_name)s on %(transaction_date)s worth %(currency)s %(grand_total_export)s','1332235370','Standard',1,NULL),('Quotation Item','2012-10-02 13:18:07','2012-07-09 11:04:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Selling','QUOD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Quotation Lost Reason','2012-05-08 11:38:44','2012-03-27 14:36:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,4,'Setup','field:order_lost_reason',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Related Page','2012-05-08 11:38:47','2012-03-27 14:36:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Rename Tool','2012-10-02 13:18:13','2012-05-25 11:58:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1308739509',NULL,NULL,NULL),('Report','2012-07-12 19:25:51','2012-06-13 18:50:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Reposting Tool','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,173,'Utilities',NULL,NULL,NULL,'Light Blue:DEF',1,0,1,NULL,NULL,NULL,1,1,1,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Role','2012-05-08 11:38:16','2012-03-27 14:35:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,0,1,'Core','field:role_name',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Salary Manager','2012-05-08 11:38:22','2012-03-27 14:35:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,30,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,'1314253977','Standard',NULL,NULL),('Salary Slip','2012-05-08 11:38:21','2012-03-27 14:45:51','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,393,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'For %(employee_name)s, %(designation)s','1310019491',NULL,1,NULL),('Salary Slip Deduction','2012-05-08 11:38:21','2012-03-27 14:36:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,9,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Salary Slip Earning','2012-05-08 11:38:23','2012-03-27 14:36:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,7,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Salary Structure','2012-05-08 11:38:22','2012-03-27 14:36:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,587,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'For %(employee_name)s','1311621379',NULL,NULL,NULL),('Salary Structure Deduction','2012-05-08 11:38:22','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,14,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Salary Structure Earning','2012-05-08 11:38:22','2012-03-27 14:35:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,26,'HR',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales and Purchase Return Item','2012-05-08 11:38:19','2012-03-27 14:36:14','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,8,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales and Purchase Return Tool','2012-10-02 13:18:16','2012-09-17 10:55:11','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,0,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,1,'Materials',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales BOM','2012-10-02 13:18:16','2012-07-12 18:00:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Stock',NULL,NULL,'Aggregate group of **Items** into another **Item**. This is useful if you are bundling a certain **Items** into a package and you maintain stock of the packed **Items** and not the aggregate **Item**. \n\nThe package **Item** will have \"Is Stock Item\" as \"No\" and \"Is Sales Item\" as \"Yes\".\n\nFor Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Sales BOM Item.\n\nNote: BOM = Bill of Materials','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549701',NULL,0,NULL),('Sales BOM Item','2012-10-02 13:18:19','2012-07-11 18:56:27','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales Browser Control','2012-05-08 11:38:44','2012-03-27 14:36:23','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,159,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales Common','2012-05-08 11:38:17','2012-03-27 14:36:14','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,290,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales Invoice','2012-10-02 13:18:21','2012-09-07 11:56:59','Administrator','Administrator',0,NULL,NULL,NULL,1,'posting_date, due_date, debit_to, fiscal_year, grand_total, outstanding_amount',NULL,NULL,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,'1. Change in pull_details method dt.-26-06-2009',1,NULL,NULL,NULL,NULL,'To %(customer_name)s worth %(currency)s %(grand_total_export)s due on %(due_date)s | %(outstanding_amount)s outstanding','1330671142','Standard',1,NULL),('Sales Invoice Advance','2012-05-08 11:38:36','2012-03-27 14:35:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,24,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sales Invoice Item','2012-10-02 13:18:23','2012-07-09 11:00:18','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','INVD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Sales Order','2012-10-02 13:18:09','2012-09-26 13:05:15','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,transaction_date,customer,customer_name, territory,order_type,company',0,NULL,1,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,1,NULL,1,NULL,NULL,'Transaction','delivery_status,billing_status','From %(customer_name)s on %(transaction_date)s worth %(currency)s %(grand_total_export)s | %(per_delivered)s% delivered | %(per_billed)s% billed','1330670942','Standard',1,NULL),('Sales Order Item','2012-10-02 13:18:09','2012-07-09 11:05:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Selling','SOD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Sales Partner','2012-10-02 13:18:36','2012-07-12 11:22:15','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:partner_name',NULL,'A **Sales Partner** is a third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission. This is useful if you make the end sale to the **Customer**, involving your **Sales Partner**.\n\nIf you sell to your **Sales Partner** who in-turn sells it to the **Customer**, then you must make a **Customer** instead.','White:FFF',0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Sales Person','2012-10-02 13:18:35','2012-07-12 10:33:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'name,parent_sales_person',NULL,NULL,1,'Setup','field:sales_person_name',NULL,'All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.','White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1302765705',NULL,NULL,NULL),('Sales Taxes and Charges','2012-10-02 13:18:20','2012-07-12 13:50:43','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts','INVTD.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Sales Taxes and Charges Master','2012-10-02 13:18:20','2012-07-12 13:43:32','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Accounts','field:title',NULL,'Standard tax template that can be applied to all Sales Transactions. This template can contain list of tax heads and also other expense / income heads like \"Shipping\", \"Insurance\", \"Handling\" etc.\n\n#### Note\n\nThe tax rate you define here will be the standard tax rate for all **Items**. If there are **Items** that have different rates, they must be added in the **Item Tax** table in the **Item** master.\n\n#### Description of Columns\n\n1. Calculation Type: \n - This can be on **Net Total** (that is the sum of basic amount).\n - **On Previous Row Total / Amount** (for cumulative taxes or charges). If you select this option, the tax will be applied as a percentage of the previous row (in the tax table) amount or total.\n - **Actual** (as mentioned).\n2. Account Head: The Account ledger under which this tax will be booked\n3. Cost Center: If the tax / charge is an income (like shipping) or expense it needs to be booked against a Cost Center.\n4. Description: Description of the tax (that will be printed in invoices / quotes).\n5. Rate: Tax rate.\n6. Amount: Tax amount.\n7. Total: Cumulative total to this point.\n8. Enter Row: If based on \"Previous Row Total\" you can select the row number which will be taken as a base for this calculation (default is the previous row).\n9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Sales Team','2012-05-08 11:38:19','2012-03-27 14:36:17','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Selling',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Sandbox','2012-05-08 11:38:17','2012-03-27 14:45:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,2,'Core','_SD.####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL),('Search Criteria','2012-07-12 19:25:50','2012-06-13 19:12:56','Administrator','Administrator',0,NULL,NULL,NULL,1,'criteria_name',NULL,NULL,1,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1307624201','Standard',NULL,NULL),('Serial No','2012-10-02 13:18:15','2012-04-26 13:01:57','Administrator','Administrator',0,NULL,NULL,NULL,1,'item_code,status',NULL,NULL,1,'Stock','field:serial_no',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status','Item Code: %(item_code)s, Warehouse: %(warehouse)s','1325570647','Standard',NULL,NULL),('Series Detail','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,3,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Setup Control','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,0,73,'Setup',NULL,NULL,NULL,'White:FFF',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Shipping Address','2012-05-08 11:38:20','2012-03-27 14:36:17','Administrator','Administrator',0,NULL,NULL,NULL,1,'customer, ship_to, shipping_address',NULL,NULL,8,'Selling','SA.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('SMS Center','2012-05-08 11:38:21','2012-03-27 14:36:17','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,41,'Selling',NULL,NULL,NULL,'White:FFF',1,0,1,4,NULL,NULL,1,1,1,NULL,0,0,0,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549700','Standard',NULL,NULL),('SMS Control','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,8,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('SMS Log','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Utilities','SMSLOG/.########',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('SMS Parameter','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,4,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('SMS Receiver','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'Utilities',NULL,NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('SMS Settings','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,16,'Setup',NULL,NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1306304974',NULL,NULL,NULL),('State','2012-05-08 11:38:44','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,14,'Setup','field:state_name',NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Stock Entry','2012-10-02 13:18:17','2012-07-17 13:32:44','Administrator','Administrator',0,NULL,NULL,NULL,1,'transfer_date, from_warehouse, to_warehouse, purpose, remarks',0,NULL,1,'Stock',NULL,NULL,NULL,'White:FFF',0,0,0,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ','No',NULL,0,NULL,0,0,0,NULL,'purpose','%(remarks)s','1334303911','Standard',1,NULL),('Stock Entry Detail','2012-05-08 11:38:30','2012-05-01 16:16:20','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','MTND/.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Stock Ledger','2012-05-08 11:38:26','2012-03-27 14:36:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,10,'Stock',NULL,NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Stock Ledger Entry','2012-05-08 11:38:27','2012-03-27 14:36:38','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,53,'Stock','SLE/.########',NULL,NULL,'White:FFF',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1322549701','Standard',NULL,NULL),('Stock Reconciliation','2012-10-02 13:18:18','2012-05-10 11:54:52','Administrator','Administrator',0,NULL,NULL,NULL,1,'reconciliation_date',NULL,NULL,1,'Stock','SR/.######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Date: %(reconciliation_date)s, Time: %(reconciliation_time)s','1321617741','Standard',1,NULL),('Stock UOM Replace Utility','2012-05-08 11:38:26','2012-03-27 14:36:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,25,'Stock',NULL,NULL,NULL,'White:FFF',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Style Settings','2012-10-02 13:18:38','2012-05-01 15:58:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Website',NULL,NULL,'Set your background color, font and image (tiled)','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1330594969',NULL,NULL,NULL),('Supplier','2012-10-02 13:18:33','2012-07-18 17:41:49','Administrator','Administrator',0,NULL,NULL,NULL,1,'supplier_name,supplier_type',NULL,NULL,1,'Buying',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','supplier_type',' ','1306471021',NULL,NULL,NULL),('Supplier Quotation','2012-10-02 13:17:55','2012-08-02 18:04:35','Administrator','Administrator',0,NULL,NULL,NULL,1,'status, transaction_date, supplier,grand_total',NULL,NULL,1,'Buying',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,'Transaction',NULL,NULL,NULL,'Standard',1,NULL),('Supplier Quotation Item','2012-10-02 13:17:56','2012-08-03 12:34:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Buying','SQI-.#####',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('Supplier Type','2012-05-08 11:38:42','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,3,'Setup','field:supplier_type',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,NULL,NULL,NULL,NULL),('Support Ticket','2012-10-02 13:18:34','2012-05-02 11:33:24','Administrator','Administrator',0,NULL,NULL,NULL,1,'status,customer,allocated_to,subject,raised_by',NULL,NULL,1,'Support',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'status,allocated_to','%(subject)s','1311584009','Standard',NULL,NULL),('Support Ticket Response','2012-05-08 11:38:41','2012-03-27 14:36:44','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,4,'Support',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('System Console','2012-05-08 11:38:13','2012-05-02 15:25:21','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Core',NULL,NULL,NULL,'White:FFF',NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,'1307624201',NULL,NULL,NULL),('Table Mapper Detail','2012-05-08 11:38:15','2012-03-27 14:35:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Core','TMD/.#######',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Tag','2012-10-02 13:18:06','2012-07-09 14:19:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Core','field:tag_name','Title Case',NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Target Detail','2012-05-08 11:38:43','2012-03-27 14:36:25','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,15,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Task','2012-10-02 13:18:32','2012-09-17 10:58:32','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Projects','TASK.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master','status','%(subject)s','1324880734','Standard',NULL,NULL),('TDS Category','2012-05-08 11:38:36','2012-03-27 14:35:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,8,'Accounts','field:category_name',NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,'1302586171',NULL,NULL,NULL),('TDS Category Account','2012-05-08 11:38:34','2012-03-27 14:35:48','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,2,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL),('TDS Control','2012-05-08 11:38:37','2012-03-27 14:35:48','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,36,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Detail','2012-10-02 13:18:22','2012-09-17 11:08:28','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Payment','2012-05-08 11:38:31','2012-03-27 14:45:52','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,224,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Standard',1,NULL),('TDS Payment Detail','2012-05-08 11:38:32','2012-03-27 14:35:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,11,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Rate Chart','2012-05-08 11:38:36','2012-03-27 14:35:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,11,'Accounts','Prompt',NULL,NULL,'White:FFF',0,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Rate Detail','2012-05-08 11:38:34','2012-03-27 14:35:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,7,'Accounts',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('TDS Return Acknowledgement','2012-05-08 11:38:37','2012-03-27 14:35:49','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,NULL,13,'Accounts','TDSR/.####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Terms and Conditions','2012-10-02 13:18:35','2012-07-12 11:37:56','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Setup','field:title',NULL,'Standard Terms and Conditions that can be added to Sales and Purchases.\n\nExamples:\n\n1. Validity of the offer.\n1. Payment Terms (In Advance, On Credit, part advance etc).\n1. What is extra (or payable by the Customer).\n1. Safety / usage warning.\n1. Warranty if any.\n1. Returns Policy.\n1. Terms of shipping, if applicable.\n1. Ways of addressing disputes, indemnity, liability, etc.\n1. Address and Contact of your Company.','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322549700','Standard',NULL,NULL),('Territory','2012-10-02 13:18:37','2012-07-12 10:01:47','Administrator','Administrator',0,NULL,NULL,NULL,1,'name,parent_territory,territory_manager',NULL,NULL,1,'Setup','field:territory_name','Title Case','You can create **Territories** If your organization operates in multiple regions (could be countries, states or cities). Once you group **Customers** by **Territories**, you can set annual targets for each **Item Group** and get reports that will show your actual performance in the territory v/s what you had planned.','White:FFF',1,1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1311621379','Standard',NULL,NULL),('Timesheet','2012-10-02 13:18:33','2012-03-27 18:47:10','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,'status, owner, timesheet_date',NULL,NULL,69,'Projects','TimeSheet.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'%(owner)s',NULL,NULL,1,NULL),('Timesheet Detail','2012-05-08 11:38:37','2012-03-27 14:36:07','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,15,'Projects','TSD.#####',NULL,NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('ToDo','2012-05-08 11:38:17','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,NULL,5,'Core','TDI.########',NULL,NULL,'White:FFF',1,1,0,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,0,NULL,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Top Bar Item','2012-10-02 13:18:38','2012-05-07 15:21:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Trash Control','2012-05-08 11:38:25','2012-03-27 14:36:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,35,'Utilities',NULL,NULL,NULL,'White:FFF',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Trend Analyzer Control','2012-05-08 11:38:35','2012-03-27 14:35:49','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,11,'Accounts',NULL,NULL,NULL,'White:FFF',1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('UOM','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,5,'Setup','field:uom_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1307707462',NULL,NULL,NULL),('UOM Conversion Detail','2012-05-08 11:38:27','2012-03-27 14:36:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,1,1,'Stock','UCDD/.#####',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Update Delivery Date','2010-08-08 17:09:29','2010-09-20 14:06:57','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,1,NULL,5,'Production',NULL,'',NULL,'White:FFF',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,'//get query select Territory\n//=======================================================================================================================\ncur_frm.fields_dict[\'territory\'].get_query = function(doc,cdt,cdn) {\n return \'SELECT `tabTerritory`.`name`,`tabTerritory`.`parent_territory` FROM `tabTerritory` WHERE `tabTerritory`.`is_group` = \"No\" AND `tabTerritory`.`docstatus`!= 2 AND `tabTerritory`.%(key)s LIKE \"%s\" ORDER BY `tabTerritory`.`name` ASC LIMIT 50\';\n}',NULL,'class DocType:\n def __init__(self, d, dl):\n self.doc, self.doclist = d, dl\n\n def get_open_sales_order(self):\n if not (self.doc.from_date and self.doc.to_date):\n msgprint(\"From Date and To Date are Mandatory\")\n return\n \n cond = \'\' \n if self.doc.customer:\n cond += \" AND t1.customer = \'%s\' \" % self.doc.customer\n if self.doc.sales_order:\n cond += \" AND t1.name = \'%s\' \" % self.doc.sales_order\n if self.doc.territory:\n cond += \" AND t1.territory = \'%s\' \" %self.doc.territory\n\n dl = sql(\"select distinct t1.name, t1.customer, t1.delivery_date, t1.territory, t1.rounded_total from `tabSales Order` t1, `tabSales Order Detail` t2 where t1.transaction_date >= \'%s\' and t1.transaction_date <= \'%s\' and t1.docstatus=1 and t1.status != \'Completed\' and t1.name = t2.parent and t2.docstatus =1 and t2.qty > t2.delivered_qty and (t2.confirmation_date is null or t2.confirmation_date= \'\' or t2.confirmation_date=\'0000-00-00\') %s\"% (self.doc.from_date, self.doc.to_date, cond)) \n self.doc.clear_table(self.doclist, \'entries\')\n count = 0 \n for d in dl:\n nl = addchild(self.doc, \'entries\', \'Update Delivery Date Detail\', 1, self.doclist)\n nl.sales_order_no = str(d[0])\n nl.customer = str(d[1])\n nl.territory = str(d[3])\n nl.rounded_total = str(d[4])\n nl.delivery_date = str(d[2])\n count = count +1\n if not count:\n msgprint(\"No Sales Order found as per filters set.\")\n\n def update_sales_order(self):\n for d in getlist(self.doclist, \'entries\'):\n if d.confirmation_date:\n sql(\"update `tabSales Order Detail` set confirmation_date = %s where parent = %s \", (d.confirmation_date, d.sales_order_no))\n msgprint(\"Updated\")',NULL,NULL,' ','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('UserRole','2012-10-02 13:18:05','2012-07-13 12:25:07','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,0,0,1,'Core','UR.#####',NULL,NULL,'White:FFF',0,NULL,0,NULL,NULL,NULL,0,0,0,NULL,0,0,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Valuation Control','2012-05-08 11:38:28','2012-03-27 14:36:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,4,'Stock',NULL,NULL,NULL,'White:FFF',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Warehouse','2012-10-02 13:18:18','2012-07-11 10:18:07','Administrator','Administrator',0,NULL,NULL,NULL,1,'warehouse_type',NULL,NULL,1,'Stock','field:warehouse_name',NULL,'A logical Warehouse against which stock entries are made.\n\nThere are two main Warehouse Types that are significant in ERPNext.\n\n1. **Stores:** These are where your incoming **Items** are kept before they are consumed or sold. You can have as many “Stores” type **Warehouses** as you wish. Stores type warehouses are significant because if you set an Item for automatic re-order, ERPNext will check its quantities in all “Stores” type **Warehouses** when deciding whether to re-order or not.\n\n2. **Asset**: **Items** marked as type “Fixed Asset” are maintained in Asset Type **Warehouses**. This helps you separate them for the **Items** that are consumed as a part of your regular operations or “Cost of Goods Sold”.\n','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tabbed',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1319016431','Standard',NULL,NULL),('Warehouse Type','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,6,'Setup','field:warehouse_type',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Web Cache','2012-10-02 13:13:42','2012-09-17 10:48:17','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Website',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'System',NULL,NULL,NULL,NULL,NULL,NULL),('Web Page','2012-10-02 13:13:42','2012-06-22 18:49:02','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,1,'Website',NULL,NULL,'A custom page is a simple page with the layout - headline, main section, side section\n\nEditing:\n\n- Editing is in [markdown format](http://daringfireball.net/projects/markdown/syntax)\n- You can also add images and embed html code\n\nAccessing the page:\n\n- The page can be accessed as #![page-name] after the main url\n\nIdeal for pages like FAQ, Terms and Conditions, Help etc.\n\n','White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,20,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1328093379',NULL,NULL,NULL),('Website Settings','2012-10-02 13:13:42','2012-07-09 16:20:58','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,1,NULL,1,'Website',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,10,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Other',NULL,NULL,'1329115882',NULL,NULL,NULL),('Workflow Action Detail','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,5,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Workflow Engine','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,NULL,1,NULL,4,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Workflow Rule','2012-05-08 11:38:43','2012-03-27 14:36:26','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,'select_form,rule_status',NULL,NULL,31,'Setup','field:rule_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Tray',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Master',NULL,NULL,NULL,'Standard',NULL,NULL),('Workflow Rule Detail','2012-05-08 11:38:42','2012-03-27 14:36:26','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,9,'Setup',NULL,NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Workstation','2012-05-08 11:38:46','2012-03-27 18:46:49','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,14,'Production','field:workstation_name',NULL,NULL,'White:FFF',NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Simple',NULL,NULL,NULL,NULL,NULL,NULL,' ',NULL,NULL,NULL,NULL,NULL,1,NULL,'Master',NULL,NULL,'1322125389','Standard',NULL,NULL); -/*!40000 ALTER TABLE `tabDocType` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEarning Type` --- - -DROP TABLE IF EXISTS `tabEarning Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEarning Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `earning_name` varchar(180) default NULL, - `description` text, - `taxable` varchar(180) default NULL, - `exemption_limit` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEarning Type` --- - -LOCK TABLES `tabEarning Type` WRITE; -/*!40000 ALTER TABLE `tabEarning Type` DISABLE KEYS */; -INSERT INTO `tabEarning Type` VALUES ('Basic','2010-12-14 17:56:47','2010-04-05 12:52:35','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Basic','Basic','Yes',NULL,NULL),('House Rent Allowance','2010-12-14 17:56:47','2010-04-05 12:33:19','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'House Rent Allowance','House Rent Allowance','No',NULL,NULL); -/*!40000 ALTER TABLE `tabEarning Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEmail Digest` --- - -DROP TABLE IF EXISTS `tabEmail Digest`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEmail Digest` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `new_sales_orders` int(1) default NULL, - `custom_code` text, - `frequency` varchar(180) default NULL, - `expenses_booked` int(1) default NULL, - `new_quotations` int(1) default NULL, - `use_standard` int(1) default '1', - `next_send` varchar(180) default NULL, - `collections` int(1) default NULL, - `income` int(1) default NULL, - `new_purchase_orders` int(1) default NULL, - `recipient_list` text, - `email_template` text, - `invoiced_amount` int(1) default NULL, - `company` varchar(180) default NULL, - `bank_balance` int(1) default NULL, - `new_transactions` int(1) default NULL, - `new_enquiries` int(1) default NULL, - `new_leads` int(1) default NULL, - `stock_below_rl` int(1) default NULL, - `enabled` int(1) default NULL, - `payments` int(1) default NULL, - `payables` int(1) default NULL, - `income_year_to_date` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - `new_stock_entries` int(1) default NULL, - `new_delivery_notes` int(1) default NULL, - `new_purchase_receipts` int(1) default NULL, - `new_communications` int(1) default NULL, - `new_purchase_requests` int(1) default NULL, - `new_projects` int(1) default NULL, - `new_supplier_quotations` int(1) default NULL, - `new_support_tickets` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEmail Digest` --- - -LOCK TABLES `tabEmail Digest` WRITE; -/*!40000 ALTER TABLE `tabEmail Digest` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEmail Digest` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEmployee Education` --- - -DROP TABLE IF EXISTS `tabEmployee Education`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEmployee Education` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `school_univ` text, - `qualification` varchar(180) default NULL, - `level` varchar(180) default NULL, - `year_of_passing` int(11) default NULL, - `class_per` varchar(180) default NULL, - `maj_opt_subj` text, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEmployee Education` --- - -LOCK TABLES `tabEmployee Education` WRITE; -/*!40000 ALTER TABLE `tabEmployee Education` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEmployee Education` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEmployee External Work History` --- - -DROP TABLE IF EXISTS `tabEmployee External Work History`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEmployee External Work History` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `company_name` varchar(180) default NULL, - `designation` varchar(180) default NULL, - `salary` decimal(18,6) default NULL, - `address` text, - `contact` varchar(180) default NULL, - `total_experience` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEmployee External Work History` --- - -LOCK TABLES `tabEmployee External Work History` WRITE; -/*!40000 ALTER TABLE `tabEmployee External Work History` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEmployee External Work History` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEmployee Internal Work History` --- - -DROP TABLE IF EXISTS `tabEmployee Internal Work History`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEmployee Internal Work History` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `branch` varchar(180) default NULL, - `department` varchar(180) default NULL, - `designation` varchar(180) default NULL, - `grade` varchar(180) default NULL, - `from_date` date default NULL, - `to_date` date default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEmployee Internal Work History` --- - -LOCK TABLES `tabEmployee Internal Work History` WRITE; -/*!40000 ALTER TABLE `tabEmployee Internal Work History` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEmployee Internal Work History` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEmployee Training` --- - -DROP TABLE IF EXISTS `tabEmployee Training`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEmployee Training` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `institute` text, - `nature_of_training` text, - `duration` varchar(180) default NULL, - `loc` varchar(180) default NULL, - `certificate` text, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEmployee Training` --- - -LOCK TABLES `tabEmployee Training` WRITE; -/*!40000 ALTER TABLE `tabEmployee Training` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEmployee Training` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEmployee` --- - -DROP TABLE IF EXISTS `tabEmployee`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEmployee` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `fiscal_year` varchar(180) default NULL, - `salutation` varchar(180) default NULL, - `employee_name` varchar(180) default NULL, - `naming_series` varchar(180) default 'EMP/', - `employee_number` varchar(180) default NULL, - `date_of_joining` date default NULL, - `gender` varchar(180) default NULL, - `date_of_birth` date default NULL, - `month_of_birth` varchar(180) default NULL, - `employment_type` varchar(180) default NULL, - `scheduled_confirmation_date` date default NULL, - `final_confirmation_date` date default NULL, - `contract_end_date` date default NULL, - `date_of_retirement` date default NULL, - `status` varchar(180) default 'Active', - `holiday_list` varchar(180) default NULL, - `branch` varchar(180) default NULL, - `department` varchar(180) default NULL, - `reports_to` varchar(180) default NULL, - `designation` varchar(180) default NULL, - `grade` varchar(180) default NULL, - `company_email` varchar(180) default NULL, - `salary_mode` varchar(180) default NULL, - `bank_name` varchar(180) default NULL, - `bank_ac_no` varchar(180) default NULL, - `esic_card_no` varchar(180) default NULL, - `pf_number` varchar(180) default NULL, - `gratuity_lic_id` varchar(180) default NULL, - `resignation_letter_date` date default NULL, - `relieving_date` date default NULL, - `notice_number_of_days` int(11) default NULL, - `reason_for_leaving` varchar(180) default NULL, - `leave_encashed` varchar(180) default NULL, - `encashment_date` date default NULL, - `held_on` date default NULL, - `reason_for_resignation` varchar(180) default NULL, - `new_workplace` varchar(180) default NULL, - `feedback` text, - `personal_email` varchar(180) default NULL, - `permanent_accommodation_type` varchar(180) default NULL, - `relation` varchar(180) default NULL, - `pan_number` varchar(180) default NULL, - `permanent_address` text, - `blood_group` varchar(180) default NULL, - `date_of_issue` date default NULL, - `current_accommodation_type` varchar(180) default NULL, - `current_address` text, - `family_background` text, - `person_to_be_contacted` varchar(180) default NULL, - `place_of_issue` varchar(180) default NULL, - `passport_number` varchar(180) default NULL, - `cell_number` varchar(180) default NULL, - `valid_upto` date default NULL, - `emergency_phone_number` varchar(180) default NULL, - `marital_status` varchar(180) default NULL, - `health_details` text, - `file_list` text, - `is_sales_person` int(1) default NULL, - `company` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `status` (`status`), - KEY `designation` (`designation`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEmployee` --- - -LOCK TABLES `tabEmployee` WRITE; -/*!40000 ALTER TABLE `tabEmployee` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEmployee` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEmployment Type` --- - -DROP TABLE IF EXISTS `tabEmployment Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEmployment Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `employee_type_name` varchar(180) default NULL, - `trash_reason` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEmployment Type` --- - -LOCK TABLES `tabEmployment Type` WRITE; -/*!40000 ALTER TABLE `tabEmployment Type` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEmployment Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEvent Role` --- - -DROP TABLE IF EXISTS `tabEvent Role`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEvent Role` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `role` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEvent Role` --- - -LOCK TABLES `tabEvent Role` WRITE; -/*!40000 ALTER TABLE `tabEvent Role` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEvent Role` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEvent User` --- - -DROP TABLE IF EXISTS `tabEvent User`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEvent User` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `person` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `person` (`person`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEvent User` --- - -LOCK TABLES `tabEvent User` WRITE; -/*!40000 ALTER TABLE `tabEvent User` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabEvent User` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabEvent` --- - -DROP TABLE IF EXISTS `tabEvent`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabEvent` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `event_date` date default NULL, - `event_hour` time default NULL, - `description` text, - `notes` text, - `event_type` varchar(180) default NULL, - `ref_type` varchar(180) default NULL, - `ref_name` varchar(180) default NULL, - `event_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `event_date` (`event_date`), - KEY `event_type` (`event_type`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabEvent` --- - -LOCK TABLES `tabEvent` WRITE; -/*!40000 ALTER TABLE `tabEvent` DISABLE KEYS */; -INSERT INTO `tabEvent` VALUES ('EV00001','2009-06-17 13:13:43','2009-06-17 13:13:43','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'2009-06-18','08:00:00','test event',NULL,'Private',NULL,NULL,NULL,NULL),('EV00002','2009-06-18 12:12:54','2009-06-18 12:12:54','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'2009-06-19','08:00:00','test23',NULL,'Private',NULL,NULL,NULL,NULL),('EV00003','2009-06-18 12:12:58','2009-06-18 12:12:58','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'2009-06-20','10:00:00','53w',NULL,'Private',NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabEvent` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabExpense Claim Detail` --- - -DROP TABLE IF EXISTS `tabExpense Claim Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabExpense Claim Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `expense_date` date default NULL, - `expense_type` varchar(180) default NULL, - `description` text, - `claim_amount` decimal(18,6) default NULL, - `sanctioned_amount` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabExpense Claim Detail` --- - -LOCK TABLES `tabExpense Claim Detail` WRITE; -/*!40000 ALTER TABLE `tabExpense Claim Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabExpense Claim Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabExpense Claim Type` --- - -DROP TABLE IF EXISTS `tabExpense Claim Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabExpense Claim Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `expense_type` varchar(180) default NULL, - `description` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabExpense Claim Type` --- - -LOCK TABLES `tabExpense Claim Type` WRITE; -/*!40000 ALTER TABLE `tabExpense Claim Type` DISABLE KEYS */; -INSERT INTO `tabExpense Claim Type` VALUES ('Calls','2010-12-14 17:56:47','2010-08-23 18:26:38','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Calls',NULL,NULL),('Food','2010-12-14 17:56:47','2010-08-23 18:26:30','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Food',NULL,NULL),('Medical','2010-12-14 17:56:47','2010-08-23 18:26:49','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Medical',NULL,NULL),('Others','2010-12-14 17:56:47','2010-09-20 12:16:45','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Others',NULL,NULL),('Travel','2010-12-14 17:56:47','2010-09-20 12:16:45','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,'Travel',NULL,NULL); -/*!40000 ALTER TABLE `tabExpense Claim Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabExpense Claim` --- - -DROP TABLE IF EXISTS `tabExpense Claim`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabExpense Claim` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `approval_status` varchar(180) default 'Draft', - `employee` varchar(180) default NULL, - `employee_name` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `company` varchar(180) default NULL, - `posting_date` date default NULL, - `exp_approver` varchar(180) default NULL, - `remark` text, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `total_claimed_amount` decimal(18,6) default NULL, - `total_sanctioned_amount` decimal(18,6) default NULL, - `email_id` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `approval_status` (`approval_status`), - KEY `employee` (`employee`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabExpense Claim` --- - -LOCK TABLES `tabExpense Claim` WRITE; -/*!40000 ALTER TABLE `tabExpense Claim` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabExpense Claim` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabFeed` --- - -DROP TABLE IF EXISTS `tabFeed`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabFeed` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `doc_name` varchar(180) default NULL, - `doc_type` varchar(180) default NULL, - `color` varchar(180) default NULL, - `subject` varchar(180) default NULL, - `feed_type` varchar(180) default NULL, - `full_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabFeed` --- - -LOCK TABLES `tabFeed` WRITE; -/*!40000 ALTER TABLE `tabFeed` DISABLE KEYS */; -INSERT INTO `tabFeed` VALUES ('_FEED00002','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'home','Web Page','#000080','Home',NULL,'Administrator ',NULL); -/*!40000 ALTER TABLE `tabFeed` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabField Mapper Detail` --- - -DROP TABLE IF EXISTS `tabField Mapper Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabField Mapper Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `from_field` varchar(180) default NULL, - `to_field` varchar(180) default NULL, - `match_id` int(11) default '0', - `map` varchar(180) default NULL, - `checking_operator` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabField Mapper Detail` --- - -LOCK TABLES `tabField Mapper Detail` WRITE; -/*!40000 ALTER TABLE `tabField Mapper Detail` DISABLE KEYS */; -INSERT INTO `tabField Mapper Detail` VALUES ('000000474','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',1,'transaction_date','transaction_date',0,'No','>='),('000000475','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',2,'company','company',0,'Yes','='),('000000480','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',3,'parent','sales_order_no',1,'Yes',NULL),('000000485','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',4,'stock_uom','uom',1,'Yes',NULL),('000000487','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','field_mapper_details','DocType Mapper',5,'reserved_warehouse','warehouse',1,'Yes',NULL),('000000491','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',8,'reserved_warehouse','warehouse',1,'Yes',NULL),('FMD/00016','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',13,'name','customer_issue_no',0,'Yes',NULL),('FMD/00017','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',14,'complaint','description',1,'Yes','='),('FMD/00020','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',17,'doctype','prevdoc_doctype',1,'Yes',NULL),('FMD/00021','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',18,'name','prevdoc_docname',1,'Yes',NULL),('FMD/00022','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',0,'company','company',0,'Yes','='),('FMD/00028','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',2,'name','delivery_note_no',0,'Yes',NULL),('FMD/00029','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',3,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00030','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',4,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00031','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',5,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00034','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',6,'eval: flt(obj.qty) - flt(obj.installed_qty)','qty',1,'Yes',NULL),('FMD/00053','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',2,'parent','delivery_note',1,'Yes',NULL),('FMD/00054','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',3,'name','dn_detail',1,'Yes',NULL),('FMD/00055','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',4,'prevdoc_docname','sales_order',1,'Yes',NULL),('FMD/00056','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',5,'prevdoc_detail_docname','so_detail',1,'Yes',NULL),('FMD/00085','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',1,'uom','stock_uom',1,'Yes',NULL),('FMD/00088','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',2,'name','enq_no',0,'Yes',NULL),('FMD/00098','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',3,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00099','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',4,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00102','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',5,'enquiry_from','quotation_to',0,'Yes',NULL),('FMD/00103','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',6,'enquiry_type','order_type',0,'Yes',NULL),('FMD/00116','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',1,'company','company',0,'Yes','='),('FMD/00117','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',2,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00118','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',3,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00119','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',4,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00120','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',5,'uom','stock_uom',1,'Yes',NULL),('FMD/00121','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',6,'eval:flt(1)','conversion_factor',1,'Yes',NULL),('FMD/00130','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',7,'eval:flt(obj.qty) - flt(obj.ordered_qty)','stock_qty',1,'Yes',NULL),('FMD/00131','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',8,'eval:flt(obj.qty) - flt(obj.ordered_qty)','qty',1,'Yes',NULL),('FMD/00132','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Lead-Customer','field_mapper_details','DocType Mapper',0,'name','lead_name',0,'Yes',NULL),('FMD/00133','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Lead-Customer','field_mapper_details','DocType Mapper',1,'company_name','customer_name',0,'Yes',NULL),('FMD/00142','2010-08-08 17:09:34','2010-08-08 17:09:34','Administrator','ashwini@webnotestech.com',0,'Lead-Customer','field_mapper_details','DocType Mapper',11,'contact_no','phone_1',0,'Yes',NULL),('FMD/00144','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','field_mapper_details','DocType Mapper',1,'campaign_name','campaign',0,'Yes',NULL),('FMD/00149','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','field_mapper_details','DocType Mapper',2,'doctype','enquiry_from',0,'Yes',NULL),('FMD/00151','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','field_mapper_details','DocType Mapper',3,'name','lead',0,'Yes',NULL),('FMD/00179','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',1,'eval: flt(obj.qty) - flt(obj.billed_qty)','qty',1,'Yes',NULL),('FMD/00180','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',2,'purchase_rate','rate',1,'Yes',NULL),('FMD/00181','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',3,'eval: (flt(obj.qty) - flt(obj.billed_qty)) * flt(obj.purchase_rate)','amount',1,'Yes',NULL),('FMD/00183','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',4,'eval: (flt(obj.qty) - flt(obj.billed_qty)) * flt(obj.import_rate)','import_amount',1,'Yes',NULL),('FMD/00185','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',5,'parent','purchase_order',1,'Yes',NULL),('FMD/00186','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',6,'name','po_detail',1,'Yes',NULL),('FMD/00197','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',1,'supplier','supplier',0,'Yes','='),('FMD/00199','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',2,'company','company',0,'Yes','='),('FMD/00201','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',3,'currency','currency',0,'Yes','='),('FMD/00205','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',4,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00206','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',5,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00207','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',6,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00209','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',7,'item_code','item_code',1,'Yes','='),('FMD/00212','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',8,'eval:(flt(obj.qty) - flt(obj.received_qty)) ','received_qty',1,'Yes',NULL),('FMD/00213','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',9,'eval:(flt(obj.qty) - flt(obj.received_qty)) ','qty',1,'Yes',NULL),('FMD/00214','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',10,'eval:(flt(obj.qty) - flt(obj.received_qty)) * flt(obj.conversion_factor)','stock_qty',1,'Yes',NULL),('FMD/00219','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',11,'eval:(flt(obj.qty) - flt(obj.received_qty)) * flt(obj.import_rate)','import_amount',1,'Yes',NULL),('FMD/00221','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',12,'eval:(flt(obj.qty) - flt(obj.received_qty)) * flt(obj.purchase_rate)','amount',1,'Yes',NULL),('FMD/00242','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',1,'eval: flt(obj.qty) - flt(obj.billed_qty)','qty',1,'Yes',NULL),('FMD/00243','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',2,'purchase_rate','rate',1,'Yes',NULL),('FMD/00244','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',3,'eval: (flt(obj.qty) - flt(obj.billed_qty)) * flt(obj.purchase_rate)','amount',1,'Yes',NULL),('FMD/00246','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',4,'eval: (flt(obj.qty) - flt(obj.billed_qty)) * flt(obj.import_rate)','import_amount',1,'Yes',NULL),('FMD/00247','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',5,'parent','purchase_receipt',1,'Yes',NULL),('FMD/00248','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',6,'prevdoc_docname','purchase_order',1,'Yes',NULL),('FMD/00249','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',7,'name','pr_detail',1,'Yes',NULL),('FMD/00250','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',8,'prevdoc_detail_docname','po_detail',1,'Yes',NULL),('FMD/00261','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',0,'transaction_date','transaction_date',0,'No','>='),('FMD/00263','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',2,'name','quotation_no',0,'Yes',NULL),('FMD/00264','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',1,'transaction_date','quotation_date',0,'Yes',NULL),('FMD/00265','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',3,'company','company',0,'Yes','='),('FMD/00266','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',4,'fiscal_year','fiscal_year',0,'Yes','='),('FMD/00277','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',5,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00322','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',1,'name','sales_order_no',0,'Yes',NULL),('FMD/00323','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',2,'company','company',0,'Yes','='),('FMD/00331','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',3,'currency','currency',0,'Yes','='),('FMD/00341','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',6,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00342','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',7,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00343','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',8,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00345','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',9,'eval: (flt(obj.qty) - flt(obj.delivered_qty)) * flt(obj.export_rate)','export_amount',1,'Yes',NULL),('FMD/00355','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',11,'eval: flt(obj.qty) - flt(obj.delivered_qty)','qty',1,'Yes',NULL),('FMD/00356','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',12,'eval: (flt(obj.qty) - flt(obj.delivered_qty)) * flt(obj.basic_rate)','amount',1,'Yes',NULL),('FMD/00357','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',13,'reserved_warehouse','warehouse',1,'Yes',NULL),('FMD/00402','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Schedule','field_mapper_details','DocType Mapper',12,'name','sales_order_no',0,'Yes',NULL),('FMD/00403','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Schedule','field_mapper_details','DocType Mapper',13,'item_code','item_code',1,'Yes','='),('FMD/00406','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Schedule','field_mapper_details','DocType Mapper',16,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00413','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','field_mapper_details','DocType Mapper',13,'name','sales_order_no',0,'Yes',NULL),('FMD/00417','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','field_mapper_details','DocType Mapper',17,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00418','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','field_mapper_details','DocType Mapper',18,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00427','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00445','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',3,'parent','sales_order',1,'Yes',NULL),('FMD/00446','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',4,'name','so_detail',1,'Yes',NULL),('FMD/00551','2010-08-09 09:44:01','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',7,'posting_date','prevdoc_date',2,'Yes',NULL),('FMD/00555','2010-09-01 15:47:59','2011-06-03 14:46:40','Administrator','harshada@webnotestech.com',0,'Customer Issue-Maintenance Visit','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00556','2010-09-01 15:47:59','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00564','2010-09-01 15:47:59','2010-09-01 15:47:59','Administrator','harshada@webnotestech.com',0,'Project-Delivery Note','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00572','2010-09-01 15:47:59','2012-05-08 11:38:10','Administrator','ashwini@webnotestech.com',0,'Project-Sales Invoice','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00576','2010-09-01 15:47:59','2010-09-01 15:47:59','Administrator','harshada@webnotestech.com',0,'Project-Sales Order','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00591','2010-09-01 15:47:59','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',7,'project_name','project_name',0,'Yes','='),('FMD/00592','2010-09-09 12:51:59','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',14,'project_name','project_name',0,'Yes','='),('FMD/00593','2010-09-09 12:51:59','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',15,'customer','customer',0,'Yes','='),('FMD/00595','2010-10-15 14:34:58','2010-10-15 14:34:58','Administrator','ashwini@webnotestech.com',0,'Lead-Customer','field_mapper_details','DocType Mapper',12,'fax','fax_1',0,'Yes',NULL),('FMD/00604','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',8,'modified_value','e_amount',1,'Yes',NULL),('FMD/00606','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',10,'d_modified_amt','d_amount',2,'Yes',NULL),('FMD/00607','2010-12-14 10:33:11','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Schedule','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00678','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',2,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00679','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',3,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00680','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',4,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00702','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',8,'customer_address','delivery_address',0,'Yes',NULL),('FMD/00707','2010-12-15 08:39:19','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',1,'eval: flt(obj.qty) - flt(obj.delivered_qty)','qty',1,'Yes',NULL),('FMD/00708','2010-12-15 08:39:19','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',5,'eval: (flt(obj.qty) - flt(obj.delivered_qty)) * flt(obj.basic_rate)','amount',1,'Yes',NULL),('FMD/00709','2010-12-15 08:39:19','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',6,'eval: (flt(obj.qty) - flt(obj.delivered_qty)) * flt(obj.export_rate)','export_amount',1,'Yes',NULL),('FMD/00710','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',7,'total_earning','gross_pay',0,'Yes',NULL),('FMD/00713','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',12,'modified_value','e_modified_amount',1,'Yes',NULL),('FMD/00714','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',13,'depend_on_lwp','e_depends_on_lwp',1,'Yes',NULL),('FMD/00715','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',16,'d_modified_amt','d_modified_amount',2,'Yes',NULL),('FMD/00716','2011-02-21 09:23:54','2011-02-21 09:23:54','Administrator','Administrator',0,'Salary Structure-Salary Slip','field_mapper_details','DocType Mapper',17,'depend_on_lwp','d_depends_on_lwp',2,'Yes',NULL),('FMD/00774','2011-06-03 14:46:41','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',4,'shipping_address_name','customer_address',0,'Yes',NULL),('FMD/00775','2011-06-03 14:46:41','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',5,'shipping_address','address_display',0,'Yes',NULL),('FMD/00779','2011-06-03 14:46:41','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',19,'allocated_amount','customer_mobile_no',0,'Yes',NULL),('FMD/00786','2011-06-03 14:46:41','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Visit','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00799','2011-09-14 12:41:13','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','field_mapper_details','DocType Mapper',8,'serial_no','serial_no',1,'Yes',NULL),('FMD/00803','2011-09-14 12:41:13','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',8,'naming_series','naming_series',0,'No',NULL),('FMD/00804','2011-09-14 12:41:13','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',9,'incentives','incentives',3,'No',NULL),('FMD/00805','2011-09-14 12:41:13','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',10,'serial_no','serial_no',1,'Yes',NULL),('FMD/00806','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',7,'transaction_date','transaction_date',0,'No',NULL),('FMD/00807','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',8,'status','status',0,'No',NULL),('FMD/00808','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','field_mapper_details','DocType Mapper',9,'naming_series','naming_series',0,'No',NULL),('FMD/00809','2011-09-14 12:41:13','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','field_mapper_details','DocType Mapper',4,'status','status',0,'No',NULL),('FMD/00810','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',7,'naming_series','naming_series',0,'No',NULL),('FMD/00811','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',9,'naming_series','naming_series',0,'No',NULL),('FMD/00812','2011-09-14 12:41:13','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',6,'naming_series','naming_series',0,'No',NULL),('FMD/00813','2011-09-14 12:41:13','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','field_mapper_details','DocType Mapper',7,'status','status',0,'No',NULL),('FMD/00814','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',7,'naming_series','naming_series',0,'No',NULL),('FMD/00815','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','field_mapper_details','DocType Mapper',9,'serial_no','serial_no',1,'Yes',NULL),('FMD/00816','2011-09-14 12:41:13','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',16,'naming_series','naming_series',0,'No',NULL),('FMD/00817','2011-09-14 12:41:13','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',17,'status','status',0,'No',NULL),('FMD/00818','2011-09-14 12:41:13','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',18,'incentives','incentives',3,'No',NULL),('FMD/00822','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',9,'naming_series','naming_series',0,'No',NULL),('FMD/00823','2011-09-14 12:41:13','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',10,'incentives','incentives',3,'No',NULL),('FMD/00824','2011-12-29 14:45:36','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',13,'schedule_date','schedule_date',1,'Yes',NULL),('FMD/00825','2011-12-29 14:45:36','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',14,'net_total','net_total',0,'Yes',NULL),('FMD/00826','2011-12-29 14:45:36','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',15,'grand_total','grand_total',0,'Yes',NULL),('FMD/00827','2011-12-29 14:45:36','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',16,'total_tax','total_tax',0,'Yes',NULL),('FMD/00829','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','field_mapper_details','DocType Mapper',1,'name','delivery_note',0,'Yes',NULL),('FMD/00830','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','field_mapper_details','DocType Mapper',2,'qty','qty',1,'No',NULL),('FMD/00831','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','field_mapper_details','DocType Mapper',3,'naming_series','naming_series',0,'No',NULL),('FMD/00832','2012-02-14 15:27:51','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',9,'schedule_date','schedule_date',1,'Yes',NULL),('FMD/00833','2012-02-21 14:31:09','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','field_mapper_details','DocType Mapper',17,'conversion_rate','conversion_rate',0,'Yes',NULL),('FMD/00834','2012-02-21 14:31:09','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',9,'conversion_rate','conversion_rate',0,'Yes',NULL),('FMD/00835','2012-03-28 11:36:01','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','field_mapper_details','DocType Mapper',10,'export_rate','export_rate',1,'Yes','='),('FMD/00836','2012-03-28 11:36:01','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',2,'eval: obj.basic_rate and (flt(obj.amount) - flt(obj.billed_amt))/flt(obj.basic_rate) or obj.qty','qty',1,'Yes',NULL),('FMD/00837','2012-03-28 11:36:01','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',5,'eval:flt(obj.amount) - flt(obj.billed_amt)','amount',1,'Yes',NULL),('FMD/00838','2012-03-28 11:36:01','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',6,'eval: (flt(obj.amount) - flt(obj.billed_amt))* flt(obj.export_rate)/flt(obj.basic_rate)','export_amount',1,'Yes',NULL),('FMD/00839','2012-03-28 11:36:01','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','field_mapper_details','DocType Mapper',11,'export_rate','export_rate',1,'Yes','='),('FMD/00840','2012-03-28 11:36:01','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',1,'eval: obj.basic_rate and (flt(obj.amount) - flt(obj.billed_amt)) / flt(obj.basic_rate) or obj.qty','qty',1,'Yes',NULL),('FMD/00841','2012-03-28 11:36:01','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',6,'eval: flt(obj.amount) - flt(obj.billed_amt)','amount',1,'Yes',NULL),('FMD/00842','2012-03-28 11:36:01','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',7,'eval: (flt(obj.amount) - flt(obj.billed_amt)) * flt(obj.export_rate)/flt(obj.basic_rate)','export_amount',1,'Yes',NULL),('FMD/00843','2012-03-28 11:36:01','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','field_mapper_details','DocType Mapper',11,'export_rate','export_rate',1,'Yes','='),('FMD/00844','2012-05-08 11:38:10','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',10,'net_total','net_total',0,'Yes',NULL),('FMD/00845','2012-05-08 11:38:10','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',11,'grand_total','grand_total',0,'Yes',NULL),('FMD/00846','2012-05-08 11:38:10','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','field_mapper_details','DocType Mapper',12,'total_tax','total_tax',0,'Yes',NULL),('FMD/00847','2012-05-08 11:38:10','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','field_mapper_details','DocType Mapper',8,'total_tax','total_tax',0,'Yes',NULL),('FMD/00848','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','field_mapper_details','DocType Mapper',1,'customer','customer',0,'Yes','='),('FMD/00849','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','field_mapper_details','DocType Mapper',2,'name','maintenance_schedule',0,'Yes',NULL),('FMD/00850','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','field_mapper_details','DocType Mapper',3,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00851','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','field_mapper_details','DocType Mapper',4,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00852','2012-07-12 19:25:52','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','field_mapper_details','DocType Mapper',10,'transaction_date','transaction_date',0,'No','>='),('FMD/00853','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',1,'company','company',0,'Yes','='),('FMD/00854','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',2,'parenttype','prevdoc_doctype',1,'Yes',NULL),('FMD/00855','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',3,'parent','prevdoc_docname',1,'Yes',NULL),('FMD/00856','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',4,'name','prevdoc_detail_docname',1,'Yes',NULL),('FMD/00857','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','field_mapper_details','DocType Mapper',5,'transaction_date','transaction_date',0,'No','>='),('FMD/00858','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',1,'company','company',0,'Yes','='),('FMD/00859','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',2,'transaction_date','transaction_date',0,'No','>='),('FMD/00860','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',3,'conversion_rate','conversion_rate',0,'Yes',NULL),('FMD/00861','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',4,'net_total','net_total',0,'Yes',NULL),('FMD/00862','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',5,'total_tax','total_tax',0,'Yes',NULL),('FMD/00863','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',6,'grand_total','grand_total',0,'Yes',NULL),('FMD/00864','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',7,'parent','supplier_quotation',1,'Yes',NULL),('FMD/00865','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',8,'name','supplier_quotation_item',1,'Yes',NULL),('FMD/00866','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',9,'uom','stock_uom',1,'Yes',NULL),('FMD/00867','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','field_mapper_details','DocType Mapper',10,'eval:flt(1)','conversion_factor',1,'Yes',NULL); -/*!40000 ALTER TABLE `tabField Mapper Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabFile Data` --- - -DROP TABLE IF EXISTS `tabFile Data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabFile Data` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `file_name` varchar(180) default NULL, - `module` varchar(180) default NULL, - `blob_content` longblob, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabFile Data` --- - -LOCK TABLES `tabFile Data` WRITE; -/*!40000 ALTER TABLE `tabFile Data` DISABLE KEYS */; -INSERT INTO `tabFile Data` VALUES ('FileData-00002','2009-06-04 11:01:18','2009-06-04 11:01:18','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'profilepic.jpg',NULL,NULL,NULL),('FileData-00003','2009-06-19 14:25:44','2009-06-19 14:25:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'banner_home1.jpg',NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabFile Data` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabFiscal Year` --- - -DROP TABLE IF EXISTS `tabFiscal Year`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabFiscal Year` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `year` varchar(180) default NULL, - `abbreviation` varchar(180) default NULL, - `year_start_date` date default NULL, - `is_fiscal_year_closed` varchar(180) default 'No', - `past_year` varchar(180) default NULL, - `company` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabFiscal Year` --- - -LOCK TABLES `tabFiscal Year` WRITE; -/*!40000 ALTER TABLE `tabFiscal Year` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabFiscal Year` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabForm 16A Ack Detail` --- - -DROP TABLE IF EXISTS `tabForm 16A Ack Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabForm 16A Ack Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `quarter` varchar(180) default NULL, - `ack_no` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabForm 16A Ack Detail` --- - -LOCK TABLES `tabForm 16A Ack Detail` WRITE; -/*!40000 ALTER TABLE `tabForm 16A Ack Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabForm 16A Ack Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabForm 16A Tax Detail` --- - -DROP TABLE IF EXISTS `tabForm 16A Tax Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabForm 16A Tax Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `amount_paid` decimal(18,6) default NULL, - `date_of_payment` date default NULL, - `tds_main` decimal(18,6) default NULL, - `surcharge` decimal(18,6) default NULL, - `edu_cess` decimal(18,6) default NULL, - `sh_edu_cess` decimal(18,6) default NULL, - `total_tax_deposited` decimal(18,6) default NULL, - `cheque_no` varchar(180) default NULL, - `bsr_code` varchar(180) default NULL, - `tax_deposited_date` date default NULL, - `challan_no` varchar(180) default NULL, - `cess_on_tds` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabForm 16A Tax Detail` --- - -LOCK TABLES `tabForm 16A Tax Detail` WRITE; -/*!40000 ALTER TABLE `tabForm 16A Tax Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabForm 16A Tax Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabForm 16A` --- - -DROP TABLE IF EXISTS `tabForm 16A`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabForm 16A` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `from_date` date default NULL, - `to_date` date default NULL, - `fiscal_year` varchar(180) default NULL, - `company` varchar(180) default NULL, - `company_address` text, - `registration_details` text, - `party_name` varchar(180) default NULL, - `party_address` text, - `party_details` varchar(180) default NULL, - `tds_category` varchar(180) default NULL, - `total_amount` decimal(18,6) default NULL, - `place` varchar(180) default NULL, - `dt` date default NULL, - `full_name` varchar(180) default NULL, - `designation` varchar(180) default NULL, - `pan_number` varchar(180) default NULL, - `in_words` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `company` (`company`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabForm 16A` --- - -LOCK TABLES `tabForm 16A` WRITE; -/*!40000 ALTER TABLE `tabForm 16A` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabForm 16A` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabGL Entry` --- - -DROP TABLE IF EXISTS `tabGL Entry`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabGL Entry` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `posting_date` date default NULL, - `transaction_date` date default NULL, - `aging_date` date default NULL, - `account` varchar(180) default NULL, - `cost_center` varchar(180) default NULL, - `debit` decimal(18,6) default NULL, - `credit` decimal(18,6) default NULL, - `against` text, - `against_voucher` varchar(180) default NULL, - `against_voucher_type` varchar(180) default NULL, - `voucher_type` varchar(180) default NULL, - `voucher_no` varchar(180) default NULL, - `remarks` text, - `is_cancelled` varchar(180) default NULL, - `is_opening` varchar(180) default NULL, - `is_advance` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `company` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `posting_date` (`posting_date`), - KEY `account` (`account`), - KEY `voucher_no` (`voucher_no`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabGL Entry` --- - -LOCK TABLES `tabGL Entry` WRITE; -/*!40000 ALTER TABLE `tabGL Entry` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabGL Entry` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabGL Mapper Detail` --- - -DROP TABLE IF EXISTS `tabGL Mapper Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabGL Mapper Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `table_field` varchar(180) default NULL, - `account` varchar(180) default NULL, - `debit` varchar(180) default NULL, - `credit` varchar(180) default NULL, - `cost_center` varchar(180) default NULL, - `against` varchar(180) default NULL, - `remarks` varchar(180) default NULL, - `voucher_type` varchar(180) default NULL, - `voucher_no` varchar(180) default NULL, - `posting_date` varchar(180) default NULL, - `transaction_date` varchar(180) default NULL, - `aging_date` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `against_voucher` varchar(180) default NULL, - `against_voucher_type` varchar(180) default NULL, - `company` varchar(180) default NULL, - `is_opening` varchar(180) default NULL, - `is_advance` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabGL Mapper Detail` --- - -LOCK TABLES `tabGL Mapper Detail` WRITE; -/*!40000 ALTER TABLE `tabGL Mapper Detail` DISABLE KEYS */; -INSERT INTO `tabGL Mapper Detail` VALUES ('000000530','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',1,'entries','income_account','value:0','amount','cost_center','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('000000531','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',2,'other_charges','account_head','value:0','tax_amount','cost_center_other_charges','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('000000532','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',3,NULL,'debit_to','grand_total','value:0',NULL,'against_income_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('000000533','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',4,NULL,'debit_to','value:0','paid_amount',NULL,'cash_bank_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('000000534','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',5,NULL,'debit_to','value:0','write_off_amount',NULL,'write_off_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('000000535','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',6,NULL,'cash_bank_account','paid_amount','value:0',NULL,'debit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('000000536','2011-05-20 10:07:58','2011-05-20 10:07:58','Administrator','Administrator',0,'POS with write off','fields','GL Mapper',7,NULL,'write_off_account','write_off_amount','value:0','write_off_cost_center','debit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('GLMDetail00003','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Purchase Invoice','fields','GL Mapper',1,'entries','expense_head','amount','value:0','cost_center','parent:credit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00004','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Purchase Invoice','fields','GL Mapper',2,'purchase_tax_details','account_head','value:d.fields.get(\'category\') != \'For Valuation\' and d.fields.get(\'add_deduct_tax\') == \'Add\' and d.fields.get(\'tax_amount\') or 0','value:d.fields.get(\'category\') != \'For Valuation\' and d.fields.get(\'add_deduct_tax\') == \'Deduct\' and d.fields.get(\'tax_amount\') or 0','cost_center','parent:credit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00005','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Purchase Invoice','fields','GL Mapper',3,'','tax_code','value:0','ded_amount','','credit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('GLMDetail00006','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Purchase Invoice','fields','GL Mapper',4,'','credit_to','value:0','total_amount_to_pay','','against_expense_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','value:\'Purchase Invoice\'','company','is_opening',NULL),('GLMDetail00007','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Sales Invoice','fields','GL Mapper',1,'entries','income_account','value:0','amount','cost_center','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00008','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Sales Invoice','fields','GL Mapper',2,'other_charges','account_head','value:0','tax_amount','cost_center_other_charges','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00009','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'Sales Invoice','fields','GL Mapper',3,'','debit_to','grand_total','value:0','','against_income_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','value:\'Sales Invoice\'','company','is_opening',NULL),('GLMDetail00015','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',1,'entries','income_account','value:0','amount','cost_center','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00016','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',2,'other_charges','account_head','value:0','tax_amount','cost_center_other_charges','parent:debit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00017','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',3,NULL,'debit_to','grand_total','value:0',NULL,'against_income_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('GLMDetail00018','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',4,NULL,'debit_to','value:0','paid_amount','','cash_bank_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','doctype','company','is_opening',NULL),('GLMDetail00019','2010-12-15 08:39:21','2010-12-15 08:39:21','Administrator','Administrator',0,'POS','fields','GL Mapper',5,NULL,'cash_bank_account','paid_amount','value:0','','debit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','','','company','is_opening',NULL),('GLMDetail00022','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Journal Voucher','fields','GL Mapper',1,'entries','account','debit','credit','cost_center','against_account','parent:remark','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year','value:d.against_voucher or d.against_invoice or d.against_jv or \'\'','value:(d.against_voucher and \'Purchase Invoice\') or (d.against_invoice and \'Sales Invoice\') or (d.against_jv and \'Journal Voucher\') or \'\'','parent:company','parent:is_opening','is_advance'),('GLMDetail00023','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Journal Voucher','fields','GL Mapper',2,NULL,'tax_code','value:0','ded_amount',NULL,'supplier_account','remark','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('GLMDetail00024','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',1,'entries','expense_head','amount','value:0','cost_center','parent:credit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00025','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',2,'purchase_tax_details','account_head','value:d.fields.get(\'category\') != \'For Valuation\' and d.fields.get(\'add_deduct_tax\') == \'Add\' and d.fields.get(\'tax_amount\') or 0','value:d.fields.get(\'category\') != \'For Valuation\' and d.fields.get(\'add_deduct_tax\') == \'Deduct\' and d.fields.get(\'tax_amount\') or 0','cost_center','parent:credit_to','parent:remarks','parent:doctype','parent:name','parent:posting_date','parent:voucher_date','parent:aging_date','parent:fiscal_year',NULL,NULL,'parent:company','parent:is_opening',NULL),('GLMDetail00026','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',3,NULL,'tax_code','value:0','ded_amount',NULL,'credit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL),('GLMDetail00027','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',4,NULL,'credit_to','value:0','total_amount_to_pay',NULL,'against_expense_account','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year','name','value:\'Purchase Invoice\'','company','is_opening',NULL),('GLMDetail00028','2012-05-08 11:38:12','2012-05-08 11:38:12','Administrator','Administrator',0,'Purchase Invoice with write off','fields','GL Mapper',5,NULL,'write_off_account','value:0','write_off_amount','write_off_cost_center','credit_to','remarks','doctype','name','posting_date','voucher_date','aging_date','fiscal_year',NULL,NULL,'company','is_opening',NULL); -/*!40000 ALTER TABLE `tabGL Mapper Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabGL Mapper` --- - -DROP TABLE IF EXISTS `tabGL Mapper`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabGL Mapper` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `doc_type` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabGL Mapper` --- - -LOCK TABLES `tabGL Mapper` WRITE; -/*!40000 ALTER TABLE `tabGL Mapper` DISABLE KEYS */; -INSERT INTO `tabGL Mapper` VALUES ('Journal Voucher','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Journal Voucher',NULL),('POS','2010-12-15 08:39:20','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'POS',NULL),('POS with write off','2011-05-20 10:07:58','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'POS with write off',NULL),('Purchase Invoice','2010-08-08 17:09:36','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Payable Voucher',NULL),('Purchase Invoice with write off','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'Purchase Invoice with write off',NULL),('Sales Invoice','2010-08-08 17:09:36','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Receivable Voucher',NULL); -/*!40000 ALTER TABLE `tabGL Mapper` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabGrade` --- - -DROP TABLE IF EXISTS `tabGrade`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabGrade` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `grade_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabGrade` --- - -LOCK TABLES `tabGrade` WRITE; -/*!40000 ALTER TABLE `tabGrade` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabGrade` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabHoliday List` --- - -DROP TABLE IF EXISTS `tabHoliday List`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabHoliday List` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `holiday_list_name` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `is_default` int(1) default NULL, - `weekly_off` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabHoliday List` --- - -LOCK TABLES `tabHoliday List` WRITE; -/*!40000 ALTER TABLE `tabHoliday List` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabHoliday List` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabHoliday` --- - -DROP TABLE IF EXISTS `tabHoliday`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabHoliday` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `holiday_name` varchar(180) default NULL, - `holiday_date` date default NULL, - `description` text, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabHoliday` --- - -LOCK TABLES `tabHoliday` WRITE; -/*!40000 ALTER TABLE `tabHoliday` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabHoliday` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabIndustry Type` --- - -DROP TABLE IF EXISTS `tabIndustry Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabIndustry Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `industry` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabIndustry Type` --- - -LOCK TABLES `tabIndustry Type` WRITE; -/*!40000 ALTER TABLE `tabIndustry Type` DISABLE KEYS */; -INSERT INTO `tabIndustry Type` VALUES ('Aerospace and Defence','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Aerospace and Defence',NULL),('Agriculture','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Agriculture',NULL),('Apparel','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Apparel',NULL),('Automobile','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Automobile',NULL),('Banking','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Banking',NULL),('Biotechnology','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Biotechnology',NULL),('Chemical','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Chemical',NULL),('Communications','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Communications',NULL),('Consulting','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Consulting',NULL),('Customer Service','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer Service',NULL),('Education','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Education',NULL),('Electronics','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Electronics',NULL),('Energy','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Energy',NULL),('Engineering','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Engineering',NULL),('Entertainment','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Entertainment',NULL),('Environmental','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Environmental',NULL),('Finance','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Finance',NULL),('Food and Beverage','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Food and Beverage',NULL),('Government','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Government',NULL),('Healthcare','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Healthcare',NULL),('Hospitality','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Hospitality',NULL),('Information Technology','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Information Technology',NULL),('Insurance','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Insurance',NULL),('Machinery','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Machinery',NULL),('Manufacturing','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Manufacturing',NULL),('Media','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Media',NULL),('Not For Profit','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Not For Profit',NULL),('Other','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Other',NULL),('Recreation','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Recreation',NULL),('Retail','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Retail',NULL),('Shipping','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Shipping',NULL),('Technology','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Technology',NULL),('Telecommunications','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Telecommunications',NULL),('Trading','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Trading',NULL),('Transportation','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Transportation',NULL),('Utilities','2010-08-08 17:49:06','2010-08-08 17:49:06','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Utilities',NULL); -/*!40000 ALTER TABLE `tabIndustry Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabInstallation Note Item` --- - -DROP TABLE IF EXISTS `tabInstallation Note Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabInstallation Note Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `description` varchar(180) default NULL, - `prevdoc_date` date default NULL, - `qty` decimal(18,6) default NULL, - `serial_no` text, - `prevdoc_detail_docname` varchar(180) default NULL, - `prevdoc_docname` varchar(180) default NULL, - `prevdoc_doctype` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `prevdoc_docname` (`prevdoc_docname`), - KEY `prevdoc_doctype` (`prevdoc_doctype`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabInstallation Note Item` --- - -LOCK TABLES `tabInstallation Note Item` WRITE; -/*!40000 ALTER TABLE `tabInstallation Note Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabInstallation Note Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabInstallation Note` --- - -DROP TABLE IF EXISTS `tabInstallation Note`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabInstallation Note` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `customer_name` varchar(180) default NULL, - `address` mediumtext, - `contact_person` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `delivery_note_no` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `status` varchar(180) default 'Draft', - `inst_date` date default NULL, - `inst_time` time default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `remarks` text, - `cancel_reason` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `naming_series` varchar(180) default NULL, - `address_display` text, - `contact_display` text, - `customer_address` varchar(180) default NULL, - `contact_email` text, - `contact_mobile` text, - `customer_group` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `delivery_note_no` (`delivery_note_no`), - KEY `parent` (`parent`), - KEY `customer` (`customer`), - KEY `territory` (`territory`), - KEY `inst_date` (`inst_date`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabInstallation Note` --- - -LOCK TABLES `tabInstallation Note` WRITE; -/*!40000 ALTER TABLE `tabInstallation Note` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabInstallation Note` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabItem Customer Detail` --- - -DROP TABLE IF EXISTS `tabItem Customer Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabItem Customer Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `ref_code` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `ref_code` (`ref_code`), - KEY `customer_name` (`customer_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabItem Customer Detail` --- - -LOCK TABLES `tabItem Customer Detail` WRITE; -/*!40000 ALTER TABLE `tabItem Customer Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabItem Customer Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabItem Group` --- - -DROP TABLE IF EXISTS `tabItem Group`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabItem Group` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `item_group_name` varchar(180) default NULL, - `show_in_catalogue` int(1) default NULL, - `description` text, - `parent_item_group` varchar(180) default NULL, - `is_group` varchar(180) default NULL, - `lft` int(11) default NULL, - `rgt` int(11) default NULL, - `old_parent` varchar(180) default NULL, - `show_in_website` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `lft` (`lft`), - KEY `rgt` (`rgt`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabItem Group` --- - -LOCK TABLES `tabItem Group` WRITE; -/*!40000 ALTER TABLE `tabItem Group` DISABLE KEYS */; -INSERT INTO `tabItem Group` VALUES ('All Item Groups','2010-12-14 17:56:45','2012-10-02 13:17:59','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'All Item Groups',NULL,NULL,'','Yes',1,4,'',NULL,NULL),('Default','2010-12-14 17:56:45','2012-10-02 13:17:59','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Default',NULL,NULL,'All Item Groups','No',2,3,'All Item Groups',NULL,NULL); -/*!40000 ALTER TABLE `tabItem Group` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabItem Price` --- - -DROP TABLE IF EXISTS `tabItem Price`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabItem Price` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `price_list_name` varchar(180) default NULL, - `ref_rate` decimal(18,6) default NULL, - `ref_currency` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `price_list_name` (`price_list_name`), - KEY `ref_rate` (`ref_rate`), - KEY `ref_currency` (`ref_currency`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabItem Price` --- - -LOCK TABLES `tabItem Price` WRITE; -/*!40000 ALTER TABLE `tabItem Price` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabItem Price` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabItem Quality Inspection Parameter` --- - -DROP TABLE IF EXISTS `tabItem Quality Inspection Parameter`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabItem Quality Inspection Parameter` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `specification` varchar(180) default NULL, - `value` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabItem Quality Inspection Parameter` --- - -LOCK TABLES `tabItem Quality Inspection Parameter` WRITE; -/*!40000 ALTER TABLE `tabItem Quality Inspection Parameter` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabItem Quality Inspection Parameter` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabItem Supplier` --- - -DROP TABLE IF EXISTS `tabItem Supplier`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabItem Supplier` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `supplier` varchar(180) default NULL, - `supplier_part_no` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabItem Supplier` --- - -LOCK TABLES `tabItem Supplier` WRITE; -/*!40000 ALTER TABLE `tabItem Supplier` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabItem Supplier` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabItem Tax` --- - -DROP TABLE IF EXISTS `tabItem Tax`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabItem Tax` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `tax_type` varchar(180) default NULL, - `tax_rate` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabItem Tax` --- - -LOCK TABLES `tabItem Tax` WRITE; -/*!40000 ALTER TABLE `tabItem Tax` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabItem Tax` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabItem` --- - -DROP TABLE IF EXISTS `tabItem`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabItem` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `stock_uom` varchar(180) default NULL, - `description` text, - `alternate_description` mediumtext, - `brand` varchar(180) default NULL, - `is_stock_item` varchar(180) default 'Yes', - `valuation_method` varchar(180) default NULL, - `default_warehouse` varchar(180) default NULL, - `tolerance` decimal(18,6) default NULL, - `re_order_level` decimal(18,6) default NULL, - `minimum_inventory_level` decimal(18,6) default NULL, - `min_order_qty` decimal(18,6) default '0.000000', - `is_asset_item` varchar(180) default 'No', - `has_batch_no` varchar(180) default 'No', - `has_serial_no` varchar(180) default 'No', - `warranty_period` varchar(180) default NULL, - `end_of_life` date default NULL, - `is_purchase_item` varchar(180) default 'Yes', - `lead_time_days` int(11) default NULL, - `purchase_account` varchar(180) default NULL, - `cost_center` varchar(180) default NULL, - `buying_cost` decimal(18,6) default NULL, - `last_purchase_rate` decimal(18,6) default NULL, - `standard_rate` decimal(18,6) default NULL, - `is_sales_item` varchar(180) default 'Yes', - `is_service_item` varchar(180) default 'No', - `is_sample_item` varchar(180) default 'No', - `max_discount` decimal(18,6) default NULL, - `sales_rate` decimal(18,6) default NULL, - `inspection_required` varchar(180) default 'No', - `is_manufactured_item` varchar(180) default 'No', - `default_bom` varchar(180) default NULL, - `is_pro_applicable` varchar(180) default 'No', - `is_sub_contracted_item` varchar(180) default 'No', - `fiscal_year` varchar(180) default NULL, - `default_income_account` varchar(180) default NULL, - `default_sales_cost_center` varchar(180) default NULL, - `file_list` text, - `description_html` text, - `weight_uom` varchar(180) default NULL, - `customer_code` varchar(180) default NULL, - `email_notify` int(1) default NULL, - `manufacturer_part_no` varchar(180) default NULL, - `manufacturer` varchar(180) default NULL, - `net_weight` decimal(18,6) default NULL, - `re_order_qty` decimal(18,6) default NULL, - `website_image` varchar(180) default NULL, - `page_name` varchar(180) default NULL, - `show_in_website` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - `web_short_description` text, - `barcode` varchar(180) default NULL, - `web_long_description` text, - PRIMARY KEY (`name`), - KEY `item_name` (`item_name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabItem` --- - -LOCK TABLES `tabItem` WRITE; -/*!40000 ALTER TABLE `tabItem` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabItem` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabJournal Voucher Detail` --- - -DROP TABLE IF EXISTS `tabJournal Voucher Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabJournal Voucher Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `account` varchar(180) default NULL, - `cost_center` varchar(180) default NULL, - `balance` varchar(180) default NULL, - `debit` decimal(18,6) default NULL, - `credit` decimal(18,6) default NULL, - `against_voucher` varchar(180) default NULL, - `against_invoice` varchar(180) default NULL, - `is_advance` varchar(180) default NULL, - `against_account` text, - `against_jv` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `account` (`account`), - KEY `against_voucher` (`against_voucher`), - KEY `against_invoice` (`against_invoice`), - KEY `parent` (`parent`), - KEY `against_jv` (`against_jv`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabJournal Voucher Detail` --- - -LOCK TABLES `tabJournal Voucher Detail` WRITE; -/*!40000 ALTER TABLE `tabJournal Voucher Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabJournal Voucher Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabJournal Voucher` --- - -DROP TABLE IF EXISTS `tabJournal Voucher`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabJournal Voucher` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `voucher_type` varchar(180) default NULL, - `naming_series` varchar(180) default 'JV', - `voucher_date` date default NULL, - `posting_date` date default NULL, - `due_date` date default NULL, - `amendment_date` date default NULL, - `amended_from` varchar(180) default NULL, - `cheque_no` varchar(180) default NULL, - `cheque_date` date default NULL, - `clearance_date` date default NULL, - `user_remark` text, - `remark` text, - `total_debit` decimal(18,6) default NULL, - `total_credit` decimal(18,6) default NULL, - `difference` decimal(18,6) default NULL, - `bill_no` varchar(180) default NULL, - `bill_date` date default NULL, - `is_opening` varchar(180) default 'No', - `aging_date` date default NULL, - `cancel_reason` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `company` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `tds_applicable` varchar(180) default 'No', - `tds_category` varchar(180) default NULL, - `supplier_account` varchar(180) default NULL, - `tax_code` varchar(180) default NULL, - `rate` decimal(18,6) default NULL, - `ded_amount` decimal(18,6) default NULL, - `write_off_amount` decimal(18,6) default NULL, - `total_amount_in_words` varchar(180) default NULL, - `pay_to_recd_from` varchar(180) default NULL, - `total_amount` varchar(180) default NULL, - `write_off_based_on` varchar(180) default 'Accounts Receivable', - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `voucher_type` (`voucher_type`), - KEY `voucher_date` (`voucher_date`), - KEY `posting_date` (`posting_date`), - KEY `cheque_no` (`cheque_no`), - KEY `clearance_date` (`clearance_date`), - KEY `is_opening` (`is_opening`), - KEY `fiscal_year` (`fiscal_year`), - KEY `company` (`company`), - KEY `tds_applicable` (`tds_applicable`), - KEY `tds_category` (`tds_category`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabJournal Voucher` --- - -LOCK TABLES `tabJournal Voucher` WRITE; -/*!40000 ALTER TABLE `tabJournal Voucher` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabJournal Voucher` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLanded Cost Item` --- - -DROP TABLE IF EXISTS `tabLanded Cost Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLanded Cost Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `account_head` varchar(180) default NULL, - `description` varchar(180) default NULL, - `amount` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `account_head` (`account_head`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLanded Cost Item` --- - -LOCK TABLES `tabLanded Cost Item` WRITE; -/*!40000 ALTER TABLE `tabLanded Cost Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLanded Cost Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLanded Cost Master Detail` --- - -DROP TABLE IF EXISTS `tabLanded Cost Master Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLanded Cost Master Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `account_head` varchar(180) default NULL, - `description` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLanded Cost Master Detail` --- - -LOCK TABLES `tabLanded Cost Master Detail` WRITE; -/*!40000 ALTER TABLE `tabLanded Cost Master Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLanded Cost Master Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLanded Cost Master` --- - -DROP TABLE IF EXISTS `tabLanded Cost Master`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLanded Cost Master` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `title` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLanded Cost Master` --- - -LOCK TABLES `tabLanded Cost Master` WRITE; -/*!40000 ALTER TABLE `tabLanded Cost Master` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLanded Cost Master` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLanded Cost Purchase Receipt` --- - -DROP TABLE IF EXISTS `tabLanded Cost Purchase Receipt`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLanded Cost Purchase Receipt` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `purchase_receipt_no` varchar(180) default NULL, - `include_in_landed_cost` int(1) default NULL, - `purchase_receipt` varchar(180) default NULL, - `select_pr` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLanded Cost Purchase Receipt` --- - -LOCK TABLES `tabLanded Cost Purchase Receipt` WRITE; -/*!40000 ALTER TABLE `tabLanded Cost Purchase Receipt` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLanded Cost Purchase Receipt` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLead` --- - -DROP TABLE IF EXISTS `tabLead`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLead` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default 'LEAD', - `status` varchar(180) default 'Open', - `order_lost_reason` varchar(180) default NULL, - `lead_name` varchar(180) default NULL, - `transaction_date` date default NULL, - `source` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `company_name` varchar(180) default NULL, - `type` varchar(180) default NULL, - `rating` varchar(180) default NULL, - `remark` text, - `contact_no` varchar(180) default NULL, - `mobile_no` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `fax` varchar(180) default NULL, - `website` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `address_line1` varchar(180) default NULL, - `address_line2` varchar(180) default NULL, - `city` varchar(180) default NULL, - `country` varchar(180) default NULL, - `state` varchar(180) default NULL, - `pincode` varchar(180) default NULL, - `address` mediumtext, - `lead_owner` varchar(180) default NULL, - `market_segment` varchar(180) default NULL, - `industry` varchar(180) default NULL, - `campaign_name` varchar(180) default NULL, - `interested_in` varchar(180) default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `contact_by` varchar(180) default NULL, - `contact_date` date default NULL, - `last_contact_date` date default NULL, - `contact_date_ref` date default NULL, - `to_discuss` mediumtext, - `cc_to` varchar(180) default NULL, - `subject` varchar(180) default NULL, - `message` mediumtext, - `sms_message` mediumtext, - `request_type` varchar(180) default NULL, - `trash_reason` text, - `phone` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - `blog_subscriber` int(1) default NULL, - `unsubscribed` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `lead_name` (`lead_name`), - KEY `transaction_date` (`transaction_date`), - KEY `lead_owner` (`lead_owner`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLead` --- - -LOCK TABLES `tabLead` WRITE; -/*!40000 ALTER TABLE `tabLead` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLead` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLease Agreement` --- - -DROP TABLE IF EXISTS `tabLease Agreement`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLease Agreement` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `account` varchar(180) default NULL, - `naming_series` varchar(180) default NULL, - `lessee_address` text, - `invoice` varchar(180) default NULL, - `invoice_amount` decimal(18,6) default NULL, - `chassis_no` varchar(180) default NULL, - `down_payment` decimal(18,6) default NULL, - `lessee_father` varchar(180) default NULL, - `start_date` date default NULL, - `lessee_contact` varchar(180) default NULL, - `no_of_installments` int(11) default NULL, - `lessee_nic` varchar(180) default NULL, - `engine_no` varchar(180) default NULL, - `installment_amount` decimal(18,6) default NULL, - `model_no` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLease Agreement` --- - -LOCK TABLES `tabLease Agreement` WRITE; -/*!40000 ALTER TABLE `tabLease Agreement` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLease Agreement` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLease Installment` --- - -DROP TABLE IF EXISTS `tabLease Installment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLease Installment` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `due_date` date default NULL, - `amount` decimal(18,6) default NULL, - `cheque_date` date default NULL, - `cheque_number` varchar(180) default NULL, - `jv_number` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLease Installment` --- - -LOCK TABLES `tabLease Installment` WRITE; -/*!40000 ALTER TABLE `tabLease Installment` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLease Installment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLeave Allocation` --- - -DROP TABLE IF EXISTS `tabLeave Allocation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLeave Allocation` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `amended_from` varchar(180) default NULL, - `description` text, - `new_leaves_allocated` decimal(18,6) default NULL, - `carry_forwarded_leaves` decimal(18,6) default NULL, - `carry_forward` int(1) default NULL, - `fiscal_year` varchar(180) default NULL, - `total_leaves_allocated` decimal(18,6) default NULL, - `leave_type` varchar(180) default NULL, - `amendment_date` date default NULL, - `employee_name` varchar(180) default NULL, - `employee` varchar(180) default NULL, - `posting_date` date default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `fiscal_year` (`fiscal_year`), - KEY `leave_type` (`leave_type`), - KEY `employee_name` (`employee_name`), - KEY `employee` (`employee`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLeave Allocation` --- - -LOCK TABLES `tabLeave Allocation` WRITE; -/*!40000 ALTER TABLE `tabLeave Allocation` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLeave Allocation` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLeave Application` --- - -DROP TABLE IF EXISTS `tabLeave Application`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLeave Application` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `from_date` date default NULL, - `description` text, - `half_day` int(1) default NULL, - `total_leave_days` decimal(18,6) default NULL, - `fiscal_year` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `leave_balance` decimal(18,6) default NULL, - `leave_type` varchar(180) default NULL, - `to_date` date default NULL, - `amendment_date` date default NULL, - `employee_name` varchar(180) default NULL, - `employee` varchar(180) default NULL, - `posting_date` date default NULL, - `letter_head` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `employee` (`employee`), - KEY `leave_type` (`leave_type`), - KEY `to_date` (`to_date`), - KEY `from_date` (`from_date`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLeave Application` --- - -LOCK TABLES `tabLeave Application` WRITE; -/*!40000 ALTER TABLE `tabLeave Application` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLeave Application` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLeave Type` --- - -DROP TABLE IF EXISTS `tabLeave Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLeave Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `leave_type_name` varchar(180) default NULL, - `max_days_allowed` varchar(180) default NULL, - `is_carry_forward` int(1) default NULL, - `is_encash` int(1) default NULL, - `is_lwp` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLeave Type` --- - -LOCK TABLES `tabLeave Type` WRITE; -/*!40000 ALTER TABLE `tabLeave Type` DISABLE KEYS */; -INSERT INTO `tabLeave Type` VALUES ('Casual Leave','2010-12-14 17:56:47','2010-04-02 10:52:32','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Casual Leave','3',1,1,NULL,NULL),('Compensatory Off','2010-12-14 17:56:47','2010-04-02 10:59:30','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Compensatory Off',NULL,NULL,NULL,NULL,NULL),('Leave Without Pay','2010-12-14 17:56:47','2010-04-02 10:57:37','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Leave Without Pay',NULL,NULL,NULL,1,NULL),('Privilege Leave','2010-12-14 17:56:47','2010-04-02 10:53:16','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Privilege Leave',NULL,NULL,1,NULL,NULL),('Sick Leave','2010-12-14 17:56:47','2010-04-02 10:54:12','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Sick Leave',NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabLeave Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabLetter Head` --- - -DROP TABLE IF EXISTS `tabLetter Head`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabLetter Head` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `letter_head_name` varchar(180) default NULL, - `disabled` int(1) default NULL, - `content` text, - `file_list` text, - `is_default` int(1) default NULL, - `set_from_image` int(1) default NULL, - `url` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabLetter Head` --- - -LOCK TABLES `tabLetter Head` WRITE; -/*!40000 ALTER TABLE `tabLetter Head` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabLetter Head` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabMaintenance Schedule Detail` --- - -DROP TABLE IF EXISTS `tabMaintenance Schedule Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabMaintenance Schedule Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `scheduled_date` date default NULL, - `actual_date` date default NULL, - `incharge_name` varchar(180) default NULL, - `serial_no` text, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `scheduled_date` (`scheduled_date`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabMaintenance Schedule Detail` --- - -LOCK TABLES `tabMaintenance Schedule Detail` WRITE; -/*!40000 ALTER TABLE `tabMaintenance Schedule Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabMaintenance Schedule Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabMaintenance Schedule Item` --- - -DROP TABLE IF EXISTS `tabMaintenance Schedule Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabMaintenance Schedule Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` varchar(180) default NULL, - `start_date` date default NULL, - `end_date` date default NULL, - `periodicity` varchar(180) default NULL, - `no_of_visits` int(11) default NULL, - `incharge_name` varchar(180) default NULL, - `serial_no` text, - `prevdoc_docname` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `start_date` (`start_date`), - KEY `end_date` (`end_date`), - KEY `prevdoc_docname` (`prevdoc_docname`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabMaintenance Schedule Item` --- - -LOCK TABLES `tabMaintenance Schedule Item` WRITE; -/*!40000 ALTER TABLE `tabMaintenance Schedule Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabMaintenance Schedule Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabMaintenance Schedule` --- - -DROP TABLE IF EXISTS `tabMaintenance Schedule`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabMaintenance Schedule` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `customer_name` varchar(180) default NULL, - `address` mediumtext, - `contact_person` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `company` varchar(180) default NULL, - `status` varchar(180) default 'Draft', - `transaction_date` date default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `sales_order_no` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `customer_address` varchar(180) default NULL, - `address_display` text, - `contact_display` text, - `contact_mobile` text, - `contact_email` text, - `customer_group` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `sales_order_no` (`sales_order_no`), - KEY `parent` (`parent`), - KEY `customer` (`customer`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabMaintenance Schedule` --- - -LOCK TABLES `tabMaintenance Schedule` WRITE; -/*!40000 ALTER TABLE `tabMaintenance Schedule` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabMaintenance Schedule` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabMaintenance Visit Purpose` --- - -DROP TABLE IF EXISTS `tabMaintenance Visit Purpose`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabMaintenance Visit Purpose` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `description` text, - `service_person` varchar(180) default NULL, - `work_done` text, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `serial_no` text, - `prevdoc_docname` varchar(180) default NULL, - `prevdoc_detail_docname` varchar(180) default NULL, - `prevdoc_doctype` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabMaintenance Visit Purpose` --- - -LOCK TABLES `tabMaintenance Visit Purpose` WRITE; -/*!40000 ALTER TABLE `tabMaintenance Visit Purpose` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabMaintenance Visit Purpose` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabMaintenance Visit` --- - -DROP TABLE IF EXISTS `tabMaintenance Visit`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabMaintenance Visit` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `status` varchar(180) default 'Draft', - `mntc_date` date default NULL, - `mntc_time` time default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `customer_name` varchar(180) default NULL, - `address` mediumtext, - `contact_person` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `completion_status` varchar(180) default NULL, - `maintenance_type` varchar(180) default 'Unscheduled', - `sales_order_no` varchar(180) default NULL, - `customer_issue_no` varchar(180) default NULL, - `customer_feedback` text, - `customer` varchar(180) default NULL, - `contact_display` text, - `customer_address` varchar(180) default NULL, - `contact_email` varchar(180) default NULL, - `contact_mobile` varchar(180) default NULL, - `address_display` text, - `customer_group` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - `maintenance_schedule` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `sales_order_no` (`sales_order_no`), - KEY `customer_issue_no` (`customer_issue_no`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabMaintenance Visit` --- - -LOCK TABLES `tabMaintenance Visit` WRITE; -/*!40000 ALTER TABLE `tabMaintenance Visit` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabMaintenance Visit` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabMarket Segment` --- - -DROP TABLE IF EXISTS `tabMarket Segment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabMarket Segment` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `segment_name` varchar(180) default NULL, - `details` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabMarket Segment` --- - -LOCK TABLES `tabMarket Segment` WRITE; -/*!40000 ALTER TABLE `tabMarket Segment` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabMarket Segment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabMode of Payment` --- - -DROP TABLE IF EXISTS `tabMode of Payment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabMode of Payment` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `mode_of_payment` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabMode of Payment` --- - -LOCK TABLES `tabMode of Payment` WRITE; -/*!40000 ALTER TABLE `tabMode of Payment` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabMode of Payment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabModule Def` --- - -DROP TABLE IF EXISTS `tabModule Def`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabModule Def` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `module_name` varchar(180) default NULL, - `doctype_list` mediumtext, - `trash_reason` mediumtext, - `disabled` varchar(180) default NULL, - `module_label` varchar(180) default NULL, - `module_page` varchar(180) default NULL, - `module_desc` varchar(180) default NULL, - `module_icon` varchar(180) default NULL, - `module_seq` int(11) default NULL, - `file_list` mediumtext, - `widget_code` mediumtext, - `is_hidden` varchar(180) default NULL, - `last_updated_date` varchar(40) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `module_seq` (`module_seq`), - KEY `module_page` (`module_page`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabModule Def` --- - -LOCK TABLES `tabModule Def` WRITE; -/*!40000 ALTER TABLE `tabModule Def` DISABLE KEYS */; -INSERT INTO `tabModule Def` VALUES ('Accounts','2010-09-25 10:50:34','2012-03-01 11:15:55','Administrator','Administrator',0,NULL,NULL,NULL,1,'Accounts','GL Mapper, Journal Voucher\nGL Mapper, Payable Voucher\nGL Mapper, Receivable Voucher\nDocType Label, Receivable Voucher\nDocType Label, Payable Voucher',NULL,'No','Accounts',NULL,'Data about your payables, receivables and books of accounts','Accounts.gif',5,'finance.gif,FileData-00210','var acc_set_tips = function() {\n $c_obj(\'Module Tip Control\', \'get_tip\', \'accounts\', function(r,rt) { \n if(r.message) {\n $(parent.tip_area).html(\'Tip: \' + r.message).css(\'display\',\'block\');\n }\n } );\n}\n\nacc_set_tips();',NULL,'2010-12-08 10:13:30',NULL),('Analysis','2010-08-08 17:35:41','2010-12-01 11:56:32','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Analysis',NULL,NULL,'No','Analysis',NULL,NULL,'Analysis.gif',20,NULL,'',NULL,'2010-12-02 09:25:40',NULL),('Buying','2011-07-06 14:35:16','2011-07-06 14:35:16','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Buying','DocType Mapper, Purchase Receipt-Payable Voucher\nDocType Mapper, Purchase Order-Payable Voucher\nDocType Mapper, Purchase Order-Purchase Receipt\nDocType Mapper, Indent-Purchase Order\nPrint Format, Purchase Order Format\nPrint Format, Purchase Receipt Format',NULL,'No','Buying',NULL,'

    All details about your Suppliers and past transactions

    ','Buying.gif',4,'scm.gif,FileData-00209',NULL,'No',NULL,NULL),('Core','2011-02-21 09:23:54','2011-02-12 10:07:59','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Core',NULL,NULL,'No','Core',NULL,NULL,NULL,NULL,NULL,NULL,'Yes',NULL,NULL),('Development','2010-08-08 17:35:42','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Development',NULL,NULL,'No','Development',NULL,NULL,'',NULL,NULL,'',NULL,NULL,NULL),('Home','2011-06-27 10:52:02','2011-06-27 10:52:02','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Home',NULL,NULL,NULL,'Home',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('HR','2011-07-06 14:35:16','2011-09-12 10:13:32','Administrator','Administrator',0,NULL,NULL,NULL,0,'HR',NULL,NULL,'No','HR',NULL,'Human Resource Management - Employee Database, Salaries etc.','HR.gif',9,NULL,NULL,'No',NULL,NULL),('Production','2010-09-25 10:50:35','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Production',NULL,NULL,'No','Production',NULL,'Production Documents','Production.gif',9,'support.gif,FileData-00214','',NULL,'2010-11-29 12:02:02',NULL),('Projects','2010-09-01 15:47:59','2010-11-11 10:56:45','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Projects',NULL,NULL,'No','Projects',NULL,'Manage your projects','Projects.gif',4,'undefined,undefined','',NULL,'2010-11-29 12:02:02',NULL),('Selling','2011-07-06 14:35:16','2012-01-24 07:02:51','Administrator','Administrator',0,NULL,NULL,NULL,1,'Selling','Print Format, Sales Order\nPrint Format, Quotation Format\nPrint Format, Delivery Note Format',NULL,'No','Selling',NULL,'Manage you sales team, with your leads, customers, quotes, orders etc.','Selling.gif',3,'crm.gif,FileData-00208',NULL,'No',NULL,NULL),('Setup','2010-08-08 17:35:42','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Setup',NULL,NULL,'No','Setup','Setup',NULL,'Setup.gif',2,NULL,'',NULL,'2010-12-09 17:08:07',NULL),('Setup Masters','2010-08-08 17:35:42','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Setup Masters','Currency, AED\nCurrency, AFN\nCurrency, ALL\nCurrency, AMD\nCurrency, ANG\nCurrency, AOA\nCurrency, ARS\nCurrency, AUD\nCurrency, AZN\nCurrency, BAM\nCurrency, BBD\nCurrency, BDT\nCurrency, BGN\nCurrency, BHD\nCurrency, BIF\nCurrency, BMD\nCurrency, BND\nCurrency, BOB\nCurrency, BRL\nCurrency, BSD\nCurrency, BTN\nCurrency, BWP\nCurrency, BYR\nCurrency, BZD\nCurrency, CAD\nCurrency, CDF\nCurrency, CFA\nCurrency, CFP\nCurrency, CHF\nCurrency, CLP\nCurrency, CNY\nCurrency, COP\nCurrency, CRC\nCurrency, CUC\nCurrency, CZK\nCurrency, DJF\nCurrency, DKK\nCurrency, DOP\nCurrency, DZD\nCurrency, EEK\nCurrency, EGP\nCurrency, ERN\nCurrency, ETB\nCurrency, EUR\nCurrency, EURO\nCurrency, FJD\nCurrency, FKP\nCurrency, FMG\nCurrency, GBP\nCurrency, GEL\nCurrency, GHS\nCurrency, GIP\nCurrency, GMD\nCurrency, GNF\nCurrency, GQE\nCurrency, GTQ\nCurrency, GYD\nCurrency, HKD\nCurrency, HNL\nCurrency, HRK\nCurrency, HTG\nCurrency, HUF\nCurrency, IDR\nCurrency, ILS\nCurrency, INR\nCurrency, IQD\nCurrency, IRR\nCurrency, ISK\nCurrency, JMD\nCurrency, JOD\nCurrency, JPY\nCurrency, KES\nCurrency, KGS\nCurrency, KHR\nCurrency, KMF\nCurrency, KPW\nCurrency, KRW\nCurrency, KWD\nCurrency, KYD\nCurrency, KZT\nCurrency, LAK\nCurrency, LBP\nCurrency, LKR\nCurrency, LRD\nCurrency, LSL\nCurrency, LTL\nCurrency, LVL\nCurrency, LYD\nCurrency, MAD\nCurrency, MDL\nCurrency, MGA\nCurrency, MKD\nCurrency, MMK\nCurrency, MNT\nCurrency, MOP\nCurrency, MRO\nCurrency, MUR\nCurrency, MVR\nCurrency, MWK\nCurrency, MXN\nCurrency, MYR\nCurrency, MZM\nCurrency, NAD\nCurrency, NGN\nCurrency, NIO\nCurrency, NOK\nCurrency, NPR\nCurrency, NRs\nCurrency, NZD\nCurrency, OMR\nCurrency, PAB\nCurrency, PEN\nCurrency, PGK\nCurrency, PHP\nCurrency, PKR\nCurrency, PLN\nCurrency, PYG\nCurrency, QAR\nCurrency, RMB\nCurrency, RON\nCurrency, RSD\nCurrency, RUB\nCurrency, RWF\nCurrency, SAR\nCurrency, SCR\nCurrency, SDG\nCurrency, SDR\nCurrency, SEK\nCurrency, SGD\nCurrency, SHP\nCurrency, SOS\nCurrency, SRD\nCurrency, STD\nCurrency, SYP\nCurrency, SZL\nCurrency, THB\nCurrency, TJS\nCurrency, TMT\nCurrency, TND\nCurrency, TRY\nCurrency, TTD\nCurrency, TWD\nCurrency, TZS\nCurrency, UAE\nCurrency, UAH\nCurrency, UGX\nCurrency, USD\nCurrency, UYU\nCurrency, UZS\nCurrency, VEB\nCurrency, VND\nCurrency, VUV\nCurrency, WST\nCurrency, XAF\nCurrency, XCD\nCurrency, XDR\nCurrency, XOF\nCurrency, XPF\nCurrency, YEN\nCurrency, YER\nCurrency, YTL\nCurrency, ZAR\nCurrency, ZMK\nCurrency, ZWR\nState, Alabama\nState, Alaska\nState, Andaman and Nicobar Islands\nState, Andhra Pradesh\nState, Arizona\nState, Arkansas\nState, Arunachal Pradesh\nState, Assam\nState, Bihar\nState, California\nState, Chandigarh\nState, Chhattisgarh\nState, Colorado\nState, Connecticut\nState, Dadra and Nagar Haveli\nState, Daman and Diu\nState, Delaware\nState, Delhi\nState, Florida\nState, Georgia\nState, Goa\nState, Gujarat\nState, Haryana\nState, Hawaii\nState, Himachal Pradesh\nState, Idaho\nState, Illinois\nState, Indiana\nState, Iowa\nState, Jammu and Kashmir\nState, Jharkhand\nState, Kansas\nState, Karnataka\nState, Kentucky\nState, Kerala\nState, Lakshadweep\nState, Louisiana\nState, Madhya Pradesh\nState, Maharashtra\nState, Maine\nState, Manipur\nState, Maryland\nState, Massachusetts\nState, Meghalaya\nState, Michigan\nState, Minnesota\nState, Mississippi\nState, Missouri\nState, Mizoram\nState, Montana\nState, Nagaland\nState, Nebraska\nState, Nevada\nState, New Hampshire\nState, New Jersey\nState, New Mexico\nState, New York\nState, North Carolina\nState, North Dakota\nState, Ohio\nState, Oklahoma\nState, Oregon\nState, Orissa\nState, Pennsylvania\nState, Puducherry\nState, Punjab\nState, Rajasthan\nState, Rhode Island\nState, Sikkim\nState, South Carolina\nState, South Dakota\nState, Tamil Nadu\nState, Tennessee\nState, Texas\nState, Tripura\nState, Utah\nState, Uttar Pradesh\nState, Uttarakhand\nState, Vermont\nState, Virginia\nState, Washington\nState, West Bengal\nState, West Virginia\nState, Wisconsin\nState, Wyoming\nCountry, Afghanistan\nCountry, Albania\nCountry, Algeria\nCountry, Andorra\nCountry, Angola\nCountry, Antarctica\nCountry, Antigua and Barbuda\nCountry, Argentina\nCountry, Armenia\nCountry, Australia\nCountry, Austria\nCountry, Azerbaijan\nCountry, Bahamas\nCountry, Bahrain\nCountry, Bangladesh\nCountry, Barbados\nCountry, Belarus\nCountry, Belgium\nCountry, Belize\nCountry, Benin\nCountry, Bermuda\nCountry, Bhutan\nCountry, Bolivia\nCountry, Bosnia and Herzegovina\nCountry, Botswana\nCountry, Brazil\nCountry, Brunei\nCountry, Bulgaria\nCountry, Burkina Faso\nCountry, Burma\nCountry, Burundi\nCountry, Cambodia\nCountry, Cameroon\nCountry, Canada\nCountry, Cape Verde\nCountry, Central African Republic\nCountry, Chad\nCountry, Chile\nCountry, China\nCountry, Colombia\nCountry, Comoros\nCountry, Costa Rica\nCountry, Croatia\nCountry, Cuba\nCountry, Cyprus\nCountry, Czech Republic\nCountry, Denmark\nCountry, Djibouti\nCountry, Dominica\nCountry, Dominican Republic\nCountry, East Timor\nCountry, Ecuador\nCountry, Egypt\nCountry, El Salvador\nCountry, Equatorial Guinea\nCountry, Eritrea\nCountry, Estonia\nCountry, Ethiopia\nCountry, Fiji\nCountry, Finland\nCountry, France\nCountry, Gabon\nCountry, Gambia\nCountry, Georgia\nCountry, Germany\nCountry, Ghana\nCountry, Greece\nCountry, Greenland\nCountry, Grenada\nCountry, Guatemala\nCountry, Guinea\nCountry, Guinea-Bissau\nCountry, Guyana\nCountry, Haiti\nCountry, Honduras\nCountry, Hong Kong\nCountry, Hungary\nCountry, Iceland\nCountry, India\nCountry, Indonesia\nCountry, Iran\nCountry, Iraq\nCountry, Ireland\nCountry, Israel\nCountry, Italy\nCountry, Jamaica\nCountry, Japan\nCountry, Jordan\nCountry, Kazakhstan\nCountry, Kenya\nCountry, Kiribati\nCountry, North Korea\nCountry, South Korea\nCountry, Kuwait\nCountry, Kyrgyzstan\nCountry, Laos\nCountry, Latvia\nCountry, Lebanon\nCountry, Lesotho\nCountry, Liberia\nCountry, Libya\nCountry, Liechtenstein\nCountry, Lithuania\nCountry, Luxembourg\nCountry, Macedonia\nCountry, Madagascar\nCountry, Malawi\nCountry, Malaysia\nCountry, Maldives\nCountry, Mali\nCountry, Malta\nCountry, Marshall Islands\nCountry, Mauritania\nCountry, Mauritius\nCountry, Mexico\nCountry, Micronesia\nCountry, Moldova\nCountry, Monaco\nCountry, Mongolia\nCountry, Morocco\nCountry, Mozambique\nCountry, Namibia\nCountry, Nauru\nCountry, Nepal\nCountry, Netherlands\nCountry, New Zealand\nCountry, Nicaragua\nCountry, Niger\nCountry, Nigeria\nCountry, Norway\nCountry, Oman\nCountry, Pakistan\nCountry, Panama\nCountry, Papua New Guinea\nCountry, Paraguay\nCountry, Peru\nCountry, Philippines\nCountry, Poland\nCountry, Portugal\nCountry, Qatar\nCountry, Romania\nCountry, Russia\nCountry, Rwanda\nCountry, Samoa\nCountry, San Marino\nCountry, Sao Tome\nCountry, Saudi Arabia\nCountry, Senegal\nCountry, Serbia and Montenegro\nCountry, Seychelles\nCountry, Sierra Leone\nCountry, Singapore\nCountry, Slovakia\nCountry, Slovenia\nCountry, Solomon Islands\nCountry, Somalia\nCountry, South Africa\nCountry, Spain\nCountry, Sri Lanka\nCountry, Sudan\nCountry, Suriname\nCountry, Swaziland\nCountry, Sweden\nCountry, Switzerland\nCountry, Syria\nCountry, Taiwan\nCountry, Tajikistan\nCountry, Tanzania\nCountry, Thailand\nCountry, Togo\nCountry, Tonga\nCountry, Trinidad and Tobago\nCountry, Tunisia\nCountry, Turkey\nCountry, Turkmenistan\nCountry, Uganda\nCountry, Ukraine\nCountry, United Arab Emirates\nCountry, United Kingdom\nCountry, United States\nCountry, Uruguay\nCountry, Uzbekistan\nCountry, Vanuatu\nCountry, Venezuela\nCountry, Vietnam\nCountry, Yemen\nCountry, Zambia\nCountry, Zimbabwe',NULL,'No','Setup Masters',NULL,NULL,'',NULL,NULL,'',NULL,'2010-11-29 12:02:02',NULL),('Stock','2011-07-06 14:35:16','2012-03-01 11:15:56','Administrator','Administrator',0,NULL,NULL,NULL,1,'Stock','DocType Label, QA Inspection Report',NULL,'No','Stock',NULL,'Material Management','Stock.gif',7,NULL,NULL,'No',NULL,NULL),('Support','2011-07-06 14:35:16','2011-07-06 14:35:17','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support','DocType Label, Ticket',NULL,'No','Support',NULL,'Manage maintenance quotes, orders, schedule etc.','Maintenance.gif',8,NULL,NULL,'No',NULL,NULL),('System','2010-08-08 17:35:42','2010-09-25 00:00:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'System','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'2010-12-13 11:15:57',NULL),('Utilities','2011-07-06 14:35:17','2011-07-06 14:35:17','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Utilities',NULL,NULL,'No','Utilities',NULL,NULL,NULL,NULL,NULL,NULL,'No',NULL,NULL),('Website','2012-02-13 19:12:21','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Website',NULL,NULL,'No','Website',NULL,NULL,NULL,NULL,NULL,NULL,'No',NULL,NULL); -/*!40000 ALTER TABLE `tabModule Def` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabMulti Ledger Report Detail` --- - -DROP TABLE IF EXISTS `tabMulti Ledger Report Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabMulti Ledger Report Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `account` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabMulti Ledger Report Detail` --- - -LOCK TABLES `tabMulti Ledger Report Detail` WRITE; -/*!40000 ALTER TABLE `tabMulti Ledger Report Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabMulti Ledger Report Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabNaming Series Options` --- - -DROP TABLE IF EXISTS `tabNaming Series Options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabNaming Series Options` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `doc_type` varchar(180) default NULL, - `series_options` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabNaming Series Options` --- - -LOCK TABLES `tabNaming Series Options` WRITE; -/*!40000 ALTER TABLE `tabNaming Series Options` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabNaming Series Options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabNewsletter` --- - -DROP TABLE IF EXISTS `tabNewsletter`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabNewsletter` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `customer_contacts` int(1) default NULL, - `blog_subscribers` int(1) default NULL, - `contacts` int(1) default NULL, - `naming_series` varchar(180) default 'NL-', - `email_sent` int(1) default NULL, - `leads` int(1) default NULL, - `test_email_id` varchar(180) default NULL, - `active_leads` int(1) default NULL, - `message` text, - `subject` text, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabNewsletter` --- - -LOCK TABLES `tabNewsletter` WRITE; -/*!40000 ALTER TABLE `tabNewsletter` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabNewsletter` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabOpportunity Item` --- - -DROP TABLE IF EXISTS `tabOpportunity Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabOpportunity Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` text, - `qty` decimal(18,6) default NULL, - `uom` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `basic_rate` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabOpportunity Item` --- - -LOCK TABLES `tabOpportunity Item` WRITE; -/*!40000 ALTER TABLE `tabOpportunity Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabOpportunity Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabOpportunity` --- - -DROP TABLE IF EXISTS `tabOpportunity`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabOpportunity` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default 'ENQ', - `status` varchar(180) default 'Draft', - `enquiry_from` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `lead` varchar(180) default NULL, - `lead_name` varchar(180) default NULL, - `address` mediumtext, - `contact_person` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `transaction_date` date default NULL, - `enquiry_type` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `source` varchar(180) default NULL, - `campaign` varchar(180) default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `customer_group` varchar(180) default NULL, - `contact_no` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `order_lost_reason` text, - `contact_by` varchar(180) default NULL, - `contact_date` date default NULL, - `last_contact_date` date default NULL, - `contact_date_ref` date default NULL, - `to_discuss` text, - `email_id1` varchar(180) default NULL, - `cc_to` varchar(180) default NULL, - `subject` varchar(180) default NULL, - `message` mediumtext, - `sms_message` mediumtext, - `test_field` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `address_display` text, - `contact_display` text, - `customer_address` varchar(180) default NULL, - `contact_email` text, - `contact_mobile` text, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `territory` (`territory`), - KEY `company` (`company`), - KEY `fiscal_year` (`fiscal_year`), - KEY `parent` (`parent`), - KEY `customer_group` (`customer_group`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabOpportunity` --- - -LOCK TABLES `tabOpportunity` WRITE; -/*!40000 ALTER TABLE `tabOpportunity` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabOpportunity` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabOther Income Detail` --- - -DROP TABLE IF EXISTS `tabOther Income Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabOther Income Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `particulars2` text, - `under_section2` varchar(180) default NULL, - `max_limit2` decimal(18,6) default NULL, - `actual_amount2` decimal(18,6) default NULL, - `eligible_amount2` decimal(18,6) default NULL, - `modified_amount2` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabOther Income Detail` --- - -LOCK TABLES `tabOther Income Detail` WRITE; -/*!40000 ALTER TABLE `tabOther Income Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabOther Income Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPOS Setting` --- - -DROP TABLE IF EXISTS `tabPOS Setting`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPOS Setting` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `user` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `naming_series` varchar(180) default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `price_list_name` varchar(180) default NULL, - `company` varchar(180) default NULL, - `customer_account` varchar(180) default NULL, - `cash_bank_account` varchar(180) default NULL, - `income_account` varchar(180) default NULL, - `cost_center` varchar(180) default NULL, - `charge` varchar(180) default NULL, - `letter_head` varchar(180) default NULL, - `tc_name` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `warehouse` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPOS Setting` --- - -LOCK TABLES `tabPOS Setting` WRITE; -/*!40000 ALTER TABLE `tabPOS Setting` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPOS Setting` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPacking Slip Item` --- - -DROP TABLE IF EXISTS `tabPacking Slip Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPacking Slip Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `weight_uom` varchar(180) default NULL, - `page_break` int(1) default NULL, - `item_name` varchar(180) default NULL, - `net_weight` decimal(18,6) default NULL, - `qty` decimal(18,6) default NULL, - `stock_uom` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPacking Slip Item` --- - -LOCK TABLES `tabPacking Slip Item` WRITE; -/*!40000 ALTER TABLE `tabPacking Slip Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPacking Slip Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPacking Slip` --- - -DROP TABLE IF EXISTS `tabPacking Slip`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPacking Slip` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `to_case_no` varchar(180) default NULL, - `from_case_no` varchar(180) default NULL, - `naming_series` varchar(180) default NULL, - `net_weight_uom` varchar(180) default NULL, - `gross_weight_uom` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `delivery_note` varchar(180) default NULL, - `net_weight_pkg` decimal(18,6) default NULL, - `gross_weight_pkg` decimal(18,6) default NULL, - `amendment_date` date default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPacking Slip` --- - -LOCK TABLES `tabPacking Slip` WRITE; -/*!40000 ALTER TABLE `tabPacking Slip` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPacking Slip` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPage Role` --- - -DROP TABLE IF EXISTS `tabPage Role`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPage Role` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `role` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPage Role` --- - -LOCK TABLES `tabPage Role` WRITE; -/*!40000 ALTER TABLE `tabPage Role` DISABLE KEYS */; -INSERT INTO `tabPage Role` VALUES ('PR000235','2010-12-14 10:33:09','2010-12-14 10:33:09','Administrator','Administrator',0,'My Company','roles','Page',1,'Administrator'),('PR000236','2010-12-14 10:33:09','2010-12-14 10:33:09','Administrator','nabin@webnotestech.com',0,'My Company','roles','Page',2,'All'),('PR000273','2012-02-13 19:12:21','2012-02-13 19:12:21','Administrator','Administrator',0,'home','roles','Page',NULL,'Guest'),('PR000311','2012-05-08 11:38:47','2012-05-08 11:38:47','Administrator','Administrator',0,'unsubscribe','roles','Page',1,'Guest'),('PR000312','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'selling-home','roles','Page',1,'All'),('PR000313','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Sales Browser','roles','Page',1,'Sales Master Manager'),('PR000314','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','Administrator',0,'Sales Browser','roles','Page',2,'Material Master Manager'),('PR000315','2012-10-02 13:18:11','2012-10-02 13:18:11','Administrator','harshada@webnotestech.com',0,'Sales Dashboard','roles','Page',1,'Sales Manager'),('PR000316','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'dashboard','roles','Page',1,'System Manager'),('PR000317','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'dashboard','roles','Page',2,'Accounts Manager'),('PR000318','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',1,'Administrator'),('PR000319','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',2,'Sales Master Manager'),('PR000320','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',3,'Material Master Manager'),('PR000321','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',4,'Purchase Master Manager'),('PR000322','2012-10-02 13:18:13','2012-10-02 13:18:13','Administrator','Administrator',0,'Trash','roles','Page',5,'Accounts Manager'),('PR000323','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Financial Statements','roles','Page',1,'Accounts User'),('PR000324','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Financial Statements','roles','Page',2,'Administrator'),('PR000325','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Financial Statements','roles','Page',3,'Accounts Manager'),('PR000326','2012-10-02 13:18:32','2012-10-02 13:18:32','Administrator','Administrator',0,'Accounts Browser','roles','Page',1,'Accounts User'),('PR000327','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','saumil@webnotestech.com',0,'Permission Engine','roles','Page',1,'System Manager'),('PR000328','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','ashwini@webnotestech.com',0,'Webforms','roles','Page',1,'Administrator'),('PR000329','2012-10-02 13:18:38','2012-10-02 13:18:38','Administrator','ashwini@webnotestech.com',0,'Webforms','roles','Page',2,'System Manager'); -/*!40000 ALTER TABLE `tabPage Role` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPage` --- - -DROP TABLE IF EXISTS `tabPage`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPage` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `content` text, - `script` text, - `show_in_menu` int(1) default NULL, - `parent_node` varchar(180) default NULL, - `icon` varchar(180) default NULL, - `menu_index` int(11) default NULL, - `module` varchar(180) default NULL, - `standard` varchar(180) default NULL, - `style` text, - `static_content` mediumtext, - `page_name` varchar(180) default NULL, - `title` varchar(180) default NULL, - `web_page` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `standard` (`standard`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPage` --- - -LOCK TABLES `tabPage` WRITE; -/*!40000 ALTER TABLE `tabPage` DISABLE KEYS */; -INSERT INTO `tabPage` VALUES ('Accounts Browser','2012-10-02 13:18:32','2010-12-29 12:57:23','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Accounts','Yes',NULL,NULL,'Accounts Browser',NULL,NULL,NULL,NULL),('accounts-home','2012-10-02 13:18:32','2012-02-21 13:23:08','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Accounts','Yes',NULL,NULL,'accounts-home','Accounts Home',NULL,NULL,NULL),('activity','2012-10-02 13:18:13','2012-02-29 12:11:46','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'activity','Activity',NULL,NULL,NULL),('attributions','2012-10-02 13:18:13','2012-03-01 12:30:42','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'attributions','Attributions',NULL,NULL,NULL),('billing','2011-08-18 13:32:35','2011-08-18 13:32:35','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Server Tools','Yes',NULL,NULL,'billing',NULL,NULL,NULL,NULL),('buying-home','2012-10-02 13:18:33','2012-02-21 13:22:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Buying','Yes',NULL,NULL,'buying-home','Buying Home',NULL,NULL,NULL),('calendar','2012-10-02 13:18:14','2012-02-24 11:24:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'calendar','Calendar',NULL,NULL,NULL),('dashboard','2012-10-02 13:18:13','2011-08-25 16:22:54','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'Dashboard',NULL,NULL,NULL,NULL),('data-import-tool','2012-10-02 13:18:07','2012-05-10 10:06:00','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Core','Yes',NULL,NULL,'Data Import Tool','Data Import Tool','No',NULL,NULL),('desktop','2012-10-02 13:18:13','2012-02-24 11:37:43','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'desktop','Desktop',NULL,NULL,NULL),('Event Updates','2010-12-14 10:33:09','2010-12-23 11:48:49','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'
    ','var home_link_style = {textDecoration:\'underline\', cursor:\'pointer\'};\n\npscript[\'onload_Event Updates\'] = function() {\n if(user==\'Guest\') {\n loadpage(\'Login Page\');\n return;\n }\n pscript.home_make_body();\n pscript.home_pre_process();\n pscript.home_make_status();\n pscript.home_make_widgets();\n}\n\n\npscript.home_make_body = function() {\n var wrapper = page_body.pages[\'Event Updates\'];\n wrapper.innerHTML = \'\';\n wrapper.head = $a(wrapper, \'div\');\n // body\n wrapper.main_tab = make_table(wrapper,1,2,\'100%\',[500/7 + \'%\',200/7+\'%\']);\n}\n\npscript.home_pre_process = function(wrapper) {\n var wrapper = page_body.pages[\'Event Updates\'];\n var cp = locals[\'Control Panel\'][\'Control Panel\'];\n\n // complete registration\n if(in_list(user_roles,\'System Manager\')) { pscript.complete_registration(); }\n\n // banner\n if(cp.client_name) {\n var banner = $a(wrapper.head, \'div\', \'\', {borderBottom:\'3px solid #444\', paddingBottom:\'4px\'})\n banner.innerHTML = cp.client_name;\n }\n\n // complete registration\n if(in_list(user_roles,\'System Manager\')) {\n pscript.complete_registration();\n }\n}\n\n// Widgets\n// ==================================\n\npscript.home_make_widgets = function() {\n var wrapper = page_body.pages[\'Event Updates\'];\n var cell = $td(wrapper.main_tab, 0, 1);\n $y(cell,{padding:\'0px 8px\'});\n\n new HomeCalendar(new HomeWidget(cell, \'Calendar\', \'Event\'));\n \n // calendar link\n var div = $a(cell,\'div\',\'\',{margin:\'4px\',marginBottom:\'16px\',textDecoration:\'underline\',cursor:\'pointer\',color:\'#888\'})\n div.innerHTML = \'View Full Calendar\';\n div.onclick = function() { loadpage(\'_calendar\'); }\n \n new HomeToDo(new HomeWidget(cell, \'To Do\', \'Item\'));\n new FeedList($td(wrapper.main_tab, 0, 0));\n}\n\nHomeWidget = function(parent, heading, item) {\n var me = this; this.item = item;\n \n this.wrapper = $a(parent, \'div\', \'\', {border:\'2px solid #CCC\'});\n $(this.wrapper)\n .css(\'-moz-border-radius\',\'5px\').css(\'-webkit-border-radius\',\'5px\')\n \n // head\n this.head = $a(this.wrapper,\'div\',\'\',{backgroundColor:\'#CCC\', fontSize:\'14px\', fontWeight:\'bold\'});\n this.head.tab = make_table($a(this.head,\'div\'), 1, 2, \'100%\', [\'90%\',\'10%\'], {padding:\'4px\', verticalAlign:\'middle\'})\n $td(this.head.tab,0,0).innerHTML = heading;\n this.working_img = $a($td(this.head.tab,0,0),\'img\',\'\',{marginLeft:\'8px\'});\n this.working_img.src = \'images/ui/button-load.gif\';\n \n // refresh\n this.refresh_btn = $a($td(this.head.tab,0,1),\'div\',\'wn-icon \' + \'ic-playback_reload\', {cursor:\'pointer\'});\n this.refresh_btn.onclick = function() { me.refresh(); }\n \n // body\n this.body = $a(this.wrapper,\'div\',\'\',{padding:\'0px 4px 16px 4px\'});\n this.footer = $a(this.wrapper,\'div\',\'\',{padding:\'4px\',paddingBottom:\'8px\'});\n \n // add button\n this.add_btn = $btn(this.footer,\'+ Add \' + item,function(){me.add()});\n}\n\nHomeWidget.prototype.refresh = function() {\n var me = this;\n $di(this.working_img);\n \n var callback = function(r,rt) {\n $dh(me.working_img);\n me.body.innerHTML = \'\';\n\n // prepare (for calendar?)\n if(me.decorator.setup_body) me.decorator.setup_body();\n\n for(var i=0;iDeleting...\';\n var callback = function(r,rt) {\n $(me.wrapper).slideUp();\n }\n $c_obj(\'Home Control\',this.widget.delete_method, this.widget.get_item_id(this.det) ,callback);\n \n}\n\n// Calendar\n// ===========================\n\nHomeCalendar = function(widget) {\n this.widget = widget;\n\n // methods\n this.widget.get_list_method = \'get_events_list\'\n this.widget.delete_method = \'delete_event\';\n this.widget.get_item_id = function(det) { return det.name; }\n\n this.widget.decorator = this;\n\n var hl = [];\n for(var i=0; i<24; i++) {\n hl.push(((i+8) % 24) + \':00\');\n }\n\n this.widget.dialog_fields = [\n [\'Date\',\'Event Date\']\n ,[\'Select\',\'Time\',\'\',hl]\n ,[\'Text\',\'Description\']\n ,[\'Button\',\'Save\']\n ];\n\n this.widget.refresh();\n}\n\n// create calendar grid\n// --------------------\nHomeCalendar.prototype.setup_body = function() {\n var w = this.widget;\n w.date_blocks = {};\n var td = new Date();\n for(var i=0; i<7; i++) {\n var dt = dateutil.obj_to_str(dateutil.add_days(td,i));\n var div = $a(w.body, \'div\', \'\', {padding:\'4px 0px\', borderBottom:\'1px solid #AAA\',display:\'none\'});\n div.head = $a(div, \'div\', \'\', {fontWeight:\'bold\', paddingBottom:\'4px\'});\n div.head.innerHTML = (i==0 ? \'Today\' : (i==1 ? \'Tomorrow\' : dateutil.str_to_user(dt)))\n w.date_blocks[dt] = div;\n }\n}\n\nHomeCalendar.prototype.get_item_parent = function(det) {\n var d = this.widget.date_blocks[det.event_date]; $ds(d);\n return d;\n}\n\nHomeCalendar.prototype.render_item = function(item, det) {\n $td(item.tab, 0, 0).innerHTML = \'\' + det.event_hour + \': \' + det.description;\n if(det.ref_type && det.ref_name) {\n var span=$a($a($td(item.tab, 0, 0),\'div\'),\'span\',\'link_type\');\n span.innerHTML = det.ref_name; span.dt = det.ref_type;\n span.onclick = function() { loaddoc(this.ref_type, this.innerHTML); }\n }\n}\n\nHomeCalendar.prototype.clear_dialog = function() {\n this.set_dialog_values({event_date:get_today(), event_hour:\'8:00\', description:\'\'});\n}\n\nHomeCalendar.prototype.set_dialog_values = function(det) {\n var d = this.widget.dialog;\n d.widgets[\'Event Date\'].value = dateutil.str_to_user(det.event_date);\n d.widgets[\'Time\'].value = cint(det.event_hour.split(\':\')) + \':00\';\n d.widgets[\'Description\'].value = det.description;\n d.det = det;\n}\n\nHomeCalendar.prototype.save = function(btn) {\n var d = this.widget.dialog;\n var me = this;\n d.det.event_date = dateutil.user_to_str(d.widgets[\'Event Date\'].value);\n d.det.event_hour = d.widgets[\'Time\'].value;\n d.det.description = d.widgets[\'Description\'].value;\n d.det.owner = user;\n if(!d.det.event_type)\n d.det.event_type = \'Private\';\n \n var callback = function(r,rt) {\n btn.done_working();\n me.widget.dialog.hide();\n me.widget.refresh();\n }\n $c_obj(\'Home Control\',\'edit_event\',JSON.stringify(d.det),callback); \n}\n\n// Todo\n// ===========================\n\nHomeToDo = function(widget) {\n this.widget = widget;\n\n // methods\n this.widget.get_list_method = \'get_todo_list\';\n this.widget.delete_method = \'remove_todo_item\';\n this.widget.get_item_id = function(det) { return det[0]; }\n\n this.widget.decorator = this;\n\n this.widget.dialog_fields = [\n [\'Date\',\'Date\']\n ,[\'Text\',\'Description\']\n ,[\'Check\',\'Completed\']\n ,[\'Select\',\'Priority\',\'\',[\'Medium\',\'High\',\'Low\']]\n ,[\'Button\',\'Save\']\n ];\n\n this.widget.refresh(); \n}\n\nHomeToDo.prototype.render_item = function(item, det) {\n \n // priority tag\n var div = $a($td(item.tab, 0, 0), \'div\', \'\', {margin:\'4px 0px\'});\n var span = $a(div, \'span\', \'\', {padding:\'2px\',color:\'#FFF\',fontSize:\'10px\'\n ,backgroundColor:(det[3]==\'Low\' ? \'#888\' : (det[3]==\'High\' ? \'#EDA857\' : \'#687FD3\'))});\n \n $(span).css(\'-moz-border-radius\',\'3px\').css(\'-webkit-border-radius\',\'3px\');\n span.innerHTML = det[3];\n\n // text\n var span = $a(div, \'span\', \'\', {paddingLeft:\'8px\'});\n span.innerHTML = det[1];\n if(det[4]) $y(span,{textDecoration:\'line-through\'});\n}\n\nHomeToDo.prototype.clear_dialog = function() {\n this.set_dialog_values([\'\',\'\',get_today(),\'Medium\',0]);\n}\n\nHomeToDo.prototype.set_dialog_values = function(det) {\n var d = this.widget.dialog;\n d.widgets[\'Date\'].value = dateutil.str_to_user(det[2]);\n d.widgets[\'Priority\'].value = det[3];\n d.widgets[\'Description\'].value = det[1];\n d.widgets[\'Completed\'].checked = det[4];\n d.det = det;\n}\n\nHomeToDo.prototype.save = function(btn) {\n var d = this.widget.dialog;\n var me = this;\n \n var det = {}\n det.date = dateutil.user_to_str(d.widgets[\'Date\'].value);\n det.priority = d.widgets[\'Priority\'].value;\n det.description = d.widgets[\'Description\'].value;\n det.name = d.det ? d.det[0] : \'\';\n det.checked = (d.widgets[\'Completed\'].checked ? 1 : 0);\n\n \n var callback = function(r,rt) {\n btn.done_working();\n me.widget.dialog.hide();\n me.widget.refresh();\n }\n $c_obj(\'Home Control\',\'add_todo_item\',JSON.stringify(det),callback); \n}\n\n// Feed\n// ==================================\n\n\nFeedList = function(parent) {\n // settings\n this.auto_feed_off = 0;\n \n this.wrapper = $a(parent, \'div\');\n this.make_head();\n this.make_status_input();\n this.make_list();\n this.list.run();\n}\n\nFeedList.prototype.make_head = function() {\n var me = this;\n this.head = $a(this.wrapper, \'div\', \'\', {padding:\'4px\',backgroundColor:\'#CCC\',marginBottom:\'8px\',fontSize:\'14px\'});\n $br(this.head,\'3px\');\n \n var span = $a(this.head,\'span\',\'\', {padding:\'0px 8px\'}); span.innerHTML = \'Recent Updates\'.bold();\n\n // all\n var span = $a(this.head,\'span\',\'\',home_link_style); $y(span,{borderLeft:\'1px solid #888\',padding:\'0px 8px\',});\n span.innerHTML = \'All\'; span.onclick = function() { me.auto_feed_off = 0; me.list.run() }\n\n // comments\n var span = $a(this.head,\'span\',\'\',home_link_style); $y(span,{borderLeft:\'1px solid #888\',padding:\'0px 8px\',});\n span.innerHTML = \'Comments\'; span.onclick = function() { me.auto_feed_off = 1; me.list.run() }\n\n}\n\nFeedList.prototype.make_status_input = function() {\n var me = this;\n this.status_area = $a(this.wrapper, \'div\', \'\', {padding:\'4px\'});\n\n this.status_inp = $a(this.status_area, \'input\', \'\', {fontSize:\'14px\', width:\'50%\'});\n this.status_inp.set_empty = function() {\n this.value = \'Share something...\'; $fg(this,\'#888\');\n $dh(this.status_btn);\n }\n this.status_inp.onfocus = function() {\n $fg(this,\'#000\');\n if(this.value==\'Share something...\')this.value = \'\';\n $ds(me.status_btn);\n }\n this.status_inp.onchange = function() {\n if(!this.value) this.set_empty();\n }\n this.status_inp.set_empty();\n this.status_btn = $btn(this.status_area, \'Share\', function() { me.share_status(); }, {fontSize:\'14px\', marginLeft:\'8px\'}, 0, 1);\n $y(this.status_btn.loading_img, {marginBottom:\'0px\'});\n\n $dh(this.status_btn);\n}\n\nFeedList.prototype.share_status = function() {\n var me = this;\n if(!this.status_inp.value) return;\n var callback = function() {\n me.status_inp.set_empty();\n me.status_btn.done_working();\n me.list.run();\n }\n this.status_btn.set_working();\n $c_obj(\'Feed Control\', \'add_feed\', this.status_inp.value, callback);\n}\n\nFeedList.prototype.make_list = function() {\n var l = new Listing(\'Feed List\',1);\n var me = this;\n\n // style\n l.colwidths = [\'100%\']; l.page_len = 20; \n l.opts.alt_cell_style = {backgroundColor:\'#FFF\'}; l.opts.no_border = 1; l.keyword = \'feeds\';\n \n // build query\n l.get_query = function(){\n var condn = me.auto_feed_off ? \' and (t1.doc_name is null or t1.doc_name =\"\")\' : \'\';\n this.query = repl(\'select t1.name, t1.feed, t1.feed_owner, t1.can_view, t1.doc_name, t1.doc_label, t1.doc_no, t1.action, t1.latest_comments, t1.total_comments, t1.modified, concat_ws(\" \", t2.first_name, t2.last_name),t2.social_points, t2.social_badge from tabFeed t1, tabProfile t2 where t1.feed_owner = t2.name%(condn)s order by t1.modified desc\',{\'condn\':condn});\n this.query_max = repl(\'select count(t1.name) from tabFeed t1, tabProfile t2 where t1.feed_owner = t2.name%(condn)s\',{\'condn\':condn});\n }\n \n // render list ui\n l.show_cell = function(cell,ri,ci,d){ me.render_feed(cell,ri,ci,d); }\n \n // onrun\n l.onrun = function(){ $(me.wrapper).fadeIn(); if(me.after_run) me.after_run(); }\n \n // make\n l.make($a(this.wrapper,\'div\'));\n $dh(l.btn_area);\n\n this.list = l;\n}\n\nFeedList.prototype.render_feed = function(cell,ri,ci,d) {\n new FeedItem(cell, d[ri], this);\n}\n\n// Item\n// -------------------------------\n\nFeedItem = function(cell, det, feedlist) {\n this.det = det; this.feedlist = feedlist;\n this.wrapper = $a(cell,\'div\',\'\',{marginBottom:\'4px\'});\n this.tab = make_table(this.wrapper, 1, 2, \'100%\', [(100/6)+\'%\', (500/7)+\'%\']);\n\n // image\n $y($td(this.tab,0,0),{textAlign:\'right\',paddingRight:\'4px\'});\n this.img = $a($td(this.tab,0,0), \'img\',\'\',{width:\'40px\'});\n set_user_img(this.img, det[2]);\n \n // text\n this.text_area = $a($td(this.tab,0,1), \'div\');\n if(det[4]) {\n // reference\n this.render_references(this.text_area, det);\n } else {\n this.text_area.innerHTML = \'\' + det[11] + \' (\' + det[12] + \'): \' + det[1];\n }\n \n if(feedlist) {\n this.make_comment_toolbar();\n this.render_comments();\n }\n}\nFeedItem.prototype.render_references = function(div, det) {\n // name\n div.innerHTML = \'\' + det[11] + \' (\' + det[12] + \'): has \' + det[7] + \' \';\n var l = det[6].split(\',\');\n \n // doctype\n var span = $a(div, \'span\'); span.innerHTML = det[5] + \' \';\n\n // records\n for(var i=0;i<(l.length > 5 ? 5 : l.length);i++) {\n if(i>0) {\n var comma_span = $a(div, \'span\'); comma_span.innerHTML = \', \'; //comma-space\n }\n var span = $a(div, \'span\', \'link_type\');\n span.innerHTML = l[i]; span.dt = det[4]; span.dn = l[i];\n span.onclick = function() { loaddoc(this.dt, this.dn); }\n }\n if(l.length>5) {\n var span = $a(div, \'span\');\n span.innerHTML += \' and \' + (l.length-5) + \' more record\' + (l.length > 6 ? \'s\': \'\');\n }\n}\n\n\nFeedItem.prototype.render_comments = function() {\n // render existing comments / in reverse order\n var cl = eval(this.det[8]);\n if(cl) {\n for(var i=0; i1 ? \'s\' : \'\');\n \n // link for all comments\n if(this.det[9]>2) {\n var span = $a(this.tbar, \'span\', \'\', {paddingRight:\'8px\', textDecoration:\'underline\', cursor:\'pointer\'});\n span.innerHTML = \'Show All\'; span.onclick = function() { me.show_all_comments(); }\n }\n }\n\n // add comment link\n var span = $a(this.tbar, \'span\', \'\', {paddingRight:\'8px\', textDecoration:\'underline\', cursor:\'pointer\'});\n span.innerHTML = \'Add Comment\';\n span.onclick = function() { me.add_comment(); }\n}\n\nFeedItem.prototype.show_all_comments = function() {\n var me = this;\n \n if(!me.all_comments_dialog){\n var d = new Dialog(500,400,\'All Comments\');\n d.make_body([[\'HTML\',\'cmt_body\']]);\n me.all_comments_dialog = d;\n }\n\n var d = me.all_comments_dialog;\n \n var callback = function(r,rt){\n var lst = r.message;\n \n if(lst && lst.length){\n d.widgets[\'cmt_body\'].innerHTML = \'\';\n var parent = $a(d.widgets[\'cmt_body\'],\'div\');\n\n if(lst.length > 5) $y(parent,{overflow:\'auto\', width:\'100%\', height:\'300px\'})\n \n // render the comments\n for(i=lst.length-1; i>=0; i--){\n new FeedComment(parent, lst[i]);\n }\n }\n d.show();\n }\n \n $c_obj(\'Feed Control\',\'show_all_comments\',me.det[0],callback);\n\n}\n\nFeedItem.prototype.add_comment = function() {\n var me = this;\n if(!this.comment_dialog) {\n var d = new Dialog(360,360,\'Add a Comment\');\n d.make_body([[\'Text\',\'Comment\'], [\'Button\',\'Save\']]);\n d.onshow = function() {\n d.widgets[\'Comment\'].value = \'\';\n }\n d.widgets[\'Save\'].onclick = function() {\n var c = d.widgets[\'Comment\'].value;\n if(!c) { msgprint(\"You must write a comment first!\"); return; }\n\n var args = {\n cmt:c, cmt_by: user, cmt_by_fullname: user_fullname, dt: \'Feed\', dn: me.det[0]\n };\n \n var callback = function(r,rt){\n d.hide();\n me.feedlist.list.run();\n }\n $c_obj(\'Feed Control\', \'add_comment\', JSON.stringify(args),callback); \n }\n this.comment_dialog = d;\n }\n this.comment_dialog.show();\n}\n\n// Comment\n// -------------------------------\n\nFeedComment = function(parent, det) {\n this.wrapper = $a(parent, \'div\', \'\', {margin:\'4px 0px\', color:\'#888\', fontSize:\'11px\'});\n this.tab = make_table($a(this.wrapper,\'div\'), 1, 2, \'100%\', [null,\'20px\']);\n $td(this.tab, 0, 0).innerHTML = \'\' + det[3] + \': \' + det[1];\n \n // if owner, then delete button\n if(det[2]==user) {\n this.del_btn = $a($td(this.tab,0,1),\'div\',\'wn-icon \' + \'ic-trash\', {cursor:\'pointer\'});\n this.del_btn.onclick = function() {\n $c_obj(\'\');\n }\n }\n}\n\n// Status bar\n// ==================================\n\npscript.home_make_status = function() {\n var wrapper = page_body.pages[\'Event Updates\'];\n\n var div = $a(wrapper.head,\'div\',\'\',{borderBottom:\'1px solid #AAA\', marginBottom:\'8px\'});\n var tab = make_table(div, 1, 3, null, [], {padding:\'4px 6px\', cursor:\'pointer\', color:\'#666\', textDecoration:\'underline\'});\n \n // messages\n $td(tab,0,0).innerHTML = \'Messages...\';\n $td(tab,0,0).onclick = function() { loadpage(\'Messages\') }\n \n // users\n $td(tab,0,1).innerHTML = \'Online Users...\';\n $td(tab,0,1).onclick = function() { loadpage(\'My Company\') }\n\n // get values\n $c_obj(\'Home Control\', \'get_status_details\', user,\n function(r,rt) { \n $td(tab,0,0).innerHTML = \'Messages (\' + r.message.unread + \')\'; \n $td(tab,0,1).innerHTML = r.message.user_count + \' user\'+(r.message.user_count >1 ? \'s\': \'\')+\' online\';\n });\n \n // wip montior\n $td(tab,0,2).innerHTML = \'Work In Progress\';\n $td(tab,0,2).onclick = function() { loadpage(\'WIP Monitor\') }\n $y($td(tab,0,2),{borderRight:\'0px\'}); \n}\n\n// complete my company registration\n// --------------------------------\npscript.complete_registration = function()\n{\n var reg_callback = function(r, rt){\n if(r.message == \'No\'){\n var d = new Dialog(400, 200, \"Please Complete Your Registration\");\n if(user != \'Administrator\'){\n d.no_cancel(); // Hide close image\n $dh(page_body.wntoolbar.wrapper);\n }\n $($a(d.body,\'div\',\'\', {margin:\'8px\', color:\'#888\'})).html(\'Company Name : \'+locals[\'Control Panel\'][\'Control Panel\'].company_name); \n\n d.make_body(\n [\n [\'Data\',\'Company Abbreviation\'],\n [\'Select\',\'Fiscal Year Start Date\'],\n [\'Select\',\'Default Currency\'],\n [\'Button\',\'Save\'],\n ]);\n\n //d.widgets[\'Save\'].disabled = true; // disable Save button\n pscript.make_dialog_field(d);\n\n // submit details\n d.widgets[\'Save\'].onclick = function()\n {\n flag = pscript.validate_fields(d);\n if(flag)\n {\n var args = [\n locals[\'Control Panel\'][\'Control Panel\'].company_name,\n d.widgets[\'Company Abbreviation\'].value,\n d.widgets[\'Fiscal Year Start Date\'].value,\n d.widgets[\'Default Currency\'].value\n ];\n \n $c_obj(\'Setup Control\',\'setup_account\',JSON.stringify(args),function(r, rt){\n sys_defaults = r.message;\n d.hide();\n $ds(page_body.wntoolbar.wrapper);\n });\n }\n }\n d.show();\n }\n }\n $c_obj(\'Home Control\',\'registration_complete\',\'\',reg_callback);\n}\n\n// complete my company registration\n// --------------------------------\npscript.complete_registration = function()\n{\n var reg_callback = function(r, rt){\n if(r.message == \'No\'){\n var d = new Dialog(400, 200, \"Please Complete Your Registration\");\n if(user != \'Administrator\'){\n d.no_cancel(); // Hide close image\n $dh(page_body.wntoolbar.wrapper);\n }\n $($a(d.body,\'div\',\'\', {margin:\'8px\', color:\'#888\'})).html(\'Company Name : \'+locals[\'Control Panel\'][\'Control Panel\'].company_name); \n\n d.make_body(\n [\n [\'Data\',\'Company Abbreviation\'],\n [\'Select\',\'Fiscal Year Start Date\'],\n [\'Select\',\'Default Currency\'],\n [\'Button\',\'Save\'],\n ]);\n\n //d.widgets[\'Save\'].disabled = true; // disable Save button\n pscript.make_dialog_field(d);\n\n // submit details\n d.widgets[\'Save\'].onclick = function()\n {\n flag = pscript.validate_fields(d);\n if(flag)\n {\n var args = [\n locals[\'Control Panel\'][\'Control Panel\'].company_name,\n d.widgets[\'Company Abbreviation\'].value,\n d.widgets[\'Fiscal Year Start Date\'].value,\n d.widgets[\'Default Currency\'].value\n ];\n \n $c_obj(\'Setup Control\',\'setup_account\',JSON.stringify(args),function(r, rt){\n sys_defaults = r.message;\n d.hide();\n $ds(page_body.wntoolbar.wrapper);\n });\n }\n }\n d.show();\n }\n }\n $c_obj(\'Home Control\',\'registration_complete\',\'\',reg_callback);\n}\n\n// make dialog fields\n// ------------------\npscript.make_dialog_field = function(d)\n{\n // fiscal year format \n fisc_format = d.widgets[\'Fiscal Year Start Date\'];\n add_sel_options(fisc_format, [\'\', \'1st Jan\', \'1st Apr\', \'1st Jul\', \'1st Oct\']);\n \n // default currency\n currency_list = [\'\', \'AED\', \'AFN\', \'ALL\', \'AMD\', \'ANG\', \'AOA\', \'ARS\', \'AUD\', \'AZN\', \'BAM\', \'BBD\', \'BDT\', \'BGN\', \'BHD\', \'BIF\', \'BMD\', \'BND\', \'BOB\', \'BRL\', \'BSD\', \'BTN\', \'BYR\', \'BZD\', \'CAD\', \'CDF\', \'CFA\', \'CFP\', \'CHF\', \'CLP\', \'CNY\', \'COP\', \'CRC\', \'CUC\', \'CZK\', \'DJF\', \'DKK\', \'DOP\', \'DZD\', \'EEK\', \'EGP\', \'ERN\', \'ETB\', \'EUR\', \'EURO\', \'FJD\', \'FKP\', \'FMG\', \'GBP\', \'GEL\', \'GHS\', \'GIP\', \'GMD\', \'GNF\', \'GQE\', \'GTQ\', \'GYD\', \'HKD\', \'HNL\', \'HRK\', \'HTG\', \'HUF\', \'IDR\', \'ILS\', \'INR\', \'IQD\', \'IRR\', \'ISK\', \'JMD\', \'JOD\', \'JPY\', \'KES\', \'KGS\', \'KHR\', \'KMF\', \'KPW\', \'KRW\', \'KWD\', \'KYD\', \'KZT\', \'LAK\', \'LBP\', \'LKR\', \'LRD\', \'LSL\', \'LTL\', \'LVL\', \'LYD\', \'MAD\', \'MDL\', \'MGA\', \'MKD\', \'MMK\', \'MNT\', \'MOP\', \'MRO\', \'MUR\', \'MVR\', \'MWK\', \'MXN\', \'MYR\', \'MZM\', \'NAD\', \'NGN\', \'NIO\', \'NOK\', \'NPR\', \'NRs\', \'NZD\', \'OMR\', \'PAB\', \'PEN\', \'PGK\', \'PHP\', \'PKR\', \'PLN\', \'PYG\', \'QAR\', \'RMB\', \'RON\', \'RSD\', \'RUB\', \'RWF\', \'SAR\', \'SCR\', \'SDG\', \'SDR\', \'SEK\', \'SGD\', \'SHP\', \'SOS\', \'SRD\', \'STD\', \'SYP\', \'SZL\', \'THB\', \'TJS\', \'TMT\', \'TND\', \'TRY\', \'TTD\', \'TWD\', \'TZS\', \'UAE\', \'UAH\', \'UGX\', \'USD\', \'USh\', \'UYU\', \'UZS\', \'VEB\', \'VND\', \'VUV\', \'WST\', \'XAF\', \'XCD\', \'XDR\', \'XOF\', \'XPF\', \'YEN\', \'YER\', \'YTL\', \'ZAR\', \'ZMK\', \'ZWR\'];\n currency = d.widgets[\'Default Currency\'];\n add_sel_options(currency, currency_list);\n}\n\n\n// validate fields\n// ---------------\npscript.validate_fields = function(d)\n{\n var lst = [\'Company Abbreviation\', \'Fiscal Year Start Date\', \'Default Currency\'];\n var msg = \'Please enter the following fields\';\n var flag = 1;\n for(var i=0; iLoading... \'\n var me=this;\n\n d.onshow = function() {\n if(!me.setup_done)\n me.get_all_roles(me.profile_id);\n }\n}\n\n// make role body\nRoleObj.prototype.make_role_body = function(id){\n var me = this;\n var d = this.dialog;\n this.role_div = $a(d.widgets[\'roles\'],\'div\');\n \n this.head = $a(this.role_div,\'div\',\'\',{marginLeft:\'4px\', marginBottom:\'4px\',fontWeight:\'bold\'});\n this.body = $a(this.role_div,\'div\');\n this.footer = $a(this.role_div,\'div\');\n \n this.update_btn = $btn(this.footer,\'Update\',function() { me.update_roles(me.profile_id); },{marginRight:\'4px\'},\'\',1); \n}\n\n// get all roles\nRoleObj.prototype.get_all_roles = function(id){\n if(pscript.all_roles) {\n this.make_roles(id);\n return;\n }\n\n var me = this;\n var callback = function(r,rt){\n pscript.all_roles = r.message;\n me.make_roles(id);\n }\n $c_obj(\'Company Control\',\'get_all_roles\',\'\',callback);\n}\n\n// make roles\nRoleObj.prototype.make_roles = function(id){\n var me = this;\n var list = pscript.all_roles;\n me.setup_done = 1;\n me.body.innerHTML = \'\';\n \n var tbl = make_table( me.body, cint(list.length / 2) + 1,4,\'100%\',[\'5%\',\'45%\',\'5%\',\'45%\'],{padding:\'4px\'});\n var in_right = 0; var ridx = 0;\n\n for(i=0;i 1){\n var c = confirm(\"You have unchecked the System Manager role.\\nYou will lose administrative rights and will not be able to set roles.\\n\\nDo you want to continue anyway?\");\n if(!c) return;\n }\n else{\n var c = \"There should be atleast one user with System Manager role.\";\n me.roles_dict[\'System Manager\'].checked = 1;\n }\n }\n me.set_roles(id);\n }\n $c_obj(\'Company Control\',\'get_sm_count\',\'\',callback);\n }\n else{\n me.set_roles(id);\n }\n}\n\n// set roles\nRoleObj.prototype.set_roles = function(id){\n\n var me = this;\n var role_list = [];\n \n for(d in me.roles_dict){\n if(me.roles_dict[d].checked){\n role_list.push(d);\n }\n }\n\n var callback = function(r,rt){\n me.update_btn.done_working();\n me.dialog.hide();\n }\n var arg = {\'usr\':id, \'role_list\':role_list};\n me.update_btn.set_working();\n $c_obj(\'Company Control\',\'update_roles\',docstring(arg), callback);\n\n}\n\n//=============================================\n\n// Remove User Object\n// ---------------------------------------------------------------------------------------------\nRemoveUserObj = function(uid){\n var me = this;\n\n var callback = function(r, rt){\n if(r.message){ \n var d = new Dialog(400,100,\'Remove Users\');\n \n d.make_body([[\'HTML\', \'remove_user_div\']]);\n me.dialog = d;\n var src = \'https://\'+r.message+\'/index.cgi?usr=\'+uid+\'&acc=\'+locals[\'Control Panel\'][\'Control Panel\'].account_id+\'#Page/Remove User\';\n $a(d.widgets[\'remove_user_div\'],\'div\').innerHTML = \'\';\n me.dialog.show();\n me.dialog.onhide = function(){global_search_object.search();}\n }\n else{\n msgprint(\"To use this feature for first time please logout and login again in your system\");\n return;\n }\n }\n $c_obj(\'Company Control\',\'get_login_url\',\'\',callback);\n}\n\n// Switch user Obj\n// -------------------\nSwitchUserObj = function(){\n var me = this;\n var callback = function(r, rt){\n if(r.message){ \n var d = new Dialog(450,200,\'Switch User\');\n d.make_body([[\'HTML\', \'switch_user_div\']]);\n me.dialog = d;\n var src = \'https://\'+r.message+\'/index.cgi?acc=\'+locals[\'Control Panel\'][\'Control Panel\'].account_id+\'#Page/Switch User\';\n $a(d.widgets[\'switch_user_div\'],\'div\').innerHTML = \'\';\n me.dialog.show();\n me.dialog.onhide = function(){global_search_object.search();}\n }\n else{\n msgprint(\"To use this feature for first time please logout and login again in your system\");\n return;\n }\n }\n $c_obj(\'Company Control\',\'get_login_url\',\'\',callback);\n}',1,NULL,NULL,NULL,'Home','Yes','','','My Company',NULL,NULL,NULL,NULL),('Permission Engine','2012-10-02 13:18:38','2011-01-04 13:11:17','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,'Setup','Yes',NULL,NULL,'Permission Engine',NULL,NULL,NULL,NULL),('production-home','2012-10-02 13:18:38','2012-02-21 13:24:34','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Production','Yes',NULL,NULL,'production-home','Production Home',NULL,NULL,NULL),('profile-settings','2012-10-02 13:18:13','2011-04-13 12:08:59','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Home','Yes',NULL,NULL,'Profile Settings',NULL,NULL,NULL,NULL),('Projects','2012-10-02 13:18:33','2010-12-30 14:43:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Projects','Yes',NULL,NULL,'Projects',NULL,NULL,NULL,NULL),('projects-home','2012-10-02 13:18:33','2012-02-21 13:24:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Projects','Yes',NULL,NULL,'projects-home','Projects Home',NULL,NULL,NULL),('purchase-analytics','2012-10-02 13:18:33','2012-09-21 15:21:10','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Buying','Yes',NULL,NULL,'purchase-analytics','Purchase Analytics',NULL,NULL,NULL),('question-view','2012-10-02 13:18:13','2011-03-29 13:54:27','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'Question View',NULL,NULL,NULL,NULL),('questions','2012-10-02 13:18:14','2011-03-29 13:53:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'Questions',NULL,NULL,NULL,NULL),('Sales Browser','2012-10-02 13:18:11','2010-12-24 11:56:34','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Selling','Yes',NULL,NULL,'Sales Browser',NULL,NULL,NULL,NULL),('Sales Dashboard','2012-10-02 13:18:11','2010-09-25 00:00:00','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Selling','Yes',NULL,NULL,'Sales Dashboard',NULL,NULL,NULL,NULL),('sales-analytics','2012-10-02 13:18:11','2012-09-21 12:06:14','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Selling','Yes',NULL,NULL,'sales-analytics','Sales Analytics',NULL,NULL,NULL),('selling-home','2012-10-02 13:18:11','2012-02-20 15:46:57','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Selling','Yes',NULL,NULL,'selling-home','Selling Home',NULL,NULL,NULL),('Setup','2012-10-02 13:18:38','2011-07-04 16:58:27','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Setup','Yes',NULL,NULL,'Setup',NULL,NULL,NULL,NULL),('stock-ageing','2012-10-02 13:18:19','2012-09-21 18:21:31','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Stock','Yes',NULL,NULL,'stock-ageing','Stock Ageing',NULL,NULL,NULL),('stock-analytics','2012-10-02 13:18:19','2012-09-20 12:13:45','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Stock','Yes',NULL,NULL,'stock-analytics','Stock Analytics',NULL,NULL,NULL),('stock-home','2012-10-02 13:18:19','2012-02-21 13:23:22','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Stock','Yes',NULL,NULL,'stock-home','Stock Home',NULL,NULL,NULL),('stock-ledger','2012-10-02 13:18:19','2012-09-18 14:55:15','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Stock','Yes',NULL,NULL,'stock-ledger','Stock Ledger',NULL,NULL,NULL),('support-home','2012-10-02 13:18:35','2012-02-21 13:23:35','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Support','Yes',NULL,NULL,'support-home','Support Home',NULL,NULL,NULL),('todo','2012-10-02 13:18:14','2012-02-23 13:59:03','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'todo','To Do',NULL,NULL,NULL),('Trash','2012-10-02 13:18:13','2010-12-30 11:44:36','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'Trash',NULL,NULL,NULL,NULL),('trial-balance','2012-10-02 13:18:32','2012-09-17 13:47:16','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Accounts','Yes',NULL,NULL,'trial-balance','Trial Balance',NULL,NULL,NULL),('unsubscribe','2012-05-08 11:38:47','2012-05-08 08:08:47','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Website','Yes',NULL,NULL,'unsubscribe','Unsubscribe',NULL,NULL,NULL),('users','2012-10-02 13:18:13','2012-02-28 10:29:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'users','Users',NULL,NULL,NULL),('Webforms','2012-10-02 13:18:38','2011-01-04 13:19:54','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,NULL,1,NULL,NULL,NULL,'Setup','Yes',NULL,NULL,'Webforms',NULL,NULL,NULL,NULL),('website-home','2012-10-02 13:18:39','2012-02-21 13:23:51','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Website','Yes',NULL,NULL,'website-home','Website Home',NULL,NULL,NULL),('WIP Monitor','2012-10-02 13:18:14','2011-01-04 11:12:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,NULL,0,NULL,NULL,NULL,'Utilities','Yes',NULL,NULL,'WIP Monitor',NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabPage` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPayment to Invoice Matching Tool Detail` --- - -DROP TABLE IF EXISTS `tabPayment to Invoice Matching Tool Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPayment to Invoice Matching Tool Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `total_amt` decimal(18,6) default NULL, - `selected` int(1) default NULL, - `voucher_detail_no` varchar(180) default NULL, - `against_account` varchar(180) default NULL, - `remarks` text, - `posting_date` date default NULL, - `voucher_no` varchar(180) default NULL, - `amt_to_be_reconciled` decimal(18,6) default NULL, - `amt_due` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPayment to Invoice Matching Tool Detail` --- - -LOCK TABLES `tabPayment to Invoice Matching Tool Detail` WRITE; -/*!40000 ALTER TABLE `tabPayment to Invoice Matching Tool Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPayment to Invoice Matching Tool Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPeriod Closing Voucher` --- - -DROP TABLE IF EXISTS `tabPeriod Closing Voucher`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPeriod Closing Voucher` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `transaction_date` date default NULL, - `posting_date` date default NULL, - `fiscal_year` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `company` varchar(180) default NULL, - `closing_account_head` varchar(180) default NULL, - `remarks` text, - `cancel_reason` text, - `next_fiscal_year` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPeriod Closing Voucher` --- - -LOCK TABLES `tabPeriod Closing Voucher` WRITE; -/*!40000 ALTER TABLE `tabPeriod Closing Voucher` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPeriod Closing Voucher` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPeriod` --- - -DROP TABLE IF EXISTS `tabPeriod`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPeriod` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `period_name` varchar(180) default NULL, - `start_date` date default NULL, - `end_date` date default NULL, - `period_type` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPeriod` --- - -LOCK TABLES `tabPeriod` WRITE; -/*!40000 ALTER TABLE `tabPeriod` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPeriod` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPrice List` --- - -DROP TABLE IF EXISTS `tabPrice List`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPrice List` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `price_list_name` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPrice List` --- - -LOCK TABLES `tabPrice List` WRITE; -/*!40000 ALTER TABLE `tabPrice List` DISABLE KEYS */; -INSERT INTO `tabPrice List` VALUES ('Default Price List','2010-12-14 17:56:44','2010-12-01 17:52:33','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Default Price List',NULL,NULL),('Standard','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Standard',NULL,NULL); -/*!40000 ALTER TABLE `tabPrice List` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPrint Format` --- - -DROP TABLE IF EXISTS `tabPrint Format`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPrint Format` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `html` text, - `module` varchar(180) default NULL, - `standard` varchar(180) default 'No', - `doc_type` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `standard` (`standard`), - KEY `module` (`module`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPrint Format` --- - -LOCK TABLES `tabPrint Format` WRITE; -/*!40000 ALTER TABLE `tabPrint Format` DISABLE KEYS */; -INSERT INTO `tabPrint Format` VALUES ('Cheque Printing Format','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n
    \n



    \n
    \nPAYMENT ADVICE

    \n\n\n\n\n\n\n\n
    To :
    \n\n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    Voucher No :\n\n
    Voucher Date :\n\n
    Cheque No :\n\n
    Cheque Date :\n\n
    \n
    \n
    We are pleased to enclose our cheque in full/part Settlement of your under noted bills
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n
     Total :\n\n
    Narration :\n\n


    \n
    Prepared By
    \n
    Authorised Signatory
    \n
    Received Payment as Above
    \n
    _____________
    \n
    A/c Payee
    \n
    _____________
    \n
    \n\n
    \n
    \n\n
    \n
    \n\n
    \n
    \n\n
    \n
    ','Accounts','Yes','Journal Voucher',NULL,NULL),('Delivery Note Classic','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Delivery Note Date
    Sales Order No.\n
    \n ()\n
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Stock','Yes','Delivery Note',NULL,NULL),('Delivery Note Modern','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Delivery Note No.
    Delivery Note Date
    Sales Order No.\n
    \n ()\n
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Stock','Yes','Delivery Note',NULL,NULL),('Delivery Note Spartan','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Delivery Note Date
    Sales Order No.\n
    \n ()\n
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Stock','Yes','Delivery Note',NULL,NULL),('Form 16A Print Format','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n \n\n\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n
    \n

    FORM No. 16 A

    \n

    Certificate No:

    \n

    [See rule 31 (1)(b)]

    \n

    Certifiction of deduction of tax at source under section 203 of the Income-tax Act, 1961

    \n

    [For interest on securities; dividends; interests other than \'interests on securities\';winnings from lottery or crossword puzzle;\n winnings from horse race; payments to contractors and sub-contractors;insurance comission;payments to\n \n non-resident sportsmen/ sports associations;payments in respect of deposits under National Savings Scheme:\n payments on account of repurchase of units by Mutual Fund or Unit Trust of India; commission, remuneration or prize\n \n on sale of lottery tickets; comission or brokerage;rent;fees for professional or technical services;royalty and any sum \n under section 28(va);income in respect of units; payment of compensation on acquisition of certain immovable property;\n\n other sums under section 195; income in respect of units of non-residents referred to in section 196A; income from units\n referred to in section 196B;income from foreign currency bonds or shares of an Indian Company referred to in section

    \n 196C; income of Foreign Institutional Investors from securities referred to in section 196D]\n
    Name and address of person deducing taxAcknowledgement No.s of all quarterly statements of TDS under sub-section(3) of section 200 as provided by TIN Facilitation Centre or NSDL web-siteName and address of the person to whom payment is made or in whose account it is credited
    \n \n

    \n \n
    \n
    \n \n \n \n

    \n \n
    \n
    \n \n Registration Details OF THE DEDUCTOR
    \n \n
    \n
    \n \n
    NATURE OF PAYMENT


    \n
    \n \n
    \n
    \n \n PAN NO. OF THE PAYEE
    \n \n \n
    \n
    DETAILS OF PAYMENT, TAX DEDUCTION AND DEPOSIT OF TAX INTO CENTRAL GOVERNMENT ACCOUNT\n

    (The deductor is to provide transaction wise details of tax deducted and deposited)

    \n
    \n \n
    \n Certified that a sum of Rs. has been deducted at source and paid to the credit of the Central Government as per details given above



    \n

    Signature of person responsible for deduction of tax \n

    \n \n \n \n \n \n \n \n \n \n
    Place: Full Name:
    Date: Designation:
    \n
    \n\n','Accounts','Yes',NULL,NULL,NULL),('Payment Receipt Voucher','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'
    \n

    \n

    \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n
    Receipt No.:
    Date :
    Remark:
    Received From:
    \n
    \n\n

    \n

    \n
    This receipt is issued subject to realization of the Cheque
    \n
    \n
    \n\n\n\n\n

    For ,


    (Authorised Signatory)
    ','Accounts','Yes','Journal Voucher',NULL,NULL),('POS Invoice','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n \n \n\n\n \n\n
    NO: DATE:
    M/s
    \n\n
    \n\n
    \n\n

    \n\n \n \n \n \n
    For
     
    Signatory
    \n\n\n','Accounts','Yes','Sales Invoice',NULL,NULL),('Purchase Order Classic','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n
    Purchase Order Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    \n
    In Words
    \n \n
    \n
    \n','Buying','Yes','Purchase Order',NULL,NULL),('Purchase Order Modern','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Purchase Order No.
    Purchase Order Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    \n
    In Words
    \n \n
    \n
    \n','Buying','Yes','Purchase Order',NULL,NULL),('Purchase Order Spartan','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n
    Purchase Order Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    \n
    In Words
    \n \n
    \n
    \n','Buying','Yes','Purchase Order',NULL,NULL),('Purchase Receipt Format','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n
    \n\n
    \n
    \n

    Purchase Receipt:
    \n
    Date:
    \n
    \n\n
    \n
    \n

    \n
    \n\n
    \n
    \n \n\n
    \n\n\n
    \n\n \n \n
    \n
    \n
    \n

    Payment Terms
    \n

    \n

    For NCSCI
    \n


    (Authorised Signatory)
    \n
    \n','Stock','Yes',NULL,NULL,NULL),('Quotation Classic','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n
    Quotation Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Quotation',NULL,NULL),('Quotation Modern','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Quotation No.
    Quotation Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Quotation',NULL,NULL),('Quotation Spartan','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n
    Quotation Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Quotation',NULL,NULL),('Sales Invoice Classic','2012-07-12 19:25:46','2012-06-04 16:02:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Invoice Date
    Due Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Accounts','Yes','Sales Invoice',NULL,NULL),('Sales Invoice Modern','2012-07-12 19:25:46','2012-06-04 16:01:46','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Invoice No.
    Invoice Date
    Due Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Accounts','Yes','Sales Invoice',NULL,NULL),('Sales Invoice Spartan','2012-07-12 19:25:47','2012-06-04 16:01:09','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Invoice Date
    Due Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Accounts','Yes','Sales Invoice',NULL,NULL),('Sales Order Classic','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Sales Order Date
    Delivery Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Sales Order',NULL,NULL),('Sales Order Modern','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Sales Order No.
    Sales Order Date
    Delivery Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Sales Order',NULL,NULL),('Sales Order Spartan','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,'\n\n\n\n\n\n\n\n\n\n\n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n

    \n \n \n \n \n \n \n \n \n \n \n \n \n
    Name
    Address
    Contact
    \n \n \n \n \n \n \n \n \n
    Sales Order Date
    Delivery Date
    \n
    \n
    \n \n \n
    \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    \n Terms, Conditions & Other Information:
    \n \n
    \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
    Net Total
    Grand Total
    Rounded Total
    \n
    In Words
    \n \n
    \n
    \n','Selling','Yes','Sales Order',NULL,NULL); -/*!40000 ALTER TABLE `tabPrint Format` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPrint Heading` --- - -DROP TABLE IF EXISTS `tabPrint Heading`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPrint Heading` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `print_heading` varchar(180) default NULL, - `description` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPrint Heading` --- - -LOCK TABLES `tabPrint Heading` WRITE; -/*!40000 ALTER TABLE `tabPrint Heading` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPrint Heading` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProduct Group` --- - -DROP TABLE IF EXISTS `tabProduct Group`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProduct Group` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_group` varchar(180) default NULL, - `label` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProduct Group` --- - -LOCK TABLES `tabProduct Group` WRITE; -/*!40000 ALTER TABLE `tabProduct Group` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProduct Group` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProduct` --- - -DROP TABLE IF EXISTS `tabProduct`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProduct` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `currency` varchar(180) default NULL, - `file_list` text, - `title` varchar(180) default NULL, - `price` decimal(18,6) default NULL, - `full_image` varchar(180) default NULL, - `price_list` varchar(180) default NULL, - `sales` decimal(18,6) default NULL, - `item` varchar(180) default NULL, - `short_description` text, - `page_name` varchar(180) default NULL, - `thumbnail_image` varchar(180) default NULL, - `published` int(1) default NULL, - `warehouse` varchar(180) default NULL, - `long_description` text, - `stock` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProduct` --- - -LOCK TABLES `tabProduct` WRITE; -/*!40000 ALTER TABLE `tabProduct` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProduct` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProduction Order` --- - -DROP TABLE IF EXISTS `tabProduction Order`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProduction Order` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `transaction_date` date default NULL, - `posting_date` date default NULL, - `production_item` varchar(180) default NULL, - `description` text, - `qty` decimal(18,6) default NULL, - `bom_no` varchar(180) default NULL, - `origin` varchar(180) default NULL, - `status` varchar(180) default NULL, - `fg_warehouse` varchar(180) default NULL, - `wip_warehouse` varchar(180) default NULL, - `consider_sa_items` varchar(180) default NULL, - `stock_uom` varchar(180) default NULL, - `produced_qty` decimal(18,6) default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `project_name` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProduction Order` --- - -LOCK TABLES `tabProduction Order` WRITE; -/*!40000 ALTER TABLE `tabProduction Order` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProduction Order` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProduction Plan Item` --- - -DROP TABLE IF EXISTS `tabProduction Plan Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProduction Plan Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `source_doctype` varchar(180) default NULL, - `source_docname` varchar(180) default NULL, - `source_detail_docname` varchar(180) default NULL, - `parent_item` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - `document_date` date default NULL, - `confirmation_date` date default NULL, - `bom_no` varchar(180) default NULL, - `description` text, - `stock_uom` varchar(180) default NULL, - `prevdoc_reqd_qty` decimal(18,6) default NULL, - `planned_qty` decimal(18,6) default '0.000000', - `produced_qty` decimal(18,6) default NULL, - `pro_created` int(1) default NULL, - `mrp` int(1) default NULL, - `sales_order` varchar(180) default NULL, - `parent_packing_item` varchar(180) default NULL, - `is_pro_created` int(1) default NULL, - `so_pending_qty` decimal(18,6) default '0.000000', - PRIMARY KEY (`name`), - KEY `document_date` (`document_date`), - KEY `confirmation_date` (`confirmation_date`), - KEY `parent` (`parent`), - KEY `parent_item` (`parent_item`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProduction Plan Item` --- - -LOCK TABLES `tabProduction Plan Item` WRITE; -/*!40000 ALTER TABLE `tabProduction Plan Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProduction Plan Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProduction Plan Sales Order` --- - -DROP TABLE IF EXISTS `tabProduction Plan Sales Order`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProduction Plan Sales Order` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `prevdoc` varchar(180) default NULL, - `prevdoc_docname` varchar(180) default NULL, - `document_date` date default NULL, - `confirmation_date` date default NULL, - `include_in_plan` int(1) default NULL, - `customer` varchar(180) default NULL, - `grand_total` decimal(18,6) default NULL, - `sales_order_date` date default NULL, - `sales_order` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProduction Plan Sales Order` --- - -LOCK TABLES `tabProduction Plan Sales Order` WRITE; -/*!40000 ALTER TABLE `tabProduction Plan Sales Order` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProduction Plan Sales Order` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProfile` --- - -DROP TABLE IF EXISTS `tabProfile`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProfile` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `enabled` int(1) default '1', - `send_email_invite` int(1) default NULL, - `escalates_to` varchar(180) default NULL, - `recent_documents` text, - `first_name` varchar(180) default NULL, - `middle_name` varchar(180) default NULL, - `last_name` varchar(180) default NULL, - `email` varchar(180) default NULL, - `home_phone` varchar(180) default NULL, - `office_phone` varchar(180) default NULL, - `extension` varchar(180) default NULL, - `cell_no` varchar(180) default NULL, - `last_login` varchar(180) default NULL, - `last_ip` varchar(180) default NULL, - `line_1` varchar(180) default NULL, - `line_2` varchar(180) default NULL, - `city` varchar(180) default NULL, - `district` varchar(180) default NULL, - `state` varchar(180) default NULL, - `country` varchar(180) default NULL, - `pin` varchar(180) default NULL, - `password` varchar(180) default NULL, - `new_password` varchar(180) default NULL, - `retype_new_password` varchar(180) default NULL, - `file_list` text, - `password_last_updated` date default NULL, - `birth_date` date default NULL, - `user_type` varchar(180) default NULL, - `gender` varchar(180) default NULL, - `occupation` varchar(180) default NULL, - `bio` text, - `messanger_status` varchar(180) default NULL, - `avatar` varchar(180) default NULL, - `social_points` int(11) default NULL, - `social_badge` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `interests` text, - `activities` text, - `unsubscribed` int(1) default NULL, - `restrict_ip` varchar(180) default NULL, - `registered` int(1) default NULL, - `login_after` int(11) default NULL, - `login_before` int(11) default NULL, - `user_image` varchar(180) default NULL, - `background_image` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `escalates_to` (`escalates_to`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProfile` --- - -LOCK TABLES `tabProfile` WRITE; -/*!40000 ALTER TABLE `tabProfile` DISABLE KEYS */; -INSERT INTO `tabProfile` VALUES ('Administrator','2009-05-12 11:19:22','2010-08-08 17:24:25','Administrator','Administrator',0,NULL,NULL,NULL,NULL,1,NULL,'','','Administrator',NULL,NULL,'na',NULL,NULL,NULL,NULL,'2011-08-02 15:03:32','111.119.212.198',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'*4ACFE3202A5FF5CF467898FC58AAB1D615029441','','','','2009-05-29',NULL,'','',NULL,NULL,NULL,'images/user/avatar/av1.jpg',0,'White Belt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),('Guest','2009-07-09 13:01:51','2010-01-20 11:17:49','Administrator','Guest',0,NULL,NULL,NULL,NULL,1,0,'','','Guest',NULL,NULL,'Guest',NULL,NULL,NULL,NULL,'2011-05-28 09:55:57','120.63.3.237',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'password','','',NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,0,'White Belt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabProfile` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProject Activity Update` --- - -DROP TABLE IF EXISTS `tabProject Activity Update`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProject Activity Update` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `update` text, - `hours` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProject Activity Update` --- - -LOCK TABLES `tabProject Activity Update` WRITE; -/*!40000 ALTER TABLE `tabProject Activity Update` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProject Activity Update` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProject Activity` --- - -DROP TABLE IF EXISTS `tabProject Activity`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProject Activity` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `project` varchar(180) default NULL, - `activity_name` varchar(180) default NULL, - `percent_complete` varchar(180) default NULL, - `last_update` date default NULL, - `last_update_by` varchar(180) default NULL, - `new_update` text, - `hours` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProject Activity` --- - -LOCK TABLES `tabProject Activity` WRITE; -/*!40000 ALTER TABLE `tabProject Activity` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProject Activity` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProject Milestone` --- - -DROP TABLE IF EXISTS `tabProject Milestone`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProject Milestone` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `milestone_date` date default NULL, - `milestone` text, - `status` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProject Milestone` --- - -LOCK TABLES `tabProject Milestone` WRITE; -/*!40000 ALTER TABLE `tabProject Milestone` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProject Milestone` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProject` --- - -DROP TABLE IF EXISTS `tabProject`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProject` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `project_name` varchar(180) default NULL, - `priority` varchar(180) default NULL, - `completion_date` date default NULL, - `is_active` varchar(180) default NULL, - `notes` text, - `status` varchar(180) default 'Open', - `project_type` varchar(180) default NULL, - `project_start_date` date default NULL, - `amended_from` varchar(180) default NULL, - `amemdment_date` date default NULL, - `customer` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `customer_address` text, - `contact_person` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `contact_no` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `customer_group` varchar(180) default NULL, - `act_completion_date` date default NULL, - `project_value` decimal(18,6) default NULL, - `gross_margin_value` decimal(18,6) default NULL, - `per_gross_margin` decimal(18,6) default NULL, - `est_material_cost` decimal(18,6) default NULL, - `trash_reason` text, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `status` (`status`), - KEY `customer` (`customer`), - KEY `customer_name` (`customer_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProject` --- - -LOCK TABLES `tabProject` WRITE; -/*!40000 ALTER TABLE `tabProject` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabProject` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabProperty Setter` --- - -DROP TABLE IF EXISTS `tabProperty Setter`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabProperty Setter` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `doc_type` varchar(180) default NULL, - `default_value` varchar(180) default NULL, - `property_type` varchar(180) default NULL, - `select_property` varchar(180) default NULL, - `value` text, - `doc_name` varchar(180) default NULL, - `select_doctype` varchar(180) default NULL, - `doctype_or_field` varchar(180) default NULL, - `select_item` varchar(180) default NULL, - `property` varchar(180) default NULL, - `field_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `doc_type` (`doc_type`), - KEY `doc_name` (`doc_name`), - KEY `property` (`property`), - KEY `field_name` (`field_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabProperty Setter` --- - -LOCK TABLES `tabProperty Setter` WRITE; -/*!40000 ALTER TABLE `tabProperty Setter` DISABLE KEYS */; -INSERT INTO `tabProperty Setter` VALUES ('Attendance-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Attendance',NULL,'Select',NULL,'ATT',NULL,'Attendance','DocField',NULL,'default','naming_series',NULL),('Attendance-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Attendance',NULL,'Select',NULL,'ATT',NULL,'Attendance','DocField',NULL,'options','naming_series',NULL),('C-Form-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'C-Form',NULL,'Select',NULL,'C-FORM/',NULL,'C-Form','DocField',NULL,'default','naming_series',NULL),('C-Form-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'C-Form',NULL,'Select',NULL,'C-FORM/',NULL,'C-Form','DocField',NULL,'options','naming_series',NULL),('Customer Issue-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer Issue',NULL,'Select',NULL,'CI/2010-2011/',NULL,'Customer Issue','DocField',NULL,'default','naming_series',NULL),('Customer Issue-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer Issue',NULL,'Select',NULL,'CI/2010-2011/',NULL,'Customer Issue','DocField',NULL,'options','naming_series',NULL),('Customer-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer',NULL,'Select',NULL,'CUST',NULL,'Customer','DocField',NULL,'default','naming_series',NULL),('Customer-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer',NULL,'Select',NULL,'CUST',NULL,'Customer','DocField',NULL,'options','naming_series',NULL),('Delivery Note-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Delivery Note',NULL,'Select',NULL,'DN',NULL,'Delivery Note','DocField',NULL,'default','naming_series',NULL),('Delivery Note-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Delivery Note',NULL,'Select',NULL,'DN',NULL,'Delivery Note','DocField',NULL,'options','naming_series',NULL),('Employee-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Employee',NULL,'Select',NULL,'EMP/',NULL,'Employee','DocField',NULL,'default','naming_series',NULL),('Employee-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Employee',NULL,'Select',NULL,'EMP/',NULL,'Employee','DocField',NULL,'options','naming_series',NULL),('Enquiry-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Opportunity',NULL,'Select',NULL,'ENQUIRY',NULL,'Enquiry','DocField',NULL,'default','naming_series',NULL),('Enquiry-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Opportunity',NULL,'Select',NULL,'ENQUIRY',NULL,'Enquiry','DocField',NULL,'options','naming_series',NULL),('Indent-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Request',NULL,'Select',NULL,'IDT',NULL,'Indent','DocField',NULL,'default','naming_series',NULL),('Indent-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Request',NULL,'Select',NULL,'IDT',NULL,'Indent','DocField',NULL,'options','naming_series',NULL),('Installation Note-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Installation Note',NULL,'Select',NULL,'IN',NULL,'Installation Note','DocField',NULL,'default','naming_series',NULL),('Installation Note-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Installation Note',NULL,'Select',NULL,'IN\nIN/10-11/',NULL,'Installation Note','DocField',NULL,'options','naming_series',NULL),('Journal Voucher-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Journal Voucher',NULL,'Select',NULL,'JV',NULL,'Journal Voucher','DocField',NULL,'default','naming_series',NULL),('Journal Voucher-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Journal Voucher',NULL,'Select',NULL,'JV',NULL,'Journal Voucher','DocField',NULL,'options','naming_series',NULL),('Lead-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Lead',NULL,'Select',NULL,'LEAD',NULL,'Lead','DocField',NULL,'default','naming_series',NULL),('Lead-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Lead',NULL,'Select',NULL,'LEAD',NULL,'Lead','DocField',NULL,'options','naming_series',NULL),('Packing Slip-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Packing Slip',NULL,'Select',NULL,'PS',NULL,'Packing Slip','DocField',NULL,'default','naming_series',NULL),('Packing Slip-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Packing Slip',NULL,'Select',NULL,'PS',NULL,'Packing Slip','DocField',NULL,'options','naming_series',NULL),('Payable Voucher-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Invoice',NULL,'Select',NULL,'BILL',NULL,'Payable Voucher','DocField',NULL,'default','naming_series',NULL),('Payable Voucher-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Invoice',NULL,'Select',NULL,'BILL',NULL,'Payable Voucher','DocField',NULL,'options','naming_series',NULL),('Purchase Order-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Order',NULL,'Select',NULL,'PO',NULL,'Purchase Order','DocField',NULL,'default','naming_series',NULL),('Purchase Order-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Order',NULL,'Select',NULL,'PO',NULL,'Purchase Order','DocField',NULL,'options','naming_series',NULL),('Purchase Receipt-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Receipt',NULL,'Select',NULL,'GRN',NULL,'Purchase Receipt','DocField',NULL,'default','naming_series',NULL),('Purchase Receipt-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Receipt',NULL,'Select',NULL,'GRN',NULL,'Purchase Receipt','DocField',NULL,'options','naming_series',NULL),('QA Inspection Report-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quality Inspection',NULL,'Select',NULL,'QAI/11-12/',NULL,'QA Inspection Report','DocField',NULL,'default','naming_series',NULL),('QA Inspection Report-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quality Inspection',NULL,'Select',NULL,'QAI/11-12/',NULL,'QA Inspection Report','DocField',NULL,'options','naming_series',NULL),('Quotation-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quotation',NULL,'Select',NULL,'QTN',NULL,'Quotation','DocField',NULL,'default','naming_series',NULL),('Quotation-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quotation',NULL,'Select',NULL,'QTN',NULL,'Quotation','DocField',NULL,'options','naming_series',NULL),('Receivable Voucher-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Invoice',NULL,'Select',NULL,'INV',NULL,'Receivable Voucher','DocField',NULL,'default','naming_series',NULL),('Receivable Voucher-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Invoice',NULL,'Select',NULL,'INV',NULL,'Receivable Voucher','DocField',NULL,'options','naming_series',NULL),('Sales Order-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Order',NULL,'Select',NULL,'SO',NULL,'Sales Order','DocField',NULL,'default','naming_series',NULL),('Sales Order-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Order',NULL,'Select',NULL,'SO',NULL,'Sales Order','DocField',NULL,'options','naming_series',NULL),('Stock Entry-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Stock Entry',NULL,'Select',NULL,'STE',NULL,'Stock Entry','DocField',NULL,'default','naming_series',NULL),('Stock Entry-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Stock Entry',NULL,'Select',NULL,'STE',NULL,'Stock Entry','DocField',NULL,'options','naming_series',NULL),('Supplier-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Supplier',NULL,'Select',NULL,'SUPP',NULL,'Supplier','DocField',NULL,'default','naming_series',NULL),('Supplier-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Supplier',NULL,'Select',NULL,'SUPP',NULL,'Supplier','DocField',NULL,'options','naming_series',NULL),('Support Ticket-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support Ticket',NULL,'Select',NULL,'SUP',NULL,'Support Ticket','DocField',NULL,'default','naming_series',NULL),('Support Ticket-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support Ticket',NULL,'Select',NULL,'SUP',NULL,'Support Ticket','DocField',NULL,'options','naming_series',NULL),('TDS Payment-naming_series-default','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'TDS Payment',NULL,'Select',NULL,'TDSP',NULL,'TDS Payment','DocField',NULL,'default','naming_series',NULL),('TDS Payment-naming_series-options','2012-05-08 11:38:08','2012-05-08 11:38:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'TDS Payment',NULL,'Select',NULL,'TDSP',NULL,'TDS Payment','DocField',NULL,'options','naming_series',NULL); -/*!40000 ALTER TABLE `tabProperty Setter` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Invoice Advance` --- - -DROP TABLE IF EXISTS `tabPurchase Invoice Advance`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Invoice Advance` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `journal_voucher` varchar(180) default NULL, - `jv_detail_no` date default NULL, - `advance_amount` decimal(18,6) default NULL, - `allocated_amount` decimal(18,6) default NULL, - `tds_amount` decimal(18,6) default NULL, - `tds_allocated` decimal(18,6) default NULL, - `remarks` text, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Invoice Advance` --- - -LOCK TABLES `tabPurchase Invoice Advance` WRITE; -/*!40000 ALTER TABLE `tabPurchase Invoice Advance` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Invoice Advance` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Invoice Item` --- - -DROP TABLE IF EXISTS `tabPurchase Invoice Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Invoice Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `description` text, - `item_group` varchar(180) default NULL, - `rate` decimal(18,6) default NULL, - `qty` decimal(18,6) default NULL, - `import_rate` decimal(18,6) default NULL, - `amount` decimal(18,6) default NULL, - `import_amount` decimal(18,6) default NULL, - `expense_head` varchar(180) default NULL, - `cost_center` varchar(180) default NULL, - `purchase_order` varchar(180) default NULL, - `po_detail` varchar(180) default NULL, - `purchase_receipt` varchar(180) default NULL, - `pr_detail` varchar(180) default NULL, - `item_tax_rate` text, - `page_break` int(1) default NULL, - `discount_rate` decimal(18,6) default NULL, - `import_ref_rate` decimal(18,6) default NULL, - `purchase_ref_rate` decimal(18,6) default NULL, - `project_name` varchar(180) default NULL, - `uom` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `item_group` (`item_group`), - KEY `purchase_order` (`purchase_order`), - KEY `po_detail` (`po_detail`), - KEY `purchase_receipt` (`purchase_receipt`), - KEY `pr_detail` (`pr_detail`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Invoice Item` --- - -LOCK TABLES `tabPurchase Invoice Item` WRITE; -/*!40000 ALTER TABLE `tabPurchase Invoice Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Invoice Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Invoice` --- - -DROP TABLE IF EXISTS `tabPurchase Invoice`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Invoice` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `credit_to` varchar(180) default NULL, - `supplier` varchar(180) default NULL, - `supplier_address` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `naming_series` varchar(180) default 'BILL', - `voucher_date` date default NULL, - `due_date` date default NULL, - `posting_date` date default NULL, - `amendment_date` date default NULL, - `purchase_order_main` varchar(180) default NULL, - `purchase_receipt_main` varchar(180) default NULL, - `net_total` decimal(18,6) default NULL, - `grand_total` decimal(18,6) default NULL, - `in_words` varchar(180) default NULL, - `purchase_other_charges` varchar(180) default NULL, - `total_tax` decimal(18,6) default NULL, - `bill_no` varchar(180) default NULL, - `bill_date` date default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `remarks` text, - `is_opening` varchar(180) default 'No', - `aging_date` date default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `cancel_reason` varchar(180) default NULL, - `mode_of_payment` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `tds_applicable` varchar(180) default NULL, - `tds_category` varchar(180) default NULL, - `tax_code` varchar(180) default NULL, - `rate` decimal(18,6) default NULL, - `ded_amount` decimal(18,6) default NULL, - `other_charges_added` decimal(18,6) default NULL, - `other_charges_deducted` decimal(18,6) default NULL, - `total_tds_on_voucher` decimal(18,6) default NULL, - `tds_amount_on_advance` decimal(18,6) default NULL, - `total_advance` decimal(18,6) default NULL, - `total_amount_to_pay` decimal(18,6) default NULL, - `outstanding_amount` decimal(18,6) default NULL, - `net_total_import` decimal(18,6) default NULL, - `other_charges_added_import` decimal(18,6) default NULL, - `other_charges_deducted_import` decimal(18,6) default NULL, - `grand_total_import` decimal(18,6) default NULL, - `in_words_import` varchar(180) default NULL, - `against_expense_account` text, - `supplier_name` text, - `project_name` varchar(180) default NULL, - `contact_email` text, - `contact_display` text, - `address_display` text, - `contact_mobile` text, - `contact_person` varchar(180) default NULL, - `write_off_amount` decimal(18,6) default NULL, - `write_off_account` varchar(180) default NULL, - `file_list` text, - `write_off_cost_center` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `credit_to` (`credit_to`), - KEY `voucher_date` (`voucher_date`), - KEY `due_date` (`due_date`), - KEY `posting_date` (`posting_date`), - KEY `bill_no` (`bill_no`), - KEY `bill_date` (`bill_date`), - KEY `is_opening` (`is_opening`), - KEY `company` (`company`), - KEY `fiscal_year` (`fiscal_year`), - KEY `outstanding_amount` (`outstanding_amount`), - KEY `parent` (`parent`), - KEY `project_name` (`project_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Invoice` --- - -LOCK TABLES `tabPurchase Invoice` WRITE; -/*!40000 ALTER TABLE `tabPurchase Invoice` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Invoice` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Order Item Supplied` --- - -DROP TABLE IF EXISTS `tabPurchase Order Item Supplied`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Order Item Supplied` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `reference_name` varchar(180) default NULL, - `bom_detail_no` varchar(180) default NULL, - `main_item_code` varchar(180) default NULL, - `rm_item_code` varchar(180) default NULL, - `stock_uom` varchar(180) default NULL, - `required_qty` decimal(18,6) default NULL, - `conversion_factor` decimal(18,6) default NULL, - `rate` decimal(18,6) default NULL, - `amount` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Order Item Supplied` --- - -LOCK TABLES `tabPurchase Order Item Supplied` WRITE; -/*!40000 ALTER TABLE `tabPurchase Order Item Supplied` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Order Item Supplied` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Order Item` --- - -DROP TABLE IF EXISTS `tabPurchase Order Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Order Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `schedule_date` date default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` text, - `qty` decimal(18,6) default '0.000000', - `uom` varchar(180) default NULL, - `purchase_rate` decimal(18,6) default '0.000000', - `amount` decimal(18,6) default '0.000000', - `import_rate` decimal(18,6) default NULL, - `import_amount` decimal(18,6) default NULL, - `warehouse` varchar(180) default NULL, - `prevdoc_doctype` varchar(180) default NULL, - `prevdoc_docname` varchar(180) default NULL, - `prevdoc_date` date default NULL, - `prevdoc_detail_docname` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `conversion_factor` decimal(18,6) default NULL, - `stock_uom` varchar(180) default NULL, - `stock_qty` decimal(18,6) default NULL, - `received_qty` decimal(18,6) default NULL, - `billed_qty` decimal(18,6) default '0.000000', - `item_tax_rate` text, - `page_break` int(1) default NULL, - `discount_rate` decimal(18,6) default NULL, - `import_ref_rate` decimal(18,6) default NULL, - `project_name` varchar(180) default NULL, - `purchase_ref_rate` decimal(18,6) default NULL, - `supplier_part_no` varchar(180) default NULL, - `supplier_quotation` varchar(180) default NULL, - `supplier_quotation_item` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `schedule_date` (`schedule_date`), - KEY `item_code` (`item_code`), - KEY `item_name` (`item_name`), - KEY `prevdoc_docname` (`prevdoc_docname`), - KEY `prevdoc_detail_docname` (`prevdoc_detail_docname`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Order Item` --- - -LOCK TABLES `tabPurchase Order Item` WRITE; -/*!40000 ALTER TABLE `tabPurchase Order Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Order Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Order` --- - -DROP TABLE IF EXISTS `tabPurchase Order`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Order` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default NULL, - `status` varchar(180) default NULL, - `supplier` varchar(180) default NULL, - `supplier_address` varchar(180) default NULL, - `contact_person` varchar(180) default NULL, - `per_received` decimal(18,6) default NULL, - `per_billed` decimal(18,6) default NULL, - `transaction_date` date default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `indent_no` varchar(180) default NULL, - `net_total_import` decimal(18,6) default NULL, - `grand_total_import` decimal(18,6) default NULL, - `rounded_total` decimal(18,6) default NULL, - `in_words` varchar(180) default NULL, - `in_words_import` varchar(180) default NULL, - `other_charges_added_import` decimal(18,6) default NULL, - `other_charges_deducted_import` decimal(18,6) default NULL, - `purchase_other_charges` varchar(180) default NULL, - `total_tax` decimal(18,6) default NULL, - `tc_name` varchar(180) default NULL, - `terms` text, - `ref_sq` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `instructions` text, - `payment_terms` text, - `remarks` text, - `cancel_reason` varchar(180) default NULL, - `other_charges_added` decimal(18,6) default NULL, - `other_charges_deducted` decimal(18,6) default NULL, - `net_total` decimal(18,6) default NULL, - `grand_total` decimal(18,6) default NULL, - `supplier_name` varchar(180) default NULL, - `project_name` varchar(180) default NULL, - `contact_no` varchar(180) default NULL, - `email` varchar(180) default NULL, - `supplier_qtn` varchar(180) default NULL, - `letter_head` varchar(180) default NULL, - `is_subcontracted` varchar(180) default 'No', - `address_display` text, - `contact_mobile` text, - `contact_display` text, - `contact_email` text, - `file_list` text, - `_user_tags` varchar(180) default NULL, - `supplier_quotation` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `supplier` (`supplier`), - KEY `transaction_date` (`transaction_date`), - KEY `company` (`company`), - KEY `fiscal_year` (`fiscal_year`), - KEY `parent` (`parent`), - KEY `project_name` (`project_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Order` --- - -LOCK TABLES `tabPurchase Order` WRITE; -/*!40000 ALTER TABLE `tabPurchase Order` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Order` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Receipt Item Supplied` --- - -DROP TABLE IF EXISTS `tabPurchase Receipt Item Supplied`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Receipt Item Supplied` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `reference_name` varchar(180) default NULL, - `bom_detail_no` varchar(180) default NULL, - `main_item_code` varchar(180) default NULL, - `rm_item_code` varchar(180) default NULL, - `description` varchar(180) default NULL, - `stock_uom` varchar(180) default NULL, - `required_qty` decimal(18,6) default NULL, - `consumed_qty` decimal(18,6) default NULL, - `conversion_factor` decimal(18,6) default NULL, - `rate` decimal(18,6) default NULL, - `amount` decimal(18,6) default NULL, - `current_stock` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Receipt Item Supplied` --- - -LOCK TABLES `tabPurchase Receipt Item Supplied` WRITE; -/*!40000 ALTER TABLE `tabPurchase Receipt Item Supplied` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Receipt Item Supplied` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Receipt Item` --- - -DROP TABLE IF EXISTS `tabPurchase Receipt Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Receipt Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` text, - `received_qty` decimal(18,6) default '0.000000', - `qty` decimal(18,6) default '0.000000', - `rejected_qty` decimal(18,6) default '0.000000', - `purchase_rate` decimal(18,6) default '0.000000', - `uom` varchar(180) default NULL, - `amount` decimal(18,6) default '0.000000', - `import_rate` decimal(18,6) default '0.000000', - `import_amount` decimal(18,6) default NULL, - `warehouse` varchar(180) default NULL, - `rejected_warehouse` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `schedule_date` date default NULL, - `serial_no` text, - `batch_no` varchar(180) default NULL, - `qa_no` varchar(180) default NULL, - `conversion_factor` decimal(18,6) default NULL, - `stock_uom` varchar(180) default NULL, - `stock_qty` decimal(18,6) default NULL, - `prevdoc_doctype` varchar(180) default NULL, - `prevdoc_docname` varchar(180) default NULL, - `prevdoc_date` date default NULL, - `rm_supp_cost` decimal(18,6) default NULL, - `item_tax_amount` decimal(18,6) default NULL, - `prevdoc_detail_docname` varchar(180) default NULL, - `billed_qty` decimal(18,6) default '0.000000', - `valuation_rate` decimal(18,6) default NULL, - `item_tax_rate` text, - `page_break` int(1) default NULL, - `discount_rate` decimal(18,6) default NULL, - `import_ref_rate` decimal(18,6) default NULL, - `project_name` varchar(180) default NULL, - `purchase_ref_rate` decimal(18,6) default NULL, - `rejected_serial_no` text, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `item_group` (`item_group`), - KEY `prevdoc_docname` (`prevdoc_docname`), - KEY `item_tax_amount` (`item_tax_amount`), - KEY `prevdoc_detail_docname` (`prevdoc_detail_docname`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Receipt Item` --- - -LOCK TABLES `tabPurchase Receipt Item` WRITE; -/*!40000 ALTER TABLE `tabPurchase Receipt Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Receipt Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Receipt` --- - -DROP TABLE IF EXISTS `tabPurchase Receipt`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Receipt` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default 'GRN', - `status` varchar(180) default NULL, - `supplier` varchar(180) default NULL, - `supplier_address` varchar(180) default NULL, - `contact_person` varchar(180) default NULL, - `transporter_name` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `transaction_date` date default NULL, - `per_billed` decimal(18,6) default NULL, - `bill_no` varchar(180) default NULL, - `bill_date` date default NULL, - `range` varchar(180) default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `lr_no` varchar(180) default NULL, - `lr_date` date default NULL, - `challan_no` varchar(180) default NULL, - `challan_date` date default NULL, - `is_subcontracted` varchar(180) default 'No', - `purchase_order_no` varchar(180) default NULL, - `rejected_warehouse` varchar(180) default NULL, - `supplier_warehouse` varchar(180) default NULL, - `net_total` decimal(18,6) default NULL, - `grand_total` decimal(18,6) default NULL, - `rounded_total` decimal(18,6) default NULL, - `in_words` varchar(180) default NULL, - `purchase_other_charges` varchar(180) default NULL, - `total_tax` decimal(18,6) default NULL, - `tc_name` varchar(180) default NULL, - `terms` text, - `posting_date` date default NULL, - `posting_time` time default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `instructions` text, - `remarks` text, - `cancel_reason` varchar(180) default NULL, - `other_charges_added` decimal(18,6) default NULL, - `other_charges_deducted` decimal(18,6) default NULL, - `net_total_import` decimal(18,6) default NULL, - `other_charges_added_import` decimal(18,6) default NULL, - `other_charges_deducted_import` decimal(18,6) default NULL, - `grand_total_import` decimal(18,6) default NULL, - `in_words_import` varchar(180) default NULL, - `supplier_name` varchar(180) default NULL, - `project_name` varchar(180) default NULL, - `address_display` text, - `contact_email` text, - `contact_mobile` text, - `contact_display` text, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `supplier` (`supplier`), - KEY `transaction_date` (`transaction_date`), - KEY `posting_date` (`posting_date`), - KEY `company` (`company`), - KEY `fiscal_year` (`fiscal_year`), - KEY `parent` (`parent`), - KEY `project_name` (`project_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Receipt` --- - -LOCK TABLES `tabPurchase Receipt` WRITE; -/*!40000 ALTER TABLE `tabPurchase Receipt` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Receipt` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Request Item` --- - -DROP TABLE IF EXISTS `tabPurchase Request Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Request Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `schedule_date` date default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` text, - `qty` decimal(18,6) default '0.000000', - `warehouse` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `lead_time_date` date default NULL, - `uom` varchar(180) default NULL, - `min_order_qty` decimal(18,6) default NULL, - `ordered_qty` decimal(18,6) default NULL, - `projected_qty` decimal(18,6) default NULL, - `page_break` int(1) default NULL, - `sales_order_no` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `item_name` (`item_name`), - KEY `item_group` (`item_group`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Request Item` --- - -LOCK TABLES `tabPurchase Request Item` WRITE; -/*!40000 ALTER TABLE `tabPurchase Request Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Request Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Request` --- - -DROP TABLE IF EXISTS `tabPurchase Request`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Request` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default 'IDT', - `status` varchar(180) default NULL, - `transaction_date` date default NULL, - `per_ordered` decimal(18,6) default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `requested_by` varchar(180) default NULL, - `sales_order_no` varchar(180) default NULL, - `remark` text, - `cancel_reason` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `tc_name` varchar(180) default NULL, - `terms` text, - `letter_head` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `transaction_date` (`transaction_date`), - KEY `company` (`company`), - KEY `fiscal_year` (`fiscal_year`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Request` --- - -LOCK TABLES `tabPurchase Request` WRITE; -/*!40000 ALTER TABLE `tabPurchase Request` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Request` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Taxes and Charges Master` --- - -DROP TABLE IF EXISTS `tabPurchase Taxes and Charges Master`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Taxes and Charges Master` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `title` varchar(180) default NULL, - `company` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - `is_default` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Taxes and Charges Master` --- - -LOCK TABLES `tabPurchase Taxes and Charges Master` WRITE; -/*!40000 ALTER TABLE `tabPurchase Taxes and Charges Master` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Taxes and Charges Master` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabPurchase Taxes and Charges` --- - -DROP TABLE IF EXISTS `tabPurchase Taxes and Charges`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabPurchase Taxes and Charges` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(180) default NULL, - `idx` int(8) default NULL, - `category` varchar(180) default NULL, - `add_deduct_tax` varchar(180) default 'Add', - `charge_type` varchar(180) default NULL, - `row_id` varchar(180) default NULL, - `item_wise_tax_detail` text, - `description` text, - `account_head` varchar(180) default NULL, - `cost_center` varchar(180) default NULL, - `rate` decimal(18,6) default NULL, - `tax_amount` decimal(18,6) default NULL, - `total` decimal(18,6) default NULL, - `total_tax_amount` decimal(18,6) default NULL, - `total_amount` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabPurchase Taxes and Charges` --- - -LOCK TABLES `tabPurchase Taxes and Charges` WRITE; -/*!40000 ALTER TABLE `tabPurchase Taxes and Charges` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabPurchase Taxes and Charges` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabQuality Inspection Reading` --- - -DROP TABLE IF EXISTS `tabQuality Inspection Reading`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabQuality Inspection Reading` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `specification` varchar(180) default NULL, - `value` varchar(180) default NULL, - `reading_1` varchar(180) default NULL, - `reading_2` varchar(180) default NULL, - `reading_3` varchar(180) default NULL, - `reading_4` varchar(180) default NULL, - `reading_5` varchar(180) default NULL, - `reading_6` varchar(180) default NULL, - `reading_7` varchar(180) default NULL, - `reading_8` varchar(180) default NULL, - `reading_9` varchar(180) default NULL, - `reading_10` varchar(180) default NULL, - `status` varchar(180) default 'Accepted', - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabQuality Inspection Reading` --- - -LOCK TABLES `tabQuality Inspection Reading` WRITE; -/*!40000 ALTER TABLE `tabQuality Inspection Reading` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabQuality Inspection Reading` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabQuality Inspection` --- - -DROP TABLE IF EXISTS `tabQuality Inspection`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabQuality Inspection` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `inspection_type` varchar(180) default NULL, - `report_date` date default NULL, - `item_code` varchar(180) default NULL, - `sample_size` decimal(18,6) default NULL, - `description` text, - `item_serial_no` varchar(180) default NULL, - `batch_no` varchar(180) default NULL, - `purchase_receipt_no` varchar(180) default NULL, - `delivery_note_no` varchar(180) default NULL, - `inspected_by` varchar(180) default NULL, - `remarks` text, - `verified_by` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `naming_series` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `report_date` (`report_date`), - KEY `item_code` (`item_code`), - KEY `purchase_receipt_no` (`purchase_receipt_no`), - KEY `delivery_note_no` (`delivery_note_no`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabQuality Inspection` --- - -LOCK TABLES `tabQuality Inspection` WRITE; -/*!40000 ALTER TABLE `tabQuality Inspection` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabQuality Inspection` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabQuestion` --- - -DROP TABLE IF EXISTS `tabQuestion`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabQuestion` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `question` text, - `answer` text, - `tag_1` varchar(180) default NULL, - `tag_2` varchar(180) default NULL, - `tag_3` varchar(180) default NULL, - `file_list` text, - `_users_voted` text, - `points` int(11) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabQuestion` --- - -LOCK TABLES `tabQuestion` WRITE; -/*!40000 ALTER TABLE `tabQuestion` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabQuestion` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabQuotation Item` --- - -DROP TABLE IF EXISTS `tabQuotation Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabQuotation Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` text, - `stock_uom` varchar(180) default NULL, - `qty` decimal(18,6) default '0.000000', - `ref_rate` decimal(18,6) default '0.000000', - `adj_rate` decimal(18,6) default '0.000000', - `export_rate` decimal(18,6) default '0.000000', - `export_amount` decimal(18,6) default '0.000000', - `base_ref_rate` decimal(18,6) default NULL, - `basic_rate` decimal(18,6) default '0.000000', - `amount` decimal(18,6) default '0.000000', - `item_group` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `item_tax_rate` text, - `page_break` int(1) default NULL, - `prevdoc_docname` varchar(180) default NULL, - `prevdoc_doctype` varchar(180) default NULL, - `customer_item_code` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `item_name` (`item_name`), - KEY `item_group` (`item_group`), - KEY `brand` (`brand`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabQuotation Item` --- - -LOCK TABLES `tabQuotation Item` WRITE; -/*!40000 ALTER TABLE `tabQuotation Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabQuotation Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabQuotation Lost Reason` --- - -DROP TABLE IF EXISTS `tabQuotation Lost Reason`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabQuotation Lost Reason` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `order_lost_reason` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabQuotation Lost Reason` --- - -LOCK TABLES `tabQuotation Lost Reason` WRITE; -/*!40000 ALTER TABLE `tabQuotation Lost Reason` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabQuotation Lost Reason` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabQuotation` --- - -DROP TABLE IF EXISTS `tabQuotation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabQuotation` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `order_type` varchar(180) default 'Sales', - `naming_series` varchar(180) default 'QTN', - `status` varchar(180) default 'Draft', - `quotation_to` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `lead` varchar(180) default NULL, - `lead_name` text, - `customer_address` varchar(180) default NULL, - `contact_person` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `transaction_date` date default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `enq_no` varchar(180) default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `price_list_name` varchar(180) default NULL, - `net_total` decimal(18,6) default NULL, - `charge` varchar(180) default NULL, - `other_charges_total` decimal(18,6) default NULL, - `grand_total` decimal(18,6) default NULL, - `tc_name` varchar(180) default NULL, - `terms` text, - `enq_det` text, - `source` varchar(180) default NULL, - `campaign` varchar(180) default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `cancel_reason` varchar(180) default NULL, - `order_lost_reason` text, - `customer_group` varchar(180) default NULL, - `contact_no` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `rounded_total` decimal(18,6) default NULL, - `in_words` varchar(180) default NULL, - `grand_total_export` decimal(18,6) default NULL, - `rounded_total_export` decimal(18,6) default NULL, - `in_words_export` varchar(180) default NULL, - `customer_mobile_no` varchar(180) default NULL, - `message` mediumtext, - `file_list` text, - `contact_by` varchar(180) default NULL, - `contact_date` date default NULL, - `last_contact_date` date default NULL, - `contact_date_ref` date default NULL, - `to_discuss` text, - `customer` varchar(180) default NULL, - `letter_head` varchar(180) default NULL, - `contact_display` text, - `contact_email` text, - `contact_mobile` text, - `address_display` text, - `price_list_currency` varchar(180) default NULL, - `plc_conversion_rate` decimal(18,6) default NULL, - `organization` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `transaction_date` (`transaction_date`), - KEY `parent` (`parent`), - KEY `customer` (`customer`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabQuotation` --- - -LOCK TABLES `tabQuotation` WRITE; -/*!40000 ALTER TABLE `tabQuotation` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabQuotation` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabRelated Page` --- - -DROP TABLE IF EXISTS `tabRelated Page`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabRelated Page` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `page` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabRelated Page` --- - -LOCK TABLES `tabRelated Page` WRITE; -/*!40000 ALTER TABLE `tabRelated Page` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabRelated Page` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabReport` --- - -DROP TABLE IF EXISTS `tabReport`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabReport` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `json` text, - `ref_doctype` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabReport` --- - -LOCK TABLES `tabReport` WRITE; -/*!40000 ALTER TABLE `tabReport` DISABLE KEYS */; -INSERT INTO `tabReport` VALUES ('Supplier Quotations','2012-10-02 13:17:57','2012-08-07 14:57:57','Administrator','Administrator',0,NULL,NULL,NULL,1,'{\"filters\":[[\"Supplier Quotation\",\"supplier\",\"like\",\"%%\"],[\"Supplier Quotation Item\",\"item_code\",\"like\",\"%%\"]],\"columns\":[[\"name\",\"Supplier Quotation\"],[\"supplier\",\"Supplier Quotation\"],[\"item_code\",\"Supplier Quotation Item\"],[\"description\",\"Supplier Quotation Item\"],[\"qty\",\"Supplier Quotation Item\"],[\"currency\",\"Supplier Quotation\"],[\"import_rate\",\"Supplier Quotation Item\"],[\"import_amount\",\"Supplier Quotation Item\"]],\"sort_by\":\"modified\",\"sort_order\":\"desc\",\"sort_by_next\":\"name\",\"sort_order_next\":\"desc\"}','Supplier Quotation',NULL); -/*!40000 ALTER TABLE `tabReport` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabRole` --- - -DROP TABLE IF EXISTS `tabRole`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabRole` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `role_name` varchar(180) default NULL, - `module` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabRole` --- - -LOCK TABLES `tabRole` WRITE; -/*!40000 ALTER TABLE `tabRole` DISABLE KEYS */; -INSERT INTO `tabRole` VALUES ('Accounts Manager','2010-08-08 17:08:51','2009-03-19 14:57:46','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts Manager','Accounts',NULL),('Accounts User','2010-08-08 17:08:51','2010-04-08 12:05:21','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts User','Accounts',NULL),('Administrator','2010-08-08 17:08:51','2009-03-12 12:01:57','Administrator','Administrator',0,'','','',0,'Administrator','Core',NULL),('All','2010-08-08 17:08:51','2009-03-12 14:40:07','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'All','Core',NULL),('Analytics','2012-10-02 13:17:59','2012-10-02 13:17:59','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Analytics','Setup',NULL),('Blogger','2012-02-21 14:31:10','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Blogger','Website',NULL),('Customer','2010-08-08 17:08:51','2009-06-26 14:42:33','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Customer','Selling',NULL),('Employee','2011-02-21 09:23:53','2011-02-14 14:05:55','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Employee','HR',NULL),('Guest','2010-08-08 17:08:51','2010-01-13 16:45:40','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Guest','Core',NULL),('HR Manager','2010-08-08 17:08:51','2010-04-01 10:19:09','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'HR Manager','HR',NULL),('HR User','2010-08-08 17:08:51','2010-04-01 10:18:55','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'HR User','HR',NULL),('Maintenance Manager','2010-08-08 17:08:51','2010-07-22 15:19:33','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Maintenance Manager','Support',NULL),('Maintenance User','2010-08-08 17:08:51','2010-07-22 15:19:19','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,'Maintenance User','Support',NULL),('Material Manager','2010-08-08 17:08:51','2009-03-19 14:56:51','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Material Manager','Stock',NULL),('Material Master Manager','2010-08-08 17:08:51','2010-04-08 13:49:58','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Material Master Manager','Stock',NULL),('Material User','2010-08-08 17:08:51','2010-04-08 12:08:13','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Material User','Stock',NULL),('Partner','2010-08-08 17:08:51','2009-07-13 11:29:39','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Partner','Selling',NULL),('Production Manager','2010-08-08 17:08:51','2009-09-23 16:35:35','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Production Manager','Production',NULL),('Production User','2010-08-08 17:08:51','2009-09-23 16:36:08','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Production User','Production',NULL),('Projects User','2010-08-08 17:08:51','2010-05-08 09:40:07','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Projects User','Projects',NULL),('Purchase Manager','2010-08-08 17:08:51','2010-04-08 12:07:53','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Manager','Buying',NULL),('Purchase Master Manager','2010-08-08 17:08:51','2010-04-08 13:50:20','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase Master Manager','Buying',NULL),('Purchase User','2010-08-08 17:08:51','2010-04-08 12:08:01','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Purchase User','Buying',NULL),('Quality Manager','2010-08-08 17:08:51','2010-05-04 13:12:27','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Quality Manager','Stock',NULL),('Report Manager','2012-07-12 19:25:47','2012-07-12 19:25:47','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Report Manager','Core',NULL),('Sales Manager','2010-08-08 17:08:51','2010-04-08 12:07:36','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Manager','Selling',NULL),('Sales Master Manager','2010-08-08 17:08:51','2010-04-08 13:50:11','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales Master Manager','Selling',NULL),('Sales User','2010-08-08 17:08:51','2010-04-08 12:07:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Sales User','Selling',NULL),('Supplier','2010-08-08 17:08:51','2009-06-26 14:42:19','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Supplier','Buying',NULL),('Support Manager','2010-12-28 17:02:39','2010-12-28 15:17:40','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support Manager','Support',NULL),('Support Team','2010-12-28 17:02:39','2010-12-28 15:19:11','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Support Team','Support',NULL),('System Manager','2010-08-08 17:08:51','2009-07-07 17:00:24','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'System Manager','Setup',NULL),('Website Manager','2012-02-21 14:31:10','2012-02-21 10:01:10','Administrator','Administrator',0,NULL,NULL,NULL,1,'Website Manager','Website',NULL); -/*!40000 ALTER TABLE `tabRole` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSMS Log` --- - -DROP TABLE IF EXISTS `tabSMS Log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSMS Log` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `sender_name` varchar(180) default NULL, - `no_of_requested_sms` int(11) default NULL, - `no_of_sent_sms` int(11) default NULL, - `message` text, - `receiver_list` text, - `sent_on` date default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSMS Log` --- - -LOCK TABLES `tabSMS Log` WRITE; -/*!40000 ALTER TABLE `tabSMS Log` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSMS Log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSMS Parameter` --- - -DROP TABLE IF EXISTS `tabSMS Parameter`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSMS Parameter` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `parameter` varchar(180) default NULL, - `value` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSMS Parameter` --- - -LOCK TABLES `tabSMS Parameter` WRITE; -/*!40000 ALTER TABLE `tabSMS Parameter` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSMS Parameter` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSMS Receiver` --- - -DROP TABLE IF EXISTS `tabSMS Receiver`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSMS Receiver` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `customer_name` varchar(180) default NULL, - `receiver_name` varchar(180) default NULL, - `mobile_no` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSMS Receiver` --- - -LOCK TABLES `tabSMS Receiver` WRITE; -/*!40000 ALTER TABLE `tabSMS Receiver` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSMS Receiver` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSalary Slip Deduction` --- - -DROP TABLE IF EXISTS `tabSalary Slip Deduction`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSalary Slip Deduction` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `d_type` varchar(180) default NULL, - `d_amount` decimal(18,6) default NULL, - `d_depends_on_lwp` int(1) default NULL, - `d_modified_amount` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSalary Slip Deduction` --- - -LOCK TABLES `tabSalary Slip Deduction` WRITE; -/*!40000 ALTER TABLE `tabSalary Slip Deduction` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSalary Slip Deduction` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSalary Slip Earning` --- - -DROP TABLE IF EXISTS `tabSalary Slip Earning`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSalary Slip Earning` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `e_type` varchar(180) default NULL, - `e_amount` decimal(18,6) default NULL, - `e_modified_amount` decimal(18,6) default NULL, - `e_depends_on_lwp` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSalary Slip Earning` --- - -LOCK TABLES `tabSalary Slip Earning` WRITE; -/*!40000 ALTER TABLE `tabSalary Slip Earning` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSalary Slip Earning` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSalary Slip` --- - -DROP TABLE IF EXISTS `tabSalary Slip`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSalary Slip` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `fiscal_year` varchar(180) default NULL, - `month` varchar(180) default NULL, - `year` varchar(180) default NULL, - `employee` varchar(180) default NULL, - `flag` int(11) default NULL, - `employee_name` varchar(180) default NULL, - `department` varchar(180) default NULL, - `designation` varchar(180) default NULL, - `branch` varchar(180) default NULL, - `grade` varchar(180) default NULL, - `pf_no` varchar(180) default NULL, - `esic_no` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `total_days_in_month` varchar(180) default NULL, - `leave_without_pay` decimal(18,6) default NULL, - `bank_name` varchar(180) default NULL, - `bank_account_no` varchar(180) default NULL, - `payment_days` decimal(18,6) default NULL, - `email_check` int(1) default NULL, - `arrear_amount` decimal(18,6) default NULL, - `encashment_amount` decimal(18,6) default NULL, - `gross_pay` decimal(18,6) default NULL, - `total_deduction` decimal(18,6) default NULL, - `net_pay` decimal(18,6) default NULL, - `net_pay_in_words` varchar(180) default NULL, - `leave_encashment_amount` decimal(18,6) default NULL, - `total_in_words` varchar(180) default NULL, - `letter_head` varchar(180) default NULL, - `company` varchar(180) default NULL, - `rounded_total` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `month` (`month`), - KEY `year` (`year`), - KEY `parent` (`parent`), - KEY `employee` (`employee`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSalary Slip` --- - -LOCK TABLES `tabSalary Slip` WRITE; -/*!40000 ALTER TABLE `tabSalary Slip` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSalary Slip` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSalary Structure Deduction` --- - -DROP TABLE IF EXISTS `tabSalary Structure Deduction`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSalary Structure Deduction` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `d_type` varchar(180) default NULL, - `d_value` decimal(18,6) default NULL, - `d_modified_amt` decimal(18,6) default NULL, - `depend_on_lwp` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSalary Structure Deduction` --- - -LOCK TABLES `tabSalary Structure Deduction` WRITE; -/*!40000 ALTER TABLE `tabSalary Structure Deduction` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSalary Structure Deduction` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSalary Structure Earning` --- - -DROP TABLE IF EXISTS `tabSalary Structure Earning`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSalary Structure Earning` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `e_type` varchar(180) default NULL, - `e_value` decimal(18,6) default NULL, - `modified_value` decimal(18,6) default NULL, - `depend_on_lwp` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSalary Structure Earning` --- - -LOCK TABLES `tabSalary Structure Earning` WRITE; -/*!40000 ALTER TABLE `tabSalary Structure Earning` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSalary Structure Earning` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSalary Structure` --- - -DROP TABLE IF EXISTS `tabSalary Structure`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSalary Structure` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `employee` varchar(180) default NULL, - `backup_employee` varchar(180) default NULL, - `employee_name` varchar(180) default NULL, - `branch` varchar(180) default NULL, - `designation` varchar(180) default NULL, - `department` varchar(180) default NULL, - `grade` varchar(180) default NULL, - `is_active` varchar(180) default 'Yes', - `fiscal_year` varchar(180) default NULL, - `from_date` date default NULL, - `to_date` date default NULL, - `ctc` decimal(18,6) default NULL, - `total_earning` decimal(18,6) default NULL, - `total_deduction` decimal(18,6) default NULL, - `total` decimal(18,6) default NULL, - `log_info` mediumtext, - `net_pay` decimal(18,6) default NULL, - `company` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSalary Structure` --- - -LOCK TABLES `tabSalary Structure` WRITE; -/*!40000 ALTER TABLE `tabSalary Structure` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSalary Structure` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales BOM Item` --- - -DROP TABLE IF EXISTS `tabSales BOM Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales BOM Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `is_main_item` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - `description` text, - `uom` varchar(180) default NULL, - `qty` decimal(18,6) default NULL, - `rate` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales BOM Item` --- - -LOCK TABLES `tabSales BOM Item` WRITE; -/*!40000 ALTER TABLE `tabSales BOM Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales BOM Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales BOM` --- - -DROP TABLE IF EXISTS `tabSales BOM`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales BOM` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `new_item_code` varchar(180) default NULL, - `new_item_name` varchar(180) default NULL, - `new_item_brand` varchar(180) default NULL, - `description` text, - `stock_uom` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `price_list` varchar(180) default NULL, - `currency` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales BOM` --- - -LOCK TABLES `tabSales BOM` WRITE; -/*!40000 ALTER TABLE `tabSales BOM` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales BOM` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Invoice Advance` --- - -DROP TABLE IF EXISTS `tabSales Invoice Advance`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Invoice Advance` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `journal_voucher` varchar(180) default NULL, - `jv_detail_no` varchar(180) default NULL, - `advance_amount` decimal(18,6) default NULL, - `allocated_amount` decimal(18,6) default NULL, - `remarks` text, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Invoice Advance` --- - -LOCK TABLES `tabSales Invoice Advance` WRITE; -/*!40000 ALTER TABLE `tabSales Invoice Advance` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Invoice Advance` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Invoice Item` --- - -DROP TABLE IF EXISTS `tabSales Invoice Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Invoice Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `description` text, - `item_group` varchar(180) default NULL, - `qty` decimal(18,6) default NULL, - `ref_rate` decimal(18,6) default NULL, - `adj_rate` decimal(18,6) default NULL, - `export_rate` decimal(18,6) default NULL, - `export_amount` decimal(18,6) default NULL, - `base_ref_rate` decimal(18,6) default NULL, - `basic_rate` decimal(18,6) default NULL, - `amount` decimal(18,6) default NULL, - `income_account` varchar(180) default NULL, - `cost_center` varchar(180) default 'Purchase - TC', - `sales_order` varchar(180) default NULL, - `so_detail` varchar(180) default NULL, - `delivery_note` varchar(180) default NULL, - `dn_detail` varchar(180) default NULL, - `item_tax_rate` text, - `clear_pending` int(1) default NULL, - `warehouse` varchar(180) default NULL, - `delivered_qty` decimal(18,6) default NULL, - `serial_no` text, - `actual_qty` decimal(18,6) default NULL, - `stock_uom` varchar(180) default NULL, - `batch_no` varchar(180) default NULL, - `page_break` int(1) default NULL, - `barcode` varchar(180) default NULL, - `customer_item_code` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `sales_order` (`sales_order`), - KEY `so_detail` (`so_detail`), - KEY `delivery_note` (`delivery_note`), - KEY `dn_detail` (`dn_detail`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Invoice Item` --- - -LOCK TABLES `tabSales Invoice Item` WRITE; -/*!40000 ALTER TABLE `tabSales Invoice Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Invoice Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Invoice` --- - -DROP TABLE IF EXISTS `tabSales Invoice`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Invoice` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `debit_to` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `customer_address` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `naming_series` varchar(180) default 'INV', - `voucher_date` date default NULL, - `due_date` date default NULL, - `posting_date` date default NULL, - `amendment_date` date default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `amended_from` varchar(180) default NULL, - `sales_order_main` varchar(180) default NULL, - `delivery_note_main` varchar(180) default NULL, - `net_total` decimal(18,6) default NULL, - `rounded_total` decimal(18,6) default NULL, - `charge` varchar(180) default NULL, - `other_charges_total` decimal(18,6) default NULL, - `tc_name` varchar(180) default NULL, - `terms` text, - `price_list_name` varchar(180) default NULL, - `is_opening` varchar(180) default 'No', - `aging_date` date default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `source` varchar(180) default NULL, - `campaign` varchar(180) default NULL, - `cancel_reason` varchar(180) default NULL, - `remarks` text, - `mode_of_payment` varchar(180) default NULL, - `grand_total` decimal(18,6) default NULL, - `in_words` varchar(180) default NULL, - `total_advance` decimal(18,6) default NULL, - `outstanding_amount` decimal(18,6) default NULL, - `grand_total_export` decimal(18,6) default NULL, - `rounded_total_export` decimal(18,6) default NULL, - `in_words_export` varchar(180) default NULL, - `gross_profit` decimal(18,6) default NULL, - `gross_profit_percent` decimal(18,6) default NULL, - `sales_partner` varchar(180) default NULL, - `commission_rate` decimal(18,6) default NULL, - `total_commission` decimal(18,6) default NULL, - `against_income_account` text, - `project_name` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `letter_head` varchar(180) default NULL, - `is_pos` int(1) default NULL, - `update_stock` int(1) default '1', - `cash_bank_account` varchar(180) default NULL, - `posting_time` time default NULL, - `paid_amount` decimal(18,6) default NULL, - `write_off_amount` decimal(18,6) default NULL, - `write_off_cost_center` varchar(180) default NULL, - `write_off_account` varchar(180) default NULL, - `contact_display` text, - `address_display` text, - `contact_mobile` text, - `contact_email` text, - `contact_person` varchar(180) default NULL, - `customer_group` varchar(180) default NULL, - `end_date` date default NULL, - `recurring_id` varchar(180) default NULL, - `repeat_on_day_of_month` varchar(180) default NULL, - `c_form_applicable` varchar(180) default NULL, - `next_date` date default NULL, - `notification_email_address` text, - `convert_into_recurring_invoice` int(1) default NULL, - `c_form_no` varchar(180) default NULL, - `price_list_currency` varchar(180) default NULL, - `plc_conversion_rate` decimal(18,6) default NULL, - `file_list` text, - `write_off_outstanding_amount_automatically` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - `invoice_period_to_date` date default NULL, - `recurring_type` varchar(180) default NULL, - `invoice_period_from_date` date default NULL, - PRIMARY KEY (`name`), - KEY `debit_to` (`debit_to`), - KEY `posting_date` (`posting_date`), - KEY `parent` (`parent`), - KEY `project_name` (`project_name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Invoice` --- - -LOCK TABLES `tabSales Invoice` WRITE; -/*!40000 ALTER TABLE `tabSales Invoice` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Invoice` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Order Item` --- - -DROP TABLE IF EXISTS `tabSales Order Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Order Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `description` text, - `stock_uom` varchar(180) default NULL, - `qty` decimal(18,6) default '0.000000', - `ref_rate` decimal(18,6) default '0.000000', - `adj_rate` decimal(18,6) default '0.000000', - `export_rate` decimal(18,6) default '0.000000', - `export_amount` decimal(18,6) default '0.000000', - `base_ref_rate` decimal(18,6) default NULL, - `basic_rate` decimal(18,6) default '0.000000', - `amount` decimal(18,6) default '0.000000', - `reserved_warehouse` varchar(180) default NULL, - `projected_qty` decimal(18,6) default '0.000000', - `delivered_qty` decimal(18,6) default '0.000000', - `billed_qty` decimal(18,6) default NULL, - `planned_qty` decimal(18,6) default NULL, - `produced_qty` decimal(18,6) default NULL, - `brand` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `prevdoc_docname` varchar(180) default NULL, - `item_tax_rate` text, - `page_break` int(1) default NULL, - `transaction_date` date default NULL, - `delivery_date` date default NULL, - `confirmation_date` date default NULL, - `actual_qty` decimal(18,6) default '0.000000', - `billed_amt` decimal(18,6) default NULL, - `customer_item_code` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `brand` (`brand`), - KEY `item_group` (`item_group`), - KEY `prevdoc_docname` (`prevdoc_docname`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Order Item` --- - -LOCK TABLES `tabSales Order Item` WRITE; -/*!40000 ALTER TABLE `tabSales Order Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Order Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Order` --- - -DROP TABLE IF EXISTS `tabSales Order`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Order` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `order_type` varchar(180) default 'Sales', - `naming_series` varchar(180) default 'SO', - `status` varchar(180) default 'Draft', - `customer_name` varchar(180) default NULL, - `customer_address` varchar(180) default NULL, - `contact_person` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `po_no` varchar(180) default NULL, - `po_date` date default NULL, - `transaction_date` date default NULL, - `delivery_date` date default NULL, - `per_delivered` decimal(18,6) default NULL, - `per_billed` decimal(18,6) default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `quotation_no` varchar(180) default NULL, - `quotation_date` date default NULL, - `price_list_name` varchar(180) default NULL, - `net_total` decimal(18,6) default NULL, - `charge` varchar(180) default NULL, - `other_charges_total` decimal(18,6) default NULL, - `grand_total` decimal(18,6) default NULL, - `tc_name` varchar(180) default NULL, - `terms` text, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `source` varchar(180) default NULL, - `campaign` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `customer_group` varchar(180) default NULL, - `contact_no` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `cancel_reason` varchar(180) default NULL, - `note` text, - `rounded_total` decimal(18,6) default NULL, - `in_words` varchar(180) default NULL, - `grand_total_export` decimal(18,6) default NULL, - `rounded_total_export` decimal(18,6) default NULL, - `in_words_export` varchar(180) default NULL, - `sales_partner` varchar(180) default NULL, - `commission_rate` decimal(18,6) default NULL, - `total_commission` decimal(18,6) default NULL, - `customer_mobile_no` varchar(180) default NULL, - `message` mediumtext, - `project_name` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `serial_no` varchar(180) default NULL, - `letter_head` varchar(180) default NULL, - `per_amt_billed` decimal(18,6) default NULL, - `ship_to` varchar(180) default NULL, - `ship_det_no` varchar(180) default NULL, - `shipping_address` text, - `billing_status` varchar(180) default NULL, - `contact_display` text, - `contact_email` text, - `contact_mobile` text, - `delivery_status` varchar(180) default NULL, - `address_display` text, - `shipping_address_name` varchar(180) default NULL, - `price_list_currency` varchar(180) default NULL, - `plc_conversion_rate` decimal(18,6) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `territory` (`territory`), - KEY `transaction_date` (`transaction_date`), - KEY `delivery_date` (`delivery_date`), - KEY `quotation_no` (`quotation_no`), - KEY `company` (`company`), - KEY `fiscal_year` (`fiscal_year`), - KEY `sales_partner` (`sales_partner`), - KEY `parent` (`parent`), - KEY `project_name` (`project_name`), - KEY `customer` (`customer`), - KEY `serial_no` (`serial_no`), - KEY `customer_group` (`customer_group`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Order` --- - -LOCK TABLES `tabSales Order` WRITE; -/*!40000 ALTER TABLE `tabSales Order` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Order` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Partner` --- - -DROP TABLE IF EXISTS `tabSales Partner`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Partner` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `partner_name` varchar(180) default NULL, - `partner_type` varchar(180) default NULL, - `commission_rate` decimal(18,6) default NULL, - `area_code` varchar(180) default NULL, - `mobile` varchar(180) default NULL, - `telephone` varchar(180) default NULL, - `email` varchar(180) default NULL, - `address` mediumtext, - `address_line1` varchar(180) default NULL, - `address_line2` varchar(180) default NULL, - `city` varchar(180) default NULL, - `country` varchar(180) default NULL, - `state` varchar(180) default NULL, - `pincode` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `distribution_id` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `partner_name` (`partner_name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Partner` --- - -LOCK TABLES `tabSales Partner` WRITE; -/*!40000 ALTER TABLE `tabSales Partner` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Partner` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Person` --- - -DROP TABLE IF EXISTS `tabSales Person`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Person` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `sales_person_name` varchar(180) default NULL, - `parent_sales_person` varchar(180) default NULL, - `is_group` varchar(180) default NULL, - `department` varchar(180) default NULL, - `designation` varchar(180) default NULL, - `mobile_no` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `country` varchar(180) default NULL, - `state` varchar(180) default NULL, - `city` varchar(180) default NULL, - `territory` varchar(180) default NULL, - `lft` int(11) default NULL, - `rgt` int(11) default NULL, - `old_parent` varchar(180) default NULL, - `distribution_id` varchar(180) default NULL, - `employee` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `lft` (`lft`), - KEY `rgt` (`rgt`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Person` --- - -LOCK TABLES `tabSales Person` WRITE; -/*!40000 ALTER TABLE `tabSales Person` DISABLE KEYS */; -INSERT INTO `tabSales Person` VALUES ('All Sales Persons','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'All Sales Persons','','Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,2,'',NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabSales Person` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Taxes and Charges Master` --- - -DROP TABLE IF EXISTS `tabSales Taxes and Charges Master`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Taxes and Charges Master` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `title` varchar(180) default NULL, - `company` varchar(180) default NULL, - `is_default` int(1) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Taxes and Charges Master` --- - -LOCK TABLES `tabSales Taxes and Charges Master` WRITE; -/*!40000 ALTER TABLE `tabSales Taxes and Charges Master` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Taxes and Charges Master` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Taxes and Charges` --- - -DROP TABLE IF EXISTS `tabSales Taxes and Charges`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Taxes and Charges` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(180) default NULL, - `idx` int(8) default NULL, - `charge_type` varchar(180) default NULL, - `account_head` varchar(180) default NULL, - `cost_center_other_charges` varchar(180) default NULL, - `description` text, - `rate` decimal(18,6) default NULL, - `tax_amount` decimal(18,6) default NULL, - `total` decimal(18,6) default NULL, - `row_id` varchar(180) default NULL, - `item_wise_tax_detail` text, - `total_tax_amount` decimal(18,6) default NULL, - `total_amount` decimal(18,6) default NULL, - `included_in_print_rate` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `parenttype` (`parenttype`), - KEY `account_head` (`account_head`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Taxes and Charges` --- - -LOCK TABLES `tabSales Taxes and Charges` WRITE; -/*!40000 ALTER TABLE `tabSales Taxes and Charges` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Taxes and Charges` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales Team` --- - -DROP TABLE IF EXISTS `tabSales Team`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales Team` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(180) default NULL, - `idx` int(8) default NULL, - `sales_person` varchar(180) default NULL, - `sales_designation` varchar(180) default NULL, - `contact_no` varchar(180) default NULL, - `allocated_percentage` decimal(18,6) default NULL, - `allocated_amount` decimal(18,6) default NULL, - `incentives` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `sales_person` (`sales_person`), - KEY `parent` (`parent`), - KEY `parenttype` (`parenttype`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales Team` --- - -LOCK TABLES `tabSales Team` WRITE; -/*!40000 ALTER TABLE `tabSales Team` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales Team` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSales and Purchase Return Item` --- - -DROP TABLE IF EXISTS `tabSales and Purchase Return Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSales and Purchase Return Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `detail_name` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - `description` varchar(180) default NULL, - `qty` varchar(180) default NULL, - `returned_qty` varchar(180) default NULL, - `uom` varchar(180) default NULL, - `rate` decimal(18,6) default NULL, - `serial_no` text, - `batch_no` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSales and Purchase Return Item` --- - -LOCK TABLES `tabSales and Purchase Return Item` WRITE; -/*!40000 ALTER TABLE `tabSales and Purchase Return Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSales and Purchase Return Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSandbox` --- - -DROP TABLE IF EXISTS `tabSandbox`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSandbox` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `amendment_date` date default NULL, - `test_link` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `test_data` varchar(180) default NULL, - `test_date` date default NULL, - `test_select` varchar(180) default NULL, - `test_text` text, - `to_be_dropped` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSandbox` --- - -LOCK TABLES `tabSandbox` WRITE; -/*!40000 ALTER TABLE `tabSandbox` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSandbox` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSearch Criteria` --- - -DROP TABLE IF EXISTS `tabSearch Criteria`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSearch Criteria` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `disabled` int(1) default NULL, - `module` varchar(180) default NULL, - `criteria_name` varchar(180) default NULL, - `description` mediumtext, - `doc_type` varchar(180) default NULL, - `filters` text, - `columns` text, - `parent_doc_type` varchar(180) default NULL, - `add_cond` text, - `add_col` text, - `add_tab` text, - `dis_filters` text, - `group_by` varchar(180) default NULL, - `graph_series` varchar(180) default NULL, - `graph_values` varchar(180) default NULL, - `report_script` text, - `server_script` text, - `sort_order` varchar(180) default NULL, - `sort_by` varchar(180) default NULL, - `custom_query` text, - `standard` varchar(180) default NULL, - `page_len` int(11) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`), - KEY `standard` (`standard`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSearch Criteria` --- - -LOCK TABLES `tabSearch Criteria` WRITE; -/*!40000 ALTER TABLE `tabSearch Criteria` DISABLE KEYS */; -INSERT INTO `tabSearch Criteria` VALUES ('accounts_payable','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Accounts Payable',NULL,'GL Entry','{\'GL EntryIs Cancelled\':\'\',\'GL EntryFiscal Year\':\'\',\'GL EntryCompany\':\'\',\'Purchase InvoiceAging Based On\':\'Posting Date\',\'GL EntryRange 1\':\'30\',\'GL EntryRange 2\':\'45\',\'GL EntryRange 3\':\'60\',\'GL EntryRange 4\':\'90\'}','GL EntryPosting Date,GL EntryAccount,GL EntryAgainst Voucher,GL EntryVoucher No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabGL Entry`.`name`',NULL,'Yes',NULL,NULL),('accounts_receivable','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Accounts Receivable',NULL,'GL Entry','{\'GL EntryIs Cancelled\':\'No\',\'GL EntryFiscal Year\':\'\',\'GL EntryCompany\':\'\',\'GL EntryRange 1\':\'30\',\'GL EntryRange 2\':\'45\',\'GL EntryRange 3\':\'60\',\'GL EntryRange 4\':\'90\'}','GL EntryPosting Date,GL EntryTransaction Date,GL EntryAccount,GL EntryAgainst Voucher,GL EntryVoucher No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ASC','`tabGL Entry`.`name`',NULL,'Yes',NULL,NULL),('amc_summary','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Support','AMC Summary',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoStatus\':\'\'}','Serial NoTerritory',NULL,'`tabSerial No`.`territory` is not null\n`tabSerial No`.`territory` != \'\'\n`tabSerial No`.`status` not in (\'In Store\', \'Scrapped\')',NULL,NULL,NULL,'`tabSerial No`.`cost_center`',NULL,NULL,NULL,NULL,'ASC','`tabSerial No`.`cost_center`',NULL,'Yes',50,NULL),('bank_clearance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Bank Clearance report','Bank Clearance report','Journal Voucher Detail','{\'Journal VoucherSubmitted\':1,\'Journal VoucherVoucher Type\':\'\',\'Journal VoucherIs Opening\':\'\',\'Journal VoucherFiscal Year\':\'\',\'Journal VoucherCompany\':\'\',\'Journal VoucherTDS Applicable\':\'\',\'Journal VoucherTDS Category\':\'\'}','Journal VoucherID,Journal Voucher DetailAccount,Journal Voucher DetailDebit,Journal Voucher DetailCredit,Journal VoucherClearance Date,Journal VoucherCheque No,Journal VoucherCheque Date,Journal VoucherVoucher Date,Journal VoucherPosting Date,Journal Voucher DetailAgainst Payable,Journal Voucher DetailAgainst Receivable','Journal Voucher',NULL,NULL,NULL,'fiscal_year',NULL,NULL,NULL,NULL,NULL,'DESC','ID',NULL,'Yes',50,NULL),('bank_reconciliation_statement','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Bank Reconciliation Statement',NULL,'Journal Voucher Detail','{\'Journal VoucherSubmitted\':1,\'Journal VoucherVoucher Type\':\'\',\'Journal VoucherIs Opening\':\'\',\'Journal VoucherCompany\':\'\',\'Journal VoucherTDS Applicable\':\'\',\'Journal VoucherTDS Category\':\'\'}','Journal VoucherID,Journal VoucherPosting Date,Journal VoucherCheque No,Journal VoucherCheque Date,Journal VoucherClearance Date,Journal Voucher DetailAccount,Journal Voucher DetailDebit,Journal Voucher DetailCredit,Journal Voucher DetailAgainst Account','Journal Voucher','(`tabJournal Voucher Detail`.credit >= 0 or `tabJournal Voucher Detail`.credit is null)\n(`tabJournal Voucher`.cheque_no is not null or `tabJournal Voucher`.cheque_no != \'\')\n(ifnull(`tabJournal Voucher`.clearance_date, \'0000-00-00\') >\'%(clearance_date1)s\' or `tabJournal Voucher`.clearance_date is null or `tabJournal Voucher`.clearance_date = \'0000-00-00\')\n(`tabJournal Voucher`.posting_date <= \'%(clearance_date1)s\')',NULL,NULL,'clearance_date\nfiscal_year',NULL,NULL,NULL,NULL,NULL,'DESC','`tabJournal Voucher`.`name`',NULL,'Yes',50,NULL),('budget_variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Budget Variance Report',NULL,'Budget Detail','{\'Budget DetailFiscal Year\':\'\'}',NULL,'Cost Center',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabCost Center`.`lft`',NULL,'Yes',50,NULL),('business_associate_commission_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Business Associate Commission Report','Track total commission given to your Business Associate','Sales Invoice','{\'Sales InvoiceSubmitted\':1}','Sales InvoiceBusiness Associate',NULL,'`tabSales Invoice`.`net_total` > 0\n`tabSales Invoice`.`total_commission` > 0','SUM(`tabSales Invoice`.`total_commission`) AS \'Total Commission\'\nSUM(`tabSales Invoice`.`net_total`) AS \'Net Total\'\n((SUM(`tabSales Invoice`.`total_commission`) / SUM(`tabSales Invoice`.`net_total`)) * 100) AS \'Average Commission Rate\'',NULL,NULL,'`tabSales Invoice`.sales_partner',NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('collection_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Collection Report',NULL,'Journal Voucher Detail','{\'Journal VoucherSaved\':1,\'Journal VoucherSubmitted\':1,\'Journal VoucherVoucher Type\':\'\',\'Journal VoucherIs Opening\':\'\',\'Journal VoucherCompany\':\'\',\'Journal VoucherTDS Applicable\':\'\',\'Journal VoucherTDS Category\':\'\',\'GL EntryRange 1\':\'30\',\'GL EntryRange 2\':\'45\',\'GL EntryRange 3\':\'60\',\'GL EntryRange 4\':\'90\'}','Journal VoucherID,Journal VoucherPosting Date,Journal VoucherCompany,Journal VoucherCheque No,Journal VoucherCheque Date,Journal Voucher DetailAccount,Journal Voucher DetailCredit,Journal Voucher DetailAgainst Receivable,Journal Voucher DetailIs Advance','Journal Voucher',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabJournal Voucher`.`name`',NULL,'Yes',NULL,NULL),('consumption_against_production','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Production','Consumption Against Production',NULL,'Stock Entry Detail','{\'Stock EntrySubmitted\':1,\'Stock EntryPurpose\':\'Production Order\',\'Stock EntryProcess\':\'\'}','Stock EntryID,Stock EntryProduction Order,Stock EntryProcess,Stock EntryPosting Date,Stock EntryCompany,Stock Entry DetailSource Warehouse,Stock Entry DetailTarget Warehouse,Stock Entry DetailFG Item,Stock Entry DetailItem Code,Stock Entry DetailDescription,Stock Entry DetailReqd Qty,Stock Entry DetailTransfer Quantity','Stock Entry','`tabProduction Order`.name = `tabStock Entry`.production_order','`tabProduction Order`.consider_sa_items','`tabProduction Order`',NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabStock Entry`.`name`',NULL,'Yes',50,NULL),('cost_center_wise_expense','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','swarnalata@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Cost Center wise Expense',NULL,'GL Entry','{\'GL EntryVoucher Type\':\'\',\'GL EntryIs Cancelled\':\'\',\'GL EntryFiscal Year\':\'\',\'GL EntryCompany\':\'\'}',NULL,NULL,NULL,NULL,NULL,'fiscal_year',NULL,NULL,NULL,NULL,NULL,'DESC','`tabGL Entry`.`name`',NULL,'Yes',50,NULL),('creditors_ledger','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Creditor\'s Ledger',NULL,'GL Entry','{\'GL EntryVoucher Type\':\'\',\'GL EntryIs Cancelled\':\'\',\'GL EntryIs Opening\':\'\',\'GL EntryFiscal Year\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('customer_address_contact','2012-07-12 19:25:48','2012-05-23 18:17:40','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Customer Address Contact',NULL,'Customer','{\'CustomerSaved\':1,\'CustomerSubmitted\':1}','CustomerID,CustomerCustomer Name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yes',50,NULL),('customer_issues','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Support','Customer Issues',NULL,'Customer Issue','{\'Customer IssueSaved\':1,\'Customer IssueSubmitted\':1,\'Customer IssueStatus\':\'\',\'Customer IssueFiscal Year\':\'\'}','Customer IssueID,Customer IssueStatus,Customer IssueComplaint Date,Customer IssueComplaint,Customer IssueItem Code,Customer IssueItem Name,Customer IssueAllocated To,Customer IssueAllocated On,Customer IssueResolved By,Customer IssueResolution Date,Customer IssueCustomer Name,Customer IssueFiscal Year',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabCustomer Issue`.`name`',NULL,'Yes',50,NULL),('custom_test2','2010-12-14 17:56:44','2010-11-19 16:00:07','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','custom test',NULL,'Delivery Note Item','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteProject Name\':\'Test Project1\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NotePosting Date,Delivery NotePosting Time,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemDescription,Delivery NoteProject Name,Delivery Note ItemQuantity,Delivery Note ItemRate*,Delivery Note ItemAmount*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','DESC','`tabDelivery Note`.`name`','','No',50,NULL),('custom_test3','2010-12-14 17:56:44','2010-11-19 16:00:07','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','custom test',NULL,'Delivery Note Item','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteProject Name\':\'Test Project1\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NotePosting Date,Delivery NotePosting Time,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemDescription,Delivery NoteProject Name,Delivery Note ItemQuantity,Delivery Note ItemRate*,Delivery Note ItemAmount*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','DESC','`tabDelivery Note`.`name`','','No',50,NULL),('custom_test4','2010-12-14 17:56:44','2010-11-19 16:00:07','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','custom test',NULL,'Delivery Note Item','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteProject Name\':\'Test Project1\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NotePosting Date,Delivery NotePosting Time,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemDescription,Delivery NoteProject Name,Delivery Note ItemQuantity,Delivery Note ItemRate*,Delivery Note ItemAmount*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','DESC','`tabDelivery Note`.`name`','','No',50,NULL),('debtors_ledger','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Debtor\'s Ledger',NULL,'GL Entry','{\'GL EntryVoucher Type\':\'\',\'GL EntryIs Cancelled\':\'No\',\'GL EntryIs Opening\':\'\',\'GL EntryFiscal Year\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('delivered_items_to_be_install','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Delivered Items to be Install','Delivered Items to be Install','Delivery Note Item','{\'Delivery NoteSaved\':1,\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NoteStatus,Delivery NoteCustomer,Delivery NoteCustomer Name,Delivery NoteContact Person,Delivery NoteVoucher Date,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemQuantity,Delivery Note ItemInstalled Qty,Delivery Note% Installed','Delivery Note','`tabDelivery Note Item`.`qty` > ifnull(`tabDelivery Note Item`.`installed_qty`, 0)','(`tabDelivery Note Item`.`qty`- ifnull(`tabDelivery Note Item`.`installed_qty`, 0)) AS \'Pending to Install\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('delivered_items_to_be_install1','2010-09-01 15:47:57','2010-08-30 12:59:18','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Selling','Delivered Items to be Install','Delivered Items to be Install','Delivery Note Item','{\'Delivery NoteSaved\':1,\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NoteStatus,Delivery NoteCustomer,Delivery NoteCustomer Name,Delivery NoteContact Person,Delivery NoteVoucher Date,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemQuantity,Delivery Note ItemInstalled Qty,Delivery Note% Installed','Delivery Note','','(`tabDelivery Note Item`.`qty`- `tabDelivery Note Item`.`installed_qty`) AS \'Pending to Install\'','',NULL,NULL,NULL,NULL,'report.customize_filters = function() {\n this.filter_fields_dict[\'Delivery Note\'+FILTER_SEP +\'Company\'].df[\'report_default\'] = sys_defaults.company;\n this.filter_fields_dict[\'Delivery Note\'+FILTER_SEP +\'Fiscal Year\'].df[\'report_default\'] = sys_defaults.fiscal_year;\n}',NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('delivery_note_itemwise_pending_to_bill','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Selling','Delivery Note Itemwise Pending To Bill',NULL,'Delivery Note Item','{\'Delivery NoteSaved\':1,\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteCompany Name\':\'\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NoteOwner,Delivery NoteStatus,Delivery NoteCustomer Name,Delivery NoteVoucher Date,Delivery Note% Billed,Delivery NotePosting Date,Delivery NoteCompany Name,Delivery NoteFiscal Year,Delivery Note ItemItem Code,Delivery Note ItemAgainst Document No,Delivery Note ItemDocument Type,Delivery Note ItemAgainst Document Detail No','Delivery Note','`tabDelivery Note`.status != \'Stopped\'\nCASE WHEN `tabDelivery Note`.`per_billed` IS NULL OR `tabDelivery Note`.per_billed = \'\' THEN 0 < 100 ELSE `tabDelivery Note`.per_billed <100 END','SUM(`tabDelivery Note Item`.`qty` - `tabDelivery Note Item`.`billed_qty`) AS \'Pending Qty\'\nSUM((`tabDelivery Note Item`.`qty` - `tabDelivery Note Item`.`billed_qty`) * `tabDelivery Note Item`.`basic_rate`) AS \'Pending Amount\'',NULL,NULL,'`tabDelivery Note Item`.item_code, `tabDelivery Note`.`name`',NULL,NULL,NULL,NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('draft_sales_orders','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Selling','Draft Sales Orders','List of Open Sales orders filtered by period, customer and other details','Sales Order','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'Draft\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderStatus,Sales OrderSales Order Date,Sales OrderCustomer,Sales OrderP.O. No,Sales OrderGrand Total',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('employees_birthday','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'HR','Employee\'s Birthday',NULL,'Employee','{\'EmployeeSaved\':1,\'EmployeeGender\':\'\',\'EmployeeMonth of Birth\':\'May\',\'EmployeeStatus\':\'\'}','EmployeeID,EmployeeEmployee Name,EmployeeDepartment,EmployeeGender,EmployeeDate of Birth,EmployeeMonth of Birth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabEmployee`.`name`',NULL,'Yes',50,NULL),('employee_appraisals','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Employee Appraisals',NULL,'Appraisal','{\'AppraisalSaved\':1,\'AppraisalSubmitted\':1,\'AppraisalStatus\':\'\',\'AppraisalFiscal Year\':\'\'}','AppraisalID,AppraisalStatus,AppraisalEmployee,AppraisalEmployee Name,AppraisalStart Date,AppraisalEnd Date,AppraisalApprover,AppraisalTotal Score',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabAppraisal`.`name`',NULL,'Yes',50,NULL),('employee_information','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Employee Information',NULL,'Employee','{\'EmployeeSaved\':1,\'EmployeeSubmitted\':1,\'EmployeeGender\':\'\',\'EmployeeMonth of Birth\':\'\',\'EmployeeStatus\':\'\'}','EmployeeID,EmployeeEmployee Name,EmployeeEmployee Number,EmployeeDate of Joining,EmployeeGender,EmployeeDate of Birth,EmployeeEmployment Type,EmployeeScheduled Confirmation Date,EmployeeContract End Date,EmployeeStatus,EmployeeBranch,EmployeeDepartment,EmployeeDesignation,EmployeeGrade,EmployeeReports to,EmployeeEmail (By company),EmployeeBank Name,EmployeeRelieving Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabEmployee`.`name`',NULL,'Yes',50,NULL),('employee_leave_balance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Employee Leave Balance Report','Employeewise Balance Leave Report','Employee','{\'EmployeeSaved\':1,\'EmployeeSubmitted\':1,\'EmployeeGender\':\'\',\'EmployeeMonth of Birth\':\'\',\'EmployeeStatus\':\'Active\'}','EmployeeID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'ASC','`tabEmployee`.`name`',NULL,'Yes',100,NULL),('enquiry-quotations_to_be_sent','2010-08-08 17:09:31','2010-07-16 13:29:58','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','Enquiry-Quotations to be sent',NULL,'Opportunity','{}','OpportunityID,OpportunityOwner',NULL,'`tabQuotation`.enq_no!=`tabOpportunity`.name\n',NULL,'tabQuotation',NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabOpportunity`.`name`',NULL,'Yes',50,NULL),('enquiry-to_follow_up','2010-09-01 15:47:57','2010-08-30 12:08:00','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','Enquiry-To follow up',NULL,'Opportunity','{\'OpportunityFiscal Year\':\'\'}','OpportunityID,OpportunityOwner,OpportunityCompany,OpportunityFiscal Year',NULL,'`tabOpportunity`.name=`tabQuotation`.enq_no\n`tabOpportunity`.docstatus=1\n`tabQuotation`.status=\'Submitted\'','',NULL,NULL,NULL,NULL,NULL,'report.customize_filters = function() {\n\n this.filter_fields_dict[\'Opportunity\'+FILTER_SEP +\'Company\'].df[\'report_default\'] = sys_defaults.company;\n this.filter_fields_dict[\'Opportunity\'+FILTER_SEP +\'Fiscal Year\'].df[\'report_default\'] = sys_defaults.fiscal_year;\n}',NULL,'DESC','`tabOpportunity`.`name`',NULL,'Yes',50,NULL),('expense_claims','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Expense Claims',NULL,'Expense Claim','{\'Expense ClaimSaved\':1,\'Expense ClaimSubmitted\':1,\'Expense ClaimApproval Status\':\'\',\'Expense ClaimFiscal Year\':\'\'}','Expense ClaimID,Expense ClaimApproval Status,Expense ClaimFrom Employee,Expense ClaimEmployee Name,Expense ClaimApprover,Expense ClaimPosting Date,Expense ClaimTotal Claimed Amount,Expense ClaimTotal Sanctioned Amount',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabExpense Claim`.`name`',NULL,'Yes',50,NULL),('general_ledger','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','General Ledger',NULL,'GL Entry','{\'GL EntryFrom Posting Datelower\':\'\',\'GL EntryTo Posting Dateupper\':\'\',\'GL EntryVoucher Type\':\'\',\'GL EntryIs Cancelled\':\'No\',\'GL EntryIs Opening\':\'\',\'GL EntryFiscal Year\':\'\',\'GL EntryCompany\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabGL Entry`.`name`',NULL,'Yes',50,NULL),('gross_profit','2012-10-02 13:17:59','2012-09-24 14:11:39','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Gross Profit','Invoice wise','Delivery Note Item','{\"Delivery Note\\u0001Submitted\":1,\"Delivery Note\\u0001Status\":[],\"Delivery Note\\u0001Fiscal Year\":[]}','Delivery NoteID,Delivery NotePosting Date,Delivery NotePosting Time,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemDescription,Delivery Note ItemWarehouse,Delivery NoteProject Name,Delivery Note ItemQuantity,Delivery Note ItemRate*,Delivery Note ItemAmount*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('indent-purchase_order_to_be_made','2010-08-08 17:09:32','2010-05-13 17:37:18','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','Indent-Purchase Order to be made',NULL,'Purchase Request','{\'Purchase RequestSubmitted\':1,\'Purchase RequestStatus\':\'Submitted\',\'Purchase RequestFiscal Year\':\'\'}','Purchase RequestID,Purchase RequestPurchase Request Date,Purchase RequestRequested By,Purchase RequestOwner,Purchase Request% Ordered',NULL,'`tabPurchase Request`.status=\'Submitted\'\nifnull(`tabPurchase Request`.per_ordered,0)<100',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Request`.`name`',NULL,'Yes',50,NULL),('indent-to_be_submitted','2010-08-08 17:09:32','2010-05-13 17:38:49','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','Indent-To be submitted',NULL,'Purchase Request','{\'Purchase RequestSaved\':1,\'Purchase RequestStatus\':\'Draft\',\'Purchase RequestFiscal Year\':\'\'}','Purchase RequestID,Purchase RequestOwner,Purchase RequestPurchase Request Date,Purchase RequestRemarks',NULL,'`tabPurchase Request`.status=\'Draft\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Request`.`name`',NULL,'Yes',50,NULL),('invoices-overdue','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Invoices-Overdue',NULL,'Sales Invoice','{\'Sales InvoiceSaved\':1,\'Sales InvoiceSubmitted\':1,\'Sales InvoiceIs Opening\':\'\',\'Sales InvoiceFiscal Year\':\'\'}','Sales InvoiceID,Sales InvoiceDebit To,Sales InvoiceVoucher Date,Sales InvoiceDue Date,Sales InvoiceOutstanding Amount',NULL,'`tabSales Invoice`.due_date 0 or `tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.billed_qty, 0) > 0)\n`tabPurchase Order`.status != \"Stopped\"','(CASE WHEN (`tabPurchase Order Item`.qty- ifnull(`tabPurchase Order Item`.billed_qty, 0) > 0 ) THEN (`tabPurchase Order Item`.qty-ifnull(`tabPurchase Order Item`.billed_qty, 0) ) ELSE 0 END) AS \"Pending To Bill\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Order`.`name`',NULL,'Yes',50,NULL),('pending_po_items_to_receive','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Buying','Pending PO Items To Receive','Pending PO Items To Receive','Purchase Order Item','{\'Purchase OrderSaved\':1,\'Purchase OrderSubmitted\':1,\'Purchase OrderStatus\':\'\',\'Purchase OrderFiscal Year\':\'\'}','Purchase OrderID,Purchase OrderSupplier,Purchase OrderSupplier Name,Purchase OrderStatus,Purchase OrderPO Date,Purchase OrderFiscal Year,Purchase Order ItemPurchase Request No,Purchase Order ItemItem Code,Purchase Order ItemItem Name,Purchase Order ItemDescription,Purchase Order ItemQuantity,Purchase Order ItemUOM,Purchase Order ItemReceived Qty','Purchase Order','`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0) > 0 \n`tabPurchase Order`.status != \"Stopped\"','`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0) AS \"Pending Quantity To Receive\"\n(`tabPurchase Order Item`.qty - ifnull(`tabPurchase Order Item`.received_qty, 0)) * `tabPurchase Order Item`.purchase_rate AS \"Pending Amount To Receive\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Order`.`name`',NULL,'Yes',50,NULL),('production_orders_in_process','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','jai@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Production','Production Orders In Process',NULL,'Production Order','{\'Production OrderSubmitted\':1,\'Production OrderOrigin\':\'\',\'Production OrderStatus\':\'\',\'Production OrderConsider SA Items\':\'\',\'Production OrderFiscal Year\':\'\'}','Production OrderID,Production OrderOrigin,Production OrderStatus,Production OrderPosting Date,Production OrderProduction Item,Production OrderBOM No,Production OrderDescription,Production OrderStock UOM,Production OrderQty,Production OrderProduced Qty,Production OrderFG Warehouse,Production OrderWIP Warehouse,Production OrderConsider SA Items,Production OrderFiscal Year,Production OrderCompany',NULL,'`tabProduction Order`.qty > `tabProduction Order`.produced_qty',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabProduction Order`.`name`',NULL,'Yes',50,NULL),('projectwise_delivered_qty_and_costs','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Delivered Qty and Costs',NULL,'Delivery Note Item','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'Submitted\',\'Delivery NoteFiscal Year\':\'\'}','Delivery NoteID,Delivery NoteProject Name,Delivery NoteCustomer,Delivery NoteCustomer Name,Delivery Note ItemItem Code,Delivery Note ItemItem Name,Delivery Note ItemQuantity,Delivery NotePosting Date,Delivery Note% Billed,Delivery Note ItemAmount*','Delivery Note','IFNULL(`tabDelivery Note`.`project_name`,\"\")!=\"\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabDelivery Note`.`name`',NULL,'Yes',50,NULL),('projectwise_pending_qty_and_costs','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Pending Qty and Costs',NULL,'Sales Order Item','{\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'Submitted\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderProject Name,Sales OrderCustomer,Sales OrderCustomer Name,Sales Order ItemItem Code,Sales Order ItemItem Name,Sales Order% Delivered,Sales Order% Billed,Sales OrderSales Order Date,Sales OrderExpected Delivery Date','Sales Order','`tabSales Order Item`.`qty` > `tabSales Order Item`.`delivered_qty`\nIFNULL(`tabSales Order`.`project_name`,\"\")!=\"\"\n`tabSales Order`.order_type = \'Sales\'','SUM(`tabSales Order Item`.`qty` - `tabSales Order Item`.`delivered_qty`) AS \'Pending Qty\'\nSUM((`tabSales Order Item`.`qty` - `tabSales Order Item`.`delivered_qty`)* `tabSales Order Item`.basic_rate) AS \'Pending Amount\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('projectwise_purchase_details','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Purchase Details',NULL,'Purchase Order','{\'Purchase OrderStatus\':\'\',\'Purchase OrderFiscal Year\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('projectwise_sales_details','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Sales Details',NULL,'Sales Order','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('projectwise_sales_orders','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Projectwise Sales Orders',NULL,'Sales Order','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderStatus,Sales OrderProject Name,Sales OrderCustomer,Sales OrderSales Order Date,Sales OrderExpected Delivery Date,Sales OrderQuotation No,Sales Order% Delivered,Sales Order% Billed,Sales OrderGrand Total*',NULL,'ifnull(`tabSales Order`.project_name ,\'\') != \'\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('projectwise_tracking_of_all_stock_movements','2010-12-14 17:52:48','2010-11-30 13:42:06','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Development','Projectwise Tracking of All Stock Movements',NULL,'Project','{\'ProjectStatus\':\'Open\'}','ProjectID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'report.customize_filters = function() {\n this.hide_all_filters();\n this.filter_fields_dict[\'Project\'+FILTER_SEP +\'ID\'].df.filter_hide = 0;\n this.filter_fields_dict[\'Project\'+FILTER_SEP +\'ID\'].df.in_first_page = 1;\n}\n\nthis.mytabs.items[\'Select Columns\'].hide();\nthis.mytabs.items[\'More Filters\'].hide();','cols=[]\ntotal_budget, total_grn, total_deliveries, total_stock_entries, total_agg, agg = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0\n\ncols = [[\'Project Desc\',\'Data\',\'200px\',\'\'], [\'Project Value\',\'Currency\',\'150px\',\'\'], [\'Cost of all GRN\',\'Currency\',\'150px\',\'\'], [\'Cost of all Deliveries\',\'Currency\',\'150px\',\'\'], [\'Cost of all Stock Entries\',\'Currency\',\'150px\',\'\'], [\'Aggregate value of all Movements\',\'Currency\',\'200px\',\'\']]\n\nfor c in cols:\n colnames.append(c[0])\n coltypes.append(c[1])\n colwidths.append(c[2])\n coloptions.append(c[3])\n col_idx[c[0]] = len(colnames)-1\n \nfor r in res: \n proj = sql(\"select notes, project_value from `tabProject` where name= %s\", r[0])\n \n r.append(proj and proj[0][0] or \'\')\n r.append(flt(proj and proj[0][1] or 0))\n \n pr = sql(\"SELECT SUM(net_total) FROM `tabPurchase Receipt` WHERE project_name= %s AND docstatus = 1 Group By project_name\", r[0])\n pr = pr and pr[0][0] or 0\n r.append(flt(pr))\n \n #dn = sql(\"SELECT SUM(net_total) FROM `tabDelivery Note` WHERE project_name= %s AND docstatus = 1 Group By project_name\", r[0])\n #dn = dn and dn[0][0] or 0 \n #r.append(flt(dn))\n sle = sql(\"select actual_qty, valuation_rate from `tabStock Ledger Entry` where voucher_no in (SELECT name FROM `tabDelivery Note` WHERE project_name= \'%s\' AND docstatus = 1 Group By project_name) AND voucher_type = \'Delivery Note\' AND is_cancelled = \'No\'\"% (r[0]), as_dict=1)\n calc_cost = 0\n for y in sle:\n cost = 0\n cost = abs(y[\'actual_qty\']) * y[\'valuation_rate\']\n calc_cost = calc_cost + cost\n r.append(flt(calc_cost))\n \n si = sql(\"SELECT SUM(total_amount) FROM `tabStock Entry` WHERE project_name= %s AND docstatus = 1 Group By project_name\", r[0])\n si = si and si[0][0] or 0 \n r.append(flt(si))\n \n agg = flt(pr+dn+si)/4\n r.append(flt(agg))\n \n total_budget += flt(r[col_idx[\'Project Value\']])\n total_grn += flt(r[col_idx[\'Cost of all GRN\']])\n total_deliveries += flt(r[col_idx[\'Cost of all Deliveries\']])\n total_stock_entries += flt(r[col_idx[\'Cost of all Stock Entries\']])\n total_agg += flt(r[col_idx[\'Aggregate value of all Movements\']])\n \ntotal = [\'\', \'Total\', total_budget, total_grn, total_deliveries, total_stock_entries, total_agg]\nres.append(total)','DESC','`tabProject`.`name`',NULL,'Yes',50,NULL),('purchase_in_transit','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Buying','Purchase in Transit','List of PR whose posting date is after PV posting date','Purchase Invoice Item','{\"Purchase Invoice\\u0001Submitted\":1,\"Purchase Invoice\\u0001Is Opening\":[\"\"],\"Purchase Invoice\\u0001Fiscal Year\":[\"\"]}','Purchase InvoiceID,Purchase InvoicePosting Date,Purchase InvoiceCredit To,Purchase Invoice ItemQty,Purchase Invoice ItemAmount,Purchase Invoice ItemPur Order,Purchase Invoice ItemPur Receipt','Purchase Invoice','`tabPurchase Invoice Item`.`purchase_receipt` = `tabPurchase Receipt`.`name`\n`tabPurchase Receipt`.`posting_date` >= \'%(pr_posting_date)s\'\n`tabPurchase Receipt`.`posting_date` <= \'%(pr_posting_date1)s\'\n`tabPurchase Receipt`.`posting_date` > `tabPurchase Invoice`.`posting_date`','`tabPurchase Receipt`.`posting_date` AS \'PR Posting Date\'','`tabPurchase Receipt`','`tabPurchase Receipt`.`pr_posting_date`',NULL,NULL,NULL,NULL,NULL,'DESC','`tabPurchase Invoice`.`name`',NULL,'Yes',50,NULL),('purchase_register','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Purchase Register',NULL,'Purchase Invoice','{\'Purchase InvoiceSubmitted\':1}','Purchase InvoiceID,Purchase InvoiceVoucher Date,Purchase InvoicePosting Date,Purchase InvoiceCredit To,Purchase InvoiceExpense Head',NULL,'`tabPurchase Invoice`.is_opening != \'Yes\'\n`tabPurchase Invoice`.name not like \'OP/%\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yes',NULL,NULL),('salary_register','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'HR','Salary Register',NULL,'Salary Slip','{\'Salary SlipSubmitted\':1,\'Salary SlipMonth\':\'\'}','Salary SlipID,Salary SlipEmployee,Salary SlipEmployee Name,Salary SlipYear,Salary SlipMonth,Salary SlipTotal days in month,Salary SlipPayment days',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSalary Slip`.`name`',NULL,'Yes',50,NULL),('salary_slips','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'HR','Salary Slips',NULL,'Salary Slip','{\'Salary SlipSaved\':1,\'Salary SlipSubmitted\':1}','Salary SlipID,Salary SlipFiscal Year,Salary SlipMonth,Salary SlipEmployee,Salary SlipEmployee Name,Salary SlipDepartment,Salary SlipDesignation,Salary SlipBranch,Salary SlipGrade,Salary SlipPF No.,Salary SlipESIC No.,Salary SlipLeave Without Pay,Salary SlipBank Name,Salary SlipBank Account No.,Salary SlipPayment days,Salary SlipArrear Amount,Salary SlipEncashment Amount,Salary SlipGross Pay,Salary SlipTotal Deduction,Salary SlipNet Pay',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSalary Slip`.`name`',NULL,'Yes',50,NULL),('salary_structure_details','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'HR','Salary Structure Details',NULL,'Salary Structure','{\'Salary StructureBranch\':\'\',\'Salary StructureDesignation\':\'\',\'Salary StructureDepartment\':\'\',\'Salary StructureGrade\':\'\',\'Salary StructureIs Active\':\'\'}','Salary StructureID,Salary StructureEmployee,Salary StructureFrom Date,Salary StructureTo Date,Salary StructureFiscal Year,Salary StructureBranch,Salary StructureDesignation,Salary StructureDepartment,Salary StructureGrade,Salary StructureIs Active,Salary StructureTotal Earning,Salary StructureTotal Deduction,Salary StructureCTC,Salary StructureTotal',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSalary Structure`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_booking_&_delivery_summary','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Orderwise Booking & Delivery Summary','Sales Orderwise Booking & Delivery Summary','Sales Order Item','{\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderStatus,Sales Order% Billed,Sales OrderSales Order Date,Sales OrderCustomer,Sales OrderCustomer Name,Sales OrderTerritory','Sales Order',NULL,'SUM(CASE WHEN `tabSales Order`.`status` = \'Stopped\' THEN (`tabSales Order Item`.`delivered_qty` * `tabSales Order Item`.`basic_rate`) ELSE (`tabSales Order Item`.`qty` * `tabSales Order Item`.`basic_rate`) END) AS \'Booking Total\'\nSUM(`tabSales Order Item`.`delivered_qty` * `tabSales Order Item`.`basic_rate`) AS \'Delivered Amount\'',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_pending_amount_to_bill','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Orderwise Pending Amount To Bill','Sales Orderwise Pending Amount To Bill','Sales Order Item','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderCompany Name\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderCustomer,Sales OrderCustomer Address,Sales OrderStatus,Sales Order% Delivered,Sales Order% Billed,Sales OrderCompany Name,Sales OrderSales Order Date,Sales OrderNet Total,Sales OrderZone,Sales OrderTerritory,Sales OrderEmail Id','Sales Order','`tabSales Order`.status != \"Stopped\"\n`tabSales Order`.order_type!=\"Maintenance\"','SUM((`tabSales Order Item`.`qty` - ifnull(`tabSales Order Item`.`billed_qty`, 0)) * `tabSales Order Item`.`basic_rate`) AS \"Pending Amount\"',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_pending_amount_to_bill1','2010-09-01 15:47:57','2010-08-30 12:56:53','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','Sales Orderwise Pending Amount To Bill','Sales Orderwise Pending Amount To Bill','Sales Order Item','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderCompany Name\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderCustomer,Sales OrderCustomer Address,Sales OrderStatus,Sales Order% Delivered,Sales Order% Billed,Sales OrderCompany Name,Sales OrderSales Order Date,Sales OrderNet Total,Sales OrderZone,Sales OrderTerritory,Sales OrderEmail Id','Sales Order','`tabSales Order`.status != \'Stopped\'\n`tabSales Order`.order_type!=\'Maintenance\'','SUM((`tabSales Order Item`.`qty` - `tabSales Order Item`.`billed_qty`) * `tabSales Order Item`.`basic_rate`) AS \'Pending Amount\'',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,'report.customize_filters = function() {\n this.filter_fields_dict[\'Sales Order\'+FILTER_SEP +\'Company\'].df[\'report_default\'] = sys_defaults.company;\n this.filter_fields_dict[\'Sales Order\'+FILTER_SEP +\'Fiscal Year\'].df[\'report_default\'] = sys_defaults.fiscal_year;\n}',NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_pending_qty_to_deliver','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Orderwise Pending Qty To Deliver','Sales Orderwise Pending Qty To Deliver','Sales Order Item','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderCustomer,Sales OrderCustomer Name,Sales OrderCustomer Address,Sales OrderStatus,Sales Order% Delivered,Sales Order% Billed,Sales OrderSales Order Date,Sales OrderTerritory,Sales OrderEmail Id','Sales Order','`tabSales Order`.status != \"Stopped\"\n`tabSales Order Item`.`qty` > ifnull(`tabSales Order Item`.`delivered_qty`, 0)','SUM(`tabSales Order Item`.`qty` - ifnull(`tabSales Order Item`.`delivered_qty`, 0)) AS \"Pending Qty\"',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_orderwise_pending_qty_to_deliver1','2010-09-01 15:47:57','2010-08-30 12:50:55','Administrator','dhanalekshmi@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','Sales Orderwise Pending Qty To Deliver','Sales Orderwise Pending Qty To Deliver','Sales Order Item','{\'Sales OrderSaved\':1,\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales OrderCustomer,Sales OrderCustomer Name,Sales OrderCustomer Address,Sales OrderStatus,Sales Order% Delivered,Sales Order% Billed,Sales OrderSales Order Date,Sales OrderTerritory,Sales OrderEmail Id','Sales Order','`tabSales Order`.status != \'Stopped\'\n`tabSales Order Item`.`qty` > `tabSales Order Item`.`delivered_qty`','SUM(`tabSales Order Item`.`qty` - `tabSales Order Item`.`delivered_qty`) AS \'Pending Qty\'',NULL,NULL,'`tabSales Order`.`name`',NULL,NULL,NULL,'','DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_order_pending_items','2012-05-18 12:00:33','2012-05-18 08:30:33','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Order Pending Items','Sales Order Pending Items','Sales Order Item','{\"Sales Order\\u0001Submitted\":1,\"Sales Order\\u0001Fiscal Year\":[],\"Sales Order\\u0001Status\":[]}','Sales OrderID,Sales OrderSales Order Date,Sales OrderCustomer,Sales Order ItemItem Code,Sales Order ItemItem Name,Sales Order ItemDescription,Sales Order ItemQuantity,Sales Order ItemDelivered Qty','Sales Order','(`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0) > 0 or `tabSales Order Item`.qty - ifnull(`tabSales Order Item`.billed_qty, 0) > 0)\n`tabSales Order`.status != \"Stopped\"','(`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0)) AS \"Qty To Deliver\"\n(`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.delivered_qty, 0))*`tabSales Order Item`.basic_rate AS \"Amount To Deliver\"\n(`tabSales Order Item`.qty - ifnull(`tabSales Order Item`.billed_qty, 0))*`tabSales Order Item`.basic_rate AS \"Amount To Bill\"',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Order`.`name`',NULL,'Yes',50,NULL),('sales_persons_target_variance_item_group_wise','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Persons Target Variance (Item Group wise)',NULL,'Target Detail','{\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\',\'Target DetailFiscal Year\':\'\'}',NULL,'Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabTarget Detail`.`target_amount`',NULL,'Yes',50,NULL),('sales_personwise_transaction_summary','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Sales Personwise Transaction Summary',NULL,'Sales Person','{\'Sales PersonSaved\':1,\'Sales PersonSubmitted\':1,\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\'}','Sales PersonID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Person`.`name`',NULL,'Yes',50,NULL),('sales_register','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Sales Register',NULL,'Sales Invoice','{\'Sales InvoiceSubmitted\':1,\'Sales InvoiceIs Opening\':\'\'}','Sales InvoiceID,Sales InvoicePosting Date,Sales InvoiceDebit To',NULL,'ifnull(`tabSales Invoice`.`is_opening`, \'No\') = \'No\'\n`tabAccount`.name =`tabSales Invoice`.debit_to\n`tabCustomer`.`name` = `tabAccount`.`master_name`','`tabAccount`.`parent_account` AS \'Parent Account\'\n`tabCustomer`.`territory` AS \'Territory\'\n`tabCustomer`.`customer_details` AS \'Customer Details\'','`tabAccount`\n`tabCustomer`','fiscal_year',NULL,NULL,NULL,NULL,NULL,'DESC','`Parent Account`',NULL,'Yes',50,NULL),('serial_no-amc_expiring_this_month','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Serial No-AMC expiring this month',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoSubmitted\':1,\'Serial NoStatus\':\'\',\'Serial NoWarranty Status\':\'\'}','Serial NoID,Serial NoStatus,Serial NoAMC Expiry Date,Serial NoCustomer Name',NULL,'`tab Serial No`.month(amc_expiry_date)=month(now()) \n`tab Serial No`.year(amc_expiry_date)=year(now())',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSerial No`.`name`',NULL,'Yes',50,NULL),('serial_no-warranty_expiring_this_month','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Serial No-Warranty expiring this month',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoSubmitted\':1,\'Serial NoStatus\':\'Issued\',\'Serial NoMaintenance Status\':\'\'}','Serial NoID,Serial NoStatus,Serial NoWarranty Expiry Date,Serial NoCustomer Name',NULL,'`tab Serial No`.docstatus!=2\n`tab Serial No`.maintenance_status=\'Under Warranty\'\n`tab Serial No`.status!=\'Scrapped\'\n`tab Serial No`.status!=\'Not in Use\'\n`tab Serial No`.month(ifnull(warranty_expiry_date,0)) = month(now()) \n`tab Serial No`.yearmonth(ifnull(warranty_expiry_date,0)) = year(now())',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSerial No`.`name`',NULL,'Yes',50,NULL),('shortage_to_purchase_request','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','wasim@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Stock','Shortage To Purchase Request',NULL,'Item','{\'ItemSaved\':1}','ItemID,ItemItem Name,ItemDescription,ItemLead Time Days',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabItem`.`name`',NULL,'Yes',50,NULL),('stock_aging_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Stock','Stock Aging Report',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoSubmitted\':1,\'Serial NoStatus\':\'In Store\',\'Serial NoMaintenance Status\':\'\'}','Serial NoID,Serial NoItem Code,Serial NoDescription,Serial NoItem Group,Serial NoPurchase Date',NULL,'`tabSerial No`.status = \'In Store\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSerial No`.`name`',NULL,'Yes',1000,NULL),('stock_ledger','2012-10-02 13:17:58','2012-09-13 15:38:45','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Stock','Stock Ledger',NULL,'Stock Ledger Entry','{\"Stock Ledger Entry\\u0001Warehouse Type\":[\"\"],\"Stock Ledger Entry\\u0001Company\":[\"\"],\"Stock Ledger Entry\\u0001Is Cancelled\":[\"\"],\"Stock Ledger Entry\\u0001Is Stock Entry\":[\"\"]}','Stock Ledger EntryItem Code,Stock Ledger EntryWarehouse,Stock Ledger EntryPosting Date,Stock Ledger EntryPosting Time,Stock Ledger EntryActual Quantity,Stock Ledger EntryBin Actual Qty After Transaction,Stock Ledger EntryVoucher Type,Stock Ledger EntryVoucher No',NULL,'`tabItem`.`name` = `tabStock Ledger Entry`.`item_code`','`tabItem`.`item_name`\n`tabItem`.`description`','`tabItem`',NULL,NULL,NULL,NULL,NULL,NULL,'ASC','`tabStock Ledger Entry`.`posting_date`, `tabStock Ledger Entry`.`posting_time`, `tabStock Ledger Entry`.`name`',NULL,'Yes',50,NULL),('stock_level','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Stock','Stock Level',NULL,'Bin','{}','BinWarehouse,BinItem Code,BinUOM,BinReserved Quantity,BinActual Quantity,BinOrdered Quantity,BinPlanned Qty,BinProjected Qty,BinQuantity Requested for Purchase,BinValuation Rate,BinStock Value',NULL,'`tabItem`.name = `tabBin`.item_code','`tabItem`.`item_name`\n`tabItem`.`description`','`tabItem`',NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabBin`.`warehouse`',NULL,'Yes',50,NULL),('stock_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Stock','Stock Report',NULL,'Stock Ledger Entry','{\'Stock Ledger EntryIs Cancelled\':\'\',\'Stock Ledger EntryIs Stock Entry\':\'\'}','Stock Ledger EntryID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabStock Ledger Entry`.`name`',NULL,'Yes',50,NULL),('target_variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,1,0,'Selling','Target Variance Report',NULL,'Target Detail','{\'Sales PersonSaved\':1,\'Sales PersonSubmitted\':1,\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\',\'Target DetailFiscal Year\':\'\'}','Sales PersonID,Sales PersonOwner,Sales PersonSales Person,Sales PersonCountry,Sales PersonState,Target DetailItem Group,Target DetailFiscal Year,Target DetailTarget Amount','Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC',NULL,NULL,'Yes',50,NULL),('tds_return','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','TDS Return',NULL,'TDS Payment Detail','{\'TDS PaymentSubmitted\':1}',NULL,'TDS Payment',NULL,NULL,NULL,'fiscal_year',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Yes',NULL,NULL),('territories_target_variance_item_group_wise','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Territories Target Variance (Item Group wise)',NULL,'Target Detail','{\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\',\'Target DetailFiscal Year\':\'\'}',NULL,'Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabTarget Detail`.`target_amount`',NULL,'Yes',50,NULL),('territory_sales_-_variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Territory Sales - Variance Report',NULL,'Territory','{\'TerritoryState\':\'\',\'TerritoryBased On\':\'Sales Order\',\'TerritoryFiscal Year\':\'2009-2010\',\'TerritoryCompany\':\'Alpha Company\',\'TerritoryPeriod\':\'Quarterly\'}','TerritoryID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','ID',NULL,'Yes',50,NULL),('test_so2','2010-12-14 17:56:44','2010-11-12 11:03:44','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','Test SO',NULL,'Sales Order Item','{\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales Order ItemItem Code,Sales Order ItemDescription','Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','columns = [[\'DN No\',\'Data\',\'250px\',\'\']]\n\nfor c in columns:\n colnames.append(c[0])\n coltypes.append(c[1])\n colwidths.append(c[2])\n coloptions.append(c[3])\n col_idx[c[0]] = len(colnames)-1\n\n\nfor r in res:\n det = sql(\"select parent from `tabDelivery Note Item` where item_code = %s and prevdoc_docname = %s\" , (r[col_idx[\'Item Code\']], r[col_idx[\'ID\']]))\n dn = \'\'\n for d in det:\n dn += cstr(d[0])+NEWLINE\n r.append(cstr(dn))','DESC','`tabSales Order`.`name`','','No',50,NULL),('test_so3','2010-12-14 17:56:44','2010-11-12 11:03:44','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Selling','Test SO',NULL,'Sales Order Item','{\'Sales OrderSubmitted\':1,\'Sales OrderStatus\':\'\',\'Sales OrderFiscal Year\':\'\'}','Sales OrderID,Sales Order ItemItem Code,Sales Order ItemDescription','Sales Order',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','columns = [[\'DN No\',\'Data\',\'250px\',\'\']]\n\nfor c in columns:\n colnames.append(c[0])\n coltypes.append(c[1])\n colwidths.append(c[2])\n coloptions.append(c[3])\n col_idx[c[0]] = len(colnames)-1\n\n\nfor r in res:\n det = sql(\"select parent from `tabDelivery Note Item` where item_code = %s and prevdoc_docname = %s\" , (r[col_idx[\'Item Code\']], r[col_idx[\'ID\']]))\n dn = \'\'\n for d in det:\n dn += cstr(d[0])+NEWLINE\n r.append(cstr(dn))','DESC','`tabSales Order`.`name`','','No',50,NULL),('timesheet_report','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','ashwini@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Projects','Timesheet Report',NULL,'Timesheet Detail','{\'TimesheetSaved\':1,\'TimesheetSubmitted\':1}','TimesheetID,TimesheetTimesheet Date,TimesheetTimesheet by,Timesheet DetailProject Name,Timesheet DetailTask Id,Timesheet DetailTask Name,Timesheet DetailActual Start Time,Timesheet DetailActual End Time,Timesheet DetailTotal Hours (Actual)','Timesheet',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabTimesheet`.`name`',NULL,'Yes',50,NULL),('total_target_variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Total Target Variance Report',NULL,'Target Detail','{\'Sales PersonSaved\':1,\'Sales PersonSubmitted\':1,\'Sales PersonCountry\':\'\',\'Sales PersonState\':\'\',\'Target DetailFiscal Year\':\'\'}','Sales PersonID,Sales PersonOwner,Sales PersonSales Person,Sales PersonCountry,Sales PersonState,Sales Personlft,Sales Personrgt,Target DetailItem Group,Target DetailFiscal Year,Target DetailTarget Amount','Sales Person',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Person`.`name`',NULL,'Yes',50,NULL),('trend_analyzer','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','saumil@webnotestech.com',0,NULL,NULL,NULL,1,NULL,'Accounts','Trend Analyzer',NULL,'Profile','{}','ProfileID,ProfileOwner',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabProfile`.`name`',NULL,'Yes',50,NULL),('trial_balance','2012-10-02 13:17:53','2012-07-23 11:49:53','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Trial Balance',NULL,'Account','{\'AccountGroup or Ledger\':\'Ledger\',\'AccountIs PL Account\':\'\',\'AccountAccount Type\':\'\',\'AccountShow Group Balance\':\'\'}','AccountID',NULL,NULL,NULL,NULL,'transaction_date',NULL,NULL,NULL,NULL,NULL,'DESC','`tabAccount`.`name`',NULL,'Yes',50,NULL),('variance_report','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Selling','Variance Report',NULL,'Target Detail','{\'TerritoryState\':\'\',\'Target DetailFiscal Year\':\'2009-2010\',\'Target DetailBased On\':\'Territory\',\'Target DetailCompany\':\'Alpha Company\',\'Target DetailPeriod\':\'Quarterly\',\'Target DetailUnder\':\'Sales Order\'}',NULL,'Territory',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','ID',NULL,'Yes',50,NULL),('voucher_wise_tax_details','2012-05-08 11:38:11','2012-05-08 08:08:11','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Voucher wise tax details',NULL,'Sales Taxes and Charges','{\'Delivery NoteSubmitted\':1,\'Delivery NoteStatus\':\'\',\'Delivery NoteFiscal Year\':\'\'}','Sales Taxes and ChargesType,Sales Taxes and ChargesAccount Head,Sales Taxes and ChargesCost Center,Sales Taxes and ChargesDescription,Sales Taxes and ChargesRate,Sales Taxes and ChargesAmount*,Sales Taxes and ChargesTotal*','Delivery Note',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSales Taxes and Charges`.`parent`',NULL,'Yes',50,NULL),('warranty-amc_expiry_details','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Support','Warranty/AMC Expiry Details',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoStatus\':\'\',\'Serial NoMaintenance Status\':\'\'}','Serial NoID,Serial NoItem Code,Serial NoDescription,Serial NoStatus,Serial NoItem Group,Serial NoPurchase Receipt No,Serial NoDelivery Note No,Serial NoCustomer,Serial NoCustomer Name,Serial NoAMC Expiry Date,Serial NoWarranty Expiry Date',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabSerial No`.`name`',NULL,'Yes',50,NULL),('warranty-amc_summary','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Support','Warranty/AMC Summary',NULL,'Serial No','{\'Serial NoSaved\':1,\'Serial NoStatus\':\'\'}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','name',NULL,'Yes',50,NULL),('yearly_transaction_summary','2012-05-08 11:38:12','2012-05-08 08:08:12','Administrator','Administrator',0,NULL,NULL,NULL,1,NULL,'Accounts','Yearly Transaction Summary',NULL,'Profile','{\'DocTypeFiscal Year\':\'2009-2010\',\'DocTypeCompany\':\'Alpha Company\',\'DocTypePeriod\':\'Monthly\'}','ProfileID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'DESC','`tabProfile`.`name`',NULL,'Yes',NULL,NULL); -/*!40000 ALTER TABLE `tabSearch Criteria` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSerial No` --- - -DROP TABLE IF EXISTS `tabSerial No`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSerial No` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `serial_no` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - `item_group` varchar(180) default NULL, - `brand` varchar(180) default NULL, - `description` text, - `pr_no` varchar(180) default NULL, - `purchase_date` date default NULL, - `purchase_rate` decimal(18,6) default NULL, - `warranty_period` int(11) default NULL, - `warranty_expiry_date` date default NULL, - `amc_expiry_date` date default NULL, - `status` varchar(180) default 'In Store', - `maintenance_status` varchar(180) default NULL, - `warehouse` varchar(180) default NULL, - `make` varchar(180) default NULL, - `label` varchar(180) default NULL, - `delivery_note_no` varchar(180) default NULL, - `delivery_date` date default NULL, - `customer_name` varchar(180) default NULL, - `customer_address` text, - `territory` varchar(180) default NULL, - `is_cancelled` varchar(180) default NULL, - `notes` mediumtext, - `trash_reason` text, - `customer` varchar(180) default NULL, - `purchase_time` time default NULL, - `delivery_document_type` varchar(180) default NULL, - `supplier_address` mediumtext, - `fiscal_year` varchar(180) default NULL, - `purchase_document_no` varchar(180) default NULL, - `item_name` varchar(180) default NULL, - `purchase_document_type` varchar(180) default NULL, - `supplier` varchar(180) default NULL, - `delivery_address` text, - `company` varchar(180) default NULL, - `supplier_name` varchar(180) default NULL, - `delivery_time` time default NULL, - `delivery_document_no` varchar(180) default NULL, - `serial_no_details` text, - `address_display` text, - `sle_exists` int(1) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `serial_no` (`serial_no`), - KEY `status` (`status`), - KEY `maintenance_status` (`maintenance_status`), - KEY `parent` (`parent`), - KEY `warehouse` (`warehouse`), - KEY `fiscal_year` (`fiscal_year`), - KEY `company` (`company`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSerial No` --- - -LOCK TABLES `tabSerial No` WRITE; -/*!40000 ALTER TABLE `tabSerial No` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSerial No` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSeries Detail` --- - -DROP TABLE IF EXISTS `tabSeries Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSeries Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `series` varchar(180) default NULL, - `remove` int(1) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSeries Detail` --- - -LOCK TABLES `tabSeries Detail` WRITE; -/*!40000 ALTER TABLE `tabSeries Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSeries Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSeries` --- - -DROP TABLE IF EXISTS `tabSeries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSeries` ( - `name` varchar(40) default NULL, - `current` int(10) default NULL, - UNIQUE KEY `name` (`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSeries` --- - -LOCK TABLES `tabSeries` WRITE; -/*!40000 ALTER TABLE `tabSeries` DISABLE KEYS */; -INSERT INTO `tabSeries` VALUES ('FL',14129),('PERM',1002),('UR',71),('TIC/',1),('_SRCH',3),('FileData-',3),('TD',5),('MI',17),('PR',329),('EV',3),('MIR',7),('DEF',97),('',580),('TW',3),('Ann/',1),('Login Page/',1),('DF',26),('MDR',331),('MDI',1382),('FMD/',867),('TMD/',85),('GLMDetail',28),('Event Updates/',2),('__NSO',16),('Feed',1),('BSD',170),('SRCH/C/',6),('_TRIGGER',1),('_FEED',2); -/*!40000 ALTER TABLE `tabSeries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSessions` --- - -DROP TABLE IF EXISTS `tabSessions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSessions` ( - `user` varchar(180) default NULL, - `sid` varchar(120) default NULL, - `sessiondata` longtext, - `ipaddress` varchar(16) default NULL, - `lastupdate` datetime default NULL, - `status` varchar(20) default NULL, - KEY `sid` (`sid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSessions` --- - -LOCK TABLES `tabSessions` WRITE; -/*!40000 ALTER TABLE `tabSessions` DISABLE KEYS */; -INSERT INTO `tabSessions` VALUES ('Administrator','c3d20249a117bd8a0ea47698a7d5411c997c2bc07a2b9ca50f4ce593',NULL,NULL,'2011-07-13 13:37:32','Active'),('Administrator','172129bcb4d2be15961c80740d7ae754245bfebe9bdad9d694eb119d',NULL,NULL,'2011-08-02 11:39:53','Active'),('Administrator','d00752af6d325746568534b71e4fb8be374cd7ce87d99483efbbfac7',NULL,NULL,'2011-08-02 11:33:56','Active'); -/*!40000 ALTER TABLE `tabSessions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabShipping Address` --- - -DROP TABLE IF EXISTS `tabShipping Address`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabShipping Address` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `customer` varchar(180) default NULL, - `shipping_details` text, - `is_primary_address` varchar(180) default NULL, - `customer_address` text, - `trash_reason` text, - `shipping_address` text, - `ship_to` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabShipping Address` --- - -LOCK TABLES `tabShipping Address` WRITE; -/*!40000 ALTER TABLE `tabShipping Address` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabShipping Address` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSingles` --- - -DROP TABLE IF EXISTS `tabSingles`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSingles` ( - `doctype` varchar(40) default NULL, - `field` varchar(40) default NULL, - `value` mediumtext, - KEY `doctype` (`doctype`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSingles` --- - -LOCK TABLES `tabSingles` WRITE; -/*!40000 ALTER TABLE `tabSingles` DISABLE KEYS */; -INSERT INTO `tabSingles` VALUES ('DocType','server_code_error',' '),('Notification Control','quotation_message','

    Thank you for your interest

    Based on your request, we have prepared a quotation for you.

    We look forward to reply!

    '),('Notification Control','sales_order_message','

    Thank you for placing your order with us.

    Please check the confirmation details and contact us in case of any queries.

    '),('Notification Control','delivery_note_message','

    Requested items have been delivered/ ready for delivery.

    Please contact us in case of any queries.

    '),('Notification Control','sales_invoice_message','

    Thank you for your business!

    Please find the Invoice Details.

    Feel free to contact us in case of any queries.

    '),('Notification Control','purchase_order_message','

    Please find details of our Purchase Order for you.

    Please contact us in case of any queries

    '),('Notification Control','purchase_receipt_message','

    Your items have been received as per the details given below.

    '),('DocType','modified','2011-09-07 15:28:18'),('Email Settings','support_host',NULL),('Email Settings','support_use_ssl',NULL),('Email Settings','sync_support_mails',NULL),('Email Settings','support_password',NULL),('Email Settings','support_username',NULL),('Email Settings','signature',NULL),('Email Settings','support_email',NULL),('Control Panel','modified','2011-12-16 16:55:51'),('Control Panel','session_expiry','24:00'),('Control Panel','page_width',NULL),('Control Panel','left_sidebar_width','100'),('Control Panel','account_id','s5u011'),('Control Panel','letter_head',NULL),('Control Panel','owner',''),('Control Panel','background_color',''),('Control Panel','password_expiry_days','90'),('Control Panel','footer_height','0'),('Control Panel','modified_by','Administrator'),('Control Panel','title',NULL),('Control Panel','home_page','desktop'),('Control Panel','client_name','
    Banner Comes Here
    '),('Control Panel','company_name',NULL),('Control Panel','docstatus',NULL),('Control Panel','header_height','40'),('Control Panel','footer_html','\n'),('Control Panel','parent',NULL),('Control Panel','currency_format',''),('Control Panel','hide_webnotes_toolbar',NULL),('Control Panel','test_code',''),('Control Panel','letter_head_image',NULL),('Control Panel','client_logo',NULL),('Control Panel','date_format','dd-mm-yyyy'),('Control Panel','mail_footer',''),('Control Panel','idx',NULL),('Control Panel','country',NULL),('Control Panel','industry',NULL),('Control Panel','total_sms_sent',NULL),('Control Panel','parenttype',NULL),('Control Panel','time_zone',NULL),('Control Panel','right_sidebar_width',NULL),('Control Panel','parentfield',NULL),('Global Defaults','modified','2012-07-12 19:25:47'),('Global Defaults','date_format','dd-mm-yyyy'),('Global Defaults','maintain_same_rate','1'),('Global Defaults','default_territory','Default'),('Global Defaults','default_warehouse_type','Default Warehouse Type'),('Global Defaults','default_customer_group','Default Customer Group'),('Global Defaults','default_price_list','Standard'),('Global Defaults','default_supplier_type','Default Supplier Type'),('Global Defaults','supp_master_name','Supplier Name'),('Global Defaults','owner',''),('Global Defaults','default_item_group','Default'),('Global Defaults','cust_master_name','Customer Name'),('Features Setup','modified','2012-07-12 19:25:49'),('Features Setup','fs_imports','1'),('Features Setup','fs_projects','1'),('Features Setup','fs_item_batch_nos','1'),('Features Setup','fs_page_break','1'),('Features Setup','fs_recurring_invoice','1'),('Features Setup','fs_exports','1'),('Features Setup','fs_after_sales_installations','1'),('Features Setup','fs_more_info','1'),('Features Setup','fs_quality','1'),('Features Setup','fs_discounts','1'),('Features Setup','owner',''),('Features Setup','fs_packing_details','1'),('Features Setup','fs_brands','1'),('Features Setup','fs_item_group_in_details','1'),('Features Setup','fs_sales_extras','1'),('Features Setup','fs_item_advanced','1'),('Features Setup','fs_item_serial_nos','1'),('Features Setup','fs_manufacturing','1'),('Features Setup','fs_pos','1'),('Features Setup','fs_purchase_discounts','1'),('Features Setup','fs_item_barcode','0'),('Style Settings','modified','2012-10-02 13:13:44'),('Style Settings','custom_css','#body_div {\n \n\n\n font-size: 13px !important;\n\n}\n\n\n.small {\n font-size: 11px !important;\n}\n\n\n'),('Style Settings','font_size','13px'),('Style Settings','owner',''),('Website Settings','modified','2012-10-02 13:17:58'),('Website Settings','modified_by','Administrator'),('Website Settings','owner',''),('Website Settings','docstatus','0'); -/*!40000 ALTER TABLE `tabSingles` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabState` --- - -DROP TABLE IF EXISTS `tabState`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabState` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `state_name` varchar(180) default NULL, - `country` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabState` --- - -LOCK TABLES `tabState` WRITE; -/*!40000 ALTER TABLE `tabState` DISABLE KEYS */; -INSERT INTO `tabState` VALUES ('Alabama','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Alabama','United States',NULL),('Alaska','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Alaska','United States',NULL),('Andaman and Nicobar Islands','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Andaman and Nicobar Islands','India',NULL),('Andhra Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Andhra Pradesh','India',NULL),('Arizona','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Arizona','United States',NULL),('Arkansas','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Arkansas','United States',NULL),('Arunachal Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Arunachal Pradesh','India',NULL),('Assam','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Assam','India',NULL),('Beijing','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Beijing ','China',NULL),('Bihar','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Bihar','India',NULL),('California','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'California','United States',NULL),('Chandigarh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Chandigarh','India',NULL),('Changchun','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Changchun ','China',NULL),('Chengde','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Chengde','China',NULL),('Chengdu','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Chengdu ','China',NULL),('Chhattisgarh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Chhattisgarh','India',NULL),('Chongqing','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Chongqing ','China',NULL),('Colorado','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Colorado','United States',NULL),('Connecticut','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Connecticut','United States',NULL),('Dadra and Nagar Haveli','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Dadra and Nagar Haveli','India',NULL),('Dalian','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Dalian','China',NULL),('Daman and Diu','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Daman and Diu','India',NULL),('Delaware','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Delaware','United States',NULL),('Delhi','2010-12-14 17:56:44','2010-04-15 14:23:23','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Delhi','India',NULL),('Dongguan','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Dongguan ','China',NULL),('Dunhuang','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Dunhuang ','China',NULL),('Florida','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Florida','United States',NULL),('Georgia','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Georgia','United States',NULL),('Goa','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Goa','India',NULL),('Guangzhou','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Guangzhou','China',NULL),('Guilin','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Guilin ','China',NULL),('Gujarat','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Gujarat','India',NULL),('Hangzhou','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Hangzhou ','China',NULL),('Harbin','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Harbin','China',NULL),('Haryana','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Haryana','India',NULL),('Hawaii','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Hawaii','United States',NULL),('Hefei','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Hefei ','China',NULL),('Himachal Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Himachal Pradesh','India',NULL),('Idaho','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Idaho','United States',NULL),('Illinois','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Illinois','United States',NULL),('Indiana','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Indiana','United States',NULL),('Iowa','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Iowa','United States',NULL),('Jammu and Kashmir','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Jammu and Kashmir','India',NULL),('Jharkhand','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Jharkhand','India',NULL),('Jinan','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Jinan ','China',NULL),('Kansas','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Kansas','United States',NULL),('Karnataka','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Karnataka','India',NULL),('Kashi','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Kashi','China',NULL),('Kentucky','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Kentucky','United States',NULL),('Kerala','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Kerala','India',NULL),('Kowloon','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Kowloon ','China',NULL),('Kunming','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Kunming ','China',NULL),('Lakshadweep','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Lakshadweep','India',NULL),('Lanzhou','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Lanzhou','China',NULL),('Lijiang City','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Lijiang City ','China',NULL),('Louisiana','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Louisiana','United States',NULL),('Madhya Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Madhya Pradesh','India',NULL),('Maharashtra','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Maharashtra','India',NULL),('Maine','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Maine','United States',NULL),('Manipur','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Manipur','India',NULL),('Maryland','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Maryland','United States',NULL),('Massachusetts','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Massachusetts','United States',NULL),('Meghalaya','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Meghalaya','India',NULL),('Michigan','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Michigan','United States',NULL),('Minnesota','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Minnesota','United States',NULL),('Mississippi','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Mississippi','United States',NULL),('Missouri','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Missouri','United States',NULL),('Mizoram','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Mizoram','India',NULL),('Montana','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Montana','United States',NULL),('Nagaland','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Nagaland','India',NULL),('Nanchang','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Nanchang ','China',NULL),('Nanjing','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Nanjing','China',NULL),('Nebraska','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Nebraska','United States',NULL),('Nevada','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Nevada','United States',NULL),('New Hampshire','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'New Hampshire','United States',NULL),('New Jersey','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'New Jersey','United States',NULL),('New Mexico','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'New Mexico','United States',NULL),('New York','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'New York','United States',NULL),('Ningbo','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Ningbo ','China',NULL),('North Carolina','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'North Carolina','United States',NULL),('North Dakota','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'North Dakota','United States',NULL),('Ohio','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Ohio','United States',NULL),('Oklahoma','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Oklahoma','United States',NULL),('Oregon','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Oregon','United States',NULL),('Orissa','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Orissa','India',NULL),('Pennsylvania','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Pennsylvania','United States',NULL),('Puducherry','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Puducherry','India',NULL),('Punjab','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Punjab','India',NULL),('Qingdao','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Qingdao ','China',NULL),('Qufu','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Qufu','China',NULL),('Rajasthan','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Rajasthan','India',NULL),('Rhode Island','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Rhode Island','United States',NULL),('Sanya','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Sanya ','China',NULL),('Shanghai','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Shanghai ','China',NULL),('Shenyang','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Shenyang','China',NULL),('Shenzhen','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Shenzhen','China',NULL),('Sikkim','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Sikkim','India',NULL),('South Carolina','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'South Carolina','United States',NULL),('South Dakota','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'South Dakota','United States',NULL),('suzhou','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'suzhou','China',NULL),('Tamil Nadu','2010-12-14 17:56:44','2009-07-17 15:12:49','Administrator','Administrator',0,NULL,'','',NULL,'Tamil Nadu','India',NULL),('Tennessee','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Tennessee','United States',NULL),('Texas','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Texas','United States',NULL),('Tianjin','2010-12-14 17:56:44','2010-05-26 14:42:50','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Tianjin','China',NULL),('Tripura','2010-12-14 17:56:44','2009-07-17 15:12:48','Administrator','Administrator',0,NULL,'','',NULL,'Tripura','India',NULL),('Turpan','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Turpan','China',NULL),('Urumqi','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Urumqi','China',NULL),('Utah','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Utah','United States',NULL),('Uttar Pradesh','2010-12-14 17:56:44','2009-07-17 15:12:48','Administrator','Administrator',0,NULL,'','',NULL,'Uttar Pradesh','India',NULL),('Uttarakhand','2010-12-14 17:56:44','2009-07-17 15:12:48','Administrator','Administrator',0,NULL,'','',NULL,'Uttarakhand','India',NULL),('Vermont','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Vermont','United States',NULL),('Virginia','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Virginia','United States',NULL),('Washington','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Washington','United States',NULL),('West Bengal','2010-12-14 17:56:44','2009-07-17 15:12:48','Administrator','Administrator',0,NULL,'','',NULL,'West Bengal','India',NULL),('West Virginia','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'West Virginia','United States',NULL),('Wisconsin','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Wisconsin','United States',NULL),('Wuhan','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Wuhan','China',NULL),('Wuxi','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Wuxi','China',NULL),('Wyoming','2010-12-14 17:56:44','2010-04-15 14:19:16','Administrator','Administrator',0,NULL,'','',NULL,'Wyoming','United States',NULL),('Xiamen','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Xiamen','China',NULL),('Xian','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Xian','China',NULL),('Zhongshan','2010-12-14 17:56:44','2010-05-26 14:42:51','Administrator','harshada@webnotestech.com',0,NULL,'','',NULL,'Zhongshan ','China',NULL); -/*!40000 ALTER TABLE `tabState` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabStock Entry Detail` --- - -DROP TABLE IF EXISTS `tabStock Entry Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabStock Entry Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `s_warehouse` varchar(180) default NULL, - `t_warehouse` varchar(180) default NULL, - `fg_item` int(1) default NULL, - `item_code` varchar(180) default NULL, - `description` text, - `batch_no` varchar(180) default NULL, - `actual_qty` varchar(180) default NULL, - `stock_uom` varchar(180) default NULL, - `reqd_qty` decimal(18,6) default NULL, - `transfer_qty` decimal(18,6) default NULL, - `serial_no` text, - `incoming_rate` decimal(18,6) default NULL, - `amount` decimal(18,6) default NULL, - `qty` decimal(18,6) default NULL, - `conversion_factor` decimal(18,6) default NULL, - `uom` varchar(180) default NULL, - `bom_no` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `actual_qty` (`actual_qty`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabStock Entry Detail` --- - -LOCK TABLES `tabStock Entry Detail` WRITE; -/*!40000 ALTER TABLE `tabStock Entry Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabStock Entry Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabStock Entry` --- - -DROP TABLE IF EXISTS `tabStock Entry`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabStock Entry` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `naming_series` varchar(180) default 'STE', - `amendment_date` date default NULL, - `purpose` varchar(180) default NULL, - `delivery_note_no` varchar(180) default NULL, - `purchase_receipt_no` varchar(180) default NULL, - `supplier` varchar(180) default NULL, - `supplier_address` text, - `customer` varchar(180) default NULL, - `customer_address` text, - `process` varchar(180) default NULL, - `production_order` varchar(180) default NULL, - `fg_completed_qty` decimal(18,6) default NULL, - `from_warehouse` varchar(180) default NULL, - `to_warehouse` varchar(180) default NULL, - `transfer_date` date default NULL, - `posting_date` date default NULL, - `posting_time` time default NULL, - `amended_from` varchar(180) default NULL, - `transporter` varchar(180) default NULL, - `is_excisable_goods` varchar(180) default NULL, - `excisable_goods` varchar(180) default NULL, - `under_rule` varchar(180) default NULL, - `remarks` text, - `cancel_reason` varchar(180) default NULL, - `total_amount` decimal(18,6) default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `supplier_name` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `project_name` varchar(180) default NULL, - `sales_invoice_no` varchar(180) default NULL, - `consider_sa_items_as_raw_materials` varchar(180) default NULL, - `bom_no` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `posting_date` (`posting_date`), - KEY `parent` (`parent`), - KEY `delivery_note_no` (`delivery_note_no`), - KEY `purchase_receipt_no` (`purchase_receipt_no`), - KEY `production_order` (`production_order`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabStock Entry` --- - -LOCK TABLES `tabStock Entry` WRITE; -/*!40000 ALTER TABLE `tabStock Entry` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabStock Entry` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabStock Ledger Entry` --- - -DROP TABLE IF EXISTS `tabStock Ledger Entry`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabStock Ledger Entry` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_code` varchar(180) default NULL, - `batch_no` varchar(180) default NULL, - `warehouse` varchar(180) default NULL, - `warehouse_type` varchar(180) default NULL, - `posting_date` date default NULL, - `posting_time` time default NULL, - `transaction_date` date default NULL, - `voucher_type` varchar(180) default NULL, - `voucher_no` varchar(180) default NULL, - `voucher_detail_no` varchar(180) default NULL, - `actual_qty` decimal(18,6) default NULL, - `incoming_rate` decimal(18,6) default NULL, - `bin_aqat` decimal(18,6) default NULL, - `ma_rate` decimal(18,6) default NULL, - `fcfs_rate` decimal(18,6) default NULL, - `valuation_rate` decimal(18,6) default NULL, - `stock_value` decimal(18,6) default NULL, - `fcfs_stack` text, - `stock_uom` varchar(180) default NULL, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `is_cancelled` varchar(180) default NULL, - `is_stock_entry` varchar(180) default NULL, - `serial_no` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `item_code` (`item_code`), - KEY `warehouse` (`warehouse`), - KEY `posting_date` (`posting_date`), - KEY `parent` (`parent`), - KEY `posting_sort_index` (`posting_date`,`posting_time`,`name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabStock Ledger Entry` --- - -LOCK TABLES `tabStock Ledger Entry` WRITE; -/*!40000 ALTER TABLE `tabStock Ledger Entry` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabStock Ledger Entry` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabStock Reconciliation` --- - -DROP TABLE IF EXISTS `tabStock Reconciliation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabStock Reconciliation` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `reconciliation_date` date default NULL, - `reconciliation_time` time default NULL, - `next_step` varchar(180) default NULL, - `remark` text, - `company` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `file_list` text, - `amendment_date` date default NULL, - `amended_from` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - `diff_info` text, - PRIMARY KEY (`name`), - KEY `company` (`company`), - KEY `fiscal_year` (`fiscal_year`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabStock Reconciliation` --- - -LOCK TABLES `tabStock Reconciliation` WRITE; -/*!40000 ALTER TABLE `tabStock Reconciliation` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabStock Reconciliation` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSupplier Quotation Item` --- - -DROP TABLE IF EXISTS `tabSupplier Quotation Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSupplier Quotation Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `qty` decimal(18,6) default '0.000000', - `item_tax_rate` text, - `import_amount` decimal(18,6) default NULL, - `discount_rate` decimal(18,6) default NULL, - `import_ref_rate` decimal(18,6) default NULL, - `page_break` int(1) default NULL, - `purchase_rate` decimal(18,6) default '0.000000', - `item_name` varchar(180) default NULL, - `prevdoc_detail_docname` varchar(180) default NULL, - `warehouse` varchar(180) default NULL, - `supplier_part_no` varchar(180) default NULL, - `uom` varchar(180) default NULL, - `project_name` varchar(180) default NULL, - `description` text, - `prevdoc_docname` varchar(180) default NULL, - `import_rate` decimal(18,6) default NULL, - `brand` varchar(180) default NULL, - `item_code` varchar(180) default NULL, - `purchase_ref_rate` decimal(18,6) default NULL, - `prevdoc_date` date default NULL, - `item_group` varchar(180) default NULL, - `amount` decimal(18,6) default '0.000000', - `prevdoc_doctype` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSupplier Quotation Item` --- - -LOCK TABLES `tabSupplier Quotation Item` WRITE; -/*!40000 ALTER TABLE `tabSupplier Quotation Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSupplier Quotation Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSupplier Quotation` --- - -DROP TABLE IF EXISTS `tabSupplier Quotation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSupplier Quotation` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `status` varchar(180) default NULL, - `naming_series` varchar(180) default NULL, - `in_words_import` varchar(180) default NULL, - `supplier_name` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `currency` varchar(180) default NULL, - `conversion_rate` decimal(18,6) default '1.000000', - `amendment_date` date default NULL, - `cancel_reason` varchar(180) default NULL, - `select_print_heading` varchar(180) default NULL, - `is_subcontracted` varchar(180) default 'No', - `supplier_address` varchar(180) default NULL, - `tc_name` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `transaction_date` date default NULL, - `contact_display` text, - `other_charges_added_import` decimal(18,6) default NULL, - `supplier` varchar(180) default NULL, - `grand_total_import` decimal(18,6) default NULL, - `rounded_total` decimal(18,6) default NULL, - `address_display` text, - `total_tax` decimal(18,6) default NULL, - `terms` text, - `company` varchar(180) default NULL, - `other_charges_deducted_import` decimal(18,6) default NULL, - `other_charges_added` decimal(18,6) default NULL, - `contact_email` text, - `purchase_other_charges` varchar(180) default NULL, - `contact_mobile` text, - `net_total_import` decimal(18,6) default NULL, - `grand_total` decimal(18,6) default NULL, - `other_charges_deducted` decimal(18,6) default NULL, - `file_list` text, - `indent_no` varchar(180) default NULL, - `letter_head` varchar(180) default NULL, - `net_total` decimal(18,6) default NULL, - `contact_person` varchar(180) default NULL, - `in_words` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSupplier Quotation` --- - -LOCK TABLES `tabSupplier Quotation` WRITE; -/*!40000 ALTER TABLE `tabSupplier Quotation` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSupplier Quotation` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSupplier Type` --- - -DROP TABLE IF EXISTS `tabSupplier Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSupplier Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `supplier_type` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSupplier Type` --- - -LOCK TABLES `tabSupplier Type` WRITE; -/*!40000 ALTER TABLE `tabSupplier Type` DISABLE KEYS */; -INSERT INTO `tabSupplier Type` VALUES ('Default Supplier Type','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Supplier Type',NULL); -/*!40000 ALTER TABLE `tabSupplier Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSupplier` --- - -DROP TABLE IF EXISTS `tabSupplier`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSupplier` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `supplier_name` varchar(180) default NULL, - `supplier_type` varchar(180) default NULL, - `supplier_status` varchar(180) default NULL, - `website` varchar(180) default NULL, - `last_purchase_order` varchar(180) default NULL, - `address_line1` varchar(180) default NULL, - `address_line2` varchar(180) default NULL, - `city` varchar(180) default NULL, - `country` varchar(180) default NULL, - `state` varchar(180) default NULL, - `pincode` varchar(180) default NULL, - `address` mediumtext, - `company` varchar(180) default NULL, - `supplier_details` text, - `naming_series` varchar(180) default 'SUPP', - `credit_days` int(11) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - `default_currency` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `address_line1` (`address_line1`), - KEY `address_line2` (`address_line2`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSupplier` --- - -LOCK TABLES `tabSupplier` WRITE; -/*!40000 ALTER TABLE `tabSupplier` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSupplier` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSupport Ticket Response` --- - -DROP TABLE IF EXISTS `tabSupport Ticket Response`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSupport Ticket Response` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `mail` text, - `content_type` varchar(180) default NULL, - `from_email` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSupport Ticket Response` --- - -LOCK TABLES `tabSupport Ticket Response` WRITE; -/*!40000 ALTER TABLE `tabSupport Ticket Response` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSupport Ticket Response` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabSupport Ticket` --- - -DROP TABLE IF EXISTS `tabSupport Ticket`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabSupport Ticket` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `status` varchar(180) default 'Open', - `raised_by` varchar(180) default NULL, - `problem_description` mediumtext, - `contact_no` varchar(180) default NULL, - `opening_date` date default NULL, - `opening_time` time default NULL, - `customer` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `allocated_to` varchar(180) default NULL, - `resolution_details` text, - `resolution_date` date default NULL, - `resolution_time` time default NULL, - `description` text, - `new_response` text, - `content_type` varchar(180) default NULL, - `subject` text, - `address_display` text, - `contact_mobile` varchar(180) default NULL, - `contact_display` varchar(180) default NULL, - `contact_email` varchar(180) default NULL, - `file_list` text, - `naming_series` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `customer` (`customer`), - KEY `allocated_to` (`allocated_to`), - KEY `parent` (`parent`), - KEY `status` (`status`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabSupport Ticket` --- - -LOCK TABLES `tabSupport Ticket` WRITE; -/*!40000 ALTER TABLE `tabSupport Ticket` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabSupport Ticket` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTDS Category Account` --- - -DROP TABLE IF EXISTS `tabTDS Category Account`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTDS Category Account` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `company` varchar(180) default NULL, - `account_head` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTDS Category Account` --- - -LOCK TABLES `tabTDS Category Account` WRITE; -/*!40000 ALTER TABLE `tabTDS Category Account` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTDS Category Account` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTDS Category` --- - -DROP TABLE IF EXISTS `tabTDS Category`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTDS Category` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `module` varchar(180) default 'Accounts', - `category_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTDS Category` --- - -LOCK TABLES `tabTDS Category` WRITE; -/*!40000 ALTER TABLE `tabTDS Category` DISABLE KEYS */; -INSERT INTO `tabTDS Category` VALUES ('194J - Professional Fees - Non Company','2010-12-14 17:56:51','2009-05-06 14:10:17','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','194J - Professional Fees - Non Company',NULL),('Commission Brokerage - for Companies','2010-12-14 17:56:51','2009-11-03 16:23:34','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Commission Brokerage - for Companies',NULL),('Commission Brokerage - for Individuals','2010-12-14 17:56:51','2009-10-22 11:37:10','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Commission Brokerage - for Individuals',NULL),('Contractors - 194C - for Companies','2010-12-14 17:56:51','2010-03-10 10:38:19','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Contractors - 194C - for Companies',NULL),('Contractors - 194C - for Individuals','2010-12-14 17:56:50','2009-07-06 17:48:02','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Contractors - 194C - for Individuals',NULL),('Pay to Advt Or Sub Contr - for Companies','2010-12-14 17:56:51','2009-07-06 17:48:04','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Pay to Advt Or Sub Contr - for Companies',NULL),('Pay to Advt Or Sub Contr - for Individuals','2010-12-14 17:56:51','2009-07-06 17:48:07','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Pay to Advt Or Sub Contr - for Individuals',NULL),('Professional Fees - 194J - for Companies','2010-12-14 17:56:51','2010-10-04 16:08:02','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Professional Fees - 194J - for Companies',NULL),('Professional Fees - 194J - for Individuals','2010-12-14 17:56:51','2009-07-09 11:10:03','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','Professional Fees - 194J - for Individuals',NULL),('T.D.S on Other Interest - for Individuals','2010-12-14 17:56:51','2010-03-10 10:56:52','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','T.D.S on Other Interest - for Individuals',NULL),('T.D.S on Rent - for Companies','2010-12-14 17:56:51','2009-07-06 17:48:16','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','T.D.S on Rent - for Companies',NULL),('T.D.S on Rent - for Individuals','2010-12-14 17:56:51','2010-03-10 10:37:58','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','T.D.S on Rent - for Individuals',NULL),('TDS on ECB Loan','2010-12-14 17:56:50','2009-07-17 16:24:51','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','TDS on ECB Loan',NULL),('TDS on Rent (Machinery)','2010-12-14 17:56:51','2010-05-26 15:58:40','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,'Accounts','TDS on Rent (Machinery)',NULL); -/*!40000 ALTER TABLE `tabTDS Category` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTDS Detail` --- - -DROP TABLE IF EXISTS `tabTDS Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTDS Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `tds_category` varchar(180) default NULL, - `special_tds_rate_applicable` varchar(180) default NULL, - `special_tds_rate` decimal(18,6) default NULL, - `special_tds_limit` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTDS Detail` --- - -LOCK TABLES `tabTDS Detail` WRITE; -/*!40000 ALTER TABLE `tabTDS Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTDS Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTDS Payment Detail` --- - -DROP TABLE IF EXISTS `tabTDS Payment Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTDS Payment Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `voucher_no` varchar(180) default NULL, - `party_name` varchar(180) default NULL, - `amount_paid` decimal(18,6) default NULL, - `date_of_payment` date default NULL, - `tds_amount` decimal(18,6) default NULL, - `cess_on_tds` decimal(18,6) default NULL, - `total_tax_amount` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTDS Payment Detail` --- - -LOCK TABLES `tabTDS Payment Detail` WRITE; -/*!40000 ALTER TABLE `tabTDS Payment Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTDS Payment Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTDS Payment` --- - -DROP TABLE IF EXISTS `tabTDS Payment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTDS Payment` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `from_date` date default NULL, - `to_date` date default NULL, - `tds_category` varchar(180) default NULL, - `naming_series` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `company` varchar(180) default NULL, - `registration_details` text, - `remarks` text, - `cheque_no` varchar(180) default NULL, - `bsr_code` varchar(180) default NULL, - `date_of_receipt` date default NULL, - `challan_id` varchar(180) default NULL, - `total_tds` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `from_date` (`from_date`), - KEY `to_date` (`to_date`), - KEY `tds_category` (`tds_category`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTDS Payment` --- - -LOCK TABLES `tabTDS Payment` WRITE; -/*!40000 ALTER TABLE `tabTDS Payment` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTDS Payment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTDS Rate Chart` --- - -DROP TABLE IF EXISTS `tabTDS Rate Chart`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTDS Rate Chart` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `module` varchar(180) default 'Accounts', - `applicable_from` date default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTDS Rate Chart` --- - -LOCK TABLES `tabTDS Rate Chart` WRITE; -/*!40000 ALTER TABLE `tabTDS Rate Chart` DISABLE KEYS */; -INSERT INTO `tabTDS Rate Chart` VALUES ('Rate chart (01-07-2010)','2010-12-14 10:33:11','2010-10-04 17:24:25','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,'Accounts','2010-07-01',NULL),('TDS Rate Chart for 2009-10','2010-08-08 17:09:36','2009-10-05 11:27:31','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','2008-01-01',NULL),('TDS Rate Chart October 2009 Onwards','2010-08-08 17:09:36','2010-05-26 16:01:54','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'Accounts','2009-10-01',NULL); -/*!40000 ALTER TABLE `tabTDS Rate Chart` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTDS Rate Detail` --- - -DROP TABLE IF EXISTS `tabTDS Rate Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTDS Rate Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `category` varchar(180) default NULL, - `slab_from` decimal(18,6) default NULL, - `rate` decimal(18,6) default NULL, - `rate_without_pan` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTDS Rate Detail` --- - -LOCK TABLES `tabTDS Rate Detail` WRITE; -/*!40000 ALTER TABLE `tabTDS Rate Detail` DISABLE KEYS */; -INSERT INTO `tabTDS Rate Detail` VALUES ('000000018','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',1,'Professional Fees - 194J - for Companies','20000.000000','10.000000',NULL),('000000019','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',2,'Professional Fees - 194J - for Companies','10000000.000000','10.000000',NULL),('000000020','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',3,'Professional Fees - 194J - for Individuals','20000.000000','10.000000',NULL),('000000021','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',4,'Professional Fees - 194J - for Individuals','10000000.000000','10.000000',NULL),('000000022','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',5,'Contractors - 194C - for Companies','20000.000000','2.000000',NULL),('000000023','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',6,'Contractors - 194C - for Companies','10000000.000000','2.000000',NULL),('000000024','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',7,'Contractors - 194C - for Individuals','20000.000000','1.000000',NULL),('000000025','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',8,'Contractors - 194C - for Individuals','10000000.000000','1.000000',NULL),('000000026','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',9,'T.D.S on Other Interest - for Individuals','5000.000000','10.000000',NULL),('000000027','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',10,'T.D.S on Other Interest - for Individuals','10000000.000000','10.000000',NULL),('000000028','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',11,'Pay to Advt Or Sub Contr - for Companies','20000.000000','2.000000',NULL),('000000029','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',12,'Pay to Advt Or Sub Contr - for Companies','10000000.000000','2.000000',NULL),('000000030','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',13,'Pay to Advt Or Sub Contr - for Individuals','20000.000000','1.000000',NULL),('000000031','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',14,'Pay to Advt Or Sub Contr - for Individuals','10000000.000000','1.000000',NULL),('000000032','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',15,'Commission Brokerage - for Companies','2500.000000','10.000000',NULL),('000000033','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',16,'Commission Brokerage - for Companies','10000000.000000','10.000000',NULL),('000000034','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',17,'Commission Brokerage - for Individuals','2500.000000','10.000000',NULL),('000000035','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',18,'Commission Brokerage - for Individuals','10000000.000000','10.000000',NULL),('000000036','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',19,'T.D.S on Rent - for Companies','120000.000000','10.000000',NULL),('000000037','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',20,'T.D.S on Rent - for Companies','10000000.000000','10.000000',NULL),('000000038','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',21,'T.D.S on Rent - for Individuals','120000.000000','10.000000',NULL),('000000039','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',22,'T.D.S on Rent - for Individuals','10000000.000000','10.000000',NULL),('000000040','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',23,'TDS on ECB Loan','5000.000000','10.000000',NULL),('000000041','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart for 2009-10','rate_chart_detail','TDS Rate Chart',24,'TDS on ECB Loan','10000000.000000','10.000000',NULL),('000000042','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',1,'Professional Fees - 194J - for Companies','20000.000000','10.000000',NULL),('000000043','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',2,'Professional Fees - 194J - for Individuals','20000.000000','10.000000',NULL),('000000044','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',3,'Contractors - 194C - for Companies','20000.000000','2.000000',NULL),('000000045','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',4,'Contractors - 194C - for Individuals','20000.000000','1.000000',NULL),('000000046','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',5,'T.D.S on Other Interest - for Individuals','5000.000000','10.000000',NULL),('000000047','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',6,'Pay to Advt Or Sub Contr - for Companies','20000.000000','2.000000',NULL),('000000048','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',7,'Pay to Advt Or Sub Contr - for Individuals','20000.000000','1.000000',NULL),('000000049','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',8,'Commission Brokerage - for Companies','2500.000000','10.000000',NULL),('000000050','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',9,'Commission Brokerage - for Individuals','2500.000000','10.000000',NULL),('000000051','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',10,'T.D.S on Rent - for Companies','120000.000000','10.000000',NULL),('000000052','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',11,'T.D.S on Rent - for Individuals','120000.000000','10.000000',NULL),('000000053','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','Administrator',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',12,'TDS on ECB Loan','5000.000000','10.000000',NULL),('000000054','2010-08-08 17:09:36','2010-08-08 17:09:36','Administrator','nabin@webnotestech.com',0,'TDS Rate Chart October 2009 Onwards','rate_chart_detail','TDS Rate Chart',13,'TDS on Rent (Machinery)','120000.000000','2.000000',NULL),('000000055','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',1,'Professional Fees - 194J - for Companies','30000.000000','10.000000','20.000000'),('000000056','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',2,'Professional Fees - 194J - for Individuals','30000.000000','10.000000','20.000000'),('000000057','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',3,'Contractors - 194C - for Companies','30000.000000','2.000000','20.000000'),('000000058','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',4,'Contractors - 194C - for Individuals','30000.000000','1.000000','20.000000'),('000000059','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',5,'T.D.S on Other Interest - for Individuals','5000.000000','10.000000','20.000000'),('000000060','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',6,'Pay to Advt Or Sub Contr - for Companies','30000.000000','2.000000','20.000000'),('000000061','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',7,'Pay to Advt Or Sub Contr - for Individuals','30000.000000','1.000000','20.000000'),('000000062','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',8,'Commission Brokerage - for Companies','5000.000000','10.000000','20.000000'),('000000063','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',9,'Commission Brokerage - for Individuals','5000.000000','10.000000','20.000000'),('000000064','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',10,'T.D.S on Rent - for Companies','180000.000000','10.000000','20.000000'),('000000065','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',11,'T.D.S on Rent - for Individuals','180000.000000','10.000000','20.000000'),('000000066','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',12,'TDS on ECB Loan','5000.000000','10.000000','20.000000'),('000000067','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','nabin@webnotestech.com',0,'Rate chart (01-07-2010)','rate_chart_detail','TDS Rate Chart',13,'TDS on Rent (Machinery)','180000.000000','2.000000','20.000000'); -/*!40000 ALTER TABLE `tabTDS Rate Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTDS Return Acknowledgement` --- - -DROP TABLE IF EXISTS `tabTDS Return Acknowledgement`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTDS Return Acknowledgement` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `fiscal_year` varchar(180) default NULL, - `quarter` varchar(180) default NULL, - `tds_category` varchar(180) default NULL, - `acknowledgement_no` varchar(180) default NULL, - `date_of_receipt` date default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTDS Return Acknowledgement` --- - -LOCK TABLES `tabTDS Return Acknowledgement` WRITE; -/*!40000 ALTER TABLE `tabTDS Return Acknowledgement` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTDS Return Acknowledgement` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTable Mapper Detail` --- - -DROP TABLE IF EXISTS `tabTable Mapper Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTable Mapper Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `from_table` varchar(180) default NULL, - `to_table` varchar(180) default NULL, - `from_field` varchar(180) default NULL, - `to_field` varchar(180) default NULL, - `match_id` int(11) default NULL, - `validation_logic` text, - `reference_doctype_key` varchar(180) default NULL, - `reference_key` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTable Mapper Detail` --- - -LOCK TABLES `tabTable Mapper Detail` WRITE; -/*!40000 ALTER TABLE `tabTable Mapper Detail` DISABLE KEYS */; -INSERT INTO `tabTable Mapper Detail` VALUES ('000000489','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','table_mapper_details','DocType Mapper',1,'Sales Order Item','Purchase Request Item','sales_order_details','indent_details',1,'docstatus=1','prevdoc_doctype','prevdoc_detail_docname'),('000000490','2011-05-20 10:07:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Purchase Request','table_mapper_details','DocType Mapper',2,'Sales Order','Purchase Request',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000003','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','table_mapper_details','DocType Mapper',1,'Customer Issue','Maintenance Visit Purpose',NULL,'maintenance_visit_details',1,'docstatus=1','prevdoc_doctype','prevdoc_docname'),('TMD/0000004','2010-08-08 17:09:34','2011-06-03 14:46:40','Administrator','ashwini@webnotestech.com',0,'Customer Issue-Maintenance Visit','table_mapper_details','DocType Mapper',2,'Customer Issue','Maintenance Visit',NULL,NULL,0,'docstatus=1',NULL,'prevdoc_docname'),('TMD/0000005','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','table_mapper_details','DocType Mapper',0,'Delivery Note Item','Installation Note Item','delivery_note_details','installed_item_details',1,'qty > ifnull(installed_qty,0) and docstatus = 1',NULL,NULL),('TMD/0000006','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','table_mapper_details','DocType Mapper',1,'Delivery Note','Installation Note',NULL,NULL,0,'docstatus = 1',NULL,NULL),('TMD/0000007','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','table_mapper_details','DocType Mapper',1,'Delivery Note','Sales Invoice',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000008','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','table_mapper_details','DocType Mapper',2,'Delivery Note Item','Sales Invoice Item','delivery_note_details','entries',1,'(ifnull(amount, 0) = 0 or amount > ifnull(billed_amt, 0)) and docstatus = 1',NULL,NULL),('TMD/0000009','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','table_mapper_details','DocType Mapper',3,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null',NULL,NULL),('TMD/0000010','2010-08-08 17:09:34','2012-05-08 11:38:11','Administrator','Administrator',0,'Delivery Note-Sales Invoice','table_mapper_details','DocType Mapper',4,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null',NULL,NULL),('TMD/0000011','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','table_mapper_details','DocType Mapper',1,'Opportunity','Quotation',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000012','2010-08-08 17:09:34','2012-05-08 11:38:10','Administrator','Administrator',0,'Opportunity-Quotation','table_mapper_details','DocType Mapper',2,'Opportunity Item','Quotation Item','enq_details','quotation_details',1,'docstatus=1',NULL,NULL),('TMD/0000014','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','table_mapper_details','DocType Mapper',1,'Purchase Request','Purchase Order','','',0,'docstatus = 1','','prevdoc_docname'),('TMD/0000015','2010-08-08 17:09:34','2012-07-12 19:25:52','Administrator','Administrator',0,'Purchase Request-Purchase Order','table_mapper_details','DocType Mapper',2,'Purchase Request Item','Purchase Order Item','indent_details','po_details',1,'qty > ifnull(ordered_qty,0) and docstatus =1','prevdoc_doctype',''),('TMD/0000016','2010-08-08 17:09:34','2011-09-14 12:41:13','Administrator','Administrator',0,'Lead-Customer','table_mapper_details','DocType Mapper',0,'Lead','Customer',NULL,NULL,0,'name is not null','',''),('TMD/0000017','2010-08-08 17:09:35','2012-05-08 11:38:11','Administrator','Administrator',0,'Lead-Opportunity','table_mapper_details','DocType Mapper',1,'Lead','Opportunity',NULL,NULL,0,'name is not null','',''),('TMD/0000022','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','table_mapper_details','DocType Mapper',1,'Purchase Order','Purchase Invoice',NULL,NULL,0,'docstatus =1',NULL,NULL),('TMD/0000023','2010-08-08 17:09:35','2012-05-08 11:38:11','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','table_mapper_details','DocType Mapper',2,'Purchase Order Item','Purchase Invoice Item','po_details','entries',1,'ifnull(billed_qty,0) < qty and docstatus = 1',NULL,NULL),('TMD/0000024','2010-08-08 17:09:35','2012-05-08 11:38:11','Administrator','Administrator',0,'Purchase Order-Purchase Invoice','table_mapper_details','DocType Mapper',3,'Purchase Taxes and Charges','Purchase Taxes and Charges','purchase_tax_details','purchase_tax_details',2,'docstatus =1',NULL,NULL),('TMD/0000025','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','table_mapper_details','DocType Mapper',1,'Purchase Order Item','Purchase Receipt Item','po_details','purchase_receipt_details',1,'docstatus=1 and qty > ifnull(received_qty,0)','prevdoc_doctype','prevdoc_detail_docname'),('TMD/0000026','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','table_mapper_details','DocType Mapper',2,'Purchase Order','Purchase Receipt',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000027','2010-08-08 17:09:35','2012-03-01 18:05:46','Administrator','Administrator',0,'Purchase Order-Purchase Receipt','table_mapper_details','DocType Mapper',3,'Purchase Taxes and Charges','Purchase Taxes and Charges','purchase_tax_details','purchase_tax_details',2,'docstatus = 1',NULL,NULL),('TMD/0000028','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','table_mapper_details','DocType Mapper',1,'Purchase Receipt Item','Purchase Invoice Item','purchase_receipt_details','entries',1,'ifnull(billed_qty,0) < qty',NULL,NULL),('TMD/0000029','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','table_mapper_details','DocType Mapper',2,'Purchase Receipt','Purchase Invoice',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000030','2010-08-08 17:09:35','2012-05-08 11:38:10','Administrator','Administrator',0,'Purchase Receipt-Purchase Invoice','table_mapper_details','DocType Mapper',3,'Purchase Taxes and Charges','Purchase Taxes and Charges','purchase_tax_details','purchase_tax_details',2,'docstatus=1',NULL,NULL),('TMD/0000031','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','table_mapper_details','DocType Mapper',0,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null',NULL,NULL),('TMD/0000032','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','table_mapper_details','DocType Mapper',1,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null',NULL,NULL),('TMD/0000033','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','table_mapper_details','DocType Mapper',2,'Quotation Item','Sales Order Item','quotation_details','sales_order_details',1,'name is not null','prevdoc_doctype',NULL),('TMD/0000034','2010-08-08 17:09:35','2011-09-14 12:41:13','Administrator','Administrator',0,'Quotation-Sales Order','table_mapper_details','DocType Mapper',3,'Quotation','Sales Order',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000035','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','table_mapper_details','DocType Mapper',1,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null',NULL,NULL),('TMD/0000036','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','table_mapper_details','DocType Mapper',2,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null',NULL,NULL),('TMD/0000037','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','table_mapper_details','DocType Mapper',3,'Sales Order Item','Delivery Note Item','sales_order_details','delivery_note_details',1,'qty > ifnull(delivered_qty,0) and docstatus = 1','prevdoc_doctype','prevdoc_detail_docname'),('TMD/0000038','2010-08-08 17:09:35','2012-03-28 11:40:23','Administrator','Administrator',0,'Sales Order-Delivery Note','table_mapper_details','DocType Mapper',4,'Sales Order','Delivery Note',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000041','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Schedule','table_mapper_details','DocType Mapper',1,'Sales Order Item','Maintenance Schedule Item','sales_order_details','item_maintenance_detail',1,'docstatus =1',NULL,NULL),('TMD/0000042','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','Administrator',0,'Sales Order-Maintenance Schedule','table_mapper_details','DocType Mapper',2,'Sales Order','Maintenance Schedule',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000043','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','table_mapper_details','DocType Mapper',1,'Sales Order Item','Maintenance Visit Purpose','sales_order_details','maintenance_visit_details',1,'docstatus=1',NULL,NULL),('TMD/0000044','2010-08-08 17:09:36','2011-06-03 14:46:41','Administrator','ashwini@webnotestech.com',0,'Sales Order-Maintenance Visit','table_mapper_details','DocType Mapper',2,'Sales Order','Maintenance Visit',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000047','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','table_mapper_details','DocType Mapper',1,'Sales Order','Sales Invoice',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000048','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','table_mapper_details','DocType Mapper',2,'Sales Order Item','Sales Invoice Item','sales_order_detail','entries',1,'(ifnull(amount, 0) = 0 or amount > ifnull(billed_amt, 0)) and docstatus = 1',NULL,NULL),('TMD/0000049','2010-08-08 17:09:36','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','table_mapper_details','DocType Mapper',3,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null',NULL,NULL),('TMD/0000058','2010-08-09 09:44:01','2011-09-14 12:41:13','Administrator','Administrator',0,'Delivery Note-Installation Note','table_mapper_details','DocType Mapper',2,'Delivery Note','Installation Note Item',NULL,'installed_item_details',2,'docstatus = 1','prevdoc_doctype','prevdoc_docname'),('TMD/0000059','2010-09-01 15:47:59','2012-05-08 11:38:10','Administrator','ashwini@webnotestech.com',0,'Appraisal Template-Appraisal','table_mapper_details','DocType Mapper',1,'Appraisal Template Goal','Appraisal Goal','kra_sheet','appraisal_details',0,'name is not Null','',''),('TMD/0000060','2010-09-01 15:47:59','2010-09-01 15:47:59','Administrator','harshada@webnotestech.com',0,'Project-Delivery Note','table_mapper_details','DocType Mapper',1,'Project','Delivery Note',NULL,NULL,0,'name is not null','',''),('TMD/0000061','2010-09-01 15:47:59','2012-05-08 11:38:10','Administrator','ashwini@webnotestech.com',0,'Project-Sales Invoice','table_mapper_details','DocType Mapper',1,'Project','Sales Invoice',NULL,NULL,0,'name is not null','',''),('TMD/0000062','2010-09-01 15:47:59','2010-09-01 15:47:59','Administrator','ashwini@webnotestech.com',0,'Project-Sales Order','table_mapper_details','DocType Mapper',1,'Project','Sales Order',NULL,NULL,0,'name is not null','',''),('TMD/0000063','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','table_mapper_details','DocType Mapper',1,'Salary Structure','Salary Slip',NULL,NULL,0,'name is not null','',''),('TMD/0000064','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','table_mapper_details','DocType Mapper',2,'Salary Structure Earning','Salary Slip Earning','earning_details','earning_details',1,'name is not null','',''),('TMD/0000065','2010-12-14 10:33:11','2010-12-14 10:33:11','Administrator','harshada@webnotestech.com',0,'Salary Structure-Salary Slip','table_mapper_details','DocType Mapper',3,'Salary Structure Deduction','Salary Slip Deduction','deduction_details','deduction_details',2,'name is not null','',''),('TMD/0000070','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','table_mapper_details','DocType Mapper',1,'Sales Invoice','Delivery Note','',NULL,0,'docstatus=1','',''),('TMD/0000071','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','table_mapper_details','DocType Mapper',2,'Sales Invoice Item','Delivery Note Item','entries','delivery_note_details',1,'docstatus = 1','',''),('TMD/0000072','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','table_mapper_details','DocType Mapper',3,'Sales Taxes and Charges','Sales Taxes and Charges','other_charges','other_charges',2,'name is not null','',''),('TMD/0000073','2010-12-14 17:56:41','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Invoice-Delivery Note','table_mapper_details','DocType Mapper',4,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null','',''),('TMD/0000074','2011-02-21 09:23:55','2012-05-08 11:38:10','Administrator','Administrator',0,'Sales Order-Sales Invoice','table_mapper_details','DocType Mapper',4,'Sales Team','Sales Team','sales_team','sales_team',3,'name is not null',NULL,NULL),('TMD/0000075','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','table_mapper_details','DocType Mapper',1,'Delivery Note','Packing Slip',NULL,NULL,0,'docstatus=0',NULL,NULL),('TMD/0000076','2012-02-02 11:53:19','2012-02-02 11:53:19','Administrator','Administrator',0,'Delivery Note-Packing Slip','table_mapper_details','DocType Mapper',2,'Delivery Note Item','Packing Slip Item','delivery_note_details','item_details',1,'IFNULL(packed_qty, 0) < IFNULL(qty, 0)',NULL,NULL),('TMD/0000079','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','table_mapper_details','DocType Mapper',1,'Maintenance Schedule Item','Maintenance Visit Purpose','item_maintenance_detail','maintenance_visit_details',1,'docstatus=1',NULL,NULL),('TMD/0000080','2012-06-27 14:23:48','2012-06-27 14:23:48','Administrator','Administrator',0,'Maintenance Schedule-Maintenance Visit','table_mapper_details','DocType Mapper',2,'Maintenance Schedule','Maintenance Visit',NULL,NULL,0,'docstatus=1',NULL,NULL),('TMD/0000081','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','table_mapper_details','DocType Mapper',1,'Purchase Request','Supplier Quotation',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000082','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Purchase Request-Supplier Quotation','table_mapper_details','DocType Mapper',2,'Purchase Request Item','Supplier Quotation Item','indent_details','quotation_items',1,'docstatus =1','prevdoc_doctype',NULL),('TMD/0000083','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','table_mapper_details','DocType Mapper',1,'Supplier Quotation','Purchase Order',NULL,NULL,0,'docstatus = 1',NULL,'prevdoc_docname'),('TMD/0000084','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','table_mapper_details','DocType Mapper',2,'Supplier Quotation Item','Purchase Order Item','quotation_details','po_details',1,'docstatus = 1','prevdoc_doctype',NULL),('TMD/0000085','2012-10-02 13:17:57','2012-10-02 13:17:57','Administrator','Administrator',0,'Supplier Quotation-Purchase Order','table_mapper_details','DocType Mapper',3,'Purchase Taxes and Charges','Purchase Taxes and Charges','purchase_tax_details','purchase_tax_details',2,'docstatus = 1',NULL,NULL); -/*!40000 ALTER TABLE `tabTable Mapper Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTag` --- - -DROP TABLE IF EXISTS `tabTag`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTag` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `tag_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTag` --- - -LOCK TABLES `tabTag` WRITE; -/*!40000 ALTER TABLE `tabTag` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTag` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTarget Detail` --- - -DROP TABLE IF EXISTS `tabTarget Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTarget Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `item_group` varchar(180) default NULL, - `fiscal_year` varchar(180) default NULL, - `target_qty` decimal(18,6) default NULL, - `target_amount` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `item_group` (`item_group`), - KEY `fiscal_year` (`fiscal_year`), - KEY `target_amount` (`target_amount`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTarget Detail` --- - -LOCK TABLES `tabTarget Detail` WRITE; -/*!40000 ALTER TABLE `tabTarget Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTarget Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTask` --- - -DROP TABLE IF EXISTS `tabTask`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTask` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `subject` varchar(180) default NULL, - `status` varchar(180) default NULL, - `opening_date` date default NULL, - `review_date` date default NULL, - `closing_date` date default NULL, - `category` varchar(180) default NULL, - `external_or_internal` varchar(180) default NULL, - `priority` varchar(180) default NULL, - `senders_name` varchar(180) default NULL, - `senders_email` varchar(180) default NULL, - `senders_contact_no` varchar(180) default NULL, - `senders_company` varchar(180) default NULL, - `project` varchar(180) default NULL, - `start_date` date default NULL, - `scheduled_date` date default NULL, - `allocated_to` varchar(180) default NULL, - `assignee_email` varchar(180) default NULL, - `description` text, - `first_creation_flag` int(11) default NULL, - `second_creation_flag` int(11) default NULL, - `date` date default NULL, - `type` varchar(180) default NULL, - `reason` mediumtext, - `document_num` varchar(180) default NULL, - `ticket_by` varchar(180) default NULL, - `ticket_by_email` varchar(180) default NULL, - `customer` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `allocated_to_name` varchar(180) default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `exp_start_date` date default NULL, - `exp_end_date` date default NULL, - `exp_total_hrs` varchar(180) default NULL, - `allocated_budget` decimal(18,6) default NULL, - `act_start_date` date default NULL, - `act_end_date` date default NULL, - `act_total_hrs` varchar(180) default NULL, - `actual_budget` decimal(18,6) default NULL, - `task_email_notify` int(1) default NULL, - `sent_reminder` varchar(180) default NULL, - `allocated_to_old` varchar(180) default NULL, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `priority` (`priority`), - KEY `senders_name` (`senders_name`), - KEY `scheduled_date` (`scheduled_date`), - KEY `parent` (`parent`), - KEY `exp_end_date` (`exp_end_date`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTask` --- - -LOCK TABLES `tabTask` WRITE; -/*!40000 ALTER TABLE `tabTask` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTask` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTerms and Conditions` --- - -DROP TABLE IF EXISTS `tabTerms and Conditions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTerms and Conditions` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `title` varchar(180) default NULL, - `terms` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTerms and Conditions` --- - -LOCK TABLES `tabTerms and Conditions` WRITE; -/*!40000 ALTER TABLE `tabTerms and Conditions` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTerms and Conditions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTerritory` --- - -DROP TABLE IF EXISTS `tabTerritory`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTerritory` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `territory_name` varchar(180) default NULL, - `territory_manager` varchar(180) default NULL, - `parent_territory` varchar(180) default NULL, - `is_group` varchar(180) default NULL, - `lft` int(11) default NULL, - `rgt` int(11) default NULL, - `old_parent` varchar(180) default NULL, - `distribution_id` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `territory_manager` (`territory_manager`), - KEY `lft` (`lft`), - KEY `rgt` (`rgt`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTerritory` --- - -LOCK TABLES `tabTerritory` WRITE; -/*!40000 ALTER TABLE `tabTerritory` DISABLE KEYS */; -INSERT INTO `tabTerritory` VALUES ('All Territories','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','harshada@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'All Territories',NULL,'','Yes',1,4,'',NULL,NULL),('Default','2010-12-14 17:56:44','2012-10-02 13:17:59','Administrator','nabin@webnotestech.com',0,NULL,NULL,NULL,NULL,NULL,'Default',NULL,'All Territories','No',2,3,'All Territories',NULL,NULL); -/*!40000 ALTER TABLE `tabTerritory` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTimesheet Detail` --- - -DROP TABLE IF EXISTS `tabTimesheet Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTimesheet Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `project_name` varchar(180) default NULL, - `task_name` varchar(180) default NULL, - `task_id` varchar(180) default NULL, - `customer_name` varchar(180) default NULL, - `act_start_time` time default NULL, - `act_end_time` time default NULL, - `act_total_hrs` varchar(180) default NULL, - `other_details` text, - `activity_type` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `project_name` (`project_name`), - KEY `task_id` (`task_id`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTimesheet Detail` --- - -LOCK TABLES `tabTimesheet Detail` WRITE; -/*!40000 ALTER TABLE `tabTimesheet Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTimesheet Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTimesheet` --- - -DROP TABLE IF EXISTS `tabTimesheet`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTimesheet` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(180) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `status` varchar(180) default 'Draft', - `timesheet_date` date default NULL, - `amended_from` varchar(180) default NULL, - `amendment_date` date default NULL, - `notes` text, - `file_list` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `status` (`status`), - KEY `timesheet_date` (`timesheet_date`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTimesheet` --- - -LOCK TABLES `tabTimesheet` WRITE; -/*!40000 ALTER TABLE `tabTimesheet` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTimesheet` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabToDo` --- - -DROP TABLE IF EXISTS `tabToDo`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabToDo` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `description` text, - `date` date default NULL, - `priority` varchar(180) default NULL, - `reference_type` varchar(180) default NULL, - `reference_name` varchar(180) default NULL, - `checked` int(1) default NULL, - `role` varchar(180) default NULL, - `assigned_by` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabToDo` --- - -LOCK TABLES `tabToDo` WRITE; -/*!40000 ALTER TABLE `tabToDo` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabToDo` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabTop Bar Item` --- - -DROP TABLE IF EXISTS `tabTop Bar Item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabTop Bar Item` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `url` varchar(180) default NULL, - `parent_label` varchar(180) default NULL, - `custom_page` varchar(180) default NULL, - `label` varchar(180) default NULL, - `target` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabTop Bar Item` --- - -LOCK TABLES `tabTop Bar Item` WRITE; -/*!40000 ALTER TABLE `tabTop Bar Item` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabTop Bar Item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabUOM Conversion Detail` --- - -DROP TABLE IF EXISTS `tabUOM Conversion Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabUOM Conversion Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `uom` varchar(180) default NULL, - `conversion_factor` decimal(18,6) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabUOM Conversion Detail` --- - -LOCK TABLES `tabUOM Conversion Detail` WRITE; -/*!40000 ALTER TABLE `tabUOM Conversion Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabUOM Conversion Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabUOM` --- - -DROP TABLE IF EXISTS `tabUOM`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabUOM` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `uom_name` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabUOM` --- - -LOCK TABLES `tabUOM` WRITE; -/*!40000 ALTER TABLE `tabUOM` DISABLE KEYS */; -INSERT INTO `tabUOM` VALUES ('Box','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Box',NULL),('Ft','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Ft',NULL),('Kg','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Kg',NULL),('Ltr','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Ltr',NULL),('Mtr','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Mtr',NULL),('Nos','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Nos',NULL),('Pair','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Pair',NULL),('Set','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Set',NULL); -/*!40000 ALTER TABLE `tabUOM` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabUserRole` --- - -DROP TABLE IF EXISTS `tabUserRole`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabUserRole` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `role` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabUserRole` --- - -LOCK TABLES `tabUserRole` WRITE; -/*!40000 ALTER TABLE `tabUserRole` DISABLE KEYS */; -INSERT INTO `tabUserRole` VALUES ('UR00001','2009-05-12 11:19:22','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',1,'Administrator'),('UR00002','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',2,'System Manager'),('UR00003','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',3,'Sales User'),('UR00004','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',4,'Sales Master Manager'),('UR00005','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',5,'Sales Manager'),('UR00006','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',6,'Quality Manager'),('UR00007','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',7,'Purchase User'),('UR00008','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',8,'Purchase Master Manager'),('UR00009','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',9,'Purchase Manager'),('UR00010','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',10,'Projects User'),('UR00011','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',11,'Production User'),('UR00012','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',12,'Production Manager'),('UR00013','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',13,'Material User'),('UR00014','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',14,'Material Master Manager'),('UR00015','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',15,'Material Manager'),('UR00016','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',16,'Maintenance User'),('UR00017','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',17,'Maintenance Manager'),('UR00018','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',18,'HR User'),('UR00019','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',19,'HR Manager'),('UR00020','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',20,'Accounts User'),('UR00021','2010-08-08 17:24:25','2010-08-08 17:24:25','Administrator','Administrator',0,'Administrator','userroles','Profile',21,'Accounts Manager'),('UR00022','2012-02-13 19:12:20','2012-02-13 19:12:20','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,NULL),('UR00023','2012-02-14 13:03:40','2012-02-14 13:03:40','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Website Manager'),('UR00024','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Accounts Manager'),('UR00025','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Accounts User'),('UR00026','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Blogger'),('UR00027','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'HR Manager'),('UR00028','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'HR User'),('UR00029','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Maintenance User'),('UR00030','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Maintenance Manager'),('UR00031','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material Manager'),('UR00032','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material User'),('UR00033','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material Master Manager'),('UR00034','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Production Manager'),('UR00035','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Production User'),('UR00036','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Projects User'),('UR00037','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase Manager'),('UR00038','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase User'),('UR00039','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase Master Manager'),('UR00040','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Quality Manager'),('UR00041','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales Manager'),('UR00042','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales User'),('UR00043','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales Master Manager'),('UR00044','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Support Manager'),('UR00045','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Support Team'),('UR00046','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'System Manager'),('UR00047','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Website Manager'),('UR00048','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Accounts Manager'),('UR00049','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Accounts User'),('UR00050','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Blogger'),('UR00051','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'HR Manager'),('UR00052','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'HR User'),('UR00053','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Maintenance User'),('UR00054','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Maintenance Manager'),('UR00055','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material Manager'),('UR00056','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material User'),('UR00057','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Material Master Manager'),('UR00058','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Production Manager'),('UR00059','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Production User'),('UR00060','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Projects User'),('UR00061','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase Manager'),('UR00062','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase User'),('UR00063','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Purchase Master Manager'),('UR00064','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Quality Manager'),('UR00065','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales Manager'),('UR00066','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales User'),('UR00067','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Sales Master Manager'),('UR00068','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Support Manager'),('UR00069','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Support Team'),('UR00070','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'System Manager'),('UR00071','2012-03-01 15:46:08','2012-03-01 15:46:08','Administrator','Administrator',0,'Administrator','userroles','Profile',NULL,'Website Manager'); -/*!40000 ALTER TABLE `tabUserRole` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabWarehouse Type` --- - -DROP TABLE IF EXISTS `tabWarehouse Type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabWarehouse Type` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `warehouse_type` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `warehouse_type` (`warehouse_type`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabWarehouse Type` --- - -LOCK TABLES `tabWarehouse Type` WRITE; -/*!40000 ALTER TABLE `tabWarehouse Type` DISABLE KEYS */; -INSERT INTO `tabWarehouse Type` VALUES ('Default Warehouse Type','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Warehouse Type',NULL),('Fixed Asset','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Fixed Asset',NULL),('Rejected','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Rejected',NULL),('Reserved','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Reserved',NULL),('Sample','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Sample',NULL),('Stores','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Stores',NULL),('WIP Warehouse','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'WIP Warehouse',NULL); -/*!40000 ALTER TABLE `tabWarehouse Type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabWarehouse` --- - -DROP TABLE IF EXISTS `tabWarehouse`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabWarehouse` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `warehouse_name` varchar(180) default NULL, - `warehouse_type` varchar(180) default NULL, - `company` varchar(180) default NULL, - `email_id` varchar(180) default NULL, - `auto_indent_mail` varchar(180) default NULL, - `phone_no` varchar(180) default NULL, - `mobile_no` varchar(180) default NULL, - `address_line_1` varchar(180) default NULL, - `address_line_2` varchar(180) default NULL, - `country` varchar(180) default NULL, - `state` varchar(180) default NULL, - `city` varchar(180) default NULL, - `pin` int(11) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `company` (`company`), - KEY `parent` (`parent`), - KEY `country` (`country`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabWarehouse` --- - -LOCK TABLES `tabWarehouse` WRITE; -/*!40000 ALTER TABLE `tabWarehouse` DISABLE KEYS */; -INSERT INTO `tabWarehouse` VALUES ('Default Warehouse','2010-08-08 17:49:05','2010-08-09 08:54:42','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Warehouse','Default Warehouse Type','',NULL,NULL,NULL,NULL,NULL,NULL,'','',NULL,NULL,NULL); -/*!40000 ALTER TABLE `tabWarehouse` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabWeb Cache` --- - -DROP TABLE IF EXISTS `tabWeb Cache`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabWeb Cache` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `doc_name` varchar(180) default NULL, - `doc_type` varchar(180) default NULL, - `html` longtext, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabWeb Cache` --- - -LOCK TABLES `tabWeb Cache` WRITE; -/*!40000 ALTER TABLE `tabWeb Cache` DISABLE KEYS */; -INSERT INTO `tabWeb Cache` VALUES ('404','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('blog','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('home','2012-10-02 13:13:43','2012-10-02 13:13:43','Administrator','Administrator',0,NULL,NULL,NULL,NULL,'home','Web Page',''),('index','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('login','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('products','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''),('unsubscribed','2012-10-02 13:13:44','2012-10-02 13:13:44','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,NULL,''); -/*!40000 ALTER TABLE `tabWeb Cache` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabWeb Page` --- - -DROP TABLE IF EXISTS `tabWeb Page`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabWeb Page` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `next_page` varchar(180) default NULL, - `title` varchar(180) default NULL, - `side_section` text, - `file_list` text, - `head_section` text, - `main_section` text, - `layout` varchar(180) default NULL, - `insert_code` int(1) default NULL, - `javascript` text, - `text_align` varchar(180) default NULL, - `insert_style` int(1) default NULL, - `page_name` varchar(180) default NULL, - `css` text, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabWeb Page` --- - -LOCK TABLES `tabWeb Page` WRITE; -/*!40000 ALTER TABLE `tabWeb Page` DISABLE KEYS */; -INSERT INTO `tabWeb Page` VALUES ('home','2012-02-13 19:12:21','2012-10-02 13:13:43','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Home','

    Links to other pages

    ',NULL,'

    Your Headline

    ','

    Some introduction about your company

    ',NULL,NULL,NULL,NULL,NULL,'home',NULL,NULL); -/*!40000 ALTER TABLE `tabWeb Page` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabWorkflow Action Detail` --- - -DROP TABLE IF EXISTS `tabWorkflow Action Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabWorkflow Action Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `action_field` varchar(180) default NULL, - `action_value` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabWorkflow Action Detail` --- - -LOCK TABLES `tabWorkflow Action Detail` WRITE; -/*!40000 ALTER TABLE `tabWorkflow Action Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabWorkflow Action Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabWorkflow Rule Detail` --- - -DROP TABLE IF EXISTS `tabWorkflow Rule Detail`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabWorkflow Rule Detail` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `rule_field` varchar(180) default NULL, - `operator` varchar(180) default NULL, - `value` varchar(180) default NULL, - `comparing_field` varchar(180) default NULL, - `message` varchar(180) default NULL, - `exception` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabWorkflow Rule Detail` --- - -LOCK TABLES `tabWorkflow Rule Detail` WRITE; -/*!40000 ALTER TABLE `tabWorkflow Rule Detail` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabWorkflow Rule Detail` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabWorkflow Rule` --- - -DROP TABLE IF EXISTS `tabWorkflow Rule`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabWorkflow Rule` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `rule_name` varchar(180) default NULL, - `rule_status` varchar(180) default NULL, - `select_form` varchar(180) default NULL, - `rule_priority` int(11) default NULL, - `extra_condition` text, - `message` text, - `raise_exception` varchar(180) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `select_form` (`select_form`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabWorkflow Rule` --- - -LOCK TABLES `tabWorkflow Rule` WRITE; -/*!40000 ALTER TABLE `tabWorkflow Rule` DISABLE KEYS */; -/*!40000 ALTER TABLE `tabWorkflow Rule` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `tabWorkstation` --- - -DROP TABLE IF EXISTS `tabWorkstation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `tabWorkstation` ( - `name` varchar(120) NOT NULL, - `creation` datetime default NULL, - `modified` datetime default NULL, - `modified_by` varchar(40) default NULL, - `owner` varchar(40) default NULL, - `docstatus` int(1) default '0', - `parent` varchar(120) default NULL, - `parentfield` varchar(120) default NULL, - `parenttype` varchar(120) default NULL, - `idx` int(8) default NULL, - `trash_reason` text, - `workstation_name` varchar(180) default NULL, - `warehouse` varchar(180) default NULL, - `description` text, - `capacity` varchar(180) default NULL, - `capacity_units` varchar(180) default NULL, - `hour_rate_labour` decimal(18,6) default NULL, - `hour_rate_electricity` decimal(18,6) default NULL, - `hour_rate_consumable` decimal(18,6) default NULL, - `hour_rate_rent` decimal(18,6) default NULL, - `overhead` decimal(18,6) default NULL, - `hour_rate` decimal(18,6) default NULL, - `_user_tags` varchar(180) default NULL, - PRIMARY KEY (`name`), - KEY `parent` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `tabWorkstation` --- - -LOCK TABLES `tabWorkstation` WRITE; -/*!40000 ALTER TABLE `tabWorkstation` DISABLE KEYS */; -INSERT INTO `tabWorkstation` VALUES ('Default Workstation','2010-08-08 17:49:05','2010-08-08 17:49:05','Administrator','Administrator',0,NULL,NULL,NULL,NULL,NULL,'Default Workstation','Default Warehouse','Default Workstation',NULL,NULL,'0.000000','0.000000','0.000000','0.000000','0.000000','0.000000',NULL); -/*!40000 ALTER TABLE `tabWorkstation` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2012-10-02 9:51:20 diff --git a/master.sql.gz b/master.sql.gz new file mode 100644 index 0000000000000000000000000000000000000000..f331784cf176a40251975498bd9b9d3ecbed9903 GIT binary patch literal 222996 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%0AXRl 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

    b~pY9?|yUR{~F%AQfG~}gNa;f&V z>J3ZLYAQ{po;uCMA`OK#ipyAsKtR%106osYa_vAvI52WbqkC;avOFR2(>?@;FhbvO zWWF5~GwM&B7lar!SKUf5W2#y;5ojn*cGe~ zKm!yklG8ESMTa#j9~S5emX8_PXNn=C($C&~aJJvCgVig#phiFbh;Cl6CGrdOfB!Ga zKg%trUr7ASHP*v&0YO7Rj?*JBh8EwcXQ<_#8o{z5PTkYpbSp`^9ZwaWJ^zj>Zi4vp z8M%>mx^7oNgAXLcz*BHQUtD(&;RIG+AbcxM2@%`*qDF*p7#^WGK=9h5SLhG?nU&+C z*ttgzf-?np=Ws zk6ye<+82}q-FpuZCZQC^?#Xx=j?+ear(k3Pv8A)Sq&gwaxQ8BmkIG3ew;3o`J2ZyK zjKpgKlgI~XIA`F~&aTDuk{C{!YxY{*OD<_>41{^3En>bqOty+)i`Wnr-P7+fEEbso z7bpN*Z@4`Uw{ihPV;CHz18Qbb&IiQI(p{Rf$eG$Vjod&XS1>e&$uYIY!{eY}Jbjv^ zB;2u(#{?9T7ScU~E@g&8x+X7Hm#tQd$jGx>LdP<19;Mxai;%Fc!$P;@o+e`|BQ9s) zVdjIr(7Uhv>T^tth>XBvm(#+5LUg;_d0RJ%1D_1A=fVvgWz8-v&UX7Cj2%BlWQZrE z4!6#o7whGHCV(*TkPd17Ewm84fydi-mP0H%c?O??k^JL$wY3dlFYK zpy8HS5%r=bDWnaJK{OLaHHK3%=!tky8(JHzNg-Qk41sykwjhC^o(ZD`Lj#3!p)qhU zuO^nV1BeMo|ML4P>jD!~oT z&p%h6dPo`u--l=(c1TKEV6scJ$3@5B!MPLSN%L78wJY@hjG-|mVd|p@Hw3^S=_@}&BBH<~9ZH(BNv~=; z#@MCEW1z@xxD>0Mhvx4CX&#%P*yXk3sSrmgotKhmOV3IJMIpRr44YYsjeyA@lbQ<; zlRU`kIciKmJS2qA6bh49fVuzUCfFqlQMxLSomFM`$L0zhK4Wmrg{H)gVUkL)Q=0s9 zU4;luNi-=6c4_W-AqFN}ui3F;8on$^lH{s#>}m^5p-asbQhCPEA)dT`3|oPCoMrBA zGyz@kghGyDh~35%ud>tFCBEb1mf>Z~H(y#}VVCkwhUu&K1EFESAzSu|hG=3Jox?7d zonS8O?(lR=HE-X+B|3vkA=OgN?ef;iSQrlPsd7>}WHKqGVh;J-%kvw-#j@4Iq*KM! zyk~GLraD(B(iy{o1g6>2Fu4OzKHg>`;VRt5^L4KFU8>$$oh#JnT2ofWXgHO*aa{I{WV7lUrX?aqreEM8>Q z=U#&3yHr*$!yHO-nra25Nv27$*kNf4Vv)o0IW(M%%cFK*2W#g^1y7EOC?xN!z=H># z;L#_my%d!j|?sIi070>O}^#J*ht3b%*uxE!Z{ra;M!GQ(p$E_5>28Gn zHF+@5SyCwU=8VBhLJQI7iRK6w>tdU=`RBSe^{w=L<_f_%V?a!VigIH-4g|B+%RkSB zL(k^cpStV8(v|?%gk}1?1mNci2{>c*pS2OY0^z-1FD~f6uW`{vqt|ufbJc4ZZ7Fa~ zWPtY4QEs_PM>swpio>3Kn6??9bFL7KGX~Bg1qTAC2*A80w-ge=0&ehwyZb4fHHe9% zv){W;NW@CfrR z6(AL1Y-Lnf=zuyfv?bOxVR&Y8<8y`3oH;%yoDQ+B#m|Szx>lNpkm!Gk4rZHak5Xh= z596qr>tSV0OCdpL4uCOn+u0p_Z{?8X>IQ$99=x84>F5JbmriYs`&}JuEYo8umXyJU zH<1i5T{VnuWsXe5x|;|$HrN;+yaSIYGCs4frQ2jJm*WI2hqD+n=VIn~=kPz3i0G#_U*1j7$Tap~^=+Nri28WpX zqLnmV3A&bf`Y5N;Fz%b7Ds=SB0RR*|bk`o7^*j-)KXQlOk~@mSnMzWj^U1(6KL>|} zNB1`J$nnc&R+Q z|^K5pA^z}7U7w&&>fDK+G>#8nZO?6 z(@qVb@}EhOk&|SL$kaFrvg=+qSE$=r#HKqJp*E6Q`6eSLz7}DbYdXQu>Ii-vgX|-% znW)}4ET_d5u~}%iz!Y&|In3cAC(IUcIf8&|_@S`oX5;TOi<~f5=+#-oida?=M{nW| zb44A&KLxUulYdzLPjlDrxk78sCJDsZ@W{AZuE;LU;0#|Qx?__`&yL8Dt3uSI<$$bE znzM<_NFXr0XAQDxO+@(GnJy@l7AIv!46)N;mMC|Z8MYp0q76# z#OK4!6~cNp;W`%8jtEex9@1yH%{|rFM{0siZVXar?AhFa9Ew$sgA6d&!JzO|;Z|n^ zo!%LGK9W`0@u_7ds*vEb3C=h(1SR?>JSEjY$>-7STy+*Q`L@$LQHOIPQuPPWS9{{n zfK~zVQ_Vihxi2_dH%d01x(BCsVh$m$#CDPFE{V-2NtEVfJY9#Ow_6Y^wEJwLHA}ZA z*-;wboGdv^vq6Lu(tS3unUf)!j?a_6&07>Qem3zCV_nH3eo=IqntYUu*D6qYXUinS zRaGn-3QJ~xUzS6xzh*d_GH?{qem22r8}2F}R!<9)s^z&t-_PdZ^HA^`@}m6~&V_Sl zVJ+=B>h~pu#Gg%AM#6wQ?R&sgi2d2bV=VZ^iF>#lN6R+a7z}6gL85r zoQc_+gcKruHW8Voh>+lM0*!mOOCtr?1f_RsJDHJF(+6+miZM57iV&DnlBYYfx_T3K z@052kujld7cp$EWO7FyXvJmE_S?}{w@0@pX)X)*gmrmV&dfzRl){rYUnzyBEk`c;2nKECVjXMoK6v z$+LpW>{D5UeOAR-Z&(bksHjCWscf12+%Z8>lYJQmOJ;6NdjX9bU=XShSI(8RNX z$Fa`VxJ4-1lG!$FZK$~^u7;!27~Kl}J3Cm6tol9FL8V8I3f>@M6bG(_AcSz>Y6!(# z8bbD(dv=xcO^=Kfd_uaE)X;Gw*V5C-Vzf|*-`T;aqm2Zu5vI48k=me~CvpvFiQ|2~<9@kV9q#PV!efShPEvT_{BK?0|)N z@4Xu@c{}>qjZvm8y*b1&*=9*D_J{3uDZ;mwYi*RERy&#OywYU1BR@BVLKl?=P z5s#0?JF4hte)a1G{J=1^MQ`Q$vruUJ8LoSMflO+Ga~+^dcfWnQ@qc%`7_fr)%AADW z_#cApnj7j!W2-0^`DL~^!yIJY({v5Uh+xny)2Y4USG2&5JjANnN{&7$r2P!n8l324 zrZwmrvUU3HAp2ZbD=I$-YiTH`q3NE6Yd|wA5B#wY13akimf1XdE``NeswO~^ai)9r zt%1=TFXcCw(5!ig*K2auiEe;AzH7aSr+dz=0m=eTJnrK%bfbOXN8~8eeZ=D`ztta8 z^kJ#jR=Q`+8n7IJ3BJE3(+>QhwW&+@It48aeE{m59GuPCJZ zOoK78V>42MgQSo2!fHp;5_6I6T-fU&(F=(k&5Zj{)s&0JZflDn&4t}0P2OTT8(_BiBc6&Q)ug%Mrzbou%<2=S3g_09mYnh zHi&N8x^i2$C7_suYLbD0jm`p8Y@jaYsWE~Z7_@rf#$(2f!4``N-=ET3QR!YzeY6Iu zCP#1zQ9IL6%pi5^F1PrT1MuX=toS3jW_(39*i<^Y)oB84>97-R9&v))2T(lj`^}3y zHe6nb}7 zA(^$?tTF&fTVmV+DD!q+P6j|}OMN>4Wzl#C%K#p2`E3Vy9BH~c*@C1ki|qgsOB)qz z=BaZ=)LP1}3xbDp?)-Sg*N5V#*jiD1thdou5_U&-m#?*+T^HDlSmoJ*Q2Z2I9Ey+I z?D*BUovfYbJm!(OPTrxzt3G5oggQE0?wAFR+=-2f@ z8VFyb>Co6(U9SsZXU|omV$oV+uM2qQ|74yxt@Zc108I=cPX#~;D%rSH6gpWx`33=x zW@Q?{XF&7eG*V{WKTvrW(3*+PgC+Son0fPdR>4t%67O1$f+Q`0R1o^a$pSLTG1`yPV;KZErI zoM_ewI^Ev*wH`#zVBIhl_Rg1guDiZFWZWMVC=t zsxhh=E_Tsctgj1JM2E!NisAX8;zu3`(x zKkUAZwAShC0+N{-dB=_r>fUG@bB^7?_f`&@X{2_6w@&1(_;URX-1I#YwHE7Zg2cE{ zB$3n4=jY$4{3%O-$b3*^@zh$VuL&eDq+(KkPY00G2VPoov6dVEgS*|s z0`vYJcUSx)H~u*$d3fFF_-=5(d9PquajpzZ)4`FZLe5W}+68V9LX?xc6LulT>=bt@ z@FV$5%$V`F#!n2DUk*X+P|$d$tg&;No;^3Y@jnHK{;Cy#<=omVz%vNG@HGatn=~h1 zj();V5d9AN0DVsI*Kus?Xbh9HX|uS@^^bV1U?8W=W-(Zlg!s|lEbXFa$XT)3+8^c4 zfU;I{vblT^89(?@2>O{t;yCeu86?gxb;7c=*X&*>Wctk3do;8jd88gFa++%xlw8RC z$sqSB^t%^t&}($*ZWG5&lf$M4UxncZzogeiAo35*z|aSy1QWH0t~{49ceBm= z-OBq&A%_uE6v}soQK{jLQmg7sLFj{Oj>(ypxCGz1YwxftkgIc+%$i1i6J+DWH~z&Y z@ZB4qcsJenSLatZKH15=@ju5KvtzA76VEVsn3C?H&eRl^R3Ci`UX^-wnW=ssL=)`9 zh-aH{%tzjR{*2Ee4t;P>5@23jv1d1JdRnn7RPPK!G0l#t)517%>V%;O+ogw?D1-Ml z+V(+E!P4sx5pw!#Bqydxu%TL2=k{F7IJGo1J5uDiJwMt08YIw)W_eF=QW|x zY!!X5)bS$QX=bIJCfy0|q0{uiUYWU8@svO~3FzchAmb2Q-Fc1_8h3`#IPN(X&XGdI z&TO^8_KJ*c%h7H{|)PGjk;vhl& zjh~H_qR>6(tUw_R*8|BX+budxZW#(2cV+cx=tvxO7i3D{wiY z$7LLgkMz2)`YXiX4A%dcnmRpTN-4l_LXwQ4Q8q{@wBAgTEu7_c8(@-gxCN!4TfEq0 zSiHf>=t@kskB5EoIU@2nEXy)A#7IAfayA(~uu+98Hm#F%MhxpD6b{>WZWKB9 z#7~-Eu}%@Jlk0OQWbs+_Uvwh~tP@K(ZWnq-;;boj4(`d>U*E7!H{k%Du1q32R?uY$ zn6Unz`h#Y5EPkD)(LLLQNEO_XK)z}xYP`fdfrk-IKg0EIig`2?Z$`zWdQGBx)>(lD zjFy|=aq0QXNB1`J$j;prPC=fJe&;EQrlC1PWc88YOXy0~yF*XG0X;f?jN$;+tK?VH za%eQ4?&)X+U|`5}TNbF;#?YYz;d7 zR1YuMgY9}rhrvPF4I2&_vB-{!qx5j3-MNTDFs%&$+2dY0$Lg?C*ZQYk*Y2KuR$?>G zp00CtDSnP~P+2}L7Fv^F%lv>Q62-@$4PNeUe{qlnC&18-O8s~N5M9M=5%ZSds6n}3&F zQVc{Zp4>At2y{;{D-ozcr%IZ+{`jd7Ix||w8l0+|I(E+*E9T_sj4|z zg)_xY2%%Y7T+C(0ur*I3u1Q|i9%r|4A@R4xh!!pq_5;3q^ddZ41|i+@5sRlcdnzQ& z%;G%C;|vUzB=9)>Fpx{KWJ8o@K4NrK?SaR_LCYFG;@wg$Kx*y6sw_Mh$ns^W+MC0= z_$e*dM_D^0Y)$f&u*rDv-3J%;Op+qGNvm~MVGu=V7x?ie(rlgGQ|0%r6CXm1J?>EI zE$p2WyP@Z>h`PzOw4+;LHr>3h6_a(CVeza!+vs~=w9{-lR} z_mp1)`zgWx7B?M|{)Szc!vF@SN+w zC;@FWHye}uc-EyWlwhxYSf-HdGYtI^fqsv>B$(W%i;oMM0;>&?3w8+q*&XS+Fn9uE zS-W?h@2+2x_u#DJ10Fu%5o0J9WYCBZQ{cpiI}xVZ_yxSW@lPIbsmaSI86lX;kItLu zevzp0CXUliKn+DaUw9ws8kh}(8GW~IN9cQ3JcEay<8(1*OHmCByI(`O*yW{6@Z$4THFKjm;YawYFDOXl@oqe3^) z^lO|vs}Lkd3Xwz8DA2_up2t_g!6(g`cEz`8O6Se`JrpC`@^Yhv)w(+5IFaHrX4W?C#{rMR6{oTc{*_ajtPI8@qa>!8dV$U*p`8ztJ*4`WE!DYBzyUs3I?jg`+_Ax<0-<)n7 z-*>l3%C`s>luu-f{1%RD?(bnWi9aZA1(21zpC0zG4Fb0J3+{3>-kwH>>18!JB94B^ z6mYW24*Wf=dK7Asrq6VSq;ZBWP*>RE@RE7ulBcC}P3O&&`X?~g1mA^*c8G%=9++1s zDHCF4ie4c)VMJ8o4IaU0P8*%ahl#Y@?6^LeYeD1^c0}~rWiPAH@#tBFJU>$COPWT3 zuITpU2#@+D!ry#S$WGq{+o%OP)flzQeDzM`cfgR|_+57$mw_cVKV}2ZU?co&42qeU<2As(9{`HF#?)I@vSOsV+{6cMM~y7cq(JaBi|#@>EQ zA2Z7k@I~3U&Kg!G&}{Dlyqv_>IJ@htHYBTFi|u7qF+MIt{OosR>}5?cp=*j#)$|VA zC?EImJevH>D?;5opERh%B1W&}bkF;*-Ec?S^J(By-I7SYD*Y$%kN#xl&hUt%ki~3+4-K2~*1IS1>g2s9 za>;f8IkpwD!yv`ddt(X;8BC*yjGvd)ltTZ~Cf z#{b=Qzrf#fa8B5k!!m4)N%s`B5|cR-nq(nBiL@jQVaoSNAyyHl+ux^%G>e@&a37rQ z_n3OUO1fb!ieW%+vJ#!e^D;m%AU9bF0eCjLD{l|p**vQDB~M7E(dIGTGEU%dR`@-O z)=S!-AH+!;#OuYi7m=m|OUfkBpbD(+DQP8G$3&Shba%mny9@=C@RzM$Uy^iGL@yI; zSGzwokI!R3uCkhwfu$iCT9<2*ONg1se8w0>GafdP9Wue<2sR_Asr;=ATWRseiL+6$ zARaI|%Otk6P(Z!YB84=je2AZSgfR_DnM5l6btg~9bOT)?P`^dqoQ#JnUH zSV?NP*bg&N2y2?fW0a07sqCsarliWMyF$_{knJk2rp!B zgWwB2&SEL(4NI|)MGtI~8P{y-1|d8;74K|gaI8?gG>QS3*6f`pZq0I$T-vXF4?J=L zY7*4Uf4y{e;IT0v#}lsiKx}~ez@Z23I2n^xz^V+bptst0&l6cFJnD@kUv}n{Kr^4n zhkh^{hLN6NL0q0w#|Im3uyj1)Q`P=PIW)Q_snuvq(wfF3VZd>q&+|`Z5ubA|cQ<|#H!*-4 z7Z(EmJ-Nq2`;C7|+A}1a?Qo-l@t*pvCZE1^BQS{$n+9>LK)HL`TaEHm-+-z0>IfHT zHvD_VCsR1O=fBl(%&6!$bx~f1bX9bkq@YWhBFV!7Qe-YG-h8_Wp?i{C4bPldK89f6 z2sOPzGi4cRL{qP!pQXk6HKx(=4 zqHVBpwvqu{gA^##LCxZNoZ`BPcUu8h5li8^{y%lh#f}w{poWR)@L3s*9V_%d4TCUB z1f_WwV}ng;7fbWd&}sh+9jy=cJsPL*vYy7F>#3*p!MaBx?beFP&q+DSY-KT6ja(m0 zdNfrbCoWyGq4U)rXb^K>QzWhwxIQ>Hn9UfCxZk*;Sq-{>tWZfc41Tvlg$75%?#ccq zX9p1jAVjvSbQ6rg`;vs=CwYi7X7Ul~VAlZwA*v($(7p4%5|I)Au)B3xq!svOaMQ&z zb|?yAmYZ!KE3{S3;x|rhlY`X~*F*%8bggSq$y4lfc8HupQPnIec#7S)+dXF)AMmw` zVhny*dk<)}b)x9Un-}n@?{0&yH!mOx!P<)vI1Z2?DzsU!;7~XVwYz?W-hneWdwM|| z6mB~X^4&-LVc&g4l>s2E!3on>g*5E_GfX|?WCWjBTx9%M{yW_FN(?t?p?KO*N z9OG6;94TEk=fmLc_{jZ=>zB^|noXV9RS z!M%sMF1jSWCEroeCsJ|g_$B|m`2nr%QUw#QXydG%|9Et7i4RHat~Re$!A`JRNCPg& z*Db*zz7HVIL?|moyV-5A@6N3wVX8RkVxuukN8NP>*l*aBRDP zYmMWCP~2q{Z7HQiS63gqr?8bXo z;o;n0JK-7;rv}=DW=9LncGGq>)Echmpxk||&^xvW!<@C6ZE)`qv3vN7&ejG796T@4 zZzu9QP82-`xb@(5n{&XN$&cBb1B@zUAssab^R_FP)+jD`-($5(`d@NSG05GUZe48` zAgyr$tAs-wEXfp24-8K5Jqv|lq?P6Aj6f|iq=L{APAW9pS=&`jYdrB1C+l0rsYCLa ztdkk15T=8JQJHR#XZw6HVW=it6Tk2M0hFNVt61ZXy^6O_^ffr-1;LIfj0$wgr0|qe zy_L4BqxN*4!~hXaXMtQ2_YHx?kM?%!f6);PE5|FGn7qc!>e0*=ZLYtj4Tkkp zEj$(C&^GZLr-LP_iZD99+oi|&9Zo)f07~pP)Bf-s?Kz-{vzm;m8M zoi1is?*RX=zv-df`!Wm+S2)_6fcSHeam45vmi&US55ZO;`=ItZR-wFX6ToQ-;B#2e zDrAstA~MS$5;BJia%@F?F*kWl+u}ydu&%mktSfLwi z6NjU;nMB^bPePePJ4vr8IGvq;r(ewi;Dd>)zXnwXx-x)(bHN>QNf0JJA8QQEy|1|- z_zQ%~TLQff-93a!#RMK#=Oj(&aCjc@=BtBF?`t0j0mECG2+%39VNM}J=WY}cQG>1< zUiuTnlA7AqQ0@gAN#HX}oXIuN?B2%h=WTH7Y|&e4q@X-4O2ZfzLKs_jUr~tSnnnS$ zb!N)3OwnMU$Om>7{hUf8I(J}`t5C-^4aX!s%)av?yrL(uLI&xP_Ir{_Vui?HDL&5q z(}4q+LgCglG?*xpV`VDNG9U!dMeo@i?>C|;(-Z!`?{>TI*6SO8y@o4Df$P`1-D`S{ zFYqnD##u=ola_J{wOZ5g%`Eux)NwRb2+5j;VJ?g}sq<(u;AEXhrJ>|Y{Y*={*Wm2a zr5c_TneHvKbdXsTkrDb@4xrM0_t9BJH~zV|-6{>FyXs5b+gj;BbtHo-HkCOfU=vFWES5Vr-UMp_ncw&$yh^8!_$V#T z=I_tme+H=-FvLeE4{n$)=gnZ&4?l)&X9s+7mcDzBQF(Bedz6poF35^{Ng}$kr8!WnmR3O`rPUvm|IN@M{gLotS zoj+g!hKhYun!`-flQVDQI4zjHjOVYZgvh1i;p*n&w9}m~(kf91dZ8}tbbUu6b)&8O z;BLEbmDQNZJEn2Wjx2~YQ+_oVslOtHL0w^^Fkq$~2U|Q8(CDdTsDf*B;f50*mt{hu;Se2sFOFUjyCHIPo>mzTj-%n<;p_dfVvR=ZOMZC0*U}+BR%oW0 zez|0moiLiaF!+b-FAw`T;7cmJsDw21D@miTMTi{S@&(hMAY%%mKaLK2L~M0HISBvG zOXLT)!TO2FBCiAV8o%SUclU%K9z6c{>&o57#KtoSy?@|0uy;f1%dUa9e63;}?-9ov zioFa25(DBSt->WvLEkXoA;$gFx3UTAl6+Dy6RMIwNzr!m; zWR0Va*Gac)x7ghe&$_=m`4`r-)5}*{#!-i(2t1p6R5ULPXmHQLDM=%t{CHaDSXcM| zewIoQ2w$YL)1GZv6oR(KVOS*d0grynMkgYBFWntegz5k;Nm*ywTi9YWdWk;oaYqq1 z)*xiWYj&uNKh3US%glW2424pzaj=g_oR}>!P=`&Qtx;3;Y8d)iLXo)p5GZ5kL~$D6 z`IJTDL+2zpaqGT)Lh^mGt((A>{YriFAce55X&@nZe|juNOJ3OSPpYKc z@|Wf?)8P79Ww|=8bKALH7NvhSB*3W8Tl8f3t>-$Jop~7n%hgsU=_Mx|OxsW>Vau<+D zf^fpCyS7jN@fYcA$o{p%eLT-7NR9km>mwceR|rwD8+~AWIrE-`XSKM8HpR? z$N0Zxg!?|1GdgF92oezquMltWLjHae9Ad;}$kFO)m286BH1$yE1sjJ8bLtIz{KIA0 z98Y(Gqxfm-;^ph!S+DT`{aqaFzeh*=um67YBH1OTqu2-6fgE@_`{C039RTUdg;+wHf(lS}$z5UwNUx>-2|=4QPcKl!3eG{`3SrDY09nZTBVm*)`C z5UfxXd`l|%3KvnQgZD$;r?9h50-6kXXrdn3sY24&I0)bbu!F$U{#xK&=U3>8r1a#> zuaG%zgNCq+DEIS>{~4qn6q?88fEf$>le~E(pWw2ag&alUO?k}=b+6G%rbC7Ju{kiP z01)_niksLMBuU)EmgUNdvD8oi9Gv3iM`9yb51{VJcR4_qReDi!obnVvK!W-*;JaJFh=R@*>V!?o_JPJEu5o5J}>S2RO(D+Yud4pIt0p0-SWPB1ow_x zqHji2rKnB~FB*-z2xgYfHVPnM#jjs zH$sK>aVsp6C_7Rp(w@gMrk&HmI7xp(qm6XWpUZF=C!v~>7Lw%7J!ty*LS??5s(oy$D?$?m%M@55}-v#7(AQhg)~h?VgI4p()0Gwbre zJ3sWl^|b2?(lJg2D= zI3@Xe!n3qh+U4e>S-PlYKA3zfK=i>hpkLro-C zX`0>!Sx1$(yd6A-1@k@4PflRyGQC%bZoJZ)dlibV#-N|%pij>$GWAGL6cxEoso4-nmpG> z+Ag1l*f=)q77H7aHH;Q9DBW{o(LYswMkY9RvQrRL86HnNu;9|1*SBJNHU1uKs@ZQi^%rP}N_FUULylJ3HfyyW3dT`?5~It3n1e{VCu2Dt0*0Y`g0Bq&X0d-Ag4kh1=a=-F!C}iw z9mCK)jn{@@%38yc1gz(6g2sjD0SbktrxhrOi64zvv;>LSK`w$(A8>R}uC?Kq^OoWH z4}nK~zi8Vy$E!-0t)4`(q*1BCQAcq&vmt$=Zqf{_dy*_bkYw2tnnvo;{d z0w5uc88aw`k?8}J?wPheyM)8WuY1?Wpscoz2eBpI(R*}C@9pE!C)*zJ?LzM#?h-S} zrO3IHg$8~|Xy&KPLyD9Ef}Qak>n6sVndH723PG2F}Sju`VSyA~7qyUB*0NhsxwFOaGm zKSL_`Gd8K-_}O7pxMyR?ji2d4xm$Fy--p2iUIOLPFWo=M&Wu)@X}__m&@i?0>L$FK zEq87dQOP;l%F#JbpcR2*4D@d8k>9W~{Palm!QSw&XIdM-vI~mCn?oF@4LNe-6ghKP zC^Ss%U@;Sxe?l`!`mC&_NDc(6&a>(P(j(g+%`*!@0TMC9Z6BcY$oWT$+>%g$B^%tf z4`6!a|6o0sSsWJH3!Be+0j9@w!00%?G7^xv_9rn4w%_qP-PFb?*p}kpN=o zJfa-~5M-li1ZEX9A>JMWjjqa`xI)BCNMZA zb!Dby6oj|QP38$ZQ_wqG=l}yb^EE>9hG{T<9w7ZZxkqo{KL6aNZ<9jI(FhbHaF^LR z;TP&p!>`h`8k0-48JA8wu*Y-Zh$1CI_{nGCh7W*!#vxMZD;mK9bJ*Kpx6I%H1H6by zF-JaDW9AcW3}mnN?h1sjVaiE=@g={8g+M^&m^He`!!~lz!T0_;xaqGWKY)peIAW#W zpm%Vl&~G#XJOnY|B%KUI$@Q~ng7!Es94SBp6VZV7#1^6XN3y1OmdY+PYIQU!8?-sa z+9@V7n1?$|77igj@P*%nmDejIZL`n}od{Ih-HQPMf*-rV@vuMNiSbIJ`!np4hi$dtpNZr8*ez$~1uyms3 zo)|Tq;xX4F5?QzvC%ZY&JkSXVtu9~A|K@BDwEJ8-aK``9!5>I>xJlYoj7NVbT$5Xq z=d21nNFx{?C%tIN4w_k4LT`oR=C}20oc>d5&qE>hXk^=Q$dA{PHWc{FI9NMC!0CBA zZ8;8&piQ4pM6w6)D`&epZ233U;jQ%=hCQM_&h1Q3dLLLU?nguL1?MrD{n<+$6owT3 z`rmH@r_oke{r;g)W;6oBBw4QD(Sc#`IpM>70bq|RllTO%>&+`qx4`?VxIJb(o`Fq~ zplXmkmy$~3U3n1iBRLwW8rN!#dkPUnBUQ(=@(z#WOQ8R0EDs>v@4oK00r8(=D+EbC z*&-qTIfl@vtRbXQlju4Kwzp2gTdGO8LPOCAT8r)@6KDl(sMmAsandp7q|VOu*Wg;l z8Py3-(BxFAmO%skL7YGG6YhF>7s4r3&ePXLgt<5|Tjs%A8%C7v#&U^Zw*-BZ&GYGn;$19QS?XCu&X z9;(O06!M0~aTt>`D3))@Yy^Z)vQfF1M`lM*)$g*0RGBA4WG6lKj;U*XwgS-2LdT2b z8z;FVDTOSeaX=@}_t1BwP)9V53Ak6r!RpJBp8sFLH6rKyne>*&Gj+zDkwOR2I23Gq zlmwOp9z%jnCMh{JAeAMAW}hn9->^MO2WBg}qXW9UxYMQEp9Zt=??#e0R4Z~7F_FM0|Nc>2LFb49}b(HR}j@tF@(a?0o{aY4Rw zLyd_>Ax3Hbolc*>#b<%6wl)78DdaBAqm5TnLFnCku$KPJFOrmEhd9UU9A|supI=_6 zxVDPn9-8BHp87d3=a1jL^o63!Gx$a+bMK7&BJ|^$kPlYI;@4EFv-!3JXF#tg>t5O z96)cwi&oBd393*72)hk;L_BJce^%_f#78Fckxl^0cgpV9CD*|oy>Y_ioKLnTzjbb1 zpf?}sU)oKY?gw&?JsQ{8B2|cF8m%}c*oP3R{p;n&t|~pQvoEaBw=`Pm2^WnYaIti` z5!sDTv!Nd`cU<0X9skSC3xkGYBZYRQQ81=SaB$uOSPbz@N5}xvq*c^FL7`0928FBm zY3m9i!SW&C7B3?p@VCESdOPaG{3c04XFI`dIonWZ^wA{<8bsf>u^&FWL*$oXk;6kd zzeKBG3){VHN6aIla%=Pr{Z%}9hf(~k)jx-^XJID;&yOcvQwn$*eYBY=4oY`rx~ zf12U=4Udbx_3k$@x(}TvP4v3w*c#|f@^$RthxinmLJT%<}Bpmenz*mmZAKdMO z3!#P4C-(rRzK4~!cF@n5z^?J_Z*I7DeCNhLfrb2y|Fau}_a45#b~eGz0n^|(xbZ*l zT_0UJiRX@)k*#|ItO4VU!nlmQf4B@wbVaV^fR4udulU~y`FBeGosoa%mD74Vbh@X- z8tC8!?8bH0u!+bT+Xs4!{--p$?)kI^tl-B$ge_06t`uGzR=7m>oLZyuM?~3kx#DV{ zNC2U!d{}XQ!#}~i(;j{J1@z4dGq=0L_HUZ=S@+ai1DoR{HXv&sG%jFQ2xWFTAZ9+g zcYS(DZi>ca(qsm)HOHx9Jf7A3FJX{q7Q7pS=0_4*hrR+~U%` zhm!s`diRMW{@1%duF$`|{`Y_R_0z}Cr~gH>Uj6&O{L6RW;r~a(Mi$|kAEGyA{M zg9F|};Wv1F@-6!G`5F-r;W^p4#sk}blOvNMP4TZ4 za^fEEh820%!HVv~{x^hw{brPA8Q=vLt}i*+RX z8Vvo`eQ>v||MD&F=|7)+diUd*?+0(+ zpttYdpZxmq8l8SPxy1eGN9ZtmU8~Sxp_{RB;_YF#2Y!V+f>Sm~2xCmPQ~rK=cKxn= z;G!Ado?T@JuCq^9?=G*=*{AEz*_^+feEb#v%r}D}`M(hl6Fd5DIQwoqM5E#N!^QVp zxm1!`Jq?_!R(KT}qc_eLUOUbM?VKvOWF`YPc=HcL=+`K5a|A~W{y#o%u_E(muFs;# z=a~K8Ym|D*W5#F8SCXnxYCn1;JK&1Kj!35Mc971ZMI9lbh}=;pSD3jnRf7@`1AU0G z7X{lATxn6WAI}%MNMv}qrLW#fxyP`bCNFm-Z>Oc7@woY7Igh>{N*Xy!)jA}><&B>R z7pra|<*-ZJ%1nl?tx}JLHR?b+Mc?`{kULu7%V^o!c+! zj7(vgD@|U`h5d5QGv%yaUh<+I*)Qq>PP|LrzN)Cl_KSLyDXQMv=L(Uz63Itiy{X{j z5O0Fe`v;5Ibf}!WYOZp4$>mtuDtVLj885kf5NlKNH;(@Wq#go)v zbfwq0K^T}8%Zfa1xj3D-oegW2cam9{Hb%Ma3|O<&)Aq~hxq+FktjMzr(a>Z53j?!U zSsCX!GNifYTgWFi`B1F4TPcK*Zp0ik8o)vhquEk-!6O#xBDN{G5Cz^G=JHw3LeaYb z{>VV-L&vXNo-|v+9?2(b{nA#fN-9cDCc+PwMMhLsWcg%mtH={p$BdgT*(8HF!k6g+%Z6&}M=zFS@#rR*GIWL2Ge~WBGh% ztpXF++Hc7)j^z`eejQ3XYn|FOJW)HA&xJiyAbZZHeJFG+pCfyyz`XQSOS45KQP?`{ z6{pT_?|Ap6!_Y{zZ=;&0lIUnw3o7i^=ohqY6K_(`iHN9l8daCKZHsPF-f3E1Et--9 z=CWGKnPRg}S;~=|@|i8=Tx_ID3MCtklVA_IlF7#eJ%h*7V7IF_cWY{*nM7phw!|#z zOq~)7r>zoT$MS|?w3yQ4?22N_$-mKJPAU$9htl^xkpn896!feIPXj-8RxudQ$6>H- z+G3?%ePYSw7`H2Vgo{mt<0>ZE+6FqKiF`d}ytv~=gmN^Iuc(X{ck;5fnbv3`p9hSW zHOtinV-a;pIWKBX&6^s@) zYZY6yKcq%l&KdNJUcPNySq;8#EZ^!@7JJ%u%4=Ed>C1}kZgt5GOnGU*MJFFS4Ij0+xEq-q;EC19u)SpW((S6k3?aj zV78#b9*G`bQye0gE#RAB;bqpT&nsO5WT3R7tP zGFQ-aUjDNvI<#=ZNr{eFcKHlvyX+kpUyT$7)B06$qRk^tXjc=$kIz93!}TFTOO00{ zpB62bpNuYL<=1{4ZD-9+sx!;K4ypZp@m;i?Lpv$_JpV45*fEb3W~^<7)VD7863~bl z(QG$QVZ++hz@%G)21be_g$=9iqBk>E94*=oL$c3|MfcoX zv$R>SIz4u?=$@KumUfcCR(nobbWhGT3p{<<#DaCS=$@Br7Pvrl6VfO}_NaSOu31oF zC9KzKkGkjNnnhh?c66nsl?`D>CT2XX0w1Xl1$C$EqqY-Y2m^v9wjYX z%;)_+2;+nA#ijO&wT(N*GPe>NWv!YmWqX`snRAJa!cx1AR;S5hNhs}lWiQ#o(yD~Y z3`~u-gjZQD@vP>?@^~!SC$w7PjLC;)qn3H|;Nr=f%UG*XXEnb&^FbTSJb7#swRu?8 zvCQNh7f#-^^@2J4{1Ls=aEd4zj+c7KjAbV7#!Fg;tnSDrGjnfWaJ}uF8ZJm7 zY|X8eIUD0jA7}Z})lQkS5wG-dmM>ZDlzH~Dw&~DVwgY3Wz}c{$ddm@+)w#6-FEZIR z>~Y32!*grJJ<1GljrQ$iM(DN5Up~2<`RfDD`=qr2rd&`}R6#xyTCPIN_{?LO8M^&i zOvD$_%xiiqGe~dQCC>aPcD7rp&7olpT6f1uW^`_^$Q^hwjAfSR_G&OuG=4SU-Or;n zimP&k(gwTxNwr4lXXS&X6mMC;Z+j)qI8ioh-!i*bTvYi`qZe?fDhzldQY$lhHCoPQ zk#NT{TUVpyY!C={EVF4fTF3@*aK|#M)mnvIZ}3aox?iHrPT}}dUg!>j;f`entX3;A z&viGYTW!TKA)md7Z=)1_@V zM$7D2EtIy&NG-ElwNTV1WUp z2=QQzehUt(P4^KE$FjiRwu)RG)lkawWpTc36}dvwS6*KEoM)xH)0ax8D|M5QPayJI z=y_Rvbo{luMkHn+?OGMBqV#m2bhe%-Y$R+If1)!6stYflV{8?^L>f$^?D9#+R@rIH z`uY~Y6U8Z`t#Z%XGt`M2eJ~iqWGJ14idURsNK|y(uGv@<(aoZ*e6J=XPE;ERfLo8p?nrjD*M`wiv zvbmC0DHuudRM;NNQP%T(#ie|3dHi*B;rMRjDC|`;x560NTIoAD9GWPMlJ)CQezsVv zKFwkpPZUFBNI&`7@Cz0d&&CO*#EcWO@Ldqu;r| z&qO8;V7b`M%or!K81}e~^66L4ZBvZTcD35L>%+EVtA>dze7)6DcQJP;)L!#1uP`a6ZUo6>F>DojRw7TVhq!c@lqq7e)OyQ;^I+|w z;0~`MpERQBHP-=}$nDT;)T8(kemMj&HL&~$JN1{Y6PbziHj$g3*C>3MjX}+7=xQ5D z_L}9k=ObyKCaKl$fEMK1`HKH_{53ko&FwxZTG`8JsuD4go1^zq3*n4H?-WIDh~7)t zRaWWhvP&64FJ)KAq?bDGPvmy#y_CPXxzj{$tKLg3nkytv7V7dgt;Oef1Hu1&JgmBS zVvZfJ@u`Q#v@DDNZ?ghjEQ@6!^;^~TDtlq;IXv&CJdwvT*v= z%G^LvcOr|ZZ>_+D=C?BmkpdMDlqjSIPCXZ zk3btGm--Dv?v*l`Xryi*TN1^cYA<#RAqcREuRXYoEmxY#Z0uMnIF<&w(SWWgK_f;@n)CLNY6S+r%@uJpMlby)j5R8|z zuAb~f?t5UooF$5~<*Q}6??K!0`Z4<8I&06rZ!!c(SHx4f<-6RXcBC0(Bpr!c%_DOD zG?m-CTPktWc-K?8wY#NKPjcDyu~wJQe5t3o>{|4CDz|8_QRF`z#i?SBVbGZRL14-} zbSigMs!@}&ee?R28CSiIirUDB#J*~y(Kg&ob`6oo{LJ#X1c_s zyHfJP%ExXSg`Fo9Wl&>RXDWB4u~Om=Hl?O=&zc&=FWcAAtjAFz@W&d5PPyf?h<>?C zLJBA4Zg|4ngy+gVa(b_i!n?UN-1AiKpVNC?v|OF#EI{t9Q=>-Z_Ao6fm7f$!Pei3v zGdKlbx+~Y)S8Zq2j>0mP`|MaMb9v+#<;*5`&#_eI2JvI2V}nz1Wr0hg$fyxEI1^VE zxIWbxx1D+06nFlz?Rn>P+;#?TQ~oZf&!p{?t3!P%Ym$R9DzIu@|kF%6bo?KJ8 zr=!K19OYkv9!r(`I9e?CasCZ7Vt;Z+I>m01UKge#h#?!!soZnUMuD3da8BjEaW)Fv zAZp-L?iy#Kv<+egPUY@!HcG3SgzC&ca(_6*j;Nk%*`>P=qS*AwtX#%PzV$h-?^cFi zffGKVtF2cWN_QxalEDgJY%9`{&TgU0!rMr@qg=?zZlT*mvzf|Oo$OYiWfYsK+;>U7 zJ3g-CH3J*O!VW`x2z{M?tKLtO4w7=$rCy3ZZm@qT_gU(t_>;;lV|fkKWwl*{X|s*` zg_P{ps6oj|P}8b3379vPdoA@_kwqo1EFYfaUQPYh>8PA~R#ZqnQ}ub;zea7RNE0<`8IgP{ceLucQq-fcfnkMQ{i)~L&>d5i zN0VYQmFq+GT$5SpZjAOzdWJkg6I<{nl$dd|76Gt6eoyE9^I)&&w9mjTS?4FI3ZoZD_6}_cS$K*d}&Laz9ej zC2b&cHI@5}nl7o}j3?RmDLUaz<^H0ki#b=!N@_IQ&aJ9q>bPapG;@&qi<&QM6GI2N zvb)--jHyNa4GW^H4KV^edKj`Kwq<_>a!tr`_5^FY(8%ADB9DRzabYcP{*Y}Kei z>6yD$6&5cWnrzJEp2k)SfAq2&qm7x|2ia;}j`J@<>wJ4A_d~W?^3gE=8k#HzW^&(T zxrYNu)g6y6oG|t~o;hc7w`3coZ4kd=CU-ryQQEp8EM{`QVjD%R8^vNKm!q&z)RI6J z6)butcXPH;=(*UVa79tKCJp-LN7ias6>v z?x}5|uuX3ga=ug>A5+mkgJ*c_iyuNzn`z zc%Eyq%3-Xm`BHZf8+0aj3v5^R)Z!Ptby@f-W7x}yM_1*4=Y)QBG{felms1dVdy+XuuQ&KN zx9*o{vr}z&#dt6@R(?4v(J#LQ{qpka%A-hTP`NXq$->eQZW3VckE@)VztjZvl zT1BQoLTX0loXK4+trePv3Q-hVcS4tYUs|if0uB(>z*p_m$z3t6mHsH#Z1l&xwi98y zav$efPE$50_tvyljnOdIdYXjppUIszI~XQEy6bxrA?apv1w#uZF7fu#F1xAela{?6 zN70*`W~Sy*y&^Y_&^=Q)_1Y?Tll?V?ORudWPfO%EwNaN(sPc-{(Agf$wVf4;>&F9V-t1nIGvQ!^pe6QWlv0$@a; zTkv{L2v)HIfM;CP>SVgB09anx`Hn0Jku+8St-OkJLOUIs1omJe)p@I58G2{90s4{xp{1&M1S!8Lnc zuut{-kzr@W@t<-@B)D5I9oDpLvWc4X1Rv_913N<~#(IKN^wMFiWo|V!xXU38nc&uE zRd^=2M$ZfI8Kw;+?MLc9o1XM0_(!h-+;rlb46#}=TLr}Pk>3Q*>HL7FWE3DHprI9Z z`!}|8XMwIci!7&7kBq^nWw^BsCYzIIjAseF5ktz-^*Hvx^cl!`+%Bdw3QzFKULEXt z4V)BGb%LYz>R_MRDI>vSdvy>`?VOR|qP;qZXJw|11lR1@4Z(-1y2rjoQCayk1P`k9K)ndsBe+qm zXApV(zhbBtJf_wIby~Kg+^Datc@RX6tibr zZ3zBM>lr|+G<&|=hTys+!l@pU$|X4;^ytDEjjbi>xCOT+5n}b|^4ZXzIKFvh_6cvz z88q$H1S24SDBeax%~Mwgb(T?bI`~bAI98F?=+x?+ay_v$3VwRB1$$$ zhiGZ`j-G~y5|CzIK9t*#r?sSqm?^GXwBfO?}-*Ah#!p?&GNBTP1T z(^f%RQq@E?aI3xsSZ8yvYqT0`fVEnh+D)y|YOVoL*_BF>woe6UYYl+rio~5vZ`*4C zxv>CkMCj-PP+|}(K&`@S+gNEf;75i&$fjQM!6qBSp%c%-0Ocv=(4pr|auD39L9PqH zX+*%RwmYG%eXKMu$mpeMSSdKB-cs_%QK;2SB6QE05#%(}-+aK+@NG)qb1&-V+DB0( ziT>srMQiP&sLg&e7drB+4f^{0^s!kM$&S`Wn%2?ULbkkE>2ycOP~PL36?CfG#sHtF2BsJ|nzz@xU`E=jD50imA1aBylEkk3~G=z%i^w zj$!S@(j0dp`Uu7V$$N}cNBMb}b)~j0xU(*CRLAyarM@n3tBY9hjdekvW>k=*%xPAd zbAp>DUgre79%oN^u^k%YYn5%S2Ab$B%UMGc=e3VyZq8bdZeuV= z>4a&FW2GBAE1`wN+D9_?tTdu4tVy^)lnjKWImYt#9J2%8pDR~e)OJM#IlBB;1oB+g zD$Rys`L6qim~%w_{vz2unAX;)Ir3Yahw{6i0*_?!2{5 zt<|X|mu8P8hg?A*DW`?sP|8Ei^4fr%HvmVoB~qMfndqG=LZGHtX*TRU9jEV3`u@aC zH6)9;-o}g(W5<+MV@`O})q(k8=lauL1MNb_iGB_@Yyx%&X_5@xDwo#@ zX(bM65>8uXZJm(HVrOdl=~lV2PDs;aOf|TRXIxW&%SB27u{qCBt@7eo*%W|tDRRc6 zcB`!BaLJ{)p|>n24~Y=4o`X)Px!Y=>tt3F3Oe@r!Z8gxQSrDmlt7dJhfwng9GFG#? z1puFC6Q*(JM0{&%p0@!YCoX7B&HPrgL^#CL&4z@0aPE+R|$4g1eHgugw6vt^}}|SeoMun$LA}HhR%mH@MSq6D=98)j^v} zf#1?X-q9eAyR}ZO(W%rDOLLs*CgZW=`sl*!-((tK#4R$F)S*&d8<=F9arYMdq96Rs zv(GBp+5oRgl?{EA)7_v|sjLlVYQH7HT+k`IF$P`VDU^iE@3I>D>e`^MlZcZljOP{Q zDs>f@HRXhm(rn<5CzfxbBS@v>Lh5BFe=4!*xnZTTUif8m<0*M!rMYn6LFdh`@|R`W z+N!kH1oi@K(OMNH|CtN;S4Zf;_S2GLgwRas_uHz9dYX*PL#Zy}|_zPJ=^)(M7C0a&~DG2x~m`pcF zaLal}prg^!9MEs)pp>&7+3U@f!<(%lN%qZX)mtlvH)d&^dnGHNYIedq^H^yfGd10` z(7t(1l)iHjLAC0#QC<_wX_PN7!W)$cm~dm%sYHhqmPUcU(>-&fHqAZK?STRLgFPR8 zF#puuEXU5%iQ6CQo{|4x*{E&?_;dLowHmd}7)4c@gel2lBf8+%G>F=)w5Ji}Lu(qq z0>U1(8c`m#rm@gG6Ur5pdni%%wWgsorJ>9`F(QMjw279vE~xHer8zWA`u)hTedIgn z(7tudK0xR9hu}iCObu_dyg@_Bj`@-?7;S?FQ=LaVZB{mDBr_9Z9)G<8CPU>4xbxMk z9d0?GD9tm9{tXF>k!tu&_Jlg?S)xG$kF&mVU@J_C7)=eI3~7B$kX9wMrlf^egWXsY z*tH1QdEsrY3Eq0RAo2s-S`)C1S&2hSTn-S065?|QF~$_7xvps-7gh#c_+a!r(^sEQ zQcj4i=IY@kNAM(gb0fO7EWo|ICJLD-PX@ldaNy7Vd&^ip4U8bPnjxnSyRguOZ|>uie@y`sT6psIDWa$;#7 zW}mq&r!>Q8w-*lNG|`!-gSIWeRU`K-Rfxn^Zzq;!Lz^SV8wEq*Tb;ZXM3}>kS0{-^ zH3$T%H4{to*fQ9Ip7VKT+_L`@fvl^*sgx5-a{xIs$77I8cLxL4@G=P-lcW<*E6GA% zTWhQldTJ(_27OL~(N?dC6%C`Bew<0eert_j*F@~ki1xM$Qf`T+D9wid$N;=8-i=snu(>0G6!9NF?PFBT@&zBgi2sXc>u319B`HvNqHb1;-_O}9f8(F7CO#!W%->m@JW*Xs5!mX0Y z)s-tGXI{K>LwEZ_wC9@SRwYXemBLkK1Y>Jgm0WE#;Ld9E)~+fU+G>C%q>MT^DmGjm z;FSz+HNX?%mH>Qi#S(yiTCDm9B@C!&@*{&)1;%eY;rqS*^uqQ*gbl6+T zlsq@;l}vLk@bme3=Yd+S(y1vq=TbpVGwaL;^Wynu7R+fRJs-@AXQEj!*JeFm)zrLG zy}0u!aB^yfXE7CTtIyZV1y?#-&7#OwAFY=Qv}}nyBiw54xKy~Ay^v}9hE1{@Cc>-? zB+{;{IpR`bu4k%y(*RbJ1vROzE(YL6j$465ijjcJr2^cHtmdgIZ7#}1zOGdmJ76eGc+y4YUa0Gh!r_6(jqyv>uP2<50GGb zpl6yE&L&XQ)jV#g;N}x3l*+G$n!PO*+(n2Ijm2}hOt@?FaJk0fxm+f|^*Om*BN@7- z!Q99#uO)-Mcy^Zwb~B&ImJIXaIbJ5rvkMfB#k0ChXy+0r8jI(2*-T_!fugYv&Nr7p z(O3iXiwhKaRTa&E_i1I~P*LqbAgM}XX*RTAV7#aIhgs&A(SWB}*C6!GNu~p)>@&?h^tU0hovaU?X`j| zJ3i(LRN8JSINS) zrmo|KK&@UG^FW=`e5=JbuG&^7Re#k=hHuGGw`bRFw$vPOE}+Ad3aQjCS+kO=JZ`HQ z;Bp~ur34Vnf>+G~mkVz@%1<&h@@+NyTP~1VIh9&utlYMm5iS{IZOW^Twwm>+cU?Y9 z)Pvh>FP+(lL0iG{TAi|jhp^Hd++t$gAQEXWQodP zl9fh5PYJzsv44*C4L=+E^9V|9#g<#;02bk?(^hQAR;Q}m4>{vGofvnXW%xN#c~9?p zsg=tLF1P}KD>KVS7-R(_Tmi_$6>1(oQ4G0qEiWB%DQD7jus{9w$>Z;8c$JjV?$O1; z8M@egadd!w^YtEX{uKB38#*{4Wp55Xo}9^l*Z{z==3%zF< z$m40U(Us#OpOmr209JIQ_YCVd_~hIDv$vml#PY*BBWGY< znZ_Vboo??w?5>7;i`69g^D^oToWAGl{>1wYnYLfl!YTz!BcR4ucQHC5Ba5{|Yh6JM z>U>pwjK8d!=HN2`V?dn01*@fkT!g8m9Gl;@=me$L>rOm8^}c@XWz;-9J3QV!`v{93 zp(35}EqDP10iufh*VeaNc$>UBJUMuFXxq;I3$%ama`)ZQ1=@SPdxjU@Ggx8y)?#dh z!@6XfY=1H$PVacl=-E3=*ruwr{Ne2I;vk&>h}HKG&t*E0_rpcf51MT#CjnuVH-v&P zXdXz&I!Fk{!^ASO$itQEjJkM`k?xdreJ5{C*SLbJU2oDGnV6FgV%YmnqEF%uP9jiz ztK_9nync*C9iE&YoL!*9lZ&^?58m${y~BMM!x%s4!WfM$yq~tkus>LOD?^eSj2Rj_ zz8;APQpU%{mOA{A?hWs7f%4oE5y?mvaA+b1jaXQaWlye*K!=_;F}6jcllP`)`T_VY z54wdvKAabu`r->=fXWKU@$klp>H7WP=z6TX@yBZ&>E7;ohSY+|Bl( zjVX;~5h6%R<{U;$vW|dFJiaUoFJ6$WMNsgw0+=MYBf&Q55~(Cd@+>zY`*yxap7GT} zE(#O?%TSaPV5Ns07DPA=zmZj*%grbbELY$u;Eg~MBKOG92itMs0VnRV^Zw8P&X+_MDm-Cj4VIzcTtrK$E+*GWRRMB92viVd zkpp3T+v3G&UOeXtBbA0{d3ps91nU5rdwn~)oDYZ+y1Sywxd8vu;O^p{t?CFAiYZ6|S!uzNV#fi4sY1HQY7LKP zHjJl%u7W27KPXfZ6vYx*v}_?_Ndh5+k>w&i=jxDcUJ!_tWs+;92C1g2RZ1w9#bC&p zBnpvGL|~E#phV5p?2$naR#F`ye8VDGIHMs^4i^DKi$F_Bo|=^>(Yp$P6;DBBmPHYR zm9NBHkR}LK%Us3L1D*`E8lY_8lTWFQ+>p<4N=+U_OePgapddRG)cSU%47(Da?CJ~U zF#*MsA&vv01~~h)*H|R90!NhLO+4$xskV|ArZE+oda9n&@-hv@Dvp-G5vNd4El?Gn zPY1ps%5SySyCrD7LrrpFGZf$n7foNR2HYd@jJl-DEba1daLH_6gTg#XQ;qi#tjOdF zn16X>{zwH?jeI(Jed0TcbrY)xb-I1LJ2R)y@JLWp0-SGr_UU?aEN7BA{diFhx{ht# zry$1elC_(H8gJ;_b#c9sVNa54!CPEwV0=!&Azd6@+Zkkz+Z*Xv0PVx5Gcayh7``#Y z?M;S`Rx-fsDXUW78K>Zj*1@A7bDUIbXbz07?>JUZcQa}Y@f_jBo7JQ4`+9$vTx;Ut z4w?2nWs>yItR)DE?WN3=XAtL}t_QhavZjDi)-GMBzoC&aFejsMt%`3kdR-${#WP&I z0r9&*>buO3@t@Jyw1CDY0O7j?*(psJuIps(EVA6X&cw%Or0gy13sV#6+4Q=Y!`q%t z(Txdq^6cR*>}#WIIq?AmJ01Qwddi(0T~4@9FJ(31-99jN(os?s4Cw?GQ8(A^qkf%} zlzWpN=&Lddj~FE6@CQ zo#G`Y70KgbbgLtW875l1daFYM=FK2R4~(9PH?s?zaA5i+bnQBmF%($Dr=^f|R1gkm zyEc0Kn7w)Y7?~bogdI&VPju1U(CiPrNfF!%>&rze=SASxPoK|QiYc;g-!1aB5UVbKTgEwhhF z%>52D_>X`51HA%V(yG)$$b&Z*Lj$_U|L@;92(x7y-C*ItL(UZnEa!0{2V|SJBQ&$a zTkhkr4>3v*-m%-)VQ+NqJalLJL)?--G)5&n4Y*(33tkckh6aAtuMmhO1cG}kTaoSL zla_D~_>_)%_-He6ac%q#lOK-=>SUY@Vv^ESoJs%U(GdRm?vQ)r8iMMX*N+_iU>!Cm+;7AK!t5)juX1PHkKc4#- zUnCQL@#s;G!^o>oh9`MBQI3h4Ik*`XFSaZdjTI~O=nQT8_&bbvU`tD6(!W; zU@%>0LpuI?BjH-X5jqXgl#?7)Fgj}XQooGwVTAII&o%v^Van5 z5jD+K%u6diFO5!lwma5nK_$4K0>l#mp`$a1h+L690dxOZ*c@c-!T{w#+_89|kxD_j zDXEk@m0Cxe@j|=L=yVBFMoOdcFVJRnv6SK4@JJTDdymU~UAlUO@89{RW%{P!#YVoy zy^u8rS^|;M+GVX#BXUF1ROu(D-*9Qj|U(xbc zVBYr)yde_Ae<2~-V%b0f`7a^e_q(7yqO#9K5^|c1EJg9L@oXSL_Gwldb*)lPVg

    zplGJsJoA*q6s9rUkR2?wN@WWCPyZ+AZOJ^i(#8U3MS~bTiv2M0hmLFhNv*UQ;#DZG zDdiPPAW-hJLgAoLD1)wdb($T zYQE$VS8k#)=D+cb8zmjHBYUmGyI?aXJFeE`7 z!;1Y;r-pFz9D%h`Jtu<0(mDBU9$n~s`$aAIztH{uP{~r28n%i`^qGOB3I&zWevbOd#ZNaa_97U1R8AA|BDBaiqUE zJb99(+X*AzXZ%rXU{<71PSK*Vh^KMGw@`}V*3@v1H=E&Gd=^-A+U1ZC)?s}yI?7c1 zw(9M66C^&xYQ~sF=aU}TQS{V`N+Cs*KuYqZU|u(pXIsgO`$JIt_E>q_9H-Dphtr${ zqd?+oY3+s>NH-O)VbDwo#p3@hmJBGVZQ=VOfWHN*YP?z-?MAgmqF}1dl^C0;=bDCU zv6g2e!_q(HR&KPec)2e0WCQp;_&l~8FkD23WLf1#v+BhDyFP;ot5TDZU3mFo|4GLE zX*{&tMxs2C$6>@LqFa4eG{>sucy4}$i#iR%Z^wq4c;Z_;@nFBdM$(apWmmTo&Lryl zhuQ3_q6M0C>(FCBY(A2wKY!q%4V0@_p+#-X8dV`uP!E+vA%b%p@xDa-P6pS8pC)5e z6#{XB+QQa*rair`x>8-W0%IML21Rs=dPr@(HNSdDHqF}07A+Qr=4I=NlCccPF?$oW zU$VmX72~?usm`J76bnRjQ~EIw;33MQ!UbFsqdgro9fik_6>vX(jE06a_P~-71q~R~ zu(C(%>wVYpJT$_)cjzILSY0whPDA$`TerY2&9wPP)K-?*TV6O~qdIR9s$3&~XnIHl zx`Z3_X>k&;)IJoy-g7)mPz)OrpvR938@qw0vcFLbIkJ_dP`2gx@~U*Sc@;HUWNp3J z=UaIrcJhMBr4V8{C3-Vx!YU9A1T>HfVg4G#)^}wCju0B;8hytdcsqq~PF6+W^6d7iUS>r`jD7_ufRKKc}nn7Q|Igv|LZo6_k@wNlPYM+_B>s+@IT{{^vvIE_9v8yLtlt=HTfIEiqU2V?ZFUgc~4w#nHs_O}s@A z^D)JA6y^NV|w?8Agl*I!i;qH#_*A6T$6YyCGZ#5iHmsXyFb)%g&{bS zdzcRrVGfT4h5-=(JX{mrI}>Yw%z;5*CD8ao!*r2zXA7aT@R^9B1{~Fir#b#}PrTH} zkQtPQXTUhH9iK)9AZks9rxMi0Rara$3(t%V9xg%qB?P|t#vrcj#8X5)*|B757%;%- zYk;k<_rR5XV0ich2h9MuSC-NDNsA#GAq+7=6F9)T*SgK@uXoUa-XG#~ULR2Pgakal+Wn&ss0ea8vn6Hx6a zUWzmVLS)d;HXiZB!|=e`>+#y*+Jwf?F4sY`4?yG0`!`_7VsHq65b#BzAZ+Hc&V&q*D92*Oc;oOfZ64yMy7ZwzTF^@vwNlj-V!h2z;cBO1s6 zk=MX;bQI*0+f>DsI9Gt3051hN5)oYCLroD*N9@Ixw*_?l`{KZ7$C`4z*=ko?DREWU zB%hPWY7vDo2`C{L1lPAKB=UT@LWT0h-8C^VC={YwQe^&U060`+VW=>FqhZ&!a?R=7 zf0nI}EH@jKS_N$5lXjz8m={$2cqcXq_t9u9-Z_GPP%qcuiNr-J@o*oQz_})F;y$uF zgKL54=<@Bd{M&9B>as#~u>6s2J3@0VAAMhxP_*S;K6>^Hiun`zZ*=(x|ID;k+M3NvZkGxeOE@K~`)&^bQ5gx#NC2_mP?-!=ouG7uk z;$3$O-0>cBM9|e+5X&5M#TWNTDCk1G1`-e%zak9MgsCIG`&|D=1CTYPX%GDn=$xB> z8b~x6NDzh^gn3rr-fh;nOOQOzXL*o$8RL}uM>*Ygb4^xKtoUU+DK#qiT%~qWl5w3P zeo96#O%VF4wYl`>RNWUM`ephpXOas-hF);_xNVl}6*X@64Q7^}7_4onX4_@SYs{89kL2LM9e^6{E-m6FFyyX_z#UdZJRB*^4nU`1H5y4ZA$6zZfhNs!Lzw4s8+KDUA)dh02E0K6&y)R3SN4Swr={M-Xn`T6=;c$G-f(_i? zCHht_Q;LitI{@S>#046^12kykqLIl!IfN{(uG-qv9pv&Ea*juOxGEWx%R4X0hipm zXZBHVVp=3~LeFxjk?fs)<>ChJ9QTG8382T18T5}I!`(a2Tjm;L*YLnn1N9t#2zIu_ zV1nI`LzWA;KqnXQB;Un|8l}_Z3_4u%yX2aj-2apMxOpKj1GzpoMp&Z6=U?6|>wO2k zCMF4{4=}=uV`pGkCG_4j?nsw=p$!t;%d_viz-EBtutF4O5AH{3HiJkCh`_`i4Ryf9 z|NZa(3yL7G14jlOr1+KyEl_3P^g%&IGky%IDCyCDOGqC%821jCBjB!42qoCi;UVkz zmu1oPKrlHpuM4*<;na>9#t}{%JHcU z3d+|jDN-lRee*iV&ln?ac`pBtDcyTV=!_8NBpJgQ`2d$kfny-byWuT3;~Z zgBcI3+bGbfP&#G7S(UFUHI{Vz6KVzweqaD ztg!-qnm>4-u7zBHtzM?YQP|$zHbJ4)9r_~+KY&i_$ANi^NY3bImygE!0Q7hr)Ea+& zih6qg1{7NMU>mZRyB+k8gM*j2+<^!Y9i)vvBhRtS0s6<@9xlfRjce21?m52ijA$E| zkDg!J2z_64jjJsWe*UPVA%4J}{jT5Y)WWy}36RJ7wNbn*bo;sm$xYnL!WRDem4hxE zw8zSRe4^v_etd#qeh$FnG2phu;hY)7p{Z}6PI6ZRr;mH0hTE5g5+c8C_zhjs-_X^M zJ(v7{VG$?wM5!1SCOUJ}X)YG843V}ETb{KOv6ac?k+9Wz4}vcnlt#KV{fcfe(~eS*KPowUV3jAaJNWnMmzy{? zI&!!@gu9X0;gBdAzAqAso^Bsz$QX3>5x5qBOA9O6VrR%!xuqp0A(ZAhCC*gBjr1Z@ zWK1U|&i!ZYyJ}j6u1Z#%D;-H)78@ySUtH2(S}nKO_|nk958Fdr*P5o|Z4krg7P$7$ z6TeQaLX?7drl5MhP(sVMm#(&I7+EQ5!k31jG`(1SM4a$X5EG}+eR*(@JFV%)i$aMw zCZ3t}4lad^Cm3kVFByStI=6T^{(9qzzBKWU-Pe76g<_{L6pmpG1ptwO=J}92^|D?t zqCI?WL>~=3Z}^pZWB#z0tRNm~<(|Mnhxz!i0NmrpqRESnUYfRU_f7V82klxG(rIgO z4+K#*OcqUr*mvMF_U~W<652LXGZzw_PKdw}>2z6_eM^s_MzdF?go7YXOIl-BwZRgS z3@&8Wn^Ofm-GpES$zOrguT`qGs`5gWV;JrBZ_*;mDp|#hIoibE+BAq>$f90(9Qgpn z7y9Q16fXtEuZ~i)PN*rx9GK;y3&-NO7HHVM{`+s}H7e zU0=xYRdzbM1`xj9o9WkZg{rHqSC)fg;;a7E7+55&T!vS4WO~!MC@#i0xA{dOc!o7Q zGG>TgK35cB@=s%`;N|Pb>@v4{3x;z4NDq}v`%nS8#ivbmb;wx<@)Ibt%{zT)ei zLwtD9EsHu|iE$aE#a)g}L90`1&7aDY{AssDyz~6?UjpA#ez5B&MOh%nG$ABZxlwDC z%eAD`)Uk<4%;zik^NUen=glXjv9R#L)Eutt+G1@SR2?#*DhApm>hy9Ov(1^$^pKyN z1|b<3)JO|b0Fu&3T)@6FkPSJ)_!f*p!AH?ri?r?67I46cne~T5E%1EpqFH~X4JH}Q z6d4`n2?c@jQqG)8-cg-5dyWS3I-iKci-Y66cjp)K<|w>mj;npgzBO!U`sbA{UB1h{-q2G&ITPai^`77IC@elIBF<|_ zD??PT%8dS`{Mw1c$(Jsi(11m@Eg@Xvj|n8XiioHyzFJ*;)L(J*1sV$i!mw59TDc~( z%kaDwnWD5??eK!Iwp}fQJ2sxF1zd#4hB-gI-`}J}^h;o%N4V60m^GfCcsLe_4&4@2 zNH3raHF&3c=4g7O?A1oSTielCM0RkHON;DCGX<18_3HeQ9XVx@55GRx2Y(H^InV~R z>*ZEUZIBd4eZC{Fu;3RE?RUy`zF}C;{u9OY>BQ|1A>`AU(Kp28B_gtws<)~te87y< zrT(8sT|St9k_!2#OHHi^m=@i_&Gr=NUWx0$?04N-t)^-16iXRMiLOL+cmkqXzH6OY zd)CB&Co4b$_1B6&9B>7L5Aje-A_?odHtz6dHwKg{Zjm~&x zqU{9RuKClKYmIE{t|X&F$slpnVWcbVX0xufDk*85XnzN7uuoXG9Ww>mjbH|yd39HitR`kT#JCx9dhY$8EOs&M0EwxTdTEl73@^vI6sCAY6dt38tA+~ zGzOC}E=)qwy9IEJjNCAuZejLLqW(nH+x3Q!)vj=SzELb;_M;-b3)T{Nx@wYAbWk;g z*xOi$-&R#d{$}~DFF`M&M0}F2yQaLioZJ0VgE-P5)(?;Wqp<$o^h|ZAlN)AZIK#tj7;l}ft;OE4FX)9jGcF(Br@oTzRl0bkr7!1akv5?7oX zE_FLk^S-85>!6sMD|%a6rVU(z#;$Q?ekQ>$?a8QzA;SQA1V9jY@12PpNU4xZL#q0t z5NB3z6e-OBdOPN0%BhZ6j9gd`<-%_F`w)iiazMz`mqp*ndn+_nuu*2Z_y@9_R}(OU<(6#c5vqKIsZMskRr{yU8&F6q)!Qqct99%p662Ai0ZY43 zNQhi9f8LdiOKP)F?D9Q3 zO#JViVO|gYjmiWlbKFES_bXUr2>9LdJ`rsrI&p~6ATe<1;{yB^)4XkJM;I2M|3O$l z^3ex^0rT^%>(3S@DAD5kH~3ACffQ;hN^4P!GSa^=+7RH+3yZc zzds}?eVwUpALiGsRGU-lt~M(DfKp|s!D6n~Q>@Ig<{(Xrs5Wt4fJ6G%WmL|(NWj10 znvOCDM1t;0wbE_9XWFwSI*~6o#{{12yNLPL{xn!$_{9%JIoh)v4_0}KXSG0VFsCfT z6jTzzX#TF}HS&;ss*?>hgsZvJy#peuY>1dLyZyM0 zY@m@h!s&*s|Li{u#Us=66lz5Y%?jh<1T=g4WMo=1xZBn9;(3FYbP|#+$4^6VLfAGH zdS}ndUeW5)Dv`d-75(;{r9hH!yJR+|EC|wJ;AqDCp7JK;r(FiWaF}9FLw*mr<6IC)nj5ZH{gC0KyJ;dY3 zXhH;n$B)DDd5<6OppVXkglU_MA)_jKf{cObhbUdj@{ohO&EQ_tt_hF#_f^n-`o#N%AAH6YNF)Z0|f#wvxc8&YX!gFeP)ImS? zo_}AYwm*=AxA(k6ynWaU-X?#=w<3G(u}Av)$0yL;^UFsxvt^}HuGX7vrPl?WIB;}H z$aFr1jFl(m9&|^XSt5L>(o}3^b=3{#R%!dE(ympt3g*M=X}}ZT4-KL4?x`ZJ-2p|s zrks|=JXXIzM-0Uyv(76 zMXA;q$n}NmN7RuJ@h)jLTh){)lA}{5OjKpNqLIK`+9Ja5YQiK%hw){qKN7KyFa@}QPhn8m8o)3Z_-RU+y)l#Ud0FCPHndM09Y({nL49{EIrU{ zNC#j6Y6cgW{fF6h-+6`$@#Kk;75Dk_gxtF^jTO9^mhnkddE`_$Nc)>4PX8hggt5tgyVVwiMv7A`%lxK{`A6T*?X6p*7 zG{-gl`w~84cEJqlHfm1BfD0Yg#t~a$>xshgiLdS}B0W*RT zvUDr2HcDNLG+&n{fP;}c*znwc*0>!4q@#CZxVl{-?lpPg=OR0+LiOVQh`3I3KhBTi z*)Pwk<&8!7Qr7k{=BSt!+pAsGwXYG$DYScRxR`vLCwfwq>jL^Kb#iCYm^G6ixs)I> z0UyOb;o1THfG!K$mj(Q9QFsfQUgWq4iU|Lut`AU0i)SYxah1O>#<2trVPPQ=xvOP-+-$aG z1&g51jjRi_JGg})KuRvD4%)GRT#PG^in4Nl?iijW#W{6SXyapjryf$d21#*H>1gG- ztP0p~*_7wtt52X3U_9Ygs7b{RF%W#S16kzfi@GSf1T)&lcX>(J))9KPOztx`HOuM6 zMVwWm6fMC&mC!FNE_7YUKXGdew!H5{A2?39s%>JLlTNtE^h(=Fn&U=fj_aV#(dG{u zC`?-6^zF)Spf+MNAu-FG+Ol6QtEpJUV5r-=W!!kf(JW!&ma%sdnD#owwn&~9$XuEWUX`MnS3a60^6gifScDV*0fXIjw<8u_>Stb2&*9(Ze%Yl z5G*#8IVAv+ki6Vf+fL7#|}+mq3b4EBE}a*wq{MJwv?l$y3(2n)*ll?Wj!sO zGcoQpmc>h(@hUMXh)7D9>v^XjWlolVbfj_<85b3s*v|sHPH&gXjaoJhBD0h1ogVU( z8lg2vb1|veg{yFfk zK>kqoiNi+EKsx1T#8BC?!qk2jVr(jOF*LpKd-xOrh=BhHc$R?D7CHdabc!F{@*L!l z2sXy&v0>u|=}XJJG0^3s^PxE&<86HTsDz&mZExa&-iSWF#w}RnB{KZ}4p_^;8bc=- zJ@9Y=z9P6g5*y{-nc$<}m1#o{u7U1MJc^z{?K;HKliJ|c0>h*pEyQ`{@CxeUFLl=l z%PEeAkYQwCUR~k$wohGSN>KeCjV5^9fWHA`=VOK>^mAAz(1PBx4EYT%9g!6i4r<@< z`mRYL^Z^?89BVSNJ$S9{pgrB{Pb?bcjJiHt+6e!*O(%p+A%6MzF+?!A0NnuYqey^< z83QCtM$m8%FS0&jioPA*%;U#zZFK4yx27}k(3x{b+dxmyE~yEP0nYl95rN~DU><@d z;xf7iwg?Jg8t4@W?iBazkP(%rUk}DUpBBE{bhz5Utf-Ii3h^QwG7Au=k%Ho4P>Kw9 zWbFbnw;24;JJEv(YSP5jQ-~kYfjUAIzZS9}~02@{l!4Y107zzyO<)ipY z!+ZRmd5;Cl#~`y$BNnka33j!9W7u@@K(owEjckQ*rxY7T+MWqh z4x_|vPcf!(T9*qrh3{P+qx(4-0IeZ0fGrSEOXtZB$8<4p}U|i zMPYH^;JG1{2LtlGLD6au&k^zo)b3%5is9GFc$RQQ2a?@_bz=v87#f7w0<3pB4OgMl zDg#o5gS_4VPqVw)RqFL7mP{MTT>59c{Yfx78zw3#DPA@1T3kywqvbd~!0dGU&cG-k zm&6oi3XkB_@6xj)xucSTR7DOI)s`UG{=9qmWL4_*{PUK_W-%^ZWn{#QPZ~a4BzxYe z57_hTHYyVK&%c&qh5U!&8w;38i3gQI4Q8}mj1)8_yU@bV?+&8T?qW!uA+&*5eSs7y zFKRI@Pr_|kp=GVkOm^}`KBdYF>UJxAzKF<~<@oQ=?|LqUD`x|ewly>bP0m@PxF_N_ z;{Az>1^E6w3&heW0b_mIi8O|2*&)tOEBqKq$75upcZw$rn||)5MicHAzCu-*OBJ&%zy*_0EwXy zC6qT+D4*N)nj}W}>OFeT3?NsM>sJE*rPhsFr`}pbeh+N{P8rek9`U%7%l14fx0=;< zy{wGc5J{RMUWbKhxCU`NYC$Txc>=(T1uw&o)CMgMZ-@k%Np7{2u78ouGkIWtCqDcANhZ*!5k! za3`*k^Qp-60#Hl-)LUOZe$`~8Acu|3MtuhLQ1i<9Lw`WX>Mwi(rdi;rG-O#gt}Hxd z%jU><%3Te#~IkA8jcobkF(|^iWS6BTiCt6c8zPWo4JM%e{hE# z8pxP7iET)Ye7JcFvlPPrn|Q|6#DdFmxRVCkn%;z(^&lPf4VM@XMOzEf6TzZ`??yaK ztp~sbRwB5TF%Z6n>TrDyFZBTE5GZan#G4PSafn?3vGTcmbm$?10zyp`PO!w0Z3P z@`8Y(Q&R)oqLFjC!2!SYz=*u}h%Epyuc03Y$_E?Hxr=7eEj@Wj&H2Q%Nv1Z(5TFv%RiCp)-n%BvZr$TJ;!EA8@sima39-Y)4?+QhF$ z1M)DV7BS-9&ONiiMyRLqbN~9>+Y4abI@IlJVj(-8SXOsH5-EZ4rayEBXyET`R~jV! zVi|6I5;XWqdw|^c{_}drH=3GOlLJyoI=gU9t;aQf<%y!!#C}wM@zUYco;UK?rX#5nWdJgQAmdnkS z?|T~NlVu2kI4D4=0xK!zm%4B}slf9-@V1v+?}OI>5Pe5~1>~~a&LEd*4*AmZ3ife* z{v&Y2!s>jJ4XhTpi%)gew-el#;yF+&m09<3d}BuvTTnQp1U0+(kS;+9N&>L^_lKrC zAU5^)XaL=sy$S9ZJ;BQm*M}c?$MYm!__S~PxJbXcGA$Fd0#6VGfwe5+Ti}r6Idv1D zbi%|vj(N~v;w~gKm!#ep={MBl$iQcKa2@65`;Q;*u`T%caf!HLSht`Iz#qBs0g_{R z=uAU=E7Ua!=%&3*v~hF@rmyals0av<;ITv?)uk#3Tuuyq5Q~4i3Bl&`oc2>(_ZZp? z*Hhc&R_l>vUhY(@vqpX{&}ecx_=h?FJHgD7CeT6 zWJ|$PAq|3Z%yXzSTj*!w6I~NNM*^?JExFf*@2NaPHX*rOdIly)N8BtcGsrO9?4d_LgF)iSvLG;tma`J_tPh(9n|JB&k8F)AQw5^gs?Lp7^ob$e> zwg6{V@~0Bmdw0+GbLQNg`_HO;Y6Ojup}Uyy?YSnowT?)V@o;EC!k-y)w-x%Vrh zbgm%lCl|?I;WJgUQK?mk-)|DNAT|P6)>Pi3hezrf*8poY0nl6?_FT6qz2*_=*io9m z6>+WK44tmJJw>V$A{_7G0e8^%#bEScFa7}w-$Trz$(uX=z)V0{e1tSBevBMURQexYy&peke#hHl^^ij+W&RX42;<$M{RY#aIA)ZWLH&y z;^^(GAVBVyK@(;{^{MV+IXHnTEKQuKtyG*?7jDmJXnQrmUCvr2age5s6fpOnH5|$@ zdSmHemn^Q)e;Rp~uJYn_4c@}h*73=(Q7vQMR#V=#`3X7ymP7|=K`cxQoTIW_+c%4| zO(BI5?}P&^I0T6;rGvK^eF&Uy;2v$(_#p*iC3FRrKEyEf%5_HF;Luq@z9T-3C+^ts zNEE!0?%sHktyQM&yK+X#vHzRm++8?v0x3pljlO5V79bclgO>+@s#VL?wkB&nG!_0+ zj?vY!SgJv&FNpRvzcHtv?l`^(1Mq*fCQ1a`N968F$pn>I>gS1+5u`}ZvuJaNr`w!# zARS(}A!B*YvHQdZEh+wDOPCI=Ogs!~ zvt9@kT&ce<&B!a&2qxleX{1C53AhX*QrIVVvp~jUg9VN0g*j5a_RYX^zM?g>X0w(~ z@!!2YhTQR%-Zu~xkJTGTNs#8T;^z)H^}JkkZc?!xvUG15F@apN(rZOnY8@h@&13Z& zE=)z#IS?u7<#JE&-+=3@JwScOa$GD2IX1PPGe=;OQN+u^7;G)*UO0qm*^)eD8>+P% z>WC3RwkE|)h<+4W3zFW|v{^HI6r{9CrQk^svUHXCRhM$TBae+Iv~Sd!TDhX7%>qh^ zE8FbULrp-7l(rz^Xmvh!i-jg3ocqsw*BANnc!_&o#Rg(?kuzgp6%ue(YjoQzE@R;N z&xhOb>xM7vPolWQk$pk8N?f6!3>35&g+eu^Pe>w4o9g&F{oM{8q2u~kSnA&x$`pZB zDdQIL1*ul&O%WJew&|AT^daahT)26Y9;CZ3xw`4$l3p|?I|Ft(j37!R<`Y<@*4UuM zu@e0Q8*dQDsots)XV8CQ*mymk>tX1|vn8EHdse5&7rZ=Z4{t3$Of#^+?ZU_+ZloHM9Js0tJioMr={ zP*K$vkpNp;`66Duq=zv~Jp90UT)m3b631drEs+%0t}`0@Nm536BLXDMjNp{@tClF{ zU%$=&jO9zCB=7cbZ0C-6PbU&&wP>M2w5|6{d$ug$RcTFQ2-%H)_CaRuKWkawhC5>M zCmefVk~j^@vtu;)3!akZtiFM{La}E4miDoO-=?jQ0u|+@rz``XMpD_|p z(Q$Fbd!oJT-II=ZKp|HDT)#3f6i?8^gNyPz8V{efrMs?f`y`dJZr{^Fx@kOg>R4u< zl~G9XNVp$PiF^WAGJWFh&6>L>m6(qX_zVq9Z#*G^C`@}`jBJdM60%IZg)H)u#>~)m zxN{Mo0$=ZwkR9aqe~$)^`(jfjXF8%>@Njv`-O-HfjxzXh&S+#Vg+>aa^aa1VBc8u0 zZ3_jp6?(+NM;0QX?;14tHy@p8K&+BOHmQz#t=s0G^cL3{8zf!{L=y-iD7nTp*@i_- zF|7e?LP9#Bof0DU#Wb`Bv6A1~!F#7q0}Rk0>0xLs=oW8|2qdLQASQbP0U~G&CK9W` z(ECFkCFK<~$pV~%W|3x@W+Z|{Nq|rabYwb-?g0Tqa4RFSeR*&YjyQDt#6x#H7}QW7 zps|G^Fru-)X2`v}>eU_QJV{*L=E(4dM#7zDR1pigE!Ba)bZ>Zv3-Ynvz=p!Pv%!_YZRtF28$AgHK3m0nphneQRN;;#k{GTHYM_zXiimfqvp(jTlmF*Clj&_Qg8OU$_u?bl29c`#;mOFjSRS>BrrWV;*7Gdz!pI)mK~j{+-#PcwMIpC1qP<~cro8%VH)K1 zWSK$jwX%Q^`hugxyS@FdB`&lA)8hfv3DU^oXg_f0EE7{!V(VRQcPj0mw7p#^1ER|f zb$FlO^;|-84D(b(3$hf_v8GyzL=iKs&?=FT!jmU()cRurXkY>Nf|K&4{p88B_562f z_a|=m${p6q3vMe5L@ek>=(lyaqsMCu{l#wEkr zz``}XKP-%TMj9Xny=g;GP6}&DL`n(4Q;@EKI#Y=Kk|*L}WH7f1;%ZHnv5*kqH(ae0 zEoAHvzpJn?m!#>4^9Fhz3=Nius>YAe8o@4nrtu>BjJ|`apcu6b-x!2nuvzjeJCsP! z@=Dke;!Ra{{_yY7bMlhsjp#xVye;BVJWE%mI|^O-K<#W#AVHmrRPWjHO?rD-DC7UO z$^R}3TL>t|_o`i2ify?PSu$H&NZ$E7eaq0@E(thV6p26yLt;=>A?}IqFo>c143$|U zpyDF|O$S!6Fl|^>`e4u>n%1Bg5*VR1cu?_Zwg{ktCR3!Xuyt{xbZrNguZqzf+zfbgzk$g;<2ZD zpbJG;riCGgOpE>wA%&biPY5;>sdF$-n2rNFQzkk93Bx&vufX6nVw8jSoVcAqFC5b9E~^I$qDW(c#%M$GAHUbF3B9mLQ=haJeFEZ9*mCEu{6bIj zL10bQDiyr)X)?f$myF8i> z*TbON_vrur_y5sO|L=eQKLqH*Z3p0!4m=v?+w_Jzh*qWb0#tgjq4kWu4x=}Dcz%#v zhys}AL6~5Uh__xJi_Y5syFf(0gpigvD(Lka4Sa6;9zHMP_K1oR@C9+iGXcJX)I0;D zZ$d^vcp_OLd?)A(FoGE$!FmO-zUyHKA3yF0XoUbaG+6-Y0(bh-{EQ1oRp^;60h&jd zhEgZ5$b?5AV$suwhBfvWK4^Mkn5+?tBp=HFA86S zT?nd;9@^9K?u^s)s^~$?oknV{`QzDhI-Ycuv%!B9o_i^XJ=L$X@Y>j}kZ1(8cBi~3 zXB<_ij$M|W0h1h-Sp<`JSZcK3&h&?bWLY|$_`wWfp@_k z1FJDoky7J-eD^E7+6F1&6Vk6B?Ff8MhCgwM!s-xG=MnNgCjFC~EH8I|E-4MvO6WCa z5JBFd1(9nW>?Zeh@2pE*t5#a&c9qzUDAzYEvXpo<(mJPZlMvsnQ(r*nu_fOFixJKi z>-qZ@M3<-mS{oeNTgr=_4~~0t1?gXQ$&Q=eWm3fwJ+Ly=E#23r_YPUD|KvI@-~*H& z*w>ftF0s>*r(qiO(Z#_Ty4ZbjM6YJqh39YR;DnUDIrw;v9zS{d?Yons zw|j4B&GV<nHI|36Sb|t}-7Gi7A3%tCqWL5F z@dV0$ zbo-{;!^bI1ztRUK*f6Dx2x=Pk9}^SqLer~Rka|723b|G7l8nV&*GjHu*gyhP7SotI z;ih!O{Ax32y?alLkf^0na^>723*C8Sob2{E9b|SbT!Sv8H5#W4AFAWwjV89) z&)RX3rt!Y_vYO`l`1D#q*w;M!o`2xDe%B{~Ig=}YfpTGtlgH#jiD_oag;MR9T$uB_ z#mFdQ%eglUbTF9ErIsnF#6DQNyb^=xL26lt)Z+Drj$?H((Yh7*;~x{Ed zGHwkks}iC4&Q*7;lZ!xxCnd`T!}ji2#JRf3k^Xzv8DpVj()&Gx{YxZN>g^mSSMfcQ zO|;_QOhdZjUoVz`ea1+%!6?jeZ_sNjy@B&XUSg*Fcw-2g61oQ>w+sQu_1Qg<4cDg!ZsV&s%F25&kwAqjJ~vGYKbe6Hg&!}H z^5i5qn?h$E$jc^~j9i&sAD{9-KbGUXIq`E*9D_}Dt`je=12!w3L9b4fl?w;Qr%wuz zwkM-rww8|gDr5TjyTf*#T5h{G>_Ps5iQ2cFDDHo-If!>iw>rIdnYoez&i?gB*3o zS2_16Mv^}>!4xh9~5 z6s*PJ3jCIkmaKaU%y03o>SH==WDb(nBXl7R>>*|#UCty^p>*>vTDX`6gI|)mJM&0v z7z4=nEbx@E;o@FFcbI2EEZukxa){?P*NE`;%DEN=XkvQPp5-_L z9*!v=r!YNll1yqRt~=YfgD+z+USV!(-FL$b+_8B9(}$kXWlG@el}J{BFqSM#dmg#b z&xh{5VOcq=-a>@-?qm$~S&dK3gxqT|Vd{>Dj-6LR80oGFitbb{C2Tm|!t8xOoFF8` zo0btZ05Uyhl0`8;x1G<@%xHsG90^7KD|{t!y`uEEK}Wyz6JP#=-Yn<4MIP&D#(^A; z0g>7pamWk7c{uB>@KJp=aFfA1kK3xbgxrO#1 zlvEZS2`jFfgoKbhP>*#`57)_b0Qv&Adt@WTcDk_YGB>$UcZ&Tje6_f(4UytWTTo~4^39z;5Wt*Sm*HpQ= zJzN>Aop#Mmm%iq^f`pBhPGEB07%0BUmZB9O1tRsHZdqPNY@OD2r3!K5Dh-;QGb-p| z^m#*lkSjVLmFQTnlF<3maRyTWqRP22Js`AG365i90I~n`gQAS3H$5mpzY;Vg=4;jj z(IjzL633;g;7rp4!@HGWxp47@$U@BGVd358llc{kec|kL8qT>OoqVlz+2YATQKDLVnyJ3xvYg9%gOfcne-sQR~~ckT%BG` zz_NFpmow`pWZ_ni(l5HZvd9*#m3bPZ)q?Y1_vOLCet16-O~O%2ES*i;KXf1*xR~JP zAJBQLOaiP5DcHo;Sm^FFv7e4=Aru$(E;`0MGRzj4L4XxsteYMyKzbn0>mbi02t>5Q zga|tM>Wy^2KO{0`)Zd8XVx(ufoRE}yAi2|oahVkV3nZsW`#45jReL3q*s4CtroF1K z0#aNi|J9m|=4z0}0dy(lPPy5shlyN;Lo7@8Y8hI*;s8dy{X$`xdREC{)2 z6Nl8+mO3Q*`;f+z&Oe^k^y7JXy#EBObsB=s93XFY%I!`yByx@Iauu@w)DjXY>)!AV z7bx|`g*~25{Sf>Ow~rwOt6@WEYxLgq%xS0_-a<54O@ZfVr%sGy50w)J*Ze{TSEHoO zf+p~L;ZiP~I7aH&&?@CGWN1x19H&nctQN+uaSJEipd?{cRZ7Q9bh7WVO2*^H*LXJ-GP`3|lEQ?#zmztF1A5J+BujS)tZSFWK!K_FD+S5oy zrMshhdhs#!#0jf1KQB2nJGQ_Ug^YaCCVk7r6!$D!ZEF*QmB<5ssi=*seo zPVe`fKm7YGv>iN}v}r7Kzzf^}{wHyu^=jHcBa)Lg!$4=0ohrgYl*mQ$NK&V4eIp6! z#K30NlE+Zr%rVpy)IdBkB@ZZ7kX_$^>d92Q;5k{-)S70R@*Owck}Mq)+w||Zf99z@ zrVx49kxx7XCIO!+BCG@WP%tp;Khng3_Qru;oq=DrQ-zv!jG{Ihm(=+E$L5TrPS()G z#LNPe$iVz~BV9jnVQJ-QxZp|#(g+8_CWY#z=tIIV($xkeDZExeTDw!Jcj}c~!-#5g zLiNsDO8BRsP={xOvUk^%V^SqAn5Hd{@V7FG#$$W*&gHGJv_YN>cv zluo6|opmr|G$dvsIRq4Fj6p4V6pKIc6VL_GZMvz@@l=@Cb}$$0Ie7rnoCKCVfQon} zAPdn6;McQg)GEQRN*g#4=B66u^V}55WHh9zQ!6F348>m0%&FDWT53+Y5u*eFI>?Ml z%^~PNNn=s3vW*x^mCsl)d&;)ZULQJ&%biLQ)|pMjx(C4c`B;P zlO`9$pK8@Zf^u#nMv}|uijJdF&Z3%Y97h$zR0yx#Cj$w7CX6I&%dc@Hvnm=Y<*bdr z#zEDm*9KL}8%zKivuW%q zNDv?|3MGltr)9}ZYaDWW>LI6&RDBNKh>>dL>4qB0hcUfiF2z|TK`*@-$k1j*#w@~e zB|#0m8K|htii#=EPL%{**Ft1$HtbC}^H*w1JR{CO&M8m*l?2`1hKy!K=l)7) zN87cGq&b_uwVHW=UCU?`zJ$3{{MB0ay~P@a)6P1xF=rdavCa4_9oyJr`mwE=;L);f z%AKWlk+D!n)x1;_oLtsD#>(td-P0ipbv`9UwVr+VvyS0cXZ60XCAc*-0+~tlbIxbi zBo0XQY(8h%=BJz1sicltf^)-$45vEXO;#=8<~09kQcV{ZIItNQdM)A3YRQ9}J?KNu z6`0`9v0=k%&N5+Y72bx8tTmfNR;#4W+q%N4XrYyJLHwzd_G<}Z*qXvC#+jOKB!WIwF%m`TbQ5&yIuOux4)xI#V`)~>#*%{qq;eWQ zlvR-AdNXx_Eo@q5Rd`P^lD0PIq%4Ij139BO=mx3_@iAd6(gJJ42Cr-4Sk`lltIal; z>P8NxKHcgH_zV264xFS~R@M~!AHGAf#WN1K~UGs-;2#mlq@&PM3JwpnAT&UVCXgq~`fHJ({5 z``Y^6}brdl<-<}qn)JOayd`j|(B+bEo=k<)`rcggo_%~tY#)1q&9m#KMf zwv%jLA^2o}ia=X6SF z%sP@(Cclo6H1qG5X&CwnwLLTMm1)@e3dhr)maA)7Tzx&ql$rNP7E@o(aHiNOS)6@6 z187Yx_*PQs?z+qsX5}K4RNA{X>%{W((-IJ340WYV4(fH$xNn_tIxxr{yPxIKeB?QS zidE_xJSw=}GyE=5rWd5&Y86YX(%9h9)ZrRHw+F#^q^G12H8*%f4Svz#6H^o6chYFW zOR5S_j+*u80Rd#a#fRc#|dug=I_ zcxZA0IB=JGr_$`y!$Gbw0DF5@np~|4gQ{r6c1-J(MYFi|?fIsZ3&5r0ij^d7oLa`n z)_C}D&o!{PA6>N(*v+p^_$&u^>1;gGlhSpoCGi&3P}U-_1#XhExdg%-G_*IMw=#;@ zM*7I#+Ipg}wm^=Hn59A?)#{{GZEhl3>X9T5sTe3^nU=JwtxX(c+^{5lqSbaKs_8G} zv^8l}<2K0~fEeN+J?;Lkm8TfWD(_Y1-{I(q%AzX&9#`BkZv<*$xkTsO<~$gA0e z*$f#RTY@fQQ-?KUV%krd zmLvtumWeuVG`Uv2w%KEuG1qIWUf=9-%|tC4n?0sk9kyC2L)eIc)#oD@t%Z*+KA2S` zg>Hq;+nYF&%3QP5C~xxEs`Kct8`>rhZR&gAMrD(SQ=j$}(pbDSvB2RpW;yjX7B5sR za7bd1F`kRA`$xzX5|~tD@e;)X2NlLhjSr~{5&e?KwRovwf#YiDPPyJ{EMAIOB%du$ zn|1x^w@)5_S1aTH(C*R2!5O;PeQ|Vve)IL-OX!m|jrK{OzoCN@^8U@i$8+@f$_v|BV1cZuoMQp(fC)kWFD4)UV%ePKrs~^@Z+j#qv5%^5Pn$pvEov>}AYy896;l)8JVF;@3 zAD+wf;PB-9;Oqh&o?N_*)_uQw^bU81NhvOaqHSoM%2^P-sj*$IfmXMyb(kftsx*_H zk{OEpfml+oh{k4r=lAh-A@ZKkcM+(n(7i@X<|_3Ly9!a2&IVLZxACs+4xN#qDZ$D& z2a6%ekYNISG;}wUD2FxIPL@MZ9tiU~2s2*b-mr_2>H$uD1ZE`xNnDG2=9)OwJBCFb0%|RkWBF;mE z4VleFgvv2KlJB#HkUqy9A+52CcKbJ6%*`NyiZ9kp3Kbwdki>P6#6KpOOc~ka51%t_ z=j$U8Nt-D~DpU(LlVqqqnu2twK3^yaxzImPNkW7#Hid);AU%+fb&wEhU)CM#CZNmc zns&!#un`%IS~T(pUKea3GTZZr=E=P_GHV)xNw;r!UUrkiZtl8) zCL01XIiBeo*(m4_;r1F#Ku`J!r(Kn19f=uCw$QsZWO!cGm zFOlktG$uFI7eAVT>WiN*lIrIq^_xQ9ABg&TbeOI)N~I;fllodX*)Hg$%Bu1BYQp*5 zHLj`hiri<@+Xmq^#)yBPOCL*X#yg1Z%1o{QNR_QaU5b&wXZL zIg8;lua3}x?c=qd&S!#ZYvwZn91nbE9ehSiaFobuBIZg-_4Mnkmh^s~lG-d*XG(~A>$ z%VwiHH1vTqC2+N%nwD;~g|BjwD(jo1Dg#?UsO)kO%n_}}iG6H)h4>E<&oM5eI)Y;f zxe```&~ZV7Ay(7SSzRAGYjJdjiySU4gH=xJ^}$Z8r`tE1iOJgfFj-H-B>A|DKaQYN zDBnbM*4Ky5M#_Sd)@5|V3;16GCI!No4~32Op|F{<$l?o9xmsm`V?$8;>gbqCbD@Pd z%TnKh?2YAi5ENBWI)yWEB&JB3@Me6*Kzat36BIaAif;6H`NfL`(uCC3H6h^q&uTKm z6YgE5l;Q?Ew2_@_!!KSI_{HR9VGDit3|$sp;xo;AT$8AAE(;|1SmYah0C~p-lfDlf z!k5qB%iY01T|X2Wp)PK}yaH(UNzoJl{l~1-`npzXwNxn3BLrA6Nn~OmW)y?T5b(Y+ zG&dPVOGaERh7;jLCRhyMcQnIhp%9(`IE`M3q($Mnj1BCvkSTmgsBSJC)yklA4~mI= zB%`&K>3C2~Of^aEwM-Hv>e*@uktD5BDZwd{G?ppJkruE_G2e7WODxTGnt32XQ>|~U zvBF7sAU#t}O>>1)^EGKgB_y_1h{XK*PeLg-Q~N1luf0O-ah>NBO1cP>Tn6^oT;)a? z&$1N>NSj=mjk2GdiEHZ?dQXAQ!{I{A5%d)JIVZ;0_&yd8~JlvoV-scx$ z>#Mq^^;KcpGgH$*s|B&3qQq^HyK^Ru15dcNKnzA#(hN8D4@%!)e$>I(S3f@wI^YK# z@Kg&|9dUp43%5EQsoq4jaHY8+xU4CVl%XehY0FQ;fbd|P%Q{MXe7Mi%cSb=J*y2@nrFcZ0%aUc;2+ ziYW0lGvjar#TYSNvYAYnR-3|cm42{@?f=@b%z=K7jxeptpaN3WH4_5~mIs=!K{R1V zXQpf6naM>Ortp8nr&U%K!&Xq|&Mc>`rpD7kiiLM4B&&!e z-?%btg*K+v?kL;VIAVVR5Mx+F)@lIYeFdFQd}rkJ zOlw655W3?aywL3%YKXM_{)4`P&P~TR`a|2Xoa_75fFSqC0ofZGBeSosW*LN?1>HNN z(Zt4Oz?8hz01@dj1jY979$D3r5W5RNVEO0Kx#8ZbG{;K;B-SYh=U_1D^Gv?WhePNs z0KhW(zU$!0TFugs`U`--^2>_$DDNul`r5P&!(G*yl==&Sz>Ga5UlABmk0Btp zCY~H9ToJvB^vD5uY1;a#B#EG}pmWC=5UJvYacj8x^@_lV_sRi!<=~RlEe^3e4#I0g zxBOvWUy(Q^b{BwvU?TKiY9F%vyiPG%_*(Sg81=aljY(Hv8NroZ;}%SH({9xM@b9yevEhTQ zZjortVKyG#Hepm<{4-Z>AO6+U)pM8|XWRfpyDr9xl$B}6#aPj%-z_AQsrV&>nhs>& zHmJYLe;t|B!cqwJv^09-$nyhbUJGUJGc|86BZeSt*$AKDCZm8{_8r^Dv)>&Xu9r=? z@hWjmKS%1afnk}q_^^y=v!5rMB_4qd9)6HmE>~Sp7p3wKKB>yK3j3~p7Xs5>ydu?40Y zu{ET4!!@;X?qKe_~@U^hr zio!!!L0G#*;b9Z`d`=cW19zW`u`h_HW9a||*KWCT{3t(JH)mJD^uXNL!Q5TrD%YuN z8X;g>OQhgc2uv~j9j9VletwY)Hh~%??#~!OQf`4vnxy<{3bLg9eqog96=9A!=n<{B z2~>ze@<4kw$a{lmf{2`z>%`#=ox84SL$+hxa;_&vvR{VMdYX-<8+Mz+1teEJ>x%n` zsDN>=)80DPpc|XF)bZaLJxPes|b5r$yL}!%EeV!-6v=ACNsP0v&o3(9-cu5p^c9_p z_M|s4B}qzeY+;n@oQ2cPLzRNMn?QjAU>>N=TBuEc{)|I557&(Q^|S98zfhVZ?;<6A z3D;{bS`t>Dl5T__E{sN8=%4eD2dK6QlmXy)APQ^IOX{C3tU`@>|RQ>rVNDyLV*ILDau@4+I^%$_R49(0|nu4P^&+pl@uARk1o4|`k0)Irz zukwJ;DN8S#hQhLSovse&jXuZ?c@R12b-`AUF!_8CO<|SEftQoV<^76I#uQuN%CxAy zUSJ^teexZ)un_W|#iegDEmbjDrUT5+ zVe)v8u*>-_u5+F3^?~b5W%{tVtA7Bri<`xWRm&DV{B@4mgk~%UvOr89uuc%Dio(O@ zpO}(QOZiSp)1HzRb3%%Qvd?E#n()z@Pf-a_J)Eo7ajsf|tfpI3_RnI3Ju{np(@Zy+ z)gq}8Go2UY%!oN;50=OdDjvIZ6h zRurE$fZV4M%_sv%qDomTA?dsPOd_d;C9sX@_{D}XiU$s{77oGFhUL+<=W!t`{Peyc zHJs*cC#Enn`cMOeM_EG_TvdSGwmAlXqLjno!O`HNJ7M%E1Ko8gabD| z`DY%b$ND|wymXCzzP&GYl6k%kM$pqeJn+P|SJ^erdT&NaP<#ty(V+Mj`H4{c+eK5MW8L%fYIBpn z+aS6m1NK0mz8(Vg<=Mw&Y_v4m5?RL65ShrQvr(H!Bg-K>Q`4KxBQy^bW-SyZ!5Ysu z{X|v8^taq!1Hs8lX=WiY^U;>Y6O|x)Hql{>vy#N7e!4+~CI;IB$ytk&bzsp)ry+-m z*|huCWMF_Q&>|Dc3<#6#Z=zk~R_i7<`DK$Z^@dI(X7Rl;4OxqSJsW|Gx3dsZ2hwx~ zNrNiuCSCM=|3IQvPoi?&ejXj{?$cqU$0U6_Hf&mtS;&J0PQD8)VzHgaGSP=f`8u`p zO^u%F;2o7a_*~9QvwRTdxO8@PKgWGq?5>nY5zS$mO5%*>s7S42&CEmh75GhMnr2dC z(G2|L4Z+LfwOXcaXwy`#WKO5)XZB9?5jk!qeLZ`~V=%bRzKu)@aZENxgbpQHB)d15 z=6c5UC`W*=yqRMAI$r(ewVlry2@LKa-qHXIF$=nkp6Ys=ZjoM&31&fmQ>X}W%*azw ztb0QAAH}bkk@4#!qfI!iC98}eZ z>G9C9Gryhddib}Vp0!~vem?pVL4>n+Qlk&fa@_j6db zj`yeHd$JSY9nHuh!)kCRa^ zo0k86o3G-RN}pmoS52X${gIDGNuNwhrKFD+M5k^s@v|(4g-gsNQ*!n7Qz;pq2O_l= z0eK4l6tz>hZQOM&m`ty$)7d1L&md~L>)vY{1y1c!`c|DLhThVy59{!2}h9 zp90Gamwi!q*c=`frR)hzOr)PVxtRFL)ND-rcyWB}0%k4`10xkTf^%KarT4(HHpYfI zBm%jpDT%;``4Tyj+$Dy|3qb;x&|GIDT+^`o7{=5p*4=pNxx_Y9g(U5GHDROMD<4Ip zbu%-BiIsy4VSBna(Je&YDKl*~d1<*uGHsPR^-8B&QDoYRJf|htiu78A1Ynw+{cFz| zjSbs_w(il}tE;@gwL8`FoWR9;PO1xVQmlS3{h>4Q(W!o)7tm&>+MEwiMc0ukS^(y$ zYu;ix=GvHUs;eEXF&~hzj-${8AfB83o9Updb+kDbqS$BREa%*SixCGvEJd&LSnP&1 z*Der*pgc$f>yQY9(@ZYjKQKL5aw$92%RJ+*-%tl+#S7wa zES7ViawV`^;+1?9=f!AAuG{-?E{fsr4dsjZS>kNma9&2Zcpms3# z2600fum_g77GDgdofyxcmygHYIqnUXux(?hi9+W;poG}Fvr=bYkFS3{5SlAE5jJ{^!|B2 zAFz>g1y;0qNJ^ykx@k%ToCl(^4x$3#d*C)X2#@q1Ys{$JOfh;9U9_15Bl^J<6eIfS zf=C9n?77OO7QEv62?dAbfkv!}Mog@HW+Y5W%Fa}g`=#h7(*BzRJfsq}a8sflC z#<0w}`Aq6MUA~vFh?S!F6stmKt|&cj2CI;WsDeub6e|aV203KPe`Mi~f9yTSop#WVPkPTU3+M+Fe!kQ9JY0im z*l?$pg`VZ~Z!Qa4Piez{!#{r`c*H+1ZE>{4t*0F6+$pZyf;FjCiK`>L0{6LHym0P4 zGhDkZQm@&m);l##aH*qfx89h;i&N-KD5MKT^@bPH`L3`=3$bxkP`TZyV0eXby_no% z+Ckyhw#&`!asz2K7!`3%RF}>+s-P>rF@n7p$;+`F+l+}{yak2h^z|bh#y>c;F~jn= z1dY?bK^RsYX0R%gs)`J@ay) z9Yq&-v{d=&N5hLiy>HwamNSOqhjNEjWS&#Tz{CG$243nfI)-jSRoPLmHxcr5)`;8s@2sc^}zlO7W$>-~}dj7ae)* zolt@>C7Y0d%u+=@!h(lMh~xTkQ2@5L%rUg>N*igg&d5>|5CPc{L@5q<9^Pb(9PqC- zjUcDdsm&tA1p{N9DUcw(DbQJG;!+4AuNIKQ38w5=9x?`{;8)&}pBt8y!7PFQZ&zvv zlSce;U7JmO4Lg!~$vIrIsd>@Q6UQgIgakIUZ&>E7;ohSY$2U|wDCjeaPDHNukZj#`QA=-lupCwy zaR9{E^nr<6Nzzsu04=vLmn_JmVTl&iqU2IWCG@yAaj}Hmzb~QPgZ)ceczk&xJsurN zkH>Q5lULH?+g<7L>|A<$Cx82k)X|IGW9jjQRQbjJh4lDJ{`R$8`S7LmD8u~XM1Fkx zLV7%t#{1%2u6!Z)`{7i2{CFlk{vv(5w<|yHOF-_u+?5}tmiJ!Em5=1NCm*H9xANPw zJ?ZhC{P@co@p1nrsiXZj@>{v(eR+Tf2U6vOS5oDJGYNGE7ZTbJ-kn7r--^#Kf0BB7 z`9^B`<*~F1U%imtzB-U*^wn!=QNB8qE6Z!;)ro|TS3e&}j~72nj~}IPU%!zbPb4s2 zpGnAieIX6u^*gEG!+i-mhey&74o~E_KTG`{p2=^|rG9^s$NSS;`SDa*SZ@xbe&4*3 zA74uyy*ZYK@aFV`^mryeevtZoBV+Q-FVf~e+LeZIBv1Fz8wre~GpVVgb7>ZiF677e z@}msKvAltg_od3mucQrpEYJS&u>|w+i8P{Pd0!pNi~m^O8^`bE#}9JL|CYAdu}qSV zf02mni9DhcnW~-~N?@G4l{z{(m0CVI^Q1?aG`u~QDxdC3oB#Ac>i6`O)Y0i{2|1_o z{GJ}k-+q+#(a*b5<+Ed{-?O*Uw`Ve~KYJ%v{vfUAbGha7J^69}mHa5bl?mnfE2-ae zdA#RurCoL|ujlg%`SGLt?Jv?2y?8B+=;9}-<%?r!O_*!~=^>67>o`rWG-${>h%kK}Q5xtjTe*f;h`1s*m8sNWor3wA_p7ia% zcY~)r-7>En*EYkJ_l6iA^ICU@LeWt7ebbW*9m~NzIYNPL;{%)7pZG!9zCOT%A>-BY z*XXr=i;pwHYmSb6a}t&smVT$ZhFCBRKYEG#H3uQUuMEe%76$Oj5q?j8*Ihk?=e6$M z>jD~IDT5+jl;u%J`6{C2nQp_43U3`F(x*9=-h=5Kk1{VDw1wzJ4PP_wCROTY7tA z;RPp9lDDpL?byO2Mnw4b)Ua*u-n!MrjeI&85T&|%FBI9o>%HLdO#dApFNeY`oDIPu zgwmv-@Z7w)F+&ueI}_EQXmMmv7y8Jw@FWbv-F;!eM0 zA5)R&x+SH$yp!G=?g+1i@Y%#fLPXC8ywFYi+840;!SHj|Z| zFLbvz8Axy4YfL=IlnG@cBLWTNyv1B0RwkGHX}CSz{9PK_3rs#nFq2}5tDABi``Ti& zClunw29ES4<^k>`QgUrhMskVyry&*Ca%XrA$T)a0oXFGh0x#lQX=pDT4`YPj@U`Lo ziMQRYjI$Sx@7?Kgk*oh{T2jHpHcYW#VqyL#cQkQtaLeeW?m2StC{k^L*^5xJr;mEh zKxzvY8Ls2lQjx6>(X$1i-GzzAA{O>1cKNI8r)daIx5sCxX z^j*2c!*ohQ&4G{k#aJqOY5s0Xk2WRaVTlXI1VX_py(g`iS9)aT0@+F^!OPRW7fXin zW_aZqhTID-h=PL4BFpm?#)mP|Ex9a$8CtOY0=VBqD!-S3c&(e#T)%eg0p=>6Ty%}z zI1^)lgW`gBsak0O-cdzgN zjC6XWOPl{l_hpiMWMG~sEyN=b1&1P8Jc4}I@>gc>UVg^Jz&C8qHzY1_WctHNgy$Yj zJ{y>bPF!*FkM+JWh-@<~DPsxJ>+7ymhz}@cq~P9*d}s~KTf>u!A|Ltk7cLgvEh{_{ z3a_xt>+4a_pwN^EA{R)*0<-VNR_C!}4V+uK1Row9xd2NXk*{2*AF1>w5R5-2;%+~| zBA-k|PB5V2W<4>+x+OhBBHZYhL74u<&?6fKADgkLhlL!e?Aman&oTrMnqS;bZ%5Js zJ=Jfba@r}TClVh%)yG)00;pnC>6C&bc5rG)Lq5e!6Am)Av>;BM$mmY-)|*^Q$oUzc z|HQ$a;ZuRU4$dZ?JiTXFI*~~0xju5_XB$=;C<@r1}Y(oa} z97}^tW;!MTl8tLuYTLNSClSk%Mt^SNvx$zkx?@Y7Vkuf5JFZk_;pKWG1A&VoqU$+G z9*(WpKj#=}mKi5!RO%6n$FjJ3?wXif**8+1iA-nD@iqj@RI%s|7GRD0NCBKDBEY@7j;zObH!jsGgeA7=8w0Y`(80)bu_)lhU%$aiW8jS9 zFUT28`oNt;HsrfMdqxax?{ynX9pXlPkJs*>6GM_h-kXMR>teSb!AM1T{v|3m{bG)K zdhgCC#4e=68{G{1q6~`$-|63E*fWUcxU(4lfjtB3CSno$^DZP+9UIhe1&hj?0a|>dK2GFwck0XhA&fCI?kLwLg*_p;tR8XV?@Tt>q>SPg2#5muA+pv z2RF9>vp`J0un@d}DI!|wh`7fqXS5pQ1Kw4BtFo9Kg;wQ@Pq3qS=VM0bn}(M-af_Tz zp|_}Yi1L-Pk=Q(ZFnS&)JHbAqLv45PF0E)nX@!_kl`#%xnFzf5f{voVD_-OPJ*SJn zLVUm`mXA57F~E`-qYpXb+b4gxZXdB^$R2#g){;M&dMkW=UZNR$C*}&2vM@7UgHpbo z!i_Ygl|@h!I8tI<;Zp_}|Gp)$TtcUxE1#=JCadf4$@))- zYmu_yqSPm0NoNtBgwOKRoP-7zLT-#Zk7ka_qA_8`brY5lk_T$C*1+E^%2<2^LDin+ zTz9=m55l7M@VPKO*;sm8HrWMTN~4lu#GM>%Q{<5_X}GeTl9r5k2c%^0Har$?t!rjF z(t~%~tO*^zVW6t%daElGP4Qer9oe z^9FY|>^~+Zq@T|bNI7qWUW;Tp&91YFp_cQerQvwXqXSq%3LE0_o;hFoXsnypnaEju zc<$+f9P_Enjvt-(=s@EUTMj;L#KMvC-g-I0ZnH?!DKkNWSLLZF*1`&~a1i@^aYBQ_X6Sw(i9H}bkk@5li!N*2?X$P`3ix@1Z7MFY=Hy0pY} zNdmbl3J*ebZN6oT!O!rev{8%F<5X#u`0g!6OEybh%oG);k`iYW5EmpHf+-t1wDFwg z%;>H9V%@T$0;C6-aUC)vZU!9cEZy}g0+E6MC@`Bu%Bf^05%`R$+{pARnMY!lxmzE> z&1!aa!!oZ;y!3N_5X@`N55B--a1sHCkvG*Q%OrEEkES4Zs?Qfe_Du!CQo^R*znQvdB7GUY8kpTc1>O>I}ucFN>GhHn>g+ks@6 zOE}JXd<*5_T$V5R^ym${J>9;^`+-RaL+<9`aMs7mAVgnHr=lRf?c$tlV#rOX)avo(~66wrhT2kfw%u4!fAxui|-w>Mt z%N*yq!iv{lH^Yhn^uV^(!M5%U^LprabKD<6IPq=|qyHxP{yX(1x_AM<>pKiug%qb!IjxFO3D;AmDe9UDaqm_E(p(`Rl`!Fz3Y6BuLAik7mQ&E! zs@7f+43*3+RVl9slxm)>R8eo5#Y0oWKX@LdWN6eRc=6EGQ&((7*YXQpq$I@42dR?0rz%P+ynK+V>2s%~z;i(r^p?U$6X#7yhpS4G zNJ^vNc=}{yT53jhYPcf^tn1k5z`izZrHqltA}Yy19imDcN%>A6i&75c&Dqamw(=w_#+~6#2gc`=gvB%)Z|3#B4}rzpOltwpznAQOVMfh1IW8_oz=wA)IeWasdcoatTQnJ zV01tNjC;Y)_)tWZQsSN=%M8-IHkLOt342D+0Vb?2;CS2S2%Jy0eY`?d11XD2Y^_XU z2{vX6>X0Eq*`yYZcIHf<&=t=jC==H;H#%uWd1KK~V; zpo3eGRo;!^oDt;vOuT5RkWiPkR;M<5R_z}L<}ES@&n_QLXs=ydaQW!@k5BNwkR2Qg zfC#oa78327E|F=meDxOyi~C03amneab4l{#x)#LOEkKr6*K=H4I(8t|sC!xX`{|{9 zX^-h);MdE7V_S|s=t={=EPTREUrlV{U{c&de_h(&m{&y*N1r{rq<0{f1zP?Md=C-kPk^B1M z_y~V_S-32S@4x^V7ynZ)vXT<60+UQp_2dbHZiEjYmMoV3d-x*)E)kD|kF`>zbXm~K zipY`#1b`*HW%veijcdANOvnoWYY(FWPDf-7c8Mkik6u>5U_@fT5g#XStSdH# z7XDye^89>n-VIQkVZ!F&-)@&Ed9l%03*MQr>8|HfUZ9qQh#AU zx#&^k1$5lB0X*0IJ)L<17hn{+VY9<3AfVI?OrY*$36WO#${`EquaOSvrTBU%(Z^ts zXbn=DO6TKbzSM{Oe7NKvtyYUIGTdi`K)pBd5MNF(2E#!;Wi=feufG0GWTucn?YsTp zBf6`;5wLjS>^n&qyl~LIL(vE3tsHw$`=wzFj$r*JPH1^6plD&!B9v6gQ9{h&qlCbK zIb38TV4MEX^q!KxJMb2lz&~sXNpZLq@ucx4)jJ+zxf1U6y}doQroQ=SQEZCr^PN8C zXqScUk@M#^{d(KQU`{-;8tO3BTfEMl(YrDI#A?BMgMo6eLnb439a(Tay?+Ca;PzmT zuMz@v30+~zd~W_}z`CQWkraI(7Kym9=U4+ix}d+E7?0xJ6FSM69Nvp1Q~}&EriJjf zZj)b71iT8PG~A%9e|(CAJZILfWnRO&ADM%JWw0d;t3-kWi&y0>X_d2O5I}tAK;EtE zt~t7cd-TY-0xX1NBi7`O=l03gGDkqTo=nUq__*vl_BL!B2=h*N7@axS zxN=D@G};b(?Dl*+88mH6n9VzT8OcJT)UwLl$8Ax{3n7{Q+wxBgbpq8%((`3@-XIo8zNE+j;-kOyWlx|XN} z&H0>eSun3+TW-nq87KeeU|7UJ#lFU6gpDc$Q+SP$f+ay9Z>R_wSWeOZn-D83PT=nc zlyu?{K|L==hCg%$bg6LUrOy^2U;|UP zoa-DjhLQ6f>5+cHMkAEqx-hhT@=&am%O&{#%L3#OB8w_uKXiD)r#s=% z*j3*$bXQS<4h`<8!b2Qhu0&vfAKUCd8KgtX&BFr?DJ`La;U|j#10q1+zwG&r%M|p7 zBo;(oMH>ic4HX&aI-zxiF~cGyZdJ6_7ONdJn_RUB1A$%)%QIr1!HNk%U{o`gM5Cmr z0!fasc!@3pXRj(bJ1(mW|9%qtsEE=xuoFU>J>I1;Fnt9p%*6#Ex;K2E&Hi{VDZCG= zgy%*!;Z`DOm2}X2FfGc4i}jEK7OnwDHdq`Xbg}j08YEZGGWI|^560B(ZF~&4vy66JS;#W86jh2B54Y#f;kBB zi6lM;k^?82!RapJ=*|(&>&Gc+Y#oSHl5S%PuNRrz2wx_chcW}s&mMV&X;5?(2?!ux zuo8nFx}yt7z={YtrTvJiB4PRO5QU1kpQFn*TsdsEhoEHmm1rGA$p)D}R%-ZfAk7S| zo$&BE%fZs4>oCsbh`-dxvnClp!s^i)<2NGKr z|C1M$u!lprF+m~3=3ysf#CJO+0AJ5?`Zs{9zy9VM(jRb%3s;~!EizS2ai)k?hOlj1 zed3$e4&IPm-|2e3TMWwJfH2VSG1VHBOsb}k^*MKh>Bdz95-UYzdX|l72(?gau)Dj9 zE3hDV_>~P=5g9)q>X`6gkDub*DNgB$`bMcuff(ZEi{`UuW%S=fM}vorxmJgiX{>DI zxUO?YiUSm3d;!`(;aD8_TU+GlAWhS+10OCFaF?P+F=0(a1fKXt<{CA5ZOHxMXF?;0 zTjZyw=$`|xI3NS(RN!ek6aw26At2|#P?!YH4@EnnawCl(xgbaq%A0|{jF$AlvRXn^i6uG z5LV$1CPG-^#Ve8A6a?HW+LX*yLa5>^b|9UQQW1w4k%%iS0_VY1Ox`0s3V0B)MXl-> zp-)HhRYBG?0PGl; zLsErP2Ba{LCyJ%MG5`!lcZi)1WYg8V87 zub2}#c?DOvby$JWim8ReMArDpCn~eL#>lxf=r<<0?wD0>{k8llztlRFfEf`jGX%%I zq0zq~@Aufn;Xo~y;??N5rhm_6Q~dUr7~7J9*H~O3KaN18_%w%H`i($TUcFw!7MC1M-B0t87ed`odpUmxu6w(3n%13xud&6oRCp!|Oa3g~|p0obkd%d2X> z%PU$9T2@IG7`$Ll!jdrMNW>T(EBYLyTg;m(2Gg zD{Uq@R(EQ7}# zcVdUC9X^)mwHQ-BLSnuZS?nIX z2#u%F-|D5Huy>NpDI>7#fI^R1o&*P>fMS=$6`L^CN&8C#cp9?|0gVjnp)Gonn8Kzj zoNvV>d?T%f1W`s}tg)$u?_w4hfg}Ss5F{ByMH!$^@T44D3B@d2k|>oG5mZ7nTI~7+ zz5=KiBu7NeQPP5gtcY$V-2ffOKdl{nXeC61DjAqLz^A9kB6hr8%Ya2&DHEd-YsVS; zSQN4#jJRcmE)5DffSiHLX1=f=3l$fWufz?3Ii+4Ux-H9&t%4ELUN z3kNOoB;g@Yn)e-h0AR*A100r-ZVyn=*LJ|dfC$v4hitH*1^-o{_}S&7%ST)6P|auw znLFOIYm6<7V;Z9zK84Rp@B=ywesqaGkUaKvyL)RIcO|i-;K9;+h84bY$WNLGjr_E9 zlG};1Yf^?6hHlA4+<(3Vccb0BXs!)zpdeY5ws>~Pk~hueG0BvF3vPjb)wECKstpyxq6#hA>YyK=h*ducqy)n* zFGAtC&nSBrd`x?~TNLOa8x5!ZqO%WQ^6^a=j$KkSf=V{fHDcTWDZEtqn@l%eG}OJ| z68zUDs~%clSxgJq_!Qh&mcp|>h66J~a+95^Lsp&Zq18I=@4xJxH-5?urpdzSV;%&@ zUD?DLQ#fkdjGm)9mKExl^YfxD!QL5sw4Rr_H7*r6MkBqO3|{y?f=;OQ6g_!DDs1Bl zbhZA?C7BehdGk;b(B}NqR z{_u z;3i)*aYmPR(B-%hYmia8~d0WH0>N#Ow z+uIBQF^fR>+yuBFoTNa*TQ9m~;ZDh5*PoKneDbmvHpnzuNX~a8 zCo#oZuQtjh_FX17kgl!6V&@eoNnT#GoN?^jtyu~Xgi~q?X11HDx4vHDsMBg zVIpmJzC#S__*3_4Vp(upp~b-?KF|2T|6Ve!>%i`yV8zg-NTCh~ znMxJ_Z^DH(AxZqy7Eu;6JZI^H0|s6~k(+H8ymYnwP2j@!jbcp-WKi`w?t#arZwdv< zUVP*5{XLM)^8$THn%n&x!l7DilBB&-s8B%Hi{DpBw{&w!;;h;VTsZeusRX7x(g)Ha zSNdXU6;X@A&~ce5D=MF!J%cqXIi9AtrDb@`WxJ*2@k^6eE~j3i5jP&+Ilas2W&0zg zh7w7;5}GoS$YsRXPm1#riJg$)!huxA3ZWHXZ0V7sEp?wHOAGxPi-Ld}Y>CICe1yxs z(P(4|kmB)($tE6OzN*LxV1!0%(YxDd-RuY<{CkKM6>5%Q)yf@f(T?BR05S=St?FFM z)p?M`gmq7Q2lHQQDtDP|KE&*N**)8Uq{;@Vfie$r43C&LA-eRlamn;up-240cEMnV zD8Aru5@{%c8{s>Ts30bIF_R-5JYN=mC@O1&=Q?(*`vHI9*mPmgO)9L8J9CUi7#XJH zN_ekC2lc^mZ_uHQPF?5P#l1!+s*-1-J{+E+W5B23P5-*+1g^AJgn$S}?)Gm^;A&_Esn(MZ`fk z_Mi&z8N9A=Sh zx1tlcKjr-KhiL+d?Xa1rcal#@cyq+$LQ#Z<0z|Fg5n_h$dSK8FFzohvu5oMX%#gAa zRu#iaBe^Bzk+E?10;?&Re+pMvAtlP4ZOK{+(o&nTDj-TedNpEEOh||94K_N}{CzaWHyRvi;F?pw$ z@|wg`kNP4or#!lLp(_2Be=G{~zp|olW?m2_-a^!_RWaeru0r)i;;g59qnLVHn^peA zu<#B0C*Vux;2|p?W{J-%iZQ7Dcn)cz@(4siAnkc7Y4 zf(cLQnc-W&Qzj&8T~2{HEfJ}#MQ-@{Bp_8;AcQyG+Y*`ut{Ok5c-e$du=hShb5SB_T{njtz{dfe1J zAN|B{h~Qy&>kKi=^=zp&3=>>jfpFW9RW`xorTD_-X{e|7kh{osAQIN?9uzF7}*UO*S_b=bD&t4ug)W3Sc zN?si>bi8`a=HS&Kf5nmb>V$##>gNOY6_CJ?8h1Z z@qxAThL7USFKlfc?XpgfIHHc;um+FLSmmR0HqxUD{^LFW!5cj03+Q;Cy*hry7SJ)r z*zqyz>-dEAe#}?EF`vp~KD)>7`Hv6$tADelaLkwQ@h@!8obcXH_*OYNWDTCYWuKp% zvae3gJobYxySK;e)#)x#F&)4|{|M8L6`Grl&#cS64 z#ZT<3i(@ty7o37zoUz4r!P~ju>*wMZ_SL)H1ODSR`|;}E><1s|yYnIY@$nt|!9Rb0 zz`%IVJAMD|J^k_FoWb+&U51~3@3A`n=Ggf6TmI^l{rJe|>*E2d^O3LBUpRVy;mhxr z4`+<2aPp3#?w>JnL&bvl*CiyeiGaHjM#?3&6y_Ro)`)ng;;Z4+c%t-02w(y)CFE8; zJaYZ&T@#HYJ2V-fASYMRSB_;lcVL0V#u3;LG6_|K=ZIBRcv(%&s&EZ{ock`sH@%zY z&b(CCVvUxmP(-1EzdxXpgAYfCCkOZ!{Z5pP=(WywL=Z+uw+z=W;;+PrMevT!k20-@ zobRHrGaPlt*IkmLj3}oOxe?p;;7W`{-F-?5>9GtV)Hi5B=zOuw-@SbK@@de(9W?PFv=00i}OMaZ6Ae2dc)u#NUox@)a98M>;dl2%h7C8afUBN)?|Wc*|~@ z*gX>|f{P_K34J3dWdW_O8t{Klr-ycVO$R3gs_IdT%Rx+bPD)3(d_e^sP4 zNnWXW^W;pGkWCG1!oaS0%J3D63;@JtIRTai(i{IYoOtDqbI`yT{jkMtj zFdhd#6+>b3Eq^h}c*nKpxX)#OlXK71|zTCJ%$W zj!j%NTZT#sAFde7=p~vzDAIXlS;b!?1!VC_LI zf%s=(vIu1=EM6@s_Z17d8nexUv{xyWBykp{OkMcwFw{L_6Nq2^8c+BHXo}nmeWJ!JG)L4HJ-vw2 zN^@h7+k+ytN`2?irX)KK{t473!J)uK!n-)5RkV_@8{3TewlH0QAnY*@_fNl9EZ5`M&! zOfut7&`Uu#bg~&k2ikg4X!^1t%~r)rQnX=m3-2{3Xk?E zxok&bkueZ5K8<=^UrJHS3`lSvjaPYQhG(1HFr&ctAQ_%cW5uC_Z$x)mBRy4nW;7qJnbwDO{p9_k- zq`=bL%Zx4I7;N*knjFR_zH~8Zj;>pAqbv5a6%e#A7!Zqr0yj{aR5K~)k61+=awqhL z>T9B-5sgA3%m!Tq|Mg!;Rs5Z}R3*P7Xq3fzLAxjWs2DPHbaeRU09`)%zUY7Ux4g?o z=+L1>$?cii9{k5dENp#2`FE1RnV-a{R`7!evJ6k=NJ6S1(dXXgDm5NVy!?2RMLX zQ_~|JEQbfkq0w;$PM~?yZ%n;lbYc1OTL~!RC5~7o^yix;+>H8wh?%7 z(c6d%XRPw9$?&|Phfd-ednYAzyaVe#${$X3&$}ZLAWG7q6YpipLAqmB1EM~15F=4- z*j%t7@_fs`#tzt}_%Zww5%sqO!beWuQE1N%ADuar)+&9|$yX^LN{kib|2yg_7M@UP zkoris`_$2lodXlnjnM-+5~EqovIrySjxWO5niYUtRFfgX<1Gf#g(z+R%CY`wE1+8H z_l(EFRKLZCBwij85%p(@xe=$9BADE+LRDITsff5=s!FNoFALQwP3qfdL{t7rp-YKD zz%WW^;E2IVimQ05@i3D2MQf;xMx_cog{!IqO=*>KG;|0PCW%cn59~lS8FbN-7bJph z&~{Azk7ja8bVyZ1jEHputtN-=QAB_EmC?IHXyTI?3voy^v_TwdV1I&a=nf;^j`1Ug zD$!I%l(JZ$+gLaG8i=4tjCd-=24a4y9$pmGqICA2smPNPLzUK47z#5yG@H$+cP8vu z6rR-MXLr2KdZt5F`=Ru3O5fkJRF9X17bZ)zPAW?$_OKyx%a0`=FSEJBuqHi`29F6% zLjcNKaz&Kc_O4JBp2bgRrE-LLE2tbMqa}vrZkQfE6ju=b8>$?_dO!@rr>Al}+Xz`? zbSmHx!CqshP>})`d6=ib#+^y7fHeph5-E(d=BZ&fmYwg69+smGo5@jcUA99K!f|rq$>SKXPv!$8DaJ#NZ5W8lG8N`) zk!dg@y2)^hf|jz~ZU^z{c?A*Uq%slE!ph*0A;$kyw=C#Cvs*5gU&d3%3NleV(pzMZ z#P$Dx{$_#Q_L=jT5ZDsP9*M#2kvNKBHtzXOxuM3D0Kjj7r67yba`k9yIW(cfp{(zx zVTj>`VTj@@ke&Hynul;F{Ypa=Ur1AeyCnh7`Lf{A^oRo!m?(!ndhwR{0X-)2LbIj# z=WZacmH+&+Y zMS@Q5B3>3@i3{ zA7UrXS2e{IS*D4LC6qBF#GzQAFKIrb+N2q;tNF1`oKCVn;I4vXC?IYaVWMKH(}q{T z$l>2Wz6xqWWBhk`EMseX#8<6K39Z&*(FGe-V`C#s)h{ZKT@TF^&SIdy`8gZ`@&=@z-#v5n=LId0~P|1AoX@ zAO0Cgqj_5pj&6J=C4@nn|4pvC^uE!>v<23gM?nWU<<}F(N0dkm7*>O`18)#=Y;lf7 z((Qzg#He5^B>FP6oZm^uu3)~%XN2R?_d~_|S!W9x$syJSJc5oxkjHo~uB5dM`wDO) zC~YO{2_f2Pr7Y-(zu{Qql9{q~>fI8vZp15@P8GSl;qnK)@TxQMg8~zZ9|7LkRH2|C zGL@>?mgg#LCd~g0hy3YQ>^##-N1xYnL76BipSmhJHxoZ-%L1(wpg?7;7U9F}_ztO! zqX9VoBDQ}r5(T!`kOMq;%*+}xSJII3Cobc|ieQ;PAR#LG!E#A3Z_O=STgoo+ zs|E>Ei*T<4O?PPo^)RvWOJk&yGbEfSuh>~~1etKQgn=@xU@XIQFiM(hEq<>gTrQyC zc0o!VE#{pL6%Qe=hk%npLdNKAlKe?R>f}hJWOH1WJujk~;wJ`CJ6{X~G82mj6du05 zqe(u1e#+XEsOlw%@p$>@-kDrJVtKq-bfjm`X#0s7Cge1gsx)M^-MuKfFHvwnAMtPsp;j^(_M{s@Sg}8lb3Dy$0w?7y@nVo^+9;KqX=yV5 z*D%BrG#0F@*1 zB{MOQSO7mz4z_}07_~+jn0-HHGR*3NE+KdbFK9_!9@Z$ za-l0FdOjDA=Ps=Xhx1R;K}J5>hWBd3a)Puaj5CxgKob%P(Me8l{kVIe>jBMuwv6Oc`AoEnh>4vBMIP z7WSNXZ*VnhbX@RW+R%u_8-Wu_oCq=dXV$3Svt%I~v9C&0BTxNqXflr{r~-GzTB#*qS=7?BgnS;+EZKoMMAnTa`1Icj~h*o|2LD14;RN-R_ zCbvH{`Zqo2a}kfUM7k)E?@9!pLD~;qohZtpb;+Q``j_-_g&A>SLOvPUjJ9%M@B)`d z2+jTQ17a66!aI#GJ4S*-k4d&Br3J;ulengM1#wxyc*t<*$f0rdI%8#2&qw{~0>zz- zlThb}e*{2L(xnrM2K&t+aa72OIAHs~!cS0Y>8!_p-WT=ofF;_>adl<1>qLcR7+HuQ zi>W;mFvS(Z5}KqXl8Go^-aJZR;kZhUg5bBn!tBHIrzi=o3j>FSB7xZhbc%$TSfQp; z=5RUXAvAcVh%c>7Gl&dDl5&xwD3!{X+KA09@UOsbfV5(bgR)!%n-MW_{ZFYrk%tR- zHV1LiOmOFA;?7IN9Z_W{u?IA302Ue2g5To$B4G~%J+c1jQuKvmVZ*iCZA_ z*$bxuJYj^XfSpLjo_i{uGN@zI5xN8ekBtuQ^3etH(81@Ti8UY~_z=j=M<6qisk<|= zn4=uyBi?E5nc|x<61A2QIa%B#uQExSH|p}ZyfLAZG!cwi)roL=3s9a!_Y#Ofl4MHg zKaT;+6)$PDFh)QIkp=!u(B#f|;th)ep27n``VI(BK*?(Qn3=)fTmW+6y#E*2iGrCZ zH6{&U!X?4)zZusQ`ik8qK+8}4(@{U3Ic^3GJ)ZP4W8~aY&l~iX=zVfU zt)J^ZyuL`U&}l?9G)dqusdK9gdB63SkRnZCtDzBXkTCopz2l`FjgJxPgJ8bNC*1r0 zHcWIEE*%s^kRa+(rraC){@Ck0d2(6!A%OCS%fb`W9vGi@`q$=v<7M>>zr{$v<^QGk z`_HBgM$ck&cS#HXfWSCUgdy@Qj!|VvY(#++A5~SES1uSuupvFd;NhRRtIJ2!0i2YQ zL*OHJiOEZ_6#IxOxkw3hsq4U%0r#c5BL7`Jdj8`R+RbwgZ@4Fg*xo{^W5ZsRv|4{% zTTV~6n5#YWWZDT_{lkb3Ax{vp|6Mph`Kg$3W$2ib7(~t`=Fudt&vi#qp5=EdHQ5zTL0qiFTT+qLh^}>@N@CeB*mUn zz?(2KEGG^oWL+dirsU(2BU4su%Lt}-8i1o1RUFo^dSZ}DcDCHcLL3C8NDY4o(?$Y{ zRyyTYr@oYMf#L#`2TqQ_=K+{WOVM?RYp-&qszQvwY8h#@POZA6@UH?Kim|X)$%~Fu zNM3SP)sm}JRy>d>oV;rCVw+$Rib-Eal-_W3Z8Ew#MBCJs5=`{PGhp;Y5FCfTH&V(1g{BNDLEFcb;7d7ZITtevDqyfbNr9(`m3m$DQ zImC51G`s-IK=*2mCGDk@p~+CPiisrsJTb;_DDE|hxQB<*S`v{ zKIc$G#OI?OS!yldLse}lBLG-bvmwJss-a!>m^h@=4J3`K3>yf-;4dYRdd8^4?L!Ba zx_!t;iJPZgh>1kiC5c4o!{Qrm6+kvlPHc2b3JV-9G&l=sofRpm<<^ppsUM7Ql^2lmBs;lNB@nF03!l|tEdm83e8m;AK4Ux!0Y)A7c5V86~dXY zYwqZbCX-<$qpUAQs!3j55hz*3L^Ay0@Dv?8wn^biJB88-(mIfVWZqRa9Wj$&R87v) zZ=XE=u2#nXq1~g4gEMro`{L*T{RS~Lv4r;rT3JKq2N&pHo_=c#x_z(Pw@mmR{(FZ0^{+lYW$Jw& zBBvTYe+fgBK3CRyh9>@1i&Wk_JJ`KAkkFP7OjP_9q2IuF;5V?mgno)zrM!hs-d-Rw zLGZrs8YB$QZwPLviKd<>feq@6oPl{|8iPD_y1o0byBh8-R@1q&4L74s5McE;1Q!fi zSfzlE^H78OiA6>hYlqe%E^_&*f^|ezO>^*>g4I&I^c^3(Cr22xfzdZdx>eL#rG}!W zN0KQ3RwF|UYTP=L{t)h%$b@!nM}VxQf{fgyKm=LJx3j9d1|&MdI0j2giUfy5Y3{;2 z)7egjDhD_tzw0~Qp3!v;2tI6DWDTXG1wI-~jI4U6XNSkTXCHxXAXKEwd<$McL9jZC z{MXjETbRL;m^*x(JLL|XK7vhZPstY?Uwevo`w$5s-Pgfmh z6(^dJ%`cGbrx2_dl~14unM6I|yD4aR zLJNx{*||vcW{~6u61)}?JSNERM$oRL7arvEP9=kwRHoB$+F1l>WoHj`EV_%;bSp2N znw~B#hz_|RnnL8bELs#+TsJ)mA$g!lYZ42+VO+i$!@LmJfL!D%$cG~|@imi*$VQ8i z3t?4fk_@44jBFg9oFANBpu>}kx3S9acaPrT{)&ZthR^V&a0vvdbemxEQmYB2G?i|> zLanl*+EiQbnRXs!x1c9g0U;@S&wbq<1cohTl2V%HC~nh)-|Ett()==Id(dM(ZLNUY z1yN(Xpk6xeNY6o!!>a42$RR8bGOly^b z;$m8x&Bmti<98TaXuQ)iuhCx+fODG#heVZf`TM^S+OZw#>Vf{(mvh&czkejfp+)bAMPFe_yjkDU(&hlTe|1rJ~_PHTLl-fS=?0(`vM)=8uXvC&x7&fR-gC-2ASM-+IV?Q>c68N zC$Cc_RhV7{oxp(NT{d|;(~pq`0!$p&69!N^So?5PUL;_+J&0!s*eChk0Mg)A3%}f& z8DzGB7mP?1ynWJB*LLOxb|vU#;O4~clVHU@A^=z+03KZw9&qrwnpoBo%+h?~&|(?n(#W}@j$acag$Ago!e6K8qb|?POaZOmN=OhV{S?EvxHP~AhjJ?GY# zvgyW-1aq6V&bL}u{4dxcQ+Lq}yJ*NA>^|wk2n=H(jV}xSwt)W%?O{d4b1Fca5}>of znOA_B3bfWvLk5jyd`HbWz!ZsC*R&x%#=x5&*0#8$W}ojoRF=U-{w>7qUkg8BR%K&` zzyzj<4rkx6FbQz)u~dQ?{T?t1v%i`%#ijktxjw=y7>NfSauho_J3Ya;!8J~)3pRLa z<9CGZI(Igt4)41L%jSkZMBe23nt7HHM{Nkt0cKjEV8YM)7GD4J45|+6{4uMb+z}cqYbkOCaSBB$WoBHJ=lK;iLdK%P$A;B&g ze+~m{h7j;TjreRvD}2L}XCr;$J4vm4BOO$=IvneG+dFIq@<55cGe_Wfpxb_8R}zG% zEDnQ8eGI1{@NHx9$I{0h{+|CLZAj-&h@_=DW6G^^JO|xZq~5;?Dh{<08dmWCSMmSX z@c-BG|2HBZN0A#J#tzM&yDj&g4QS*$68l!fNRI}yMPX6^nLuX0^BxxKZceP>_@k2LWsiQaBd`~cS?1%J>K z8kf|At2=Q*U~r>79kb%D%TlRa7MKiBpcOu)K}{lvdT>yskdxHcoE=bzUD_x~j@5c-OUdxgOCuw5WXtQoT2d)8d{zGs8-ky8qk-2 zP>#t-xUOOM z@56+;;rCY~zl)inaUX*08dnr#Qvb&%CO_>Io(A8ELln@qLqZ$9y($J{+VrqM1;GdwH z!?cUYyFJ&?Zzx@W3|)kqQHb_{Z3RPfNWv@nJ_u+#{mO^y5#74e?>)FUxV+?_ z5k*~4zf0H~X8CsaXfr^#1CEZTNa`a9)J7wF z-g$HjQwB}dnIJtsC%cZ;lxOxw+%gYbEKVqdYjyf`CdqMY0Ez%QN=gR#%#&V!cqU9T zC=Q`Nfuh2`_kRS%A`lDOu)L>WQ^WhD4^!W=p;lYp(+)!VO}p~-&rDmemDm+2bwx}` zp(F`;|qj&^Wwumgopp_24H z{t-YP+*hz>DSE=C+Q6GKwoN0*5Ze%25!fSNvJLEfsXxDtb(ECn>1$3($5X(&7pQ zcpFiKbH6$~`+7(q+32ZyU?-{V@HsmQlt6?3gi|ocp9VMq`z$Fk+o1~LBhhir zQiBWbkg-auT@q@GTS*LBHQZM&tkk>%&K%}7G)D*8H9muud)n~^ON*$*@0hloW+0Pc z;oBn#c!_sYZG{?yTqAR7Z!?cAN_2xQLTv}0AF|yY-v*{M6n>$|KoB}MWBY>iA8hcM z2zntBBTAMGQ*Zu`@$uWWA1?kLF8&sN@%P%WZVkB4fJ?Q@N4uciBKK=pzT4j5tH5ly zH|%ndw?Y3@GPcp(80AV7%{<&?d9TZ!_qS|;-;pHqJE^(W*J*=99u!7uade8X?fu5c`$qPf|mMpVPR^n92+0t?6>- zMaJpJWALu*Eo@=67o_5bwiIvL7hvi|{~BrRn>jds#guP=3o%r+t;bON^mwbp(_>XT zIOv16k@{@!TGOw}^sQTjFTz6J*rgl0bYqup?9%xmHg@U8F5TFr8@qI4mnL5uyL4lh zuEZ|A%6H6szs-y0#wb0fQM$1P;~I@MxUmK|*5Jk(+*pH~7tN38MKf4Yo$l_DU{qa! zK^KgH2v^6+77?d(Vz)}TKK282nLwum$Q;!gKYQjN^5u{Mtm8x<;lekZpvz$p4c#F5 z`F#sSr#K4G%_Q`K_pM(PpWs#lIu(3HOuNC`1KJDjo;yP{gm!v4PD^3$Kutm)+qU0q@`X`&;p+`?ZjFC}1I>>#1?nMqZ zRp2i}F9hEIHJrv*7ng59vO~MsIU?d6+=6gJ6H*6_3UfV3)d2>V8-M6x7s*5ZxJs9W ziP(nN@6T7B=fpD*Cb~|$`=mX1@=I3buBXA3^^SLXbmJf@HA{b>`#d-=B+)D$G7o~p zBgMVW76!TV5F>Vj(qZ=)$}fHfX9piT_L3=Rh*3kc7_oIP`38*e z{>TeQ=uZZcIG8b^4qVVCbD#ODXq$fW!w}!|Ax=Fyc(BF~4(eLH1x4BlVr^xsSVYcpeZM7gG1IQbS2I)G!pf$ z+PkW7-OuF`9H6T0ytO8Dt7eu%2@kLW6?`=gn+7Lv6i6ZNucfL*Je2 zc$VNgXGj2Zzkz|$k#3-7#46A zh@%gvty}LKP~d%Y;~{zd1~(erco+(y21&lW;av#UNeJ(KkEHqJn>c!KgXsfaA~$?M z%QQ~=mv-!a``&$m)(v*6G_`md()B0CtMSA`7d|pRn8A-TpCk;x#pv81DcikCmjprFcyUZ}-S{Eb&hAm#5Z=wWKI>m! z>*Y6mB{bC@5Qo%OGe8n|0u!DfvCzZ#pi_uysU?jeCcB^&V=H3$X@bo#GOUOS&W)R+(2 z3?;t$F$3AA<3@A)=?=|1+xvdvjNK9L1I;-q0uMGyK73p}L`#A?9i_c8e(B_S{`T7j36c2m3^9Fh%DXkB>Ng84#^0xCEqfs%$WT%V-~c z@4LefyzxI1Y|+MXPH+L#b&x1Xw+jY?YGH)r!3`++ft5Jeq@CY#2++Zh+t^C|zO@Vg z{pCq!P~qgXqCuJ#20SYta(c_T)`m1S*UHSj#Re}fy<2hxfCF?w!y#O}a<0EWbxuxC z-W^|GTv8=m=@G?T+icOxZaMprd`l#^7w1RU?=DYa3^ZTjx6f#aFb>67vNi+-3Az!2 z{CSHLQ>DnuZDws%IHtEp=g#@XQ??*zK&Ph`t3kF?*bispffuW1+=!=sQz@k7>;gdL z|G|rs)9a(N*H_#^Y&h3P|3`P#*~PhYbbf+` zIZ1hWe0=c^mU6(*P|Er3>pPE1=|G{es7hIe!>Ond4@dxx>~<>4lWN`wa|0?(dZQo`{ zH@?N*TCE`%K+pk2AOsYvVF(&@5(peiyoi4dl9>5Zp(;EuR-Mxti0i{PObPcDA}Wy{Q-6L z&*=pgokqdB$MR=V4HEj@;XwHY*>5>(?pxr^hr$A2b}j2x3);v{%&Qra=s|iG+l8#6 zN;_`avdDzY$io@q`cN6|M$??VvCL3T&`lB+8K=AB2Q$hFtcGLeq`Vq9&B%$Btcv`0 zqCOVXz$}|3PH#DxW{K~Xt_ZfwYn{$*rba8c#$?KH^cQ~T0}m@FH9#Wr|hB<|3dL(OKS4sMX&SDb@8N#$GA zaGKFlLRW121$JSK>E1wp`bjeLu)gv)P%0s25__o2f4eF925y3-fh_+dY|V7c+H}YK zGH?!t*{IM@>bL(jcI5%3Z_)ACAig}nqyUq)Dpl?i?j2!nnabzPM8Y`p1z4SR>04?b z2e$xXy`~1&)XXG3VgO6b*!|#vLo1rp)Wvb?PXlk`-VHXustJzW069pekmVXXB@V#< z(!pO-U*l&3;*?2kImCG|T|>0Q#AZSh(6|29hQ|Mww0a1}peKLB9kT+|F#XJ&{8|~m zfN!~`d#q{RqH0}xtMiv{xTC|k8eod1;(yWqBXl}XJDmcQ@V;qb8x}vg-QwAW+GS=q zyLIw&oeqb8v4?hT>_ZB2@6$I9|KzVr)?r!eqn+g){VeDEQ%roB&bifi9~PThp^D1d z%9aKjTt9_R2T?S|E@*KSpqpXn1#~@>##M$)X%j0{(pp(_t;)96w00hr8eQ3EVHYv$ zt29^KO}fqR)?rY>?KykLq;h&@O$x5-U`5rHabtZ$^V`F`MWUC ztRHmQy|_MlO(&0k;_@~8kN1ogx|O_KP_JFqE9oP1c;;N`xqU!9;>C?1^ngy}lmBGf z2PPWPmp=LobS{`;fM@Urb=X8z!M;Yk&Be}WMbaTJ(Xz*Q0GmGEMgJdj&#C#f65c8E zWG@2|o;>$R@MF3H+2cPXED$!D^E{BQkt%ZQXz6W_xC$`Y2D(jEfT$5FsGVPkHz(Z< zkgu9vzmBd?4HrDMSEfn?rk%Wa^DL2Mt3vPFynKsf5&Y)v8a||6@;NbND!+YeQLy0{>On?ydBOzrb3|zb|r_#q=nM8_UD-xSq>u4*4 z-f-bo=!Yii%G^;`@PC>>4}au94=DvO#(H25@uFwal0rU+fgF@^9OezAm|I7l+x3gbBF$H?#9 zCh9>G^`MD*z!&Ad%oFvXPp(6?2S2cnE>Ij8q1xC2eAI;U6D1S2bQ{haS%9Fhg2)0d zXAfwnrYdidHx%ooXm~+rZL|%=9|WRvxepyn^eJ# zQD<$^1TSFwX)*;j#viEBWD0IF1vi<371f$d!TNTZOu_4J9BNE5jY+04$uuUJ#w632 zWEzvqmtvAx>Eo3zKO1Rdk6D2|rm=%Gc96yn(%3;Bl^vw9csz<{EG!cEs*_}v4r2^) zuIxh@Gw3qGc2^S8m;>SvKgIfZu4d5cu zDr3Fo1B6TCph-C8R@iQ6vz#SN6Qc{)Dn~}gfm8Y6{*7yrqgur+7Di&_u6sqHSk?17 zz=yg&jFM^bw9?ST9DE-Oc0hdKCX*|~dI3cNUdb$e?t;rD#cS4{E|z2!&Li4wgq9(e zpG;YzE&N>yXP3oJEE@ik|ERW0Iyulu@$#x$g+RZ*7xfP_tnM31N_2@EGIdASP0<~p zujPhGS`+#-?dIS0o4Uz>9I7%Pvn)3S0hlWdzD(DM24fY%f3sb!3<54Fbh+)9)}jgk zMot3sGva>WTP33?^AVJ7H9gUhll_dEV4`!KVXC1gnmhwMu}RahYKEU3J{?+Y6gixT z4T3S?e8pWp>4DsDT8*IjyND%TjFPCmz68acEk3vhBNAj2ltlyU0!ttQy=YL;(k~`V^S&iITJuU!$bok>3qmy+W@a=3MeA5em>2NrT^i1pukPZ z**O%?4n6ja*s(z3oK5w;l(9@Uq!K%-X!vCPa}mq&$QQ>aZ9JDb;~SPLjKAROIbd3L$NSn(SeN?POUf>BcbP|Iz63a>GH0LnzRfR zrKv~zSi@S-1^AwxA734x<(o(UUzD=UfNtfknyp?DK#EnoK8l*Y-;54wnqyw4Zt zM##qa*8jBsc}`+;X1=AW__h;xC&~1p%l3~|Eqe}U$m|MOq^_~;6H+_)MS(*jS-!M)n3ALy9pQj3D4mutn~#}I0Mr) zZ+wEq=IRJzPg^hV5X{MHYG2^@)TQT6UvU)-iMhTnbmkP$E3Hp$5y!? zGeKbme#}?sc=3+RDIaU;EIUmU{>HEqHc|MSDEv(n{w4~46NUeg+1@m5{qdskH&(#L z3fNcy8!KQaf~WNxD_~;L;2 zEwSzv&&JN!*clr;BmSqcGd6a{#?A=;G=b=Jv>(_>bgt-Z#0(-?1f z@U(toylIR#jq#>2-ZaLW%0fk!H`%08R~duNmu{wM3^J=V$ZU81LR4<4iD3?N%p^*H zUKmUBcLR3(+)-b%baw%zp{Rti~qAt;xEGw{~qW0h)MD@_k zjtJQnjiVymv;k9oLRJ41Y&hL{WgMXVRv*p0#^Tsm92<*cV{vROj*Z1}=@!SMAy#rF zsmW0w(1m74Dd4HW>ewY;8>?eub!-Bju8n1~33xha0-iPjPn&?Jf82nljfuK3Q8y;) z#zftisOipbOw^2RG$!iCMBSLER~N_BXtDkyM=@v>~6Z>;D4)mYCP>v>~6uhV+oMC5&R5qTFdz009_dE5J*%J$wlXl(C|?Y#-j z8#bYNo6x*XXx=6??^@gD8;f{j5pOKwjYYh%h&LAT#vK+V#v0vNqno$fUy|L~NaW`;C|`gQJr_W_$@JQo zlbZn2YxGRJ2_Rjy^|%Qj{g`Z#m`&*|kqH3x@wQT=3gtQ7l9Pp&v`G%Y+{c+DSCJL8 zu|+nv$i^1g*diNSWMhluOB-7xp!nt5BImF`3bI!dM7ps()@6I7Sv`3{eua5Gl|~^i z@X>YcVP4A+t=^c28uL(N9$I_zP-6;eOhJ#!6eK4SU_pfImT*Z4Q;HU zO^nqh#_A(5el{^yg|?d*t4)m6=3QfBqik%Hjg7LgQ8qTp#zxuLC>tB)7igng-3!Mi z&T3DgcZyxl?nI7hFqPcNP8qnEEw zonKLlyv^-b=ky#G{PXl*SI%FbeeMt|IV(iuN1Hp&2FdbT%BG!e^1g+%rzboz4LzxYp5V*IEm?qKs)4O9Um$779iBXC5VonAGzj2jNP|$ZLegMI6xM_s zG=!iQLcp#WCNgm22VOt$lPM=UO#Nx#nJOX?Wr%=A-q0Vr0Rr0CRW&~gf<6McwQG-J zQVfYr<;I?Y5*k~&gS4P(`3YN@q+P3QWO_Fn4?@?s9p`L-26+d&SlUu4$S1S~?jj_= z8EJR~36_-TV`IH>lD=pmk)xFw9$-!V=b-zQQhYFu;ajd9>CeE|g9l{zG|Zr;Tc%(i zAakbZj?3Amg-MsRZ$o0$)am2&!AP41(YPN*ruL)Qzx6{Sp{MI+;Dxt+YtsA4pV$Kr zqcHKovnz4&q!}?uU9HSq6IKK5aGMz&M&pSaT8IS6&<*+zo*SD$(K*JNNXQ3g1&jWF zYT91Efd$uw^QvT*iZ~kEFm3kNqhNLto6vAQjv8CCKdwe;KFHOrm?6Fm+z@+1+B3zh z%K9+I45x-U*1;T;XcnWJ2O5CXl$tW9&^8o`L1Twr+e&0yR@^o9-8Hh|XgD*{Uc{zu zd};$N1hiw#1s4-L*5=(KwEMC5(T=@M&_N1|Sz)X5w1fX?mFJ!axR1|X(ba7nPxOVH zkGJI>n7G3aIBl!VUP$^@C?-)KTtuN+>zOKMmeS^GOCK^o#Rh9DJ{Iv>sff-@Tll$N z3|V4R1x%Ua1SJ?VS8Fcj%++58gXT=MCHXX8bIsT_k6OdE>)_gyJJ>Q2OV(R0o1{L| z*ku~+8a+v74wxqNIF}Y9yAmE06(DKPlpd`PP*00Y#8^1zWofcdd4AF?G*c0UhMTjQ z8e^#XDKAE&p|W*QSuccLlNTmiU4nOl1j)WP#>S8E-Ulk9qj4T6l_0tRqF*LD7kfiY zgef&nxa$L=yosH5h{R8}0u5ZtHt|qRKzE3g_a}EzXlyRJxdEe>6)c(nFHG>>HYgjt zAh5Wd;V}o1h4K_b`eug$KlJ)tE2y4v4F1%prW`@24S#4h7fvzvGihjN;WRe(IWf=H z#7z?LiZsE6-lx7TZ0x~F?w6^e(v7mZeY~Qx$%tGOHFtbJp57Ho4n)&xp)r1kwiv97JP%kN-Feli2|DEQ6vuKQskr#o`#p-YwcSsPls6Fxlwi$C?FG zL!bs8l0LiwFuaYdOy^lB13UPoS+~<7k*T%C-|Ha&XQG}$*d?NsgZY9wlGN*T4j`0Lw+8{1x(A0n8eplj+1bZom-Y^O+lRfKIRY%< ze|5=!S}puPsY(Xc3f-2nKH$>DxF8I74m(?iTYzD=+kM*Y9z5-Jdr!Lu`|7%KQ-9q) zI(~J!)$8<*c3!>OIexXhySIO^|LS;W|LEvt_hh%b)9D>-Z+BY^Uv7qa2Q7Xma@+U> zB+p=rKO-a!{ipl%x5+KcOzS5cc15#(Q0mqb=(qXbn;W7 ztf=CEn#dnHUow(c83oGoi$8Y7FFKNiUf$-9Z!T7r%;TJ*?l++xj|ZHLt2YcxWoW3YOW z41HT}J+|8SZZI=HLPWhMNuPw`wyZKCNT=0|6%hGHplGha8Z?Z+?q;Z=3H`9dM-2sr zjDq(L+3s#HagVAR>yex1v{&LP3<(^vRFuwO^l*DVET>m(Y! zg7s#F8P393TB-3_JK6}pDM}vIXfvEOqdne)pma5^D?va#N>p}n`Q}+m0xiF$%2BRz zJ*ya{c`d03?3^XZtj@D4BBB}f*)#0O0Uj0E*rkedtaQ;FtaQbfHV4-GU=4PFX58A3wHq;N>?$@z__n4JseIaot~g?x@DahVIp)e0_R!(h{J`FRWs4 zt6a^624`HkwV|Bw$`4qLUO!ztHXRlvpV;69rZ^es-UyEo~;qc9?&pO3HD%N4~`HV2~roU)upyyckqJh`4?9~k1 ze#I}nq32K5-OvoxX#nLClyhCQu6yNn~-4+xF&ET)o zGr>X5vG$swu6Dtz7^-nqG0C`J6H!k{#HrInq_@yK>hr9%aROGk=u4OY;|}1Wk=4HR z1;Wl%D(ncL-fZFNEiHP9Ydlo$H%np&9S>X-fq=#{z2yywU}(Y{2Ff zo=ql!U+?jyC}@WI?(N%F4swo_RS$Hf%UZ=ityUC?Y0kAj{NU9ohl_}42i?+u&$q|5jF2P$%6LXF~sgP zKDTp&AR0ozOWO+5QBn$&wQq!uy|EjA;2v~7!sqyf#3J`*LVFgCk0-P>OT5C(JdV(Mp;YR4agblkUU&yqyb zCM}`8&l4|9y#Af%njg7G2|8e2IJL;?L(iCH4xorKLF;B?V$m_bO0;YkFa6a0Ojkn8 zjXOYx{)0Y7@W@YaP;I+aWGn97*uir{wyjYjP=+}>RWZxv&TpIhApy`c)#iV3Y+u?d zZTSlanr)Oe_e0TExn40O zaz`z42b#~3Keb5Ekx*@=EnF7F#u#tMIyR4>G|>eUBA!k-mH@eV7KW7>&58rA+2lvI zOmi#H^8VPhNGu@{Y^zG4H?_@oOS^ zWf#5@mnRlRj^@hBMXf^@!$|;(oh7y*!hxcM)fqc)20a241b zl~1>nHBv%FP*HpzPLgYLKQaJO9BPZdxoAJBMAXjy=5L<7K-3n0XJ9FxZl`}rg{*<> z2X|TKxMiFF#U~b~Ot78)$;TYxSYKQCnE|OtOI!8TE;+GqUfSaCHM}g_-IL2-kr%lg zS9~$X9#Qzl?NDEfk?kc}Rdro1%qrZP%X1x<=h(aP;1*$*a&i!jc@w8W$VPm-Z*3Ha z$M&!Z_>%R_`c5=Dc$<$_*+zfQ-IH$6wvNmaXN9W%M{G^i(kLxuRvv$ADy^(N2gO#l zvn1+Wo@lQjt!_wkEhIWYBJOAw6f60vH@>Rvss)6!)e#g(7UVfo4i@R9#Ab`hsRUfc zBwNnb`U$P=U4*VZX0xSt4-rQ#!@6?dcERx}cwyLa3PTvTWy@B!cY7;)dFE=(m~O!B3~^cpN*B6 z<9{{@lClzhXGOf(<2}!98@=Cg`2JUotXCcCTbS;3^!k${cZ5s)2aJ#k3U7Z?eE%)S{ zhV!y^W5^dvjGA`F-#@6CIX(D_v$cYU&1G!3xsBG&efshZzIn;dN+h0B5?)vUUXI*b zQsiAXX}1w{YY}v<9tq>%=!9QC9{VrWF#}hzv}#mu3A42nmoPq8^`IAFc5AlXEY*S? z#1;byir=H7nnB=(HbN|gEOcxwX$6wrsGE@}f1yZ^h;@zS*aw$m;a^kBxlI%U1_Rs$ zRaNqswYG#mLW_6vLV0<1db34a_guMzrF$WZ_L|tIEnoCDX6)S6#B?Vse;r%oCRX_+ z3}<>RX?)=7tj~3fL#nxxHLtL&m5X(0$pa(@VL7aDzAUuS=q5}>c^i#1hO{)1Qvz)Z zZJ}OGAd89Z#iI(HWznk>8>QxY>knn(UBIh&@>qgl@zv(yT6_b`U|l7-*19pQhF7hx z{t#!nx7Qz*(VI~!Y~iF-^<6wB`%c;dnrmAbYE7@^^WMytpvRm~jZ(t@x}J;S8h9qJ z9}~3Wf8|-9CqMD9YZOc0kV>0snuwuQFeY$Uw(!!&>)G$x0`_bHw`>8oZ2@;|0e5Wy_iO?8Z2=FgC%j{J z?=MjIwT^~EZ!+}=!+(7I!$d7*{!v7VO#Gv$u08)KYGpb6qcq=GKYr2hiCXxCpDuvi z9l*oyM=CLxC+>I>c>Toxw^>Lp$Oy^39Wj{0Egx&;@*A0}jJ&|V_u>ZxI`u5z>8xAX zH1ZCFsHgniU6qldR2;L4YzxA!YYRV1nAer-n$JHdCWXkaY&-w$u`y6v#yJneT#Qjx z#UQ=JiY-#G+L4!!pN!E?qYm^V6v zUF?bB4DH4-B2>1Ue+}Go>6EwWAM4Iu^GqqvWJT(4X0;-G8HOv?td{M*j*=;8=@N@u zgR0KjFkv34h8Nf3h7`NWUFt-d5=`Qi8i4iM&cXDH7TmSxPETNjoo!ENglhAU8=-+p zsg5nBSsUuoP?TCI3LzZ@GEwUa9N$~k3fk5W*EW$xS|_o4Go|71(mXv=a}Wq7nb}Bv zfrZZxetIUQf=)YGPE->wj{T`k>UPUV6xD0uz3`(=K#rvb7n#KVkZ7u`*4jR32JuTX zwI_xVs6HIWoG&t9Wk#Nm&pevNL-UQs9Zy{U*0?#Ve`HfGCPiM7$)8Hw6mn&<7Ff6+ z&J(#~IYC$WAQeQXP%iq5ZKX7_1%tPw%_N?LP5f;{TwOSeV{hco#)VNP*n*lZlWFvd z0ty$n;Oc1s$isjhM*G4lf@m3N3KGSZH8UaWcUI+-P-vrk=mUmuwAYr%Pl93JlF)Of z{nicre_J_{Rdi)38!AK}!6RGScJ}u=U4RUio)QpT|kzutKNH47Jqe+2#q5C8F(zr6qYmknht zYy-kTsijU)_ZRfXFbZblko6DS1edE2!F>s+XraVjwfJFJ&XR5c{c-wW0mTG<1D08a z2a7g^><$KanArrN2MC43_g^!@M^+OGu#y0m!T7W9gNJ^I=mIWDS0k&D6_RSdqm7nF zqlI_a6N`gV3D=7PqgV?db#pwxq2YJ6WIu}nyToT`!e-_e1z$1~OwUq|1>)^%WPljT z%>FP~%KVPV`(k+YA0lBmCOoc#dECB(*j{JTbtbj%K5f;=iq$!U#d>o zCrZCIILzK9g=oRoZTz)&*x5Pkbr(mA_Nc%~YS%DTJ&aS=Qb=gE=>Ix-;NvLvI5dL5 zs`Kr`?apCm9tnj`2<}JfJ9LAGsXtW9NC(=lb7H{tcI8cHlMIoUL3EpLSR|D7HhWzd z@>ch-+mXI@U={G!IYhOrqo2G%g5;YFhhwTZGpxq$W^Wg-M(=QIYwo$=I=k|M0FjXl zk<;-ch#owTAkwAd?i?KUwhni;xUb!9Km?tWot?Q6;X3>NGQ;6J@cT6!)b3_?%jxbO zZttM2IX42VCvj(fe`!I)D7C&5_QB!KeihhBed~}c!^HOw zyYo{?xkm}1w{AQQjcd4v$yE2ShmOPi6e8;@N3Y+;(THS3u-sJ#n>|c8w|3C~=Eq3Y zZT3-#pJC+$$vDcS&^M!WVHkNdIhrRiCS-ww+ zauL0ah*J-fD#Q|zpob)?J?+=|aLRQl3S8K=uKb?gn*ZV`_n4!r3}C+P-kpC-X*$** zSZ1fAoA&mCXfalpLx!pk?XNFNsml_TtTXw%QIShtFtm|-1f3pX!~EABxLGc6hsgJt z6Z{y+wdam)aXMIN6Nw$>5qd}vaO1fG>10 zVCtnP=X{T4A4S|4Tlzng@?AL4vi?0iKqeJ@3TW?%l2)mTETKy$nr?F}aS?V6NK}SQ zL#XO;I7{chm`vHkM0}hSKsq}rI>7Bx8*0FTm!k<>#i}U7C8hcngdqi81G--H*n(z=PK|g&WT5rvnGO~ ztW!5-Q6kllm^w(z$ST0*$Tny^MERefTUUavGX3DwL?4A^)K8b-ON}vKaA0#ZNqr=Y z#7SMP1eH=ZP&K(ab>q++NM2QAjYt(ksUcK#5GuQDAf7Fu^2(AQRKt?AJ#IoJ9MvK+ zl^%yOL@KQ`ABjqaxXW7ixra&lu6paEhUn!%QkH5CU-7`YEg-w*p% z8zJxzDd~Umr+3k8+Ml@QRN(_R{9v_~7?7p2vWPYBKF|R^Bxb&dV_*#LykSAiMK?xN zD7I#`;m}R)FbbA6ZsRCPtmcd^OeX6Z;2}7SO}iAXZySh%taka468!CZDG?pQDtt@1 zup||kt?2n_(?7BTmT}jZYBw#)NNGF!d%a{ZqwG~m=9*L1s#eBIi_0pm6cyJ*0#jht z2xRN5!lJe_qXvt+7+NU2@SX6>y%OpUu8umXPK7P8Qq?U_yHu?#g_M<3YUQe}8yRcV zTaQ7#WkLF5=YN&xb{4ksJ zZNW>arR+3FB~()OdM+!ql%Mn=9^kz;DDuBpNaPZVM9@na)J?^aD5pb9#e&DEPQ_{z zJ9R-2-S++PCdx(iwAI2`DlxufZ(1d#H}SgiJZ=%*RvAz866fW`8=LG@5^(+ejK`+o zX0>FeO8R5h4{@R%BUQJ}WTj3}wODGZO!sOL8TV0AtlT+P&@17Cv`(5Hqp)k2yy$$CQXlXY6L4A?FO0tL3pzP4Z%KKop7Suk;<^~y5Vc=eXvFI$%6 z>6Vr#m!QXUk>V<;@L6~tp-tr+jqV}xj1@(e>#PNJmXT^GbuBT4qgfoHoA7-!8{V1U zZ~b-;DOkW^!on$qEUc|#fExtS5F%^aR*1c^8-L((PCQlur99GVVwF2Ic7!Wett=7C zHBdc4v%Uli71oNBHJ9P~F2j|lYFa+(-bVpEw0r17=s_cJ zXxXYR%k(e+XGXA@VpX}$>G2afns*Vp9#~?JsF2NmPH>DpEI?%Wm=J$J->j8oyf|| zNmui!>crZW%T;AWsidd_Ryl3Y>lIf=R+d@s) zXyz4`Pms6(T^bY88g*{VO&?oEN64`ZY)vX9s94po&rVy;H6OZMPA=Oy^V62h+Uuif zM4Jcsdl2M|z6G-Ijj_&OZ2NeH_?Wm% zWn#(*I-4SvfkkrrS3_%=43|D;ilZCf`sEV_hAiSk&tl+&YE4LtY>S6MV?VJ^%}S;w zt7X2M-Xb!HPQ85jr`b!u8)| zev!aURwD`A!gi#tQ7o`Yb*i=_$zv{q3z8VT7-)dCJ%kecVta_xiKEXCI-D^Brs zE0(D2g{d`?qZ$#a77>aV6$-9*B*PFHgq1bt>VkS;&`iIQ zGme!pl+0;JTY@#KQp?mlwy|>RSVmeb0t8~crdcUl%9=*}fU=Z7rR=h{*0D7;UagmD zDcv@<2@kT2P0|bWd2CSTgOGaiRc5CG{(knp_SDJ4=)xB@$HgjA2{TMXW0&Q3Gtdxq{ajg`*EZ<5i zR>--C63&Wo5zzJETU2-0u&woBTU0#8D`U&MKy}F1v+%~WQUom}iG{T;!CJXgA-AyM zPS&g9y?3U zMWJ(y>+JmM^zzy{JHNhAfd6>(`W@=E-8u>ahc8N68?7Fifz57jv%Bqd_YQY<54X3; zSM;f~+37jmtwSg{KwpnWV?TslNnOG~7A^AWo>rE(2< ztAMn?C7x^d)CB{s2g3kN8Xi#xk0_(7BCsX&OZMJNS5lfA1NS zff~FBgh^|QzZayrYeP&^GNPfM_{>_8OblC^O5$485k{c5X%x3h55a}@?*g@z*Mfj* zv1^EGJ)x6GWL(>KOQrKMSiBG{28r<=VK2LiVJ+SyTFLOLaDSGe`5vp{qnPBV39J4r z+YwuR{jvmD-%>S1IUEh5&qnG?plTgh4XC- zSd1QdF<{je&`3eo&>wjHQ5;Ps-U?k^){wArWFt>O=`l5vN(xwpCekXE5I+xA#W{w+ zEQl+bh@b>rH!+mZX^3JiLZ+XE$C(!kPeveclpC8L?m)>I zG8IjVY&-jV9oUzO@aNc=Okj=dOs-(|XOU~9E-h5I5AQ-A0Bz>G(%ISU>^t4=;nx0P zw<~__>>qaMSJ|UQ`knJ)=`t4<+HEWQ(|OA)41xUTefsOGv&1>Zj~Wp% zeBU~J-+JHL;EG@2w=mAX(0~=C$Ha`Em82IQ8jI?yBM7?cyhNWy&P9j;-;zjR&Iw{t zVsn>ncuuw*161~VE1Qb1cvLphuXF~v4OwykPlV)Kl)F-U7SmYBm854K>~zJ6Ei4T8On= zcmiPeq(8s90)Bzkqq`w|#lk1u6tGBH(KT~!Wla;hO^eaQaNe(e;)K!E31>m@J}iLy z^K%C}%EK@r7+Uc|r~STl7CKj`5)e34=W2)~m3X+uS_;yaym zy>Zl8oVWxh6(iEp>gmTzgobm>&~Q>Tbl?9$@~g2U3ldjc52GYmGEk0k$pF_USI$uyueBKN7*Up6v=_N8pF{j)Lp@t5 zA<`6|KoCz|;c<+vE4k9IvZcZ_FIRl$AvqZBPF;zzR@$|yP@ulLfl>lXB_IJ&Wqn)QNs@ocJy>I{GD6>-V4!Z=K<|GC*KxG{(J~* zdVAnMiTvnyxyDzjMmhOh2(bN>4Cg*-1e1?agg~L+cW>HO@K2nhD|DEz@oZ$X z1s4!q8yQ}-@;TbAxB;luZkOo$nPbt(6X&l^x6`4W9o>7edn>LiR`LjxN71AZN=0+$ zA;*IIARmEY6o7fKvi&}X5OtiQAd!+%f)jVu{W68BI@C7{3vpyVsuAuir8hePExW$x zAkli$jMEku9DD9$BLE1>CUm(-W@Bvs>a%P=BuX}XT2TM=o9mb1O>g;rk2A!a^zz67 zP~{W^nI~IJIKbTZ+yUjw-p*nqs*$6TwNAnh;SDSR$I%e6BVM<~m7?7%0Sm3kh0v1t zjo<2g0o&&Jv3_-hqdz)7vGDCGm}_vzpBBTs`VRX+sfyq`;vOSqy_3v(sw%$pK8~Cp zrb^VYa`pxth#zKdIQ6Fw;&jseEYISvPhmeJIUIAW3>-<^DI_r+Y8!wZ??e3F#KqCX z6CI@K81m;%K&4pd=3g7(mpI;MMEH|MEe6Ra7f!xAomcSY1X~C2a!wgug+>H5ds~Jr z>-VBdQ2D!3p+cTtFHG^HIO(Gy+~SS3$U24Yzz^qLB8tlUR^q&-$SiSjR5D4y$`!4T z)k!K6B&7(}efkn3o%X%WZqMl+9QJk&xA(cl=xsUOeTYu5-C4vy;^FX^umltl#Jw>h zh%{0}=p~bulZ9Zv1OYPpC|`fl62wc=ztbMi(Jq~Pif!f=-4AA7vT~bKI>0m9zc`cR zvpApRn{rlJk;L@nV%|!XFIH}D8HigXp;h@SP_Y0BFjKinBldg< zT`%=z7ol8s=_OHsX3}~2pe&kY7E~E|es9W!+$1h)iWgfpQf%Vx1LU<=6uty~?QV7t zobK*nr*qiZt1f&=MlT314%B4mp3tzV=z=mO$ zM0$p=T}1`;eivcTc9(kL1y*&@wLg}M@OZhstt-SEN>Rv5occklYBD)fRR$`Nzp4t3 z#=v|3Do=*her}PNHQY89+Q@b>K!JH(y@j`$E!=G3$GwHOn=RaI;YYZIN8Z46@v|3< z7rFSIU__R7?UVif*68AwB@e{9nm&0o1lmA12v%fG$mqxk!v^om1k7IpaI9t6SeBcJ z4tK4ojvUQJUFeNQ{K%wn&1c2g|BBv{X>dKMP;f4)lui{<8@ehU(NKyQ{l!U3^F$|4 zM93r3r{taT3x{)PP=fiaZTwhy!|6O>ejD0WH|J=SS^(dAI6F4%MLMYWxu}T73z&vx z&T(eDjO%v}HalIXyK}gW#DTr^>;C3e$LaPCcMcA_`*R#xCI4^EZF6ohgEyTr%i~pe zv^1xyMJ(V?i7e{>+hZ@aoafHXEX0QryQ+@F3&OaQd^fH{Q4Y z_Ua5?&h)QN-#UML-%1tczdRk?AZYsXiatU@pHW}QLmI&`c}jymezQoY!UnbNnA6vz z&Ql+q1xe0BAA~DRcCcw>LKX;9Ab(+bp`uPON?Eqo5@m$4c$Q5 zouw**bOBFS%Md9QHPRCtbn;)~v|9GJBYvnG+7XtfYs^-C5)EhIrweWfsv8t51{vL| z9bz{n?=XxK$*)hz`v>A@c{Pp5Q-}BA@zK?(^V9dI=Xp|x&KRHK^6UyfT68WhRiGK9 zLp(X1YiP9Nd<)J;>u`Q$w|HG2Hn{D|5fn3snV_nM)Nek!8dmm}6E&&HuFkF3Z#| zp+Ro13XdyQJ8Afw4dnvyM6fb(4YJD882{LGt~LQxcdt^5Xn=*oWq$%JUZYl==my_L zX&J%LA$$sLqrroNHkBWZHXLTi!f{@3AWw$`E`p}GmRp=FBK{ygW#Yfft|NR|Mo2O4 z#9f2~P}4~s0$fINEsCGGwAaKjgey$tIsW6@rx#Cw=J4OXgM^gC=WtO=44EG-R!iv(*CuxR^4G9|#2E29|4jUTW7F~1JtnGsL-N__& zeMC_fr6g{0_X&L{BXtRj58jX|CRD4&zL3RFe+sM5eU&HxS0V{gS&91KXXR+^Gt}r(~olCL> zQy|bIK+p*%-JQ~Kv)?b_3CvwF89d2CwsHfB-4WL=@%9E?4nGJGq1!JX9D4D6!u1QU z?ZnBvL}HY8&+ZQ^C!>Lfc3gkp2K7G95zotOK+1VZkjh?(uyTB{Wu*i*2UGvKIvPUI z+}!C}@QHun0;Ahbw!-1ZnIAuFripQxjxStnl7p=iqQF)0*yWc6TA+PVeAw zXF>hw_YpXhwN5EEKcv`D{b#~GGrhpxTCi!2Nj{5|ZiT{aj`}|{_wC!J?qQUpW z=+DpLGgpUr_P$SvFkh*RC$7+>;h@ohqq)C{f*|_TpG_>a({RM*aVXT!{&nOKBpg6O zIqC0(DOXDwrbQ9HFwb&Lv-|?)R_eKOS;@020XPjv_Pk3#Z_rhi@IEr4z_U zIareAMKJYA6JbC!D{5OReHBMzCzbTYGD)&ivxEKb0t3Zb37CLj`VNmUx8PTpYyK}-S$*37!Xw#;AWGF5^lvF z8}mJ~uwQ!Hw-vW>lqB%p?8Z+e+gwUPvgQYyy=|wveF&RDm1wZMGskz(Irw9d&gsin z{Psm}^8H%0g}tA3I-PDtWxfU~qlO_Q=Ig_sf6+kj%LHJL&iRWJXAjNR+%rtQbxWzv zeRLNIr<)TRVvnfLsVqN6w^5}mpZcUDI@aBSuUmTy`#Ml*@{Ayq#{46iVI{b|k${GGuM{;r`+FJhWB253k8R zGDD->?&HL|qMetSU#i@7nhj&U8OLt?A+g+5bOiQfYq2eY8C|jog5+qXet25_gD+0l zI%61IFbpVfHUDBSIQzTKCLL{hl*m}5@ruag;Q z^Y1u!`8`P9ac<2=pz^|B>V%W>`xAx<9pcjDzxQ9i|JqUp#Gqz5aGCCQCece(L|k#u zPM+2#n57z)$MXoa3kf{APO#*f_8K>=_DP7yOyfJ3N0pnacpa%4$pgSscvq zERMZ!$j8c))<66C9mIv-(09NWU3xb-aL|ULFWScfYs;K0!TH5@UDI$61%{E;geu{d zHw_^n#u~B;Q^NDMWrr_$=?*{K1heE$hLR$Jq=C5#0-fmMmXwZwQV{6GCWy%*kxIy? zcNcHw3RN=qzAq6rB-{DyvMIC9<%(}FXActROyy3Ab4r)bjCG0y8s4b}5|k%O5S8{s z1Qeuv>MSLqDvI(M`rOvimSTdbDovTIsxaGks!|}hj&m>mk1tU(!4CN zf5nC%Xk8X^o#c+P-_Egj>nGDXbier>eVO4>SSaUK;JmeSX&1D*6wM`ts(5o?<^&Ih zOD}hw$u~}-zM?CQuHRfib_NQHq~jr!Gdsceo;%WjaIuLr5I;mC=H5T7+Cd_9XKMWuv@`LGbOLUl_M{ZI`xSq3E()O{%yF zGtoq$Q00V^GP+Zvv0DT;SiH;XWpmO_X|*jUpJ=}GJ33!Tv?K;iaDmEKydPWWkMkmr zG{Y?WjS}T>h)y-j5TJs{j+5{?e@Ydi(O>1sUHG{1o#1D-fPSAQ)GB-asMOQl>~uGK z*iUbpz9MH|AIx&Ayao(ZzNk<@ zHZJ^?d;LN_;&8;$N4VZ$*%CWwOND3Q2+1LQ6mtCejT?XPrp}dj3x5AnAzHlbApA~o zhMmYEM*fC>kv*OL#Jey1Nvyp1_qq3Z%EEc_4*z%=0fHH9|NI<$L_;K<;PdJb!TD-5u5Ma^^@jC+SlOVi~Cl$&t?UMXo;`MPuQhn>oYn&LxuWeJTjYkDM_zI`uxIVy|Ed68H1Vmt>& zotz#f-t+hTiecC7^s%+PEaFpZMXBPUwF;`#GwZ75e*PRK^xacMdic`e!PKXQy~dL7 zqXjVJz^DLnCqxY-zgH{hi@RJJq42pVf=UxD7Pl2b!sA=dqP_Gb8)g#9!HTC=3BpdT zda}4JjYB!8pcW7}3dY9_tPov5zr%q^2M>K0t$H{j$*3yPGtT|;>Cf~vh3aFAK>Eim6(VZKjJHm(LZd_`Irv6#%KK%BA1~X0d zC51&Ar!CosO8F*3txl1PB~e@|HaM;5Jhtgo3q>uVTS76Y+xi1VQ0JRxxqiyJQ4?h_JD5l2fTO0Tb_ z(4jD{vLdwXx>uUm(e+(NdUu(kW+-i_UPJXns<#ZHSB^eaje$Tg*qm|a;QiM$i+zQi zG7Y{GICJ?0*GvJu%*2x-w`|HL=@^{ghGgq2@ zAl}O|z{`s_n5@a)1-g{SCH3f+i?ENf8Vl;?mY=Nec$ZAM^ry48Ma8*QQMAvK`Fwr; zLZwNk3-sZIqb{4!u>n<>^KEmkP2*_>PgeeoDe1oNhNC{D-d*%i&!h39p)ZnF`X~SN zl&n1tT6|0pq|;y*2i`W?yBMFLf{^a|fF5&Xnpn;g)}jC@>WJ}%up+IqSFkwwaN-a= zoy-S$z_izk164*!{N>z8`(%I|w7t5><}=kV&#Y1nEA?FQY zo6qmnF`sWW+NBwpDDU(k6sC??*^_q*zYxKBq6(vw|BU` zpMLG)XvJHH+r7ii?qU?1AC-6S1<_G#@C>9p0zu4N5+#&;o46OfqW@exgfr0CnR<+s|5|CPCJV>=ZC09oJ{)@ z_ZAxLLbP89aE#j=KcMZE;KV@*YVFDk;A9?0!E78R&;p==$D{&(6UCnMiVU0sMsq)m zg5>$nzo2SxV)}#G=+>KVIONxD9I`*D)Z=>z`$9G;T5jAe7W6HN2KT@2iLlD0dEQ+%&ZU!NXd zJ8+o@J$PGz&cGAr)#b$-Q7_KkJcB**^3>t^4xsKFou4?VM-H5Q@(jy)`5?dwL&RuI zVv1`vtd3$x8S?)<3T?3$RTEXBPLM$V0^CO-hdV`5Kz|ex^pn7oH;Ox)&JfkX<_Op& zE(sL{M=0GcA%UMcw| z2J(~ska@~rAP5%n{_DRuZ9J2R&=T(Qyh~1?8w{};2#7CyfYbH>Lqju%NdcVFtT_FJ zI7Ryb(VuKK5j6qZ4tx}+6&28`TxZ$ef5T1YHed>n?Zd=ZZ9~dL@C}*UiF^R1D)%8l z!pGY%@pIcy7(?P`$P)%fj@I8s;onf%v+Z0B1eI0c*{kz6QaS#a5zQQ1`-LEwvSC$~ z9AgtIWenR?m*;Ro69R`fwIXplp&^(rMRha3`-M?++zvic+la$PElZa7T;bX0vMsv3DuiJ3@1cw z9QOtZh|b#|g#y00-23LQI(n3c5)S``PRNzkfyRIq#<&aG=*@kSIu&?MEY z5WTrL2%7Z~6@m&>c7TPzW6D6?>AE0!DwQgNJ}G-ah+F z8MTqTWAd+Bs(l+a_Zt?=_hG`LErr%HE#m_ORQuQq`#0pe626cmI3xEV0oFLql{2@0 zfLP&!FuK$U0$o+4H-2reNWV4qapzM^U-*N{qEy3}^m<>lPx{fpjs)H}hSN^-|^eSd2UnZXA{9LFI zhqG|%#`qbMrZ|68Qh?*@V@<89ju30r;v6xfC^j$+q6piU{wGVxu-f;=+3QNqL`Jg6 z64adk$xMUk>*KkB7jr9GiZQjkCr`k3Vi^xcC+LYSELlJa}f3{+C?xi;?qMPp;o%$?wcyUVWo!!HotqP7k zH>~F5Hz&V>Fmr!i`#5tp$Gx;)lG0g->tt1V%Zs{PQr_|kh#_^84WF!x~94;vu${WIBgCJFAvt znuGkM9pnP(WS&P+R;PFFcS~~}*;cE91DhUJ>{86J)b2hU#!lyOYfJo!xa=1FTB+7B zJz{4R6Wg-PX@!?{=1kCHO3q?R%u=|$tIpaYq(zhq^(kG1m&>_BrP<@TND_GvVV}z} zgXU^c8!gDpzN;Mx<+CF7PeX51)W=^g4lM=-B)AqP=xHsUnu%`_<4*yYs|YADDt<%iC@#8bhM zjZayOxVgwS-++tDbI0O<*fzDoV{;e9Q}@;b4I<|{kHb|icvwE6yUe(hA%JF2zM?q6 zwMP!2$;OfC0P$TrJs+@t$$kE0L%P@J?(+Bp&OmnUBgTJHfzvWoMHNpuenI8l0%fWs zO#3|9#Mo5hXJYzKhez6UWXAb7=ox-SkkyIY{(N4sTPrOGdxwVZ$I+v3X{{`oJ} z0p`9_9bOu0k%aN*Q`hLKsM6f%V1*_h0yHUIY7gJ^N74diO)m*Bf zPYp2N2(7Rnnw%K5@^a2yF>CkFcB3pWF_G zU)g4cUl45-{(I>mQ5nZ}W?K!u%G(dVVXdJI_%?9EkVay~zsaj!?n@dynX+tD1W)N1 z$;B`~vS;x)%PjsxMu#78=eHucnd22hu)jV{H{Nph9Y?}(x4(X36KvQXmGJfX_J_pA z)%06Q`;_@r)POum<#@FMc5&TV=@Tlet}9uLat{DI{2fqMR*NfS(oip3-D#)SmNlXq z!f%o@M?yRMv7th3BahLBhzKXSX)%;a=&v*)jX+U5oyFnm)wI_qS7;-V zzUf9nU)ZxZem8O7a}N!3HS^|gI~|~0EB_vsX)t|n{ftZ38E%bfsX%j^YN2V|$jyq0 z?EEYDKx0O3YRN43zUM!j{yeu3X~9b*tc;us^1M*+?-an~wd!@y#SDC{B)HV^6u}$? zlRMW*zX)(#Vn`%O#c0Y|YRC*`F|L}{R;+I_?I#h9j=+aZ+&$dhPQP|h0W5B3i+q)r zF>z;OKbYHl>>5&~TwPQi?|NYuFQXF)r-6_iK5W*fg#!vgNJ1Lf@8sM8GnEk1Z>K0` z9n@W`uyqWJ3syD_1XEU z5WtEQhfkysNJ?)ESa!I6=g;9*a}Jwx*qp-}&!Laz@6PiI^Qo>X`1>_OMwV>S?}F6N zz6uve?yDSfBr8IPE&IW>j&Ep+g2BUvjDr~bI#+t_CLf%$k)}Xhhia%09f_wzi>d=T z4M!RP5`*CTXci|b_xS5I{;@jz3 zsxV6XpiL1I81>;H$iu%E_Cd3kLR4xFz{EL9F-fT+q_$_OZ~Bv_L&JaK1z%M4NEZv+yD-b(q@wqOdk57ZBd=g|aV+u}>sy--e$EB)~mQDPugO0=o?@UTBO zGO#nWO1&gBm8>M+ku^D* zO(^kWE_Ba$hf!%$mh=MBdbKXs$0z5SSnTvegVN$mIb6&9O;;$&9+at_8?AhARo;>d z+eU5O{Df^+^af;Q`%QlHvA{-KI9FCHIjW~q^d|AlcWdOO2O#)$Gq zLm=P=F@Zr9^L+-zaeN$clo=;78GM;icUt4gH-CEe*FSG}&_B)*1lw?~k6yk$B|bf9 zoWnck7>N|HVSaT^&vDs5Pyco0{Po#4e|mTR`r`PXq{h`ZfBMtrCi)+u=7Yd<(%_j` z=QPFN#G?k_e>%CmcuTuHd*z(|-`Umml>|pI>~^}&)#(jR>$XzeQs(+3G$EBne;QYShaKx`#9 zK@K2`n+b^bigKpj=P4O|Y=Lr?6cdMt#|aShKrsRGhW^+MP>UP8iY8NU_z5O3bh*1l zkeuJV4hQK$iVlozG3BUJ?_aXt@^2DMvz0lG834!b2O~`24!pp;v@}d9Xk0ATGlegj zr1V*tL`jq_rob+VZo%y^?kSsLzjFzEOt4tB^s6)WM*eJ^brrkG9lGtiiLl2Ra@N}% zJB&JNdY8>zG@OA8O9RkK?q72=D|7-~-R0+T0HgfReX1`ztF_QNgzAYgUCZ>Nfi; zE8-|*oBNRg2&bVf{LFyT9n((#eDWsk^4Qqqr1%kh)h(5sPVBp2(~R1(42+iVASM(}ogo;N_?RSFt*Z zU_}bng9a!Mzw)FFakAJc-HHl`cjsq6ygMa3kF>`&{5q4)xJ)y?Wi+=x%p=2cSZGdwTf>KXdHCuXmTNjlC}Xb$xdH41I?``&XC8 z-?uil;O|#RA#&pQt7x zGSJ9R6znJrS*Nd~TR(K(y0;$ta)K)Mc5!Pb(8X4l{0$v%?PK&`y*WY9`@6XLYw`nQ z_ucC^%!Jq5$C%y2YQ38PV@MDfuHNsTgG*f(ck;^fMzrUbS0^wyj4RB=Gng6-)W5zw z`|i8bOEy!lPESvuF^hGp=6oj!_?#I}I0dWyj8iv)T)7w69yWPFPXy5I4?)Kj9!M?jU+S%@QhX)6H!`@)n*>ih? zgQ2_Ax!E3iI|p0Bo1b2%+Xc4`cxt_MxV3kJ7Z^ z&cSYXxZl~^?u_Fn+F+?(CeR&Qr-dv|Ade`jlZu-EmrZwC7VZ)1=u>~g(Yty?7&=gyztokk<0nkbJ9UN;4j@o6p_bzC-Vm3#?ZE`{dCPx_PC2lHA# zPvlFhJ=MC%wEKJwDC$p*x~Ecl*@{$0YkAF5l8qcQ%AHOlQ_9sSao@_-t%N|L76bF0 zi$c{+4k;Rh3L<(Uo@^!6k?4dH1}8n2)#i9}rhT;2Ki6S<@{5++m28rXn~?#U1tbQU z%16|M4=%Y70V2jm$G#WGSb}h{TyY*v5%(C9*bK)}IE^E4N&GmArubWbjCL`)FrjbX zPF`H!K@QG`Xokm%{tM4b(1dx(^xJ2X7YKrQ9ip~yAq_0G;e7I(JIMGsi6I3cf^eO* z3)a?C+Qd&DlDMM}@cEM)kDO_Q+L;6oe}?iRr1|*U1!zwKcL-~SF~rc$Cx3e9%o2vd z+rR_2q2Zl3{NPOQ&|gt_|v`4-6Gd(Uw7V@k1b}72PBPM%&Sj=V;VQaV3znHg88$E#*L4r z3+9sLWv8BJ3|n+H4xF3V^I*Lf$2m1)DYgTT5nD{uJRqOCjFHD>($2J#tvH5+C@yZ|Ob});lMMG;R1hMtAo`TeOLq8~fY@RJ{{gz+Kpd&w{$Y0?1Cvw$ zSKbuD<$&W+LY%nzcM%K0RtScKjDC^?MUW36IHD2oaprPZ*zCkjl22#>?J$TluP!wx zPK=6E&>EZb##pbz;ONphZ{5%f6jKWR|GQ3i_i$(DaHrc+RiPRM>YV@;w+}lVCFlg= z^WisvdJF>ZX4+5ukvDK-2HWat8lh6n|HviVxyj{JKh$2|nz^Y>qast9eYLuY^T`5XM4Gd^_w`{d;0 z8$?;c>1N{p+dFi69aQ@MYs5N3G_&A@=Oxbfh`N9K3^n#b-6^qm_QfqPL#3Cwf>ENi z=BIYMcm<|o`1L;2ENYxa6j36L)$7BDJ|e4#m+JP$9op4>_Ie22hoWG>LXjw!5#CPI z&`_pb-A9+Z+ky$BYZ*khQNgUDt9Ukq(P(o#-h4p+s5d2|BYiS^I{eVBwg4mYHcbzJ zm>9Yb7D12)h{-rXVr|j#WcTobwtRFb{vCw{ATjJDnKTvmiN*g6=(`{q;MCD1HCm3| z;%8Ox68_+@2kDMl>Pm&{r04^D8PNat6LhAq4;xTaUEAc({*;R{LW>PGQg4SonQ2zd z5d$e2T1j;P*gcSICG}Is&hUm-CNT(f;B3-@U|vX|Me??xPU?Rnp?^ic7hw-|`&_W} z7V#Fx)o{>Ybv1$G=rPOOC5?*#(QU zv1yb{pZ6J5h~}o<(LFd|jm(g#&zE5}+;Dc|f+C7MV=UNarfrxy6PlML+u$+f=0p^^ z0%3}m(dA>9y}ZR?QIvHEz3dMY`0?L^XoN&gB&hx8efVD_R>psE0$F!!^4a+_Iks*% z{RYZ^Cty#LG1}3%9$%p=SD@f(WT0jrYQkiozSK~{HvP#PBxrW*rU3^HHq_Dy$%-l_ zL^vrEmdr+(Rf$p*9?F_jq8O%bg(ya%F$&e1UA(z$Re?E5Sn`L2NI zUF`q1}_R-yR1?!jgqg%lE1H9NQTCJ)uNjuV_G7DWqD1z0klA=d> zp%Qe-UOpnU7pe1?p8p#WY>U=rXS25pYqJfhlNH^Y<3sbP&^{fwXx{lDkBxul#!H_H z){8V1$LK8hHq$TZDH925%a7WSdPj}Xl?rcY4 z=nbd-a5h~5Hhf;UG;DQc)>6?h_NVkK$;I3%H@ObpL(EqIQkp7kSB+msp`M0xG?-JUn zg4~?U!aG#5TKdO2Rp9dq5hZ`LeAy=JN3&DD^P>261wvNVj}DQj2#IPAFzG|us^7s9 z{rfIjt=Pc#D(#K$W`5wW_T-Q*75ntN*>7&_7V*W3RwnI7TAlCfSRB@=VnV)mbQbvVL-F^U3vX+06W;Bke{*IllL9JQEfbuL$(0+8q9PwF(VIhte9I zjoiEC3)!p}%?h1C*wM&ezS4>7NQVkc&k7WASwA{NqE9Qpf^?!m;UDgJJj3$rKi%YR z>@Q#0qv}!Gu>U|u@dKzpmX8eAlZ*s9)~hA*xJLy^`R8i1wf{8eYX9lRp*wX8EfCeL z3g45oDzIl(OXyjT@}hX*bT<6(u>57oI?^qS7rVgtC(oNKeSO5fq(yq|hAS7Lvp(fn@qhE-PJB%KrB;X$*Rg7~qM4tp zL^R-g(wyoy?&$7eb=J#VchUxW?uNs=RhtZ0rwRcD6|LMkBgZhe+9fC*PU*PFx-jzVHJXm)R_jQi#vb$ zJDGN(L*YZ<-bE|$Q06+)p%QzyMpaM+h_G(7XdpRj`J#W?jU+a_^};ZD2=3igxGqYa zX=dc@Y=jej#YJ48npqLLl4oWX{^kx=fCBAC>i!2r??&!wX)NtiL1cfJ-K~|z zxO9JWlj&XIHMN>$;d_!+=JF15HxpO>r5_ooGtH5?a>GLPLG|l{dsJ+cE4U8axvRB% zuuhfucnHxI-$S@g73lmM{r}3*p`FU;_#Zy_%fG;<-AE_tDw?fQbjx+8J53mFMWUP3 znFgg~wsMn5+NHE-uHCU8IOlGm<9apwM(9e~JJ%lQ?h{Hr_W}Cj7PThD8Tj6~BL+(x5CAiov>%g-BDz3(b=SMFdN8$2cbY%T# zmgh%5zV%me8RRxTO347pI*{B`LH@$FpEBCstwV@+@Sw)YR=~g8?rx(#^y9} zA4jA?LuTPAWJ|w6N5Te}%ZZt#fe43~AJ`=_cE=Do$OvYG43ZD-y%>iHhWKkyY^-51 zZ-Z!TUa;b5Mck%ob3ZZwe!1KHuXT@jq^9Tj@JD%~X^w@IuTvtAgrauE9L%0|tr5>^ zm{l#z3e7jr!@_)?t*h(P7Nv+@IKqjP4e8=1k(r~FO>Lfwt#6Uc*)n-`K8JVd4C4j) zf+le^w8%Jwz((k31CPL|4J;%A2o@fA=w4&R5pQC|FzjWMs01uy%!S(`N~SpYss&6@ zR&Trs(U4&{R)|6HPV;p75SMl6CqPmAw^1}QE?7zMSqSmi<5^&w&e$8f@dsfSLLAs2 z%{gUSIS31GDZN-GXD^Y&KJfx?h(k~#IsviS(SlZ*`@K|}EE<2=3RX;qVkR$G>odYp zk+E=|^xXuBmY@1#w7Eh0H0}v25pJ28>=_%I}t>zQ&tiYYgZ?bTzW|U z9{Pb#7_^N@B2`%np+v%|5liY2OJZRW3OTg|TEzTAL@5!G^(J-~e*V5+IcreeA??(8 zW%Mo9Ea6wQ?{08npbVd4Hjz$AJN+{&6eglA{Co_C3Kc0+lW&85^|KlW>Yt+x^6bR>1SK%yveNLE#aRwj4LB7K)BXm}sep zr{x&Bj%OHox~^ggwytYpIh?&TQ(r%R-mvmoSUE$xms2@J|rk->02u`O_sQj zv7Ff!Mn>j3R><7D0;RRP+LbaZ&tumGCF5)`gxt_@{&Z}wbsn|E$xgi}45sd()v}a! z8L-gU!=MltBtV@6?gJ+Q8y)20J492^xkDGXUIHWWM(JKNDW5GJR&GIt=o3S~Wz&e6 z<2k^U%)XCg{uQGmog$gp?5^p>T;OUA8o$#Jt;Gg~keY9Y{nhc=RU;7x(20xd97Xf}51#h4(X zXC_LFnEwGpNn0s$9szPO*|B1=5%SF2N{kqGU4%u9Od}`OAtz2D=4~p-WVTo)PuSSi zzvK+S`Lm@ZBxDy`(+~n~&I~NVrx}7z=-dkB=_9j!^gnodwtaBe+0lNrdl#tsm#%v# zEPQ$J)_|6n;*4VCX-Ld(^P}%7F?*z8s79OJoZNZY+Uv_l`b4n-}4tTyT>2z-o9$SkhAiy^h4iLJ5tPvrLEGIKBxhEGGOnK@b+T1ZqL!@xeHXs0@1zL zx%P)2ys2~PC6g#jZ0-W8T5G@{RcJN*vJQSJX?8%#06GpE&WE2(QPt2FcrDN#I29#P zZfG0AqO4es&M2Fxp6ryOHtR)X8rrgcHmcUe1cJR_4ZQ0o(rjtn7tr1u_XXF4ob*T3 zq-HH`gb*-2WneHx-i)PR!dh8of*=~YQ*4(odr2lyFe8SUoGi;17J6@{U`1n9JB5Va zCv@dvq-QQ>lFSC+nZi3^YAr3YA;He+HoUnkOP-$-SHpm>Pp+I}v`)8C{NNl7@g3X1hLu%nX2wdK8kSrK zOSaUFxMY!RESQf^xYwU5nR=)zAZjf}1j))sLuRJe7-_E1Z zIVKE372^^|vm|kIcQ!jX#$~s2*xj4g(8z5YYpk&SaiiTrAI3fgbY8~M2QPMSJp>C2 zKwy1O8Rk73L$|xx*>bwOhrO-Ct?eqtV26{%2q22^y+4|{foTk#&0f#xb`Q7q&{8aU z3<6f!D2NAR6vI-XRXi@S3ShF{LW6M7Hrm=h?AqrZC>((qBO~^v73gpgq~Rp&9d7R* zc6v+2UpfD8-3MnHIY*=WsdEuKSF?eG8z^@cgi%y-7VPn|9EtUr5XMpoZ7PFVIvNEb zqcpC>>A%9*+ba$ zGK1mC7JRK_VM-vD8_OlgBy%755)s60@K+;Kgmd{>N9=CLK3soEtkrXUg27IYUplWN zbqH{QDL`5QBwB2%Lx7jZQ|?~E3!~qD;|}k9bPIWSVwgt~qI?HU;^DSRYzWFi8qAMKTroAAoX2v`540f zD_hn4{DrF!_+#JrMB;JYmWv`%^Jl~6rd&P(HD9YL0)%8ocx+}*h@=W@K#(Mi8p2cu zVX_Zx2f+gDRBz;kdVk{j=I2nbLjC9l0prb}vmyh1vW>3`wq39`!y6^jgE{uJ&a&~x zN&Qr`LPZ7T18GAIS#|E*N7fAgs>Juh@B3L99gDOad8O=uaqZ8i5Ko= zUR_(hSGP0k#@;Qt<>_37a^cnQypJ=Rh~I-Gw#%_Y`3Q|>tsT#u8w76H_l@soDQmD` zA{AMhxDD9meq;dY25hH)a)rY7Ym2`h4U01Jrcz94PHt2k8@hx&c#I~?h7)nXYru>+ zY#M&F?uPM9K|o2rn)rR;CUN<+smKVwt!*d?4{v1{=PRV9ar_YmJayWgE~s%qT`DV6 zJBM3ahh5o5vj@uFp6b!<{K{0Ktlit}bVY@4hCH5LY6{N10`43fZtZfW;?543UwV6o zTb1afQM0J0ZV`4D!)Y||2!_r@_{oh&NdcOfYI^su(>>gff~zH6t1=66P=48~do z#6zzOi)oZUHS!p1jdb7+7-uoWJhD+bW2N>de|i_qKuZ*UnOc|J+0^o*GWr&wf;~rK zHBy#DLYH;A`v$Tpe>IZLVn%|O9&D^(S{vOm-UL8~J6X)jRyX^b@eVfBgY_F~ zuhdYxbR;&T?G>@@nnt@-&b7jRX?xxE8|-$;!IoOw-ujJq$Ie4eUeum;j9cqB#$C%X z=GRg`%LRQo9Rtw*Uin%aTthg91@4@x1@w9Yv*X8IM?d+Pj9LQny!Xs3l17)*6aR-K}!&!Pb;`YYj!E?smz+mLSMmYbYvp zcWmEuw0b*s#A#~{rKRq!^)SoO;jJ~4n7VuRFI?=`bPa{3?tY1ZmRi*{6r8%eUAteSY{R1P)6!?E!^?Ttm7IAN4=ia7)z|=_8JOBy)DIq1?&6D_8Lk) zy=~QqO0Cn<CUO-++Moev%sjgD%SpOFJ1OoV6fYj>&Ld2 zF8wSp+@0m&Q z3D?w}rOQ=|NFX*B9BUT5v(~~^#rK?@b(XR~8$AD2U}sTLO7D7CLY8@M^zaDI9H!d0n`=mK($oJNDUyGjx*7X*kM60C2@UVDS*% z@`3x8{>HO_Dk$IAXpWrKQyWd)a*xV&tyDrM@n3J;$pqc9?4AKCYSc{`6(}_%v9=H> zQ=2$*)5s1Ewj&{I(m1Z|&?IGHrJc$CBU2 zG0gWZW0<$D+`vnm3rLE)`IhF$MFjlg3`yju0-m(~7^B6a+@Q}V(GZeSQ+%;nn`_89 zn|er&Z^`Yk?+JjCM7&&^emKIRdDsWkW=dC{!~J0rd-v!I+sFJDTn7qZ_i>k$?Ssym z&R9=qNHJM0?hSs2n+mk;>Fax8M$&;_zd3nE2Cp_|ZKo5mi-Y!WA8zleBiFjg-6!-x zeM38@nX#O+B$;`eZ(JYplevgwI6wM{UvBS+jUkv^a}JuGNtAeOcvw0RGe1ZV8 zF8sxQ{Bm22y5yQ<1tSXGhgA^>53Yb1i9f{&5wnf-ar)rAaQvHa76k1K4t?H0oX`zN zj_O>d5j@gqRGV4XVj8ih>A33LO##J`^Xg{ zRPEwa`$&7510pnMIvj{4$5`Qu=B-T+0tp~e&V2McVOyt6QhYqRQtqi zr^EN$Y;(~cM9`b&e{7W)xZ2lBJ#ae-?gD3*oQ3}MVe^MsG{uCj6b0d0Kmc4DWobuO z?Os*m=z2m6j69?bu@7GOk!$25E7pr)n(-G3TRoiqq33iD4tqP6$w6|0bS9)TQQLl< z74m(qHT=IkS8SQ&%xO5~-ddALFG%5=pH_@gi|o?eRWDGz_T14X z6R1l`p-{7x3F8tG$kVx2emH7bNqtMTBkp)OBAK$^_H;x-_0ogVL~L2)>MicQY5i`4B>T>vU_lHNWjuO_oo^jD}9XjRO5(Hn(b4vKDijJF|*uU06@332L(z6HwPlETCKJ z%YG$XjZRNRd`&ubS~9Oafwn|nJ5}nt{F+QvPj!^6g#bOR)`ZqslTp`mpbBP7eY@XT zK#)(bs+*#L#a^Iau0lf-o~Onkck5PeX+rtbI3+!W%0pq{ROmg_*3GW+&Xki_@-tH? zCf6}DTY|nzG-56&iD;t#@RCRmlg{nVVb5-`ys=hR`-IFeQ0PT#-}nm4>( z4evZiWHJYd5jK^oO@j*!*spol2<9T+wbL^cN7ku%l5!q1>gLMI>&20EEXG{u?x7og zc^?_W29dmEG#jLZ+l*$m3ZId$$!rzw6g#(={J;xCw=C>PHor52IMM}O8H%H|)HTYU za`!9U81mb`wQ?VZ;^;4RO=9gH3_HT!I&jdOY;PZSx(i%oDszI8U1eH&H!>n?=zPZV zYQ(bchuJH4G$EjP-8tOeJ7ixic26ONJ(^5n*GH!WU0}u&G&*lH{ZxwVc^gN+dBf=fmqglv zL2|XRoMtcIm$3!dNatrc*+`4njnznd3odGjk5Uv=byzpx>#-2vrRw}+ydAmT_rSO)MW}>&AGqFNBS}`dyCs~t8sn82pG3d;# zueaIj!o{JtRoxq|b#;8+%LWMlg8}X!9&n)jTK2y5)*XI;7m}sr1bLH)4QX@^9ql-G z*K(Y?*Aske#+OC%d!n;fF#PrewLvxepn&++q2K8T?M!8Jvb)*a12r2u2ux?A_-dXh zl@4`5MP-rNx=3TGRbDTywcPKl{lxWj`s^x{m-{J$fIAgBOz0#b&atQcI)|(I)eJJS zd$BX$iwcFOy{g3ptw8&|^`3|Vzx#Z%THpK3D*?__PTo=~rSf}btMaMJ4`GqF8OnK< z+go(MY_Ibq^on+c+9_A%up&LxFzPS!TV-dRXK6irNXrI{s3umLuJ@vya@bsm}K)Yoz9 z@ipru$f1F z2nA{di>IwL)G~k%pqI6GdUmVkJ;#&|^1rZ_T0@LB2oD7QYzY zPwZ5p!OgVbVin&Ol_H6-pIasMoe)f+{$NH-_(nOhB0{T}4a;be&sM1trinNNegI`@vXjB< zW}z}Z4JWOGlTwwZ9m50_hc%#?#gx;RrAi=JP{j0=%gU5MCKzia5b>y|&N!T?fg17e z{pmyBMz>j+{)Jzww)mSjJkr^3r+=gmXLM%JHX`Wo&Vv_L zdc$5EnHAd9kUz38Q-8_2?vzC2XdOP4Mly$?N>DfqUk!1aI4@oD^ub8vIMCXO9fwOp z^y(mbv)JrnMKsKTJMb*MQu-73)<|=#+9U3%Um&HC&ugCI@JGW;d3fkD6o{`^1tofS z@dhk$_gA_JD2`iFdVe7?Esg?I-^qE;o)3Bi1 z2ZxFb%j~Q1m9*YKiaTR=+E>%nb^L0Y_507;)%6Q~v3_4q+&YCcv+NW!<=gKrp-~b*3Bu9t;HDxY&;CAb|3xJgKL^QjP5f>bw){VfxPEU@y5Q6k~QY3O4ashVhcw(h4`V?=R(9s)?+34=^&h$?4TZ(R%ng4NoyTTZh{n?bj+XY5n945`U^VX1(-<2+c1J$;A&l z``WLSqE)bPa^CZL@RIiUZks;BS8fHj zy7i)_lb*JEYk`-vj$3Pilui!bs+G1E-DtLIrS94b;8v~lU2|35s+G#?wF+Cc(t3?< zXscF=Z&VL$*Gl-cI=<~%iM~b|x?L;9S81}hYbE!^%Ixi0X+4CAkK(BUty&2^LknjE z%5bWc%ImB)+qIH;?fr1ORw}Q*A8yx5=r#Alom$Cz?tZvaD_K|F4|i&%>ACyiPR;VW z?tZvaD={y;AMVsj(DnDjomz>y=6<+SD@`}v4|i&%?M3&)oqEN1-TiR4R{E~FAMVyl z<@NW&-CAkA=6<+aE5$e74|i)N{M!5BZoN{x`hK`uuNbemAMVyl?u+k-yS37K?fr1K zRzk17AMVvk<#qSNy;{k9?tWzeT9Yxt4T;B60r*IkG=o&6pNFBs!FiJ-RXvyv;OM921>py+| z<$v}@&QX%A^0AE2DZ}K_gL{NGS{)i$j~Nc=MBT3z2i9ZyY{?x@f)(x%)?eB`s*%N+ zT|xh}Ki2!xSh+k+1bVnmZeUg6QqjtNcpnK-InuSwyczM`-=6Sb> znT8~!f(Y{!NsH+QXs3T#CHhGxqn-Y_PQs%>ZY&`(mXQ{V1VuCJJ8(MthdbMc*e9V% z8L_388~HHr>edu6R*bYF9_kI8V|RFGz{|v1Hg}791IatpP*Ecr^UD4t^XWu4xqv)hg{^;*UJE@WWgN<$Q4aJI@^{K+&x< zRD2HHhiGQZ)#Zoi&V_beH1hP(rhjwqT@prHNP&i?!43S|(6WzY`VbU!0yAnC96R}g zq-hk%l1j!QRKP~WA&^!Q4gpOC9G>F~&px}=a(qJezbCzYJ9+Wi4?iT%G;(la90#^X z^6j(93uapV_OAQlU(qafzDLIb)E(bGLtjYUE7S^Xw9FyN9iYSDJODgZ3UF-|2q1Ph z#B|mw;YLyX;U zQCZCnHqu;8J^Qe`x)v%WF_$y+r5u6btE>xo;c;q+ODz%n&0Z_j%~ilrdi_>B}8_E#VW+mNnTEYRy6Pg!+|}yfUap(i%|Foj7*UT|ON7vW|cezVu7%`ia-KrF4}g z*5e1=7Jfb=!f8P=T@ZqvbBcc(%%;ZvS>!r?eNMzhgJzxv0o&rZ*; zNkvtOss82Z6*_TOss?D0qJ@jsuaB Date: Wed, 6 Mar 2013 14:24:03 +0530 Subject: [PATCH 108/982] fixes in price list for purchase --- buying/doctype/purchase_common/purchase_common.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buying/doctype/purchase_common/purchase_common.js b/buying/doctype/purchase_common/purchase_common.js index 7775426eaa..05b7bcbef8 100644 --- a/buying/doctype/purchase_common/purchase_common.js +++ b/buying/doctype/purchase_common/purchase_common.js @@ -75,6 +75,8 @@ erpnext.buying.BuyingController = erpnext.utils.Controller.extend({ }); } else { me.price_list_currency(); + if (callback_fn) callback_fn(me.frm.doc, me.frm.doc.doctype, + me.frm.doc.name); } } }, From 4244b3b267edd91777ec5a60f4da863e1a37c5f0 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 6 Mar 2013 16:49:13 +0530 Subject: [PATCH 109/982] fix in monthly salary register --- .../monthly_salary_register/monthly_salary_register.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hr/search_criteria/monthly_salary_register/monthly_salary_register.py b/hr/search_criteria/monthly_salary_register/monthly_salary_register.py index 5171aa45d5..2291b6682d 100644 --- a/hr/search_criteria/monthly_salary_register/monthly_salary_register.py +++ b/hr/search_criteria/monthly_salary_register/monthly_salary_register.py @@ -38,8 +38,8 @@ for d in li: for r in res: - total_lwp += r[col_idx['Leave Without Pay']] - total_arr += r[col_idx['Arrear Amount']] + total_lwp += flt(r[col_idx['Leave Without Pay']]) + total_arr += flt(r[col_idx['Arrear Amount']]) for d1 in li: d2 = '%s'%d1 From a72c5127a6b6c1a285a2e5a0b374bf468eb1c0c6 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 6 Mar 2013 18:50:53 +0530 Subject: [PATCH 110/982] aii: gl entries for delivery note --- accounts/report/gross_profit/gross_profit.py | 49 ++-------- stock/doctype/delivery_note/delivery_note.py | 75 ++++++++++++++- .../delivery_note/test_delivery_note.py | 95 ++++++++++++++++++- stock/doctype/item/item.txt | 14 +-- stock/utils.py | 35 ++++++- 5 files changed, 206 insertions(+), 62 deletions(-) diff --git a/accounts/report/gross_profit/gross_profit.py b/accounts/report/gross_profit/gross_profit.py index de8651bb66..fa926dacde 100644 --- a/accounts/report/gross_profit/gross_profit.py +++ b/accounts/report/gross_profit/gross_profit.py @@ -1,15 +1,13 @@ from __future__ import unicode_literals import webnotes from webnotes.utils import flt - -stock_ledger_entries = None -item_sales_bom = None +from stock.utils import get_buying_amount, get_sales_bom def execute(filters=None): if not filters: filters = {} - get_stock_ledger_entries(filters) - get_sales_bom() + stock_ledger_entries = get_stock_ledger_entries(filters) + item_sales_bom = get_sales_bom() delivery_note_items = webnotes.conn.sql("""select dn.name, dn.posting_date, dn.posting_time, dn.project_name, item.item_code, item.item_name, item.description, item.warehouse, @@ -26,7 +24,8 @@ def execute(filters=None): data = [] for row in delivery_note_items: selling_amount = flt(row.amount) - buying_amount = get_buying_amount(row) + buying_amount = get_buying_amount(row.item_code, row.warehouse, + row.qty, row.name, row.item_row, stock_ledger_entries, item_sales_bom) if selling_amount: gross_profit = selling_amount - buying_amount gross_profit_percent = (gross_profit / selling_amount) * 100.0 @@ -38,42 +37,8 @@ def execute(filters=None): gross_profit, gross_profit_percent, row.project]) return columns, data - -def get_buying_amount(row): - if item_sales_bom.get(row.item_code): - # sales bom item - buying_amount = 0.0 - for bom_item in item_sales_bom[row.item_code]: - buying_amount += _get_buying_amount(row.name, "[** No Item Row **]", - bom_item.item_code, row.warehouse, bom_item.qty * row.qty) - return buying_amount - else: - # doesn't have sales bom - return _get_buying_amount(row.name, row.item_row, row.item_code, row.warehouse, row.qty) - -def _get_buying_amount(voucher_no, item_row, item_code, warehouse, qty): - for i, sle in enumerate(stock_ledger_entries): - if sle.voucher_type == "Delivery Note" and sle.voucher_no == voucher_no: - if (sle.voucher_detail_no == item_row) or \ - (sle.item_code == item_code and sle.warehouse == warehouse and \ - abs(flt(sle.qty)) == qty): - buying_amount = flt(stock_ledger_entries[i+1].stock_value) - flt(sle.stock_value) - - return buying_amount - - return 0.0 - -def get_sales_bom(): - global item_sales_bom - - item_sales_bom = {} - - for r in webnotes.conn.sql("""select parent, item_code, qty from `tabSales BOM Item`""", as_dict=1): - item_sales_bom.setdefault(r.parent, []).append(r) - -def get_stock_ledger_entries(filters): - global stock_ledger_entries +def get_stock_ledger_entries(filters): query = """select item_code, voucher_type, voucher_no, voucher_detail_no, posting_date, posting_time, stock_value, warehouse, actual_qty as qty @@ -84,4 +49,4 @@ def get_stock_ledger_entries(filters): query += " order by item_code desc, warehouse desc, posting_date desc, posting_time desc, name desc" - stock_ledger_entries = webnotes.conn.sql(query, filters, as_dict=True) + return webnotes.conn.sql(query, filters, as_dict=True) diff --git a/stock/doctype/delivery_note/delivery_note.py b/stock/doctype/delivery_note/delivery_note.py index 35d008bcca..c0b99166ee 100644 --- a/stock/doctype/delivery_note/delivery_note.py +++ b/stock/doctype/delivery_note/delivery_note.py @@ -17,7 +17,7 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import cstr, flt, getdate +from webnotes.utils import cstr, flt, getdate, cint from webnotes.model.bean import getlist from webnotes.model.code import get_obj from webnotes import msgprint @@ -251,6 +251,8 @@ class DocType(SellingController): self.update_stock_ledger(update_stock = 1) self.credit_limit() + + self.make_gl_entries() # set DN status webnotes.conn.set(self.doc, 'status', 'Submitted') @@ -293,6 +295,8 @@ class DocType(SellingController): self.update_stock_ledger(update_stock = -1) webnotes.conn.set(self.doc, 'status', 'Cancelled') self.cancel_packing_slips() + + self.make_gl_entries() def check_next_docstatus(self): @@ -389,4 +393,71 @@ class DocType(SellingController): self.doclist = get_obj('Sales Common').make_packing_list(self,'delivery_note_details') sl = get_obj('Stock Ledger') sl.scrub_serial_nos(self) - sl.scrub_serial_nos(self, 'packing_details') \ No newline at end of file + sl.scrub_serial_nos(self, 'packing_details') + + def make_gl_entries(self): + if not cint(webnotes.defaults.get_global_default("auto_inventory_accounting")): + return + + abbr = webnotes.conn.get_value("Company", self.doc.company, "abbr") + stock_delivered_account = "Stock Delivered But Not Billed - %s" % (abbr,) + stock_in_hand_account = self.get_stock_in_hand_account() + + total_buying_amount = self.get_total_buying_amount() + if total_buying_amount: + gl_entries = [ + # credit stock in hand account + self.get_gl_dict({ + "account": stock_in_hand_account, + "against": stock_delivered_account, + "credit": total_buying_amount, + "remarks": self.doc.remarks or "Accounting Entry for Stock", + }, self.doc.docstatus == 2), + + # debit stock received but not billed account + self.get_gl_dict({ + "account": stock_delivered_account, + "against": stock_in_hand_account, + "debit": total_buying_amount, + "remarks": self.doc.remarks or "Accounting Entry for Stock", + }, self.doc.docstatus == 2), + ] + from accounts.general_ledger import make_gl_entries + make_gl_entries(gl_entries, cancel=self.doc.docstatus == 2) + + def get_total_buying_amount(self): + from stock.utils import get_buying_amount, get_sales_bom + stock_ledger_entries = self.get_stock_ledger_entries() + item_sales_bom = get_sales_bom() + total_buying_amount = 0 + + if stock_ledger_entries: + for item in self.doclist.get({"parentfield": "delivery_note_details"}): + buying_amount = get_buying_amount(item.item_code, item.warehouse, item.qty, + self.doc.name, item.name, stock_ledger_entries, item_sales_bom) + total_buying_amount += buying_amount + + return total_buying_amount + + def get_stock_ledger_entries(self): + item_list, warehouse_list = self.get_distinct_item_warehouse() + if item_list and warehouse_list: + return webnotes.conn.sql("""select item_code, voucher_type, voucher_no, + voucher_detail_no, posting_date, posting_time, stock_value, + warehouse, actual_qty as qty from `tabStock Ledger Entry` + where ifnull(`is_cancelled`, "No") = "No" and company = %s + and item_code in (%s) and warehouse in (%s) + order by item_code desc, warehouse desc, posting_date desc, + posting_time desc, name desc""" % + ('%s', ', '.join(['%s']*len(item_list)), ', '.join(['%s']*len(warehouse_list))), + tuple([self.doc.company] + item_list + warehouse_list), as_dict=1) + + def get_distinct_item_warehouse(self): + item_list = [] + warehouse_list = [] + for item in self.doclist.get({"parentfield": "delivery_note_details"}) \ + + self.doclist.get({"parentfield": "packing_details"}): + item_list.append(item.item_code) + warehouse_list.append(item.warehouse) + + return list(set(item_list)), list(set(warehouse_list)) \ No newline at end of file diff --git a/stock/doctype/delivery_note/test_delivery_note.py b/stock/doctype/delivery_note/test_delivery_note.py index 4666360e79..c2bb5d07ca 100644 --- a/stock/doctype/delivery_note/test_delivery_note.py +++ b/stock/doctype/delivery_note/test_delivery_note.py @@ -1,3 +1,89 @@ +# ERPNext - web based ERP (http://erpnext.com) +# Copyright (C) 2012 Web Notes Technologies Pvt Ltd +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +from __future__ import unicode_literals +import unittest +import webnotes +import webnotes.defaults +from webnotes.utils import cint + +class TestDeliveryNote(unittest.TestCase): + def _insert_purchase_receipt(self): + from stock.doctype.purchase_receipt.test_purchase_receipt import test_records as pr_test_records + pr = webnotes.bean(copy=pr_test_records[0]) + pr.run_method("calculate_taxes_and_totals") + pr.insert() + pr.submit() + + def test_delivery_note_no_gl_entry(self): + webnotes.conn.sql("""delete from `tabBin`""") + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + self.assertEqual(cint(webnotes.defaults.get_global_default("auto_inventory_accounting")), 0) + + self._insert_purchase_receipt() + + dn = webnotes.bean(copy=test_records[0]) + dn.insert() + dn.submit() + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Delivery Note' and voucher_no=%s + order by account desc""", dn.doc.name, as_dict=1) + + self.assertTrue(not gl_entries) + + def test_delivery_note_gl_entry(self): + webnotes.conn.sql("""delete from `tabBin`""") + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + self.assertEqual(cint(webnotes.defaults.get_global_default("auto_inventory_accounting")), 1) + + self._insert_purchase_receipt() + + dn = webnotes.bean(copy=test_records[0]) + stock_in_hand_account = webnotes.conn.get_value("Company", dn.doc.company, + "stock_in_hand_account") + + from accounts.utils import get_balance_on + prev_bal = get_balance_on(stock_in_hand_account, dn.doc.posting_date) + + dn.insert() + dn.submit() + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Delivery Note' and voucher_no=%s + order by account asc""", dn.doc.name, as_dict=1) + self.assertTrue(gl_entries) + + expected_values = sorted([ + [stock_in_hand_account, 0.0, 375.0], + ["Stock Delivered But Not Billed - _TC", 375.0, 0.0] + ]) + + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_values[i][0], gle.account) + self.assertEquals(expected_values[i][1], gle.debit) + self.assertEquals(expected_values[i][2], gle.credit) + + # check stock in hand balance + bal = get_balance_on(stock_in_hand_account, dn.doc.posting_date) + self.assertEquals(bal, prev_bal - 375.0) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + test_records = [ [ { @@ -15,18 +101,19 @@ test_records = [ "price_list_name": "_Test Price List", "status": "Draft", "territory": "_Test Territory", + "net_total": 500.0, "grand_total": 500.0, "grand_total_export": 500.0, }, { "description": "CPU", "doctype": "Delivery Note Item", - "item_code": "_Test Item Home Desktop 100", + "item_code": "_Test Item", "item_name": "CPU", "parentfield": "delivery_note_details", - "qty": 4.0, - "basic_rate": 50.0, - "export_rate": 50.0, + "qty": 5.0, + "basic_rate": 100.0, + "export_rate": 100.0, "amount": 500.0, "warehouse": "_Test Warehouse", "stock_uom": "No." diff --git a/stock/doctype/item/item.txt b/stock/doctype/item/item.txt index 1a48368ad2..036b9d54f6 100644 --- a/stock/doctype/item/item.txt +++ b/stock/doctype/item/item.txt @@ -2,7 +2,7 @@ { "creation": "2013-02-21 14:54:43", "docstatus": 0, - "modified": "2013-02-28 10:43:02", + "modified": "2013-03-06 16:02:47", "modified_by": "Administrator", "owner": "Administrator" }, @@ -402,18 +402,6 @@ "oldfieldtype": "Link", "options": "Cost Center" }, - { - "depends_on": "eval:doc.is_purchase_item==\"Yes\"", - "description": "Buying Cost will be updated from Purchase Orders and Purchase Receipts.
    The buying cost will calculated by moving average method.", - "doctype": "DocField", - "fieldname": "buying_cost", - "fieldtype": "Float", - "label": "Buying Cost", - "no_copy": 1, - "oldfieldname": "buying_cost", - "oldfieldtype": "Currency", - "read_only": 1 - }, { "depends_on": "eval:doc.is_purchase_item==\"Yes\"", "doctype": "DocField", diff --git a/stock/utils.py b/stock/utils.py index 6fac0fdef1..9055ceea25 100644 --- a/stock/utils.py +++ b/stock/utils.py @@ -163,4 +163,37 @@ def get_warehouse_list(doctype, txt, searchfield, start, page_len, filters): elif webnotes.session.user in warehouse_users: wlist.append([w]) return wlist - \ No newline at end of file + +def get_buying_amount(item_code, warehouse, qty, voucher_no, voucher_detail_no, + stock_ledger_entries, item_sales_bom): + if item_sales_bom.get(item_code): + # sales bom item + buying_amount = 0.0 + for bom_item in item_sales_bom[item_code]: + buying_amount += _get_buying_amount(voucher_no, "[** No Item Row **]", + item_code, warehouse, bom_item.qty * qty, stock_ledger_entries) + return buying_amount + else: + # doesn't have sales bom + return _get_buying_amount(voucher_no, voucher_detail_no, item_code, warehouse, qty, + stock_ledger_entries) + +def _get_buying_amount(voucher_no, item_row, item_code, warehouse, qty, stock_ledger_entries): + for i, sle in enumerate(stock_ledger_entries): + if sle.voucher_type == "Delivery Note" and sle.voucher_no == voucher_no: + if (sle.voucher_detail_no == item_row) or \ + (sle.item_code == item_code and sle.warehouse == warehouse and \ + abs(flt(sle.qty)) == qty): + buying_amount = flt(stock_ledger_entries[i+1].stock_value) - flt(sle.stock_value) + + return buying_amount + + return 0.0 + +def get_sales_bom(): + item_sales_bom = {} + for r in webnotes.conn.sql("""select parent, item_code, qty from `tabSales BOM Item`""", + as_dict=1): + item_sales_bom.setdefault(r.parent, []).append(r) + + return item_sales_bom \ No newline at end of file From 80f7637ae6e9d0e3fc273736b703267bb4d7137e Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 7 Mar 2013 11:37:33 +0530 Subject: [PATCH 111/982] added print width in txts of istable type doctypes --- .../bank_reconciliation_detail.txt | 4 +- .../doctype/budget_detail/budget_detail.txt | 4 +- .../budget_distribution_detail.txt | 4 +- .../c_form_invoice_detail.txt | 9 +++- .../journal_voucher_detail.txt | 6 ++- .../multi_ledger_report_detail.txt | 10 ++--- ...ayment_to_invoice_matching_tool_detail.txt | 4 +- .../purchase_invoice_advance.txt | 9 +++- .../purchase_invoice_item.txt | 4 +- .../purchase_taxes_and_charges.txt | 5 ++- .../sales_invoice_advance.txt | 9 +++- .../sales_invoice_item/sales_invoice_item.txt | 7 ++- .../sales_taxes_and_charges.txt | 6 ++- .../purchase_order_item.txt | 4 +- .../purchase_order_item_supplied.txt | 4 +- .../purchase_receipt_item_supplied.txt | 5 ++- .../quality_inspection_reading.txt | 9 ++-- .../supplier_quotation_item.txt | 4 +- hr/doctype/appraisal_goal/appraisal_goal.txt | 8 +++- .../appraisal_template_goal.txt | 6 ++- .../employee_education/employee_education.txt | 10 ++--- .../employee_external_work_history.txt | 4 +- .../employee_internal_work_history.txt | 9 ++-- .../employee_training/employee_training.txt | 9 ++-- .../expense_claim_detail.txt | 9 +++- hr/doctype/holiday/holiday.txt | 10 ++--- .../leave_block_list_allow.txt | 5 ++- .../leave_block_list_date.txt | 5 ++- .../other_income_detail.txt | 5 ++- .../salary_slip_deduction.txt | 5 ++- .../salary_slip_earning.txt | 5 ++- .../salary_structure_deduction.txt | 5 ++- .../salary_structure_earning.txt | 5 ++- .../bom_explosion_item/bom_explosion_item.txt | 6 ++- manufacturing/doctype/bom_item/bom_item.txt | 7 ++- .../doctype/bom_operation/bom_operation.txt | 4 +- .../production_plan_item.txt | 10 ++++- .../production_plan_sales_order.txt | 8 +++- .../project_milestone/project_milestone.txt | 9 ++-- .../time_log_batch_detail.txt | 5 ++- .../installation_note_item.txt | 9 +++- .../opportunity_item/opportunity_item.txt | 5 ++- .../doctype/quotation_item/quotation_item.txt | 19 +++++++- .../sales_and_purchase_return_item.txt | 5 ++- .../sales_order_item/sales_order_item.txt | 22 +++++++++- selling/doctype/sales_team/sales_team.txt | 9 +++- setup/doctype/series_detail/series_detail.txt | 12 ++--- setup/doctype/sms_parameter/sms_parameter.txt | 10 ++--- setup/doctype/target_detail/target_detail.txt | 4 +- .../workflow_action_detail.txt | 10 ++--- .../workflow_rule_detail.txt | 12 ++--- .../delivery_note_item/delivery_note_item.txt | 24 +++++++++- .../delivery_note_packing_item.txt | 5 ++- stock/doctype/featured_item/featured_item.txt | 26 +++++------ .../item_customer_detail.txt | 11 +++-- stock/doctype/item_price/item_price.txt | 4 +- .../item_quality_inspection_parameter.txt | 10 ++--- stock/doctype/item_reorder/item_reorder.txt | 4 +- stock/doctype/item_supplier/item_supplier.txt | 10 ++--- stock/doctype/item_tax/item_tax.txt | 4 +- .../item_website_specification.txt | 32 +++++++------- .../landed_cost_item/landed_cost_item.txt | 5 ++- .../landed_cost_purchase_receipt.txt | 11 +++-- .../material_request_item.txt | 14 +++++- .../packing_slip_item/packing_slip_item.py | 8 ++++ .../packing_slip_item/packing_slip_item.txt | 10 ++++- .../purchase_receipt_item.txt | 4 +- .../doctype/sales_bom_item/sales_bom_item.txt | 5 ++- .../stock_entry_detail/stock_entry_detail.txt | 4 +- .../uom_conversion_detail.txt | 9 ++-- .../doctype/warehouse_user/warehouse_user.txt | 5 ++- .../maintenance_schedule_detail.txt | 5 ++- .../maintenance_schedule_item.txt | 6 ++- .../maintenance_visit_purpose.txt | 8 +++- .../gl_mapper_detail/gl_mapper_detail.txt | 9 ++-- .../doctype/sms_receiver/sms_receiver.txt | 10 ++--- .../about_us_team_member.txt | 31 ++++++------- .../company_history/company_history.txt | 33 +++++++------- website/doctype/related_page/related_page.txt | 9 ++-- website/doctype/top_bar_item/top_bar_item.txt | 11 +++-- .../website_item_group/website_item_group.txt | 28 ++++++------ .../website_product_category.txt | 24 +++++----- .../website_slideshow_item.txt | 44 ++++++++++--------- 83 files changed, 460 insertions(+), 336 deletions(-) create mode 100644 stock/doctype/packing_slip_item/packing_slip_item.py diff --git a/accounts/doctype/bank_reconciliation_detail/bank_reconciliation_detail.txt b/accounts/doctype/bank_reconciliation_detail/bank_reconciliation_detail.txt index 1b8b991bb8..d814ad863c 100644 --- a/accounts/doctype/bank_reconciliation_detail/bank_reconciliation_detail.txt +++ b/accounts/doctype/bank_reconciliation_detail/bank_reconciliation_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:05", + "creation": "2013-02-22 01:27:37", "docstatus": 0, - "modified": "2013-01-29 16:27:50", + "modified": "2013-03-07 07:03:18", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/accounts/doctype/budget_detail/budget_detail.txt b/accounts/doctype/budget_detail/budget_detail.txt index b2b312c142..3feb6f75ad 100644 --- a/accounts/doctype/budget_detail/budget_detail.txt +++ b/accounts/doctype/budget_detail/budget_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:05", + "creation": "2013-02-22 01:27:37", "docstatus": 0, - "modified": "2013-01-29 16:28:16", + "modified": "2013-03-07 07:03:19", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/accounts/doctype/budget_distribution_detail/budget_distribution_detail.txt b/accounts/doctype/budget_distribution_detail/budget_distribution_detail.txt index 0f11876d0f..ff5d8fd073 100644 --- a/accounts/doctype/budget_distribution_detail/budget_distribution_detail.txt +++ b/accounts/doctype/budget_distribution_detail/budget_distribution_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:05", + "creation": "2013-02-22 01:27:38", "docstatus": 0, - "modified": "2013-01-22 14:41:34", + "modified": "2013-03-07 07:03:19", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/accounts/doctype/c_form_invoice_detail/c_form_invoice_detail.txt b/accounts/doctype/c_form_invoice_detail/c_form_invoice_detail.txt index f9b73728ba..ba247d3482 100644 --- a/accounts/doctype/c_form_invoice_detail/c_form_invoice_detail.txt +++ b/accounts/doctype/c_form_invoice_detail/c_form_invoice_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:06", + "creation": "2013-02-22 01:27:38", "docstatus": 0, - "modified": "2013-01-29 16:27:50", + "modified": "2013-03-07 07:03:19", "modified_by": "Administrator", "owner": "Administrator" }, @@ -30,6 +30,7 @@ "fieldtype": "Link", "label": "Invoice No", "options": "Sales Invoice", + "print_width": "160px", "width": "160px" }, { @@ -37,6 +38,7 @@ "fieldname": "invoice_date", "fieldtype": "Date", "label": "Invoice Date", + "print_width": "120px", "read_only": 1, "width": "120px" }, @@ -46,6 +48,7 @@ "fieldtype": "Link", "label": "Territory", "options": "Territory", + "print_width": "120px", "read_only": 1, "width": "120px" }, @@ -55,6 +58,7 @@ "fieldtype": "Currency", "label": "Net Total", "options": "Company:company:default_currency", + "print_width": "120px", "read_only": 1, "width": "120px" }, @@ -64,6 +68,7 @@ "fieldtype": "Currency", "label": "Grand Total", "options": "Company:company:default_currency", + "print_width": "120px", "read_only": 1, "width": "120px" } diff --git a/accounts/doctype/journal_voucher_detail/journal_voucher_detail.txt b/accounts/doctype/journal_voucher_detail/journal_voucher_detail.txt index 245ddf117f..ac30346d2c 100644 --- a/accounts/doctype/journal_voucher_detail/journal_voucher_detail.txt +++ b/accounts/doctype/journal_voucher_detail/journal_voucher_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:06", + "creation": "2013-02-22 01:27:39", "docstatus": 0, - "modified": "2013-01-29 16:27:50", + "modified": "2013-03-07 07:03:23", "modified_by": "Administrator", "owner": "Administrator" }, @@ -34,6 +34,7 @@ "oldfieldname": "account", "oldfieldtype": "Link", "options": "Account", + "print_width": "250px", "reqd": 1, "search_index": 1, "width": "250px" @@ -65,6 +66,7 @@ "oldfieldname": "cost_center", "oldfieldtype": "Link", "options": "Cost Center", + "print_width": "180px", "search_index": 0, "width": "180px" }, diff --git a/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt b/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt index df91e1c7b7..46563ddac1 100755 --- a/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt +++ b/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:35:44", + "creation": "2013-02-22 01:27:39", "docstatus": 0, - "modified": "2012-03-27 14:35:44", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Accounts", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 3 + "name": "__common__" }, { "doctype": "DocField", @@ -26,6 +23,7 @@ "parentfield": "fields", "parenttype": "DocType", "permlevel": 0, + "print_width": "300px", "reqd": 1, "width": "300px" }, diff --git a/accounts/doctype/payment_to_invoice_matching_tool_detail/payment_to_invoice_matching_tool_detail.txt b/accounts/doctype/payment_to_invoice_matching_tool_detail/payment_to_invoice_matching_tool_detail.txt index 5fcb6066e2..1908101b7b 100644 --- a/accounts/doctype/payment_to_invoice_matching_tool_detail/payment_to_invoice_matching_tool_detail.txt +++ b/accounts/doctype/payment_to_invoice_matching_tool_detail/payment_to_invoice_matching_tool_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:07", + "creation": "2013-02-22 01:27:39", "docstatus": 0, - "modified": "2013-01-29 16:27:50", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.txt b/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.txt index dadf28aca0..201bb53f03 100644 --- a/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.txt +++ b/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:08", + "creation": "2013-02-22 01:27:40", "docstatus": 0, - "modified": "2013-01-29 16:27:50", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -33,6 +33,7 @@ "oldfieldname": "journal_voucher", "oldfieldtype": "Link", "options": "Journal Voucher", + "print_width": "180px", "read_only": 1, "width": "180px" }, @@ -45,6 +46,7 @@ "oldfieldname": "jv_detail_no", "oldfieldtype": "Date", "print_hide": 1, + "print_width": "80px", "read_only": 1, "width": "80px" }, @@ -56,6 +58,7 @@ "oldfieldname": "advance_amount", "oldfieldtype": "Currency", "options": "Company:company:default_currency", + "print_width": "100px", "read_only": 1, "width": "100px" }, @@ -67,6 +70,7 @@ "oldfieldname": "allocated_amount", "oldfieldtype": "Currency", "options": "Company:company:default_currency", + "print_width": "100px", "width": "100px" }, { @@ -76,6 +80,7 @@ "label": "Remarks", "oldfieldname": "remarks", "oldfieldtype": "Small Text", + "print_width": "150px", "read_only": 1, "width": "150px" } diff --git a/accounts/doctype/purchase_invoice_item/purchase_invoice_item.txt b/accounts/doctype/purchase_invoice_item/purchase_invoice_item.txt index 553041e780..b8d9a1d4ad 100755 --- a/accounts/doctype/purchase_invoice_item/purchase_invoice_item.txt +++ b/accounts/doctype/purchase_invoice_item/purchase_invoice_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-11 10:54:51", + "creation": "2013-02-27 13:45:00", "docstatus": 0, - "modified": "2013-02-27 18:10:04", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.txt b/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.txt index 6067afb95d..62ee960759 100644 --- a/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.txt +++ b/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:08", + "creation": "2013-02-22 01:27:40", "docstatus": 0, - "modified": "2013-01-29 16:27:50", + "modified": "2013-03-07 07:03:29", "modified_by": "Administrator", "owner": "wasim@webnotestech.com" }, @@ -62,6 +62,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Small Text", + "print_width": "300px", "reqd": 1, "width": "300px" }, diff --git a/accounts/doctype/sales_invoice_advance/sales_invoice_advance.txt b/accounts/doctype/sales_invoice_advance/sales_invoice_advance.txt index 6216c8952f..32ef4c55b9 100644 --- a/accounts/doctype/sales_invoice_advance/sales_invoice_advance.txt +++ b/accounts/doctype/sales_invoice_advance/sales_invoice_advance.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:09", + "creation": "2013-02-22 01:27:41", "docstatus": 0, - "modified": "2013-01-29 16:27:51", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -33,6 +33,7 @@ "oldfieldname": "journal_voucher", "oldfieldtype": "Link", "options": "Journal Voucher", + "print_width": "250px", "read_only": 1, "width": "250px" }, @@ -45,6 +46,7 @@ "oldfieldname": "jv_detail_no", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "120px", "read_only": 1, "width": "120px" }, @@ -56,6 +58,7 @@ "oldfieldname": "advance_amount", "oldfieldtype": "Currency", "options": "Company:company:default_currency", + "print_width": "120px", "read_only": 1, "width": "120px" }, @@ -67,6 +70,7 @@ "oldfieldname": "allocated_amount", "oldfieldtype": "Currency", "options": "Company:company:default_currency", + "print_width": "120px", "width": "120px" }, { @@ -76,6 +80,7 @@ "label": "Remarks", "oldfieldname": "remarks", "oldfieldtype": "Small Text", + "print_width": "150px", "read_only": 1, "width": "150px" } diff --git a/accounts/doctype/sales_invoice_item/sales_invoice_item.txt b/accounts/doctype/sales_invoice_item/sales_invoice_item.txt index ae1afe9af6..c8b18a4880 100644 --- a/accounts/doctype/sales_invoice_item/sales_invoice_item.txt +++ b/accounts/doctype/sales_invoice_item/sales_invoice_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-29 19:25:49", + "creation": "2013-03-05 09:11:04", "docstatus": 0, - "modified": "2013-03-01 13:41:51", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -73,6 +73,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Text", + "print_width": "200px", "reqd": 1, "width": "200px" }, @@ -190,6 +191,7 @@ "oldfieldtype": "Link", "options": "Account", "print_hide": 1, + "print_width": "120px", "reqd": 1, "width": "120px" }, @@ -203,6 +205,7 @@ "oldfieldtype": "Link", "options": "Cost Center", "print_hide": 1, + "print_width": "120px", "reqd": 0, "width": "120px" }, diff --git a/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.txt b/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.txt index bbac70409f..3b3252426b 100644 --- a/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.txt +++ b/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-24 15:56:19", + "creation": "2013-02-22 01:27:41", "docstatus": 0, - "modified": "2013-01-29 16:28:04", + "modified": "2013-03-07 07:03:31", "modified_by": "Administrator", "owner": "Administrator" }, @@ -63,6 +63,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Small Text", + "print_width": "300px", "reqd": 1, "width": "300px" }, @@ -163,6 +164,7 @@ "label": "Is this Tax included in Basic Rate?", "no_copy": 0, "print_hide": 1, + "print_width": "150px", "report_hide": 1, "width": "150px" } diff --git a/buying/doctype/purchase_order_item/purchase_order_item.txt b/buying/doctype/purchase_order_item/purchase_order_item.txt index edb30928f9..cd00f87253 100755 --- a/buying/doctype/purchase_order_item/purchase_order_item.txt +++ b/buying/doctype/purchase_order_item/purchase_order_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-07 11:00:11", + "creation": "2013-02-22 01:27:42", "docstatus": 0, - "modified": "2013-02-18 13:39:02", + "modified": "2013-03-07 07:03:27", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/buying/doctype/purchase_order_item_supplied/purchase_order_item_supplied.txt b/buying/doctype/purchase_order_item_supplied/purchase_order_item_supplied.txt index dd71989400..d08963b24b 100644 --- a/buying/doctype/purchase_order_item_supplied/purchase_order_item_supplied.txt +++ b/buying/doctype/purchase_order_item_supplied/purchase_order_item_supplied.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:10", + "creation": "2013-02-22 01:27:42", "docstatus": 0, - "modified": "2013-01-29 16:27:51", + "modified": "2013-03-07 07:03:28", "modified_by": "Administrator", "owner": "dhanalekshmi@webnotestech.com" }, diff --git a/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.txt b/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.txt index 4c5ba81d78..4c0ce0d5b2 100644 --- a/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.txt +++ b/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:10", + "creation": "2013-02-22 01:27:42", "docstatus": 0, - "modified": "2013-01-29 16:27:51", + "modified": "2013-03-07 07:03:28", "modified_by": "Administrator", "owner": "wasim@webnotestech.com" }, @@ -70,6 +70,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Data", + "print_width": "300px", "read_only": 1, "width": "300px" }, diff --git a/buying/doctype/quality_inspection_reading/quality_inspection_reading.txt b/buying/doctype/quality_inspection_reading/quality_inspection_reading.txt index c9f6b2d7b8..066185ecf7 100644 --- a/buying/doctype/quality_inspection_reading/quality_inspection_reading.txt +++ b/buying/doctype/quality_inspection_reading/quality_inspection_reading.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:35:52", + "creation": "2013-02-22 01:27:43", "docstatus": 0, - "modified": "2012-03-27 14:35:52", + "modified": "2013-03-07 07:03:29", "modified_by": "Administrator", "owner": "Administrator" }, @@ -11,10 +11,7 @@ "doctype": "DocType", "istable": 1, "module": "Buying", - "name": "__common__", - "section_style": "Tray", - "show_in_menu": 0, - "version": 2 + "name": "__common__" }, { "doctype": "DocField", diff --git a/buying/doctype/supplier_quotation_item/supplier_quotation_item.txt b/buying/doctype/supplier_quotation_item/supplier_quotation_item.txt index cf79f041d5..53fa9f8d95 100644 --- a/buying/doctype/supplier_quotation_item/supplier_quotation_item.txt +++ b/buying/doctype/supplier_quotation_item/supplier_quotation_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-29 19:25:55", + "creation": "2013-02-22 01:27:43", "docstatus": 0, - "modified": "2013-02-18 13:39:45", + "modified": "2013-03-07 07:03:32", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/hr/doctype/appraisal_goal/appraisal_goal.txt b/hr/doctype/appraisal_goal/appraisal_goal.txt index 7df60c172c..ed71e69fba 100644 --- a/hr/doctype/appraisal_goal/appraisal_goal.txt +++ b/hr/doctype/appraisal_goal/appraisal_goal.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:13", + "creation": "2013-02-22 01:27:44", "docstatus": 0, - "modified": "2013-01-22 14:16:18", + "modified": "2013-03-07 07:03:18", "modified_by": "Administrator", "owner": "ashwini@webnotestech.com" }, @@ -33,6 +33,7 @@ "label": "Goal", "oldfieldname": "kra", "oldfieldtype": "Small Text", + "print_width": "240px", "reqd": 1, "width": "240px" }, @@ -43,6 +44,7 @@ "label": "Weightage (%)", "oldfieldname": "per_weightage", "oldfieldtype": "Currency", + "print_width": "70px", "reqd": 1, "width": "70px" }, @@ -56,6 +58,7 @@ "oldfieldname": "score", "oldfieldtype": "Select", "options": "\n0\n1\n2\n3\n4\n5", + "print_width": "70px", "width": "70px" }, { @@ -66,6 +69,7 @@ "no_copy": 1, "oldfieldname": "score_earned", "oldfieldtype": "Currency", + "print_width": "70px", "read_only": 1, "width": "70px" } diff --git a/hr/doctype/appraisal_template_goal/appraisal_template_goal.txt b/hr/doctype/appraisal_template_goal/appraisal_template_goal.txt index 59d0e8defe..da9fde011a 100644 --- a/hr/doctype/appraisal_template_goal/appraisal_template_goal.txt +++ b/hr/doctype/appraisal_template_goal/appraisal_template_goal.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:13", + "creation": "2013-02-22 01:27:44", "docstatus": 0, - "modified": "2013-01-22 13:35:58", + "modified": "2013-03-07 07:03:18", "modified_by": "Administrator", "owner": "ashwini@webnotestech.com" }, @@ -34,6 +34,7 @@ "label": "KRA", "oldfieldname": "kra", "oldfieldtype": "Small Text", + "print_width": "200px", "width": "200px" }, { @@ -43,6 +44,7 @@ "label": "Weightage (%)", "oldfieldname": "per_weightage", "oldfieldtype": "Currency", + "print_width": "100px", "width": "100px" } ] \ No newline at end of file diff --git a/hr/doctype/employee_education/employee_education.txt b/hr/doctype/employee_education/employee_education.txt index dd07df8895..46b6f00d40 100644 --- a/hr/doctype/employee_education/employee_education.txt +++ b/hr/doctype/employee_education/employee_education.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:35:54", + "creation": "2013-02-22 01:27:45", "docstatus": 0, - "modified": "2012-03-27 14:35:54", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "HR", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 5 + "name": "__common__" }, { "doctype": "DocField", @@ -42,6 +39,7 @@ "label": "Qualification", "oldfieldname": "qualification", "oldfieldtype": "Data", + "print_width": "100px", "width": "100px" }, { diff --git a/hr/doctype/employee_external_work_history/employee_external_work_history.txt b/hr/doctype/employee_external_work_history/employee_external_work_history.txt index eea7d65773..05fc5c0a4e 100644 --- a/hr/doctype/employee_external_work_history/employee_external_work_history.txt +++ b/hr/doctype/employee_external_work_history/employee_external_work_history.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:14", + "creation": "2013-02-22 01:27:45", "docstatus": 0, - "modified": "2013-01-29 16:27:51", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/hr/doctype/employee_internal_work_history/employee_internal_work_history.txt b/hr/doctype/employee_internal_work_history/employee_internal_work_history.txt index dd1c11f104..d813e7cdad 100644 --- a/hr/doctype/employee_internal_work_history/employee_internal_work_history.txt +++ b/hr/doctype/employee_internal_work_history/employee_internal_work_history.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:35:57", + "creation": "2013-02-22 01:27:45", "docstatus": 0, - "modified": "2012-03-27 14:35:57", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "HR", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 6 + "name": "__common__" }, { "doctype": "DocField", diff --git a/hr/doctype/employee_training/employee_training.txt b/hr/doctype/employee_training/employee_training.txt index 256a99e13e..6b3a7544ad 100644 --- a/hr/doctype/employee_training/employee_training.txt +++ b/hr/doctype/employee_training/employee_training.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:35:59", + "creation": "2013-02-22 01:27:45", "docstatus": 0, - "modified": "2012-03-27 14:35:59", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "HR", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 5 + "name": "__common__" }, { "doctype": "DocField", diff --git a/hr/doctype/expense_claim_detail/expense_claim_detail.txt b/hr/doctype/expense_claim_detail/expense_claim_detail.txt index d8f9400b35..d2b5cf3c7d 100644 --- a/hr/doctype/expense_claim_detail/expense_claim_detail.txt +++ b/hr/doctype/expense_claim_detail/expense_claim_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:14", + "creation": "2013-02-22 01:27:46", "docstatus": 0, - "modified": "2013-01-29 16:27:51", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", "owner": "harshada@webnotestech.com" }, @@ -31,6 +31,7 @@ "label": "Expense Date", "oldfieldname": "expense_date", "oldfieldtype": "Date", + "print_width": "150px", "reqd": 0, "width": "150px" }, @@ -42,6 +43,7 @@ "oldfieldname": "expense_type", "oldfieldtype": "Link", "options": "link:Expense Claim Type", + "print_width": "150px", "reqd": 1, "width": "150px" }, @@ -52,6 +54,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Small Text", + "print_width": "300px", "width": "300px" }, { @@ -62,6 +65,7 @@ "oldfieldname": "claim_amount", "oldfieldtype": "Currency", "options": "Company:company:default_currency", + "print_width": "150px", "reqd": 1, "width": "150px" }, @@ -75,6 +79,7 @@ "oldfieldname": "sanctioned_amount", "oldfieldtype": "Currency", "options": "Company:company:default_currency", + "print_width": "150px", "width": "150px" } ] \ No newline at end of file diff --git a/hr/doctype/holiday/holiday.txt b/hr/doctype/holiday/holiday.txt index 734b970fa1..94f7936a4a 100644 --- a/hr/doctype/holiday/holiday.txt +++ b/hr/doctype/holiday/holiday.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:35:57", + "creation": "2013-02-22 01:27:46", "docstatus": 0, - "modified": "2012-03-27 14:35:57", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "HR", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 2 + "name": "__common__" }, { "doctype": "DocField", @@ -32,6 +29,7 @@ "fieldname": "description", "fieldtype": "Small Text", "label": "Description", + "print_width": "300px", "width": "300px" }, { diff --git a/hr/doctype/leave_block_list_allow/leave_block_list_allow.txt b/hr/doctype/leave_block_list_allow/leave_block_list_allow.txt index 4d73833d28..8e362f3542 100644 --- a/hr/doctype/leave_block_list_allow/leave_block_list_allow.txt +++ b/hr/doctype/leave_block_list_allow/leave_block_list_allow.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-14 17:37:38", + "creation": "2013-02-22 01:27:47", "docstatus": 0, - "modified": "2013-02-14 17:41:53", + "modified": "2013-03-07 07:03:23", "modified_by": "Administrator", "owner": "Administrator" }, @@ -23,6 +23,7 @@ "parentfield": "fields", "parenttype": "DocType", "permlevel": 0, + "print_width": "200px", "reqd": 1, "width": "200px" }, diff --git a/hr/doctype/leave_block_list_date/leave_block_list_date.txt b/hr/doctype/leave_block_list_date/leave_block_list_date.txt index 7c7ef38d4a..d0b9fbf1b1 100644 --- a/hr/doctype/leave_block_list_date/leave_block_list_date.txt +++ b/hr/doctype/leave_block_list_date/leave_block_list_date.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-14 17:37:38", + "creation": "2013-02-22 01:27:47", "docstatus": 0, - "modified": "2013-02-14 17:41:44", + "modified": "2013-03-07 07:03:23", "modified_by": "Administrator", "owner": "Administrator" }, @@ -19,6 +19,7 @@ "parentfield": "fields", "parenttype": "DocType", "permlevel": 0, + "print_width": "200px", "reqd": 1, "width": "200px" }, diff --git a/hr/doctype/other_income_detail/other_income_detail.txt b/hr/doctype/other_income_detail/other_income_detail.txt index 0913e4c221..b647ee75ea 100644 --- a/hr/doctype/other_income_detail/other_income_detail.txt +++ b/hr/doctype/other_income_detail/other_income_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:15", + "creation": "2013-02-22 01:27:47", "docstatus": 0, - "modified": "2013-01-22 14:56:40", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -44,6 +44,7 @@ "label": "Particulars", "oldfieldname": "particulars2", "oldfieldtype": "Small Text", + "print_width": "200px", "read_only": 1, "reqd": 1, "width": "200px" diff --git a/hr/doctype/salary_slip_deduction/salary_slip_deduction.txt b/hr/doctype/salary_slip_deduction/salary_slip_deduction.txt index 958147c1a9..86acef0c4f 100644 --- a/hr/doctype/salary_slip_deduction/salary_slip_deduction.txt +++ b/hr/doctype/salary_slip_deduction/salary_slip_deduction.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:15", + "creation": "2013-02-22 01:27:48", "docstatus": 0, - "modified": "2013-01-29 16:27:52", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -46,6 +46,7 @@ "oldfieldname": "d_type", "oldfieldtype": "Data", "options": "Deduction Type", + "print_width": "200px", "width": "200px" }, { diff --git a/hr/doctype/salary_slip_earning/salary_slip_earning.txt b/hr/doctype/salary_slip_earning/salary_slip_earning.txt index e0acf29796..64f4dc6cef 100644 --- a/hr/doctype/salary_slip_earning/salary_slip_earning.txt +++ b/hr/doctype/salary_slip_earning/salary_slip_earning.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:15", + "creation": "2013-02-22 01:27:48", "docstatus": 0, - "modified": "2013-01-29 16:27:52", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -46,6 +46,7 @@ "oldfieldname": "e_type", "oldfieldtype": "Data", "options": "Earning Type", + "print_width": "200px", "width": "200px" }, { diff --git a/hr/doctype/salary_structure_deduction/salary_structure_deduction.txt b/hr/doctype/salary_structure_deduction/salary_structure_deduction.txt index 1591b0f7ed..53dbf6978c 100644 --- a/hr/doctype/salary_structure_deduction/salary_structure_deduction.txt +++ b/hr/doctype/salary_structure_deduction/salary_structure_deduction.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:16", + "creation": "2013-02-22 01:27:48", "docstatus": 0, - "modified": "2013-01-29 16:27:52", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -32,6 +32,7 @@ "oldfieldname": "d_type", "oldfieldtype": "Select", "options": "Deduction Type", + "print_width": "200px", "reqd": 1, "width": "200px" }, diff --git a/hr/doctype/salary_structure_earning/salary_structure_earning.txt b/hr/doctype/salary_structure_earning/salary_structure_earning.txt index 74f6fe29b5..29c3f52c8c 100644 --- a/hr/doctype/salary_structure_earning/salary_structure_earning.txt +++ b/hr/doctype/salary_structure_earning/salary_structure_earning.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:16", + "creation": "2013-02-22 01:27:48", "docstatus": 0, - "modified": "2013-01-29 16:27:52", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -34,6 +34,7 @@ "oldfieldname": "e_type", "oldfieldtype": "Data", "options": "Earning Type", + "print_width": "200px", "reqd": 1, "width": "200px" }, diff --git a/manufacturing/doctype/bom_explosion_item/bom_explosion_item.txt b/manufacturing/doctype/bom_explosion_item/bom_explosion_item.txt index fb0961141c..07aad7dc66 100644 --- a/manufacturing/doctype/bom_explosion_item/bom_explosion_item.txt +++ b/manufacturing/doctype/bom_explosion_item/bom_explosion_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:16", + "creation": "2013-02-22 01:27:48", "docstatus": 0, - "modified": "2013-01-23 16:43:10", + "modified": "2013-03-07 07:03:18", "modified_by": "Administrator", "owner": "Administrator" }, @@ -44,6 +44,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Text", + "print_width": "300px", "width": "300px" }, { @@ -88,6 +89,7 @@ "oldfieldname": "parent_bom", "oldfieldtype": "Link", "options": "BOM", + "print_width": "250px", "width": "250px" }, { diff --git a/manufacturing/doctype/bom_item/bom_item.txt b/manufacturing/doctype/bom_item/bom_item.txt index 1da7f0dc1a..14be95a336 100644 --- a/manufacturing/doctype/bom_item/bom_item.txt +++ b/manufacturing/doctype/bom_item/bom_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:16", + "creation": "2013-02-22 01:27:49", "docstatus": 0, - "modified": "2013-01-23 16:43:11", + "modified": "2013-03-07 07:03:18", "modified_by": "Administrator", "owner": "Administrator" }, @@ -67,6 +67,7 @@ "oldfieldname": "bom_no", "oldfieldtype": "Link", "options": "BOM", + "print_width": "150px", "reqd": 0, "search_index": 1, "width": "150px" @@ -103,6 +104,7 @@ "label": "Amount", "oldfieldname": "amount_as_per_mar", "oldfieldtype": "Currency", + "print_width": "150px", "read_only": 1, "width": "150px" }, @@ -122,6 +124,7 @@ "label": "Item Description", "oldfieldname": "description", "oldfieldtype": "Text", + "print_width": "250px", "reqd": 0, "width": "250px" }, diff --git a/manufacturing/doctype/bom_operation/bom_operation.txt b/manufacturing/doctype/bom_operation/bom_operation.txt index e722bbed72..56805b5a60 100644 --- a/manufacturing/doctype/bom_operation/bom_operation.txt +++ b/manufacturing/doctype/bom_operation/bom_operation.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:16", + "creation": "2013-02-22 01:27:49", "docstatus": 0, - "modified": "2013-01-23 16:43:12", + "modified": "2013-03-07 07:03:19", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/manufacturing/doctype/production_plan_item/production_plan_item.txt b/manufacturing/doctype/production_plan_item/production_plan_item.txt index a2f936768e..3af1bea313 100644 --- a/manufacturing/doctype/production_plan_item/production_plan_item.txt +++ b/manufacturing/doctype/production_plan_item/production_plan_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-19 10:23:34", + "creation": "2013-02-22 01:27:49", "docstatus": 0, - "modified": "2013-01-22 14:00:34", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -33,6 +33,7 @@ "oldfieldname": "item_code", "oldfieldtype": "Link", "options": "Item", + "print_width": "150px", "reqd": 1, "width": "150px" }, @@ -44,6 +45,7 @@ "oldfieldname": "bom_no", "oldfieldtype": "Link", "options": "BOM", + "print_width": "100px", "reqd": 1, "width": "100px" }, @@ -55,6 +57,7 @@ "label": "Planned Qty", "oldfieldname": "planned_qty", "oldfieldtype": "Currency", + "print_width": "100px", "reqd": 1, "width": "100px" }, @@ -76,6 +79,7 @@ "label": "SO Pending Qty", "oldfieldname": "prevdoc_reqd_qty", "oldfieldtype": "Currency", + "print_width": "100px", "read_only": 1, "reqd": 0, "width": "100px" @@ -87,6 +91,7 @@ "label": "UOM", "oldfieldname": "stock_uom", "oldfieldtype": "Data", + "print_width": "80px", "read_only": 1, "reqd": 1, "width": "80px" @@ -98,6 +103,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Text", + "print_width": "200px", "read_only": 1, "width": "200px" } diff --git a/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.txt b/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.txt index 9c2b1320bf..dc5b88de97 100644 --- a/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.txt +++ b/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:17", + "creation": "2013-02-22 01:27:49", "docstatus": 0, - "modified": "2013-01-29 16:27:52", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -46,6 +46,7 @@ "oldfieldname": "prevdoc_docname", "oldfieldtype": "Data", "options": "Sales Order", + "print_width": "150px", "width": "150px" }, { @@ -55,6 +56,7 @@ "label": "SO Date", "oldfieldname": "document_date", "oldfieldtype": "Date", + "print_width": "120px", "read_only": 1, "width": "120px" }, @@ -64,6 +66,7 @@ "fieldtype": "Link", "label": "Customer", "options": "Customer", + "print_width": "150px", "read_only": 1, "width": "150px" }, @@ -73,6 +76,7 @@ "fieldtype": "Currency", "label": "Grand Total", "options": "Company:company:default_currency", + "print_width": "120px", "read_only": 1, "width": "120px" }, diff --git a/projects/doctype/project_milestone/project_milestone.txt b/projects/doctype/project_milestone/project_milestone.txt index 4641b5d3bb..11c5d20cc0 100644 --- a/projects/doctype/project_milestone/project_milestone.txt +++ b/projects/doctype/project_milestone/project_milestone.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:06", + "creation": "2013-02-22 01:27:50", "docstatus": 0, - "modified": "2012-03-27 14:36:06", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,9 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Projects", - "name": "__common__", - "section_style": "Simple", - "version": 4 + "name": "__common__" }, { "doctype": "DocField", @@ -41,6 +39,7 @@ "label": "Milestone", "oldfieldname": "milestone", "oldfieldtype": "Text", + "print_width": "300px", "width": "300px" }, { diff --git a/projects/doctype/time_log_batch_detail/time_log_batch_detail.txt b/projects/doctype/time_log_batch_detail/time_log_batch_detail.txt index d1e1eaee2b..8bd554fb19 100644 --- a/projects/doctype/time_log_batch_detail/time_log_batch_detail.txt +++ b/projects/doctype/time_log_batch_detail/time_log_batch_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-28 17:56:12", + "creation": "2013-03-05 09:11:06", "docstatus": 0, - "modified": "2013-03-01 15:20:17", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", "owner": "Administrator" }, @@ -30,6 +30,7 @@ "fieldtype": "Link", "label": "Time Log", "options": "Time Log", + "print_width": "200px", "reqd": 1, "width": "200px" }, diff --git a/selling/doctype/installation_note_item/installation_note_item.txt b/selling/doctype/installation_note_item/installation_note_item.txt index 16f9bbcc82..a2ccdc4ec7 100644 --- a/selling/doctype/installation_note_item/installation_note_item.txt +++ b/selling/doctype/installation_note_item/installation_note_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:18", + "creation": "2013-02-22 01:27:51", "docstatus": 0, - "modified": "2013-01-22 14:47:00", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", "owner": "Administrator" }, @@ -42,6 +42,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Data", + "print_width": "300px", "read_only": 1, "width": "300px" }, @@ -63,6 +64,7 @@ "label": "Serial No", "oldfieldname": "serial_no", "oldfieldtype": "Small Text", + "print_width": "180px", "width": "180px" }, { @@ -75,6 +77,7 @@ "oldfieldname": "prevdoc_detail_docname", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "width": "150px" }, @@ -89,6 +92,7 @@ "oldfieldname": "prevdoc_docname", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "search_index": 1, "width": "150px" @@ -104,6 +108,7 @@ "oldfieldname": "prevdoc_doctype", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "search_index": 1, "width": "150px" diff --git a/selling/doctype/opportunity_item/opportunity_item.txt b/selling/doctype/opportunity_item/opportunity_item.txt index f9f8c79142..ba7870e19d 100644 --- a/selling/doctype/opportunity_item/opportunity_item.txt +++ b/selling/doctype/opportunity_item/opportunity_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:19", + "creation": "2013-02-22 01:27:51", "docstatus": 0, - "modified": "2013-01-29 16:27:53", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -50,6 +50,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Text", + "print_width": "300px", "reqd": 1, "width": "300px" }, diff --git a/selling/doctype/quotation_item/quotation_item.txt b/selling/doctype/quotation_item/quotation_item.txt index 8979562ff6..dccc503764 100644 --- a/selling/doctype/quotation_item/quotation_item.txt +++ b/selling/doctype/quotation_item/quotation_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:19", + "creation": "2013-02-22 01:27:52", "docstatus": 0, - "modified": "2013-01-29 16:27:54", + "modified": "2013-03-07 07:03:29", "modified_by": "Administrator", "owner": "Administrator" }, @@ -36,6 +36,7 @@ "oldfieldtype": "Link", "options": "Item", "print_hide": 0, + "print_width": "150px", "reqd": 1, "search_index": 1, "width": "150px" @@ -58,6 +59,7 @@ "oldfieldname": "item_name", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "reqd": 1, "search_index": 1, "width": "150px" @@ -70,6 +72,7 @@ "oldfieldname": "description", "oldfieldtype": "Small Text", "print_hide": 0, + "print_width": "300px", "reqd": 1, "width": "300px" }, @@ -83,6 +86,7 @@ "oldfieldname": "qty", "oldfieldtype": "Currency", "print_hide": 0, + "print_width": "100px", "reqd": 1, "search_index": 0, "width": "100px" @@ -95,6 +99,7 @@ "oldfieldname": "stock_uom", "oldfieldtype": "Data", "print_hide": 0, + "print_width": "100px", "read_only": 1, "reqd": 0, "width": "100px" @@ -109,6 +114,7 @@ "oldfieldtype": "Currency", "options": "currency", "print_hide": 1, + "print_width": "100px", "reqd": 0, "width": "100px" }, @@ -121,6 +127,7 @@ "oldfieldname": "adj_rate", "oldfieldtype": "Float", "print_hide": 1, + "print_width": "100px", "width": "100px" }, { @@ -134,6 +141,7 @@ "oldfieldtype": "Currency", "options": "currency", "print_hide": 0, + "print_width": "100px", "reqd": 0, "search_index": 0, "width": "100px" @@ -149,6 +157,7 @@ "oldfieldtype": "Currency", "options": "currency", "print_hide": 0, + "print_width": "100px", "read_only": 1, "reqd": 0, "search_index": 0, @@ -163,6 +172,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "100px", "read_only": 1, "width": "100px" }, @@ -177,6 +187,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "100px", "reqd": 0, "search_index": 0, "width": "100px" @@ -192,6 +203,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "100px", "read_only": 1, "reqd": 0, "search_index": 0, @@ -222,6 +234,7 @@ "oldfieldtype": "Link", "options": "Brand", "print_hide": 1, + "print_width": "150px", "read_only": 1, "search_index": 1, "width": "150px" @@ -247,6 +260,7 @@ "oldfieldname": "prevdoc_docname", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "report_hide": 0, "width": "150px" @@ -261,6 +275,7 @@ "oldfieldname": "prevdoc_doctype", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "report_hide": 0, "width": "150px" diff --git a/selling/doctype/sales_and_purchase_return_item/sales_and_purchase_return_item.txt b/selling/doctype/sales_and_purchase_return_item/sales_and_purchase_return_item.txt index 179a6a3895..4f844b3158 100644 --- a/selling/doctype/sales_and_purchase_return_item/sales_and_purchase_return_item.txt +++ b/selling/doctype/sales_and_purchase_return_item/sales_and_purchase_return_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:20", + "creation": "2013-02-22 01:27:52", "docstatus": 0, - "modified": "2013-01-29 16:27:54", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "wasim@webnotestech.com" }, @@ -42,6 +42,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Data", + "print_width": "300px", "read_only": 1, "width": "300px" }, diff --git a/selling/doctype/sales_order_item/sales_order_item.txt b/selling/doctype/sales_order_item/sales_order_item.txt index dc8d19e7b4..fff2d080f3 100644 --- a/selling/doctype/sales_order_item/sales_order_item.txt +++ b/selling/doctype/sales_order_item/sales_order_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:21", + "creation": "2013-02-22 01:27:52", "docstatus": 0, - "modified": "2013-01-29 16:27:54", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -34,6 +34,7 @@ "oldfieldname": "item_code", "oldfieldtype": "Link", "options": "Item", + "print_width": "150px", "reqd": 1, "search_index": 1, "width": "150px" @@ -55,6 +56,7 @@ "oldfieldname": "item_name", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150", "reqd": 1, "width": "150" }, @@ -66,6 +68,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Small Text", + "print_width": "300px", "reqd": 1, "search_index": 1, "width": "300px" @@ -78,6 +81,7 @@ "label": "Quantity", "oldfieldname": "qty", "oldfieldtype": "Currency", + "print_width": "100px", "reqd": 1, "width": "100px" }, @@ -89,6 +93,7 @@ "label": "UOM", "oldfieldname": "stock_uom", "oldfieldtype": "Data", + "print_width": "70px", "read_only": 1, "reqd": 0, "width": "70px" @@ -103,6 +108,7 @@ "oldfieldtype": "Currency", "options": "currency", "print_hide": 1, + "print_width": "70px", "reqd": 0, "width": "70px" }, @@ -115,6 +121,7 @@ "oldfieldname": "adj_rate", "oldfieldtype": "Float", "print_hide": 1, + "print_width": "70px", "width": "70px" }, { @@ -126,6 +133,7 @@ "oldfieldname": "export_rate", "oldfieldtype": "Currency", "options": "currency", + "print_width": "100px", "reqd": 0, "width": "100px" }, @@ -139,6 +147,7 @@ "oldfieldname": "export_amount", "oldfieldtype": "Currency", "options": "currency", + "print_width": "100px", "read_only": 1, "reqd": 0, "width": "100px" @@ -152,6 +161,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "100px", "read_only": 1, "width": "100px" }, @@ -165,6 +175,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "100px", "reqd": 0, "width": "100px" }, @@ -179,6 +190,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "100px", "read_only": 1, "reqd": 0, "width": "100px" @@ -193,6 +205,7 @@ "oldfieldtype": "Link", "options": "Warehouse", "print_hide": 1, + "print_width": "150px", "reqd": 0, "width": "150px" }, @@ -207,6 +220,7 @@ "oldfieldname": "projected_qty", "oldfieldtype": "Currency", "print_hide": 1, + "print_width": "70px", "read_only": 1, "width": "70px" }, @@ -218,6 +232,7 @@ "label": "Actual Qty", "no_copy": 1, "print_hide": 1, + "print_width": "70px", "read_only": 1, "width": "70px" }, @@ -233,6 +248,7 @@ "oldfieldname": "delivered_qty", "oldfieldtype": "Currency", "print_hide": 1, + "print_width": "100px", "read_only": 1, "search_index": 0, "width": "100px" @@ -258,6 +274,7 @@ "oldfieldname": "planned_qty", "oldfieldtype": "Currency", "print_hide": 1, + "print_width": "50px", "read_only": 1, "report_hide": 1, "width": "50px" @@ -272,6 +289,7 @@ "oldfieldname": "produced_qty", "oldfieldtype": "Currency", "print_hide": 1, + "print_width": "50px", "read_only": 1, "report_hide": 1, "width": "50px" diff --git a/selling/doctype/sales_team/sales_team.txt b/selling/doctype/sales_team/sales_team.txt index c1a00d79fb..add466c334 100644 --- a/selling/doctype/sales_team/sales_team.txt +++ b/selling/doctype/sales_team/sales_team.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:22", + "creation": "2013-02-22 01:27:53", "docstatus": 0, - "modified": "2013-01-29 16:27:56", + "modified": "2013-03-07 07:03:31", "modified_by": "Administrator", "owner": "Administrator" }, @@ -33,6 +33,7 @@ "oldfieldname": "sales_person", "oldfieldtype": "Link", "options": "Sales Person", + "print_width": "200px", "reqd": 1, "search_index": 1, "width": "200px" @@ -44,6 +45,7 @@ "label": "Designation", "oldfieldname": "sales_designation", "oldfieldtype": "Data", + "print_width": "100px", "width": "100px" }, { @@ -54,6 +56,7 @@ "label": "Contact No.", "oldfieldname": "contact_no", "oldfieldtype": "Data", + "print_width": "100px", "width": "100px" }, { @@ -63,6 +66,7 @@ "label": "Allocated (%)", "oldfieldname": "allocated_percentage", "oldfieldtype": "Currency", + "print_width": "100px", "reqd": 0, "width": "100px" }, @@ -74,6 +78,7 @@ "oldfieldname": "allocated_amount", "oldfieldtype": "Currency", "options": "Company:company:default_currency", + "print_width": "120px", "reqd": 0, "width": "120px" }, diff --git a/setup/doctype/series_detail/series_detail.txt b/setup/doctype/series_detail/series_detail.txt index 19ef3fbf35..98a5d78a00 100644 --- a/setup/doctype/series_detail/series_detail.txt +++ b/setup/doctype/series_detail/series_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:25", + "creation": "2013-02-22 01:27:57", "docstatus": 0, - "modified": "2012-03-27 14:36:25", + "modified": "2013-03-07 07:03:32", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Setup", - "name": "__common__", - "section_style": "Tray", - "show_in_menu": 0, - "version": 3 + "name": "__common__" }, { "doctype": "DocField", @@ -41,7 +38,6 @@ "fieldtype": "Check", "label": "Remove", "oldfieldname": "remove", - "oldfieldtype": "Check", - "trigger": "Client" + "oldfieldtype": "Check" } ] \ No newline at end of file diff --git a/setup/doctype/sms_parameter/sms_parameter.txt b/setup/doctype/sms_parameter/sms_parameter.txt index 55f90be161..cc7a002b1e 100755 --- a/setup/doctype/sms_parameter/sms_parameter.txt +++ b/setup/doctype/sms_parameter/sms_parameter.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:25", + "creation": "2013-02-22 01:27:58", "docstatus": 0, - "modified": "2012-03-27 14:36:25", + "modified": "2013-03-07 07:03:32", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Setup", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 4 + "name": "__common__" }, { "doctype": "DocField", @@ -23,6 +20,7 @@ "parentfield": "fields", "parenttype": "DocType", "permlevel": 0, + "print_width": "150px", "reqd": 1, "width": "150px" }, diff --git a/setup/doctype/target_detail/target_detail.txt b/setup/doctype/target_detail/target_detail.txt index 21b632398d..b3e2886121 100644 --- a/setup/doctype/target_detail/target_detail.txt +++ b/setup/doctype/target_detail/target_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:24", + "creation": "2013-02-22 01:27:58", "docstatus": 0, - "modified": "2013-01-23 16:52:10", + "modified": "2013-03-07 07:03:33", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/setup/doctype/workflow_action_detail/workflow_action_detail.txt b/setup/doctype/workflow_action_detail/workflow_action_detail.txt index 2ef95fd314..739388257a 100644 --- a/setup/doctype/workflow_action_detail/workflow_action_detail.txt +++ b/setup/doctype/workflow_action_detail/workflow_action_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:26", + "creation": "2013-02-22 01:27:59", "docstatus": 0, - "modified": "2012-03-27 14:36:26", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", "owner": "swarnalata@webnotestech.com" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Setup", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 5 + "name": "__common__" }, { "doctype": "DocField", @@ -22,6 +19,7 @@ "parentfield": "fields", "parenttype": "DocType", "permlevel": 0, + "print_width": "200px", "width": "200px" }, { diff --git a/setup/doctype/workflow_rule_detail/workflow_rule_detail.txt b/setup/doctype/workflow_rule_detail/workflow_rule_detail.txt index 73c1cf3d8b..1aee3fed19 100644 --- a/setup/doctype/workflow_rule_detail/workflow_rule_detail.txt +++ b/setup/doctype/workflow_rule_detail/workflow_rule_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:26", + "creation": "2013-02-22 01:27:59", "docstatus": 0, - "modified": "2012-03-27 14:36:26", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", "owner": "swarnalata@webnotestech.com" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Setup", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 9 + "name": "__common__" }, { "doctype": "DocField", @@ -35,6 +32,7 @@ "oldfieldname": "rule_field", "oldfieldtype": "Select", "options": "[]", + "print_width": "200px", "width": "200px" }, { @@ -53,6 +51,7 @@ "label": "Value", "oldfieldname": "value", "oldfieldtype": "Data", + "print_width": "100px", "width": "100px" }, { @@ -70,6 +69,7 @@ "label": "Message when Cond. False", "oldfieldname": "message", "oldfieldtype": "Data", + "print_width": "200px", "width": "200px" }, { diff --git a/stock/doctype/delivery_note_item/delivery_note_item.txt b/stock/doctype/delivery_note_item/delivery_note_item.txt index 9f18568573..985a072756 100644 --- a/stock/doctype/delivery_note_item/delivery_note_item.txt +++ b/stock/doctype/delivery_note_item/delivery_note_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:26", + "creation": "2013-02-22 01:28:00", "docstatus": 0, - "modified": "2013-01-29 16:27:56", + "modified": "2013-03-07 07:03:20", "modified_by": "Administrator", "owner": "Administrator" }, @@ -41,6 +41,7 @@ "oldfieldname": "item_code", "oldfieldtype": "Link", "options": "Item", + "print_width": "150px", "reqd": 1, "search_index": 1, "width": "150px" @@ -62,6 +63,7 @@ "oldfieldname": "item_name", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "reqd": 1, "width": "150px" }, @@ -72,6 +74,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Small Text", + "print_width": "300px", "reqd": 1, "width": "300px" }, @@ -83,6 +86,7 @@ "label": "Quantity", "oldfieldname": "qty", "oldfieldtype": "Currency", + "print_width": "100px", "reqd": 1, "width": "100px" }, @@ -94,6 +98,7 @@ "oldfieldname": "stock_uom", "oldfieldtype": "Data", "print_hide": 0, + "print_width": "50px", "read_only": 1, "reqd": 1, "width": "50px" @@ -109,6 +114,7 @@ "oldfieldtype": "Currency", "options": "currency", "print_hide": 1, + "print_width": "100px", "reqd": 0, "width": "100px" }, @@ -121,6 +127,7 @@ "oldfieldname": "adj_rate", "oldfieldtype": "Float", "print_hide": 1, + "print_width": "100px", "width": "100px" }, { @@ -132,6 +139,7 @@ "oldfieldtype": "Currency", "options": "currency", "print_hide": 0, + "print_width": "150px", "reqd": 0, "width": "150px" }, @@ -144,6 +152,7 @@ "oldfieldtype": "Currency", "options": "currency", "print_hide": 0, + "print_width": "100px", "read_only": 1, "reqd": 0, "width": "100px" @@ -157,6 +166,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "100px", "read_only": 1, "width": "100px" }, @@ -170,6 +180,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "150px", "reqd": 0, "width": "150px" }, @@ -182,6 +193,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "print_width": "100px", "read_only": 1, "reqd": 0, "width": "100px" @@ -195,6 +207,7 @@ "oldfieldtype": "Link", "options": "Warehouse", "print_hide": 1, + "print_width": "100px", "width": "100px" }, { @@ -240,6 +253,7 @@ "oldfieldtype": "Link", "options": "Brand", "print_hide": 1, + "print_width": "150px", "read_only": 1, "width": "150px" }, @@ -252,6 +266,7 @@ "oldfieldname": "actual_qty", "oldfieldtype": "Currency", "print_hide": 1, + "print_width": "150px", "read_only": 1, "width": "150px" }, @@ -263,6 +278,7 @@ "no_copy": 1, "options": "currency", "print_hide": 1, + "print_width": "100px", "read_only": 1, "width": "100px" }, @@ -275,6 +291,7 @@ "oldfieldname": "installed_qty", "oldfieldtype": "Currency", "print_hide": 1, + "print_width": "150px", "read_only": 1, "width": "150px" }, @@ -299,6 +316,7 @@ "oldfieldname": "prevdoc_doctype", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "search_index": 1, "width": "150px" @@ -314,6 +332,7 @@ "oldfieldname": "prevdoc_docname", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "search_index": 1, "width": "150px" @@ -340,6 +359,7 @@ "oldfieldname": "prevdoc_detail_docname", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "search_index": 0, "width": "150px" diff --git a/stock/doctype/delivery_note_packing_item/delivery_note_packing_item.txt b/stock/doctype/delivery_note_packing_item/delivery_note_packing_item.txt index 853e94e942..defd39d685 100644 --- a/stock/doctype/delivery_note_packing_item/delivery_note_packing_item.txt +++ b/stock/doctype/delivery_note_packing_item/delivery_note_packing_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:27", + "creation": "2013-02-22 01:28:00", "docstatus": 0, - "modified": "2013-01-22 14:46:40", + "modified": "2013-03-07 07:03:20", "modified_by": "Administrator", "owner": "Administrator" }, @@ -74,6 +74,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Text", + "print_width": "300px", "read_only": 1, "width": "300px" }, diff --git a/stock/doctype/featured_item/featured_item.txt b/stock/doctype/featured_item/featured_item.txt index a08e2821eb..5c91e87cf2 100644 --- a/stock/doctype/featured_item/featured_item.txt +++ b/stock/doctype/featured_item/featured_item.txt @@ -1,33 +1,33 @@ [ { - "owner": "Administrator", + "creation": "2013-02-22 01:28:00", "docstatus": 0, - "creation": "2012-12-07 14:28:33", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", - "modified": "2012-12-07 14:28:33" + "owner": "Administrator" }, { - "istable": 1, "description": "Featured Item in Item Group", "doctype": "DocType", + "istable": 1, "module": "Stock", "name": "__common__" }, { - "parent": "Featured Item", "doctype": "DocField", - "name": "__common__", - "label": "Item", - "parenttype": "DocType", - "options": "Item", "fieldname": "item", "fieldtype": "Link", - "permlevel": 0, - "parentfield": "fields" + "label": "Item", + "name": "__common__", + "options": "Item", + "parent": "Featured Item", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 }, { - "name": "Featured Item", - "doctype": "DocType" + "doctype": "DocType", + "name": "Featured Item" }, { "doctype": "DocField" diff --git a/stock/doctype/item_customer_detail/item_customer_detail.txt b/stock/doctype/item_customer_detail/item_customer_detail.txt index 8535f16976..2ee945048b 100644 --- a/stock/doctype/item_customer_detail/item_customer_detail.txt +++ b/stock/doctype/item_customer_detail/item_customer_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:33", + "creation": "2013-02-22 01:28:01", "docstatus": 0, - "modified": "2012-03-27 14:36:33", + "modified": "2013-03-07 07:03:22", "modified_by": "Administrator", "owner": "Administrator" }, @@ -14,10 +14,7 @@ "istable": 1, "module": "Stock", "name": "__common__", - "read_only": 0, - "section_style": "Tray", - "show_in_menu": 0, - "version": 7 + "read_only": 0 }, { "doctype": "DocField", @@ -42,6 +39,7 @@ "oldfieldname": "price_list_name", "oldfieldtype": "Select", "options": "Customer", + "print_width": "180px", "width": "180px" }, { @@ -51,6 +49,7 @@ "label": "Ref Code", "oldfieldname": "ref_rate", "oldfieldtype": "Currency", + "print_width": "120px", "width": "120px" } ] \ No newline at end of file diff --git a/stock/doctype/item_price/item_price.txt b/stock/doctype/item_price/item_price.txt index 687a35a07d..863ca25389 100644 --- a/stock/doctype/item_price/item_price.txt +++ b/stock/doctype/item_price/item_price.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-21 18:19:14", + "creation": "2013-02-22 01:28:01", "docstatus": 0, - "modified": "2013-01-23 16:57:49", + "modified": "2013-03-07 07:03:22", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.txt b/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.txt index be9f99b92f..8233ede885 100644 --- a/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.txt +++ b/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:33", + "creation": "2013-02-22 01:28:01", "docstatus": 0, - "modified": "2012-03-27 14:36:33", + "modified": "2013-03-07 07:03:22", "modified_by": "Administrator", "owner": "Administrator" }, @@ -11,10 +11,7 @@ "doctype": "DocType", "istable": 1, "module": "Stock", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 1 + "name": "__common__" }, { "doctype": "DocField", @@ -36,6 +33,7 @@ "in_filter": 0, "label": "Parameter", "oldfieldname": "specification", + "print_width": "200px", "reqd": 1, "search_index": 0, "width": "200px" diff --git a/stock/doctype/item_reorder/item_reorder.txt b/stock/doctype/item_reorder/item_reorder.txt index ca429aff95..43ed4fed86 100644 --- a/stock/doctype/item_reorder/item_reorder.txt +++ b/stock/doctype/item_reorder/item_reorder.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-18 12:48:07", + "creation": "2013-02-22 01:28:01", "docstatus": 0, - "modified": "2013-02-18 12:54:46", + "modified": "2013-03-07 07:03:22", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/stock/doctype/item_supplier/item_supplier.txt b/stock/doctype/item_supplier/item_supplier.txt index 3569d25c68..312950466e 100644 --- a/stock/doctype/item_supplier/item_supplier.txt +++ b/stock/doctype/item_supplier/item_supplier.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:33", + "creation": "2013-02-22 01:28:01", "docstatus": 0, - "modified": "2012-03-27 14:36:33", + "modified": "2013-03-07 07:03:22", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Stock", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 3 + "name": "__common__" }, { "doctype": "DocField", @@ -39,6 +36,7 @@ "fieldname": "supplier_part_no", "fieldtype": "Data", "label": "Supplier Part Number", + "print_width": "200px", "width": "200px" } ] \ No newline at end of file diff --git a/stock/doctype/item_tax/item_tax.txt b/stock/doctype/item_tax/item_tax.txt index a0bfb57595..343f965e89 100644 --- a/stock/doctype/item_tax/item_tax.txt +++ b/stock/doctype/item_tax/item_tax.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:27", + "creation": "2013-02-22 01:28:01", "docstatus": 0, - "modified": "2013-01-23 16:54:25", + "modified": "2013-03-07 07:03:22", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/stock/doctype/item_website_specification/item_website_specification.txt b/stock/doctype/item_website_specification/item_website_specification.txt index db2bc9f07f..1b371c7f60 100644 --- a/stock/doctype/item_website_specification/item_website_specification.txt +++ b/stock/doctype/item_website_specification/item_website_specification.txt @@ -1,42 +1,44 @@ [ { - "owner": "Administrator", + "creation": "2013-02-22 01:28:01", "docstatus": 0, - "creation": "2012-12-07 15:42:25", + "modified": "2013-03-07 07:03:22", "modified_by": "Administrator", - "modified": "2012-12-17 15:29:37" + "owner": "Administrator" }, { - "istable": 1, "description": "Table for Item that will be shown in Web Site", "doctype": "DocType", + "istable": 1, "module": "Stock", "name": "__common__" }, { + "doctype": "DocField", "name": "__common__", "parent": "Item Website Specification", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Item Website Specification", - "doctype": "DocType" + "doctype": "DocType", + "name": "Item Website Specification" }, { "doctype": "DocField", - "label": "Label", - "width": "150px", "fieldname": "label", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Label", + "print_width": "150px", + "width": "150px" }, { "doctype": "DocField", - "label": "Description", - "width": "300px", "fieldname": "description", - "fieldtype": "Text" + "fieldtype": "Text", + "label": "Description", + "print_width": "300px", + "width": "300px" } ] \ No newline at end of file diff --git a/stock/doctype/landed_cost_item/landed_cost_item.txt b/stock/doctype/landed_cost_item/landed_cost_item.txt index b299a27b69..1563face4f 100644 --- a/stock/doctype/landed_cost_item/landed_cost_item.txt +++ b/stock/doctype/landed_cost_item/landed_cost_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:27", + "creation": "2013-02-22 01:28:02", "docstatus": 0, - "modified": "2013-01-23 16:55:26", + "modified": "2013-03-07 07:03:23", "modified_by": "Administrator", "owner": "wasim@webnotestech.com" }, @@ -42,6 +42,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Data", + "print_width": "300px", "width": "300px" }, { diff --git a/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.txt b/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.txt index 993c4f4c6d..8b80559064 100644 --- a/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.txt +++ b/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:34", + "creation": "2013-02-22 01:28:02", "docstatus": 0, - "modified": "2012-03-27 14:36:34", + "modified": "2013-03-07 07:03:23", "modified_by": "Administrator", "owner": "wasim@webnotestech.com" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Stock", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 5 + "name": "__common__" }, { "doctype": "DocField", @@ -35,6 +32,7 @@ "oldfieldname": "purchase_receipt_no", "oldfieldtype": "Link", "options": "Purchase Receipt", + "print_width": "220px", "width": "220px" }, { @@ -44,6 +42,7 @@ "label": "Select PR", "oldfieldname": "include_in_landed_cost", "oldfieldtype": "Check", + "print_width": "120px", "width": "120px" } ] \ No newline at end of file diff --git a/stock/doctype/material_request_item/material_request_item.txt b/stock/doctype/material_request_item/material_request_item.txt index d608743604..7d9a417211 100644 --- a/stock/doctype/material_request_item/material_request_item.txt +++ b/stock/doctype/material_request_item/material_request_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-20 13:25:31", + "creation": "2013-02-22 01:28:02", "docstatus": 0, - "modified": "2013-02-20 14:06:58", + "modified": "2013-03-07 07:03:25", "modified_by": "Administrator", "owner": "Administrator" }, @@ -35,6 +35,7 @@ "oldfieldname": "schedule_date", "oldfieldtype": "Date", "print_hide": 0, + "print_width": "100px", "reqd": 1, "width": "100px" }, @@ -47,6 +48,7 @@ "oldfieldname": "item_code", "oldfieldtype": "Link", "options": "Item", + "print_width": "100px", "reqd": 1, "search_index": 1, "width": "100px" @@ -58,6 +60,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Text", + "print_width": "250px", "reqd": 1, "width": "250px" }, @@ -70,6 +73,7 @@ "oldfieldtype": "Link", "options": "Warehouse", "print_hide": 0, + "print_width": "100px", "reqd": 0, "width": "100px" }, @@ -82,6 +86,7 @@ "no_copy": 0, "oldfieldname": "qty", "oldfieldtype": "Currency", + "print_width": "80px", "reqd": 1, "width": "80px" }, @@ -94,6 +99,7 @@ "oldfieldname": "uom", "oldfieldtype": "Link", "options": "UOM", + "print_width": "70px", "read_only": 1, "reqd": 1, "width": "70px" @@ -117,6 +123,7 @@ "label": "Item Name", "oldfieldname": "item_name", "oldfieldtype": "Data", + "print_width": "100px", "reqd": 1, "search_index": 1, "width": "100px" @@ -145,6 +152,7 @@ "oldfieldtype": "Link", "options": "Brand", "print_hide": 1, + "print_width": "100px", "read_only": 1, "width": "100px" }, @@ -157,6 +165,7 @@ "oldfieldname": "min_order_qty", "oldfieldtype": "Currency", "print_hide": 1, + "print_width": "70px", "read_only": 1, "reqd": 0, "width": "70px" @@ -170,6 +179,7 @@ "oldfieldname": "projected_qty", "oldfieldtype": "Currency", "print_hide": 1, + "print_width": "70px", "read_only": 1, "width": "70px" }, diff --git a/stock/doctype/packing_slip_item/packing_slip_item.py b/stock/doctype/packing_slip_item/packing_slip_item.py new file mode 100644 index 0000000000..928aa9ff9f --- /dev/null +++ b/stock/doctype/packing_slip_item/packing_slip_item.py @@ -0,0 +1,8 @@ +# For license information, please see license.txt + +from __future__ import unicode_literals +import webnotes + +class DocType: + def __init__(self, d, dl): + self.doc, self.doclist = d, dl \ No newline at end of file diff --git a/stock/doctype/packing_slip_item/packing_slip_item.txt b/stock/doctype/packing_slip_item/packing_slip_item.txt index c1e6abb815..40ff066311 100644 --- a/stock/doctype/packing_slip_item/packing_slip_item.txt +++ b/stock/doctype/packing_slip_item/packing_slip_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:28", + "creation": "2013-02-22 01:28:02", "docstatus": 0, - "modified": "2013-01-22 14:47:04", + "modified": "2013-03-07 07:03:26", "modified_by": "Administrator", "owner": "Administrator" }, @@ -31,6 +31,7 @@ "fieldtype": "Link", "label": "Item Code", "options": "Item", + "print_width": "100px", "reqd": 1, "width": "100px" }, @@ -39,6 +40,7 @@ "fieldname": "item_name", "fieldtype": "Data", "label": "Item Name", + "print_width": "200px", "read_only": 1, "width": "200px" }, @@ -47,6 +49,7 @@ "fieldname": "qty", "fieldtype": "Float", "label": "Quantity", + "print_width": "100px", "reqd": 1, "width": "100px" }, @@ -55,6 +58,7 @@ "fieldname": "stock_uom", "fieldtype": "Data", "label": "UOM", + "print_width": "100px", "read_only": 1, "width": "100px" }, @@ -63,6 +67,7 @@ "fieldname": "net_weight", "fieldtype": "Float", "label": "Net Weight", + "print_width": "100px", "read_only": 1, "width": "100px" }, @@ -72,6 +77,7 @@ "fieldtype": "Link", "label": "Weight UOM", "options": "UOM", + "print_width": "100px", "read_only": 1, "width": "100px" }, diff --git a/stock/doctype/purchase_receipt_item/purchase_receipt_item.txt b/stock/doctype/purchase_receipt_item/purchase_receipt_item.txt index 8c20d4cd67..7f4e827aa3 100755 --- a/stock/doctype/purchase_receipt_item/purchase_receipt_item.txt +++ b/stock/doctype/purchase_receipt_item/purchase_receipt_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-07 08:28:23", + "creation": "2013-02-22 01:28:03", "docstatus": 0, - "modified": "2013-02-11 08:13:11", + "modified": "2013-03-07 07:03:28", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/stock/doctype/sales_bom_item/sales_bom_item.txt b/stock/doctype/sales_bom_item/sales_bom_item.txt index 0a772117a3..98285af104 100644 --- a/stock/doctype/sales_bom_item/sales_bom_item.txt +++ b/stock/doctype/sales_bom_item/sales_bom_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:29", + "creation": "2013-02-22 01:28:03", "docstatus": 0, - "modified": "2013-01-23 16:56:21", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -50,6 +50,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Text", + "print_width": "300px", "width": "300px" }, { diff --git a/stock/doctype/stock_entry_detail/stock_entry_detail.txt b/stock/doctype/stock_entry_detail/stock_entry_detail.txt index bb8610cb37..2c59dd702e 100644 --- a/stock/doctype/stock_entry_detail/stock_entry_detail.txt +++ b/stock/doctype/stock_entry_detail/stock_entry_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-29 19:25:45", + "creation": "2013-02-22 01:28:04", "docstatus": 0, - "modified": "2013-02-20 16:46:26", + "modified": "2013-03-07 07:03:32", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/stock/doctype/uom_conversion_detail/uom_conversion_detail.txt b/stock/doctype/uom_conversion_detail/uom_conversion_detail.txt index f0edf03f7a..381c7f7407 100644 --- a/stock/doctype/uom_conversion_detail/uom_conversion_detail.txt +++ b/stock/doctype/uom_conversion_detail/uom_conversion_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:40", + "creation": "2013-02-22 01:28:04", "docstatus": 0, - "modified": "2012-03-27 14:36:40", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", "owner": "Administrator" }, @@ -11,10 +11,7 @@ "doctype": "DocType", "istable": 1, "module": "Stock", - "name": "__common__", - "section_style": "Tray", - "show_in_menu": 0, - "version": 1 + "name": "__common__" }, { "doctype": "DocField", diff --git a/stock/doctype/warehouse_user/warehouse_user.txt b/stock/doctype/warehouse_user/warehouse_user.txt index 6cb02ae7fd..6912e30d3f 100644 --- a/stock/doctype/warehouse_user/warehouse_user.txt +++ b/stock/doctype/warehouse_user/warehouse_user.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-04 11:33:57", + "creation": "2013-02-22 01:28:05", "docstatus": 0, - "modified": "2013-02-04 11:36:16", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", "owner": "Administrator" }, @@ -24,6 +24,7 @@ "parentfield": "fields", "parenttype": "DocType", "permlevel": 0, + "print_width": "200px", "width": "200px" }, { diff --git a/support/doctype/maintenance_schedule_detail/maintenance_schedule_detail.txt b/support/doctype/maintenance_schedule_detail/maintenance_schedule_detail.txt index ba30be43dd..0aa4d0d3a8 100644 --- a/support/doctype/maintenance_schedule_detail/maintenance_schedule_detail.txt +++ b/support/doctype/maintenance_schedule_detail/maintenance_schedule_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:31", + "creation": "2013-02-22 01:28:05", "docstatus": 0, - "modified": "2013-02-04 10:30:18", + "modified": "2013-03-07 07:03:23", "modified_by": "Administrator", "owner": "Administrator" }, @@ -94,6 +94,7 @@ "no_copy": 0, "oldfieldname": "serial_no", "oldfieldtype": "Small Text", + "print_width": "160px", "read_only": 1, "search_index": 0, "width": "160px" diff --git a/support/doctype/maintenance_schedule_item/maintenance_schedule_item.txt b/support/doctype/maintenance_schedule_item/maintenance_schedule_item.txt index 490eb724c5..3a95b2c0a3 100644 --- a/support/doctype/maintenance_schedule_item/maintenance_schedule_item.txt +++ b/support/doctype/maintenance_schedule_item/maintenance_schedule_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:31", + "creation": "2013-02-22 01:28:05", "docstatus": 0, - "modified": "2013-01-22 14:47:03", + "modified": "2013-03-07 07:03:24", "modified_by": "Administrator", "owner": "Administrator" }, @@ -53,6 +53,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Data", + "print_width": "300px", "read_only": 1, "width": "300px" }, @@ -126,6 +127,7 @@ "oldfieldname": "prevdoc_docname", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "search_index": 1, "width": "150px" diff --git a/support/doctype/maintenance_visit_purpose/maintenance_visit_purpose.txt b/support/doctype/maintenance_visit_purpose/maintenance_visit_purpose.txt index 131076c35a..694f87105d 100644 --- a/support/doctype/maintenance_visit_purpose/maintenance_visit_purpose.txt +++ b/support/doctype/maintenance_visit_purpose/maintenance_visit_purpose.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:31", + "creation": "2013-02-22 01:28:06", "docstatus": 0, - "modified": "2013-01-22 14:47:03", + "modified": "2013-03-07 07:03:24", "modified_by": "Administrator", "owner": "ashwini@webnotestech.com" }, @@ -32,6 +32,7 @@ "label": "Description", "oldfieldname": "description", "oldfieldtype": "Small Text", + "print_width": "300px", "reqd": 1, "width": "300px" }, @@ -90,6 +91,7 @@ "oldfieldname": "prevdoc_docname", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "160px", "read_only": 1, "report_hide": 1, "width": "160px" @@ -104,6 +106,7 @@ "oldfieldname": "prevdoc_detail_docname", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "160px", "read_only": 1, "report_hide": 1, "width": "160px" @@ -118,6 +121,7 @@ "oldfieldname": "prevdoc_doctype", "oldfieldtype": "Data", "print_hide": 1, + "print_width": "150px", "read_only": 1, "report_hide": 1, "width": "150px" diff --git a/utilities/doctype/gl_mapper_detail/gl_mapper_detail.txt b/utilities/doctype/gl_mapper_detail/gl_mapper_detail.txt index bd1ecd6498..079a4a1b83 100644 --- a/utilities/doctype/gl_mapper_detail/gl_mapper_detail.txt +++ b/utilities/doctype/gl_mapper_detail/gl_mapper_detail.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:46", + "creation": "2013-02-22 01:28:07", "docstatus": 0, - "modified": "2012-03-27 14:36:46", + "modified": "2013-03-07 07:03:21", "modified_by": "Administrator", "owner": "Administrator" }, @@ -11,10 +11,7 @@ "doctype": "DocType", "istable": 1, "module": "Utilities", - "name": "__common__", - "section_style": "Tray", - "show_in_menu": 0, - "version": 4 + "name": "__common__" }, { "doctype": "DocField", diff --git a/utilities/doctype/sms_receiver/sms_receiver.txt b/utilities/doctype/sms_receiver/sms_receiver.txt index 4e0831c928..1075d21999 100644 --- a/utilities/doctype/sms_receiver/sms_receiver.txt +++ b/utilities/doctype/sms_receiver/sms_receiver.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:47", + "creation": "2013-02-22 01:28:07", "docstatus": 0, - "modified": "2012-03-27 14:36:47", + "modified": "2013-03-07 07:03:32", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,9 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Utilities", - "name": "__common__", - "section_style": "Tray", - "version": 2 + "name": "__common__" }, { "doctype": "DocField", @@ -39,6 +37,7 @@ "fieldname": "receiver_name", "label": "Receiver Name", "oldfieldname": "receiver_name", + "print_width": "350px", "width": "350px" }, { @@ -46,6 +45,7 @@ "fieldname": "mobile_no", "label": "Mobile No", "oldfieldname": "mobile_no", + "print_width": "200px", "reqd": 1, "width": "200px" } diff --git a/website/doctype/about_us_team_member/about_us_team_member.txt b/website/doctype/about_us_team_member/about_us_team_member.txt index a68ddcfb4d..ec77dd78b3 100644 --- a/website/doctype/about_us_team_member/about_us_team_member.txt +++ b/website/doctype/about_us_team_member/about_us_team_member.txt @@ -1,33 +1,34 @@ [ { - "owner": "Administrator", + "creation": "2013-02-22 01:28:07", "docstatus": 0, - "creation": "2012-12-27 14:28:45", + "modified": "2013-03-07 07:03:18", "modified_by": "Administrator", - "modified": "2012-12-27 14:49:44" + "owner": "Administrator" }, { - "istable": 1, - "name": "__common__", "doctype": "DocType", - "module": "Website" + "istable": 1, + "module": "Website", + "name": "__common__" }, { - "parent": "About Us Team Member", "doctype": "DocField", - "name": "__common__", - "label": "Employee", - "width": "300px", - "parenttype": "DocType", - "options": "Employee", "fieldname": "employee", "fieldtype": "Link", + "label": "Employee", + "name": "__common__", + "options": "Employee", + "parent": "About Us Team Member", + "parentfield": "fields", + "parenttype": "DocType", "permlevel": 0, - "parentfield": "fields" + "print_width": "300px", + "width": "300px" }, { - "name": "About Us Team Member", - "doctype": "DocType" + "doctype": "DocType", + "name": "About Us Team Member" }, { "doctype": "DocField" diff --git a/website/doctype/company_history/company_history.txt b/website/doctype/company_history/company_history.txt index 64fe6c2128..544845d256 100644 --- a/website/doctype/company_history/company_history.txt +++ b/website/doctype/company_history/company_history.txt @@ -1,40 +1,41 @@ [ { - "owner": "Administrator", + "creation": "2013-02-22 01:28:08", "docstatus": 0, - "creation": "2012-12-27 14:25:38", + "modified": "2013-03-07 07:03:19", "modified_by": "Administrator", - "modified": "2012-12-27 14:25:38" + "owner": "Administrator" }, { - "istable": 1, - "name": "__common__", "doctype": "DocType", - "module": "Website" + "istable": 1, + "module": "Website", + "name": "__common__" }, { + "doctype": "DocField", "name": "__common__", "parent": "Company History", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Company History", - "doctype": "DocType" + "doctype": "DocType", + "name": "Company History" }, { "doctype": "DocField", - "label": "Year", "fieldname": "year", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Year" }, { "doctype": "DocField", - "label": "Highlight", - "width": "300px", "fieldname": "highlight", - "fieldtype": "Text" + "fieldtype": "Text", + "label": "Highlight", + "print_width": "300px", + "width": "300px" } ] \ No newline at end of file diff --git a/website/doctype/related_page/related_page.txt b/website/doctype/related_page/related_page.txt index a4a0983c48..2f21cbd3d5 100644 --- a/website/doctype/related_page/related_page.txt +++ b/website/doctype/related_page/related_page.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-03-27 14:36:48", + "creation": "2013-02-22 01:28:08", "docstatus": 0, - "modified": "2012-03-27 14:36:48", + "modified": "2013-03-07 07:03:30", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Website", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 3 + "name": "__common__" }, { "doctype": "DocField", diff --git a/website/doctype/top_bar_item/top_bar_item.txt b/website/doctype/top_bar_item/top_bar_item.txt index bc78928515..0076f7f50f 100644 --- a/website/doctype/top_bar_item/top_bar_item.txt +++ b/website/doctype/top_bar_item/top_bar_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-04-02 16:02:43", + "creation": "2013-02-22 01:28:08", "docstatus": 0, - "modified": "2012-05-07 15:21:00", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", "owner": "Administrator" }, @@ -10,10 +10,7 @@ "doctype": "DocType", "istable": 1, "module": "Website", - "name": "__common__", - "section_style": "Simple", - "show_in_menu": 0, - "version": 1 + "name": "__common__" }, { "doctype": "DocField", @@ -32,6 +29,7 @@ "fieldname": "label", "fieldtype": "Data", "label": "Label", + "print_width": "120px", "width": "120px" }, { @@ -39,6 +37,7 @@ "fieldname": "url", "fieldtype": "Data", "label": "URL", + "print_width": "200px", "width": "200px" }, { diff --git a/website/doctype/website_item_group/website_item_group.txt b/website/doctype/website_item_group/website_item_group.txt index 31c4c1fa63..0b643065f1 100644 --- a/website/doctype/website_item_group/website_item_group.txt +++ b/website/doctype/website_item_group/website_item_group.txt @@ -1,34 +1,34 @@ [ { - "owner": "Administrator", + "creation": "2013-02-22 01:28:09", "docstatus": 0, - "creation": "2012-12-25 13:52:11", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", - "modified": "2012-12-25 13:52:11" + "owner": "Administrator" }, { - "istable": 1, "description": "Cross Listing of Item in multiple groups", "doctype": "DocType", - "module": "Website", "document_type": "Other", + "istable": 1, + "module": "Website", "name": "__common__" }, { - "parent": "Website Item Group", "doctype": "DocField", - "name": "__common__", - "label": "Item Group", - "parenttype": "DocType", - "options": "Item Group", "fieldname": "item_group", "fieldtype": "Link", - "permlevel": 0, - "parentfield": "fields" + "label": "Item Group", + "name": "__common__", + "options": "Item Group", + "parent": "Website Item Group", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 }, { - "name": "Website Item Group", - "doctype": "DocType" + "doctype": "DocType", + "name": "Website Item Group" }, { "doctype": "DocField" diff --git a/website/doctype/website_product_category/website_product_category.txt b/website/doctype/website_product_category/website_product_category.txt index 6625b47c7b..d0b3db8988 100644 --- a/website/doctype/website_product_category/website_product_category.txt +++ b/website/doctype/website_product_category/website_product_category.txt @@ -1,43 +1,43 @@ [ { - "owner": "Administrator", + "creation": "2013-02-22 01:28:09", "docstatus": 0, - "creation": "2012-12-20 14:21:35", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", - "modified": "2012-12-20 15:00:25" + "owner": "Administrator" }, { - "istable": 1, "description": "Product Category for website", "doctype": "DocType", - "module": "Website", "document_type": "Transaction", + "istable": 1, + "module": "Website", "name": "__common__" }, { + "doctype": "DocField", "name": "__common__", "parent": "Website Product Category", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Website Product Category", - "doctype": "DocType" + "doctype": "DocType", + "name": "Website Product Category" }, { "doctype": "DocField", - "label": "Item Group", "fieldname": "item_group", "fieldtype": "Link", + "label": "Item Group", "options": "Item Group" }, { "doctype": "DocField", - "label": "Indent", "fieldname": "indent", "fieldtype": "Select", + "label": "Indent", "options": "0\n1\n2\n3\n4\n5" } ] \ No newline at end of file diff --git a/website/doctype/website_slideshow_item/website_slideshow_item.txt b/website/doctype/website_slideshow_item/website_slideshow_item.txt index d74005e6c3..aa98745451 100644 --- a/website/doctype/website_slideshow_item/website_slideshow_item.txt +++ b/website/doctype/website_slideshow_item/website_slideshow_item.txt @@ -1,59 +1,61 @@ [ { - "owner": "Administrator", + "creation": "2013-02-22 01:28:09", "docstatus": 0, - "creation": "2012-12-25 16:48:49", + "modified": "2013-03-07 07:03:34", "modified_by": "Administrator", - "modified": "2012-12-25 16:55:40" + "owner": "Administrator" }, { - "istable": 1, "allow_attach": 0, "doctype": "DocType", - "module": "Website", + "istable": 1, "max_attachments": 10, + "module": "Website", "name": "__common__" }, { + "doctype": "DocField", "name": "__common__", "parent": "Website Slideshow Item", - "doctype": "DocField", + "parentfield": "fields", "parenttype": "DocType", - "permlevel": 0, - "parentfield": "fields" + "permlevel": 0 }, { - "name": "Website Slideshow Item", - "doctype": "DocType" + "doctype": "DocType", + "name": "Website Slideshow Item" }, { "doctype": "DocField", - "label": "Image", "fieldname": "image", "fieldtype": "Select", + "label": "Image", "options": "attach_files:" }, { "doctype": "DocField", - "label": "Heading", - "width": "200px", "fieldname": "heading", - "fieldtype": "Data" + "fieldtype": "Data", + "label": "Heading", + "print_width": "200px", + "width": "200px" }, { "doctype": "DocField", - "label": "Description", - "width": "200px", "fieldname": "description", - "fieldtype": "Text" + "fieldtype": "Text", + "label": "Description", + "print_width": "200px", + "width": "200px" }, { - "print_hide": 1, - "no_copy": 1, "doctype": "DocField", - "label": "File List", "fieldname": "file_list", "fieldtype": "Text", - "hidden": 1 + "hidden": 1, + "label": "File List", + "no_copy": 1, + "print_hide": 1 } ] \ No newline at end of file From 58b2a101aee16bddef75f704042e81dedc0abd71 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 7 Mar 2013 11:42:14 +0530 Subject: [PATCH 112/982] aii: testcases for sales invoice gl entries --- .../doctype/sales_invoice/sales_invoice.py | 2 +- .../sales_invoice/test_sales_invoice.py | 237 ++++++++++++++---- .../delivery_note/test_delivery_note.py | 2 +- 3 files changed, 184 insertions(+), 57 deletions(-) diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index 47e3195d71..b31d54919c 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -8,7 +8,7 @@ # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License diff --git a/accounts/doctype/sales_invoice/test_sales_invoice.py b/accounts/doctype/sales_invoice/test_sales_invoice.py index fb290d27e3..1f165f0c33 100644 --- a/accounts/doctype/sales_invoice/test_sales_invoice.py +++ b/accounts/doctype/sales_invoice/test_sales_invoice.py @@ -38,72 +38,199 @@ class TestSalesInvoice(unittest.TestCase): si.insert() si.submit() - self.assertEquals(webnotes.conn.get_value("Time Log Batch", "_T-Time Log Batch-00001", "status"), - "Billed") + self.assertEquals(webnotes.conn.get_value("Time Log Batch", "_T-Time Log Batch-00001", + "status"), "Billed") self.assertEquals(webnotes.conn.get_value("Time Log", "_T-Time Log-00001", "status"), "Billed") si.cancel() - self.assertEquals(webnotes.conn.get_value("Time Log Batch", "_T-Time Log Batch-00001", "status"), - "Submitted") + self.assertEquals(webnotes.conn.get_value("Time Log Batch", "_T-Time Log Batch-00001", + "status"), "Submitted") self.assertEquals(webnotes.conn.get_value("Time Log", "_T-Time Log-00001", "status"), "Batched for Billing") + def test_sales_invoice_gl_entry_without_aii(self): + si = webnotes.bean(webnotes.copy_doclist(test_records[1])) + si.insert() + si.submit() + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Sales Invoice' and voucher_no=%s + order by account asc""", si.doc.name, as_dict=1) + self.assertTrue(gl_entries) + expected_values = sorted([ + [si.doc.debit_to, 630.0, 0.0], + [test_records[1][1]["income_account"], 0.0, 500.0], + [test_records[1][2]["account_head"], 0.0, 80.0], + [test_records[1][3]["account_head"], 0.0, 50.0], + ]) + + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_values[i][0], gle.account) + self.assertEquals(expected_values[i][1], gle.debit) + self.assertEquals(expected_values[i][2], gle.credit) + + def test_sales_invoice_gl_entry_with_aii(self): + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + + self._insert_purchase_receipt() + dn = self._insert_delivery_note() + + si_against_dn = webnotes.copy_doclist(test_records[1]) + si_against_dn[1]["delivery_note"] = dn.doc.name + si = webnotes.bean(si_against_dn) + si.insert() + si.submit() + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Sales Invoice' and voucher_no=%s + order by account asc""", si.doc.name, as_dict=1) + self.assertTrue(gl_entries) + + expected_values = sorted([ + [si.doc.debit_to, 630.0, 0.0], + [test_records[1][1]["income_account"], 0.0, 500.0], + [test_records[1][2]["account_head"], 0.0, 80.0], + [test_records[1][3]["account_head"], 0.0, 50.0], + ["Stock Delivered But Not Billed - _TC", 0.0, 375.0], + [test_records[1][1]["expense_account"], 375.0, 0.0] + ]) + print expected_values + print gl_entries + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_values[i][0], gle.account) + self.assertEquals(expected_values[i][1], gle.debit) + self.assertEquals(expected_values[i][2], gle.credit) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + + + def _insert_purchase_receipt(self): + from stock.doctype.purchase_receipt.test_purchase_receipt import test_records \ + as pr_test_records + pr = webnotes.bean(copy=pr_test_records[0]) + pr.run_method("calculate_taxes_and_totals") + pr.insert() + pr.submit() + + def _insert_delivery_note(self): + from stock.doctype.delivery_note.test_delivery_note import test_records \ + as dn_test_records + dn = webnotes.bean(copy=dn_test_records[0]) + dn.insert() + dn.submit() + return dn test_dependencies = ["Journal Voucher"] -test_records = [[ - { - "naming_series": "_T-Sales Invoice-", - "company": "_Test Company", - "conversion_rate": 1.0, - "currency": "INR", - "debit_to": "_Test Customer - _TC", - "customer": "_Test Customer", - "customer_name": "_Test Customer", - "doctype": "Sales Invoice", - "due_date": "2013-01-23", - "fiscal_year": "_Test Fiscal Year 2013", - "grand_total": 561.8, - "grand_total_export": 561.8, - "net_total": 500.0, - "plc_conversion_rate": 1.0, - "posting_date": "2013-01-23", - "price_list_currency": "INR", - "price_list_name": "_Test Price List", - "territory": "_Test Territory" - }, - { - "amount": 500.0, - "basic_rate": 500.0, - "description": "138-CMS Shoe", - "doctype": "Sales Invoice Item", - "export_amount": 500.0, - "export_rate": 500.0, - "income_account": "Sales - _TC", - "cost_center": "_Test Cost Center - _TC", - "item_name": "138-CMS Shoe", - "parentfield": "entries", - "qty": 1.0 - }, - { - "account_head": "_Test Account VAT - _TC", - "charge_type": "On Net Total", - "description": "VAT", - "doctype": "Sales Taxes and Charges", - "parentfield": "other_charges", - "tax_amount": 30.0, - }, - { - "account_head": "_Test Account Service Tax - _TC", - "charge_type": "On Net Total", - "description": "Service Tax", - "doctype": "Sales Taxes and Charges", - "parentfield": "other_charges", - "tax_amount": 31.8, - } -]] \ No newline at end of file +test_records = [ + [ + { + "naming_series": "_T-Sales Invoice-", + "company": "_Test Company", + "conversion_rate": 1.0, + "currency": "INR", + "debit_to": "_Test Customer - _TC", + "customer": "_Test Customer", + "customer_name": "_Test Customer", + "doctype": "Sales Invoice", + "due_date": "2013-01-23", + "fiscal_year": "_Test Fiscal Year 2013", + "grand_total": 561.8, + "grand_total_export": 561.8, + "net_total": 500.0, + "plc_conversion_rate": 1.0, + "posting_date": "2013-01-23", + "price_list_currency": "INR", + "price_list_name": "_Test Price List", + "territory": "_Test Territory" + }, + { + "amount": 500.0, + "basic_rate": 500.0, + "description": "138-CMS Shoe", + "doctype": "Sales Invoice Item", + "export_amount": 500.0, + "export_rate": 500.0, + "income_account": "Sales - _TC", + "cost_center": "_Test Cost Center - _TC", + "item_name": "138-CMS Shoe", + "parentfield": "entries", + "qty": 1.0 + }, + { + "account_head": "_Test Account VAT - _TC", + "charge_type": "On Net Total", + "description": "VAT", + "doctype": "Sales Taxes and Charges", + "parentfield": "other_charges", + "tax_amount": 30.0, + }, + { + "account_head": "_Test Account Service Tax - _TC", + "charge_type": "On Net Total", + "description": "Service Tax", + "doctype": "Sales Taxes and Charges", + "parentfield": "other_charges", + "tax_amount": 31.8, + } + ], + [ + { + "naming_series": "_T-Sales Invoice-", + "company": "_Test Company", + "conversion_rate": 1.0, + "currency": "INR", + "debit_to": "_Test Customer - _TC", + "customer": "_Test Customer", + "customer_name": "_Test Customer", + "doctype": "Sales Invoice", + "due_date": "2013-01-23", + "fiscal_year": "_Test Fiscal Year 2013", + "grand_total": 630.0, + "grand_total_export": 630.0, + "net_total": 500.0, + "plc_conversion_rate": 1.0, + "posting_date": "2013-03-07", + "price_list_currency": "INR", + "price_list_name": "_Test Price List", + "territory": "_Test Territory" + }, + { + "item_code": "_Test Item", + "item_name": "_Test Item", + "description": "_Test Item", + "doctype": "Sales Invoice Item", + "parentfield": "entries", + "qty": 1.0, + "basic_rate": 500.0, + "amount": 500.0, + "export_rate": 500.0, + "export_amount": 500.0, + "income_account": "Sales - _TC", + "expense_account": "_Test Account Cost for Goods Sold", + "cost_center": "_Test Cost Center - _TC", + }, + { + "account_head": "_Test Account VAT - _TC", + "charge_type": "On Net Total", + "description": "VAT", + "doctype": "Sales Taxes and Charges", + "parentfield": "other_charges", + "tax_amount": 80.0, + }, + { + "account_head": "_Test Account Service Tax - _TC", + "charge_type": "On Net Total", + "description": "Service Tax", + "doctype": "Sales Taxes and Charges", + "parentfield": "other_charges", + "tax_amount": 50.0, + } + ], +] \ No newline at end of file diff --git a/stock/doctype/delivery_note/test_delivery_note.py b/stock/doctype/delivery_note/test_delivery_note.py index c2bb5d07ca..acdf8b9e07 100644 --- a/stock/doctype/delivery_note/test_delivery_note.py +++ b/stock/doctype/delivery_note/test_delivery_note.py @@ -109,7 +109,7 @@ test_records = [ "description": "CPU", "doctype": "Delivery Note Item", "item_code": "_Test Item", - "item_name": "CPU", + "item_name": "_Test Item", "parentfield": "delivery_note_details", "qty": 5.0, "basic_rate": 100.0, From b7af3d033e78eb187d44d8b2284f5146e3e21f98 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 7 Mar 2013 12:17:52 +0530 Subject: [PATCH 113/982] changed field contact_no to phone in lead details of transaction base --- utilities/transaction_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/transaction_base.py b/utilities/transaction_base.py index 61486c50d5..905e98f4bc 100644 --- a/utilities/transaction_base.py +++ b/utilities/transaction_base.py @@ -153,7 +153,7 @@ class TransactionBase(DocListController): # Get Lead Details # ----------------------- def get_lead_details(self, name): - details = webnotes.conn.sql("select name, lead_name, address_line1, address_line2, city, country, state, pincode, territory, contact_no, mobile_no, email_id, company_name from `tabLead` where name = '%s'" %(name), as_dict = 1) + details = webnotes.conn.sql("select name, lead_name, address_line1, address_line2, city, country, state, pincode, territory, phone, mobile_no, email_id, company_name from `tabLead` where name = '%s'" %(name), as_dict = 1) extract = lambda x: details and details[0] and details[0].get(x,'') or '' address_fields = [('','address_line1'),('\n','address_line2'),('\n','city'),(' ','pincode'),('\n','state'),('\n','country'),('\nPhone: ','contact_no')] From 202508410c4a01d432f07a6dcfec1dd3a85e27d2 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 7 Mar 2013 12:25:21 +0530 Subject: [PATCH 114/982] completed dropbox backup in backup manager --- .../doctype/backup_manager/backup_dropbox.py | 115 ++++++++++++++++++ .../doctype/backup_manager/backup_manager.js | 12 +- .../doctype/backup_manager/backup_manager.py | 73 ++++++----- .../doctype/backup_manager/backup_manager.txt | 35 +++++- setup/page/setup/setup.js | 26 ++-- startup/schedule_handlers.py | 7 +- 6 files changed, 209 insertions(+), 59 deletions(-) create mode 100644 setup/doctype/backup_manager/backup_dropbox.py diff --git a/setup/doctype/backup_manager/backup_dropbox.py b/setup/doctype/backup_manager/backup_dropbox.py new file mode 100644 index 0000000000..3b0857fdd9 --- /dev/null +++ b/setup/doctype/backup_manager/backup_dropbox.py @@ -0,0 +1,115 @@ +import os +import webnotes +from webnotes.utils import get_request_site_address + +@webnotes.whitelist() +def get_dropbox_authorize_url(): + sess = get_dropbox_session() + request_token = sess.obtain_request_token() + return_address = get_request_site_address(True) \ + + "?cmd=setup.doctype.backup_manager.backup_dropbox.dropbox_callback" + + url = sess.build_authorize_url(request_token, return_address) + + return { + "url": url, + "key": request_token.key, + "secret": request_token.secret, + } + +@webnotes.whitelist(allow_guest=True) +def dropbox_callback(oauth_token=None, not_approved=False): + if not not_approved: + if webnotes.conn.get_value("Backup Manager", None, "dropbox_access_key")==oauth_token: + webnotes.conn.set_value("Backup Manager", "Backup Manager", "dropbox_access_allowed", 1) + message = "Dropbox access allowed." + + sess = get_dropbox_session() + sess.set_request_token(webnotes.conn.get_value("Backup Manager", None, "dropbox_access_key"), + webnotes.conn.get_value("Backup Manager", None, "dropbox_access_secret")) + access_token = sess.obtain_access_token() + + webnotes.conn.set_value("Backup Manager", "Backup Manager", "dropbox_access_key", + access_token.key) + webnotes.conn.set_value("Backup Manager", "Backup Manager", "dropbox_access_secret", + access_token.secret) + + else: + webnotes.conn.set_value("Backup Manager", "Backup Manager", "dropbox_access_allowed", 0) + message = "Illegal Access Token Please try again." + else: + webnotes.conn.set_value("Backup Manager", "Backup Manager", "dropbox_access_allowed", 0) + message = "Dropbox Access not approved." + + webnotes.message_title = "Dropbox Approval" + webnotes.message = "

    %s

    Please close this window.

    " % message + + webnotes.conn.commit() + webnotes.response['type'] = 'page' + webnotes.response['page_name'] = 'message.html' + +def backup_to_dropbox(): + from dropbox import client, session + from conf import dropbox_access_key, dropbox_secret_key + from webnotes.utils.backups import new_backup + if not webnotes.conn: + webnotes.connect() + + + sess = session.DropboxSession(dropbox_access_key, dropbox_secret_key, "app_folder") + + sess.set_token(webnotes.conn.get_value("Backup Manager", None, "dropbox_access_key"), + webnotes.conn.get_value("Backup Manager", None, "dropbox_access_secret")) + + dropbox_client = client.DropboxClient(sess) + + # upload database + backup = new_backup() + filename = backup.backup_path_db + upload_file_to_dropbox(filename, "database", dropbox_client) + + # upload files + response = dropbox_client.metadata("files") + + + # add missing files + for filename in os.listdir(os.path.join("public", "files")): + found = False + for file_metadata in response["contents"]: + if filename==os.path.basename(file_metadata["path"]): + if os.stat(os.path.join("public", "files", filename)).st_size==file_metadata["bytes"]: + found=True + + if not found: + upload_file_to_dropbox(os.path.join("public", "files", filename), "files", dropbox_client) + + +def get_dropbox_session(): + from dropbox import session + try: + from conf import dropbox_access_key, dropbox_secret_key + except ImportError, e: + webnotes.msgprint(_("Please set Dropbox access keys in") + " conf.py", + raise_exception=True) + + sess = session.DropboxSession(dropbox_access_key, dropbox_secret_key, "app_folder") + return sess + +def upload_file_to_dropbox(filename, folder, dropbox_client): + if __name__=="__main__": + print "Uploading " + filename + size = os.stat(filename).st_size + f = open(filename,'r') + + if size > 4194304: + uploader = dropbox_client.get_chunked_uploader(f, size) + while uploader.offset < size: + try: + uploader.upload_chunked() + except rest.ErrorResponse, e: + pass + else: + response = dropbox_client.put_file(folder + "/" + os.path.basename(filename), f, overwrite=True) + +if __name__=="__main__": + backup_to_dropbox() \ No newline at end of file diff --git a/setup/doctype/backup_manager/backup_manager.js b/setup/doctype/backup_manager/backup_manager.js index a0f7f71dcc..154c72ec0e 100644 --- a/setup/doctype/backup_manager/backup_manager.js +++ b/setup/doctype/backup_manager/backup_manager.js @@ -1,6 +1,6 @@ cur_frm.cscript.allow_dropbox_access = function(doc) { wn.call({ - method: "setup.doctype.backup_manager.backup_manager.get_dropbox_authorize_url", + method: "setup.doctype.backup_manager.backup_dropbox.get_dropbox_authorize_url", callback: function(r) { if(!r.exc) { cur_frm.set_value("dropbox_access_secret", r.message.secret); @@ -11,4 +11,14 @@ cur_frm.cscript.allow_dropbox_access = function(doc) { } } }) +} + +cur_frm.cscript.backup_right_now = function(doc) { + msgprint("Backing up and uploading. This may take a few minutes.") + wn.call({ + method: "setup.doctype.backup_manager.backup_manager.take_backups", + callback: function(r) { + msgprint("Backups taken. Please check your email for the response.") + } + }) } \ No newline at end of file diff --git a/setup/doctype/backup_manager/backup_manager.py b/setup/doctype/backup_manager/backup_manager.py index fc41654985..48d48e817c 100644 --- a/setup/doctype/backup_manager/backup_manager.py +++ b/setup/doctype/backup_manager/backup_manager.py @@ -3,51 +3,46 @@ from __future__ import unicode_literals import webnotes from webnotes import _ -from webnotes.utils import get_request_site_address class DocType: def __init__(self, d, dl): self.doc, self.doclist = d, dl -@webnotes.whitelist() -def get_dropbox_authorize_url(): - from dropbox import session +def take_backups_daily(): + take_backups_if("Daily") +def take_backups_weekly(): + take_backups_if("Weekly") + +def take_backups_if(freq): + if webnotes.conn.get_value("Backup Manager", None, "upload_backups_to_dropbox")==freq: + take_backups() + +@webnotes.whitelist() +def take_backups(): try: - from conf import dropbox_access_key, dropbox_secret_key - except ImportError, e: - webnotes.msgprint(_("Please set Dropbox access keys in") + " conf.py", - raise_exception=True) - - sess = session.DropboxSession(dropbox_access_key, dropbox_secret_key, "app_folder") - request_token = sess.obtain_request_token() - return_address = get_request_site_address(True) \ - + "?cmd=setup.doctype.backup_manager.backup_manager.dropbox_callback" - - url = sess.build_authorize_url(request_token, return_address) - - return { - "url": url, - "key": request_token.key, - "secret": request_token.secret, - } - -@webnotes.whitelist(allow_guest=True) -def dropbox_callback(oauth_token=None, not_approved=False): - if not not_approved: - if webnotes.conn.get_value("Backup Manager", None, "dropbox_access_key")==oauth_token: - webnotes.conn.set_value("Backup Manager", "Backup Manager", "dropbox_access_allowed", 1) - message = "Dropbox access allowed." - else: - webnotes.conn.set_value("Backup Manager", "Backup Manager", "dropbox_access_allowed", 0) - message = "Illegal Access Token Please try again." + from setup.doctype.backup_manager.backup_dropbox import backup_to_dropbox + backup_to_dropbox() + send_email(True, "Dropbox") + except Exception, e: + send_email(False, "Dropbox", e) + +def send_email(success, service_name, error_status=None): + if success: + subject = "Backup Upload Successful" + message ="""

    Backup Uploaded Successfully

    Hi there, this is just to inform you + that your backup was successfully uploaded to your %s account. So relax!

    + """ % service_name + else: - webnotes.conn.set_value("Backup Manager", "Backup Manager", "dropbox_access_allowed", 0) - message = "Dropbox Access not approved." + subject = "[Warning] Backup Upload Failed" + message ="""

    Backup Upload Failed

    Oops, your automated backup to %s + failed.

    +

    Error message: %s

    +

    Please contact your system manager for more information.

    + """ % (service_name, error_status) - webnotes.message_title = "Dropbox Approval" - webnotes.message = "

    %s

    Please close this window.

    " % message - - webnotes.conn.commit() - webnotes.response['type'] = 'page' - webnotes.response['page_name'] = 'message.html' + # email system managers + from webnotes.utils.email_lib import sendmail + sendmail(webnotes.conn.get_value("Backup Manager", None, "send_notifications_to").split(","), + subject=subject, msg=message) diff --git a/setup/doctype/backup_manager/backup_manager.txt b/setup/doctype/backup_manager/backup_manager.txt index bf5d6867f4..a994e7da53 100644 --- a/setup/doctype/backup_manager/backup_manager.txt +++ b/setup/doctype/backup_manager/backup_manager.txt @@ -2,7 +2,7 @@ { "creation": "2013-03-05 16:35:50", "docstatus": 0, - "modified": "2013-03-05 18:05:05", + "modified": "2013-03-07 12:18:07", "modified_by": "Administrator", "owner": "Administrator" }, @@ -39,6 +39,27 @@ "name": "Backup Manager" }, { + "doctype": "DocField", + "fieldname": "setup", + "fieldtype": "Section Break", + "label": "Setup" + }, + { + "description": "Email ids separated by commas.", + "doctype": "DocField", + "fieldname": "send_notifications_to", + "fieldtype": "Data", + "label": "Send Notifications To", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "backup_right_now", + "fieldtype": "Button", + "label": "Backup Right Now" + }, + { + "description": "Note: Backups and files are not deleted from Dropbox, you will have to delete them manually.", "doctype": "DocField", "fieldname": "sync_with_dropbox", "fieldtype": "Section Break", @@ -47,27 +68,31 @@ { "doctype": "DocField", "fieldname": "upload_backups_to_dropbox", - "fieldtype": "Check", - "label": "Upload Backups to Dropbox" + "fieldtype": "Select", + "label": "Upload Backups to Dropbox", + "options": "Never\nWeekly\nDaily" }, { "doctype": "DocField", "fieldname": "dropbox_access_key", "fieldtype": "Data", "hidden": 1, - "label": "Dropbox Access Key" + "label": "Dropbox Access Key", + "read_only": 1 }, { "doctype": "DocField", "fieldname": "dropbox_access_secret", "fieldtype": "Data", "hidden": 1, - "label": "Dropbox Access Secret" + "label": "Dropbox Access Secret", + "read_only": 1 }, { "doctype": "DocField", "fieldname": "dropbox_access_allowed", "fieldtype": "Check", + "hidden": 1, "label": "Dropbox Access Allowed", "read_only": 1 }, diff --git a/setup/page/setup/setup.js b/setup/page/setup/setup.js index 1d8a5ba822..e970a60c24 100644 --- a/setup/page/setup/setup.js +++ b/setup/page/setup/setup.js @@ -186,19 +186,19 @@ wn.module_page["Setup"] = [ }, ] }, - // { - // title: wn._("Backups"), - // icon: "icon-cloud-upload", - // right: true, - // items: [ - // { - // "route":"Form/Backup Manager", - // doctype:"Backup Manager", - // label: wn._("Backup Manager"), - // "description":wn._("Sync backups with remote tools like Dropbox etc.") - // }, - // ] - // }, + { + title: wn._("Backups"), + icon: "icon-cloud-upload", + right: true, + items: [ + { + "route":"Form/Backup Manager", + doctype:"Backup Manager", + label: wn._("Backup Manager"), + "description":wn._("Sync backups with remote tools like Dropbox etc.") + }, + ] + }, ] pscript['onload_Setup'] = function(wrapper) { diff --git a/startup/schedule_handlers.py b/startup/schedule_handlers.py index c710c54086..2a066af331 100644 --- a/startup/schedule_handlers.py +++ b/startup/schedule_handlers.py @@ -51,8 +51,13 @@ def execute_daily(): from webnotes.utils.email_lib.bulk import clear_outbox run_fn(clear_outbox) + # daily backup + from setup.doctype.backup_manager.backup_manager + take_backups_daily() + def execute_weekly(): - pass + from setup.doctype.backup_manager.backup_manager + take_backups_weekly() def execute_monthly(): pass From 481d0deaca3dc0f22db67d3ca5623f2f951b7148 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 7 Mar 2013 12:48:47 +0530 Subject: [PATCH 115/982] fix in schedule handler --- startup/schedule_handlers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/startup/schedule_handlers.py b/startup/schedule_handlers.py index 2a066af331..0799817206 100644 --- a/startup/schedule_handlers.py +++ b/startup/schedule_handlers.py @@ -52,11 +52,11 @@ def execute_daily(): run_fn(clear_outbox) # daily backup - from setup.doctype.backup_manager.backup_manager + from setup.doctype.backup_manager.backup_manager import take_backups_daily take_backups_daily() def execute_weekly(): - from setup.doctype.backup_manager.backup_manager + from setup.doctype.backup_manager.backup_manager import take_backups_weekly take_backups_weekly() def execute_monthly(): From 77a6ddaf03f2afb6057f6f3e5b582ef72bfda6ad Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 7 Mar 2013 13:49:34 +0530 Subject: [PATCH 116/982] reload report doctype --- patches/patch_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patches/patch_list.py b/patches/patch_list.py index d6b8f183bb..d136820c2e 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -16,6 +16,7 @@ from __future__ import unicode_literals patch_list = [ + "execute:webnotes.reload_doc('core', 'doctype', 'report') # 2013-03-07", "patches.mar_2012.so_rv_mapper_fix", "patches.mar_2012.clean_property_setter", "patches.april_2012.naming_series_patch", From 9f3c72775365d47d0d15f28835fb506b35e8ec43 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 7 Mar 2013 14:47:41 +0530 Subject: [PATCH 117/982] website navbar color change --- website/css/website.css | 8 +- .../style_settings/custom_template.css | 75 +++++++++++++++++++ .../doctype/style_settings/style_settings.js | 1 + .../doctype/style_settings/style_settings.txt | 37 +++++++-- 4 files changed, 108 insertions(+), 13 deletions(-) diff --git a/website/css/website.css b/website/css/website.css index 956f22e8bc..a0f4e1b3ca 100644 --- a/website/css/website.css +++ b/website/css/website.css @@ -4,14 +4,14 @@ div.outer { box-shadow: 0px 0px 3px rgba(0,0,0,0.9); background-color: #fff; border-radius: 5px; - padding: 20px; - margin: 30px -20px 10px -20px; + padding: 30px; + margin: 30px -30px 10px -30px; min-height: 400px; overflow: hidden; } .outer .navbar { - margin: -20px -20px 10px -20px; + margin: -30px -30px 10px -30px; } footer { @@ -121,5 +121,3 @@ p, li { .avatar-x-large img { width: 100px; } - -/* */ \ No newline at end of file diff --git a/website/doctype/style_settings/custom_template.css b/website/doctype/style_settings/custom_template.css index 9009bbe18a..52897447bd 100644 --- a/website/doctype/style_settings/custom_template.css +++ b/website/doctype/style_settings/custom_template.css @@ -26,3 +26,78 @@ h1, h2, h3, h4, h5 { font-family: '{{ doc.heading_font}}', Arial, 'Helvetica Neue' !important; } {% endif %} + +/* Bootstrap Navbar */ + +.navbar-inverse .navbar-inner { + background-color: #{{ doc.top_bar_background or "444"}}; + background-repeat: repeat-x; + border-color: transparent; + background-image: none; +} + +.navbar-inverse .brand, +.navbar-inverse .nav > li > a { + color: #{{ doc.top_bar_foreground or "fff"}}; + text-shadow: none; +} + +.navbar-inverse .brand:hover, +.navbar-inverse .nav > li > a:hover, +.navbar-inverse .brand:focus, +.navbar-inverse .nav > li > a:focus { + color: #{{ doc.top_bar_foreground or "fff"}}; +} + +.navbar-inverse .brand { + color: #{{ doc.top_bar_foreground or "fff"}}; +} + +.navbar-inverse .navbar-text { + color: #999999; +} + +.navbar-inverse .nav > li > a:focus, +.navbar-inverse .nav > li > a:hover { + color: #{{ doc.top_bar_foreground or "fff"}}; + background-color: transparent; +} + +.navbar-inverse .nav .active > a, +.navbar-inverse .nav .active > a:hover, +.navbar-inverse .nav .active > a:focus { + color: #{{ doc.top_bar_foreground or "fff"}}; + background-color: transparent; +} + +.navbar-inverse .navbar-link { + color: #999999; +} + +.navbar-inverse .navbar-link:hover, +.navbar-inverse .navbar-link:focus { + color: #{{ doc.top_bar_foreground or "fff"}}; +} + +.navbar-fixed-top .navbar-inner, +.navbar-static-top .navbar-inner { + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + +} +.navbar .nav > .active > a, +.navbar .nav > .active > a:hover, +.navbar .nav > .active > a:focus { + color: #424242; + text-decoration: none; + background-color: transparent; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret { + border-top-color: #{{ doc.top_bar_foreground or "fff"}}; + border-bottom-color: #{{ doc.top_bar_foreground or "fff"}}; +} diff --git a/website/doctype/style_settings/style_settings.js b/website/doctype/style_settings/style_settings.js index 54091a38f2..6a17db99ee 100644 --- a/website/doctype/style_settings/style_settings.js +++ b/website/doctype/style_settings/style_settings.js @@ -18,5 +18,6 @@ cur_frm.cscript.onload_post_render = function() { wn.require('lib/public/js/lib/jscolor/jscolor.js'); cur_frm.fields_dict.background_color.input.className = 'color'; + cur_frm.fields_dict.top_bar_background.input.className = 'color'; jscolor.bind(); } \ No newline at end of file diff --git a/website/doctype/style_settings/style_settings.txt b/website/doctype/style_settings/style_settings.txt index 5f53441ea8..0063ba975e 100644 --- a/website/doctype/style_settings/style_settings.txt +++ b/website/doctype/style_settings/style_settings.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:32", + "creation": "2013-01-25 11:35:10", "docstatus": 0, - "modified": "2013-01-22 14:57:25", + "modified": "2013-03-07 14:46:51", "modified_by": "Administrator", "owner": "Administrator" }, @@ -24,18 +24,15 @@ "permlevel": 0 }, { - "create": 1, "doctype": "DocPerm", "name": "__common__", "parent": "Style Settings", "parentfield": "permissions", "parenttype": "DocType", - "permlevel": 0, "read": 1, - "report": 1, + "report": 0, "role": "Website Manager", - "submit": 0, - "write": 1 + "submit": 0 }, { "doctype": "DocType", @@ -56,6 +53,20 @@ "fieldtype": "Data", "label": "Background Color" }, + { + "doctype": "DocField", + "fieldname": "top_bar_background", + "fieldtype": "Data", + "label": "Top Bar Background" + }, + { + "description": "000 is black, fff is white", + "doctype": "DocField", + "fieldname": "top_bar_foreground", + "fieldtype": "Select", + "label": "Top Bar Foreground", + "options": "000\nFFF" + }, { "doctype": "DocField", "fieldname": "cb0", @@ -115,6 +126,16 @@ "print_hide": 1 }, { - "doctype": "DocPerm" + "create": 1, + "doctype": "DocPerm", + "permlevel": 0, + "write": 1 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1 } ] \ No newline at end of file From b96fef980238cb96b8760170e4b15dd9f2235f68 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 7 Mar 2013 15:35:36 +0530 Subject: [PATCH 118/982] remove cancelled entries from grid report when fetching data based on modified --- accounts/general_ledger.py | 8 +++++--- .../financial_analytics/financial_analytics.js | 8 +++++--- accounts/page/general_ledger/general_ledger.js | 2 +- .../page/purchase_analytics/purchase_analytics.js | 14 ++------------ selling/page/sales_analytics/sales_analytics.js | 12 +----------- 5 files changed, 14 insertions(+), 30 deletions(-) diff --git a/accounts/general_ledger.py b/accounts/general_ledger.py index 215c351421..8e0f4082bc 100644 --- a/accounts/general_ledger.py +++ b/accounts/general_ledger.py @@ -16,7 +16,7 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import flt, cstr +from webnotes.utils import flt, cstr, now from webnotes.model.doc import Document def make_gl_entries(gl_map, cancel=False, adv_adj=False, merge_entries=True, @@ -109,5 +109,7 @@ def validate_total_debit_credit(total_debit, total_credit): (total_debit - total_credit), raise_exception=1) def set_as_cancel(voucher_type, voucher_no): - webnotes.conn.sql("""update `tabGL Entry` set is_cancelled='Yes' - where voucher_type=%s and voucher_no=%s""", (voucher_type, voucher_no)) \ No newline at end of file + webnotes.conn.sql("""update `tabGL Entry` set is_cancelled='Yes', + modified=%s, modified_by=%s + where voucher_type=%s and voucher_no=%s""", + (now(), webnotes.session.user, voucher_type, voucher_no)) \ No newline at end of file diff --git a/accounts/page/financial_analytics/financial_analytics.js b/accounts/page/financial_analytics/financial_analytics.js index f0bafdb07b..f7145490a1 100644 --- a/accounts/page/financial_analytics/financial_analytics.js +++ b/accounts/page/financial_analytics/financial_analytics.js @@ -71,9 +71,11 @@ erpnext.FinancialAnalytics = erpnext.AccountTreeGrid.extend({ setup_filters: function() { var me = this; this._super(); - this.filter_inputs.pl_or_bs.change(function() { - me.filter_inputs.refresh.click(); - }).add_options($.map(wn.report_dump.data["Cost Center"], function(v) {return v.name;})); + this.trigger_refresh_on_change(["pl_or_bs"]); + + this.filter_inputs.pl_or_bs + .add_options($.map(wn.report_dump.data["Cost Center"], function(v) {return v.name;})); + this.setup_plot_check(); }, init_filter_values: function() { diff --git a/accounts/page/general_ledger/general_ledger.js b/accounts/page/general_ledger/general_ledger.js index 8f6b598d56..4a3f21ea92 100644 --- a/accounts/page/general_ledger/general_ledger.js +++ b/accounts/page/general_ledger/general_ledger.js @@ -108,7 +108,7 @@ erpnext.GeneralLedger = wn.views.GridReport.extend({ // filter accounts options by company this.filter_inputs.company.change(function() { me.setup_account_filter(this); - me.filter_inputs.refresh.click(); + me.set_route() }); this.filter_inputs.account.change(function() { diff --git a/buying/page/purchase_analytics/purchase_analytics.js b/buying/page/purchase_analytics/purchase_analytics.js index 7d8171ebbd..fc082eae13 100644 --- a/buying/page/purchase_analytics/purchase_analytics.js +++ b/buying/page/purchase_analytics/purchase_analytics.js @@ -120,19 +120,9 @@ erpnext.PurchaseAnalytics = wn.views.TreeGridReport.extend({ setup_filters: function() { var me = this; this._super(); - - this.filter_inputs.value_or_qty.change(function() { - me.filter_inputs.refresh.click(); - }); - - this.filter_inputs.tree_type.change(function() { - me.filter_inputs.refresh.click(); - }); - - this.filter_inputs.based_on.change(function() { - me.filter_inputs.refresh.click(); - }); + this.trigger_refresh_on_change(["value_or_qty", "tree_type", "based_on"]); + this.show_zero_check() this.setup_plot_check(); }, diff --git a/selling/page/sales_analytics/sales_analytics.js b/selling/page/sales_analytics/sales_analytics.js index 499c6c0156..0b35af5f31 100644 --- a/selling/page/sales_analytics/sales_analytics.js +++ b/selling/page/sales_analytics/sales_analytics.js @@ -122,18 +122,8 @@ erpnext.SalesAnalytics = wn.views.TreeGridReport.extend({ setup_filters: function() { var me = this; this._super(); - - this.filter_inputs.value_or_qty.change(function() { - me.filter_inputs.refresh.click(); - }); - - this.filter_inputs.tree_type.change(function() { - me.filter_inputs.refresh.click(); - }); - this.filter_inputs.based_on.change(function() { - me.filter_inputs.refresh.click(); - }); + this.trigger_refresh_on_change(["value_or_qty", "tree_type", "based_on"]); this.show_zero_check() this.setup_plot_check(); From f1e274c8b47d34bdcb70631491a2a5830faa485d Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 7 Mar 2013 16:34:59 +0530 Subject: [PATCH 119/982] when cancelling stock ledger entry, change modified and modified by --- stock/doctype/stock_ledger/stock_ledger.py | 26 ++++++++++++---------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/stock/doctype/stock_ledger/stock_ledger.py b/stock/doctype/stock_ledger/stock_ledger.py index 05fc0e0642..5dff992ae4 100644 --- a/stock/doctype/stock_ledger/stock_ledger.py +++ b/stock/doctype/stock_ledger/stock_ledger.py @@ -17,7 +17,7 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import add_days, cstr, flt, nowdate, cint +from webnotes.utils import add_days, cstr, flt, nowdate, cint, now from webnotes.model.doc import Document from webnotes.model.bean import getlist from webnotes.model.code import get_obj @@ -49,7 +49,7 @@ class DocType: serial_nos = get_valid_serial_nos(d.serial_no) for s in serial_nos: s = s.strip() - sr_war = sql("select warehouse,name from `tabSerial No` where name = '%s'" % (s)) + sr_war = webnotes.conn.sql("select warehouse,name from `tabSerial No` where name = '%s'" % (s)) if not sr_war: msgprint("Serial No %s does not exists"%s, raise_exception = 1) elif not sr_war[0][0]: @@ -81,7 +81,7 @@ class DocType: def set_pur_serial_no_values(self, obj, serial_no, d, s, new_rec, rejected=None): - item_details = sql("""select item_group, warranty_period + item_details = webnotes.conn.sql("""select item_group, warranty_period from `tabItem` where name = '%s' and (ifnull(end_of_life,'')='' or end_of_life = '0000-00-00' or end_of_life > now()) """ %(d.item_code), as_dict=1) @@ -112,7 +112,7 @@ class DocType: def update_serial_purchase_details(self, obj, d, serial_no, is_submit, purpose = '', rejected=None): - exists = sql("select name, status, docstatus from `tabSerial No` where name = '%s'" % (serial_no)) + exists = webnotes.conn.sql("select name, status, docstatus from `tabSerial No` where name = '%s'" % (serial_no)) if is_submit: if exists and exists[0][2] != 2 and purpose not in ['Material Transfer', 'Sales Return']: msgprint("Serial No: %s already %s" % (serial_no, exists and exists[0][1]), raise_exception = 1) @@ -126,15 +126,15 @@ class DocType: if exists and exists[0][1] == 'Delivered' and exists[0][2] != 2: msgprint("Serial No: %s is already delivered, you can not cancel the document." % serial_no, raise_exception=1) elif purpose == 'Material Transfer': - sql("update `tabSerial No` set status = 'In Store', purchase_document_type = '', purchase_document_no = '', warehouse = '%s' where name = '%s'" % (d.s_warehouse, serial_no)) + webnotes.conn.sql("update `tabSerial No` set status = 'In Store', purchase_document_type = '', purchase_document_no = '', warehouse = '%s' where name = '%s'" % (d.s_warehouse, serial_no)) elif purpose == 'Sales Return': - sql("update `tabSerial No` set status = 'Delivered', purchase_document_type = '', purchase_document_no = '' where name = '%s'" % serial_no) + webnotes.conn.sql("update `tabSerial No` set status = 'Delivered', purchase_document_type = '', purchase_document_no = '' where name = '%s'" % serial_no) else: - sql("update `tabSerial No` set docstatus = 2, status = 'Not in Use', purchase_document_type = '', purchase_document_no = '', purchase_date = null, purchase_rate = 0, supplier = null, supplier_name = '', supplier_address = '', warehouse = '' where name = '%s'" % serial_no) + webnotes.conn.sql("update `tabSerial No` set docstatus = 2, status = 'Not in Use', purchase_document_type = '', purchase_document_no = '', purchase_date = null, purchase_rate = 0, supplier = null, supplier_name = '', supplier_address = '', warehouse = '' where name = '%s'" % serial_no) def check_serial_no_exists(self, serial_no, item_code): - chk = sql("select name, status, docstatus, item_code from `tabSerial No` where name = %s", (serial_no), as_dict=1) + chk = webnotes.conn.sql("select name, status, docstatus, item_code from `tabSerial No` where name = %s", (serial_no), as_dict=1) if not chk: msgprint("Serial No: %s does not exists in the system" % serial_no, raise_exception=1) elif chk and chk[0]['item_code'] != item_code: @@ -169,7 +169,7 @@ class DocType: self.check_serial_no_exists(serial_no, d.item_code) self.set_delivery_serial_no_values(obj, serial_no) else: - sql("update `tabSerial No` set docstatus = 0, status = 'In Store', delivery_document_type = '', delivery_document_no = '', delivery_date = null, customer = null, customer_name = '', delivery_address = '', territory = null where name = '%s'" % (serial_no)) + webnotes.conn.sql("update `tabSerial No` set docstatus = 0, status = 'In Store', delivery_document_type = '', delivery_document_no = '', delivery_date = null, customer = null, customer_name = '', delivery_address = '', territory = null where name = '%s'" % (serial_no)) def update_serial_record(self, obj, fname, is_submit = 1, is_incoming = 0): @@ -202,8 +202,10 @@ class DocType: if v.get('is_cancelled') == 'Yes': v['actual_qty'] = -flt(v['actual_qty']) # cancel matching entry - sql("update `tabStock Ledger Entry` set is_cancelled='Yes' where voucher_no=%s \ - and voucher_type=%s", (v['voucher_no'], v['voucher_type'])) + webnotes.conn.sql("""update `tabStock Ledger Entry` set is_cancelled='Yes', + modified=%s, modified_by=%s + where voucher_no=%s and voucher_type=%s""", + (now(), webnotes.session.user, v['voucher_no'], v['voucher_type'])) if v.get("actual_qty"): sle_id = self.make_entry(v) @@ -230,5 +232,5 @@ class DocType: """ Repost everything! """ - for wh in sql("select name from tabWarehouse"): + for wh in webnotes.conn.sql("select name from tabWarehouse"): get_obj('Warehouse', wh[0]).repost_stock() From 4f129239030db439a7eb04b23d6339ad9c25701d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 7 Mar 2013 18:49:50 +0530 Subject: [PATCH 120/982] fixes in sales team percentage validation --- selling/doctype/sales_common/sales_common.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/selling/doctype/sales_common/sales_common.py b/selling/doctype/sales_common/sales_common.py index 47d139f955..12ae4a8c90 100644 --- a/selling/doctype/sales_common/sales_common.py +++ b/selling/doctype/sales_common/sales_common.py @@ -341,12 +341,10 @@ class DocType(TransactionBase): # ======================================================================== # it indicates % contribution of sales person in sales def get_allocated_sum(self,obj): - sum = 0 - for d in getlist(obj.doclist,'sales_team'): - sum += flt(d.allocated_percentage) - if (flt(sum) != 100) and getlist(obj.doclist,'sales_team'): - msgprint("Total Allocated % of Sales Persons should be 100%") - raise Exception + sales_team_list = obj.doclist.get({"parentfield": "sales_team"}) + total_allocation = sum([flt(d.allocated_percentage) for d in sales_team_list]) + if sales_team_list and total_allocation != 100.0: + msgprint("Total Allocated %% of Sales Persons should be 100%", raise_exception=True) # Check Conversion Rate (i.e. it will not allow conversion rate to be 1 for Currency other than default currency set in Global Defaults) # =========================================================================== From 676a568f5a13fd469699412c8b0b5381352a7380 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 7 Mar 2013 18:51:10 +0530 Subject: [PATCH 121/982] added blogger, updated style and blogs --- website/css/website.css | 19 +++- website/doctype/blog/blog.py | 7 ++ website/doctype/blog/blog.txt | 27 +++++- website/doctype/blogger/__init__.py | 0 website/doctype/blogger/blogger.py | 18 ++++ website/doctype/blogger/blogger.txt | 95 +++++++++++++++++++ .../style_settings/custom_template.css | 32 ++++++- .../doctype/style_settings/style_settings.js | 1 + .../doctype/style_settings/style_settings.py | 30 +++++- .../doctype/style_settings/style_settings.txt | 65 ++++++++++--- website/helpers/blog.py | 46 ++++----- website/page/website_home/website_home.js | 5 + website/templates/html/blog_page.html | 41 +++++--- website/templates/html/outer.html | 2 +- website/templates/js/blog.js | 28 ++++-- website/templates/pages/blog.html | 3 +- 16 files changed, 341 insertions(+), 78 deletions(-) create mode 100644 website/doctype/blogger/__init__.py create mode 100644 website/doctype/blogger/blogger.py create mode 100644 website/doctype/blogger/blogger.txt diff --git a/website/css/website.css b/website/css/website.css index a0f4e1b3ca..dc5b9670b3 100644 --- a/website/css/website.css +++ b/website/css/website.css @@ -1,9 +1,4 @@ div.outer { - -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.9); - -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.9); - box-shadow: 0px 0px 3px rgba(0,0,0,0.9); - background-color: #fff; - border-radius: 5px; padding: 30px; margin: 30px -30px 10px -30px; min-height: 400px; @@ -24,6 +19,8 @@ footer { border: 0px; border-bottom: 1px solid #ddd; border-radius: 0px; + padding-right: 30px; + padding-left: 30px; } p, li { @@ -98,6 +95,18 @@ p, li { width: 30px; } +.avatar-medium { + margin-right: 5px; + width: 48px; + height: 48px; + border-radius: 48px; + -moz-border-radius: 48px; + -webkit-border-radius: 48px; +} +.avatar-medium img { + width: 48px; +} + .avatar-large { margin-right: 10px; width: 72px; diff --git a/website/doctype/blog/blog.py b/website/doctype/blog/blog.py index cfc0ca643e..2e96f4868b 100644 --- a/website/doctype/blog/blog.py +++ b/website/doctype/blog/blog.py @@ -27,6 +27,9 @@ class DocType: from website.utils import page_name self.doc.name = page_name(self.doc.title) + def validate(self): + self.doc.blog_intro = self.doc.blog_intro[:140] + def on_update(self): from website.utils import update_page_name update_page_name(self.doc, self.doc.title) @@ -66,6 +69,10 @@ class DocType: self.doc.full_name = get_fullname(self.doc.owner) self.doc.updated = global_date_format(self.doc.creation) self.doc.content_html = self.doc.content + if self.doc.blogger: + self.doc.blogger_info = webnotes.doc("blogger", self.doc.blogger).fields + if self.doc.blogger_info.avatar and not "/" in self.doc.blogger_info.avatar: + self.doc.blogger_info.avatar = "files/" + self.doc.blogger_info.avatar comment_list = webnotes.conn.sql("""\ select comment, comment_by_fullname, creation diff --git a/website/doctype/blog/blog.txt b/website/doctype/blog/blog.txt index af9606a71b..cdc7018f1e 100644 --- a/website/doctype/blog/blog.txt +++ b/website/doctype/blog/blog.txt @@ -2,7 +2,7 @@ { "creation": "2013-01-25 11:35:09", "docstatus": 0, - "modified": "2013-02-21 16:54:04", + "modified": "2013-03-07 16:32:13", "modified_by": "Administrator", "owner": "Administrator" }, @@ -50,18 +50,37 @@ "label": "Published" }, { - "description": "Description for listing page, in plain text, only a couple of lines.", + "doctype": "DocField", + "fieldname": "column_break_3", + "fieldtype": "Column Break" + }, + { + "doctype": "DocField", + "fieldname": "blogger", + "fieldtype": "Link", + "label": "Blogger", + "options": "Blogger", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "section_break_5", + "fieldtype": "Section Break" + }, + { + "description": "Description for listing page, in plain text, only a couple of lines. (max 140 characters)", "doctype": "DocField", "fieldname": "blog_intro", "fieldtype": "Small Text", - "label": "Blog Intro" + "label": "Blog Intro", + "reqd": 1 }, { "doctype": "DocField", "fieldname": "content", "fieldtype": "Text Editor", "label": "Content", - "reqd": 0 + "reqd": 1 }, { "doctype": "DocField", diff --git a/website/doctype/blogger/__init__.py b/website/doctype/blogger/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/website/doctype/blogger/blogger.py b/website/doctype/blogger/blogger.py new file mode 100644 index 0000000000..28d0f29b3e --- /dev/null +++ b/website/doctype/blogger/blogger.py @@ -0,0 +1,18 @@ +# For license information, please see license.txt + +from __future__ import unicode_literals +import webnotes + +class DocType: + def __init__(self, d, dl): + self.doc, self.doclist = d, dl + + def on_update(self): + "if profile is set, then update all older blogs" + if self.doc.profile: + for blog in webnotes.conn.sql_list("""select name from tabBlog where owner=%s + and ifnull(blogger,'')=''""", self.doc.profile): + b = webnotes.bean("Blog", blog) + b.blogger = self.doc.name + b.save() + diff --git a/website/doctype/blogger/blogger.txt b/website/doctype/blogger/blogger.txt new file mode 100644 index 0000000000..01e0ceae20 --- /dev/null +++ b/website/doctype/blogger/blogger.txt @@ -0,0 +1,95 @@ +[ + { + "creation": "2013-03-07 16:28:19", + "docstatus": 0, + "modified": "2013-03-07 16:33:37", + "modified_by": "Administrator", + "owner": "Administrator" + }, + { + "allow_attach": 1, + "autoname": "field:short_name", + "description": "Profile of a Blogger", + "doctype": "DocType", + "document_type": "Master", + "max_attachments": 1, + "module": "Website", + "name": "__common__" + }, + { + "doctype": "DocField", + "name": "__common__", + "parent": "Blogger", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 + }, + { + "doctype": "DocPerm", + "name": "__common__", + "parent": "Blogger", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "read": 1, + "write": 1 + }, + { + "doctype": "DocType", + "name": "Blogger" + }, + { + "description": "Will be used in url (usually first name).", + "doctype": "DocField", + "fieldname": "short_name", + "fieldtype": "Data", + "label": "Short Name", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "full_name", + "fieldtype": "Data", + "label": "Full Name", + "reqd": 1 + }, + { + "doctype": "DocField", + "fieldname": "profile", + "fieldtype": "Link", + "label": "Profile", + "options": "Profile" + }, + { + "doctype": "DocField", + "fieldname": "bio", + "fieldtype": "Small Text", + "label": "Bio" + }, + { + "doctype": "DocField", + "fieldname": "avatar", + "fieldtype": "Select", + "label": "Avatar", + "options": "attach_files:" + }, + { + "doctype": "DocField", + "fieldname": "file_list", + "fieldtype": "Text", + "hidden": 1, + "label": "File List", + "no_copy": 1, + "print_hide": 1 + }, + { + "create": 1, + "doctype": "DocPerm", + "role": "Website Manager" + }, + { + "doctype": "DocPerm", + "match": "owner:profile", + "role": "Blogger" + } +] \ No newline at end of file diff --git a/website/doctype/style_settings/custom_template.css b/website/doctype/style_settings/custom_template.css index 52897447bd..d5283ffbce 100644 --- a/website/doctype/style_settings/custom_template.css +++ b/website/doctype/style_settings/custom_template.css @@ -1,3 +1,7 @@ +{% if doc.at_import %} +{{ doc.at_import }} +{% endif %} + body { {% if doc.background_image %} background: url("../files/{{ doc.background_image }}") repeat; @@ -7,8 +11,8 @@ body { {% else %} background-color: #edede7; {% endif %} -{% if doc.font %} - font-family: '{{ doc.font }}', Verdana, Sans !important; +{% if doc.font or doc.google_web_font_for_text %} + font-family: '{{ doc.google_web_font_for_text or doc.font }}', Verdana, Sans !important; {% endif %} {% if doc.font_size %} font-size: {{ doc.font_size }} !important; @@ -21,14 +25,32 @@ body { } {% endif %} -{% if doc.heading_font %} +div.outer { + background-color: #{{ doc.page_background or "fff" }}; +} + +{% if doc.google_web_font_for_heading or doc.heading_font %} h1, h2, h3, h4, h5 { - font-family: '{{ doc.heading_font}}', Arial, 'Helvetica Neue' !important; + font-family: '{{ doc.google_web_font_for_heading or doc.heading_font }}', Arial, 'Helvetica Neue' !important; } {% endif %} -/* Bootstrap Navbar */ +{% if doc.page_border %} +/* Page Border*/ +div.outer { + -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.9); + -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.9); + box-shadow: 0px 0px 3px rgba(0,0,0,0.9); + border-radius: 5px; +} +{% else %} +div.web-footer { + border-top: 1px solid #eee; + padding-top: 10px; +} +{% endif %} +/* Bootstrap Navbar */ .navbar-inverse .navbar-inner { background-color: #{{ doc.top_bar_background or "444"}}; background-repeat: repeat-x; diff --git a/website/doctype/style_settings/style_settings.js b/website/doctype/style_settings/style_settings.js index 6a17db99ee..e8ee908799 100644 --- a/website/doctype/style_settings/style_settings.js +++ b/website/doctype/style_settings/style_settings.js @@ -18,6 +18,7 @@ cur_frm.cscript.onload_post_render = function() { wn.require('lib/public/js/lib/jscolor/jscolor.js'); cur_frm.fields_dict.background_color.input.className = 'color'; + cur_frm.fields_dict.page_background.input.className = 'color'; cur_frm.fields_dict.top_bar_background.input.className = 'color'; jscolor.bind(); } \ No newline at end of file diff --git a/website/doctype/style_settings/style_settings.py b/website/doctype/style_settings/style_settings.py index 51799483d4..95bba74182 100644 --- a/website/doctype/style_settings/style_settings.py +++ b/website/doctype/style_settings/style_settings.py @@ -29,10 +29,7 @@ class DocType: 'custom_template.css'), 'r') as f: temp = Template(f.read()) - if not self.doc.font_size: - self.doc.font_size = '13px' - - self.doc.small_font_size = str(int(self.doc.font_size[:-2])-2) + 'px' + self.prepare() self.doc.custom_css = temp.render(doc = self.doc) if self.doc.add_css: @@ -41,7 +38,30 @@ class DocType: from webnotes.sessions import clear_cache clear_cache('Guest') - del self.doc.fields['small_font_size'] + for f in ["small_font_size", "at_import"]: + if f in self.doc.fields: + del self.doc.fields[f] + + def prepare(self): + if not self.doc.font_size: + self.doc.font_size = '13px' + + self.doc.small_font_size = str(int(self.doc.font_size[:-2])-2) + 'px' + self.doc.page_border = int(self.doc.page_border) + + fonts = [] + if self.doc.google_web_font_for_heading: + fonts.append(self.doc.google_web_font_for_heading) + if self.doc.google_web_font_for_text: + fonts.append(self.doc.google_web_font_for_text) + + fonts = list(set(fonts)) + + self.doc.at_import = "" + for f in fonts: + self.doc.at_import += "\n@import url(http://fonts.googleapis.com/css?family=%s);" % f.replace(" ", "+") + + def on_update(self): """rebuild pages""" diff --git a/website/doctype/style_settings/style_settings.txt b/website/doctype/style_settings/style_settings.txt index 0063ba975e..ebdc35a181 100644 --- a/website/doctype/style_settings/style_settings.txt +++ b/website/doctype/style_settings/style_settings.txt @@ -2,7 +2,7 @@ { "creation": "2013-01-25 11:35:10", "docstatus": 0, - "modified": "2013-03-07 14:46:51", + "modified": "2013-03-07 16:06:22", "modified_by": "Administrator", "owner": "Administrator" }, @@ -38,6 +38,12 @@ "doctype": "DocType", "name": "Style Settings" }, + { + "doctype": "DocField", + "fieldname": "color", + "fieldtype": "Section Break", + "label": "Color" + }, { "description": "If image is selected, color will be ignored (attach first)", "doctype": "DocField", @@ -53,6 +59,25 @@ "fieldtype": "Data", "label": "Background Color" }, + { + "doctype": "DocField", + "fieldname": "page_background", + "fieldtype": "Data", + "label": "Page Background" + }, + { + "doctype": "DocField", + "fieldname": "page_border", + "fieldtype": "Check", + "label": "Page Border" + }, + { + "doctype": "DocField", + "fieldname": "cb0", + "fieldtype": "Column Break", + "print_width": "50%", + "width": "50%" + }, { "doctype": "DocField", "fieldname": "top_bar_background", @@ -69,31 +94,49 @@ }, { "doctype": "DocField", - "fieldname": "cb0", - "fieldtype": "Column Break", - "print_width": "50%", - "width": "50%" + "fieldname": "fonts", + "fieldtype": "Section Break", + "label": "Fonts" + }, + { + "doctype": "DocField", + "fieldname": "heading_font", + "fieldtype": "Select", + "label": "Font (Heading)", + "options": "\nHelvetica Neue\nLucida Grande\nVerdana\nArial\nGeorgia\nTahoma\nLato\nOpen Sans" }, { "doctype": "DocField", "fieldname": "font", "fieldtype": "Select", - "label": "Font", + "label": "Font (Text)", "options": "\nHelvetica Neue\nLucida Grande\nVerdana\nArial\nGeorgia\nTahoma" }, { "doctype": "DocField", "fieldname": "font_size", "fieldtype": "Select", - "label": "Font Size", + "label": "Font Size (Text)", "options": "\n12px\n13px\n14px\n15px\n16px" }, { "doctype": "DocField", - "fieldname": "heading_font", - "fieldtype": "Select", - "label": "Heading Font", - "options": "\nHelvetica Neue\nLucida Grande\nVerdana\nArial\nGeorgia\nTahoma\nLato\nOpen Sans" + "fieldname": "column_break_13", + "fieldtype": "Column Break" + }, + { + "description": "Add the name of Google Web Font e.g. \"Open Sans\"", + "doctype": "DocField", + "fieldname": "google_web_font_for_heading", + "fieldtype": "Data", + "label": "Google Web Font (Heading)" + }, + { + "description": "Add the name of Google Web Font e.g. \"Open Sans\"", + "doctype": "DocField", + "fieldname": "google_web_font_for_text", + "fieldtype": "Data", + "label": "Google Web Font (Text)" }, { "doctype": "DocField", diff --git a/website/helpers/blog.py b/website/helpers/blog.py index 2bff6e5708..dcb15cbd17 100644 --- a/website/helpers/blog.py +++ b/website/helpers/blog.py @@ -6,39 +6,39 @@ import webnotes import website.utils @webnotes.whitelist(allow_guest=True) -def get_blog_list(args=None): - """ - args = { - 'start': 0, - } - """ +def get_blog_list(start=0, by=None): import webnotes - - if not args: args = webnotes.form_dict - + condition = "" + if by: + condition = " and t1.blogger='%s'" % by.replace("'", "\'") query = """\ select - name, page_name, content, owner, creation as creation, - title, (select count(name) from `tabComment` where - comment_doctype='Blog' and comment_docname=`tabBlog`.name) as comments - from `tabBlog` - where ifnull(published,0)=1 + t1.title, t1.name, t1.page_name, t1.creation as creation, + ifnull(t1.blog_intro, t1.content) as content, + t2.full_name, t2.avatar, t1.blogger, + (select count(name) from `tabComment` where + comment_doctype='Blog' and comment_docname=t1.name) as comments + from `tabBlog` t1, `tabBlogger` t2 + where ifnull(t1.published,0)=1 + and t1.blogger = t2.name + %(condition)s order by creation desc, name asc - limit %s, 5""" % args.start + limit %(start)s, 5""" % {"start": start, "condition": condition} - result = webnotes.conn.sql(query, args, as_dict=1) + result = webnotes.conn.sql(query, as_dict=1) # strip html tags from content import webnotes.utils for res in result: from webnotes.utils import global_date_format, get_fullname - res['full_name'] = get_fullname(res['owner']) res['published'] = global_date_format(res['creation']) if not res['content']: res['content'] = website.utils.get_html(res['page_name']) - res['content'] = split_blog_content(res['content']) - + res['content'] = res['content'][:140] + if res.avatar and not "/" in res.avatar: + res.avatar = "files/" + res.avatar + return result @webnotes.whitelist(allow_guest=True) @@ -115,10 +115,4 @@ def get_blog_content(blog_page_name): import webnotes.utils content = webnotes.utils.escape_html(content) return content - -def split_blog_content(content): - content = content.split("") - content = len(content) > 1 and content[1] or content[0] - content = content.split("") - content = content[0] - return content \ No newline at end of file + \ No newline at end of file diff --git a/website/page/website_home/website_home.js b/website/page/website_home/website_home.js index c6b2253df1..d770586070 100644 --- a/website/page/website_home/website_home.js +++ b/website/page/website_home/website_home.js @@ -21,6 +21,11 @@ wn.module_page["Website"] = [ description: wn._("Embed image slideshows in website pages."), doctype:"Website Slideshow" }, + { + label: wn._("Blogger"), + description: wn._("Profile of a blog writer."), + doctype:"Blogger" + }, ] }, { diff --git a/website/templates/html/blog_page.html b/website/templates/html/blog_page.html index 24dd8d7acc..6f7796b0b6 100644 --- a/website/templates/html/blog_page.html +++ b/website/templates/html/blog_page.html @@ -13,17 +13,33 @@

    {{ title }}

    -
    By {{ full_name }} on {{ updated }}
    +
    + {{ blogger_info and blogger_info.full_name or full_name }} wrote this on {{ updated }}

    {{ content_html }} - + {% if blogger_info %} +
    +
    + {% endif %}

    Comments


    {% if not comment_list %} -
    +

    Be the first one to comment

    {% endif %} @@ -32,22 +48,19 @@
    +
    + Show posts by everyone

    {% endblock %} \ No newline at end of file diff --git a/website/templates/html/outer.html b/website/templates/html/outer.html index a8b73ad122..ab6a69eb23 100644 --- a/website/templates/html/outer.html +++ b/website/templates/html/outer.html @@ -10,7 +10,7 @@

    ', b)).appendTo($wrap); }); blog.start += (data.length || 0); - if(!data.length) { + if(!data.length || data.length < 20) { if(blog.start) { $("#next-page").toggle(false) - .parent().append("
    Nothing more to show.
    "); + .parent().append("
    Nothing more to show.
    "); } else { $("#next-page").toggle(false) .parent().append("
    No blogs written yet.
    "); diff --git a/website/templates/pages/blog.html b/website/templates/pages/blog.html index 05302c63de..cfdd536696 100644 --- a/website/templates/pages/blog.html +++ b/website/templates/pages/blog.html @@ -14,6 +14,9 @@

    Blog


    +
    +
    +
    From 8c7234f2704fdaf45562b15329183cb6efee4ae2 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 11 Mar 2013 16:32:33 +0530 Subject: [PATCH 144/982] aii: gl_entries for sales invoice --- .../doctype/sales_invoice/sales_invoice.py | 163 +++++++++----- .../sales_invoice/test_sales_invoice.py | 201 +++++++++++++++++- .../sales_invoice_item/sales_invoice_item.txt | 56 ++++- accounts/report/gross_profit/gross_profit.py | 2 +- controllers/accounts_controller.py | 4 +- controllers/selling_controller.py | 25 ++- home/page/latest_updates/latest_updates.js | 10 +- .../march_2013/p03_update_buying_amount.py | 10 + .../doctype/sales_person/test_sales_person.py | 14 ++ stock/doctype/delivery_note/delivery_note.py | 66 ++---- .../delivery_note/test_delivery_note.py | 2 + .../delivery_note_item/delivery_note_item.txt | 36 +++- stock/doctype/item/test_item.py | 19 ++ stock/stock_ledger.py | 2 - stock/utils.py | 13 +- 15 files changed, 484 insertions(+), 139 deletions(-) create mode 100644 patches/march_2013/p03_update_buying_amount.py diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index b31d54919c..597e2ff1aa 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -25,6 +25,8 @@ from webnotes.model.bean import getlist from webnotes.model.code import get_obj from webnotes import _, msgprint +from stock.utils import get_buying_amount, get_sales_bom + session = webnotes.session month_map = {'Monthly': 1, 'Quarterly': 3, 'Half-yearly': 6, 'Yearly': 12} @@ -95,7 +97,8 @@ class DocType(SellingController): if not self.doc.recurring_id: get_obj('Authorization Control').validate_approving_authority(self.doc.doctype, self.doc.company, self.doc.grand_total, self) - + + self.set_buying_amount() self.check_prev_docstatus() get_obj("Sales Common").update_prevdoc_detail(1,self) @@ -126,7 +129,7 @@ class DocType(SellingController): self.check_next_docstatus() sales_com_obj.update_prevdoc_detail(0, self) - self.make_gl_entries(is_cancel=1) + self.make_gl_entries() def on_update_after_submit(self): self.validate_recurring_invoice() @@ -619,8 +622,7 @@ class DocType(SellingController): 'is_cancelled' : (update_stock==1) and 'No' or 'Yes', 'batch_no' : cstr(d['batch_no']), 'serial_no' : d['serial_no'] - }) - + }) def update_stock_ledger(self, update_stock): self.values = [] @@ -648,14 +650,29 @@ class DocType(SellingController): return ret - def make_gl_entries(self, is_cancel=0): - from accounts.general_ledger import make_gl_entries - gl_entries = [] - auto_inventory_accounting = webnotes.conn.get_value("Global Defaults", None, - "automatic_inventory_accounting") - abbr = self.get_company_abbr() + def make_gl_entries(self): + from accounts.general_ledger import make_gl_entries, merge_similar_entries - # parent's gl entry + gl_entries = [] + + self.make_customer_gl_entry(gl_entries) + + self.make_tax_gl_entries(gl_entries) + + self.make_item_gl_entries(gl_entries) + + # merge gl entries before adding pos entries + gl_entries = merge_similar_entries(gl_entries) + + self.make_pos_gl_entries(gl_entries) + + update_outstanding = cint(self.doc.is_pos) and self.doc.write_off_account and 'No' or 'Yes' + + if gl_entries: + make_gl_entries(gl_entries, cancel=(self.doc.docstatus == 2), + update_outstanding=update_outstanding, merge_entries=False) + + def make_customer_gl_entry(self, gl_entries): if self.doc.grand_total: gl_entries.append( self.get_gl_dict({ @@ -665,10 +682,10 @@ class DocType(SellingController): "remarks": self.doc.remarks, "against_voucher": self.doc.name, "against_voucher_type": self.doc.doctype, - }, is_cancel) + }) ) - - # tax table gl entries + + def make_tax_gl_entries(self, gl_entries): for tax in self.doclist.get({"parentfield": "other_charges"}): if flt(tax.tax_amount): gl_entries.append( @@ -678,11 +695,21 @@ class DocType(SellingController): "credit": flt(tax.tax_amount), "remarks": self.doc.remarks, "cost_center": tax.cost_center_other_charges - }, is_cancel) + }) ) - + + def make_item_gl_entries(self, gl_entries): # item gl entries - for item in getlist(self.doclist, 'entries'): + auto_inventory_accounting = \ + cint(webnotes.defaults.get_global_default("auto_inventory_accounting")) + + if auto_inventory_accounting: + if cint(self.doc.is_pos) and cint(self.doc.update_stock): + stock_account = self.get_stock_in_hand_account() + else: + stock_account = "Stock Delivered But Not Billed - %s" % (self.company_abbr,) + + for item in self.doclist.get({"parentfield": "entries"}): # income account gl entries if flt(item.amount): gl_entries.append( @@ -692,35 +719,31 @@ class DocType(SellingController): "credit": item.amount, "remarks": self.doc.remarks, "cost_center": item.cost_center - }, is_cancel) + }) ) - # if auto inventory accounting enabled and stock item, - # then do stock related gl entries - if auto_inventory_accounting and item.delivery_note and \ - webnotes.conn.get_value("Item", item.item_code, "is_stock_item")=="Yes": - # to-do - purchase_rate = webnotes.conn.get_value("Delivery Note Item", - item.dn_detail, "purchase_rate") - valuation_amount = purchase_rate * item.qty - # expense account gl entries - if flt(valuation_amount): - gl_entries.append( - self.get_gl_dict({ - "account": item.expense_account, - "against": "Stock Delivered But Not Billed - %s" % (abbr,), - "debit": valuation_amount, - "remarks": self.doc.remarks or "Accounting Entry for Stock" - }, is_cancel) - ) - gl_entries.append( - self.get_gl_dict({ - "account": "Stock Delivered But Not Billed - %s" % (abbr,), - "against": item.expense_account, - "credit": valuation_amount, - "remarks": self.doc.remarks or "Accounting Entry for Stock" - }, is_cancel) - ) - if self.doc.is_pos and self.doc.cash_bank_account and self.doc.paid_amount: + + # expense account gl entries + if auto_inventory_accounting and flt(item.buying_amount): + gl_entries.append( + self.get_gl_dict({ + "account": item.expense_account, + "against": stock_account, + "debit": item.buying_amount, + "remarks": self.doc.remarks or "Accounting Entry for Stock", + "cost_center": item.cost_center + }) + ) + gl_entries.append( + self.get_gl_dict({ + "account": stock_account, + "against": item.expense_account, + "credit": item.buying_amount, + "remarks": self.doc.remarks or "Accounting Entry for Stock" + }) + ) + + def make_pos_gl_entries(self, gl_entries): + if cint(self.doc.is_pos) and self.doc.cash_bank_account and self.doc.paid_amount: # POS, make payment entries gl_entries.append( self.get_gl_dict({ @@ -730,7 +753,7 @@ class DocType(SellingController): "remarks": self.doc.remarks, "against_voucher": self.doc.name, "against_voucher_type": self.doc.doctype, - }, is_cancel) + }) ) gl_entries.append( self.get_gl_dict({ @@ -738,7 +761,7 @@ class DocType(SellingController): "against": self.doc.debit_to, "debit": self.doc.paid_amount, "remarks": self.doc.remarks, - }, is_cancel) + }) ) # write off entries, applicable if only pos if self.doc.write_off_account and self.doc.write_off_amount: @@ -750,7 +773,7 @@ class DocType(SellingController): "remarks": self.doc.remarks, "against_voucher": self.doc.name, "against_voucher_type": self.doc.doctype, - }, is_cancel) + }) ) gl_entries.append( self.get_gl_dict({ @@ -759,23 +782,45 @@ class DocType(SellingController): "debit": self.doc.write_off_amount, "remarks": self.doc.remarks, "cost_center": self.doc.write_off_cost_center - }, is_cancel) + }) ) + + def set_buying_amount(self): + if cint(self.doc.is_pos) and cint(self.doc.update_stock): + stock_ledger_entries = self.get_stock_ledger_entries() + item_sales_bom = get_sales_bom() + else: + stock_ledger_entries = item_sales_bom = None + + for item in self.doclist.get({"parentfield": "entries"}): + if item.item_code in self.stock_items: + item.buying_amount = self.get_item_buying_amount(item, stock_ledger_entries, + item_sales_bom) + webnotes.conn.set_value("Sales Invoice Item", item.name, + "buying_amount", item.buying_amount) + + def get_item_buying_amount(self, item, stock_ledger_entries, item_sales_bom): + item_buying_amount = 0 + if stock_ledger_entries: + # is pos and update stock + item_buying_amount = get_buying_amount(item.item_code, item.warehouse, item.qty, + self.doc.doctype, self.doc.name, item.name, stock_ledger_entries, item_sales_bom) + elif item.delivery_note and item.dn_detail: + # against delivery note + dn_item = webnotes.conn.get_value("Delivery Note Item", item.dn_detail, + ["buying_amount", "qty"], as_dict=1) + item_buying_rate = flt(dn_item.buying_amount) / flt(dn_item.qty) + item_buying_amount = item_buying_rate * flt(item.qty) - - update_outstanding = self.doc.is_pos and self.doc.write_off_account and 'No' or 'Yes' - merge_entries=cint(self.doc.is_pos)!=1 and 1 or 0 - if gl_entries: - make_gl_entries(gl_entries, cancel=is_cancel, - update_outstanding=update_outstanding, merge_entries=merge_entries) - + return item_buying_amount + def update_c_form(self): """Update amended id in C-form""" if self.doc.c_form_no and self.doc.amended_from: webnotes.conn.sql("""update `tabC-Form Invoice Detail` set invoice_no = %s, - invoice_date = %s, territory = %s, net_total = %s, - grand_total = %s where invoice_no = %s and parent = %s""", (self.doc.name, self.doc.amended_from, self.doc.c_form_no)) - + invoice_date = %s, territory = %s, net_total = %s, + grand_total = %s where invoice_no = %s and parent = %s""", + (self.doc.name, self.doc.amended_from, self.doc.c_form_no)) def check_next_docstatus(self): submit_jv = webnotes.conn.sql("select t1.name from `tabJournal Voucher` t1,`tabJournal Voucher Detail` t2 where t1.name = t2.parent and t2.against_invoice = '%s' and t1.docstatus = 1" % (self.doc.name)) diff --git a/accounts/doctype/sales_invoice/test_sales_invoice.py b/accounts/doctype/sales_invoice/test_sales_invoice.py index 1f165f0c33..84eddea218 100644 --- a/accounts/doctype/sales_invoice/test_sales_invoice.py +++ b/accounts/doctype/sales_invoice/test_sales_invoice.py @@ -53,16 +53,17 @@ class TestSalesInvoice(unittest.TestCase): "Batched for Billing") def test_sales_invoice_gl_entry_without_aii(self): + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + si = webnotes.bean(webnotes.copy_doclist(test_records[1])) si.insert() si.submit() - webnotes.defaults.set_global_default("auto_inventory_accounting", 0) - gl_entries = webnotes.conn.sql("""select account, debit, credit from `tabGL Entry` where voucher_type='Sales Invoice' and voucher_no=%s order by account asc""", si.doc.name, as_dict=1) self.assertTrue(gl_entries) + expected_values = sorted([ [si.doc.debit_to, 630.0, 0.0], [test_records[1][1]["income_account"], 0.0, 500.0], @@ -74,8 +75,20 @@ class TestSalesInvoice(unittest.TestCase): self.assertEquals(expected_values[i][0], gle.account) self.assertEquals(expected_values[i][1], gle.debit) self.assertEquals(expected_values[i][2], gle.credit) + + # cancel + si.cancel() + + gle_count = webnotes.conn.sql("""select count(name) from `tabGL Entry` + where voucher_type='Sales Invoice' and voucher_no=%s + and ifnull(is_cancelled, 'No') = 'Yes' + order by account asc""", si.doc.name) + + self.assertEquals(gle_count[0][0], 8) + + def test_sales_invoice_gl_entry_with_aii_delivery_note(self): + webnotes.conn.sql("delete from `tabStock Ledger Entry`") - def test_sales_invoice_gl_entry_with_aii(self): webnotes.defaults.set_global_default("auto_inventory_accounting", 1) self._insert_purchase_receipt() @@ -83,8 +96,10 @@ class TestSalesInvoice(unittest.TestCase): si_against_dn = webnotes.copy_doclist(test_records[1]) si_against_dn[1]["delivery_note"] = dn.doc.name - si = webnotes.bean(si_against_dn) + si_against_dn[1]["dn_detail"] = dn.doclist[1].name + si = webnotes.bean(si_against_dn) si.insert() + si.submit() gl_entries = webnotes.conn.sql("""select account, debit, credit @@ -100,15 +115,154 @@ class TestSalesInvoice(unittest.TestCase): ["Stock Delivered But Not Billed - _TC", 0.0, 375.0], [test_records[1][1]["expense_account"], 375.0, 0.0] ]) - print expected_values - print gl_entries for i, gle in enumerate(gl_entries): self.assertEquals(expected_values[i][0], gle.account) self.assertEquals(expected_values[i][1], gle.debit) self.assertEquals(expected_values[i][2], gle.credit) + si.cancel() + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Sales Invoice' and voucher_no=%s + and ifnull(is_cancelled, 'No') = 'No' + order by account asc, name asc""", si.doc.name, as_dict=1) + + expected_values = sorted([ + [si.doc.debit_to, 630.0, 0.0], + [si.doc.debit_to, 0.0, 630.0], + [test_records[1][1]["income_account"], 0.0, 500.0], + [test_records[1][1]["income_account"], 500.0, 0.0], + [test_records[1][2]["account_head"], 0.0, 80.0], + [test_records[1][2]["account_head"], 80.0, 0.0], + [test_records[1][3]["account_head"], 0.0, 50.0], + [test_records[1][3]["account_head"], 50.0, 0.0], + ["Stock Delivered But Not Billed - _TC", 0.0, 375.0], + ["Stock Delivered But Not Billed - _TC", 375.0, 0.0], + [test_records[1][1]["expense_account"], 375.0, 0.0], + [test_records[1][1]["expense_account"], 0.0, 375.0] + + ]) + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_values[i][0], gle.account) + self.assertEquals(expected_values[i][1], gle.debit) + self.assertEquals(expected_values[i][2], gle.credit) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + + def test_pos_gl_entry_with_aii(self): + webnotes.conn.sql("delete from `tabStock Ledger Entry`") webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + self._insert_purchase_receipt() + self._insert_pos_settings() + + pos = webnotes.copy_doclist(test_records[1]) + pos[0]["is_pos"] = 1 + pos[0]["update_stock"] = 1 + pos[0]["posting_time"] = "12:05" + pos[0]["cash_bank_account"] = "_Test Account Bank Account - _TC" + pos[0]["paid_amount"] = 600.0 + + si = webnotes.bean(pos) + si.insert() + si.submit() + + # check stock ledger entries + sle = webnotes.conn.sql("""select * from `tabStock Ledger Entry` + where voucher_type = 'Sales Invoice' and voucher_no = %s""", si.doc.name, as_dict=1)[0] + self.assertTrue(sle) + self.assertEquals([sle.item_code, sle.warehouse, sle.actual_qty], + ["_Test Item", "_Test Warehouse", -5.0]) + + # check gl entries + stock_in_hand_account = webnotes.conn.get_value("Company", "_Test Company", + "stock_in_hand_account") + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Sales Invoice' and voucher_no=%s + order by account asc, debit asc""", si.doc.name, as_dict=1) + self.assertTrue(gl_entries) + + expected_gl_entries = sorted([ + [si.doc.debit_to, 630.0, 0.0], + [test_records[1][1]["income_account"], 0.0, 500.0], + [test_records[1][2]["account_head"], 0.0, 80.0], + [test_records[1][3]["account_head"], 0.0, 50.0], + [stock_in_hand_account, 0.0, 375.0], + [test_records[1][1]["expense_account"], 375.0, 0.0], + [si.doc.debit_to, 0.0, 600.0], + ["_Test Account Bank Account - _TC", 600.0, 0.0] + ]) + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_gl_entries[i][0], gle.account) + self.assertEquals(expected_gl_entries[i][1], gle.debit) + self.assertEquals(expected_gl_entries[i][2], gle.credit) + + # cancel + si.cancel() + gl_count = webnotes.conn.sql("""select count(name) + from `tabGL Entry` where voucher_type='Sales Invoice' and voucher_no=%s + and ifnull(is_cancelled, 'No') = 'Yes' + order by account asc, name asc""", si.doc.name) + + self.assertEquals(gl_count[0][0], 16) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + + def test_sales_invoice_gl_entry_with_aii_no_item_code(self): + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + + si_copy = webnotes.copy_doclist(test_records[1]) + si_copy[1]["item_code"] = None + si = webnotes.bean(si_copy) + si.insert() + si.submit() + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Sales Invoice' and voucher_no=%s + order by account asc""", si.doc.name, as_dict=1) + self.assertTrue(gl_entries) + + expected_values = sorted([ + [si.doc.debit_to, 630.0, 0.0], + [test_records[1][1]["income_account"], 0.0, 500.0], + [test_records[1][2]["account_head"], 0.0, 80.0], + [test_records[1][3]["account_head"], 0.0, 50.0], + ]) + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_values[i][0], gle.account) + self.assertEquals(expected_values[i][1], gle.debit) + self.assertEquals(expected_values[i][2], gle.credit) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + + def test_sales_invoice_gl_entry_with_aii_non_stock_item(self): + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + + si_copy = webnotes.copy_doclist(test_records[1]) + si_copy[1]["item_code"] = "_Test Non Stock Item" + si = webnotes.bean(si_copy) + si.insert() + si.submit() + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type='Sales Invoice' and voucher_no=%s + order by account asc""", si.doc.name, as_dict=1) + self.assertTrue(gl_entries) + + expected_values = sorted([ + [si.doc.debit_to, 630.0, 0.0], + [test_records[1][1]["income_account"], 0.0, 500.0], + [test_records[1][2]["account_head"], 0.0, 80.0], + [test_records[1][3]["account_head"], 0.0, 50.0], + ]) + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_values[i][0], gle.account) + self.assertEquals(expected_values[i][1], gle.debit) + self.assertEquals(expected_values[i][2], gle.credit) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + + def _insert_purchase_receipt(self): from stock.doctype.purchase_receipt.test_purchase_receipt import test_records \ @@ -126,6 +280,23 @@ class TestSalesInvoice(unittest.TestCase): dn.submit() return dn + def _insert_pos_settings(self): + ps = webnotes.bean([ + { + "cash_bank_account": "_Test Account Bank Account - _TC", + "company": "_Test Company", + "conversion_rate": 1.0, + "cost_center": "_Test Cost Center - _TC", + "currency": "INR", + "doctype": "POS Setting", + "income_account": "_Test Account Bank Account - _TC", + "price_list_name": "_Test Price List", + "territory": "_Test Territory", + "warehouse": "_Test Warehouse" + } + ]) + ps.insert() + test_dependencies = ["Journal Voucher"] test_records = [ @@ -178,7 +349,19 @@ test_records = [ "doctype": "Sales Taxes and Charges", "parentfield": "other_charges", "tax_amount": 31.8, - } + }, + { + "parentfield": "sales_team", + "doctype": "Sales Team", + "sales_person": "_Test Sales Person 1", + "allocated_percentage": 65.5, + }, + { + "parentfield": "sales_team", + "doctype": "Sales Team", + "sales_person": "_Test Sales Person 2", + "allocated_percentage": 34.5, + }, ], [ { @@ -207,13 +390,13 @@ test_records = [ "description": "_Test Item", "doctype": "Sales Invoice Item", "parentfield": "entries", - "qty": 1.0, + "qty": 5.0, "basic_rate": 500.0, "amount": 500.0, "export_rate": 500.0, "export_amount": 500.0, "income_account": "Sales - _TC", - "expense_account": "_Test Account Cost for Goods Sold", + "expense_account": "_Test Account Cost for Goods Sold - _TC", "cost_center": "_Test Cost Center - _TC", }, { diff --git a/accounts/doctype/sales_invoice_item/sales_invoice_item.txt b/accounts/doctype/sales_invoice_item/sales_invoice_item.txt index c8b18a4880..ca078b53f4 100644 --- a/accounts/doctype/sales_invoice_item/sales_invoice_item.txt +++ b/accounts/doctype/sales_invoice_item/sales_invoice_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-03-05 09:11:04", + "creation": "2013-03-07 11:42:55", "docstatus": 0, - "modified": "2013-03-07 07:03:30", + "modified": "2013-03-11 14:58:50", "modified_by": "Administrator", "owner": "Administrator" }, @@ -30,7 +30,8 @@ "fieldname": "barcode", "fieldtype": "Data", "label": "Barcode", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -42,6 +43,7 @@ "oldfieldtype": "Link", "options": "Item", "print_hide": 0, + "read_only": 0, "reqd": 0, "search_index": 1 }, @@ -63,6 +65,7 @@ "oldfieldname": "item_name", "oldfieldtype": "Data", "print_hide": 1, + "read_only": 0, "reqd": 1, "search_index": 0 }, @@ -74,6 +77,7 @@ "oldfieldname": "description", "oldfieldtype": "Text", "print_width": "200px", + "read_only": 0, "reqd": 1, "width": "200px" }, @@ -84,6 +88,7 @@ "label": "Qty", "oldfieldname": "qty", "oldfieldtype": "Currency", + "read_only": 0, "reqd": 0 }, { @@ -102,6 +107,7 @@ "oldfieldtype": "Currency", "options": "currency", "print_hide": 1, + "read_only": 0, "reqd": 0 }, { @@ -111,7 +117,8 @@ "label": "Discount (%)", "oldfieldname": "adj_rate", "oldfieldtype": "Float", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -121,6 +128,7 @@ "oldfieldname": "export_rate", "oldfieldtype": "Currency", "options": "currency", + "read_only": 0, "reqd": 1 }, { @@ -155,6 +163,7 @@ "oldfieldtype": "Currency", "options": "Company:company:default_currency", "print_hide": 1, + "read_only": 0, "reqd": 1, "search_index": 0 }, @@ -179,7 +188,8 @@ "oldfieldname": "warehouse", "oldfieldtype": "Link", "options": "Warehouse", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -192,9 +202,20 @@ "options": "Account", "print_hide": 1, "print_width": "120px", + "read_only": 0, "reqd": 1, "width": "120px" }, + { + "doctype": "DocField", + "fieldname": "expense_account", + "fieldtype": "Link", + "hidden": 1, + "in_filter": 1, + "label": "Expense Account", + "options": "Account", + "print_hide": 1 + }, { "doctype": "DocField", "fieldname": "cost_center", @@ -206,6 +227,7 @@ "options": "Cost Center", "print_hide": 1, "print_width": "120px", + "read_only": 0, "reqd": 0, "width": "120px" }, @@ -217,7 +239,8 @@ "label": "Serial No", "oldfieldname": "serial_no", "oldfieldtype": "Small Text", - "print_hide": 0 + "print_hide": 0, + "read_only": 0 }, { "doctype": "DocField", @@ -225,7 +248,8 @@ "fieldtype": "Link", "label": "Batch No", "options": "Batch", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -249,7 +273,8 @@ "label": "Brand Name", "oldfieldname": "brand", "oldfieldtype": "Data", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -328,7 +353,8 @@ "fieldname": "time_log_batch", "fieldtype": "Link", "label": "Time Log Batch", - "options": "Time Log Batch" + "options": "Time Log Batch", + "read_only": 0 }, { "doctype": "DocField", @@ -353,6 +379,17 @@ "print_hide": 1, "read_only": 1 }, + { + "doctype": "DocField", + "fieldname": "buying_amount", + "fieldtype": "Currency", + "hidden": 1, + "label": "Buying Amount", + "no_copy": 1, + "options": "Company:company:default_currency", + "print_hide": 1, + "read_only": 1 + }, { "allow_on_submit": 1, "doctype": "DocField", @@ -361,6 +398,7 @@ "label": "Page Break", "no_copy": 1, "print_hide": 1, + "read_only": 0, "report_hide": 1 } ] \ No newline at end of file diff --git a/accounts/report/gross_profit/gross_profit.py b/accounts/report/gross_profit/gross_profit.py index fa926dacde..f1ae00e13f 100644 --- a/accounts/report/gross_profit/gross_profit.py +++ b/accounts/report/gross_profit/gross_profit.py @@ -25,7 +25,7 @@ def execute(filters=None): for row in delivery_note_items: selling_amount = flt(row.amount) buying_amount = get_buying_amount(row.item_code, row.warehouse, - row.qty, row.name, row.item_row, stock_ledger_entries, item_sales_bom) + row.qty, "Delivery Note", row.name, row.item_row, stock_ledger_entries, item_sales_bom) if selling_amount: gross_profit = selling_amount - buying_amount gross_profit_percent = (gross_profit / selling_amount) * 100.0 diff --git a/controllers/accounts_controller.py b/controllers/accounts_controller.py index aa52b5e412..73d7608240 100644 --- a/controllers/accounts_controller.py +++ b/controllers/accounts_controller.py @@ -21,7 +21,7 @@ from webnotes.utils import flt from utilities.transaction_base import TransactionBase class AccountsController(TransactionBase): - def get_gl_dict(self, args, cancel): + def get_gl_dict(self, args, cancel=None): """this method populates the common properties of a gl entry record""" gl_dict = { 'company': self.doc.company, @@ -30,7 +30,7 @@ class AccountsController(TransactionBase): 'voucher_no': self.doc.name, 'aging_date': self.doc.fields.get("aging_date") or self.doc.posting_date, 'remarks': self.doc.remarks, - 'is_cancelled': cancel and "Yes" or "No", + 'is_cancelled': self.doc.docstatus == 2 and "Yes" or "No", 'fiscal_year': self.doc.fiscal_year, 'debit': 0, 'credit': 0, diff --git a/controllers/selling_controller.py b/controllers/selling_controller.py index 94a56e3300..40606c3198 100644 --- a/controllers/selling_controller.py +++ b/controllers/selling_controller.py @@ -37,4 +37,27 @@ class SellingController(AccountsController): self.doc.grand_total or self.doc.rounded_total, company_currency) if self.meta.get_field("in_words_export"): self.doc.in_words_export = money_in_words(disable_rounded_total and - self.doc.grand_total_export or self.doc.rounded_total_export, self.doc.currency) \ No newline at end of file + self.doc.grand_total_export or self.doc.rounded_total_export, self.doc.currency) + + def get_stock_ledger_entries(self): + item_list, warehouse_list = self.get_distinct_item_warehouse() + if item_list and warehouse_list: + return webnotes.conn.sql("""select item_code, voucher_type, voucher_no, + voucher_detail_no, posting_date, posting_time, stock_value, + warehouse, actual_qty as qty from `tabStock Ledger Entry` + where ifnull(`is_cancelled`, "No") = "No" and company = %s + and item_code in (%s) and warehouse in (%s) + order by item_code desc, warehouse desc, posting_date desc, + posting_time desc, name desc""" % + ('%s', ', '.join(['%s']*len(item_list)), ', '.join(['%s']*len(warehouse_list))), + tuple([self.doc.company] + item_list + warehouse_list), as_dict=1) + + def get_distinct_item_warehouse(self): + item_list = [] + warehouse_list = [] + for item in self.doclist.get({"parentfield": self.fname}) \ + + self.doclist.get({"parentfield": "packing_details"}): + item_list.append(item.item_code) + warehouse_list.append(item.warehouse) + + return list(set(item_list)), list(set(warehouse_list)) \ No newline at end of file diff --git a/home/page/latest_updates/latest_updates.js b/home/page/latest_updates/latest_updates.js index b387aad67a..b66fe4c9a1 100644 --- a/home/page/latest_updates/latest_updates.js +++ b/home/page/latest_updates/latest_updates.js @@ -1,6 +1,14 @@ erpnext.updates = [ + ["5th March", ["Refactored Upload Attendace Tool"]], + ["4th March", ["Lead organization added in Quotation classic/spartan/modern print format"]], ["1st March", [ - "Time Log, Time Log Batch: Created feature to batch Time Logs so that they can be tracked for billing." + "Time Log, Time Log Batch: Created feature to batch Time Logs so that they can be tracked for billing.", + "Sub-contracting code refactored for PO", + ]], + ["28th February", [ + "Datatype validation in Voucher Import Tool", + "Fixes for conversion factor in old invoices", + "Fixed asynchronus issue in purchase cycle" ]], ["27th February", [ "Time Log: Created Time Log System, with Calendar View." diff --git a/patches/march_2013/p03_update_buying_amount.py b/patches/march_2013/p03_update_buying_amount.py new file mode 100644 index 0000000000..e45a3dbd1c --- /dev/null +++ b/patches/march_2013/p03_update_buying_amount.py @@ -0,0 +1,10 @@ +import webnotes + +def execute(): + dn_list = webnotes.conn.sql("""select name from `tabDelivery Note` where docstatus < 2""") + for dn in dn_list: + webnotes.bean("Delivery Note", dn[0]).set_buying_amount() + + si_list = webnotes.conn.sql("""select name from `tabSales Invoice` where docstatus < 2""") + for si in si_list: + webnotes.bean("Sales Invoice", si[0]).set_buying_amount() \ No newline at end of file diff --git a/setup/doctype/sales_person/test_sales_person.py b/setup/doctype/sales_person/test_sales_person.py index 5af450916b..2dea3e5dee 100644 --- a/setup/doctype/sales_person/test_sales_person.py +++ b/setup/doctype/sales_person/test_sales_person.py @@ -4,5 +4,19 @@ test_records = [ "sales_person_name": "_Test Sales Person", "parent_sales_person": "All Sales Persons", "is_group": "No" + }], + [{ + "doctype": "Sales Person", + "sales_person_name": "_Test Sales Person 1", + "parent_sales_person": "All Sales Persons", + "is_group": "No" + }], + [{ + "doctype": "Sales Person", + "sales_person_name": "_Test Sales Person 2", + "parent_sales_person": "All Sales Persons", + "is_group": "No" }] + + ] \ No newline at end of file diff --git a/stock/doctype/delivery_note/delivery_note.py b/stock/doctype/delivery_note/delivery_note.py index c0b99166ee..3d799c4dad 100644 --- a/stock/doctype/delivery_note/delivery_note.py +++ b/stock/doctype/delivery_note/delivery_note.py @@ -225,7 +225,12 @@ class DocType(SellingController): bin = sql("select actual_qty, projected_qty from `tabBin` where item_code = %s and warehouse = %s", (d.item_code, d.warehouse), as_dict = 1) d.actual_qty = bin and flt(bin[0]['actual_qty']) or 0 d.projected_qty = bin and flt(bin[0]['projected_qty']) or 0 - + + def on_update(self): + self.doclist = get_obj('Sales Common').make_packing_list(self,'delivery_note_details') + sl = get_obj('Stock Ledger') + sl.scrub_serial_nos(self) + sl.scrub_serial_nos(self, 'packing_details') def on_submit(self): self.validate_packed_qty() @@ -252,6 +257,7 @@ class DocType(SellingController): self.credit_limit() + self.set_buying_amount() self.make_gl_entries() # set DN status @@ -387,13 +393,19 @@ class DocType(SellingController): if amount != 0: total = (amount/self.doc.net_total)*self.doc.grand_total get_obj('Sales Common').check_credit(self, total) - - - def on_update(self): - self.doclist = get_obj('Sales Common').make_packing_list(self,'delivery_note_details') - sl = get_obj('Stock Ledger') - sl.scrub_serial_nos(self) - sl.scrub_serial_nos(self, 'packing_details') + + def set_buying_amount(self): + from stock.utils import get_buying_amount, get_sales_bom + stock_ledger_entries = self.get_stock_ledger_entries() + item_sales_bom = get_sales_bom() + + if stock_ledger_entries: + for item in self.doclist.get({"parentfield": "delivery_note_details"}): + item.buying_amount = get_buying_amount(item.item_code, item.warehouse, item.qty, + self.doc.doctype, self.doc.name, item.name, stock_ledger_entries, + item_sales_bom) + webnotes.conn.set_value("Delivery Note Item", item.name, "buying_amount", + item.buying_amount) def make_gl_entries(self): if not cint(webnotes.defaults.get_global_default("auto_inventory_accounting")): @@ -426,38 +438,6 @@ class DocType(SellingController): make_gl_entries(gl_entries, cancel=self.doc.docstatus == 2) def get_total_buying_amount(self): - from stock.utils import get_buying_amount, get_sales_bom - stock_ledger_entries = self.get_stock_ledger_entries() - item_sales_bom = get_sales_bom() - total_buying_amount = 0 - - if stock_ledger_entries: - for item in self.doclist.get({"parentfield": "delivery_note_details"}): - buying_amount = get_buying_amount(item.item_code, item.warehouse, item.qty, - self.doc.name, item.name, stock_ledger_entries, item_sales_bom) - total_buying_amount += buying_amount - - return total_buying_amount - - def get_stock_ledger_entries(self): - item_list, warehouse_list = self.get_distinct_item_warehouse() - if item_list and warehouse_list: - return webnotes.conn.sql("""select item_code, voucher_type, voucher_no, - voucher_detail_no, posting_date, posting_time, stock_value, - warehouse, actual_qty as qty from `tabStock Ledger Entry` - where ifnull(`is_cancelled`, "No") = "No" and company = %s - and item_code in (%s) and warehouse in (%s) - order by item_code desc, warehouse desc, posting_date desc, - posting_time desc, name desc""" % - ('%s', ', '.join(['%s']*len(item_list)), ', '.join(['%s']*len(warehouse_list))), - tuple([self.doc.company] + item_list + warehouse_list), as_dict=1) - - def get_distinct_item_warehouse(self): - item_list = [] - warehouse_list = [] - for item in self.doclist.get({"parentfield": "delivery_note_details"}) \ - + self.doclist.get({"parentfield": "packing_details"}): - item_list.append(item.item_code) - warehouse_list.append(item.warehouse) - - return list(set(item_list)), list(set(warehouse_list)) \ No newline at end of file + total_buying_amount = sum([item.buying_amount for item in + self.doclist.get({"parentfield": "delivery_note_details"})]) + return total_buying_amount \ No newline at end of file diff --git a/stock/doctype/delivery_note/test_delivery_note.py b/stock/doctype/delivery_note/test_delivery_note.py index acdf8b9e07..d0b440cfee 100644 --- a/stock/doctype/delivery_note/test_delivery_note.py +++ b/stock/doctype/delivery_note/test_delivery_note.py @@ -48,6 +48,8 @@ class TestDeliveryNote(unittest.TestCase): def test_delivery_note_gl_entry(self): webnotes.conn.sql("""delete from `tabBin`""") + webnotes.conn.sql("delete from `tabStock Ledger Entry`") + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) self.assertEqual(cint(webnotes.defaults.get_global_default("auto_inventory_accounting")), 1) diff --git a/stock/doctype/delivery_note_item/delivery_note_item.txt b/stock/doctype/delivery_note_item/delivery_note_item.txt index 985a072756..47b0d33bcd 100644 --- a/stock/doctype/delivery_note_item/delivery_note_item.txt +++ b/stock/doctype/delivery_note_item/delivery_note_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-22 01:28:00", + "creation": "2013-03-07 11:42:59", "docstatus": 0, - "modified": "2013-03-07 07:03:20", + "modified": "2013-03-07 15:46:43", "modified_by": "Administrator", "owner": "Administrator" }, @@ -30,7 +30,8 @@ "fieldname": "barcode", "fieldtype": "Data", "label": "Barcode", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -42,6 +43,7 @@ "oldfieldtype": "Link", "options": "Item", "print_width": "150px", + "read_only": 0, "reqd": 1, "search_index": 1, "width": "150px" @@ -64,6 +66,7 @@ "oldfieldtype": "Data", "print_hide": 1, "print_width": "150px", + "read_only": 0, "reqd": 1, "width": "150px" }, @@ -75,6 +78,7 @@ "oldfieldname": "description", "oldfieldtype": "Small Text", "print_width": "300px", + "read_only": 0, "reqd": 1, "width": "300px" }, @@ -87,6 +91,7 @@ "oldfieldname": "qty", "oldfieldtype": "Currency", "print_width": "100px", + "read_only": 0, "reqd": 1, "width": "100px" }, @@ -115,6 +120,7 @@ "options": "currency", "print_hide": 1, "print_width": "100px", + "read_only": 0, "reqd": 0, "width": "100px" }, @@ -128,6 +134,7 @@ "oldfieldtype": "Float", "print_hide": 1, "print_width": "100px", + "read_only": 0, "width": "100px" }, { @@ -140,6 +147,7 @@ "options": "currency", "print_hide": 0, "print_width": "150px", + "read_only": 0, "reqd": 0, "width": "150px" }, @@ -181,6 +189,7 @@ "options": "Company:company:default_currency", "print_hide": 1, "print_width": "150px", + "read_only": 0, "reqd": 0, "width": "150px" }, @@ -208,6 +217,7 @@ "options": "Warehouse", "print_hide": 1, "print_width": "100px", + "read_only": 0, "width": "100px" }, { @@ -219,7 +229,8 @@ "no_copy": 1, "oldfieldname": "serial_no", "oldfieldtype": "Text", - "print_hide": 0 + "print_hide": 0, + "read_only": 0 }, { "doctype": "DocField", @@ -229,7 +240,8 @@ "oldfieldname": "batch_no", "oldfieldtype": "Link", "options": "Batch", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -375,6 +387,17 @@ "print_hide": 1, "read_only": 1 }, + { + "doctype": "DocField", + "fieldname": "buying_amount", + "fieldtype": "Currency", + "hidden": 1, + "label": "Buying Amount", + "no_copy": 1, + "options": "Company:company:default_currency", + "print_hide": 1, + "read_only": 1 + }, { "allow_on_submit": 1, "doctype": "DocField", @@ -383,6 +406,7 @@ "label": "Page Break", "oldfieldname": "page_break", "oldfieldtype": "Check", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 } ] \ No newline at end of file diff --git a/stock/doctype/item/test_item.py b/stock/doctype/item/test_item.py index 035774b50b..f31f245e81 100644 --- a/stock/doctype/item/test_item.py +++ b/stock/doctype/item/test_item.py @@ -127,4 +127,23 @@ test_records = [ "is_sub_contracted_item": "Yes", "stock_uom": "_Test UOM" }], + [{ + "doctype": "Item", + "item_code": "_Test Non Stock Item", + "item_name": "_Test Non Stock Item", + "description": "_Test Non Stock Item", + "item_group": "_Test Item Group Desktops", + "is_stock_item": "No", + "is_asset_item": "No", + "has_batch_no": "No", + "has_serial_no": "No", + "is_purchase_item": "Yes", + "is_sales_item": "Yes", + "is_service_item": "No", + "is_sample_item": "No", + "inspection_required": "No", + "is_pro_applicable": "No", + "is_sub_contracted_item": "No", + "stock_uom": "_Test UOM" + }], ] \ No newline at end of file diff --git a/stock/stock_ledger.py b/stock/stock_ledger.py index 60b5fd4aea..883ced7f71 100644 --- a/stock/stock_ledger.py +++ b/stock/stock_ledger.py @@ -36,7 +36,6 @@ def update_entries_after(args, verbose=1): } """ previous_sle = get_sle_before_datetime(args) - qty_after_transaction = flt(previous_sle.get("qty_after_transaction")) valuation_rate = flt(previous_sle.get("valuation_rate")) stock_queue = json.loads(previous_sle.get("stock_queue") or "[]") @@ -214,7 +213,6 @@ def get_moving_average_values(qty_after_transaction, sle, valuation_rate): def get_fifo_values(qty_after_transaction, sle, stock_queue): incoming_rate = flt(sle.incoming_rate) actual_qty = flt(sle.actual_qty) - if not stock_queue: stock_queue.append([0, 0]) diff --git a/stock/utils.py b/stock/utils.py index 9055ceea25..bc6054f70b 100644 --- a/stock/utils.py +++ b/stock/utils.py @@ -164,23 +164,24 @@ def get_warehouse_list(doctype, txt, searchfield, start, page_len, filters): wlist.append([w]) return wlist -def get_buying_amount(item_code, warehouse, qty, voucher_no, voucher_detail_no, +def get_buying_amount(item_code, warehouse, qty, voucher_type, voucher_no, voucher_detail_no, stock_ledger_entries, item_sales_bom): if item_sales_bom.get(item_code): # sales bom item buying_amount = 0.0 for bom_item in item_sales_bom[item_code]: - buying_amount += _get_buying_amount(voucher_no, "[** No Item Row **]", + buying_amount += _get_buying_amount(voucher_type, voucher_no, "[** No Item Row **]", item_code, warehouse, bom_item.qty * qty, stock_ledger_entries) return buying_amount else: # doesn't have sales bom - return _get_buying_amount(voucher_no, voucher_detail_no, item_code, warehouse, qty, - stock_ledger_entries) + return _get_buying_amount(voucher_type, voucher_no, voucher_detail_no, + item_code, warehouse, qty, stock_ledger_entries) -def _get_buying_amount(voucher_no, item_row, item_code, warehouse, qty, stock_ledger_entries): +def _get_buying_amount(voucher_type, voucher_no, item_row, item_code, warehouse, qty, + stock_ledger_entries): for i, sle in enumerate(stock_ledger_entries): - if sle.voucher_type == "Delivery Note" and sle.voucher_no == voucher_no: + if sle.voucher_type == voucher_type and sle.voucher_no == voucher_no: if (sle.voucher_detail_no == item_row) or \ (sle.item_code == item_code and sle.warehouse == warehouse and \ abs(flt(sle.qty)) == qty): From b33693db359c4d4fba2c8c0fde4121ffd3831c28 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 11 Mar 2013 17:57:57 +0530 Subject: [PATCH 145/982] added blog settings and metadata --- website/doctype/blog_post/blog_post.py | 4 ++- .../doctype/style_settings/style_settings.py | 3 ++ website/doctype/web_page/web_page.txt | 30 ++++++++++++++----- website/helpers/blog.py | 11 +++++-- website/page/website_home/website_home.js | 6 ++++ website/templates/html/base.html | 3 ++ website/templates/html/blog_page.html | 9 ++++-- website/templates/html/blogger.html | 2 +- website/templates/html/comment.html | 19 +++++++----- website/templates/js/blog.js | 4 +-- website/templates/pages/blog.html | 6 +++- website/templates/pages/writers.html | 3 ++ 12 files changed, 74 insertions(+), 26 deletions(-) diff --git a/website/doctype/blog_post/blog_post.py b/website/doctype/blog_post/blog_post.py index 1664b4fca5..ff6cc9931e 100644 --- a/website/doctype/blog_post/blog_post.py +++ b/website/doctype/blog_post/blog_post.py @@ -74,13 +74,15 @@ class DocType: # temp fields from webnotes.utils import global_date_format, get_fullname self.doc.full_name = get_fullname(self.doc.owner) - self.doc.updated = global_date_format(self.doc.creation) + self.doc.updated = global_date_format(self.doc.published_on) self.doc.content_html = self.doc.content if self.doc.blogger: self.doc.blogger_info = webnotes.doc("Blogger", self.doc.blogger).fields if self.doc.blogger_info.avatar and not "/" in self.doc.blogger_info.avatar: self.doc.blogger_info.avatar = "files/" + self.doc.blogger_info.avatar + self.doc.description = self.doc.blog_intro or self.doc.content[:140] + self.doc.categories = webnotes.conn.sql_list("select name from `tabBlog Category` order by name") self.doc.texts = { diff --git a/website/doctype/style_settings/style_settings.py b/website/doctype/style_settings/style_settings.py index 434f4b546d..ba003ae594 100644 --- a/website/doctype/style_settings/style_settings.py +++ b/website/doctype/style_settings/style_settings.py @@ -39,6 +39,9 @@ class DocType: from webnotes.sessions import clear_cache clear_cache('Guest') + + from website.utils import clear_cache + clear_cache() for f in ["small_font_size", "at_import", "heading_text_style"]: if f in self.doc.fields: diff --git a/website/doctype/web_page/web_page.txt b/website/doctype/web_page/web_page.txt index 861ac86e39..eed7d2b63b 100644 --- a/website/doctype/web_page/web_page.txt +++ b/website/doctype/web_page/web_page.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-27 16:31:21", + "creation": "2013-02-12 13:19:11", "docstatus": 0, - "modified": "2013-02-12 09:33:47", + "modified": "2013-03-11 17:41:11", "modified_by": "Administrator", "owner": "Administrator" }, @@ -24,18 +24,16 @@ "permlevel": 0 }, { - "create": 1, + "amend": 0, "doctype": "DocPerm", "name": "__common__", "parent": "Web Page", "parentfield": "permissions", "parenttype": "DocType", - "permlevel": 0, "read": 1, "report": 1, "role": "Website Manager", - "submit": 0, - "write": 1 + "submit": 0 }, { "doctype": "DocType", @@ -85,6 +83,13 @@ "label": "Slideshow", "options": "Website Slideshow" }, + { + "description": "Description for page header.", + "doctype": "DocField", + "fieldname": "description", + "fieldtype": "Small Text", + "label": "Description" + }, { "description": "Content in markdown format that appears on the main side of your page", "doctype": "DocField", @@ -143,6 +148,17 @@ "print_hide": 1 }, { - "doctype": "DocPerm" + "cancel": 1, + "create": 1, + "doctype": "DocPerm", + "permlevel": 0, + "write": 1 + }, + { + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1, + "write": 0 } ] \ No newline at end of file diff --git a/website/helpers/blog.py b/website/helpers/blog.py index ec57105e35..de2a3373ae 100644 --- a/website/helpers/blog.py +++ b/website/helpers/blog.py @@ -127,9 +127,11 @@ def get_blog_content(blog_page_name): return content def get_blog_template_args(): - return { + args = { "categories": webnotes.conn.sql_list("select name from `tabBlog Category` order by name") } + args.update(webnotes.doc("Blog Settings", "Blog Settings").fields) + return args def get_writers_args(): bloggers = webnotes.conn.sql("""select * from `tabBlogger` @@ -138,10 +140,13 @@ def get_writers_args(): if blogger.avatar and not "/" in blogger.avatar: blogger.avatar = "files/" + blogger.avatar - return { + args = { "bloggers": bloggers, "texts": { "all_posts_by": _("All posts by") }, "categories": webnotes.conn.sql_list("select name from `tabBlog Category` order by name") - } \ No newline at end of file + } + + args.update(webnotes.doc("Blog Settings", "Blog Settings").fields) + return args \ No newline at end of file diff --git a/website/page/website_home/website_home.js b/website/page/website_home/website_home.js index bb3d14f04a..e1122071dd 100644 --- a/website/page/website_home/website_home.js +++ b/website/page/website_home/website_home.js @@ -37,6 +37,12 @@ wn.module_page["Website"] = [ description: wn._("Categorize blog posts."), doctype:"Blog Category" }, + { + label: wn._("Blog Settings"), + description: wn._("Write titles and introductions to your blog."), + doctype:"Blog Settings", + route: "Form/Blog Settings" + }, ] }, diff --git a/website/templates/html/base.html b/website/templates/html/base.html index fa01f8aad7..2719f8db36 100644 --- a/website/templates/html/base.html +++ b/website/templates/html/base.html @@ -19,6 +19,9 @@ {% endif %} + {% if description %} + + {% endif %} {% block header %} {% endblock %} diff --git a/website/templates/html/blog_page.html b/website/templates/html/blog_page.html index e605a12248..270d427f7f 100644 --- a/website/templates/html/blog_page.html +++ b/website/templates/html/blog_page.html @@ -9,14 +9,17 @@ {% endblock %} {% block content %} -
    -

    {{ title }}

    +
    +

    {{ title }}

    - {{ blogger_info and blogger_info.full_name or full_name }} / {{ updated }}
    + / + {{ updated }}

    +
    {{ content_html }} +
    {% if blogger_info %}
    diff --git a/website/templates/html/blogger.html b/website/templates/html/blogger.html index eab371e45b..e18f86a4dd 100644 --- a/website/templates/html/blogger.html +++ b/website/templates/html/blogger.html @@ -1,7 +1,7 @@
    - +
    diff --git a/website/templates/html/comment.html b/website/templates/html/comment.html index 1323e094d2..27baaad54d 100644 --- a/website/templates/html/comment.html +++ b/website/templates/html/comment.html @@ -3,12 +3,15 @@ it is to be included in the blog/blog.html template #} -{% for comment in comment_list %} -
    -
    - {{ comment.comment_by_fullname }} - {{ comment.comment_date }}: +
    + {% for comment in comment_list %} +
    +
    + {{ comment.comment_by_fullname }} / + {{ comment.comment_date }}: +
    +

    {{ comment.comment }}

    +
    -

    {{ comment.comment }}

    -
    -
    -{% endfor %} \ No newline at end of file + {% endfor %} +
    \ No newline at end of file diff --git a/website/templates/js/blog.js b/website/templates/js/blog.js index 91d3ead65a..61e1b657f2 100644 --- a/website/templates/js/blog.js +++ b/website/templates/js/blog.js @@ -25,11 +25,11 @@ $(document).ready(function() { }) if(get_url_arg("by_name")) { - $("#blog-title").html("Posts by " + get_url_arg("by_name")); + $("#blot-subtitle").html("Posts by " + get_url_arg("by_name")).toggle(true); } if(get_url_arg("category")) { - $("#blog-title").html("Posts filed under " + get_url_arg("category")); + $("#blot-subtitle").html("Posts filed under " + get_url_arg("category")).toggle(true); } }); diff --git a/website/templates/pages/blog.html b/website/templates/pages/blog.html index cfdd536696..df258e138f 100644 --- a/website/templates/pages/blog.html +++ b/website/templates/pages/blog.html @@ -12,7 +12,11 @@ {% block content %}
    -

    Blog

    +

    {{ blog_title }}

    + {% if blog_introduction %} +

    {{ blog_introduction }}

    + {% endif %} +
    diff --git a/website/templates/pages/writers.html b/website/templates/pages/writers.html index 0ae8549f97..bba374946c 100644 --- a/website/templates/pages/writers.html +++ b/website/templates/pages/writers.html @@ -5,6 +5,9 @@ {% block content %}

    Blog Writers

    + {% if writers_introduction %} +

    {{ writers_introduction }}

    + {% endif %}
    {% for blogger_info in bloggers %} {% include "html/blogger.html" %} From 770e7938d94e745891ff47b3d2af44d5f5cad6a7 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 11 Mar 2013 18:30:05 +0530 Subject: [PATCH 146/982] added footer subscribe and blog settings --- website/doctype/blog_settings/__init__.py | 0 .../doctype/blog_settings/blog_settings.py | 8 ++ .../doctype/blog_settings/blog_settings.txt | 61 ++++++++++++ website/helpers/blog.py | 9 +- website/helpers/blog_feed.py | 2 +- website/templates/html/footer.html | 66 +++++++++++++ website/templates/html/navbar.html | 57 +++++++++++ website/templates/html/outer.html | 97 +------------------ 8 files changed, 198 insertions(+), 102 deletions(-) create mode 100644 website/doctype/blog_settings/__init__.py create mode 100644 website/doctype/blog_settings/blog_settings.py create mode 100644 website/doctype/blog_settings/blog_settings.txt create mode 100644 website/templates/html/footer.html create mode 100644 website/templates/html/navbar.html diff --git a/website/doctype/blog_settings/__init__.py b/website/doctype/blog_settings/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/website/doctype/blog_settings/blog_settings.py b/website/doctype/blog_settings/blog_settings.py new file mode 100644 index 0000000000..928aa9ff9f --- /dev/null +++ b/website/doctype/blog_settings/blog_settings.py @@ -0,0 +1,8 @@ +# For license information, please see license.txt + +from __future__ import unicode_literals +import webnotes + +class DocType: + def __init__(self, d, dl): + self.doc, self.doclist = d, dl \ No newline at end of file diff --git a/website/doctype/blog_settings/blog_settings.txt b/website/doctype/blog_settings/blog_settings.txt new file mode 100644 index 0000000000..09740eb78f --- /dev/null +++ b/website/doctype/blog_settings/blog_settings.txt @@ -0,0 +1,61 @@ +[ + { + "creation": "2013-03-11 17:48:16", + "docstatus": 0, + "modified": "2013-03-11 17:48:16", + "modified_by": "Administrator", + "owner": "Administrator" + }, + { + "description": "Blog Settings", + "doctype": "DocType", + "issingle": 1, + "module": "Website", + "name": "__common__" + }, + { + "doctype": "DocField", + "name": "__common__", + "parent": "Blog Settings", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0 + }, + { + "create": 1, + "doctype": "DocPerm", + "name": "__common__", + "parent": "Blog Settings", + "parentfield": "permissions", + "parenttype": "DocType", + "permlevel": 0, + "read": 1, + "role": "Website Manager", + "write": 1 + }, + { + "doctype": "DocType", + "name": "Blog Settings" + }, + { + "doctype": "DocField", + "fieldname": "blog_title", + "fieldtype": "Data", + "label": "Blog Title" + }, + { + "doctype": "DocField", + "fieldname": "blog_introduction", + "fieldtype": "Small Text", + "label": "Blog Introduction" + }, + { + "doctype": "DocField", + "fieldname": "writers_introduction", + "fieldtype": "Small Text", + "label": "Writers Introduction" + }, + { + "doctype": "DocPerm" + } +] \ No newline at end of file diff --git a/website/helpers/blog.py b/website/helpers/blog.py index de2a3373ae..5ee3451956 100644 --- a/website/helpers/blog.py +++ b/website/helpers/blog.py @@ -99,10 +99,8 @@ def add_comment(args=None): return comment_html @webnotes.whitelist(allow_guest=True) -def add_subscriber(): +def add_subscriber(name, email_id): """add blog subscriber to lead""" - full_name = webnotes.form_dict.get('your_name') - email = webnotes.form_dict.get('your_email_address') name = webnotes.conn.sql("""select name from tabLead where email_id=%s""", email) from webnotes.model.doc import Document @@ -114,14 +112,13 @@ def add_subscriber(): if not lead.source: lead.source = 'Blog' lead.unsubscribed = 0 lead.blog_subscriber = 1 - lead.lead_name = full_name + lead.lead_name = name lead.email_id = email lead.save() - + def get_blog_content(blog_page_name): import website.utils content = website.utils.get_html(blog_page_name) - content = split_blog_content(content) import webnotes.utils content = webnotes.utils.escape_html(content) return content diff --git a/website/helpers/blog_feed.py b/website/helpers/blog_feed.py index 19fc5d8ec6..c59a419fc6 100644 --- a/website/helpers/blog_feed.py +++ b/website/helpers/blog_feed.py @@ -59,7 +59,7 @@ def generate(): blog_list = webnotes.conn.sql("""\ select page_name as name, modified, creation, title from `tabBlog Post` where ifnull(published,0)=1 - order by creation desc, modified desc, name asc limit 100""", as_dict=1) + order by creation desc, modified desc, name asc limit 20""", as_dict=1) for blog in blog_list: blog.link = host + '/' + blog.name + '.html' diff --git a/website/templates/html/footer.html b/website/templates/html/footer.html new file mode 100644 index 0000000000..19aeabef65 --- /dev/null +++ b/website/templates/html/footer.html @@ -0,0 +1,66 @@ +
    +
    diff --git a/website/templates/html/navbar.html b/website/templates/html/navbar.html new file mode 100644 index 0000000000..5a30c6a6f1 --- /dev/null +++ b/website/templates/html/navbar.html @@ -0,0 +1,57 @@ + + diff --git a/website/templates/html/outer.html b/website/templates/html/outer.html index e582d0a9ce..9c8cd9f8d4 100644 --- a/website/templates/html/outer.html +++ b/website/templates/html/outer.html @@ -5,106 +5,13 @@
    - - + {% include "html/navbar.html" %}
    {% block content %} {% endblock %}
    -
    -
    + {% include "html/footer.html" %} {% endblock %} \ No newline at end of file From df6ff1385fabd100bc70ce60803b0c942e1d6ccb Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 11 Mar 2013 19:44:52 +0530 Subject: [PATCH 147/982] fixes in warehouse validation --- .../doctype/sales_invoice/sales_invoice.py | 3 +-- .../purchase_common/purchase_common.js | 2 +- .../doctype/purchase_order/purchase_order.py | 4 ++++ hr/doctype/employee/employee.py | 4 ++-- .../upload_attendance/upload_attendance.js | 2 +- projects/doctype/task/task.js | 2 +- public/js/controllers/stock_controller.js | 2 +- public/js/utils.js | 9 +-------- selling/doctype/sales_order/sales_order.py | 10 +++++----- stock/doctype/delivery_note/delivery_note.py | 19 +++++++++++++----- stock/doctype/item/item.py | 20 +++++++++++++------ .../purchase_receipt/purchase_receipt.py | 5 ++++- stock/doctype/stock_entry/stock_entry.py | 12 +++++++++-- 13 files changed, 59 insertions(+), 35 deletions(-) diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index b31d54919c..a4924ac187 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -537,8 +537,7 @@ class DocType(SellingController): if not w: ps = webnotes.conn.sql("select name, warehouse from `tabPOS Setting` where ifnull(user,'') = '' and company = '%s'" % self.doc.company) if not ps: - msgprint("To make POS entry, please create POS Setting from Accounts --> POS Setting page and refresh the system.") - raise Exception + msgprint("To make POS entry, please create POS Setting from Accounts --> POS Setting page and refresh the system.", raise_exception=True) elif not ps[0][1]: msgprint("Please enter warehouse in POS Setting") else: diff --git a/buying/doctype/purchase_common/purchase_common.js b/buying/doctype/purchase_common/purchase_common.js index 136ddef383..dacee80e55 100644 --- a/buying/doctype/purchase_common/purchase_common.js +++ b/buying/doctype/purchase_common/purchase_common.js @@ -21,7 +21,7 @@ wn.provide("erpnext.buying"); -erpnext.buying.BuyingController = erpnext.utils.Controller.extend({ +erpnext.buying.BuyingController = wn.ui.form.Controller.extend({ setup: function() { var me = this; diff --git a/buying/doctype/purchase_order/purchase_order.py b/buying/doctype/purchase_order/purchase_order.py index 438442cf24..218d4bfeee 100644 --- a/buying/doctype/purchase_order/purchase_order.py +++ b/buying/doctype/purchase_order/purchase_order.py @@ -132,6 +132,10 @@ class DocType(BuyingController): for d in getlist(self.doclist, 'po_details'): #1. Check if is_stock_item == 'Yes' if webnotes.conn.get_value("Item", d.item_code, "is_stock_item") == "Yes": + # this happens when item is changed from non-stock to stock item + if not d.warehouse: + continue + ind_qty, po_qty = 0, flt(d.qty) * flt(d.conversion_factor) if is_stopped: po_qty = flt(d.qty) > flt(d.received_qty) and \ diff --git a/hr/doctype/employee/employee.py b/hr/doctype/employee/employee.py index 2bd7998159..d98c8a7754 100644 --- a/hr/doctype/employee/employee.py +++ b/hr/doctype/employee/employee.py @@ -17,7 +17,7 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import getdate, validate_email_add +from webnotes.utils import getdate, validate_email_add, cstr from webnotes.model.doc import make_autoname from webnotes import msgprint, _ @@ -104,7 +104,7 @@ class DocType: fname, fid = file_args.split(",") if self.doc.image == fname: new_file_args = fname + "," + fid - file_list = profile_wrapper.doc.file_list.split("\n") + file_list = cstr(profile_wrapper.doc.file_list).split("\n") if new_file_args not in file_list: file_list += [new_file_args] profile_wrapper.doc.file_list = "\n".join(file_list) diff --git a/hr/doctype/upload_attendance/upload_attendance.js b/hr/doctype/upload_attendance/upload_attendance.js index 008e1cd878..0c1d7b2574 100644 --- a/hr/doctype/upload_attendance/upload_attendance.js +++ b/hr/doctype/upload_attendance/upload_attendance.js @@ -18,7 +18,7 @@ wn.require("public/app/js/utils.js"); wn.provide("erpnext.hr"); -erpnext.hr.AttendanceControlPanel = erpnext.utils.Controller.extend({ +erpnext.hr.AttendanceControlPanel = wn.ui.form.Controller.extend({ onload: function() { this.frm.set_value("att_fr_date", get_today()); this.frm.set_value("att_to_date", get_today()); diff --git a/projects/doctype/task/task.js b/projects/doctype/task/task.js index ea3dd6d772..8493920540 100644 --- a/projects/doctype/task/task.js +++ b/projects/doctype/task/task.js @@ -18,7 +18,7 @@ wn.provide("erpnext.projects"); cur_frm.add_fetch("project", "company", "company"); -erpnext.projects.Task = erpnext.utils.Controller.extend({ +erpnext.projects.Task = wn.ui.form.Controller.extend({ setup: function() { this.frm.fields_dict.project.get_query = function() { return "select name from `tabProject` \ diff --git a/public/js/controllers/stock_controller.js b/public/js/controllers/stock_controller.js index d3511e1c03..15d34e0e33 100644 --- a/public/js/controllers/stock_controller.js +++ b/public/js/controllers/stock_controller.js @@ -16,7 +16,7 @@ wn.provide("erpnext.stock"); -erpnext.stock.StockController = erpnext.utils.Controller.extend({ +erpnext.stock.StockController = wn.ui.form.Controller.extend({ show_stock_ledger: function() { var me = this; this.frm.add_custom_button("Show Stock Ledger", function() { diff --git a/public/js/utils.js b/public/js/utils.js index 7340cdcb04..4df9555ae9 100644 --- a/public/js/utils.js +++ b/public/js/utils.js @@ -23,11 +23,4 @@ erpnext.get_currency = function(company) { return wn.model.get(":Company", company).default_currency || wn.boot.sysdefaults.currency; else return wn.boot.sysdefaults.currency; -} - -// TODO -erpnext.utils.Controller = wn.ui.form.Controller.extend({ - refresh: function() { - erpnext.hide_naming_series(); - } -}); \ No newline at end of file +} \ No newline at end of file diff --git a/selling/doctype/sales_order/sales_order.py b/selling/doctype/sales_order/sales_order.py index 8205afbd44..5009c4ee26 100644 --- a/selling/doctype/sales_order/sales_order.py +++ b/selling/doctype/sales_order/sales_order.py @@ -156,9 +156,13 @@ class DocType(SellingController): f = [d.item_code, d.description] #check item is stock item - st_itm = sql("select is_stock_item from `tabItem` where name = '%s'"%d.item_code) + st_itm = sql("select is_stock_item from `tabItem` where name = %s", d.item_code) if st_itm and st_itm[0][0] == 'Yes': + if not d.reserved_warehouse: + msgprint("""Please enter Reserved Warehouse for item %s + as it is stock Item""" % d.item_code, raise_exception=1) + if e in check_list: msgprint("Item %s has been entered twice." % d.item_code) else: @@ -333,10 +337,6 @@ class DocType(SellingController): def update_stock_ledger(self, update_stock, is_stopped = 0): for d in self.get_item_list(is_stopped): if webnotes.conn.get_value("Item", d['item_code'], "is_stock_item") == "Yes": - if not d['reserved_warehouse']: - msgprint("""Please enter Reserved Warehouse for item %s - as it is stock Item""" % d['item_code'], raise_exception=1) - args = { "item_code": d['item_code'], "reserved_qty": flt(update_stock) * flt(d['reserved_qty']), diff --git a/stock/doctype/delivery_note/delivery_note.py b/stock/doctype/delivery_note/delivery_note.py index c0b99166ee..52f96ab7a5 100644 --- a/stock/doctype/delivery_note/delivery_note.py +++ b/stock/doctype/delivery_note/delivery_note.py @@ -156,7 +156,7 @@ class DocType(SellingController): if not self.doc.billing_status: self.doc.billing_status = 'Not Billed' if not self.doc.installation_status: self.doc.installation_status = 'Not Installed' - + def validate_mandatory(self): if self.doc.amended_from and not self.doc.amendment_date: msgprint("Please Enter Amendment Date") @@ -332,10 +332,10 @@ class DocType(SellingController): self.values = [] for d in self.get_item_list(): if webnotes.conn.get_value("Item", d['item_code'], "is_stock_item") == "Yes": - if not d['warehouse']: - msgprint("Please enter Warehouse for item %s as it is stock item" - % d['item_code'], raise_exception=1) - + # this happens when item is changed from non-stock to stock item + if not d["warehouse"]: + continue + if d['reserved_qty'] < 0 : # Reduce reserved qty from reserved warehouse mentioned in so args = { @@ -395,6 +395,15 @@ class DocType(SellingController): sl.scrub_serial_nos(self) sl.scrub_serial_nos(self, 'packing_details') + self.validate_warehouse() + + def validate_warehouse(self): + for d in self.get_item_list(): + if webnotes.conn.get_value("Item", d['item_code'], "is_stock_item") == "Yes": + if not d['warehouse']: + msgprint("Please enter Warehouse for item %s as it is stock item" + % d['item_code'], raise_exception=1) + def make_gl_entries(self): if not cint(webnotes.defaults.get_global_default("auto_inventory_accounting")): return diff --git a/stock/doctype/item/item.py b/stock/doctype/item/item.py index 334af298e9..74bf3f308c 100644 --- a/stock/doctype/item/item.py +++ b/stock/doctype/item/item.py @@ -20,15 +20,12 @@ import webnotes from webnotes.utils import cstr, flt from webnotes.model.doc import addchild from webnotes.model.bean import getlist -from webnotes import msgprint +from webnotes import msgprint, _ sql = webnotes.conn.sql -class DocType: - def __init__(self, doc, doclist=[]): - self.doc = doc - self.doclist = doclist - +from webnotes.model.controller import DocListController +class DocType(DocListController): def get_tax_rate(self, tax_type): rate = sql("select tax_rate from tabAccount where name = %s", tax_type) ret = { @@ -196,6 +193,8 @@ class DocType: if self.doc.name: self.old_page_name = webnotes.conn.get_value('Item', self.doc.name, 'page_name') + + self.validate_is_stock_item() def check_non_asset_warehouse(self): if self.doc.is_asset_item == "Yes": @@ -215,6 +214,15 @@ class DocType: 'description' : file and file[0]['description'] or '' } return ret + + def validate_is_stock_item(self): + if not self.doc.fields.get("__islocal"): + if webnotes.conn.get_value("Item", self.doc.name, "is_stock_item")=="Yes" and \ + ((not self.doc.is_stock_item) or self.doc.is_stock_item == "No"): + if self.check_if_sle_exists() == "exists": + webnotes.msgprint(self.meta.get_label("is_stock_item") + ": " + + _("""Cannot change to Yes. Reason: Stock Ledger Entries exist for""") + + """ "%s" """ % self.doc.name, raise_exception=True) def check_if_sle_exists(self): sle = sql("select name from `tabStock Ledger Entry` where item_code = %s and ifnull(is_cancelled, 'No') = 'No'", self.doc.name) diff --git a/stock/doctype/purchase_receipt/purchase_receipt.py b/stock/doctype/purchase_receipt/purchase_receipt.py index 12da0a6ee8..cce1493141 100644 --- a/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/stock/doctype/purchase_receipt/purchase_receipt.py @@ -125,7 +125,7 @@ class DocType(BuyingController): self.update_raw_materials_supplied("pr_raw_material_details") self.update_valuation_rate("purchase_receipt_details") - + def on_update(self): if self.doc.rejected_warehouse: for d in getlist(self.doclist,'purchase_receipt_details'): @@ -146,6 +146,9 @@ class DocType(BuyingController): self.values = [] for d in getlist(self.doclist, 'purchase_receipt_details'): if webnotes.conn.get_value("Item", d.item_code, "is_stock_item") == "Yes": + if not d.warehouse: + continue + ord_qty = 0 pr_qty = flt(d.qty) * flt(d.conversion_factor) diff --git a/stock/doctype/stock_entry/stock_entry.py b/stock/doctype/stock_entry/stock_entry.py index 278c283284..74b71d97b3 100644 --- a/stock/doctype/stock_entry/stock_entry.py +++ b/stock/doctype/stock_entry/stock_entry.py @@ -29,9 +29,9 @@ import json sql = webnotes.conn.sql -from utilities.transaction_base import TransactionBase +from controllers.accounts_controller import AccountsController -class DocType(TransactionBase): +class DocType(AccountsController): def __init__(self, doc, doclist=[]): self.doc = doc self.doclist = doclist @@ -44,12 +44,14 @@ class DocType(TransactionBase): pro_obj = self.doc.production_order and \ get_obj('Production Order', self.doc.production_order) or None + self.validate_item() self.validate_warehouse(pro_obj) self.validate_production_order(pro_obj) self.get_stock_and_rate() self.validate_incoming_rate() self.validate_bom() self.validate_finished_goods() + self.validate_return_reference_doc() self.validate_with_material_request() @@ -78,6 +80,12 @@ class DocType(TransactionBase): sl_obj.scrub_serial_nos(self) sl_obj.validate_serial_no(self, 'mtn_details') + def validate_item(self): + for item in self.doclist.get({"parentfield": "mtn_details"}): + if item.item_code not in self.stock_items: + msgprint(_("""Only Stock Items are allowed for Stock Entry"""), + raise_exception=True) + def validate_warehouse(self, pro_obj): """perform various (sometimes conditional) validations on warehouse""" From bffbc18b2d354cc57195ea353c5faf1c8c491910 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 12 Mar 2013 10:41:21 +0530 Subject: [PATCH 148/982] fixes in cleanup data --- .../doctype/sales_invoice/sales_invoice.py | 7 + utilities/cleanup_data.py | 136 +++++++++--------- 2 files changed, 74 insertions(+), 69 deletions(-) diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index 597e2ff1aa..906de23677 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -724,6 +724,8 @@ class DocType(SellingController): # expense account gl entries if auto_inventory_accounting and flt(item.buying_amount): + self.check_expense_account(item) + gl_entries.append( self.get_gl_dict({ "account": item.expense_account, @@ -813,6 +815,11 @@ class DocType(SellingController): item_buying_amount = item_buying_rate * flt(item.qty) return item_buying_amount + + def check_expense_account(self, item): + if not item.expense_account: + msgprint(_("""Expense account is mandatory for item: """) + item.item_code, + raise_exception=1) def update_c_form(self): """Update amended id in C-form""" diff --git a/utilities/cleanup_data.py b/utilities/cleanup_data.py index a9cc5c340e..ed04a94bfa 100644 --- a/utilities/cleanup_data.py +++ b/utilities/cleanup_data.py @@ -20,16 +20,14 @@ import webnotes def delete_transactions(): print "Deleting transactions..." - trans = ['Timesheet','Task','Support Ticket','Stock Reconciliation', 'Stock Ledger Entry', \ - 'Stock Entry','Sales Order','Salary Slip','Sales Invoice','Quotation', 'Quality Inspection', \ - 'Purchase Receipt','Purchase Order','Production Order', 'POS Setting','Period Closing Voucher', \ - 'Purchase Invoice','Maintenance Visit','Maintenance Schedule','Leave Application', \ - 'Leave Allocation', 'Lead', 'Journal Voucher', 'Installation Note','Material Request', \ - 'GL Entry','Expense Claim','Opportunity','Delivery Note','Customer Issue','Bin', \ - 'Authorization Rule','Attendance', 'C-Form', 'Form 16A', 'Lease Agreement', \ - 'Lease Installment', 'TDS Payment', 'TDS Return Acknowledgement', 'Appraisal', \ - 'Installation Note', 'Communication' - ] + trans = ['Timesheet', 'Task', 'Support Ticket', 'Stock Reconciliation', 'Stock Ledger Entry', + 'Stock Entry', 'Sales Order', 'Salary Slip','Sales Invoice', 'Quotation', + 'Quality Inspection', 'Purchase Receipt', 'Purchase Order', 'Production Order', + 'POS Setting', 'Period Closing Voucher', 'Purchase Invoice', 'Maintenance Visit', + 'Maintenance Schedule', 'Leave Application', 'Leave Allocation', 'Lead', 'Journal Voucher', + 'Installation Note', 'Material Request', 'GL Entry', 'Expense Claim', 'Opportunity', + 'Delivery Note', 'Customer Issue', 'Bin', 'Authorization Rule', 'Attendance', 'C-Form', + 'Appraisal', 'Installation Note', 'Communication'] for d in trans: for t in webnotes.conn.sql("select options from tabDocField where parent='%s' and fieldtype='Table'" % d): webnotes.conn.sql("delete from `tab%s`" % (t)) @@ -41,55 +39,55 @@ def delete_transactions(): def delete_masters(): print "Deleting masters...." masters = { - 'Workstation':['Default Workstation'], - 'Warehouse Type':['Default Warehouse Type', 'Fixed Asset', 'Rejected', 'Reserved', + 'Workstation': ['Default Workstation'], + 'Warehouse Type': ['Default Warehouse Type', 'Fixed Asset', 'Rejected', 'Reserved', 'Sample', 'Stores', 'WIP Warehouse'], - 'Warehouse':['Default Warehouse'], - 'UOM':['Kg', 'Mtr', 'Box', 'Ltr', 'Nos', 'Ft', 'Pair', 'Set'], - 'Territory':['All Territories', 'Default Territory'], - 'Terms and Conditions':'', - 'Tag':'', - 'Supplier Type':['Default Supplier Type'], - 'Supplier':'', - 'Serial No':'', - 'Sales Person':['All Sales Persons'], - 'Sales Partner':'', - 'Sales BOM':'', - 'Salary Structure':'', - 'Purchase Taxes and Charges Master':'', - 'Project':'', - 'Print Heading':'', - 'Price List':['Default Price List'], - 'Sales Taxes and Charges Master':'', - 'Letter Head':'', - 'Leave Type':['Leave Without Pay', 'Privilege Leave', 'Casual Leave', 'PL', 'CL', 'LWP', + 'Warehouse': ['Default Warehouse'], + 'UOM': ['Kg', 'Mtr', 'Box', 'Ltr', 'Nos', 'Ft', 'Pair', 'Set'], + 'Territory': ['All Territories', 'Default Territory'], + 'Terms and Conditions': '', + 'Tag': '', + 'Supplier Type': ['Default Supplier Type'], + 'Supplier': '', + 'Serial No': '', + 'Sales Person': ['All Sales Persons'], + 'Sales Partner': '', + 'Sales BOM': '', + 'Salary Structure': '', + 'Purchase Taxes and Charges Master': '', + 'Project': '', + 'Print Heading': '', + 'Price List': ['Default Price List'], + 'Sales Taxes and Charges Master': '', + 'Letter Head': '', + 'Leave Type': ['Leave Without Pay', 'Privilege Leave', 'Casual Leave', 'PL', 'CL', 'LWP', 'Compensatory Off', 'Sick Leave'], - 'Appraisal Template':'', - 'Item Group':['All Item Groups', 'Default'], - 'Item':'', - 'Holiday List':'', - 'Grade':'', - 'Feed':'', - 'Expense Claim Type':['Travel', 'Medical', 'Calls', 'Food', 'Others'], - 'Event':'', - 'Employment Type':'', - 'Employee':'', - 'Earning Type':['Basic', 'Conveyance', 'House Rent Allowance', 'Dearness Allowance', + 'Appraisal Template': '', + 'Item Group': ['All Item Groups', 'Default'], + 'Item': '', + 'Holiday List': '', + 'Grade': '', + 'Feed': '', + 'Expense Claim Type': ['Travel', 'Medical', 'Calls', 'Food', 'Others'], + 'Event': '', + 'Employment Type': '', + 'Employee': '', + 'Earning Type': ['Basic', 'Conveyance', 'House Rent Allowance', 'Dearness Allowance', 'Medical Allowance', 'Telephone'], - 'Designation':'', - 'Department':'', - 'Deduction Type':['Income Tax', 'Professional Tax', 'Provident Fund', 'Leave Deduction'], - 'Customer Group':['All Customer Groups', 'Default Customer Group'], - 'Customer':'', - 'Cost Center':'', - 'Contact':'', - 'Campaign':'', - 'Budget Distribution':'', - 'Brand':'', - 'Branch':'', - 'Batch':'', - 'Appraisal':'', - 'Account':'', + 'Designation': '', + 'Department': '', + 'Deduction Type': ['Income Tax', 'Professional Tax', 'Provident Fund', 'Leave Deduction'], + 'Customer Group': ['All Customer Groups', 'Default Customer Group'], + 'Customer': '', + 'Cost Center': '', + 'Contact': '', + 'Campaign': '', + 'Budget Distribution': '', + 'Brand': '', + 'Branch': '', + 'Batch': '', + 'Appraisal': '', + 'Account': '', 'BOM': '' } for d in masters.keys(): @@ -115,40 +113,40 @@ def reset_all_series(): def reset_transaction_series(): webnotes.conn.sql("""update tabSeries set current = 0 where name in ('JV', 'INV', 'BILL', 'SO', 'DN', 'PO', 'LEAD', 'ENQUIRY', 'ENQ', 'CI', - 'IN', 'PS', 'IDT', 'QAI', 'QTN', 'STE', 'SQTN', 'SUP', 'TDSP', 'SR', + 'IN', 'PS', 'IDT', 'QAI', 'QTN', 'STE', 'SQTN', 'SUP', 'SR', 'POS', 'LAP', 'LAL', 'EXP')""") print "Series updated" def delete_main_masters(): - main_masters = ['Fiscal Year','Company', 'DefaultValue'] + main_masters = ['Fiscal Year', 'Company', 'DefaultValue'] for d in main_masters: for t in webnotes.conn.sql("select options from tabDocField where parent='%s' and fieldtype='Table'" % d): webnotes.conn.sql("delete from `tab%s`" % (t)) webnotes.conn.sql("delete from `tab%s`" % (d)) print "Deleted " + d - - def reset_global_defaults(): flds = { - 'default_company': '', - 'default_currency': '', - 'current_fiscal_year': '', + 'default_company': None, + 'default_currency': None, + 'current_fiscal_year': None, 'date_format': 'dd-mm-yyyy', - 'sms_sender_name': '', + 'sms_sender_name': None, 'default_item_group': 'Default', 'default_stock_uom': 'Nos', 'default_valuation_method': 'FIFO', 'default_warehouse_type': 'Default Warehouse Type', - 'tolerance': '', - 'acc_frozen_upto': '', - 'bde_auth_role': '', - 'credit_controller': '', + 'tolerance': None, + 'acc_frozen_upto': None, + 'bde_auth_role': None, + 'credit_controller': None, 'default_customer_group': 'Default Customer Group', 'default_territory': 'Default', 'default_price_list': 'Standard', - 'default_supplier_type': 'Default Supplier Type' + 'default_supplier_type': 'Default Supplier Type', + 'hide_currency_symbol': None, + 'default_price_list_currency': None, } from webnotes.model.code import get_obj From 9e4b1e691315b5f9f673d1cb301697449f9ab8b0 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 12 Mar 2013 10:44:35 +0530 Subject: [PATCH 149/982] patch fix: published on should be date of creation --- patches/march_2013/p03_rename_blog_to_blog_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/march_2013/p03_rename_blog_to_blog_post.py b/patches/march_2013/p03_rename_blog_to_blog_post.py index 7520f9cf8b..69902f34be 100644 --- a/patches/march_2013/p03_rename_blog_to_blog_post.py +++ b/patches/march_2013/p03_rename_blog_to_blog_post.py @@ -6,4 +6,4 @@ def execute(): webnotes.reload_doc('website', 'doctype', 'blog_post') webnotes.conn.sql('''update tabBlogger set posts=(select count(*) from `tabBlog Post` where ifnull(blogger,"")=tabBlogger.name)''') - webnotes.conn.sql("""update `tabBlog Post` set published_on=creation""") + webnotes.conn.sql("""update `tabBlog Post` set published_on=date(creation)""") From f7df8b28d268cbceb7dcb9b44f9aae8b07b7871c Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 12 Mar 2013 10:58:11 +0530 Subject: [PATCH 150/982] -m --- patches/february_2013/p07_clear_web_cache.py | 2 +- patches/patch_list.py | 1 + stock/doctype/stock_entry/test_stock_entry.py | 71 +++++++++++++++++++ stock/doctype/warehouse/warehouse.txt | 49 +++++++------ 4 files changed, 99 insertions(+), 24 deletions(-) diff --git a/patches/february_2013/p07_clear_web_cache.py b/patches/february_2013/p07_clear_web_cache.py index 5aca2d6ee6..26329249d0 100644 --- a/patches/february_2013/p07_clear_web_cache.py +++ b/patches/february_2013/p07_clear_web_cache.py @@ -1,6 +1,6 @@ import webnotes def execute(): + webnotes.reload_doc("website", "doctype", "blog_post") from website.utils import clear_cache clear_cache() - \ No newline at end of file diff --git a/patches/patch_list.py b/patches/patch_list.py index bff51a9ae0..7409c0e986 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -18,6 +18,7 @@ from __future__ import unicode_literals patch_list = [ "execute:webnotes.reload_doc('core', 'doctype', 'docfield')", "execute:webnotes.reload_doc('core', 'doctype', 'report')", + "execute:webnotes.reload_doc('core', 'doctype', 'doctype')", "patches.mar_2012.so_rv_mapper_fix", "patches.mar_2012.clean_property_setter", "patches.april_2012.naming_series_patch", diff --git a/stock/doctype/stock_entry/test_stock_entry.py b/stock/doctype/stock_entry/test_stock_entry.py index 39ec58ac3a..21d15f7e23 100644 --- a/stock/doctype/stock_entry/test_stock_entry.py +++ b/stock/doctype/stock_entry/test_stock_entry.py @@ -21,6 +21,77 @@ class TestStockEntry(unittest.TestCase): where item_code='_Test Item'""") self.assertTrue(mr_name) + + def test_material_receipt_gl_entry(self): + webnotes.conn.sql("delete from `tabStock Ledger Entry`") + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + + mr = webnotes.bean(copy=test_records[0]) + mr.insert() + mr.submit() + + stock_in_hand_account = webnotes.conn.get_value("Company", "_Test Company", + "stock_in_hand_account") + + self.check_stock_ledger_entries("Stock Entry", mr.doc.name, + [["_Test Item", "_Test Warehouse", 50.0]]) + + self.check_gl_entries("Stock Entry", mr.doc.name, + sorted([ + [stock_in_hand_account, 5000.0, 0.0], + ["Stock Adjustment - _TC", 0.0, 5000.0] + ]) + ) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + + def test_material_issue_gl_entry(self): + webnotes.conn.sql("delete from `tabStock Ledger Entry`") + webnotes.defaults.set_global_default("auto_inventory_accounting", 1) + + mr = webnotes.bean(copy=test_records[0]) + mr.insert() + mr.submit() + + stock_in_hand_account = webnotes.conn.get_value("Company", "_Test Company", + "stock_in_hand_account") + + self.check_stock_ledger_entries("Stock Entry", mr.doc.name, + [["_Test Item", "_Test Warehouse", 50.0]]) + + self.check_gl_entries("Stock Entry", mr.doc.name, + sorted([ + [stock_in_hand_account, 5000.0, 0.0], + ["Stock Adjustment - _TC", 0.0, 5000.0] + ]) + ) + + webnotes.defaults.set_global_default("auto_inventory_accounting", 0) + + def check_stock_ledger_entries(self, voucher_type, voucher_no, expected_sle): + # check stock ledger entries + sle = webnotes.conn.sql("""select * from `tabStock Ledger Entry` + where voucher_type = %s and voucher_no = %s order by item_code, warehouse""", + (voucher_type, voucher_no), as_dict=1) + self.assertTrue(sle) + + for i, sle in enumerate(sle): + self.assertEquals(expected_sle[i][0], sle.item_code) + self.assertEquals(expected_sle[i][1], sle.warehouse) + self.assertEquals(expected_sle[i][2], sle.actual_qty) + + def check_gl_entries(self, voucher_type, voucher_no, expected_gl_entries): + # check gl entries + + gl_entries = webnotes.conn.sql("""select account, debit, credit + from `tabGL Entry` where voucher_type=%s and voucher_no=%s + order by account asc, debit asc""", (voucher_type, voucher_no), as_dict=1) + self.assertTrue(gl_entries) + + for i, gle in enumerate(gl_entries): + self.assertEquals(expected_gl_entries[i][0], gle.account) + self.assertEquals(expected_gl_entries[i][1], gle.debit) + self.assertEquals(expected_gl_entries[i][2], gle.credit) test_records = [ [ diff --git a/stock/doctype/warehouse/warehouse.txt b/stock/doctype/warehouse/warehouse.txt index d0dd73c086..d08b3ccff3 100644 --- a/stock/doctype/warehouse/warehouse.txt +++ b/stock/doctype/warehouse/warehouse.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:30", + "creation": "2013-03-07 18:50:32", "docstatus": 0, - "modified": "2013-02-04 11:35:53", + "modified": "2013-03-11 17:58:45", "modified_by": "Administrator", "owner": "Administrator" }, @@ -21,7 +21,8 @@ "name": "__common__", "parent": "Warehouse", "parentfield": "fields", - "parenttype": "DocType" + "parenttype": "DocType", + "read_only": 0 }, { "doctype": "DocPerm", @@ -190,7 +191,7 @@ "permlevel": 0 }, { - "description": "This feature is for merging duplicate warehouses. It will replace all the links of this warehouse by \"Merge With\" warehouse. After merging you can delete this warehouse, as stock level for this warehouse will be zero.", + "description": "This feature is for merging duplicate warehouses. It will replace all the links of this warehouse by \"Merge Into\" warehouse. After merging you can delete this warehouse, as stock level for this warehouse will be zero.", "doctype": "DocField", "fieldname": "merge_warehouses_section", "fieldtype": "Section Break", @@ -201,7 +202,7 @@ "doctype": "DocField", "fieldname": "merge_with", "fieldtype": "Link", - "label": "Merge With", + "label": "Merge Into", "options": "Warehouse", "permlevel": 2 }, @@ -221,24 +222,6 @@ "role": "Material Master Manager", "write": 1 }, - { - "amend": 0, - "cancel": 0, - "create": 0, - "doctype": "DocPerm", - "permlevel": 0, - "role": "Material User", - "write": 0 - }, - { - "amend": 0, - "cancel": 0, - "create": 0, - "doctype": "DocPerm", - "permlevel": 2, - "role": "Material User", - "write": 0 - }, { "cancel": 1, "create": 1, @@ -248,6 +231,26 @@ "write": 1 }, { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 0, + "role": "Material Manager", + "write": 0 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 0, + "role": "Material User", + "write": 0 + }, + { + "amend": 0, + "cancel": 0, "create": 0, "doctype": "DocPerm", "permlevel": 2, From 758131b853b4efc56623d02458e341daa8a74388 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 12 Mar 2013 11:07:45 +0530 Subject: [PATCH 151/982] fixed slideshow --- home/page/attributions/attributions.html | 4 +++ .../style_settings/custom_template.css | 4 +-- website/templates/html/slideshow.html | 6 ++-- website/templates/pages/attributions.html | 36 +++++++++++++++++-- 4 files changed, 44 insertions(+), 6 deletions(-) diff --git a/home/page/attributions/attributions.html b/home/page/attributions/attributions.html index 07da9fd89d..2d08c79dd0 100644 --- a/home/page/attributions/attributions.html +++ b/home/page/attributions/attributions.html @@ -26,6 +26,10 @@ Apache HTTPD web server The Number One HTTP Server On The Internet. + + Memcached + Free & open source, high-performance, distributed memory object caching system. + Python Programming Language The "batteries included" language that lets you write elegant code, quickly.

    Python Libraries: diff --git a/website/doctype/style_settings/custom_template.css b/website/doctype/style_settings/custom_template.css index a67c9f1746..00c02bb2b3 100644 --- a/website/doctype/style_settings/custom_template.css +++ b/website/doctype/style_settings/custom_template.css @@ -12,7 +12,7 @@ body { background-color: #edede7; {% endif %} {% if doc.font or doc.google_web_font_for_text %} - font-family: '{{ doc.google_web_font_for_text or doc.font }}', Verdana, Sans !important; + font-family: '{{ doc.google_web_font_for_text or doc.font }}', 'Helvetica Neue', Arial, Sans !important; {% endif %} {% if doc.font_size %} font-size: {{ doc.font_size }} !important; @@ -31,7 +31,7 @@ div.outer { {% if doc.google_web_font_for_heading or doc.heading_font %} h1, h2, h3, h4, h5 { - font-family: '{{ doc.google_web_font_for_heading or doc.heading_font }}', Arial, 'Helvetica Neue' !important; + font-family: '{{ doc.google_web_font_for_heading or doc.heading_font }}', 'Helvetica Neue', Arial !important; } {% endif %} {% if doc.heading_text_style %} diff --git a/website/templates/html/slideshow.html b/website/templates/html/slideshow.html index 86417245b7..e0e9038d9f 100644 --- a/website/templates/html/slideshow.html +++ b/website/templates/html/slideshow.html @@ -5,10 +5,12 @@ {% for slide in obj.slides %}
    + {% if slide.heading or slide.description %} + {% endif %}
    {% endfor %}
    diff --git a/website/templates/pages/attributions.html b/website/templates/pages/attributions.html index 2d195ba9cd..9e4b50ddce 100644 --- a/website/templates/pages/attributions.html +++ b/website/templates/pages/attributions.html @@ -12,7 +12,7 @@ {% block content %}
    -

    This website is made using these Awesome Open Source Projects

    +

    This website is made using these awesome Open Source projects


    @@ -37,6 +37,10 @@ + + + + + + + + @@ -96,13 +104,37 @@ + + + +
    Apache HTTPD web server The Number One HTTP Server On The Internet.
    MemcachedFree & open source, high-performance, distributed memory object caching system.
    Python Programming Language The "batteries included" language that lets you write elegant code, quickly.

    Python Libraries: @@ -80,6 +84,10 @@
    SlickGrid A lightning fast JavaScript grid/spreadsheet.
    FullCalendarFullCalendar is a jQuery plugin that provides a full-sized, drag and drop calendar.
    Flot Charting Library Attractive JavaScript plotting for jQuery.JSColor - Color Picker HTML/Javascript Color Picker.
    QUnitA JavaScript Unit Testing framework.
    Downloadify - Flash Download Widget A tiny javascript + Flash library that enables the creation and download of text files without server interaction.
    + +
    +

    ERPNext License: GNU/General Public License

    +
    +

    ERPNext - Open Source, web based ERP

    +

    Copyright © 2012, Web Notes Technologies Pvt Ltd, India

    -

    Note: A link to this page must be easily accessible.

    +

    This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version.

    + +

    This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details.

    + +

    For complete license see http://www.gnu.org/licenses/

    +
    +

    Note: A link to this page must be easily accessible and all other ERPNext branding must remain as it is.

    +
    +

    For more information please write to us at support@erpnext.com

    {% endblock %} \ No newline at end of file From 1aff4c384d54939e39859c46de1d1f5379b2f57c Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 12 Mar 2013 11:22:30 +0530 Subject: [PATCH 152/982] website added banner --- .../website_settings/website_settings.txt | 29 ++++++++++++------- website/templates/html/navbar.html | 4 +-- website/templates/html/outer.html | 3 ++ website/utils.py | 9 ++---- 4 files changed, 25 insertions(+), 20 deletions(-) diff --git a/website/doctype/website_settings/website_settings.txt b/website/doctype/website_settings/website_settings.txt index 6af0575a36..5bc4f71f68 100644 --- a/website/doctype/website_settings/website_settings.txt +++ b/website/doctype/website_settings/website_settings.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-25 11:35:10", + "creation": "2013-03-07 11:55:11", "docstatus": 0, - "modified": "2013-02-21 10:05:09", + "modified": "2013-03-12 11:17:11", "modified_by": "Administrator", "owner": "Administrator" }, @@ -72,24 +72,31 @@ "label": "Home Page is Products" }, { + "description": "Add a banner to the site. (small banners are usually good)", + "doctype": "DocField", + "fieldname": "banner", + "fieldtype": "Section Break", + "label": "Banner" + }, + { + "description": "Banner is above the Top Menu Bar.", + "doctype": "DocField", + "fieldname": "banner_html", + "fieldtype": "Small Text", + "label": "Banner HTML" + }, + { + "description": "Menu items in the Top Bar. For setting the color of the Top Bar, go to Style Settings", "doctype": "DocField", "fieldname": "top_bar", "fieldtype": "Section Break", "label": "Top Bar" }, - { - "description": "Background shade of the top menu bar", - "doctype": "DocField", - "fieldname": "top_bar_background", - "fieldtype": "Select", - "label": "Top Bar Background", - "options": "Black\nWhite" - }, { "description": "Brand is what appears on the top-right of the toolbar. If it is an image, make sure it\nhas a transparent background and use the <img /> tag. Keep size as 200px x 30px", "doctype": "DocField", "fieldname": "brand_html", - "fieldtype": "Text", + "fieldtype": "Small Text", "label": "Brand HTML" }, { diff --git a/website/templates/html/navbar.html b/website/templates/html/navbar.html index 5a30c6a6f1..8112499c04 100644 --- a/website/templates/html/navbar.html +++ b/website/templates/html/navbar.html @@ -1,7 +1,7 @@ - + +{% endblock %} From 80abad2ee0c29eacb2796761da76e0943e549909 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 19 Mar 2013 18:18:52 +0530 Subject: [PATCH 223/982] aii: default account from company --- .../purchase_invoice/purchase_invoice.py | 7 ++- .../doctype/sales_invoice/sales_invoice.py | 7 +-- controllers/accounts_controller.py | 25 +++++---- controllers/stock_controller.py | 2 +- setup/doctype/company/company.py | 5 ++ setup/doctype/company/company.txt | 9 +++- .../global_defaults/global_defaults.txt | 6 +-- stock/doctype/delivery_note/delivery_note.py | 16 +++--- .../purchase_receipt/purchase_receipt.py | 2 +- stock/doctype/stock_entry/stock_entry.js | 50 +++++++++++++++--- .../stock_reconciliation.js | 51 ++++++++++++++----- 11 files changed, 130 insertions(+), 50 deletions(-) diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.py b/accounts/doctype/purchase_invoice/purchase_invoice.py index 7722c98a07..b56e2ace10 100644 --- a/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -444,6 +444,9 @@ class DocType(BuyingController): # item gl entries stock_item_and_auto_inventory_accounting = False + if auto_inventory_accounting: + stock_acocunt = self.get_default_account("stock_received_but_not_billed") + for item in self.doclist.get({"parentfield": "entries"}): if auto_inventory_accounting and item.item_code in self.stock_items: if flt(item.valuation_rate): @@ -455,7 +458,7 @@ class DocType(BuyingController): gl_entries.append( self.get_gl_dict({ - "account": "Stock Received But Not Billed - %s" % (self.company_abbr,), + "account": stock_acocunt, "against": self.doc.credit_to, "debit": flt(item.valuation_rate) * flt(item.conversion_factor) \ * flt(item.qty), @@ -480,7 +483,7 @@ class DocType(BuyingController): # this will balance out valuation amount included in cost of goods sold gl_entries.append( self.get_gl_dict({ - "account": "Expenses Included In Valuation - %s" % (self.company_abbr,), + "account": self.get_default_account("expenses_included_in_valuation"), "cost_center": "Auto Inventory Accounting - %s" % self.company_abbr, "against": self.doc.credit_to, "credit": valuation_tax, diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index b6b1f0ba10..f81a71b1a4 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -704,9 +704,9 @@ class DocType(SellingController): if auto_inventory_accounting: if cint(self.doc.is_pos) and cint(self.doc.update_stock): - stock_account = self.get_stock_in_hand_account() + stock_account = self.get_default_account("stock_in_hand_account") else: - stock_account = "Stock Delivered But Not Billed - %s" % (self.company_abbr,) + stock_account = self.get_default_account("stock_delivered_but_not_billed") for item in self.doclist.get({"parentfield": "entries"}): # income account gl entries @@ -794,7 +794,8 @@ class DocType(SellingController): stock_ledger_entries = item_sales_bom = None for item in self.doclist.get({"parentfield": "entries"}): - if item.item_code in self.stock_items: + if item.item_code in self.stock_items or \ + (item_sales_bom and item_sales_bom.get(item.item_code)): item.buying_amount = self.get_item_buying_amount(item, stock_ledger_entries, item_sales_bom) webnotes.conn.set_value("Sales Invoice Item", item.name, diff --git a/controllers/accounts_controller.py b/controllers/accounts_controller.py index 66a5d9e09e..df78212cd1 100644 --- a/controllers/accounts_controller.py +++ b/controllers/accounts_controller.py @@ -71,15 +71,15 @@ class AccountsController(TransactionBase): "advance_amount": flt(d.amount), "allocate_amount": 0 }) - - def get_stock_in_hand_account(self): - stock_in_hand_account = webnotes.conn.get_value("Company", self.doc.company, "stock_in_hand_account") - if not stock_in_hand_account: - msgprint(_("Missing") + ": " - + _(webnotes.get_doctype("company").get_label("stock_in_hand_account") - + " " + _("for Company") + " " + self.doc.company), raise_exception=True) - return stock_in_hand_account + def get_default_account(self, account_for): + account = webnotes.conn.get_value("Company", self.doc.company, account_for) + if not account: + msgprint(_("Please mention default account for '") + + _(webnotes.get_doctype("company").get_label(account_for) + + _("' in Company: ") + self.doc.company), raise_exception=True) + + return account @property def stock_items(self): @@ -88,7 +88,7 @@ class AccountsController(TransactionBase): self._stock_items = [r[0] for r in webnotes.conn.sql("""select name from `tabItem` where name in (%s) and is_stock_item='Yes'""" % \ (", ".join((["%s"]*len(item_codes))),), item_codes)] - + return self._stock_items @property @@ -96,4 +96,9 @@ class AccountsController(TransactionBase): if not hasattr(self, "_abbr"): self._abbr = webnotes.conn.get_value("Company", self.doc.company, "abbr") - return self._abbr \ No newline at end of file + return self._abbr + + +@webnotes.whitelist() +def get_default_account(account_for, company): + return webnotes.conn.get_value("Company", company, account_for) \ No newline at end of file diff --git a/controllers/stock_controller.py b/controllers/stock_controller.py index 3a900aa8be..eec7352f1a 100644 --- a/controllers/stock_controller.py +++ b/controllers/stock_controller.py @@ -20,7 +20,7 @@ from controllers.accounts_controller import AccountsController class StockController(AccountsController): def make_gl_entries(self, against_stock_account, amount, cost_center=None): - stock_in_hand_account = self.get_stock_in_hand_account() + stock_in_hand_account = self.get_default_account("stock_in_hand_account") if amount: gl_entries = [ diff --git a/setup/doctype/company/company.py b/setup/doctype/company/company.py index 6ba7985d6d..15241a2ba6 100644 --- a/setup/doctype/company/company.py +++ b/setup/doctype/company/company.py @@ -214,6 +214,11 @@ class DocType: "Stock Adjustment - " + self.doc.abbr): webnotes.conn.set(self.doc, "stock_adjustment_account", "Stock Adjustment - " + self.doc.abbr) + + if not self.doc.expenses_included_in_valuation and webnotes.conn.exists("Account", + "Expenses Included In Valuation - " + self.doc.abbr): + webnotes.conn.set(self.doc, "expenses_included_in_valuation", + "Expenses Included In Valuation - " + self.doc.abbr) # Create default cost center # --------------------------------------------------- diff --git a/setup/doctype/company/company.txt b/setup/doctype/company/company.txt index d8c649ff28..4d2dcdae68 100644 --- a/setup/doctype/company/company.txt +++ b/setup/doctype/company/company.txt @@ -2,7 +2,7 @@ { "creation": "2013-02-27 09:38:05", "docstatus": 0, - "modified": "2013-03-18 16:34:04", + "modified": "2013-03-19 12:52:00", "modified_by": "Administrator", "owner": "Administrator" }, @@ -194,6 +194,13 @@ "label": "Stock Adjustment Account", "options": "Account" }, + { + "doctype": "DocField", + "fieldname": "expenses_included_in_valuation", + "fieldtype": "Link", + "label": "Expenses Included In Valuation", + "options": "Account" + }, { "doctype": "DocField", "fieldname": "col_break23", diff --git a/setup/doctype/global_defaults/global_defaults.txt b/setup/doctype/global_defaults/global_defaults.txt index 960da7e231..d75f1efe88 100644 --- a/setup/doctype/global_defaults/global_defaults.txt +++ b/setup/doctype/global_defaults/global_defaults.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-19 12:28:27", + "creation": "2013-02-21 14:54:43", "docstatus": 0, - "modified": "2013-02-20 14:09:00", + "modified": "2013-03-19 14:46:49", "modified_by": "Administrator", "owner": "Administrator" }, @@ -403,7 +403,7 @@ "fieldname": "emp_created_by", "fieldtype": "Select", "label": "Employee Records to be created by ", - "options": "\nNaming Series\nEmployee Number" + "options": "Naming Series\nEmployee Number" }, { "doctype": "DocField", diff --git a/stock/doctype/delivery_note/delivery_note.py b/stock/doctype/delivery_note/delivery_note.py index aef79390c2..62d5c5f8b2 100644 --- a/stock/doctype/delivery_note/delivery_note.py +++ b/stock/doctype/delivery_note/delivery_note.py @@ -400,12 +400,14 @@ class DocType(SellingController): if stock_ledger_entries: for item in self.doclist.get({"parentfield": "delivery_note_details"}): - buying_amount = get_buying_amount(item.item_code, item.warehouse, -1*item.qty, - self.doc.doctype, self.doc.name, item.name, stock_ledger_entries, - item_sales_bom) - item.buying_amount = buying_amount > 0 and buying_amount or 0 - webnotes.conn.set_value("Delivery Note Item", item.name, "buying_amount", - item.buying_amount) + if item.item_code in self.stock_items or \ + (item_sales_bom and item_sales_bom.get(item.item_code)): + buying_amount = get_buying_amount(item.item_code, item.warehouse, -1*item.qty, + self.doc.doctype, self.doc.name, item.name, stock_ledger_entries, + item_sales_bom) + item.buying_amount = buying_amount > 0 and buying_amount or 0 + webnotes.conn.set_value("Delivery Note Item", item.name, "buying_amount", + item.buying_amount) self.validate_warehouse() @@ -420,7 +422,7 @@ class DocType(SellingController): if not cint(webnotes.defaults.get_global_default("auto_inventory_accounting")): return - against_stock_account = "Stock Delivered But Not Billed - %s" % (self.company_abbr,) + against_stock_account = self.get_default_account("stock_delivered_but_not_billed") total_buying_amount = self.get_total_buying_amount() super(DocType, self).make_gl_entries(against_stock_account, -1*total_buying_amount) diff --git a/stock/doctype/purchase_receipt/purchase_receipt.py b/stock/doctype/purchase_receipt/purchase_receipt.py index e26c0a6d1e..e7d030d719 100644 --- a/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/stock/doctype/purchase_receipt/purchase_receipt.py @@ -318,7 +318,7 @@ class DocType(BuyingController): if not cint(webnotes.defaults.get_global_default("auto_inventory_accounting")): return - against_stock_account = "Stock Received But Not Billed - %s" % (self.company_abbr,) + against_stock_account = self.get_default_account("stock_received_but_not_billed") total_valuation_amount = self.get_total_valuation_amount() super(DocType, self).make_gl_entries(against_stock_account, total_valuation_amount) diff --git a/stock/doctype/stock_entry/stock_entry.js b/stock/doctype/stock_entry/stock_entry.js index 0a75914a62..2eb538c53d 100644 --- a/stock/doctype/stock_entry/stock_entry.js +++ b/stock/doctype/stock_entry/stock_entry.js @@ -18,6 +18,47 @@ wn.require("public/app/js/controllers/stock_controller.js"); wn.provide("erpnext.stock"); erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ + onload: function() { + this.set_default_account(); + }, + + set_default_account: function() { + var me = this; + + if (sys_defaults.auto_inventory_accounting && !this.frm.doc.expense_adjustment_account) { + if (this.frm.doc.purpose == "Sales Return") + account_for = "stock_delivered_but_not_billed"; + else if (this.frm.doc.purpose == "Purchase Return") + account_for = "stock_received_but_not_billed"; + else account_for = "stock_adjustment_account"; + + this.frm.call({ + method: "controllers.accounts_controller.get_default_account", + args: { + "account_for": account_for, + "company": this.frm.doc.company + }, + callback: function(r) { + if (!r.exc) me.frm.set_value("expense_adjustment_account", r.message); + } + }); + } + }, + + setup: function() { + var me = this; + if (sys_defaults.auto_inventory_accounting) { + this.frm.add_fetch("company", "expense_adjustment_account", "stock_adjustment_account"); + + this.frm.fields_dict["expense_adjustment_account"].get_query = function() { + return { + "query": "accounts.utils.get_account_list", + "filters": { "company": me.frm.doc.company } + } + } + } + }, + onload_post_render: function() { if(this.frm.doc.__islocal && (this.frm.doc.production_order || this.frm.doc.bom_no) && !getchildren('Stock Entry Detail', this.frm.doc.name, 'mtn_details').length) { @@ -234,11 +275,4 @@ cur_frm.cscript.validate_items = function(doc) { cur_frm.fields_dict.customer.get_query = erpnext.utils.customer_query; -cur_frm.fields_dict.supplier.get_query = erpnext.utils.supplier_query; - -cur_frm.fields_dict["expense_adjustment_account"].get_query = function(doc) { - return { - "query": "accounts.utils.get_account_list", - "filters": { "company": doc.company } - } -} \ No newline at end of file +cur_frm.fields_dict.supplier.get_query = erpnext.utils.supplier_query; \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/stock_reconciliation.js b/stock/doctype/stock_reconciliation/stock_reconciliation.js index fb4053ca9e..372166eaac 100644 --- a/stock/doctype/stock_reconciliation/stock_reconciliation.js +++ b/stock/doctype/stock_reconciliation/stock_reconciliation.js @@ -18,10 +18,44 @@ wn.require("public/app/js/controllers/stock_controller.js"); wn.provide("erpnext.stock"); erpnext.stock.StockReconciliation = erpnext.stock.StockController.extend({ - setup: function() { - this.frm.add_fetch("company", "stock_adjustment_account", "expense_account"); + onload: function() { + this.set_default_expense_account(); }, + set_default_expense_account: function() { + var me = this; + + if (sys_defaults.auto_inventory_accounting && !this.frm.doc.expense_account) { + this.frm.call({ + method: "controllers.accounts_controller.get_default_account", + args: { + "account_for": "stock_adjustment_account", + "company": this.frm.doc.company + }, + callback: function(r) { + if (!r.exc) me.frm.set_value("expense_account", r.message); + } + }); + } + }, + + setup: function() { + var me = this; + + this.frm.add_fetch("company", "expense_account", "stock_adjustment_account"); + + this.frm.fields_dict["expense_account"].get_query = function() { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "Yes", + "debit_or_credit": "Debit", + "company": me.frm.doc.company + } + } + } + }, + refresh: function() { if(this.frm.doc.docstatus===0) { this.show_download_template(); @@ -126,15 +160,4 @@ erpnext.stock.StockReconciliation = erpnext.stock.StockController.extend({ }, }); -cur_frm.cscript = new erpnext.stock.StockReconciliation({frm: cur_frm}); - -cur_frm.fields_dict["expense_account"].get_query = function(doc) { - return { - "query": "accounts.utils.get_account_list", - "filters": { - "is_pl_account": "Yes", - "debit_or_credit": "Debit", - "company": doc.company - } - } -} \ No newline at end of file +cur_frm.cscript = new erpnext.stock.StockReconciliation({frm: cur_frm}); \ No newline at end of file From 9bddd836045d028087d2480e299e52a29003317f Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 19 Mar 2013 18:40:35 +0530 Subject: [PATCH 224/982] fix in global defaults --- setup/doctype/global_defaults/global_defaults.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/doctype/global_defaults/global_defaults.py b/setup/doctype/global_defaults/global_defaults.py index 6f3ab4a71d..8d94a03aa5 100644 --- a/setup/doctype/global_defaults/global_defaults.py +++ b/setup/doctype/global_defaults/global_defaults.py @@ -43,6 +43,7 @@ keydict = { 'maintain_same_rate' : 'maintain_same_rate', 'session_expiry': 'session_expiry', 'disable_rounded_total': 'disable_rounded_total', + "update_stock": "update_stock", } class DocType: From e31d64ffe1ab2845aa389ffa6fafca45fefa7ddb Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 19 Mar 2013 18:42:29 +0530 Subject: [PATCH 225/982] save global defaults --- patches/patch_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patches/patch_list.py b/patches/patch_list.py index 236ef45fd2..9c0d9b8199 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -214,4 +214,5 @@ patch_list = [ "patches.march_2013.p04_pos_update_stock_check", "patches.march_2013.p05_payment_reconciliation", "patches.march_2013.p06_remove_sales_purchase_return_tool", + "execute:webnotes.bean('Global Defaults').save()" ] \ No newline at end of file From 8803df04ccc9ed1cf39d104d75bcd4e9f41926c1 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 19 Mar 2013 18:53:00 +0530 Subject: [PATCH 226/982] aii: get_query for default account in company --- setup/doctype/company/company.js | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/setup/doctype/company/company.js b/setup/doctype/company/company.js index a84bbc9714..a89882347e 100644 --- a/setup/doctype/company/company.js +++ b/setup/doctype/company/company.js @@ -58,3 +58,43 @@ cur_frm.fields_dict.receivables_group.get_query = function(doc) { cur_frm.fields_dict.payables_group.get_query = function(doc) { return 'SELECT `tabAccount`.name FROM `tabAccount` WHERE `tabAccount`.company = "'+doc.name+'" AND `tabAccount`.group_or_ledger = "Group" AND `tabAccount`.docstatus != 2 AND `tabAccount`.%(key)s LIKE "%s" ORDER BY `tabAccount`.name LIMIT 50'; } + + +cur_frm.fields_dict["stock_in_hand_account"].get_query = function(doc) { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "No", + "debit_or_credit": "Debit", + "company": doc.name + } + } +} + +cur_frm.fields_dict["stock_adjustment_account"].get_query = function(doc) { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "Yes", + "debit_or_credit": "Debit", + "company": doc.name + } + } +} + +cur_frm.fields_dict["expenses_included_in_valuation"].get_query = + cur_frm.fields_dict["stock_adjustment_account"].get_query; + +cur_frm.fields_dict["stock_delivered_but_not_billed"].get_query = + cur_frm.fields_dict["stock_in_hand_account"].get_query; + +cur_frm.fields_dict["stock_received_but_not_billed"].get_query = function(doc) { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "No", + "debit_or_credit": "Credit", + "company": doc.name + } + } +} \ No newline at end of file From 09957b61c8ab8f35716de0c4dd37676dfd9269ba Mon Sep 17 00:00:00 2001 From: Akhilesh Darjee Date: Wed, 20 Mar 2013 10:21:51 +0530 Subject: [PATCH 227/982] Dropbox upload chunked fixed. --- setup/doctype/backup_manager/backup_dropbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/doctype/backup_manager/backup_dropbox.py b/setup/doctype/backup_manager/backup_dropbox.py index 2c7fda6ca9..eb31a96c99 100644 --- a/setup/doctype/backup_manager/backup_dropbox.py +++ b/setup/doctype/backup_manager/backup_dropbox.py @@ -112,7 +112,7 @@ def upload_file_to_dropbox(filename, folder, dropbox_client): while uploader.offset < size: try: uploader.upload_chunked() - finish(folder + '/' + os.path.basename(filename), overwrite='True') + uploader.finish(folder + '/' + os.path.basename(filename), overwrite='True') except rest.ErrorResponse, e: pass else: From 4ff94e389e45c712a52bde1cac325b62e22d3541 Mon Sep 17 00:00:00 2001 From: Akhilesh Darjee Date: Wed, 20 Mar 2013 11:20:47 +0530 Subject: [PATCH 228/982] dropbox chunked uploader fixed. --- setup/doctype/backup_manager/backup_dropbox.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/setup/doctype/backup_manager/backup_dropbox.py b/setup/doctype/backup_manager/backup_dropbox.py index eb31a96c99..8cefebfce8 100644 --- a/setup/doctype/backup_manager/backup_dropbox.py +++ b/setup/doctype/backup_manager/backup_dropbox.py @@ -64,6 +64,7 @@ def backup_to_dropbox(): from dropbox import client, session, rest from conf import dropbox_access_key, dropbox_secret_key from webnotes.utils.backups import new_backup + found = False if not webnotes.conn: webnotes.connect() @@ -81,15 +82,14 @@ def backup_to_dropbox(): upload_file_to_dropbox(filename, "database", dropbox_client) response = dropbox_client.metadata("/files") - # upload files to files folder - filename = os.path.join(get_base_path(), "public", "files") - for filename in os.listdir(filename): - found = False + path = os.path.join(get_base_path(), "public", "files") + for files in os.listdir(path): + filename = path + "/" + files for file_metadata in response["contents"]: - if filename==os.path.basename(file_metadata["path"]): - if os.stat(filename).st_size==file_metadata["bytes"]: - found=True + if os.path.basename(filename)==os.path.basename(file_metadata["path"]) and os.stat(filename).st_size==int(file_metadata["bytes"]): + found=True + break if not found: upload_file_to_dropbox(os.path.join(get_base_path(),"public", "files", filename), "files", dropbox_client) From 6f7531813411af3dfda736f06585dff2ef00d20c Mon Sep 17 00:00:00 2001 From: Saurabh Date: Wed, 20 Mar 2013 12:55:28 +0530 Subject: [PATCH 229/982] no -ve balance accepted in sales and purchase invoice --- controllers/accounts_controller.py | 4 ++++ controllers/buying_controller.py | 5 +++-- controllers/selling_controller.py | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/controllers/accounts_controller.py b/controllers/accounts_controller.py index 576921a530..cd40d61956 100644 --- a/controllers/accounts_controller.py +++ b/controllers/accounts_controller.py @@ -21,6 +21,10 @@ from webnotes.utils import flt from utilities.transaction_base import TransactionBase class AccountsController(TransactionBase): + def validate(self): + if self.meta.get_field("grand_total"): + self.validate_value("grand_total", ">=", 0) + def get_gl_dict(self, args, cancel=None): """this method populates the common properties of a gl entry record""" if cancel is None: diff --git a/controllers/buying_controller.py b/controllers/buying_controller.py index 2f3128c98c..0509de0074 100644 --- a/controllers/buying_controller.py +++ b/controllers/buying_controller.py @@ -27,7 +27,8 @@ from webnotes.model.utils import round_floats_in_doc from controllers.accounts_controller import AccountsController class BuyingController(AccountsController): - def validate(self): + def validate(self): + super(BuyingController, self).validate() if self.meta.get_field("currency"): self.company_currency = get_company_currency(self.doc.company) self.validate_conversion_rate("currency", "conversion_rate") @@ -37,7 +38,7 @@ class BuyingController(AccountsController): # IMPORTANT: enable this only when client side code is similar to this one # self.calculate_taxes_and_totals() - + # set total in words self.set_total_in_words() diff --git a/controllers/selling_controller.py b/controllers/selling_controller.py index 40606c3198..9db8f4acad 100644 --- a/controllers/selling_controller.py +++ b/controllers/selling_controller.py @@ -23,6 +23,7 @@ from controllers.accounts_controller import AccountsController class SellingController(AccountsController): def validate(self): + super(SellingController, self).validate() self.set_total_in_words() def set_total_in_words(self): From 3abf67cf5e1839fb5bb66f8fa868741e4ea2f154 Mon Sep 17 00:00:00 2001 From: Akhilesh Darjee Date: Wed, 20 Mar 2013 13:25:28 +0530 Subject: [PATCH 230/982] dropbox and googledrive problems fixed --- .../doctype/backup_manager/backup_dropbox.py | 15 ++++++------- .../backup_manager/backup_googledrive.py | 22 +++++++++---------- 2 files changed, 17 insertions(+), 20 deletions(-) diff --git a/setup/doctype/backup_manager/backup_dropbox.py b/setup/doctype/backup_manager/backup_dropbox.py index 8cefebfce8..fc73d87452 100644 --- a/setup/doctype/backup_manager/backup_dropbox.py +++ b/setup/doctype/backup_manager/backup_dropbox.py @@ -64,7 +64,6 @@ def backup_to_dropbox(): from dropbox import client, session, rest from conf import dropbox_access_key, dropbox_secret_key from webnotes.utils.backups import new_backup - found = False if not webnotes.conn: webnotes.connect() @@ -84,15 +83,15 @@ def backup_to_dropbox(): response = dropbox_client.metadata("/files") # upload files to files folder path = os.path.join(get_base_path(), "public", "files") - for files in os.listdir(path): - filename = path + "/" + files + for filename in os.listdir(path): + found = False + filepath = os.path.join(path, filename) for file_metadata in response["contents"]: - if os.path.basename(filename)==os.path.basename(file_metadata["path"]) and os.stat(filename).st_size==int(file_metadata["bytes"]): - found=True + if os.path.basename(filepath) == os.path.basename(file_metadata["path"]) and os.stat(filepath).st_size == int(file_metadata["bytes"]): + found = True break - if not found: - upload_file_to_dropbox(os.path.join(get_base_path(),"public", "files", filename), "files", dropbox_client) + upload_file_to_dropbox(filepath, "files", dropbox_client) def get_dropbox_session(): from dropbox import session @@ -112,7 +111,7 @@ def upload_file_to_dropbox(filename, folder, dropbox_client): while uploader.offset < size: try: uploader.upload_chunked() - uploader.finish(folder + '/' + os.path.basename(filename), overwrite='True') + uploader.finish(os.path.join(folder, os.path.basename(filename)), overwrite='True') except rest.ErrorResponse, e: pass else: diff --git a/setup/doctype/backup_manager/backup_googledrive.py b/setup/doctype/backup_manager/backup_googledrive.py index c794672de5..c2c081c147 100644 --- a/setup/doctype/backup_manager/backup_googledrive.py +++ b/setup/doctype/backup_manager/backup_googledrive.py @@ -51,8 +51,6 @@ def upload_files(name, mimetype, service, folder_id): def backup_to_gdrive(): from webnotes.utils.backups import new_backup - found_database = False - found_files = False if not webnotes.conn: webnotes.connect() flow = get_gdrive_flow() @@ -73,10 +71,11 @@ def backup_to_gdrive(): # upload files to files folder path = os.path.join(get_base_path(), "public", "files") - for files in os.listdir(path): - filename = path + "/" + files - ext = filename.split('.')[-1] - size = os.path.getsize(filename) + for filename in os.listdir(path): + found = False + filepath = os.path.join(path, filename) + ext = filepath.split('.')[-1] + size = os.path.getsize(filepath) if ext == 'gz' or ext == 'gzip': mimetype = 'application/x-gzip' else: @@ -88,11 +87,11 @@ def backup_to_gdrive(): **param).execute() for child in children.get('items', []): file = drive_service.files().get(fileId=child['id']).execute() - if files == file['title'] and size == int(file['fileSize']): - found_files = True + if filename == file['title'] and size == int(file['fileSize']): + found = True break - if not found_files: - upload_files(filename, mimetype, drive_service, webnotes.conn.get_value("Backup Manager", None, "files_folder_id")) + if not found: + upload_files(filepath, mimetype, drive_service, webnotes.conn.get_value("Backup Manager", None, "files_folder_id")) def get_gdrive_flow(): from oauth2client.client import OAuth2WebServerFlow @@ -106,10 +105,9 @@ def get_gdrive_flow(): # + "?cmd=setup.doctype.backup_manager.backup_googledrive.googledrive_callback" # for installed apps since google does not support subdomains - redirect_uri = "urn:ietf:wg:oauth:2.0:oob" flow = OAuth2WebServerFlow(conf.gdrive_client_id, conf.gdrive_client_secret, - "https://www.googleapis.com/auth/drive", redirect_uri) + "https://www.googleapis.com/auth/drive", conf.gdrive_redirect_url) return flow @webnotes.whitelist() From ba9ecaeef791e8e03ce565b63c7248c85c993803 Mon Sep 17 00:00:00 2001 From: Akhilesh Darjee Date: Wed, 20 Mar 2013 13:47:17 +0530 Subject: [PATCH 231/982] backup dropbox and googledrive problems fixed. --- setup/doctype/backup_manager/backup_dropbox.py | 2 +- setup/doctype/backup_manager/backup_googledrive.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/doctype/backup_manager/backup_dropbox.py b/setup/doctype/backup_manager/backup_dropbox.py index fc73d87452..659af68aa6 100644 --- a/setup/doctype/backup_manager/backup_dropbox.py +++ b/setup/doctype/backup_manager/backup_dropbox.py @@ -115,7 +115,7 @@ def upload_file_to_dropbox(filename, folder, dropbox_client): except rest.ErrorResponse, e: pass else: - response = dropbox_client.put_file(folder + "/" + os.path.basename(filename), f, overwrite=True) + response = dropbox_client.put_file(os.path.join(folder, os.path.basename(filename)), f, overwrite=True) if __name__=="__main__": backup_to_dropbox() \ No newline at end of file diff --git a/setup/doctype/backup_manager/backup_googledrive.py b/setup/doctype/backup_manager/backup_googledrive.py index c2c081c147..0e8d52a108 100644 --- a/setup/doctype/backup_manager/backup_googledrive.py +++ b/setup/doctype/backup_manager/backup_googledrive.py @@ -74,7 +74,7 @@ def backup_to_gdrive(): for filename in os.listdir(path): found = False filepath = os.path.join(path, filename) - ext = filepath.split('.')[-1] + ext = filename.split('.')[-1] size = os.path.getsize(filepath) if ext == 'gz' or ext == 'gzip': mimetype = 'application/x-gzip' From 9c02b81cdd02bb32b47b45f7d6821b9ef1dc930f Mon Sep 17 00:00:00 2001 From: Saurabh Date: Wed, 20 Mar 2013 13:51:43 +0530 Subject: [PATCH 232/982] merged backup dropbox file --- setup/doctype/backup_manager/backup_dropbox.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup/doctype/backup_manager/backup_dropbox.py b/setup/doctype/backup_manager/backup_dropbox.py index b66880305e..2c7fda6ca9 100644 --- a/setup/doctype/backup_manager/backup_dropbox.py +++ b/setup/doctype/backup_manager/backup_dropbox.py @@ -86,8 +86,6 @@ def backup_to_dropbox(): filename = os.path.join(get_base_path(), "public", "files") for filename in os.listdir(filename): found = False - pth=path1+'/'+filename - size=os.stat(pth).st_size for file_metadata in response["contents"]: if filename==os.path.basename(file_metadata["path"]): if os.stat(filename).st_size==file_metadata["bytes"]: @@ -121,4 +119,4 @@ def upload_file_to_dropbox(filename, folder, dropbox_client): response = dropbox_client.put_file(folder + "/" + os.path.basename(filename), f, overwrite=True) if __name__=="__main__": - backup_to_dropbox() + backup_to_dropbox() \ No newline at end of file From f848b8bafc07be0d5123014fff3bc8251f50010c Mon Sep 17 00:00:00 2001 From: Saurabh Date: Wed, 20 Mar 2013 13:55:08 +0530 Subject: [PATCH 233/982] merged backup manager python file --- setup/doctype/backup_manager/backup_manager.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup/doctype/backup_manager/backup_manager.py b/setup/doctype/backup_manager/backup_manager.py index 69de823df1..213aa85500 100644 --- a/setup/doctype/backup_manager/backup_manager.py +++ b/setup/doctype/backup_manager/backup_manager.py @@ -30,7 +30,6 @@ def take_backups_dropbox(): backup_to_dropbox() send_email(True, "Dropbox") except Exception, e: - webnotes.errprint(e) send_email(False, "Dropbox", e) #backup to gdrive @@ -56,10 +55,9 @@ def send_email(success, service_name, error_status=None): failed.

    Error message: %s

    Please contact your system manager for more information.

    -

    Detailed Error Trace: %s

    """ % \ - (service_name, error_status, getTraceback().replace("\n", "
    ")) + """ % (service_name, error_status) # email system managers from webnotes.utils.email_lib import sendmail sendmail(webnotes.conn.get_value("Backup Manager", None, "send_notifications_to").split(","), - subject=subject, msg=message) + subject=subject, msg=message) \ No newline at end of file From 4e7a58608ffa55dcf75021a2daa99eba3ae0b087 Mon Sep 17 00:00:00 2001 From: Akhilesh Darjee Date: Wed, 20 Mar 2013 16:33:02 +0530 Subject: [PATCH 234/982] google drive redirect url fixed. --- setup/doctype/backup_manager/backup_googledrive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/doctype/backup_manager/backup_googledrive.py b/setup/doctype/backup_manager/backup_googledrive.py index 0e8d52a108..a767b3ae4e 100644 --- a/setup/doctype/backup_manager/backup_googledrive.py +++ b/setup/doctype/backup_manager/backup_googledrive.py @@ -107,7 +107,7 @@ def get_gdrive_flow(): # for installed apps since google does not support subdomains flow = OAuth2WebServerFlow(conf.gdrive_client_id, conf.gdrive_client_secret, - "https://www.googleapis.com/auth/drive", conf.gdrive_redirect_url) + "https://www.googleapis.com/auth/drive", 'urn:ietf:wg:oauth:2.0:oob') return flow @webnotes.whitelist() From 7da72dd449670590892388d43173b65c64734dc7 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 20 Mar 2013 17:00:41 +0530 Subject: [PATCH 235/982] unlink against voucher in jv when Purchase Invoice, Sales Invoice or Journal Voucher are cancelled --- .../journal_voucher/journal_voucher.py | 3 + .../journal_voucher/test_journal_voucher.py | 85 ++++++++++++++++++- .../purchase_invoice/purchase_invoice.py | 11 +-- .../purchase_invoice/test_purchase_invoice.py | 36 ++++++++ .../purchase_invoice_advance.txt | 6 +- .../doctype/sales_invoice/sales_invoice.py | 16 ++-- .../sales_invoice/test_sales_invoice.py | 37 ++++++++ accounts/utils.py | 18 +++- 8 files changed, 185 insertions(+), 27 deletions(-) diff --git a/accounts/doctype/journal_voucher/journal_voucher.py b/accounts/doctype/journal_voucher/journal_voucher.py index 2acf08efd6..f4bd55cdbf 100644 --- a/accounts/doctype/journal_voucher/journal_voucher.py +++ b/accounts/doctype/journal_voucher/journal_voucher.py @@ -63,6 +63,9 @@ class DocType(AccountsController): self.make_gl_entries() def on_cancel(self): + from accounts.utils import remove_against_link_from_jv + remove_against_link_from_jv(self.doc.doctype, self.doc.name, "against_jv") + self.make_gl_entries(cancel=1) def validate_debit_credit(self): diff --git a/accounts/doctype/journal_voucher/test_journal_voucher.py b/accounts/doctype/journal_voucher/test_journal_voucher.py index bb846d1634..7cfeb595d8 100644 --- a/accounts/doctype/journal_voucher/test_journal_voucher.py +++ b/accounts/doctype/journal_voucher/test_journal_voucher.py @@ -19,8 +19,34 @@ from __future__ import unicode_literals import unittest import webnotes -test_records = [[ - { +class TestJournalVoucher(unittest.TestCase): + def test_journal_voucher_with_against_jv(self): + jv_invoice = webnotes.bean(copy=test_records[2]) + jv_invoice.insert() + jv_invoice.submit() + + self.assertTrue(not webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_jv=%s""", jv_invoice.doc.name)) + + jv_payment = webnotes.bean(copy=test_records[0]) + jv_payment.doclist[1].against_jv = jv_invoice.doc.name + jv_payment.insert() + jv_payment.submit() + + self.assertTrue(webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_jv=%s""", jv_invoice.doc.name)) + + self.assertTrue(webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_jv=%s and credit=400""", jv_invoice.doc.name)) + + # cancel jv_invoice + jv_invoice.cancel() + + self.assertTrue(not webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_jv=%s""", jv_invoice.doc.name)) + +test_records = [ + [{ "company": "_Test Company", "doctype": "Journal Voucher", "fiscal_year": "_Test Fiscal Year 2013", @@ -44,8 +70,59 @@ test_records = [[ "debit": 400.0, "credit": 0.0, "parentfield": "entries" - } -]] + }], + [{ + "company": "_Test Company", + "doctype": "Journal Voucher", + "fiscal_year": "_Test Fiscal Year 2013", + "naming_series": "_T-Journal Voucher-", + "posting_date": "2013-02-14", + "user_remark": "test", + "voucher_type": "Bank Voucher", + "cheque_no": "33", + "cheque_date": "2013-02-14" + }, + { + "account": "_Test Supplier - _TC", + "doctype": "Journal Voucher Detail", + "credit": 0.0, + "debit": 400.0, + "parentfield": "entries" + }, + { + "account": "_Test Account Bank Account - _TC", + "doctype": "Journal Voucher Detail", + "debit": 0.0, + "credit": 400.0, + "parentfield": "entries" + }], + [{ + "company": "_Test Company", + "doctype": "Journal Voucher", + "fiscal_year": "_Test Fiscal Year 2013", + "naming_series": "_T-Journal Voucher-", + "posting_date": "2013-02-14", + "user_remark": "test", + "voucher_type": "Bank Voucher", + "cheque_no": "33", + "cheque_date": "2013-02-14" + }, + { + "account": "_Test Customer - _TC", + "doctype": "Journal Voucher Detail", + "credit": 0.0, + "debit": 400.0, + "parentfield": "entries" + }, + { + "account": "Sales - _TC", + "doctype": "Journal Voucher Detail", + "credit": 400.0, + "debit": 0.0, + "parentfield": "entries", + "cost_center": "_Test Cost Center - _TC" + }], +] diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.py b/accounts/doctype/purchase_invoice/purchase_invoice.py index b56e2ace10..f535d56e60 100644 --- a/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/purchase_invoice.py @@ -507,18 +507,13 @@ class DocType(BuyingController): if gl_entries: make_gl_entries(gl_entries, cancel=is_cancel) - def check_next_docstatus(self): - submit_jv = sql("select t1.name from `tabJournal Voucher` t1,`tabJournal Voucher Detail` t2 where t1.name = t2.parent and t2.against_voucher = '%s' and t1.docstatus = 1" % (self.doc.name)) - if submit_jv: - msgprint("Journal Voucher : " + cstr(submit_jv[0][0]) + " has been created against " + cstr(self.doc.doctype) + ". So " + cstr(self.doc.doctype) + " cannot be Cancelled.") - raise Exception, "Validation Error." - def on_cancel(self): - self.check_next_docstatus() + from accounts.utils import remove_against_link_from_jv + remove_against_link_from_jv(self.doc.doctype, self.doc.name, "against_voucher") self.make_gl_entries(is_cancel=1) get_obj(dt = 'Purchase Common').update_prevdoc_detail(self, is_submit = 0) - + def on_update(self): pass diff --git a/accounts/doctype/purchase_invoice/test_purchase_invoice.py b/accounts/doctype/purchase_invoice/test_purchase_invoice.py index b9f7ec928b..6d9cfca048 100644 --- a/accounts/doctype/purchase_invoice/test_purchase_invoice.py +++ b/accounts/doctype/purchase_invoice/test_purchase_invoice.py @@ -115,6 +115,42 @@ class TestPurchaseInvoice(unittest.TestCase): for i, item in enumerate(wrapper.doclist.get({"parentfield": "entries"})): self.assertEqual(item.item_code, expected_values[i][0]) self.assertEqual(item.item_tax_amount, expected_values[i][1]) + + def test_purchase_invoice_with_advance(self): + from accounts.doctype.journal_voucher.test_journal_voucher \ + import test_records as jv_test_records + + jv = webnotes.bean(copy=jv_test_records[1]) + jv.insert() + jv.submit() + + pi = webnotes.bean(copy=test_records[0]) + pi.doclist.append({ + "doctype": "Purchase Invoice Advance", + "parentfield": "advance_allocation_details", + "journal_voucher": jv.doc.name, + "jv_detail_no": jv.doclist[1].name, + "advance_amount": 400, + "allocated_amount": 300, + "remarks": jv.doc.remark + }) + pi.run_method("calculate_taxes_and_totals") + pi.insert() + pi.submit() + pi.load_from_db() + + self.assertTrue(webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_voucher=%s""", pi.doc.name)) + + self.assertTrue(webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_voucher=%s and debit=300""", pi.doc.name)) + + self.assertEqual(pi.doc.outstanding_amount, 1212.30) + + pi.cancel() + + self.assertTrue(not webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_voucher=%s""", pi.doc.name)) test_records = [ [ diff --git a/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.txt b/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.txt index 201bb53f03..6b31684029 100644 --- a/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.txt +++ b/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-22 01:27:40", + "creation": "2013-03-08 15:36:46", "docstatus": 0, - "modified": "2013-03-07 07:03:26", + "modified": "2013-03-20 16:52:12", "modified_by": "Administrator", "owner": "Administrator" }, @@ -40,7 +40,7 @@ { "doctype": "DocField", "fieldname": "jv_detail_no", - "fieldtype": "Date", + "fieldtype": "Data", "hidden": 1, "label": "Journal Voucher Detail No", "oldfieldname": "jv_detail_no", diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index 3f32a47db0..f29c2e9b6c 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -127,11 +127,14 @@ class DocType(SellingController): sales_com_obj = get_obj(dt = 'Sales Common') sales_com_obj.check_stop_sales_order(self) - self.check_next_docstatus() + + from accounts.utils import remove_against_link_from_jv + remove_against_link_from_jv(self.doc.doctype, self.doc.name, "against_invoice") + sales_com_obj.update_prevdoc_detail(0, self) self.make_gl_entries() - + def on_update_after_submit(self): self.validate_recurring_invoice() self.convert_to_recurring() @@ -399,8 +402,7 @@ class DocType(SellingController): if lst: from accounts.utils import reconcile_against_document reconcile_against_document(lst) - - + def validate_customer(self): """ Validate customer name with SO and DN""" for d in getlist(self.doclist,'entries'): @@ -830,12 +832,6 @@ class DocType(SellingController): grand_total = %s where invoice_no = %s and parent = %s""", (self.doc.name, self.doc.amended_from, self.doc.c_form_no)) - def check_next_docstatus(self): - submit_jv = webnotes.conn.sql("select t1.name from `tabJournal Voucher` t1,`tabJournal Voucher Detail` t2 where t1.name = t2.parent and t2.against_invoice = '%s' and t1.docstatus = 1" % (self.doc.name)) - if submit_jv: - msgprint("Journal Voucher : " + cstr(submit_jv[0][0]) + " has been created against " + cstr(self.doc.doctype) + ". So " + cstr(self.doc.doctype) + " cannot be Cancelled.") - raise Exception, "Validation Error." - @property def meta(self): if not hasattr(self, "_meta"): diff --git a/accounts/doctype/sales_invoice/test_sales_invoice.py b/accounts/doctype/sales_invoice/test_sales_invoice.py index 91c0622cee..b63642c643 100644 --- a/accounts/doctype/sales_invoice/test_sales_invoice.py +++ b/accounts/doctype/sales_invoice/test_sales_invoice.py @@ -281,6 +281,7 @@ class TestSalesInvoice(unittest.TestCase): return dn def _insert_pos_settings(self): + webnotes.conn.sql("""delete from `tabPOS Setting`""") ps = webnotes.bean([ { "cash_bank_account": "_Test Account Bank Account - _TC", @@ -297,6 +298,42 @@ class TestSalesInvoice(unittest.TestCase): ]) ps.insert() + def test_sales_invoice_with_advance(self): + from accounts.doctype.journal_voucher.test_journal_voucher \ + import test_records as jv_test_records + + jv = webnotes.bean(copy=jv_test_records[0]) + jv.insert() + jv.submit() + + si = webnotes.bean(copy=test_records[0]) + si.doclist.append({ + "doctype": "Sales Invoice Advance", + "parentfield": "advance_adjustment_details", + "journal_voucher": jv.doc.name, + "jv_detail_no": jv.doclist[1].name, + "advance_amount": 400, + "allocated_amount": 300, + "remarks": jv.doc.remark + }) + si.insert() + si.submit() + si.load_from_db() + + self.assertTrue(webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_invoice=%s""", si.doc.name)) + + self.assertTrue(webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_invoice=%s and credit=300""", si.doc.name)) + + self.assertEqual(si.doc.outstanding_amount, 261.8) + + si.cancel() + + self.assertTrue(not webnotes.conn.sql("""select name from `tabJournal Voucher Detail` + where against_invoice=%s""", si.doc.name)) + + test_dependencies = ["Journal Voucher", "POS Setting"] test_records = [ diff --git a/accounts/utils.py b/accounts/utils.py index 14ceb4e99e..051cdd1b24 100644 --- a/accounts/utils.py +++ b/accounts/utils.py @@ -17,7 +17,7 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import nowdate, cstr, flt +from webnotes.utils import nowdate, cstr, flt, now from webnotes.model.doc import addchild from webnotes import msgprint, _ from webnotes.utils import formatdate @@ -233,4 +233,18 @@ def get_cost_center_list(doctype, txt, searchfield, start, page_len, filters): return webnotes.conn.sql("""select name, parent_cost_center from `tabCost Center` where docstatus < 2 %s and %s like %s order by name limit %s, %s""" % (conditions, searchfield, "%s", "%s", "%s"), - tuple(filter_values + ["%%%s%%" % txt, start, page_len])) \ No newline at end of file + tuple(filter_values + ["%%%s%%" % txt, start, page_len])) + +def remove_against_link_from_jv(ref_type, ref_no, against_field): + webnotes.conn.sql("""update `tabJournal Voucher Detail` set `%s`=null, + modified=%s, modified_by=%s + where `%s`=%s and docstatus < 2""" % (against_field, "%s", "%s", against_field, "%s"), + (now(), webnotes.session.user, ref_no)) + + webnotes.conn.sql("""update `tabGL Entry` + set against_voucher_type=null, against_voucher=null, + modified=%s, modified_by=%s + where against_voucher_type=%s and against_voucher=%s + and voucher_no != ifnull(against_voucher, "") + and ifnull(is_cancelled, "No")="No" """, + (now(), webnotes.session.user, ref_type, ref_no)) From 407331675f486186d2e26d23748c6af1ab667af1 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 20 Mar 2013 21:14:03 +0530 Subject: [PATCH 236/982] recurring invoice test cases, set period start date and period end date as first and last day of the month if previously so, else just add months --- .../doctype/fiscal_year/test_fiscal_year.py | 12 +- .../doctype/sales_invoice/sales_invoice.py | 72 +++++----- .../doctype/sales_invoice/sales_invoice.txt | 6 +- .../sales_invoice/test_sales_invoice.py | 135 ++++++++++++++++++ 4 files changed, 188 insertions(+), 37 deletions(-) diff --git a/accounts/doctype/fiscal_year/test_fiscal_year.py b/accounts/doctype/fiscal_year/test_fiscal_year.py index e031a194fe..b209b39b96 100644 --- a/accounts/doctype/fiscal_year/test_fiscal_year.py +++ b/accounts/doctype/fiscal_year/test_fiscal_year.py @@ -10,5 +10,15 @@ test_records = [ "doctype": "Fiscal Year", "year": "_Test Fiscal Year 2014", "year_start_date": "2014-01-01" - }] + }], + [{ + "doctype": "Fiscal Year", + "year": "_Test Fiscal Year 2015", + "year_start_date": "2015-01-01" + }], + [{ + "doctype": "Fiscal Year", + "year": "_Test Fiscal Year 2016", + "year_start_date": "2016-01-01" + }], ] \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/sales_invoice.py b/accounts/doctype/sales_invoice/sales_invoice.py index f29c2e9b6c..22ac8458a8 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.py +++ b/accounts/doctype/sales_invoice/sales_invoice.py @@ -17,7 +17,9 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import add_days, cint, cstr, date_diff, flt, getdate, nowdate +from webnotes.utils import add_days, cint, cstr, date_diff, flt, getdate, nowdate, \ + get_first_day, get_last_day + from webnotes.utils.email_lib import sendmail from webnotes.utils import comma_and from webnotes.model.doc import make_autoname @@ -891,25 +893,18 @@ class DocType(SellingController): next_date = get_next_date(self.doc.posting_date, month_map[self.doc.recurring_type], cint(self.doc.repeat_on_day_of_month)) + webnotes.conn.set(self.doc, 'next_date', next_date) def get_next_date(dt, mcount, day=None): - import datetime - month = getdate(dt).month + mcount - year = getdate(dt).year - if not day: - day = getdate(dt).day - if month > 12: - month, year = month-12, year+1 - try: - next_month_date = datetime.date(year, month, day) - except: - import calendar - last_day = calendar.monthrange(year, month)[1] - next_month_date = datetime.date(year, month, last_day) - return next_month_date.strftime("%Y-%m-%d") - -def manage_recurring_invoices(next_date=None): + dt = getdate(dt) + + from dateutil.relativedelta import relativedelta + dt += relativedelta(months=mcount, day=day) + + return dt + +def manage_recurring_invoices(next_date=None, commit=True): """ Create recurring invoices on specific date by copying the original one and notify the concerned people @@ -929,19 +924,22 @@ def manage_recurring_invoices(next_date=None): ref_wrapper = webnotes.bean('Sales Invoice', ref_invoice) new_invoice_wrapper = make_new_invoice(ref_wrapper, next_date) send_notification(new_invoice_wrapper) - webnotes.conn.commit() + if commit: + webnotes.conn.commit() except: - webnotes.conn.rollback() + if commit: + webnotes.conn.rollback() - webnotes.conn.begin() - webnotes.conn.sql("update `tabSales Invoice` set \ - convert_into_recurring_invoice = 0 where name = %s", ref_invoice) - notify_errors(ref_invoice, ref_wrapper.doc.owner) - webnotes.conn.commit() + webnotes.conn.begin() + webnotes.conn.sql("update `tabSales Invoice` set \ + convert_into_recurring_invoice = 0 where name = %s", ref_invoice) + notify_errors(ref_invoice, ref_wrapper.doc.owner) + webnotes.conn.commit() exception_list.append(webnotes.getTraceback()) finally: - webnotes.conn.begin() + if commit: + webnotes.conn.begin() if exception_list: exception_message = "\n\n".join([cstr(d) for d in exception_list]) @@ -953,19 +951,27 @@ def make_new_invoice(ref_wrapper, posting_date): new_invoice = clone(ref_wrapper) mcount = month_map[ref_wrapper.doc.recurring_type] - + + invoice_period_from_date = get_next_date(ref_wrapper.doc.invoice_period_from_date, mcount) + + # get last day of the month to maintain period if the from date is first day of its own month + # and to date is the last day of its own month + if (cstr(get_first_day(ref_wrapper.doc.invoice_period_from_date)) == \ + cstr(ref_wrapper.doc.invoice_period_from_date)) and \ + (cstr(get_last_day(ref_wrapper.doc.invoice_period_to_date)) == \ + cstr(ref_wrapper.doc.invoice_period_to_date)): + invoice_period_to_date = get_last_day(get_next_date(ref_wrapper.doc.invoice_period_to_date, + mcount)) + else: + invoice_period_to_date = get_next_date(ref_wrapper.doc.invoice_period_to_date, mcount) + new_invoice.doc.fields.update({ "posting_date": posting_date, "aging_date": posting_date, - "due_date": add_days(posting_date, cint(date_diff(ref_wrapper.doc.due_date, ref_wrapper.doc.posting_date))), - - "invoice_period_from_date": \ - get_next_date(ref_wrapper.doc.invoice_period_from_date, mcount), - - "invoice_period_to_date": \ - get_next_date(ref_wrapper.doc.invoice_period_to_date, mcount), + "invoice_period_from_date": invoice_period_from_date, + "invoice_period_to_date": invoice_period_to_date, "fiscal_year": get_fiscal_year(posting_date)[0], "owner": ref_wrapper.doc.owner, }) diff --git a/accounts/doctype/sales_invoice/sales_invoice.txt b/accounts/doctype/sales_invoice/sales_invoice.txt index 35710b4d49..462565c518 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.txt +++ b/accounts/doctype/sales_invoice/sales_invoice.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-03-12 11:56:25", + "creation": "2013-03-20 17:01:58", "docstatus": 0, - "modified": "2013-03-12 14:31:24", + "modified": "2013-03-20 19:17:38", "modified_by": "Administrator", "owner": "Administrator" }, @@ -1093,7 +1093,7 @@ "description": "The day of the month on which auto invoice will be generated e.g. 05, 28 etc ", "doctype": "DocField", "fieldname": "repeat_on_day_of_month", - "fieldtype": "Data", + "fieldtype": "Int", "label": "Repeat on Day of Month", "no_copy": 1, "print_hide": 1 diff --git a/accounts/doctype/sales_invoice/test_sales_invoice.py b/accounts/doctype/sales_invoice/test_sales_invoice.py index b63642c643..92feae8153 100644 --- a/accounts/doctype/sales_invoice/test_sales_invoice.py +++ b/accounts/doctype/sales_invoice/test_sales_invoice.py @@ -332,7 +332,142 @@ class TestSalesInvoice(unittest.TestCase): self.assertTrue(not webnotes.conn.sql("""select name from `tabJournal Voucher Detail` where against_invoice=%s""", si.doc.name)) + + def test_recurring_invoice(self): + from webnotes.utils import now_datetime, get_first_day, get_last_day, add_to_date + today = now_datetime().date() + base_si = webnotes.bean(copy=test_records[0]) + base_si.doc.fields.update({ + "convert_into_recurring_invoice": 1, + "recurring_type": "Monthly", + "notification_email_address": "test@example.com, test1@example.com, test2@example.com", + "repeat_on_day_of_month": today.day, + "posting_date": today, + "invoice_period_from_date": get_first_day(today), + "invoice_period_to_date": get_last_day(today) + }) + + # monthly + si1 = webnotes.bean(copy=base_si.doclist) + si1.insert() + si1.submit() + self._test_recurring_invoice(si1, True) + + # monthly without a first and last day period + si2 = webnotes.bean(copy=base_si.doclist) + si2.doc.fields.update({ + "invoice_period_from_date": today, + "invoice_period_to_date": add_to_date(today, days=30) + }) + si2.insert() + si2.submit() + self._test_recurring_invoice(si2, False) + + # quarterly + si3 = webnotes.bean(copy=base_si.doclist) + si3.doc.fields.update({ + "recurring_type": "Quarterly", + "invoice_period_from_date": get_first_day(today), + "invoice_period_to_date": get_last_day(add_to_date(today, months=3)) + }) + si3.insert() + si3.submit() + self._test_recurring_invoice(si3, True) + + # quarterly without a first and last day period + si4 = webnotes.bean(copy=base_si.doclist) + si4.doc.fields.update({ + "recurring_type": "Quarterly", + "invoice_period_from_date": today, + "invoice_period_to_date": add_to_date(today, months=3) + }) + si4.insert() + si4.submit() + self._test_recurring_invoice(si4, False) + + # yearly + si5 = webnotes.bean(copy=base_si.doclist) + si5.doc.fields.update({ + "recurring_type": "Yearly", + "invoice_period_from_date": get_first_day(today), + "invoice_period_to_date": get_last_day(add_to_date(today, years=1)) + }) + si5.insert() + si5.submit() + self._test_recurring_invoice(si5, True) + + # yearly without a first and last day period + si6 = webnotes.bean(copy=base_si.doclist) + si6.doc.fields.update({ + "recurring_type": "Yearly", + "invoice_period_from_date": today, + "invoice_period_to_date": add_to_date(today, years=1) + }) + si6.insert() + si6.submit() + self._test_recurring_invoice(si6, False) + + # change posting date but keep recuring day to be today + si7 = webnotes.bean(copy=base_si.doclist) + si7.doc.fields.update({ + "posting_date": add_to_date(today, days=-3) + }) + si7.insert() + si7.submit() + + # setting so that _test function works + si7.doc.posting_date = today + self._test_recurring_invoice(si7, True) + + def _test_recurring_invoice(self, base_si, first_and_last_day): + from webnotes.utils import add_months, get_last_day, getdate + from accounts.doctype.sales_invoice.sales_invoice import manage_recurring_invoices + + no_of_months = ({"Monthly": 1, "Quarterly": 3, "Yearly": 12})[base_si.doc.recurring_type] + + def _test(i): + self.assertEquals(i+1, webnotes.conn.sql("""select count(*) from `tabSales Invoice` + where recurring_id=%s and docstatus=1""", base_si.doc.recurring_id)[0][0]) + + next_date = add_months(base_si.doc.posting_date, no_of_months) + + manage_recurring_invoices(next_date=next_date, commit=False) + + recurred_invoices = webnotes.conn.sql("""select name from `tabSales Invoice` + where recurring_id=%s and docstatus=1 order by name desc""", base_si.doc.recurring_id) + + self.assertEquals(i+2, len(recurred_invoices)) + + new_si = webnotes.bean("Sales Invoice", recurred_invoices[0][0]) + + for fieldname in ["convert_into_recurring_invoice", "recurring_type", + "repeat_on_day_of_month", "notification_email_address"]: + self.assertEquals(base_si.doc.fields.get(fieldname), + new_si.doc.fields.get(fieldname)) + + self.assertEquals(new_si.doc.posting_date, unicode(next_date)) + + self.assertEquals(new_si.doc.invoice_period_from_date, + unicode(add_months(base_si.doc.invoice_period_from_date, no_of_months))) + + if first_and_last_day: + self.assertEquals(new_si.doc.invoice_period_to_date, + unicode(get_last_day(add_months(base_si.doc.invoice_period_to_date, + no_of_months)))) + else: + self.assertEquals(new_si.doc.invoice_period_to_date, + unicode(add_months(base_si.doc.invoice_period_to_date, no_of_months))) + + self.assertEquals(getdate(new_si.doc.posting_date).day, + base_si.doc.repeat_on_day_of_month) + + return new_si + + # if yearly, test 3 repetitions, else test 13 repetitions + count = no_of_months == 12 and 3 or 13 + for i in xrange(count): + base_si = _test(i) test_dependencies = ["Journal Voucher", "POS Setting"] From fadffcf5281ae75e2ef199daeedcec91c3d82208 Mon Sep 17 00:00:00 2001 From: Akhilesh Darjee Date: Thu, 21 Mar 2013 13:06:41 +0530 Subject: [PATCH 237/982] description added to 'Is Opening' and 'Aging Date' field --- .../journal_voucher/journal_voucher.txt | 37 ++++------ .../purchase_invoice/purchase_invoice.txt | 68 ++++++++++++------- .../doctype/sales_invoice/sales_invoice.txt | 41 +++++++++-- 3 files changed, 93 insertions(+), 53 deletions(-) diff --git a/accounts/doctype/journal_voucher/journal_voucher.txt b/accounts/doctype/journal_voucher/journal_voucher.txt index b36008e134..dc857c8ce1 100644 --- a/accounts/doctype/journal_voucher/journal_voucher.txt +++ b/accounts/doctype/journal_voucher/journal_voucher.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-30 12:49:46", + "creation": "2013-03-07 12:35:57", "docstatus": 0, - "modified": "2013-02-01 10:50:16", + "modified": "2013-03-21 13:02:27", "modified_by": "Administrator", "owner": "Administrator" }, @@ -24,6 +24,9 @@ "permlevel": 0 }, { + "amend": 1, + "cancel": 1, + "create": 1, "doctype": "DocPerm", "name": "__common__", "parent": "Journal Voucher", @@ -31,7 +34,9 @@ "parenttype": "DocType", "permlevel": 0, "read": 1, - "report": 1 + "report": 1, + "submit": 1, + "write": 1 }, { "doctype": "DocType", @@ -278,6 +283,7 @@ }, { "default": "No", + "description": "Considered as Opening Balance", "doctype": "DocField", "fieldname": "is_opening", "fieldtype": "Select", @@ -290,7 +296,7 @@ "search_index": 1 }, { - "description": "For opening invoice entry, this date will reflect in the period-wise aging report.", + "description": "Actual Posting Date", "doctype": "DocField", "fieldname": "aging_date", "fieldtype": "Date", @@ -444,30 +450,11 @@ "read_only": 1 }, { - "amend": 1, - "cancel": 1, - "create": 1, "doctype": "DocPerm", - "role": "Accounts User", - "submit": 1, - "write": 1 + "role": "Accounts Manager" }, { - "amend": 1, - "cancel": 1, - "create": 1, "doctype": "DocPerm", - "role": "Accounts Manager", - "submit": 1, - "write": 1 - }, - { - "amend": 0, - "cancel": 0, - "create": 0, - "doctype": "DocPerm", - "role": "Auditor", - "submit": 0, - "write": 0 + "role": "Accounts User" } ] \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/purchase_invoice.txt b/accounts/doctype/purchase_invoice/purchase_invoice.txt index 0c921b1a16..90af60f5f2 100755 --- a/accounts/doctype/purchase_invoice/purchase_invoice.txt +++ b/accounts/doctype/purchase_invoice/purchase_invoice.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-29 17:54:09", + "creation": "2013-03-07 13:16:13", "docstatus": 0, - "modified": "2013-01-29 18:25:24", + "modified": "2013-03-21 12:16:35", "modified_by": "Administrator", "owner": "Administrator" }, @@ -30,7 +30,6 @@ "parent": "Purchase Invoice", "parentfield": "permissions", "parenttype": "DocType", - "permlevel": 0, "read": 1, "report": 1 }, @@ -636,6 +635,7 @@ }, { "default": "No", + "description": "Considered as Opening Balance", "doctype": "DocField", "fieldname": "is_opening", "fieldtype": "Select", @@ -648,6 +648,7 @@ "search_index": 1 }, { + "description": "Actual Invoice Date", "doctype": "DocField", "fieldname": "aging_date", "fieldtype": "Date", @@ -764,31 +765,13 @@ "no_copy": 1, "print_hide": 1 }, - { - "amend": 1, - "cancel": 1, - "create": 1, - "doctype": "DocPerm", - "role": "Accounts User", - "submit": 1, - "write": 1 - }, - { - "amend": 0, - "cancel": 0, - "create": 1, - "doctype": "DocPerm", - "role": "Purchase User", - "submit": 0, - "write": 1 - }, { "amend": 0, "cancel": 0, "create": 0, "doctype": "DocPerm", - "match": "supplier", - "role": "Supplier", + "permlevel": 1, + "role": "Accounts Manager", "submit": 0, "write": 0 }, @@ -797,6 +780,7 @@ "cancel": 1, "create": 1, "doctype": "DocPerm", + "permlevel": 0, "role": "Accounts Manager", "submit": 1, "write": 1 @@ -806,8 +790,44 @@ "cancel": 0, "create": 0, "doctype": "DocPerm", - "role": "Auditor", + "permlevel": 1, + "role": "Accounts User", "submit": 0, "write": 0 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1, + "role": "Purchase User", + "submit": 0 + }, + { + "amend": 0, + "cancel": 0, + "create": 1, + "doctype": "DocPerm", + "permlevel": 0, + "role": "Purchase User", + "submit": 0, + "write": 1 + }, + { + "amend": 1, + "cancel": 1, + "create": 1, + "doctype": "DocPerm", + "permlevel": 0, + "role": "Accounts User", + "submit": 1, + "write": 1 + }, + { + "doctype": "DocPerm", + "match": "supplier", + "permlevel": 0, + "role": "Supplier" } ] \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/sales_invoice.txt b/accounts/doctype/sales_invoice/sales_invoice.txt index 35710b4d49..41a66b82e9 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.txt +++ b/accounts/doctype/sales_invoice/sales_invoice.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-03-12 11:56:25", + "creation": "2013-03-19 17:03:01", "docstatus": 0, - "modified": "2013-03-12 14:31:24", + "modified": "2013-03-21 12:14:57", "modified_by": "Administrator", "owner": "Administrator" }, @@ -30,7 +30,6 @@ "parent": "Sales Invoice", "parentfield": "permissions", "parenttype": "DocType", - "permlevel": 0, "read": 1, "report": 1 }, @@ -750,11 +749,12 @@ }, { "default": "No", + "description": "Considered as an Opening Balance", "doctype": "DocField", "fieldname": "is_opening", "fieldtype": "Select", "in_filter": 1, - "label": "Is Opening", + "label": "Is Opening Entry", "oldfieldname": "is_opening", "oldfieldtype": "Select", "options": "No\nYes", @@ -762,6 +762,7 @@ "search_index": 0 }, { + "description": "Actual Invoice Date", "doctype": "DocField", "fieldname": "aging_date", "fieldtype": "Date", @@ -1193,18 +1194,50 @@ "no_copy": 1, "print_hide": 1 }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1, + "role": "Accounts Manager", + "submit": 0, + "write": 0 + }, { "amend": 1, "cancel": 1, "create": 1, "doctype": "DocPerm", + "permlevel": 0, + "role": "Accounts Manager", + "submit": 1, + "write": 1 + }, + { + "amend": 1, + "cancel": 1, + "create": 1, + "doctype": "DocPerm", + "permlevel": 0, "role": "Accounts User", "submit": 1, "write": 1 }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1, + "role": "Accounts User", + "submit": 0, + "write": 0 + }, { "doctype": "DocPerm", "match": "customer", + "permlevel": 0, "role": "Customer" } ] \ No newline at end of file From e635a45be904c8cc62851e4825cbe28b4fbc47d8 Mon Sep 17 00:00:00 2001 From: mayur-patel Date: Thu, 21 Mar 2013 21:30:34 +1100 Subject: [PATCH 238/982] Added new default value with help of Anand Doshi. --- hr/doctype/employee/employee.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hr/doctype/employee/employee.py b/hr/doctype/employee/employee.py index 2bd7998159..16ecb6d2ed 100644 --- a/hr/doctype/employee/employee.py +++ b/hr/doctype/employee/employee.py @@ -17,7 +17,7 @@ from __future__ import unicode_literals import webnotes -from webnotes.utils import getdate, validate_email_add +from webnotes.utils import getdate, validate_email_add, cstr from webnotes.model.doc import make_autoname from webnotes import msgprint, _ @@ -71,7 +71,9 @@ class DocType: webnotes.conn.set_default("employee", self.doc.name, self.doc.user_id) webnotes.conn.set_default("employee_name", self.doc.employee_name, self.doc.user_id) webnotes.conn.set_default("company", self.doc.company, self.doc.user_id) - + if self.doc.reports_to: + webnotes.conn.set_default("leave_approver", webnotes.conn.get_value("Employee", self.doc.reports_to, "user_id"), self.doc.user_id) + def update_profile(self): # add employee role if missing if not "Employee" in webnotes.conn.sql_list("""select role from tabUserRole @@ -104,7 +106,7 @@ class DocType: fname, fid = file_args.split(",") if self.doc.image == fname: new_file_args = fname + "," + fid - file_list = profile_wrapper.doc.file_list.split("\n") + file_list = cstr(profile_wrapper.doc.file_list).split("\n") if new_file_args not in file_list: file_list += [new_file_args] profile_wrapper.doc.file_list = "\n".join(file_list) From bed19ac4d389eca69447b0d711690ef581cb1f53 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 21 Mar 2013 17:12:25 +0530 Subject: [PATCH 239/982] added website pages for orders, tickets and added sales invoice print format --- .../SalesInvoice/SalesInvoice.html | 137 ++++++++++++++++++ .../SalesInvoice/SalesInvoice.txt | 20 +++ public/js/website_utils.js | 3 +- selling/doctype/sales_common/sales_common.js | 3 +- selling/doctype/sales_order/sales_order.py | 18 ++- .../doctype/backup_manager/backup_dropbox.py | 2 +- .../global_defaults/global_defaults.py | 1 + .../global_defaults/global_defaults.txt | 24 ++- setup/doctype/item_group/item_group.txt | 39 +++-- stock/doctype/item/item.js | 14 ++ stock/doctype/item/item.txt | 57 +++++++- .../doctype/support_ticket/support_ticket.py | 9 +- website/css/website.css | 3 +- website/helpers/account.py | 23 --- website/templates/html/base.html | 15 +- website/templates/html/navbar.html | 62 +++----- website/templates/html/outer.html | 4 +- website/templates/html/page.html | 22 +-- website/templates/pages/account.html | 67 ++------- website/templates/pages/order.html | 12 ++ website/templates/pages/orders.html | 62 ++++++++ website/templates/pages/print.html | 5 +- website/templates/pages/profile.html | 9 +- website/templates/pages/tickets.html | 53 +++++++ 24 files changed, 490 insertions(+), 174 deletions(-) create mode 100644 accounts/Print Format/SalesInvoice/SalesInvoice.html create mode 100644 accounts/Print Format/SalesInvoice/SalesInvoice.txt delete mode 100644 website/helpers/account.py create mode 100644 website/templates/pages/order.html create mode 100644 website/templates/pages/orders.html create mode 100644 website/templates/pages/tickets.html diff --git a/accounts/Print Format/SalesInvoice/SalesInvoice.html b/accounts/Print Format/SalesInvoice/SalesInvoice.html new file mode 100644 index 0000000000..3e24a50f30 --- /dev/null +++ b/accounts/Print Format/SalesInvoice/SalesInvoice.html @@ -0,0 +1,137 @@ +{%- if doc.letter_head -%} + {{ webnotes.conn.get_value("Letter Head", doc.letter_head, "content") }} +{%- endif -%} + + +
    + + + + + + + + + + + + + {%- for row in doclist.get({"doctype":"Sales Invoice Item"}) %} + + + + + + + + + + {% endfor -%} + +
    SrItem NameDescriptionQtyUoMBasic RateAmount
    {{ row.idx }}{{ row.item_name }}{{ row.description }}{{ row.qty }}{{ row.stock_uom }}{{ utils.fmt_money(row.export_rate) }}{{ utils.fmt_money(row.export_amount) }}
    +
    + diff --git a/accounts/Print Format/SalesInvoice/SalesInvoice.txt b/accounts/Print Format/SalesInvoice/SalesInvoice.txt new file mode 100644 index 0000000000..d2b1cdbaf4 --- /dev/null +++ b/accounts/Print Format/SalesInvoice/SalesInvoice.txt @@ -0,0 +1,20 @@ +[ + { + "creation": "2013-03-21 15:24:28", + "docstatus": 0, + "modified": "2013-03-21 15:26:21", + "modified_by": "Administrator", + "owner": "Administrator" + }, + { + "doc_type": "Sales Invoice", + "doctype": "Print Format", + "module": "Accounts", + "name": "__common__", + "standard": "Yes" + }, + { + "doctype": "Print Format", + "name": "SalesInvoice" + } +] \ No newline at end of file diff --git a/public/js/website_utils.js b/public/js/website_utils.js index 65f7a69153..8462c3d98c 100644 --- a/public/js/website_utils.js +++ b/public/js/website_utils.js @@ -70,7 +70,8 @@ $(document).ready(function() { // update login var full_name = getCookie("full_name"); if(full_name) { - $("#user-tools").html(repl('%(full_name)s | \ + $("#user-tools").html(repl('%(full_name)s | \ + My Account | \ (%(count)s) | \ ', { full_name: full_name, diff --git a/selling/doctype/sales_common/sales_common.js b/selling/doctype/sales_common/sales_common.js index 867a711fe4..d34261d65e 100644 --- a/selling/doctype/sales_common/sales_common.js +++ b/selling/doctype/sales_common/sales_common.js @@ -310,7 +310,8 @@ cur_frm.cscript.barcode = function(doc, cdt, cdn) { var callback = function(r, rt) { cur_frm.cscript.item_code(doc, cdt, cdn); } - get_server_fields('get_barcode_details', d.barcode, cur_frm.cscript.fname, doc, cdt, cdn, 1, callback); + get_server_fields('get_barcode_details', d.barcode, cur_frm.cscript.fname, + doc, cdt, cdn, 1, callback); } cur_frm.fields_dict[cur_frm.cscript.fname].grid.get_field('batch_no').get_query = diff --git a/selling/doctype/sales_order/sales_order.py b/selling/doctype/sales_order/sales_order.py index 5009c4ee26..91b88a406e 100644 --- a/selling/doctype/sales_order/sales_order.py +++ b/selling/doctype/sales_order/sales_order.py @@ -352,4 +352,20 @@ class DocType(SellingController): return get_obj('Sales Common').get_item_list( self, is_stopped) def on_update(self): - pass \ No newline at end of file + pass + +@webnotes.whitelist() +def get_orders(): + # find customer id + customer = webnotes.conn.get_value("Contact", {"email_id": webnotes.session.user}, + "customer") + + if customer: + orders = webnotes.conn.sql("""select name, creation, currency from `tabSales Order` + where customer=%s""", customer, as_dict=1) + for order in orders: + order.items = webnotes.conn.sql("""select item_name, qty, export_rate, delivered_qty + from `tabSales Order Item` where parent=%s order by idx""", order.name, as_dict=1) + return orders + else: + return [] \ No newline at end of file diff --git a/setup/doctype/backup_manager/backup_dropbox.py b/setup/doctype/backup_manager/backup_dropbox.py index 3cc565ef70..ebadeabc6f 100644 --- a/setup/doctype/backup_manager/backup_dropbox.py +++ b/setup/doctype/backup_manager/backup_dropbox.py @@ -113,7 +113,7 @@ def upload_file_to_dropbox(filename, folder, dropbox_client): while uploader.offset < size: try: uploader.upload_chunked() - finish(folder + '/' + os.path.basename(filename), overwrite='True') + uploader.finish(folder + '/' + os.path.basename(filename), overwrite='True') except rest.ErrorResponse, e: pass else: diff --git a/setup/doctype/global_defaults/global_defaults.py b/setup/doctype/global_defaults/global_defaults.py index 6f3ab4a71d..8709ab8d81 100644 --- a/setup/doctype/global_defaults/global_defaults.py +++ b/setup/doctype/global_defaults/global_defaults.py @@ -21,6 +21,7 @@ import webnotes.defaults from webnotes.utils import cint keydict = { + "print_style": "print_style", "fiscal_year": "current_fiscal_year", 'company': 'default_company', 'currency': 'default_currency', diff --git a/setup/doctype/global_defaults/global_defaults.txt b/setup/doctype/global_defaults/global_defaults.txt index 960da7e231..27bc85716b 100644 --- a/setup/doctype/global_defaults/global_defaults.txt +++ b/setup/doctype/global_defaults/global_defaults.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-19 12:28:27", + "creation": "2013-02-21 12:28:24", "docstatus": 0, - "modified": "2013-02-20 14:09:00", + "modified": "2013-03-21 15:42:59", "modified_by": "Administrator", "owner": "Administrator" }, @@ -27,8 +27,6 @@ "permlevel": 0 }, { - "amend": 0, - "cancel": 0, "create": 1, "doctype": "DocPerm", "name": "__common__", @@ -59,6 +57,19 @@ "fieldtype": "Data", "label": "Session Expiry" }, + { + "doctype": "DocField", + "fieldname": "column_break_3", + "fieldtype": "Column Break" + }, + { + "description": "For Server Side Print Formats", + "doctype": "DocField", + "fieldname": "print_style", + "fieldtype": "Select", + "label": "Print Format Style", + "options": "Standard\nClassic\nModern\nSpartan" + }, { "doctype": "DocField", "fieldname": "company", @@ -417,6 +428,11 @@ "fieldtype": "Data", "label": "SMS Sender Name" }, + { + "amend": 0, + "cancel": 0, + "doctype": "DocPerm" + }, { "doctype": "DocPerm" } diff --git a/setup/doctype/item_group/item_group.txt b/setup/doctype/item_group/item_group.txt index 5976be6ce5..d9c6ffedda 100644 --- a/setup/doctype/item_group/item_group.txt +++ b/setup/doctype/item_group/item_group.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-10 16:34:23", + "creation": "2013-01-23 20:00:16", "docstatus": 0, - "modified": "2013-01-22 14:56:03", + "modified": "2013-03-20 15:09:28", "modified_by": "Administrator", "owner": "Administrator" }, @@ -123,6 +123,13 @@ "fieldtype": "Text Editor", "label": "Description" }, + { + "doctype": "DocField", + "fieldname": "item_website_specifications", + "fieldtype": "Table", + "label": "Item Website Specifications", + "options": "Item Website Specification" + }, { "doctype": "DocField", "fieldname": "lft", @@ -174,6 +181,20 @@ "no_copy": 1, "print_hide": 1 }, + { + "cancel": 1, + "create": 1, + "doctype": "DocPerm", + "role": "System Manager", + "write": 1 + }, + { + "cancel": 1, + "create": 1, + "doctype": "DocPerm", + "role": "Material Master Manager", + "write": 1 + }, { "amend": 0, "cancel": 0, @@ -189,19 +210,5 @@ "doctype": "DocPerm", "role": "Material User", "write": 0 - }, - { - "cancel": 1, - "create": 1, - "doctype": "DocPerm", - "role": "System Manager", - "write": 1 - }, - { - "cancel": 1, - "create": 1, - "doctype": "DocPerm", - "role": "Material Master Manager", - "write": 1 } ] \ No newline at end of file diff --git a/stock/doctype/item/item.js b/stock/doctype/item/item.js index 5b32a34c80..8b3e04484a 100644 --- a/stock/doctype/item/item.js +++ b/stock/doctype/item/item.js @@ -137,3 +137,17 @@ cur_frm.cscript.on_remove_attachment = function(doc) { + wn.meta.get_docfield(doc.doctype, "description_html").label); } }; + +cur_frm.cscript.copy_from_item_group = function(doc) { + wn.model.with_doc("Item Group", doc.item_group, function() { + $.each(wn.model.get("Item Website Specification", {parent:doc.item_group}), + function(i, d) { + var n = wn.model.add_child(doc, "Item Website Specification", + "item_website_specifications"); + n.label = d.label; + n.description = d.description; + } + ); + cur_frm.refresh(); + }); +} diff --git a/stock/doctype/item/item.txt b/stock/doctype/item/item.txt index 036b9d54f6..b7f7be45ad 100644 --- a/stock/doctype/item/item.txt +++ b/stock/doctype/item/item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-02-21 14:54:43", + "creation": "2013-03-07 15:53:11", "docstatus": 0, - "modified": "2013-03-06 16:02:47", + "modified": "2013-03-20 15:10:12", "modified_by": "Administrator", "owner": "Administrator" }, @@ -33,7 +33,6 @@ "parent": "Item", "parentfield": "permissions", "parenttype": "DocType", - "permlevel": 0, "read": 1, "report": 1, "submit": 0 @@ -785,6 +784,12 @@ "fieldname": "sb72", "fieldtype": "Section Break" }, + { + "doctype": "DocField", + "fieldname": "copy_from_item_group", + "fieldtype": "Button", + "label": "Copy From Item Group" + }, { "depends_on": "show_in_website", "doctype": "DocField", @@ -804,6 +809,24 @@ "cancel": 1, "create": 1, "doctype": "DocPerm", + "permlevel": 0, + "role": "System Manager", + "write": 1 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1, + "role": "Material Master Manager", + "write": 0 + }, + { + "cancel": 1, + "create": 1, + "doctype": "DocPerm", + "permlevel": 0, "role": "Material Master Manager", "write": 1 }, @@ -812,6 +835,15 @@ "cancel": 0, "create": 0, "doctype": "DocPerm", + "permlevel": 1, + "role": "System Manager" + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1, "role": "Material Manager", "write": 0 }, @@ -820,6 +852,25 @@ "cancel": 0, "create": 0, "doctype": "DocPerm", + "permlevel": 0, + "role": "Material Manager", + "write": 0 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 1, + "role": "Material User", + "write": 0 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "permlevel": 0, "role": "Material User", "write": 0 } diff --git a/support/doctype/support_ticket/support_ticket.py b/support/doctype/support_ticket/support_ticket.py index 170497dd7f..1fe2c2d9d4 100644 --- a/support/doctype/support_ticket/support_ticket.py +++ b/support/doctype/support_ticket/support_ticket.py @@ -70,4 +70,11 @@ def set_status(name, status): st = webnotes.bean("Support Ticket", name) st.doc.status = status st.save() - + +@webnotes.whitelist() +def get_tickets(): + tickets = webnotes.conn.sql("""select name, subject, status from + `tabSupport Ticket` where raised_by=%s order by modified desc""", + webnotes.session.user, as_dict=1) + return tickets + diff --git a/website/css/website.css b/website/css/website.css index dc5b9670b3..25e2c91ac2 100644 --- a/website/css/website.css +++ b/website/css/website.css @@ -2,11 +2,10 @@ div.outer { padding: 30px; margin: 30px -30px 10px -30px; min-height: 400px; - overflow: hidden; } .outer .navbar { - margin: -30px -30px 10px -30px; + margin: -30px -30px 20px -30px; } footer { diff --git a/website/helpers/account.py b/website/helpers/account.py deleted file mode 100644 index 2bab370720..0000000000 --- a/website/helpers/account.py +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright (c) 2012 Web Notes Technologies Pvt Ltd. -# License: GNU General Public License (v3). For more information see license.txt - -from __future__ import unicode_literals - -import webnotes -from webnotes.utils import cstr - -@webnotes.whitelist() -def get_orders(): - # find customer id - customer = webnotes.conn.get_value("Contact", {"email_id": webnotes.session.user}, - "customer") - - if customer: - orders = webnotes.conn.sql("""select name, creation, currency from `tabSales Order` - where customer=%s""", customer, as_dict=1) - for order in orders: - order.items = webnotes.conn.sql("""select item_name, qty, export_rate, delivered_qty - from `tabSales Order Item` where parent=%s order by idx""", order.name, as_dict=1) - return orders - else: - return [] \ No newline at end of file diff --git a/website/templates/html/base.html b/website/templates/html/base.html index 2719f8db36..6889d6707a 100644 --- a/website/templates/html/base.html +++ b/website/templates/html/base.html @@ -10,21 +10,18 @@ - - {% if favicon %} + {%- if favicon %} {% else %} - {% endif %} - - {% if description %} + {% endif -%} + {% if description -%} - {% endif %} - - {% block header %} - {% endblock %} + {%- endif %} + {% block header -%} + {%- endblock %} {% block body %} diff --git a/website/templates/html/navbar.html b/website/templates/html/navbar.html index 4663a2f964..55e8094b3d 100644 --- a/website/templates/html/navbar.html +++ b/website/templates/html/navbar.html @@ -1,7 +1,6 @@ - - {% include "html/footer.html" %} + {% include "app/website/templates/html/footer.html" %} {% endblock %} \ No newline at end of file diff --git a/website/templates/html/page.html b/website/templates/html/page.html index 9d38cdc859..c9fbec449a 100644 --- a/website/templates/html/page.html +++ b/website/templates/html/page.html @@ -1,4 +1,4 @@ -{% extends "html/outer.html" %} +{% extends "app/website/templates/html/outer.html" %} {% block title -%}{{ title }}{%- endblock %} diff --git a/website/templates/html/product_group.html b/website/templates/html/product_group.html index 510f9946ac..b3c851197e 100644 --- a/website/templates/html/product_group.html +++ b/website/templates/html/product_group.html @@ -1,11 +1,11 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% block content %} -{% include 'html/product_search_box.html' %} -{% include 'html/product_breadcrumbs.html' %} +{% include 'app/website/templates/html/product_search_box.html' %} +{% include 'app/website/templates/html/product_breadcrumbs.html' %}
    {% if slideshow %} - {% include "html/slideshow.html" %} + {% include "app/website/templates/html/slideshow.html" %} {% endif %} {% if description %}
    {{ description or ""}}
    diff --git a/website/templates/html/product_in_list.html b/website/templates/html/product_in_list.html index bc6260795b..5cd9eace4e 100644 --- a/website/templates/html/product_in_list.html +++ b/website/templates/html/product_in_list.html @@ -4,7 +4,7 @@ {%- if website_image -%} {%- else -%} - {% include 'html/product_missing_image.html' %} + {% include 'app/website/templates/html/product_missing_image.html' %} {%- endif -%}
    diff --git a/website/templates/html/product_page.html b/website/templates/html/product_page.html index f897a3120f..23091ad435 100644 --- a/website/templates/html/product_page.html +++ b/website/templates/html/product_page.html @@ -1,28 +1,28 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% block javascript %} - {% include "js/product_page.js" %} + {% include "app/website/templates/js/product_page.js" %} {% endblock %} {% block css %} - {% include "css/product_page.css" %} + {% include "app/website/templates/css/product_page.css" %} {% endblock %} {% block content %} - {% include 'html/product_search_box.html' %} - {% include 'html/product_breadcrumbs.html' %} + {% include 'app/website/templates/html/product_search_box.html' %} + {% include 'app/website/templates/html/product_breadcrumbs.html' %}
    {% if slideshow %} - {% include "html/slideshow.html" %} + {% include "app/website/templates/html/slideshow.html" %} {% else %} {% if website_image %} {% else %}
    - {% include 'html/product_missing_image.html' %} + {% include 'app/website/templates/html/product_missing_image.html' %}
    {% endif %} {% endif %} diff --git a/website/templates/html/web_page.html b/website/templates/html/web_page.html index d3c646a8b8..6b8c914925 100644 --- a/website/templates/html/web_page.html +++ b/website/templates/html/web_page.html @@ -1,4 +1,4 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% block javascript %} {% if insert_code %} @@ -8,7 +8,7 @@ {% block content %}
    - {% include "html/slideshow.html" %} + {% include "app/website/templates/html/slideshow.html" %} {{ main_section }}
    {% endblock %} \ No newline at end of file diff --git a/website/templates/js/login.js b/website/templates/js/login.js deleted file mode 100644 index 06ea4c5242..0000000000 --- a/website/templates/js/login.js +++ /dev/null @@ -1,97 +0,0 @@ - -var login = {}; - -$(document).ready(function(wrapper) { - $('#login_btn').click(login.do_login) - - $('#password').keypress(function(ev){ - if(ev.which==13 && $('#password').val()) { - $('form').submit(function() { - login.do_login(); - return false; - }); - } - }); - $(document).trigger('login_rendered'); -}) - -// Login -login.do_login = function(){ - var args = {}; - if(window.is_sign_up) { - args.cmd = "core.doctype.profile.profile.sign_up"; - args.email = $("#login_id").val(); - args.full_name = $("#full_name").val(); - - if(!args.email || !valid_email(args.email) || !args.full_name) { - login.set_message("Valid email and name required."); - return false; - } - } else if(window.is_forgot) { - args.cmd = "reset_password"; - args.user = $("#login_id").val(); - - if(!args.user) { - login.set_message("Valid Login Id required."); - return false; - } - - } else { - args.cmd = "login" - args.usr = $("#login_id").val(); - args.pwd = $("#password").val(); - - if(!args.usr || !args.pwd) { - login.set_message("Both login and password required."); - return false; - } - } - - $('#login_btn').attr("disabled", "disabled"); - $("#login-spinner").toggle(true); - $('#login_message').toggle(false); - - $.ajax({ - type: "POST", - url: "server.py", - data: args, - dataType: "json", - success: function(data) { - $("input").val(""); - $("#login-spinner").toggle(false); - $('#login_btn').attr("disabled", false); - if(data.message=="Logged In") { - window.location.href = "app.html"; - } else if(data.message=="No App") { - window.location.href = "index"; - } else { - login.set_message(data.message); - } - } - }) - - return false; -} - -login.sign_up = function() { - $("#login_wrapper h3").html("Sign Up"); - $("#login-label").html("Email Id"); - $("#password-row, #sign-up-wrapper, #login_message").toggle(false); - $("#full-name-row").toggle(true); - $("#login_btn").html("Register"); - $("#forgot-wrapper").html("Login") - window.is_sign_up = true; -} - -login.show_forgot_password = function() { - $("#login_wrapper h3").html("Forgot"); - $("#login-label").html("Email Id"); - $("#password-row, #sign-up-wrapper, #login_message").toggle(false); - $("#login_btn").html("Send Password"); - $("#forgot-wrapper").html("Login") - window.is_forgot = true; -} - -login.set_message = function(message, color) { - $('#login_message').html(message).toggle(true); -} \ No newline at end of file diff --git a/website/templates/pages/404.html b/website/templates/pages/404.html deleted file mode 100644 index 8a676ce524..0000000000 --- a/website/templates/pages/404.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "html/outer.html" %} - -{% set title="Not Found" %} - -{% block content %} -
    -
    -

    Page missing or moved

    -
    -

    We are very sorry for this, but the page you are looking for is missing - (this could be because of a typo in the address) or moved.

    -
    -
    -{% endblock %} \ No newline at end of file diff --git a/website/templates/pages/about.html b/website/templates/pages/about.html index 380c5439ec..0cbd562ef9 100644 --- a/website/templates/pages/about.html +++ b/website/templates/pages/about.html @@ -1,4 +1,4 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% set title="About Us" %} diff --git a/website/templates/pages/account.html b/website/templates/pages/account.html index 8e8f4b4a07..fe2b8587ed 100644 --- a/website/templates/pages/account.html +++ b/website/templates/pages/account.html @@ -1,4 +1,4 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% set title="My Account" %} diff --git a/website/templates/pages/attributions.html b/website/templates/pages/attributions.html index 9e4b50ddce..05e8e8863e 100644 --- a/website/templates/pages/attributions.html +++ b/website/templates/pages/attributions.html @@ -1,4 +1,4 @@ -{% extends "html/outer.html" %} +{% extends "app/website/templates/html/outer.html" %} {% block header %} - - - {{ body }} - -{%- if comment -%} - -{%- endif -%} - \ No newline at end of file diff --git a/website/templates/pages/product_search.html b/website/templates/pages/product_search.html index 66bf160c94..2dab6ff4c2 100644 --- a/website/templates/pages/product_search.html +++ b/website/templates/pages/product_search.html @@ -1,9 +1,9 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% set title="Product Search" %} {% block javascript %} -{% include "js/product_list.js" %} +{% include "app/website/templates/js/product_list.js" %} {% endblock %} {% block content %} @@ -17,7 +17,7 @@ $(document).ready(function() { }); -{% include 'html/product_search_box.html' %} +{% include 'app/website/templates/html/product_search_box.html' %}

    Search Results

    diff --git a/website/templates/pages/profile.html b/website/templates/pages/profile.html index 1b9350cf8c..d689cfb718 100644 --- a/website/templates/pages/profile.html +++ b/website/templates/pages/profile.html @@ -1,4 +1,4 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% set title="My Profile" %} diff --git a/website/templates/pages/ticket.html b/website/templates/pages/ticket.html index fe185f82ba..858dd3b338 100644 --- a/website/templates/pages/ticket.html +++ b/website/templates/pages/ticket.html @@ -1,4 +1,4 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% set title=doc.name %} diff --git a/website/templates/pages/tickets.html b/website/templates/pages/tickets.html index 11da32978d..843d10e38a 100644 --- a/website/templates/pages/tickets.html +++ b/website/templates/pages/tickets.html @@ -1,4 +1,4 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% set title="My Tickets" %} diff --git a/website/templates/pages/writers.html b/website/templates/pages/writers.html index bba374946c..67c0b7e6e1 100644 --- a/website/templates/pages/writers.html +++ b/website/templates/pages/writers.html @@ -1,4 +1,4 @@ -{% extends "html/page.html" %} +{% extends "app/website/templates/html/page.html" %} {% set title="Blog Writers" %} @@ -10,8 +10,8 @@ {% endif %}
    {% for blogger_info in bloggers %} - {% include "html/blogger.html" %} + {% include "app/website/templates/html/blogger.html" %} {% endfor %}
    -{% include 'html/blog_footer.html' %} +{% include 'app/website/templates/html/blog_footer.html' %} {% endblock %} \ No newline at end of file From cfa663e337d09eb0cf53c8ec7962e5eab1faeb07 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 4 Apr 2013 10:02:08 +0530 Subject: [PATCH 338/982] [message] [fix] rewire to core --- hr/doctype/leave_application/leave_application.py | 2 +- setup/doctype/email_digest/email_digest.py | 2 +- utilities/page/questions/questions.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hr/doctype/leave_application/leave_application.py b/hr/doctype/leave_application/leave_application.py index f2a58c8dd8..d34abd88c1 100755 --- a/hr/doctype/leave_application/leave_application.py +++ b/hr/doctype/leave_application/leave_application.py @@ -199,7 +199,7 @@ class DocType(DocListController): def notify(self, args): args = webnotes._dict(args) - from utilities.page.messages.messages import post + from core.page.messages.messages import post post({"txt": args.message, "contact": args.message_to, "subject": args.subject, "notify": cint(self.doc.follow_via_email)}) diff --git a/setup/doctype/email_digest/email_digest.py b/setup/doctype/email_digest/email_digest.py index cb49f3cf99..0b0b21ae17 100644 --- a/setup/doctype/email_digest/email_digest.py +++ b/setup/doctype/email_digest/email_digest.py @@ -315,7 +315,7 @@ class DocType(DocListController): return 0, "

    Calendar Events

    " def get_todo_list(self, user_id): - from utilities.page.todo.todo import get + from core.page.todo.todo import get todo_list = get() html = "" diff --git a/utilities/page/questions/questions.py b/utilities/page/questions/questions.py index 20d38034fb..442fb0139a 100644 --- a/utilities/page/questions/questions.py +++ b/utilities/page/questions/questions.py @@ -55,7 +55,7 @@ def add_question(arg): d.save(1) if args['suggest']: - from utilities.page.messages import messages + from core.page.messages import messages for s in args['suggest']: if s: messages.post(json.dumps({ From 4db3b33dd628b0069a09e1634eb194f24ca74577 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 4 Apr 2013 13:57:35 +0530 Subject: [PATCH 339/982] [customer] [fix] on_trash sql syntax --- selling/doctype/customer/customer.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/selling/doctype/customer/customer.py b/selling/doctype/customer/customer.py index f2d49b33fb..7e16341a4a 100644 --- a/selling/doctype/customer/customer.py +++ b/selling/doctype/customer/customer.py @@ -188,11 +188,11 @@ class DocType(TransactionBase): self.doc.name, raise_exception=1) def delete_customer_address(self): - for rec in sql("select * from `tabAddress` where customer='%s'" %(self.doc.name), as_dict=1): - sql("delete from `tabAddress` where name=%s",(rec['name'])) + for rec in sql("select * from `tabAddress` where customer=%s", (self.doc.name,), as_dict=1): + sql("delete from `tabAddress` where name=%s", (rec['name'])) def delete_customer_contact(self): - for rec in sql("select * from `tabContact` where customer='%s'" %(self.doc.name), as_dict=1): + for rec in sql("select * from `tabContact` where customer=%s", (self.doc.name,), as_dict=1): sql("delete from `tabContact` where name=%s",(rec['name'])) def delete_customer_communication(self): @@ -236,8 +236,7 @@ class DocType(TransactionBase): ('Serial No', 'customer'), ('Shipping Address', 'customer'), ('Stock Entry', 'customer'), - ('Support Ticket', 'customer'), - ('Task', 'customer')] + ('Support Ticket', 'customer')] for rec in update_fields: sql("""update `tab%s` set customer_name = %s where `%s` = %s""" % (rec[0], "%s" ,rec[1], "%s"), (new, old)) From e60f4560d16856d184304eb4f1aa11129cb989cc Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 4 Apr 2013 14:00:56 +0530 Subject: [PATCH 340/982] [supplier] [fix] on_trash sql syntax fix --- buying/doctype/supplier/supplier.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buying/doctype/supplier/supplier.py b/buying/doctype/supplier/supplier.py index 6658db3135..0137504b30 100644 --- a/buying/doctype/supplier/supplier.py +++ b/buying/doctype/supplier/supplier.py @@ -142,11 +142,11 @@ class DocType(TransactionBase): return '' def delete_supplier_address(self): - for rec in sql("select * from `tabAddress` where supplier='%s'" %(self.doc.name), as_dict=1): + for rec in sql("select * from `tabAddress` where supplier=%s", (self.doc.name,), as_dict=1): sql("delete from `tabAddress` where name=%s",(rec['name'])) def delete_supplier_contact(self): - for rec in sql("select * from `tabContact` where supplier='%s'" %(self.doc.name), as_dict=1): + for rec in sql("select * from `tabContact` where supplier=%s", (self.doc.name,), as_dict=1): sql("delete from `tabContact` where name=%s",(rec['name'])) def delete_supplier_communication(self): From a8d8abc670ef0c367f7f3fc38c8c56bf4676cbff Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 4 Apr 2013 15:31:03 +0530 Subject: [PATCH 341/982] small fixes in item --- stock/doctype/item/item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock/doctype/item/item.py b/stock/doctype/item/item.py index 43bae2c9e7..2a2fa58471 100644 --- a/stock/doctype/item/item.py +++ b/stock/doctype/item/item.py @@ -40,7 +40,7 @@ class DocType(DocListController): self.update_website() bin = sql("select stock_uom from `tabBin` where item_code = '%s' " % self.doc.item_code) - if bin and cstr(bin[0][0]) != cstr(self.doc.stock_uom): + if bin and cstr(bin[0][0]) and cstr(bin[0][0]) != cstr(self.doc.stock_uom): msgprint("Please Update Stock UOM with the help of Stock UOM Replace Utility.") raise Exception check_list = [] From 1a738f72f4430ab508b654a0c7592647539d6fd0 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 4 Apr 2013 16:34:51 +0530 Subject: [PATCH 342/982] match condition added in daily time log summary report --- .../daily_time_log_summary.js | 4 ++-- .../daily_time_log_summary.py | 23 +++++++++++++------ .../stock_reconciliation.js | 2 +- 3 files changed, 19 insertions(+), 10 deletions(-) diff --git a/projects/report/daily_time_log_summary/daily_time_log_summary.js b/projects/report/daily_time_log_summary/daily_time_log_summary.js index 8147676704..ba87d0d2f7 100644 --- a/projects/report/daily_time_log_summary/daily_time_log_summary.js +++ b/projects/report/daily_time_log_summary/daily_time_log_summary.js @@ -3,13 +3,13 @@ wn.query_reports["Daily Time Log Summary"] = { { "fieldname":"from_date", "label": "From Date", - "fieldtype": "Datetime", + "fieldtype": "Date", "default": wn.datetime.get_today() }, { "fieldname":"to_date", "label": "To Date", - "fieldtype": "Datetime", + "fieldtype": "Date", "default": wn.datetime.get_today() }, ] diff --git a/projects/report/daily_time_log_summary/daily_time_log_summary.py b/projects/report/daily_time_log_summary/daily_time_log_summary.py index 0309977a8c..eec5444952 100644 --- a/projects/report/daily_time_log_summary/daily_time_log_summary.py +++ b/projects/report/daily_time_log_summary/daily_time_log_summary.py @@ -2,7 +2,11 @@ from __future__ import unicode_literals import webnotes def execute(filters=None): - if not filters: filters = {} + if not filters: + filters = {} + elif filters.get("to_date"): + filters["to_date"] = filters.get("to_date") + "24:00:00" + columns = ["Employee::150", "From Datetime::120", "To Datetime::120", "Hours::70", "Task::150", "Project:Link/Project:120", "Status::70"] @@ -10,19 +14,19 @@ def execute(filters=None): conditions = build_conditions(filters) time_logs = webnotes.conn.sql("""select * from `tabTime Log` - where docstatus < 2 %s order by owner asc""" % (conditions,), filters, as_dict=1) - - data = [] - profiles = [time_logs[0].owner] + where docstatus < 2 %s order by owner asc""" % (conditions, ), filters, as_dict=1) + + data = [] + if time_logs: + profiles = [time_logs[0].owner] for tl in time_logs: - if tl.owner not in profiles: profiles.append(tl.owner) data.append([]) data.append([profile_map[tl.owner], tl.from_time, tl.to_time, tl.hours, - tl.task, tl.project, tl.status]) + tl.task, tl.project, tl.status]) return columns, data @@ -42,5 +46,10 @@ def build_conditions(filters): conditions += " and from_time >= %(from_date)s" if filters.get("to_date"): conditions += " and to_time <= %(to_date)s" + + from webnotes.widgets.reportview import build_match_conditions + match_conditions = build_match_conditions("Time Log") + if match_conditions: + conditions += " and %s" % match_conditions return conditions \ No newline at end of file diff --git a/stock/doctype/stock_reconciliation/stock_reconciliation.js b/stock/doctype/stock_reconciliation/stock_reconciliation.js index b723061d74..3938661eaf 100644 --- a/stock/doctype/stock_reconciliation/stock_reconciliation.js +++ b/stock/doctype/stock_reconciliation/stock_reconciliation.js @@ -67,7 +67,7 @@ erpnext.stock.StockReconciliation = erpnext.stock.StockController.extend({ attach the modified file."); } } else if(this.frm.doc.docstatus == 1) { - this.frm.set_intro("Cancelling this Stock Reconciliation will nullify it's effect."); + this.frm.set_intro("Cancelling this Stock Reconciliation will nullify its effect."); this.show_stock_ledger(); } else { this.frm.set_intro(""); From 93b4e4d90c9e3abe5ef8c98f2a4c4fca9981eb20 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 5 Apr 2013 11:11:14 +0530 Subject: [PATCH 343/982] [JV] added letter head field in jv --- .../journal_voucher/journal_voucher.txt | 104 +++++++++++++----- 1 file changed, 78 insertions(+), 26 deletions(-) diff --git a/accounts/doctype/journal_voucher/journal_voucher.txt b/accounts/doctype/journal_voucher/journal_voucher.txt index dc857c8ce1..471b9f233a 100644 --- a/accounts/doctype/journal_voucher/journal_voucher.txt +++ b/accounts/doctype/journal_voucher/journal_voucher.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-03-07 12:35:57", + "creation": "2013-03-25 10:53:52", "docstatus": 0, - "modified": "2013-03-21 13:02:27", + "modified": "2013-04-05 11:10:35", "modified_by": "Administrator", "owner": "Administrator" }, @@ -24,9 +24,6 @@ "permlevel": 0 }, { - "amend": 1, - "cancel": 1, - "create": 1, "doctype": "DocPerm", "name": "__common__", "parent": "Journal Voucher", @@ -34,9 +31,7 @@ "parenttype": "DocType", "permlevel": 0, "read": 1, - "report": 1, - "submit": 1, - "write": 1 + "report": 1 }, { "doctype": "DocType", @@ -47,6 +42,7 @@ "fieldname": "column_break0", "fieldtype": "Column Break", "oldfieldtype": "Column Break", + "read_only": 0, "width": "50%" }, { @@ -60,6 +56,7 @@ "oldfieldtype": "Select", "options": "JV", "print_hide": 1, + "read_only": 0, "reqd": 1 }, { @@ -73,6 +70,7 @@ "oldfieldtype": "Select", "options": "\nJournal Entry\nBank Voucher\nCash Voucher\nCredit Card Voucher\nDebit Note\nCredit Note\nContra Voucher\nExcise Voucher\nWrite Off Voucher", "print_hide": 0, + "read_only": 0, "search_index": 1 }, { @@ -80,6 +78,7 @@ "fieldname": "column_break1", "fieldtype": "Column Break", "oldfieldtype": "Column Break", + "read_only": 0, "width": "50%" }, { @@ -93,6 +92,7 @@ "no_copy": 1, "oldfieldname": "posting_date", "oldfieldtype": "Date", + "read_only": 0, "reqd": 1, "search_index": 1 }, @@ -102,7 +102,8 @@ "fieldtype": "Section Break", "label": "Journal Entries", "oldfieldtype": "Section Break", - "options": "Simple" + "options": "Simple", + "read_only": 0 }, { "allow_on_submit": 1, @@ -113,13 +114,15 @@ "oldfieldname": "entries", "oldfieldtype": "Table", "options": "Journal Voucher Detail", - "print_hide": 0 + "print_hide": 0, + "read_only": 0 }, { "doctype": "DocField", "fieldname": "section_break99", "fieldtype": "Section Break", - "options": "Simple" + "options": "Simple", + "read_only": 0 }, { "doctype": "DocField", @@ -149,7 +152,8 @@ { "doctype": "DocField", "fieldname": "column_break99", - "fieldtype": "Column Break" + "fieldtype": "Column Break", + "read_only": 0 }, { "doctype": "DocField", @@ -168,13 +172,15 @@ "fieldname": "get_balance", "fieldtype": "Button", "label": "Make Difference Entry", - "oldfieldtype": "Button" + "oldfieldtype": "Button", + "read_only": 0 }, { "doctype": "DocField", "fieldname": "reference", "fieldtype": "Section Break", - "label": "Reference" + "label": "Reference", + "read_only": 0 }, { "description": "eg. Cheque Number", @@ -187,6 +193,7 @@ "no_copy": 1, "oldfieldname": "cheque_no", "oldfieldtype": "Data", + "read_only": 0, "search_index": 1 }, { @@ -196,7 +203,8 @@ "label": "Reference Date", "no_copy": 1, "oldfieldname": "cheque_date", - "oldfieldtype": "Date" + "oldfieldtype": "Date", + "read_only": 0 }, { "doctype": "DocField", @@ -214,7 +222,8 @@ { "doctype": "DocField", "fieldname": "column_break98", - "fieldtype": "Column Break" + "fieldtype": "Column Break", + "read_only": 0 }, { "doctype": "DocField", @@ -224,7 +233,8 @@ "label": "User Remark", "no_copy": 1, "oldfieldname": "user_remark", - "oldfieldtype": "Small Text" + "oldfieldtype": "Small Text", + "read_only": 0 }, { "description": "User Remark will be added to Auto Remark", @@ -247,7 +257,8 @@ "label": "Bill No", "oldfieldname": "bill_no", "oldfieldtype": "Data", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -256,7 +267,8 @@ "label": "Bill Date", "oldfieldname": "bill_date", "oldfieldtype": "Date", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -265,20 +277,23 @@ "label": "Due Date", "oldfieldname": "due_date", "oldfieldtype": "Date", - "print_hide": 0 + "print_hide": 0, + "read_only": 0 }, { "doctype": "DocField", "fieldname": "addtional_info", "fieldtype": "Section Break", "label": "More Info", - "oldfieldtype": "Section Break" + "oldfieldtype": "Section Break", + "read_only": 0 }, { "doctype": "DocField", "fieldname": "column_break2", "fieldtype": "Column Break", "oldfieldtype": "Column Break", + "read_only": 0, "width": "50%" }, { @@ -293,6 +308,7 @@ "oldfieldtype": "Select", "options": "No\nYes", "print_hide": 1, + "read_only": 0, "search_index": 1 }, { @@ -304,7 +320,8 @@ "no_copy": 0, "oldfieldname": "aging_date", "oldfieldtype": "Date", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "default": "Accounts Receivable", @@ -315,6 +332,7 @@ "label": "Write Off Based On", "options": "Accounts Receivable\nAccounts Payable", "print_hide": 1, + "read_only": 0, "report_hide": 1 }, { @@ -325,6 +343,7 @@ "label": "Write Off Amount <=", "options": "Company:company:default_currency", "print_hide": 1, + "read_only": 0, "report_hide": 1 }, { @@ -334,13 +353,22 @@ "fieldtype": "Button", "label": "Get Outstanding Invoices", "options": "get_outstanding_invoices", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 + }, + { + "doctype": "DocField", + "fieldname": "letter_head", + "fieldtype": "Link", + "label": "Letter Head", + "options": "Letter Head" }, { "doctype": "DocField", "fieldname": "column_break3", "fieldtype": "Column Break", "oldfieldtype": "Column Break", + "read_only": 0, "width": "50%" }, { @@ -351,6 +379,7 @@ "label": "Pay To / Recd From", "no_copy": 1, "print_hide": 0, + "read_only": 0, "report_hide": 1 }, { @@ -386,6 +415,7 @@ "oldfieldtype": "Select", "options": "link:Fiscal Year", "print_hide": 1, + "read_only": 0, "reqd": 1, "search_index": 1 }, @@ -399,6 +429,7 @@ "oldfieldtype": "Link", "options": "Company", "print_hide": 1, + "read_only": 0, "reqd": 1, "search_index": 1 }, @@ -413,6 +444,7 @@ "oldfieldtype": "Link", "options": "Print Heading", "print_hide": 1, + "read_only": 0, "report_hide": 1 }, { @@ -436,7 +468,8 @@ "no_copy": 1, "oldfieldname": "amendment_date", "oldfieldtype": "Date", - "print_hide": 1 + "print_hide": 1, + "read_only": 0 }, { "doctype": "DocField", @@ -450,11 +483,30 @@ "read_only": 1 }, { + "amend": 1, + "cancel": 1, + "create": 1, "doctype": "DocPerm", - "role": "Accounts Manager" + "role": "Accounts User", + "submit": 1, + "write": 1 }, { + "amend": 1, + "cancel": 1, + "create": 1, "doctype": "DocPerm", - "role": "Accounts User" + "role": "Accounts Manager", + "submit": 1, + "write": 1 + }, + { + "amend": 0, + "cancel": 0, + "create": 0, + "doctype": "DocPerm", + "role": "Auditor", + "submit": 0, + "write": 0 } ] \ No newline at end of file From 86a8d01ce9b5f2f79ba77656c1406bf6524087db Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 5 Apr 2013 12:12:39 +0530 Subject: [PATCH 344/982] [column addition][daily time log summary] time log id, activity type and task subject column added --- .../daily_time_log_summary.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/projects/report/daily_time_log_summary/daily_time_log_summary.py b/projects/report/daily_time_log_summary/daily_time_log_summary.py index eec5444952..22e48077b5 100644 --- a/projects/report/daily_time_log_summary/daily_time_log_summary.py +++ b/projects/report/daily_time_log_summary/daily_time_log_summary.py @@ -7,10 +7,12 @@ def execute(filters=None): elif filters.get("to_date"): filters["to_date"] = filters.get("to_date") + "24:00:00" - columns = ["Employee::150", "From Datetime::120", "To Datetime::120", "Hours::70", "Task::150", - "Project:Link/Project:120", "Status::70"] + columns = ["Time Log:Link/Time Log:120", "Employee::150", "From Datetime::140", + "To Datetime::140", "Hours::70", "Activity Type::120", "Task:Link/Task:150", + "Task Subject::180", "Project:Link/Project:120", "Status::70"] profile_map = get_profile_map() + task_map = get_task_map() conditions = build_conditions(filters) time_logs = webnotes.conn.sql("""select * from `tabTime Log` @@ -25,8 +27,8 @@ def execute(filters=None): profiles.append(tl.owner) data.append([]) - data.append([profile_map[tl.owner], tl.from_time, tl.to_time, tl.hours, - tl.task, tl.project, tl.status]) + data.append([tl.name, profile_map[tl.owner], tl.from_time, tl.to_time, tl.hours, + tl.activity_type, tl.task, task_map.get(tl.task), tl.project, tl.status]) return columns, data @@ -40,6 +42,14 @@ def get_profile_map(): return profile_map +def get_task_map(): + tasks = webnotes.conn.sql("""select name, subject from tabTask""", as_dict=1) + task_map = {} + for t in tasks: + task_map.setdefault(t.name, []).append(t.subject) + + return task_map + def build_conditions(filters): conditions = "" if filters.get("from_date"): From 38e63266778ab6178afe3925c5d49b9345ef0fbc Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 5 Apr 2013 14:47:42 +0530 Subject: [PATCH 345/982] [Item][Validation] if sle exists, soem fields can not be changed --- stock/doctype/item/item.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/stock/doctype/item/item.py b/stock/doctype/item/item.py index 2a2fa58471..b579195fe1 100644 --- a/stock/doctype/item/item.py +++ b/stock/doctype/item/item.py @@ -181,7 +181,8 @@ class DocType(DocListController): self.check_item_tax() self.validate_barcode() self.check_non_asset_warehouse() - + self.cant_change() + if cstr(self.doc.is_manufactured_item) == "No": self.doc.is_pro_applicable = "No" @@ -242,3 +243,15 @@ class DocType(DocListController): if self.doc.slideshow: from website.helpers.slideshow import get_slideshow get_slideshow(self) + + def cant_change(self): + vals = webnotes.conn.get_value("Item", self.doc.name, + ["has_serial_no", "is_stock_item", "valuation_method"], as_dict=True) + + if (vals.has_serial_no != self.doc.has_serial_no or + vals.is_stock_item != self.doc.is_stock_item or + vals.valuation_method != self.doc.valuation_method): + if self.check_if_sle_exists(): + webnotes.msgprint(_("As there are existing stock transactions for this item, \ + you can not change the values of 'Has Serial No', 'Is Stock Item' and \ + 'Valuation Method'"), raise_exception=1) \ No newline at end of file From 0f0bc3892dcf028ce89118d3bd0b71764c2a7135 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 5 Apr 2013 15:08:08 +0530 Subject: [PATCH 346/982] [packing slip] [fix] removed console log --- stock/doctype/packing_slip/packing_slip.js | 1 - 1 file changed, 1 deletion(-) diff --git a/stock/doctype/packing_slip/packing_slip.js b/stock/doctype/packing_slip/packing_slip.js index e9396d9edc..93fae94154 100644 --- a/stock/doctype/packing_slip/packing_slip.js +++ b/stock/doctype/packing_slip/packing_slip.js @@ -35,7 +35,6 @@ cur_frm.add_fetch("item_code", "net_weight", "net_weight"); cur_frm.add_fetch("item_code", "weight_uom", "weight_uom"); cur_frm.cscript.onload_post_render = function(doc, cdt, cdn) { - console.log(make_doclist(cdt, cdn)); if(doc.delivery_note && doc.__islocal) { var ps_detail = getchildren('Packing Slip Item', doc.name, 'item_details'); if(!(flt(ps_detail.net_weight) && cstr(ps_detail.weight_uom))) { From 5d4758b3e6a12fcc39e71a88d5f6558f51a3feae Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Sat, 6 Apr 2013 08:20:21 +0530 Subject: [PATCH 347/982] [validation] fixes in item --- stock/doctype/item/item.py | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/stock/doctype/item/item.py b/stock/doctype/item/item.py index b579195fe1..0fc7875156 100644 --- a/stock/doctype/item/item.py +++ b/stock/doctype/item/item.py @@ -194,9 +194,7 @@ class DocType(DocListController): if self.doc.name: self.old_page_name = webnotes.conn.get_value('Item', self.doc.name, 'page_name') - - self.validate_is_stock_item() - + def check_non_asset_warehouse(self): if self.doc.is_asset_item == "Yes": existing_qty = sql("select t1.warehouse, t1.actual_qty from tabBin t1, tabWarehouse t2 where t1.item_code=%s and (t2.warehouse_type!='Fixed Asset' or t2.warehouse_type is null) and t1.warehouse=t2.name and t1.actual_qty > 0", self.doc.name) @@ -216,14 +214,6 @@ class DocType(DocListController): } return ret - def validate_is_stock_item(self): - if not self.doc.fields.get("__islocal"): - if webnotes.conn.get_value("Item", self.doc.name, "is_stock_item")=="Yes" and \ - ((not self.doc.is_stock_item) or self.doc.is_stock_item == "No"): - if self.check_if_sle_exists() == "exists": - webnotes.msgprint(self.meta.get_label("is_stock_item") + ": " - + _("""Cannot change to Yes. Reason: Stock Ledger Entries exist for""") - + """ "%s" """ % self.doc.name, raise_exception=True) def check_if_sle_exists(self): sle = sql("select name from `tabStock Ledger Entry` where item_code = %s and ifnull(is_cancelled, 'No') = 'No'", self.doc.name) @@ -245,13 +235,14 @@ class DocType(DocListController): get_slideshow(self) def cant_change(self): - vals = webnotes.conn.get_value("Item", self.doc.name, - ["has_serial_no", "is_stock_item", "valuation_method"], as_dict=True) + if not self.doc.fields.get("__islocal"): + vals = webnotes.conn.get_value("Item", self.doc.name, + ["has_serial_no", "is_stock_item", "valuation_method"], as_dict=True) - if (vals.has_serial_no != self.doc.has_serial_no or - vals.is_stock_item != self.doc.is_stock_item or - vals.valuation_method != self.doc.valuation_method): - if self.check_if_sle_exists(): - webnotes.msgprint(_("As there are existing stock transactions for this item, \ - you can not change the values of 'Has Serial No', 'Is Stock Item' and \ - 'Valuation Method'"), raise_exception=1) \ No newline at end of file + if vals and (vals.has_serial_no != self.doc.has_serial_no or + vals.is_stock_item != self.doc.is_stock_item or + vals.valuation_method != self.doc.valuation_method): + if self.check_if_sle_exists(): + webnotes.msgprint(_("As there are existing stock transactions for this \ + item, you can not change the values of 'Has Serial No', \ + 'Is Stock Item' and 'Valuation Method'"), raise_exception=1) \ No newline at end of file From b72af39331d1f1355a081b1bf0b3d17444efb669 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Sat, 6 Apr 2013 08:20:35 +0530 Subject: [PATCH 348/982] fixes in packing slip --- .../Delivery Note-Packing Slip.txt | 67 ++++++++++--------- stock/doctype/packing_slip/packing_slip.js | 3 +- stock/doctype/packing_slip/packing_slip.py | 1 + stock/doctype/packing_slip/packing_slip.txt | 53 ++++++++++----- .../packing_slip_item/packing_slip_item.txt | 16 ++++- 5 files changed, 88 insertions(+), 52 deletions(-) diff --git a/stock/DocType Mapper/Delivery Note-Packing Slip/Delivery Note-Packing Slip.txt b/stock/DocType Mapper/Delivery Note-Packing Slip/Delivery Note-Packing Slip.txt index 6459a0b89e..79b17c2e10 100644 --- a/stock/DocType Mapper/Delivery Note-Packing Slip/Delivery Note-Packing Slip.txt +++ b/stock/DocType Mapper/Delivery Note-Packing Slip/Delivery Note-Packing Slip.txt @@ -1,71 +1,78 @@ [ { - "owner": "Administrator", + "creation": "2012-02-02 11:50:33", "docstatus": 0, - "creation": "2012-02-22 15:45:56", + "modified": "2013-04-05 16:08:22", "modified_by": "Administrator", - "modified": "2012-02-22 15:45:56" + "owner": "Administrator" }, { - "name": "__common__", - "parent": "Delivery Note-Packing Slip", "doctype": "Table Mapper Detail", - "parenttype": "DocType Mapper", - "parentfield": "table_mapper_details" - }, - { "name": "__common__", "parent": "Delivery Note-Packing Slip", + "parentfield": "table_mapper_details", + "parenttype": "DocType Mapper" + }, + { "doctype": "Field Mapper Detail", - "parenttype": "DocType Mapper", - "parentfield": "field_mapper_details" - }, - { "name": "__common__", - "to_doctype": "Packing Slip", - "module": "Stock", + "parent": "Delivery Note-Packing Slip", + "parentfield": "field_mapper_details", + "parenttype": "DocType Mapper" + }, + { "doctype": "DocType Mapper", + "from_doctype": "Delivery Note", + "module": "Stock", + "name": "__common__", "ref_doc_submitted": 0, - "from_doctype": "Delivery Note" + "to_doctype": "Packing Slip" }, { - "name": "Delivery Note-Packing Slip", - "doctype": "DocType Mapper" + "doctype": "DocType Mapper", + "name": "Delivery Note-Packing Slip" }, { + "doctype": "Field Mapper Detail", + "from_field": "name", "map": "Yes", "match_id": 0, - "to_field": "delivery_note", - "doctype": "Field Mapper Detail", - "from_field": "name" + "to_field": "delivery_note" }, { + "doctype": "Field Mapper Detail", + "from_field": "qty", "map": "No", "match_id": 1, - "to_field": "qty", - "doctype": "Field Mapper Detail", - "from_field": "qty" + "to_field": "qty" }, { + "doctype": "Field Mapper Detail", + "from_field": "naming_series", "map": "No", "match_id": 0, - "to_field": "naming_series", - "doctype": "Field Mapper Detail", - "from_field": "naming_series" + "to_field": "naming_series" + }, + { + "doctype": "Field Mapper Detail", + "from_field": "name", + "map": "Yes", + "match_id": 1, + "to_field": "dn_detail" }, { - "match_id": 0, "doctype": "Table Mapper Detail", "from_table": "Delivery Note", + "match_id": 0, "to_table": "Packing Slip", "validation_logic": "docstatus=0" }, { - "match_id": 1, - "to_field": "item_details", "doctype": "Table Mapper Detail", "from_field": "delivery_note_details", "from_table": "Delivery Note Item", + "match_id": 1, + "to_field": "item_details", "to_table": "Packing Slip Item", "validation_logic": "IFNULL(packed_qty, 0) < IFNULL(qty, 0)" } diff --git a/stock/doctype/packing_slip/packing_slip.js b/stock/doctype/packing_slip/packing_slip.js index e9396d9edc..4c20289af9 100644 --- a/stock/doctype/packing_slip/packing_slip.js +++ b/stock/doctype/packing_slip/packing_slip.js @@ -35,7 +35,6 @@ cur_frm.add_fetch("item_code", "net_weight", "net_weight"); cur_frm.add_fetch("item_code", "weight_uom", "weight_uom"); cur_frm.cscript.onload_post_render = function(doc, cdt, cdn) { - console.log(make_doclist(cdt, cdn)); if(doc.delivery_note && doc.__islocal) { var ps_detail = getchildren('Packing Slip Item', doc.name, 'item_details'); if(!(flt(ps_detail.net_weight) && cstr(ps_detail.weight_uom))) { @@ -100,7 +99,7 @@ cur_frm.cscript.validate_calculate_item_details = function(doc) { cur_frm.cscript.validate_duplicate_items = function(doc, ps_detail) { for(var i=0; i Date: Sun, 7 Apr 2013 10:19:18 +0530 Subject: [PATCH 349/982] [patches] [fix] reload docperm --- patches/patch_list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index 0b7092c76d..181d6352ed 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -17,6 +17,7 @@ from __future__ import unicode_literals patch_list = [ "execute:webnotes.reload_doc('core', 'doctype', 'docfield')", + "execute:webnotes.reload_doc('core', 'doctype', 'docperm') # 2013-04-07", "execute:webnotes.reload_doc('core', 'doctype', 'report')", "execute:webnotes.reload_doc('core', 'doctype', 'doctype')", "patches.mar_2012.so_rv_mapper_fix", @@ -234,6 +235,5 @@ patch_list = [ 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Classic") # 2013-04-02', 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Modern") # 2013-04-02', 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Spartan") # 2013-04-02', - "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')" - + "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')", ] \ No newline at end of file From a477d418438aee51135f03788d25229ffb598b61 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 8 Apr 2013 12:39:11 +0530 Subject: [PATCH 350/982] [aii] some fixes --- .../doctype/sales_invoice/sales_invoice.js | 16 +++-- setup/doctype/company/company.js | 67 ++++++++++--------- stock/doctype/delivery_note/delivery_note.js | 51 +++++++------- stock/doctype/stock_entry/stock_entry.js | 2 +- .../stock_reconciliation.js | 19 +++--- 5 files changed, 81 insertions(+), 74 deletions(-) diff --git a/accounts/doctype/sales_invoice/sales_invoice.js b/accounts/doctype/sales_invoice/sales_invoice.js index 9532a54087..cd33a076d0 100644 --- a/accounts/doctype/sales_invoice/sales_invoice.js +++ b/accounts/doctype/sales_invoice/sales_invoice.js @@ -362,13 +362,15 @@ cur_frm.set_query("income_account", "entries", function(doc) { }) // expense account -cur_frm.fields_dict['entries'].grid.get_field('expense_account').get_query = function(doc) { - return { - "query": "accounts.utils.get_account_list", - "filters": { - "is_pl_account": "Yes", - "debit_or_credit": "Debit", - "company": doc.company +if (sys_defaults.auto_inventory_accounting) { + cur_frm.fields_dict['entries'].grid.get_field('expense_account').get_query = function(doc) { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "Yes", + "debit_or_credit": "Debit", + "company": doc.company + } } } } diff --git a/setup/doctype/company/company.js b/setup/doctype/company/company.js index 5e78b79cd8..4682724532 100644 --- a/setup/doctype/company/company.js +++ b/setup/doctype/company/company.js @@ -63,49 +63,50 @@ cur_frm.fields_dict.payables_group.get_query = function(doc) { return 'SELECT `tabAccount`.name FROM `tabAccount` WHERE `tabAccount`.company = "'+doc.name+'" AND `tabAccount`.group_or_ledger = "Group" AND `tabAccount`.docstatus != 2 AND `tabAccount`.%(key)s LIKE "%s" ORDER BY `tabAccount`.name LIMIT 50'; } - -cur_frm.fields_dict["stock_in_hand_account"].get_query = function(doc) { - return { - "query": "accounts.utils.get_account_list", - "filters": { - "is_pl_account": "No", - "debit_or_credit": "Debit", - "company": doc.name +if (sys_defaults.auto_inventory_accounting) { + cur_frm.fields_dict["stock_in_hand_account"].get_query = function(doc) { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "No", + "debit_or_credit": "Debit", + "company": doc.name + } } } -} -cur_frm.fields_dict["stock_adjustment_account"].get_query = function(doc) { - return { - "query": "accounts.utils.get_account_list", - "filters": { - "is_pl_account": "Yes", - "debit_or_credit": "Debit", - "company": doc.name + cur_frm.fields_dict["stock_adjustment_account"].get_query = function(doc) { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "Yes", + "debit_or_credit": "Debit", + "company": doc.name + } } } -} -cur_frm.fields_dict["expenses_included_in_valuation"].get_query = - cur_frm.fields_dict["stock_adjustment_account"].get_query; + cur_frm.fields_dict["expenses_included_in_valuation"].get_query = + cur_frm.fields_dict["stock_adjustment_account"].get_query; -cur_frm.fields_dict["stock_delivered_but_not_billed"].get_query = - cur_frm.fields_dict["stock_in_hand_account"].get_query; + cur_frm.fields_dict["stock_delivered_but_not_billed"].get_query = + cur_frm.fields_dict["stock_in_hand_account"].get_query; -cur_frm.fields_dict["stock_received_but_not_billed"].get_query = function(doc) { - return { - "query": "accounts.utils.get_account_list", - "filters": { - "is_pl_account": "No", - "debit_or_credit": "Credit", - "company": doc.name + cur_frm.fields_dict["stock_received_but_not_billed"].get_query = function(doc) { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "No", + "debit_or_credit": "Credit", + "company": doc.name + } } } -} -cur_frm.fields_dict["stock_adjustment_cost_center"].get_query = function(doc) { - return { - "query": "accounts.utils.get_cost_center_list", - "filters": {"company": doc.name} + cur_frm.fields_dict["stock_adjustment_cost_center"].get_query = function(doc) { + return { + "query": "accounts.utils.get_cost_center_list", + "filters": {"company": doc.name} + } } } \ No newline at end of file diff --git a/stock/doctype/delivery_note/delivery_note.js b/stock/doctype/delivery_note/delivery_note.js index 61df6b0464..4589024d72 100644 --- a/stock/doctype/delivery_note/delivery_note.js +++ b/stock/doctype/delivery_note/delivery_note.js @@ -310,33 +310,36 @@ cur_frm.cscript.on_submit = function(doc, cdt, cdn) { } } -cur_frm.cscript.expense_account = function(doc, cdt, cdn){ - var d = locals[cdt][cdn]; - if(d.expense_account) { - var cl = getchildren('Delivery Note Item', doc.name, cur_frm.cscript.fname, doc.doctype); - for(var i = 0; i < cl.length; i++){ - if(!cl[i].expense_account) cl[i].expense_account = d.expense_account; +if (sys_defaults.auto_inventory_accounting) { + + cur_frm.cscript.expense_account = function(doc, cdt, cdn){ + var d = locals[cdt][cdn]; + if(d.expense_account) { + var cl = getchildren('Delivery Note Item', doc.name, cur_frm.cscript.fname, doc.doctype); + for(var i = 0; i < cl.length; i++){ + if(!cl[i].expense_account) cl[i].expense_account = d.expense_account; + } + } + refresh_field(cur_frm.cscript.fname); + } + + // expense account + cur_frm.fields_dict['delivery_note_details'].grid.get_field('expense_account').get_query = function(doc) { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "Yes", + "debit_or_credit": "Debit", + "company": doc.company + } } } - refresh_field(cur_frm.cscript.fname); -} -// expense account -cur_frm.fields_dict['delivery_note_details'].grid.get_field('expense_account').get_query = function(doc) { - return { - "query": "accounts.utils.get_account_list", - "filters": { - "is_pl_account": "Yes", - "debit_or_credit": "Debit", - "company": doc.company + // cost center + cur_frm.fields_dict.delivery_note_details.grid.get_field("cost_center").get_query = function(doc) { + return { + query: "accounts.utils.get_cost_center_list", + filters: { company_name: doc.company} } } -} - -// cost center -cur_frm.fields_dict.delivery_note_details.grid.get_field("cost_center").get_query = function(doc) { - return { - query: "accounts.utils.get_cost_center_list", - filters: { company_name: doc.company} - } } \ No newline at end of file diff --git a/stock/doctype/stock_entry/stock_entry.js b/stock/doctype/stock_entry/stock_entry.js index 3e21207eaa..1f4aafa9e5 100644 --- a/stock/doctype/stock_entry/stock_entry.js +++ b/stock/doctype/stock_entry/stock_entry.js @@ -77,7 +77,7 @@ erpnext.stock.StockEntry = erpnext.stock.StockController.extend({ }; if (sys_defaults.auto_inventory_accounting) { - this.frm.add_fetch("company", "expense_adjustment_account", "stock_adjustment_account"); + this.frm.add_fetch("company", "stock_adjustment_account", "expense_adjustment_account"); this.frm.fields_dict["expense_adjustment_account"].get_query = function() { return { diff --git a/stock/doctype/stock_reconciliation/stock_reconciliation.js b/stock/doctype/stock_reconciliation/stock_reconciliation.js index 3938661eaf..cf6821ebd5 100644 --- a/stock/doctype/stock_reconciliation/stock_reconciliation.js +++ b/stock/doctype/stock_reconciliation/stock_reconciliation.js @@ -41,16 +41,17 @@ erpnext.stock.StockReconciliation = erpnext.stock.StockController.extend({ setup: function() { var me = this; + if (sys_defaults.auto_inventory_accounting) { + this.frm.add_fetch("company", "stock_adjustment_account", "expense_account"); - this.frm.add_fetch("company", "expense_account", "stock_adjustment_account"); - - this.frm.fields_dict["expense_account"].get_query = function() { - return { - "query": "accounts.utils.get_account_list", - "filters": { - "is_pl_account": "Yes", - "debit_or_credit": "Debit", - "company": me.frm.doc.company + this.frm.fields_dict["expense_account"].get_query = function() { + return { + "query": "accounts.utils.get_account_list", + "filters": { + "is_pl_account": "Yes", + "debit_or_credit": "Debit", + "company": me.frm.doc.company + } } } } From bcce5b381abcc9408902c99135576488665e6375 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 8 Apr 2013 12:46:24 +0530 Subject: [PATCH 351/982] [aii] fixes --- setup/doctype/company/company.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup/doctype/company/company.js b/setup/doctype/company/company.js index 4682724532..489ed0ce68 100644 --- a/setup/doctype/company/company.js +++ b/setup/doctype/company/company.js @@ -88,9 +88,6 @@ if (sys_defaults.auto_inventory_accounting) { cur_frm.fields_dict["expenses_included_in_valuation"].get_query = cur_frm.fields_dict["stock_adjustment_account"].get_query; - - cur_frm.fields_dict["stock_delivered_but_not_billed"].get_query = - cur_frm.fields_dict["stock_in_hand_account"].get_query; cur_frm.fields_dict["stock_received_but_not_billed"].get_query = function(doc) { return { From fdea83ef42b9ac7260eef117f40a500ab88ce37c Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 8 Apr 2013 13:08:19 +0530 Subject: [PATCH 352/982] fixed conflict --- patches/patch_list.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index 6caeb6f86e..5651045327 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -238,10 +238,6 @@ patch_list = [ 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Classic") # 2013-04-02', 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Modern") # 2013-04-02', 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Spartan") # 2013-04-02', -<<<<<<< HEAD "patches.april_2013.p04_reverse_modules_list", "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')" -======= - "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')", ->>>>>>> master ] \ No newline at end of file From 4b9a3ed8a0600e3fd7db4588db400311744db019 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 9 Apr 2013 10:27:06 +0530 Subject: [PATCH 353/982] [knowledge base] added all permissions --- utilities/page/questions/questions.txt | 27 ++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/utilities/page/questions/questions.txt b/utilities/page/questions/questions.txt index 64aaa514d3..804e2a6ce9 100644 --- a/utilities/page/questions/questions.txt +++ b/utilities/page/questions/questions.txt @@ -1,20 +1,31 @@ [ { - "owner": "Administrator", + "creation": "2012-06-14 18:44:56", "docstatus": 0, - "creation": "2011-05-04 11:09:49", + "modified": "2013-04-09 10:25:31", "modified_by": "Administrator", - "modified": "2011-03-29 13:53:57" + "owner": "Administrator" }, { - "name": "__common__", + "doctype": "Page", "module": "Utilities", - "standard": "Yes", + "name": "__common__", "page_name": "Questions", - "doctype": "Page" + "standard": "Yes" }, { - "name": "questions", - "doctype": "Page" + "doctype": "Page Role", + "name": "__common__", + "parent": "questions", + "parentfield": "roles", + "parenttype": "Page", + "role": "All" + }, + { + "doctype": "Page", + "name": "questions" + }, + { + "doctype": "Page Role" } ] \ No newline at end of file From d35293de17cf6f98217909cd9b0088ff070e4bca Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 11:39:16 +0530 Subject: [PATCH 354/982] updated all role in some pages --- patches/april_2013/p04_update_role_in_pages.py | 11 +++++++++++ patches/patch_list.py | 1 + 2 files changed, 12 insertions(+) create mode 100644 patches/april_2013/p04_update_role_in_pages.py diff --git a/patches/april_2013/p04_update_role_in_pages.py b/patches/april_2013/p04_update_role_in_pages.py new file mode 100644 index 0000000000..6a4ecc6548 --- /dev/null +++ b/patches/april_2013/p04_update_role_in_pages.py @@ -0,0 +1,11 @@ +import webnotes +import webnotes.model +def execute(): + for p in ["activity", "todo", "questions", "question-view"]: + pbean = webnotes.bean("Page", p) + pbean.doclist.append({ + "doctype": "Page Role", + "role": "All", + "parentfield": "roles" + }) + pbean.save() \ No newline at end of file diff --git a/patches/patch_list.py b/patches/patch_list.py index 181d6352ed..b29c2485db 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -236,4 +236,5 @@ patch_list = [ 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Modern") # 2013-04-02', 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Spartan") # 2013-04-02', "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')", + "patches.april_2013.p04_update_role_in_pages", ] \ No newline at end of file From 832320dc15b2578ec2d02daf8b78a00c355485bf Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 11:43:03 +0530 Subject: [PATCH 355/982] fixed conflict --- patches/patch_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index 5a68cc7df0..b827c5b482 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -239,6 +239,6 @@ patch_list = [ 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Modern") # 2013-04-02', 'execute:webnotes.reload_doc("selling", "Print Format", "Quotation Spartan") # 2013-04-02', "patches.april_2013.p04_reverse_modules_list", - "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')" + "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')", "patches.april_2013.p04_update_role_in_pages", ] \ No newline at end of file From 8022a439a8e86291f15ca1d64a57fcde4ad0d13a Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 11:49:42 +0530 Subject: [PATCH 356/982] role added in some pages --- home/page/activity/activity.txt | 4 +-- .../april_2013/p04_update_role_in_pages.py | 13 ++++----- .../page/question_view/question_view.txt | 27 +++++++++++++------ utilities/page/questions/questions.txt | 27 +++++++++++++------ 4 files changed, 47 insertions(+), 24 deletions(-) diff --git a/home/page/activity/activity.txt b/home/page/activity/activity.txt index 57f4b7a082..f00fac1f46 100644 --- a/home/page/activity/activity.txt +++ b/home/page/activity/activity.txt @@ -1,8 +1,8 @@ [ { - "creation": "2012-06-14 18:44:56", + "creation": "2013-04-09 11:45:31", "docstatus": 0, - "modified": "2013-04-03 14:59:38", + "modified": "2013-04-09 11:47:32", "modified_by": "Administrator", "owner": "Administrator" }, diff --git a/patches/april_2013/p04_update_role_in_pages.py b/patches/april_2013/p04_update_role_in_pages.py index 6a4ecc6548..3959044876 100644 --- a/patches/april_2013/p04_update_role_in_pages.py +++ b/patches/april_2013/p04_update_role_in_pages.py @@ -3,9 +3,10 @@ import webnotes.model def execute(): for p in ["activity", "todo", "questions", "question-view"]: pbean = webnotes.bean("Page", p) - pbean.doclist.append({ - "doctype": "Page Role", - "role": "All", - "parentfield": "roles" - }) - pbean.save() \ No newline at end of file + if len(pbean.doclist) == 1: + pbean.doclist.append({ + "doctype": "Page Role", + "role": "All", + "parentfield": "roles" + }) + pbean.save() \ No newline at end of file diff --git a/utilities/page/question_view/question_view.txt b/utilities/page/question_view/question_view.txt index d6478524c3..87fd053732 100644 --- a/utilities/page/question_view/question_view.txt +++ b/utilities/page/question_view/question_view.txt @@ -1,20 +1,31 @@ [ { - "owner": "Administrator", + "creation": "2013-04-09 11:45:31", "docstatus": 0, - "creation": "2011-05-04 11:09:50", + "modified": "2013-04-09 11:47:24", "modified_by": "Administrator", - "modified": "2011-03-29 13:54:27" + "owner": "Administrator" }, { - "name": "__common__", + "doctype": "Page", "module": "Utilities", - "standard": "Yes", + "name": "__common__", "page_name": "Question View", - "doctype": "Page" + "standard": "Yes" }, { - "name": "question-view", - "doctype": "Page" + "doctype": "Page Role", + "name": "__common__", + "parent": "question-view", + "parentfield": "roles", + "parenttype": "Page", + "role": "All" + }, + { + "doctype": "Page", + "name": "question-view" + }, + { + "doctype": "Page Role" } ] \ No newline at end of file diff --git a/utilities/page/questions/questions.txt b/utilities/page/questions/questions.txt index 64aaa514d3..d17cbc4561 100644 --- a/utilities/page/questions/questions.txt +++ b/utilities/page/questions/questions.txt @@ -1,20 +1,31 @@ [ { - "owner": "Administrator", + "creation": "2013-04-09 11:45:31", "docstatus": 0, - "creation": "2011-05-04 11:09:49", + "modified": "2013-04-09 11:47:36", "modified_by": "Administrator", - "modified": "2011-03-29 13:53:57" + "owner": "Administrator" }, { - "name": "__common__", + "doctype": "Page", "module": "Utilities", - "standard": "Yes", + "name": "__common__", "page_name": "Questions", - "doctype": "Page" + "standard": "Yes" }, { - "name": "questions", - "doctype": "Page" + "doctype": "Page Role", + "name": "__common__", + "parent": "questions", + "parentfield": "roles", + "parenttype": "Page", + "role": "All" + }, + { + "doctype": "Page", + "name": "questions" + }, + { + "doctype": "Page Role" } ] \ No newline at end of file From 6de5eb466c3f122e11b55130e3220e7cef5243ce Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 11:52:18 +0530 Subject: [PATCH 357/982] role added in some pages --- utilities/page/questions/questions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/page/questions/questions.txt b/utilities/page/questions/questions.txt index d17cbc4561..e327ebfd18 100644 --- a/utilities/page/questions/questions.txt +++ b/utilities/page/questions/questions.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-04-09 11:45:31", + "creation": "2013-04-09 11:50:08", "docstatus": 0, - "modified": "2013-04-09 11:47:36", + "modified": "2013-04-09 11:52:08", "modified_by": "Administrator", "owner": "Administrator" }, From 807e4788d5a2745d11fe7814bc92af90c32a8b9f Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 14:31:14 +0530 Subject: [PATCH 358/982] fixes in patches --- patches/march_2013/p07_update_valuation_rate.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/patches/march_2013/p07_update_valuation_rate.py b/patches/march_2013/p07_update_valuation_rate.py index 885fad6a35..eaeeac1990 100644 --- a/patches/march_2013/p07_update_valuation_rate.py +++ b/patches/march_2013/p07_update_valuation_rate.py @@ -2,13 +2,18 @@ import webnotes def execute(): webnotes.reload_doc("accounts", "doctype", "purchase_invoice_item") - + webnotes.conn.auto_commit_on_many_writes = True for purchase_invoice in webnotes.conn.sql_list("""select distinct parent from `tabPurchase Invoice Item` where docstatus = 1 and ifnull(valuation_rate, 0)=0"""): pi = webnotes.get_obj("Purchase Invoice", purchase_invoice) - pi.calculate_taxes_and_totals() + try: + pi.calculate_taxes_and_totals() + except: + pass pi.update_raw_material_cost() pi.update_valuation_rate("entries") for item in pi.doclist.get({"parentfield": "entries"}): webnotes.conn.sql("""update `tabPurchase Invoice Item` set valuation_rate = %s where name = %s""", (item.valuation_rate, item.name)) + + webnotes.conn.auto_commit_on_many_writes = False \ No newline at end of file From 29f3ecd6b174674490654f58990fe7b1945c0d16 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 14:46:12 +0530 Subject: [PATCH 359/982] [patch] create chart of accounts if not created --- patches/patch_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/patches/patch_list.py b/patches/patch_list.py index b827c5b482..23b18aee17 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -241,4 +241,5 @@ patch_list = [ "patches.april_2013.p04_reverse_modules_list", "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')", "patches.april_2013.p04_update_role_in_pages", + "patches.april_2013.p05_create_chart_of_accounts" ] \ No newline at end of file From ead385e8a4b3d1b939fd903ab8cd462f582fabed Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 14:48:31 +0530 Subject: [PATCH 360/982] [patch] create chart of accounts if not created --- patches/patch_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index 23b18aee17..4c51e8d710 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -230,6 +230,7 @@ patch_list = [ "patches.march_2013.p11_update_attach_files", "patches.march_2013.p12_set_item_tax_rate_in_json", "patches.march_2013.p07_update_valuation_rate", + "patches.april_2013.p05_create_chart_of_accounts", "patches.march_2013.p08_create_aii_accounts", "patches.march_2013.p03_update_buying_amount", "patches.april_2013.p01_update_serial_no_valuation_rate", @@ -241,5 +242,4 @@ patch_list = [ "patches.april_2013.p04_reverse_modules_list", "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')", "patches.april_2013.p04_update_role_in_pages", - "patches.april_2013.p05_create_chart_of_accounts" ] \ No newline at end of file From 3594873a638afe1364f19d0f0ff8eaae3b4ba2ee Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 14:49:00 +0530 Subject: [PATCH 361/982] [patch] create chart of accounts if not created --- patches/april_2013/p05_create_chart_of_accounts.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 patches/april_2013/p05_create_chart_of_accounts.py diff --git a/patches/april_2013/p05_create_chart_of_accounts.py b/patches/april_2013/p05_create_chart_of_accounts.py new file mode 100644 index 0000000000..3a38a2c863 --- /dev/null +++ b/patches/april_2013/p05_create_chart_of_accounts.py @@ -0,0 +1,7 @@ +import webnotes +def execute(): + for company in webnotes.conn.sql("select name from `tabCompany`"): + if not webnotes.conn.sql("select * from `tabAccount` where company = %s", company[0]): + webnotes.conn.sql("""update `tabCompany` set receivables_group = '', + payables_group = '' where name = %s""", company[0]) + webnotes.bean("Company", company[0]).save() \ No newline at end of file From 563903526818b6b1fd3cd4d01c4607e0fc21b38f Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 14:56:30 +0530 Subject: [PATCH 362/982] [patch] create chart of accounts if not created --- patches/april_2013/p05_create_chart_of_accounts.py | 7 ------- patches/march_2013/p08_create_aii_accounts.py | 8 +++++++- patches/patch_list.py | 1 - 3 files changed, 7 insertions(+), 9 deletions(-) delete mode 100644 patches/april_2013/p05_create_chart_of_accounts.py diff --git a/patches/april_2013/p05_create_chart_of_accounts.py b/patches/april_2013/p05_create_chart_of_accounts.py deleted file mode 100644 index 3a38a2c863..0000000000 --- a/patches/april_2013/p05_create_chart_of_accounts.py +++ /dev/null @@ -1,7 +0,0 @@ -import webnotes -def execute(): - for company in webnotes.conn.sql("select name from `tabCompany`"): - if not webnotes.conn.sql("select * from `tabAccount` where company = %s", company[0]): - webnotes.conn.sql("""update `tabCompany` set receivables_group = '', - payables_group = '' where name = %s""", company[0]) - webnotes.bean("Company", company[0]).save() \ No newline at end of file diff --git a/patches/march_2013/p08_create_aii_accounts.py b/patches/march_2013/p08_create_aii_accounts.py index ec186b47ff..30bfe9ef01 100644 --- a/patches/march_2013/p08_create_aii_accounts.py +++ b/patches/march_2013/p08_create_aii_accounts.py @@ -1,7 +1,7 @@ import webnotes def execute(): webnotes.reload_doc("setup", "doctype", "company") - + create_chart_of_accounts_if_not_exists() add_group_accounts() add_ledger_accounts() add_aii_cost_center() @@ -94,4 +94,10 @@ def add_aii_cost_center(): }) cc.insert() +def create_chart_of_accounts_if_not_exists(): + for company in webnotes.conn.sql("select name from `tabCompany`"): + if not webnotes.conn.sql("select * from `tabAccount` where company = %s", company[0]): + webnotes.conn.sql("""update `tabCompany` set receivables_group = '', + payables_group = '' where name = %s""", company[0]) + webnotes.bean("Company", company[0]).save() \ No newline at end of file diff --git a/patches/patch_list.py b/patches/patch_list.py index 4c51e8d710..b827c5b482 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -230,7 +230,6 @@ patch_list = [ "patches.march_2013.p11_update_attach_files", "patches.march_2013.p12_set_item_tax_rate_in_json", "patches.march_2013.p07_update_valuation_rate", - "patches.april_2013.p05_create_chart_of_accounts", "patches.march_2013.p08_create_aii_accounts", "patches.march_2013.p03_update_buying_amount", "patches.april_2013.p01_update_serial_no_valuation_rate", From 97f6843b1ce9806244b2572594e68b57fdcdaf82 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 9 Apr 2013 17:43:36 +0530 Subject: [PATCH 363/982] removed print statements --- patches/december_2012/repost_ordered_qty.py | 4 +--- patches/february_2013/fix_outstanding.py | 6 +----- patches/january_2013/file_list_rename_returns.py | 3 --- patches/july_2012/repost_stock_due_to_wrong_packing_list.py | 3 --- patches/mar_2012/doctype_get_refactor.py | 2 -- patches/march_2013/p03_update_buying_amount.py | 3 --- patches/march_2013/p08_create_aii_accounts.py | 6 +++--- patches/may_2012/reload_sales_invoice_pf.py | 1 - patches/october_2012/fix_cancelled_gl_entries.py | 3 +-- 9 files changed, 6 insertions(+), 25 deletions(-) diff --git a/patches/december_2012/repost_ordered_qty.py b/patches/december_2012/repost_ordered_qty.py index c798b6cc7c..4b046f1838 100644 --- a/patches/december_2012/repost_ordered_qty.py +++ b/patches/december_2012/repost_ordered_qty.py @@ -10,8 +10,6 @@ def execute(): and po_item.item_code = %s and po_item.warehouse = %s """, (d[0], d[1])) - if flt(d[3]) != flt(ordered_qty[0][0]): - print d[3], ordered_qty[0][0] - + if flt(d[3]) != flt(ordered_qty[0][0]): webnotes.conn.sql("""update `tabBin` set ordered_qty = %s where name = %s""", (ordered_qty and ordered_qty[0][0] or 0, d[2])) \ No newline at end of file diff --git a/patches/february_2013/fix_outstanding.py b/patches/february_2013/fix_outstanding.py index 22a6ee1740..8afc63f511 100644 --- a/patches/february_2013/fix_outstanding.py +++ b/patches/february_2013/fix_outstanding.py @@ -17,8 +17,4 @@ def execute(): if ((r["against_voucher_type"]=='Sales Invoice' and flt(r["outstanding"]) >= 0) \ or (r["against_voucher_type"]=="Purchase Invoice" and flt(["outstanding"]) <= 0)): webnotes.conn.set_value(r["against_voucher_type"], r["against_voucher"], - "outstanding_amount", abs(flt(r["outstanding"]))) - else: - print r["against_voucher_type"], r["against_voucher"], \ - outstanding[0][1], abs(flt(r["outstanding"])) - \ No newline at end of file + "outstanding_amount", abs(flt(r["outstanding"]))) \ No newline at end of file diff --git a/patches/january_2013/file_list_rename_returns.py b/patches/january_2013/file_list_rename_returns.py index cca7a15725..f897d5c4ec 100644 --- a/patches/january_2013/file_list_rename_returns.py +++ b/patches/january_2013/file_list_rename_returns.py @@ -34,10 +34,8 @@ def execute(): except Exception, e: # if duplicate entry, then dont update if e[0]!=1062: - print webnotes.getTraceback() raise e - print change_map changed_keys = change_map.keys() @@ -61,6 +59,5 @@ def execute(): except Exception, e: if e[0]!=1146: - print webnotes.getTraceback() raise e \ No newline at end of file diff --git a/patches/july_2012/repost_stock_due_to_wrong_packing_list.py b/patches/july_2012/repost_stock_due_to_wrong_packing_list.py index 81c6415644..615d7ed610 100644 --- a/patches/july_2012/repost_stock_due_to_wrong_packing_list.py +++ b/patches/july_2012/repost_stock_due_to_wrong_packing_list.py @@ -23,7 +23,6 @@ def repost_reserved_qty(): i = 0 for d in bins: i += 1 - print i reserved_qty = webnotes.conn.sql(""" select sum((dnpi_qty / so_item_qty) * (so_item_qty - so_item_delivered_qty)) @@ -54,7 +53,6 @@ def repost_reserved_qty(): """, (d[0], d[1])) if flt(d[3]) != flt(reserved_qty[0][0]): - print d[3], reserved_qty[0][0] webnotes.conn.sql(""" update `tabBin` set reserved_qty = %s where name = %s """, (reserved_qty and reserved_qty[0][0] or 0, d[2])) @@ -77,7 +75,6 @@ def cleanup_wrong_sle(): ) """) if sle: - print sle for d in sle: webnotes.conn.sql("update `tabStock Ledger Entry` set is_cancelled = 'Yes' where name = %s", d[3]) create_comment(d[3]) diff --git a/patches/mar_2012/doctype_get_refactor.py b/patches/mar_2012/doctype_get_refactor.py index c6bfb3129c..26402292b4 100644 --- a/patches/mar_2012/doctype_get_refactor.py +++ b/patches/mar_2012/doctype_get_refactor.py @@ -24,7 +24,6 @@ def handle_custom_fields(): * Create property setter entry of previous field * Remove custom fields from tabDocField """ - print "in handle custom fields" cf = get_cf() assign_idx(cf) create_prev_field_prop_setter(cf) @@ -120,7 +119,6 @@ def create_file_list(): webnotes.clear_cache(doctype=obj.doc.name) def change_to_decimal(): - print "in change to decimal" webnotes.conn.commit() tables = webnotes.conn.sql("SHOW TABLES") alter_tables_list = [] diff --git a/patches/march_2013/p03_update_buying_amount.py b/patches/march_2013/p03_update_buying_amount.py index 0d96feba4a..92b171f3e1 100644 --- a/patches/march_2013/p03_update_buying_amount.py +++ b/patches/march_2013/p03_update_buying_amount.py @@ -7,7 +7,6 @@ def execute(): webnotes.conn.auto_commit_on_many_writes = True for company in webnotes.conn.sql("select name from `tabCompany`"): - print company[0] stock_ledger_entries = webnotes.conn.sql("""select item_code, voucher_type, voucher_no, voucher_detail_no, posting_date, posting_time, stock_value, warehouse, actual_qty as qty from `tabStock Ledger Entry` @@ -17,7 +16,6 @@ def execute(): dn_list = webnotes.conn.sql("""select name from `tabDelivery Note` where docstatus < 2 and company = %s""", company[0]) - print "Total Delivery Note: ", len(dn_list) for dn in dn_list: dn = webnotes.get_obj("Delivery Note", dn[0], with_children = 1) @@ -25,7 +23,6 @@ def execute(): si_list = webnotes.conn.sql("""select name from `tabSales Invoice` where docstatus < 2 and company = %s""", company[0]) - print "Total Sales Invoice: ", len(si_list) for si in si_list: si = webnotes.get_obj("Sales Invoice", si[0], with_children = 1) si.set_buying_amount(stock_ledger_entries) diff --git a/patches/march_2013/p08_create_aii_accounts.py b/patches/march_2013/p08_create_aii_accounts.py index 30bfe9ef01..ac563b52fa 100644 --- a/patches/march_2013/p08_create_aii_accounts.py +++ b/patches/march_2013/p08_create_aii_accounts.py @@ -56,8 +56,8 @@ def add_accounts(accounts_to_add, check_fn=None): where company=%s and ifnull(parent_account, '')=''""", company)[0][0] if count > 4: - print "Company", company, \ - "has more than 4 root accounts. cannot apply patch to this company." + webnotes.errprint("Company" + company + + "has more than 4 root accounts. cannot apply patch to this company.") continue for account_name, parent_account_name, group_or_ledger, account_type in accounts_to_add: @@ -82,7 +82,7 @@ def add_aii_cost_center(): {"parent_cost_center['']": '', "company_name": company}) if not parent_cost_center: - print "Company", company, "does not have a root cost center" + webnotes.errprint("Company " + company + "does not have a root cost center") continue cc = webnotes.bean({ diff --git a/patches/may_2012/reload_sales_invoice_pf.py b/patches/may_2012/reload_sales_invoice_pf.py index b784469d00..ea4f5dfde5 100644 --- a/patches/may_2012/reload_sales_invoice_pf.py +++ b/patches/may_2012/reload_sales_invoice_pf.py @@ -12,6 +12,5 @@ def execute(): 'Sales Invoice Spartan', 'Sales Invoice Modern' ]: - print r.get('name') webnotes.modules.reload_doc(r.get('module'), 'Print Format', r.get('name')) \ No newline at end of file diff --git a/patches/october_2012/fix_cancelled_gl_entries.py b/patches/october_2012/fix_cancelled_gl_entries.py index 9d23619d93..5c23ce8835 100644 --- a/patches/october_2012/fix_cancelled_gl_entries.py +++ b/patches/october_2012/fix_cancelled_gl_entries.py @@ -12,5 +12,4 @@ def execute(): where voucher_type = %s and voucher_no = %s""", (entry['voucher_type'], entry['voucher_no'])) except Exception, e: - print entry - print e + pass \ No newline at end of file From 1175227c089ed8ea418f3167ecbaaf09aaa5424e Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 10 Apr 2013 11:48:27 +0530 Subject: [PATCH 364/982] [fixes] commented a patch as it is not needed --- patches/patch_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/patch_list.py b/patches/patch_list.py index b827c5b482..ca80d94e61 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -231,7 +231,7 @@ patch_list = [ "patches.march_2013.p12_set_item_tax_rate_in_json", "patches.march_2013.p07_update_valuation_rate", "patches.march_2013.p08_create_aii_accounts", - "patches.march_2013.p03_update_buying_amount", + # "patches.march_2013.p03_update_buying_amount", "patches.april_2013.p01_update_serial_no_valuation_rate", "patches.april_2013.p02_add_country_and_currency", "patches.april_2013.p03_fixes_for_lead_in_quotation", From 0c1611219ed7f325bb997caf1d0510d1507af0a6 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 10 Apr 2013 13:54:13 +0530 Subject: [PATCH 365/982] [files] [cleanup/redesign] removed the old file_list structure and also added file listing in setup --- hr/doctype/employee/employee.py | 26 ++++++++++--------- patches/april_2013/p05_update_file_data.py | 4 ++- patches/april_2013/p06_update_file_size.py | 11 ++++++++ patches/patch_list.py | 2 ++ setup/page/setup/setup.js | 6 +++++ .../stock_reconciliation.txt | 7 +++-- 6 files changed, 41 insertions(+), 15 deletions(-) create mode 100644 patches/april_2013/p06_update_file_size.py diff --git a/hr/doctype/employee/employee.py b/hr/doctype/employee/employee.py index 16ecb6d2ed..4100e2ee81 100644 --- a/hr/doctype/employee/employee.py +++ b/hr/doctype/employee/employee.py @@ -100,18 +100,20 @@ class DocType: if self.doc.gender: profile_wrapper.doc.gender = self.doc.gender - if self.doc.image and self.doc.file_list: - # add to file list and user_image - for file_args in self.doc.file_list.split("\n"): - fname, fid = file_args.split(",") - if self.doc.image == fname: - new_file_args = fname + "," + fid - file_list = cstr(profile_wrapper.doc.file_list).split("\n") - if new_file_args not in file_list: - file_list += [new_file_args] - profile_wrapper.doc.file_list = "\n".join(file_list) - profile_wrapper.doc.user_image = fname - break + if self.doc.image: + if not profile_wrapper.doc.user_image == self.doc.image: + profile_wrapper.doc.user_image = self.doc.image + try: + webnotes.doc({ + "doctype": "File Data", + "file_name": self.doc.image, + "attached_to_doctype": "Profile", + "attached_to_name": self.doc.user_id + }).insert() + except webnotes.DuplicateEntryError, e: + # already exists + pass + break profile_wrapper.save() diff --git a/patches/april_2013/p05_update_file_data.py b/patches/april_2013/p05_update_file_data.py index 1f288c1aac..a9a3cf9629 100644 --- a/patches/april_2013/p05_update_file_data.py +++ b/patches/april_2013/p05_update_file_data.py @@ -2,11 +2,13 @@ import webnotes, webnotes.utils, os from webnotes.modules.export_file import export_to_files def execute(): + webnotes.reload_doc("core", "doctype", "file_data") + webontes.reset_perms("File Data") + singles = webnotes.conn.sql_list("""select name from tabDocType where ifnull(issingle,0)=1""") for doctype in webnotes.conn.sql_list("""select parent from tabDocField where fieldname='file_list' and fieldtype='Text'"""): - print doctype if doctype in singles: doc = webnotes.doc(doctype, doctype) update_for_doc(doctype, doc) diff --git a/patches/april_2013/p06_update_file_size.py b/patches/april_2013/p06_update_file_size.py new file mode 100644 index 0000000000..e61c060d52 --- /dev/null +++ b/patches/april_2013/p06_update_file_size.py @@ -0,0 +1,11 @@ +import webnotes, os, webnotes.utils + +def execute(): + files_path = webnotes.utils.get_path("public", "files") + for f in webnotes.conn.sql("""select name, file_name from + `tabFile Data`""", as_dict=True): + filepath = os.path.join(files_path, f.file_name) + if os.path.exists(filepath): + webnotes.conn.set_value("File Data", f.name, "file_size", os.stat(filepath).st_size) + + \ No newline at end of file diff --git a/patches/patch_list.py b/patches/patch_list.py index b827c5b482..d5b62e37fc 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -241,4 +241,6 @@ patch_list = [ "patches.april_2013.p04_reverse_modules_list", "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')", "patches.april_2013.p04_update_role_in_pages", + "patches.april_2013.p05_update_file_data", + "patches.april_2013.p06_update_file_size", ] \ No newline at end of file diff --git a/setup/page/setup/setup.js b/setup/page/setup/setup.js index 4ab7578850..b47f6f28d1 100644 --- a/setup/page/setup/setup.js +++ b/setup/page/setup/setup.js @@ -82,6 +82,12 @@ wn.module_page["Setup"] = [ label: wn._("Rename Tool"), "description":wn._("Rename multiple items in one go") }, + { + "route":"List/File Data", + doctype: "File Data", + label: wn._("File Manager"), + "description":wn._("List, delete uploaded files.") + }, ] }, { diff --git a/stock/doctype/stock_reconciliation/stock_reconciliation.txt b/stock/doctype/stock_reconciliation/stock_reconciliation.txt index 760620bb73..9b5b2a128a 100644 --- a/stock/doctype/stock_reconciliation/stock_reconciliation.txt +++ b/stock/doctype/stock_reconciliation/stock_reconciliation.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-03-26 06:51:17", + "creation": "2013-03-28 10:35:31", "docstatus": 0, - "modified": "2013-03-26 08:32:03", + "modified": "2013-04-10 13:44:19", "modified_by": "Administrator", "owner": "Administrator" }, @@ -52,6 +52,7 @@ "fieldname": "posting_date", "fieldtype": "Date", "in_filter": 0, + "in_list_view": 1, "label": "Posting Date", "oldfieldname": "reconciliation_date", "oldfieldtype": "Date", @@ -63,6 +64,7 @@ "fieldname": "posting_time", "fieldtype": "Time", "in_filter": 0, + "in_list_view": 1, "label": "Posting Time", "oldfieldname": "reconciliation_time", "oldfieldtype": "Time", @@ -148,6 +150,7 @@ "fieldname": "stock_value_difference", "fieldtype": "Currency", "hidden": 1, + "in_list_view": 1, "label": "Stock Value Difference", "print_hide": 1 }, From 44323693f4abd96e8ef4445ffcd1ea9d4825c512 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 10 Apr 2013 13:54:44 +0530 Subject: [PATCH 366/982] [files] [cleanup/redesign] removed the old file_list structure and also added file listing in setup --- home/page/latest_updates/latest_updates.js | 1 + 1 file changed, 1 insertion(+) diff --git a/home/page/latest_updates/latest_updates.js b/home/page/latest_updates/latest_updates.js index c0bad9405b..6f8a05b81c 100644 --- a/home/page/latest_updates/latest_updates.js +++ b/home/page/latest_updates/latest_updates.js @@ -1,4 +1,5 @@ erpnext.updates = [ + ["10th April", ["Redesigned File Uploads and added File Manager in Setup"]], ["27th March", ["Rename multiple items together. Go to Setup > Rename Tool"]], ["26th March", ["Added project to Stock Ledger and Balance", "Added Default Cash Account in Company."]], From 04a1916bbdb6e96fc4e13502fa9ded43dc860b2a Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 10 Apr 2013 13:57:08 +0530 Subject: [PATCH 367/982] [files] [cleanup/redesign] removed the old file_list structure and also added file listing in setup --- patches/april_2013/p05_update_file_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/april_2013/p05_update_file_data.py b/patches/april_2013/p05_update_file_data.py index a9a3cf9629..dc3b9a882c 100644 --- a/patches/april_2013/p05_update_file_data.py +++ b/patches/april_2013/p05_update_file_data.py @@ -36,7 +36,7 @@ def update_for_doc(doctype, doc): exists = True if not (filename.startswith("http://") or filename.startswith("https://")): - if not os.path.exists(os.path.join(webnotes.utils.get_base_path(), "public", "files", filename)): + if not os.path.exists(webnotes.utils.get_path("public", "files", filename): exists = False if exists: From 753ae05ba90d212bddd0e46446d856d906bb1b82 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 10 Apr 2013 14:14:48 +0530 Subject: [PATCH 368/982] [files] [cleanup/redesign] removed the old file_list structure and also added file listing in setup --- patches/april_2013/p05_update_file_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/april_2013/p05_update_file_data.py b/patches/april_2013/p05_update_file_data.py index dc3b9a882c..a1d2f63b62 100644 --- a/patches/april_2013/p05_update_file_data.py +++ b/patches/april_2013/p05_update_file_data.py @@ -36,7 +36,7 @@ def update_for_doc(doctype, doc): exists = True if not (filename.startswith("http://") or filename.startswith("https://")): - if not os.path.exists(webnotes.utils.get_path("public", "files", filename): + if not os.path.exists(webnotes.utils.get_path("public", "files", filename)): exists = False if exists: From 9e93037119cd179efd452d3050ac8595798ad426 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 10 Apr 2013 14:17:45 +0530 Subject: [PATCH 369/982] [files] [cleanup/redesign] removed the old file_list structure and also added file listing in setup --- patches/april_2013/p05_update_file_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/april_2013/p05_update_file_data.py b/patches/april_2013/p05_update_file_data.py index a1d2f63b62..8fd38ede88 100644 --- a/patches/april_2013/p05_update_file_data.py +++ b/patches/april_2013/p05_update_file_data.py @@ -3,7 +3,7 @@ from webnotes.modules.export_file import export_to_files def execute(): webnotes.reload_doc("core", "doctype", "file_data") - webontes.reset_perms("File Data") + webnotes.reset_perms("File Data") singles = webnotes.conn.sql_list("""select name from tabDocType where ifnull(issingle,0)=1""") From cc887a83208f7ca6f4a4b3640484ea56b8376179 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 10 Apr 2013 14:20:56 +0530 Subject: [PATCH 370/982] [files] [cleanup/redesign] removed the old file_list structure and also added file listing in setup --- patches/april_2013/p05_update_file_data.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/patches/april_2013/p05_update_file_data.py b/patches/april_2013/p05_update_file_data.py index 8fd38ede88..9fed8a495b 100644 --- a/patches/april_2013/p05_update_file_data.py +++ b/patches/april_2013/p05_update_file_data.py @@ -32,7 +32,11 @@ def update_for_doc(doctype, doc): if not filedata: continue - filename, fileid = filedata.split(",") + filedata = filedata.split(",") + if len(filedata)==2: + filename, fileid = filedata[0], filedata[1] + else: + continue exists = True if not (filename.startswith("http://") or filename.startswith("https://")): From 7c179bd00c35024ceed699009f6584726962617b Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 10 Apr 2013 14:22:06 +0530 Subject: [PATCH 371/982] [files] [cleanup/redesign] removed the old file_list structure and also added file listing in setup --- patches/april_2013/p06_update_file_size.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/patches/april_2013/p06_update_file_size.py b/patches/april_2013/p06_update_file_size.py index e61c060d52..8709c7b642 100644 --- a/patches/april_2013/p06_update_file_size.py +++ b/patches/april_2013/p06_update_file_size.py @@ -4,8 +4,9 @@ def execute(): files_path = webnotes.utils.get_path("public", "files") for f in webnotes.conn.sql("""select name, file_name from `tabFile Data`""", as_dict=True): - filepath = os.path.join(files_path, f.file_name) - if os.path.exists(filepath): - webnotes.conn.set_value("File Data", f.name, "file_size", os.stat(filepath).st_size) + if f.file_name: + filepath = os.path.join(files_path, f.file_name) + if os.path.exists(filepath): + webnotes.conn.set_value("File Data", f.name, "file_size", os.stat(filepath).st_size) \ No newline at end of file From 0b80883088100ba4d23b559248f33a2a2e04d602 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 10 Apr 2013 15:28:23 +0530 Subject: [PATCH 372/982] [lead] [permission] cleanup of permission --- selling/doctype/lead/lead.txt | 71 +++++------------------------------ 1 file changed, 10 insertions(+), 61 deletions(-) diff --git a/selling/doctype/lead/lead.txt b/selling/doctype/lead/lead.txt index e162551607..2463f017c6 100644 --- a/selling/doctype/lead/lead.txt +++ b/selling/doctype/lead/lead.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-28 17:07:01", + "creation": "2013-04-10 11:45:37", "docstatus": 0, - "modified": "2013-03-26 14:05:01", + "modified": "2013-04-10 11:49:11", "modified_by": "Administrator", "owner": "Administrator" }, @@ -23,13 +23,18 @@ "permlevel": 0 }, { + "amend": 0, + "create": 1, "doctype": "DocPerm", "name": "__common__", "parent": "Lead", "parentfield": "permissions", "parenttype": "DocType", + "permlevel": 0, "read": 1, - "submit": 0 + "report": 1, + "submit": 0, + "write": 1 }, { "doctype": "DocType", @@ -445,69 +450,13 @@ "label": "Blog Subscriber" }, { - "create": 1, - "doctype": "DocPerm", - "permlevel": 0, - "report": 1, - "role": "Guest", - "write": 1 - }, - { - "amend": 0, - "cancel": 0, - "create": 0, - "doctype": "DocPerm", - "permlevel": 1, - "report": 0, - "role": "Sales User", - "write": 0 - }, - { - "amend": 0, - "cancel": 0, - "create": 0, - "doctype": "DocPerm", - "permlevel": 1, - "report": 0, - "role": "Sales Manager", - "write": 0 - }, - { - "amend": 0, "cancel": 1, - "create": 1, "doctype": "DocPerm", - "permlevel": 0, - "report": 1, - "role": "Sales Manager", - "write": 1 + "role": "Sales Manager" }, { - "amend": 0, "cancel": 0, - "create": 1, "doctype": "DocPerm", - "permlevel": 0, - "report": 1, - "role": "Sales User", - "write": 1 - }, - { - "amend": 0, - "cancel": 0, - "create": 0, - "doctype": "DocPerm", - "permlevel": 1, - "role": "All" - }, - { - "amend": 0, - "cancel": 0, - "create": 1, - "doctype": "DocPerm", - "permlevel": 0, - "report": 1, - "role": "System Manager", - "write": 1 + "role": "Sales User" } ] \ No newline at end of file From cad5c3414f32ef52d75437fe6417bab3954ef15a Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 10 Apr 2013 15:28:42 +0530 Subject: [PATCH 373/982] [serial no] [fix] removed transaction date passed for creating stock ledger entry --- stock/doctype/serial_no/serial_no.py | 1 - 1 file changed, 1 deletion(-) diff --git a/stock/doctype/serial_no/serial_no.py b/stock/doctype/serial_no/serial_no.py index 65bd2dd9c6..bbf55b35e3 100644 --- a/stock/doctype/serial_no/serial_no.py +++ b/stock/doctype/serial_no/serial_no.py @@ -79,7 +79,6 @@ class DocType(StockController): values = [{ 'item_code' : self.doc.item_code, 'warehouse' : self.doc.warehouse, - 'transaction_date' : nowdate(), 'posting_date' : self.doc.purchase_date or (self.doc.creation and self.doc.creation.split(' ')[0]) or nowdate(), 'posting_time' : self.doc.purchase_time or '00:00', 'voucher_type' : 'Serial No', From 54cab9cded1df56cbd56494083edc6e37a35df9d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 10 Apr 2013 16:04:18 +0530 Subject: [PATCH 374/982] [fixes] fixes in general ledger grid report --- accounts/page/general_ledger/general_ledger.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/accounts/page/general_ledger/general_ledger.js b/accounts/page/general_ledger/general_ledger.js index 4a3f21ea92..4a39d74554 100644 --- a/accounts/page/general_ledger/general_ledger.js +++ b/accounts/page/general_ledger/general_ledger.js @@ -306,10 +306,8 @@ erpnext.GeneralLedger = wn.views.GridReport.extend({ }, make_account_by_name: function() { - if(!this.account_by_name) { - this.account_by_name = this.make_name_map(wn.report_dump.data["Account"]); - this.make_voucher_acconuts_map(); - } + this.account_by_name = this.make_name_map(wn.report_dump.data["Account"]); + this.make_voucher_acconuts_map(); }, make_voucher_acconuts_map: function() { From 1b35b1aa62522a80edd3f2db2294b27a22149e7a Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 10 Apr 2013 16:16:59 +0530 Subject: [PATCH 375/982] [file] [patch fix] --- patches/april_2013/p05_update_file_data.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/patches/april_2013/p05_update_file_data.py b/patches/april_2013/p05_update_file_data.py index 9fed8a495b..a5540cc3cd 100644 --- a/patches/april_2013/p05_update_file_data.py +++ b/patches/april_2013/p05_update_file_data.py @@ -11,8 +11,9 @@ def execute(): fieldname='file_list' and fieldtype='Text'"""): if doctype in singles: doc = webnotes.doc(doctype, doctype) - update_for_doc(doctype, doc) - webnotes.conn.set_value(doctype, None, "file_list", None) + if doc.file_list: + update_for_doc(doctype, doc) + webnotes.conn.set_value(doctype, None, "file_list", None) else: try: for doc in webnotes.conn.sql("""select name, file_list from `tab%s` where From e33f827e32d1c076a5ee76a922f32d68fa687818 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 10 Apr 2013 19:33:57 +0530 Subject: [PATCH 376/982] [modules] [fix] patch for storing only hidden modules --- patches/april_2013/p04_reverse_modules_list.py | 5 +++-- patches/april_2013/p05_fixes_in_reverse_modules.py | 10 ++++++++++ patches/patch_list.py | 1 + 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 patches/april_2013/p05_fixes_in_reverse_modules.py diff --git a/patches/april_2013/p04_reverse_modules_list.py b/patches/april_2013/p04_reverse_modules_list.py index 9215fea5d9..1751d36ca2 100644 --- a/patches/april_2013/p04_reverse_modules_list.py +++ b/patches/april_2013/p04_reverse_modules_list.py @@ -6,6 +6,7 @@ def execute(): ml = json.loads(webnotes.conn.get_global("modules_list") or "[]") - webnotes.conn.set_global("hidden_modules", - json.dumps(list(set(modules.keys()).difference(set(ml))))) + if ml: + webnotes.conn.set_global("hidden_modules", + json.dumps(list(set(modules.keys()).difference(set(ml))))) \ No newline at end of file diff --git a/patches/april_2013/p05_fixes_in_reverse_modules.py b/patches/april_2013/p05_fixes_in_reverse_modules.py new file mode 100644 index 0000000000..8f5b2f773e --- /dev/null +++ b/patches/april_2013/p05_fixes_in_reverse_modules.py @@ -0,0 +1,10 @@ +import webnotes, json +import webnotes.utils + +def execute(): + modules = webnotes.get_config().modules + + ml = json.loads(webnotes.conn.get_global("hidden_modules")) + + if len(ml) == len(modules.keys()): + webnotes.conn.set_global("hidden_modules", json.dumps([])) \ No newline at end of file diff --git a/patches/patch_list.py b/patches/patch_list.py index ca80d94e61..be7e5cb3b9 100644 --- a/patches/patch_list.py +++ b/patches/patch_list.py @@ -241,4 +241,5 @@ patch_list = [ "patches.april_2013.p04_reverse_modules_list", "execute:webnotes.delete_doc('Search Criteria', 'time_log_summary')", "patches.april_2013.p04_update_role_in_pages", + "patches.april_2013.p05_fixes_in_reverse_modules", ] \ No newline at end of file From 1cfab4e21d67478a4ae8ae67466069a94dbb23ff Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 11 Apr 2013 09:36:20 +0530 Subject: [PATCH 377/982] [patch] [fix] --- patches/april_2013/p05_fixes_in_reverse_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/april_2013/p05_fixes_in_reverse_modules.py b/patches/april_2013/p05_fixes_in_reverse_modules.py index 8f5b2f773e..41e2e5ef2f 100644 --- a/patches/april_2013/p05_fixes_in_reverse_modules.py +++ b/patches/april_2013/p05_fixes_in_reverse_modules.py @@ -4,7 +4,7 @@ import webnotes.utils def execute(): modules = webnotes.get_config().modules - ml = json.loads(webnotes.conn.get_global("hidden_modules")) + ml = json.loads(webnotes.conn.get_global("hidden_modules") or "[]") if len(ml) == len(modules.keys()): webnotes.conn.set_global("hidden_modules", json.dumps([])) \ No newline at end of file From d246de84179e395f52fb7d642ea74f8205468755 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 11 Apr 2013 15:31:41 +0530 Subject: [PATCH 378/982] [fixes][account][packing slip] --- accounts/doctype/account/account.py | 12 +++++++----- stock/doctype/packing_slip/packing_slip.js | 14 ++++++++++++++ stock/doctype/packing_slip/packing_slip.py | 4 +--- .../packing_slip_item/packing_slip_item.txt | 11 ++++++----- 4 files changed, 28 insertions(+), 13 deletions(-) diff --git a/accounts/doctype/account/account.py b/accounts/doctype/account/account.py index 410994fed2..eb65604e02 100644 --- a/accounts/doctype/account/account.py +++ b/accounts/doctype/account/account.py @@ -69,11 +69,13 @@ class DocType: raise_exception=1) def validate_duplicate_account(self): - if (self.doc.fields.get('__islocal') or not self.doc.name) and \ - sql("""select name from tabAccount where account_name=%s and company=%s""", - (self.doc.account_name, self.doc.company)): - msgprint("Account Name: %s already exists, please rename" - % self.doc.account_name, raise_exception=1) + + if self.doc.fields.get('__islocal') or not self.doc.name: + company_abbr = webnotes.conn.get_value("Company", self.doc.company, "abbr") + if sql("""select name from tabAccount where name=%s""", + (self.doc.account_name + " - " + company_abbr)): + msgprint("Account Name: %s already exists, please rename" + % self.doc.account_name, raise_exception=1) def validate_root_details(self): #does not exists parent diff --git a/stock/doctype/packing_slip/packing_slip.js b/stock/doctype/packing_slip/packing_slip.js index 4c20289af9..5ece164c68 100644 --- a/stock/doctype/packing_slip/packing_slip.js +++ b/stock/doctype/packing_slip/packing_slip.js @@ -138,3 +138,17 @@ cur_frm.cscript.calc_net_total_pkg = function(doc, ps_detail) { refresh_many(['net_weight_pkg', 'net_weight_uom', 'gross_weight_uom', 'gross_weight_pkg']); } +var make_row = function(title,val,bold){ + var bstart = ''; var bend = ''; + return ''+(bold?bstart:'')+title+(bold?bend:'')+'' + +''+ val +'' + +'' +} + +cur_frm.pformat.net_weight_pkg= function(doc){ + return '' + make_row('Net Weight', doc.net_weight_pkg) + '
    ' +} + +cur_frm.pformat.gross_weight_pkg= function(doc){ + return '' + make_row('Gross Weight', doc.gross_weight_pkg) + '
    ' +} \ No newline at end of file diff --git a/stock/doctype/packing_slip/packing_slip.py b/stock/doctype/packing_slip/packing_slip.py index fb2fd53392..161c9bd911 100644 --- a/stock/doctype/packing_slip/packing_slip.py +++ b/stock/doctype/packing_slip/packing_slip.py @@ -94,12 +94,10 @@ class DocType: * Item Quantity dict of current packing slip doc * No. of Cases of this packing slip """ - item_codes = ", ".join([('"' + d.item_code + '"') for d in - self.doclist]) items = [d.item_code for d in self.doclist.get({"parentfield": "item_details"})] - if not item_codes: webnotes.msgprint("No Items to Pack", + if not items: webnotes.msgprint("No Items to Pack", raise_exception=1) # gets item code, qty per item code, latest packed qty per item code and stock uom diff --git a/stock/doctype/packing_slip_item/packing_slip_item.txt b/stock/doctype/packing_slip_item/packing_slip_item.txt index a9d2fdf2fa..b186f40c5f 100644 --- a/stock/doctype/packing_slip_item/packing_slip_item.txt +++ b/stock/doctype/packing_slip_item/packing_slip_item.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-03-07 11:42:59", + "creation": "2013-04-08 13:10:16", "docstatus": 0, - "modified": "2013-04-05 16:06:40", + "modified": "2013-04-11 15:06:05", "modified_by": "Administrator", "owner": "Administrator" }, @@ -70,7 +70,7 @@ "fieldtype": "Float", "label": "Net Weight", "print_width": "100px", - "read_only": 1, + "read_only": 0, "width": "100px" }, { @@ -80,7 +80,7 @@ "label": "Weight UOM", "options": "UOM", "print_width": "100px", - "read_only": 1, + "read_only": 0, "width": "100px" }, { @@ -95,6 +95,7 @@ "fieldname": "dn_detail", "fieldtype": "Data", "hidden": 1, - "label": "DN Detail" + "label": "DN Detail", + "read_only": 0 } ] \ No newline at end of file From 4147f026594272622917d307b54e291f56cf9eab Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 11 Apr 2013 16:02:06 +0530 Subject: [PATCH 379/982] fixe sin patch --- patches/march_2013/p08_create_aii_accounts.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/patches/march_2013/p08_create_aii_accounts.py b/patches/march_2013/p08_create_aii_accounts.py index ac563b52fa..00230d8c66 100644 --- a/patches/march_2013/p08_create_aii_accounts.py +++ b/patches/march_2013/p08_create_aii_accounts.py @@ -61,7 +61,8 @@ def add_accounts(accounts_to_add, check_fn=None): continue for account_name, parent_account_name, group_or_ledger, account_type in accounts_to_add: - if not webnotes.conn.exists("Account", "%s - %s" % (account_name, abbr)): + if not webnotes.conn.sql("""select name from `tabAccount` where account_name = %s + and company = %s""", (account_name, company)): parent_account = "%s - %s" % (parent_account_name, abbr) if check_fn: parent_account = check_fn(parent_account, company) @@ -77,7 +78,8 @@ def add_accounts(accounts_to_add, check_fn=None): def add_aii_cost_center(): for company, abbr in webnotes.conn.sql("""select name, abbr from `tabCompany`"""): - if not webnotes.conn.exists("Cost Center", "Auto Inventory Accounting - %s" % abbr): + if not webnotes.conn.sql("""select name from `tabCost Center` where cost_center_name = + 'Auto Inventory Accounting' and company_name = %s""", company): parent_cost_center = webnotes.conn.get_value("Cost Center", {"parent_cost_center['']": '', "company_name": company}) From bab018b759106e611de67b96bda16c2391036e78 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 11 Apr 2013 16:36:26 +0530 Subject: [PATCH 380/982] fixes in item --- stock/doctype/item/item.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stock/doctype/item/item.py b/stock/doctype/item/item.py index 55a0ae75ab..2b2dbfe815 100644 --- a/stock/doctype/item/item.py +++ b/stock/doctype/item/item.py @@ -239,8 +239,8 @@ class DocType(DocListController): vals = webnotes.conn.get_value("Item", self.doc.name, ["has_serial_no", "is_stock_item", "valuation_method"], as_dict=True) - if vals and (vals.has_serial_no != self.doc.has_serial_no or - vals.is_stock_item != self.doc.is_stock_item or + if vals and ((self.doc.is_stock_item == "No" and vals.is_stock_item == "Yes") or + vals.has_serial_no != self.doc.has_serial_no or vals.valuation_method != self.doc.valuation_method): if self.check_if_sle_exists(): webnotes.msgprint(_("As there are existing stock transactions for this \ From 6ce8af3b6734edb092e7726294cc14b8d050c8ac Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 11 Apr 2013 16:57:01 +0530 Subject: [PATCH 381/982] item search by item_name by default --- public/js/queries.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/public/js/queries.js b/public/js/queries.js index e15e6867b4..9809cd980d 100644 --- a/public/js/queries.js +++ b/public/js/queries.js @@ -133,10 +133,8 @@ erpnext.queries.item = function(opts) { WHERE tabItem.docstatus!=2 \ AND (ifnull(`tabItem`.`end_of_life`,"") in ("", "0000-00-00") \ OR `tabItem`.`end_of_life` > NOW()) \ - AND tabItem.%(key)s LIKE "%s" ' + (conditions - ? (" AND " + conditions.join(" AND ")) - : "") - + " LIMIT 50" + AND (tabItem.%(key)s LIKE \"%s\" OR tabItem.item_name LIKE \"%%%s\")' + + (conditions ? (" AND " + conditions.join(" AND ")) : "") + " LIMIT 50" } erpnext.queries.item_std = function() { From 1bcd551db23ec2d6478e17ca87d0e92fe249c43b Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 12 Apr 2013 16:51:07 +0530 Subject: [PATCH 382/982] fixes in item --- stock/doctype/item/item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock/doctype/item/item.py b/stock/doctype/item/item.py index 2b2dbfe815..c0f0a07e52 100644 --- a/stock/doctype/item/item.py +++ b/stock/doctype/item/item.py @@ -242,7 +242,7 @@ class DocType(DocListController): if vals and ((self.doc.is_stock_item == "No" and vals.is_stock_item == "Yes") or vals.has_serial_no != self.doc.has_serial_no or vals.valuation_method != self.doc.valuation_method): - if self.check_if_sle_exists(): + if self.check_if_sle_exists() == "exists": webnotes.msgprint(_("As there are existing stock transactions for this \ item, you can not change the values of 'Has Serial No', \ 'Is Stock Item' and 'Valuation Method'"), raise_exception=1) From b094ae7f23ff0b0f9ecaaa03f4831beb830b0af7 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 12 Apr 2013 20:19:10 +0530 Subject: [PATCH 383/982] [general ledger] [fix] renamed function --- accounts/page/general_ledger/general_ledger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/accounts/page/general_ledger/general_ledger.js b/accounts/page/general_ledger/general_ledger.js index 4a39d74554..21be3a05dd 100644 --- a/accounts/page/general_ledger/general_ledger.js +++ b/accounts/page/general_ledger/general_ledger.js @@ -307,10 +307,10 @@ erpnext.GeneralLedger = wn.views.GridReport.extend({ make_account_by_name: function() { this.account_by_name = this.make_name_map(wn.report_dump.data["Account"]); - this.make_voucher_acconuts_map(); + this.make_voucher_accounts_map(); }, - make_voucher_acconuts_map: function() { + make_voucher_accounts_map: function() { this.voucher_accounts = {}; var data = wn.report_dump.data["GL Entry"]; for(var i=0, j=data.length; i Date: Fri, 12 Apr 2013 20:19:53 +0530 Subject: [PATCH 384/982] [Leave Application] [fixes] Validate Leave Approver based on a list specified in Employee --- hr/doctype/employee/employee.js | 149 ++++++++++------ hr/doctype/employee/employee.py | 54 ++++-- hr/doctype/employee/employee.txt | 54 +++--- .../employee_leave_approver/__init__.py | 0 .../employee_leave_approver.py | 8 + .../employee_leave_approver.txt | 39 ++++ hr/doctype/expense_claim/expense_claim.js | 2 +- hr/doctype/expense_claim/expense_claim.py | 9 - .../leave_application/leave_application.js | 2 +- .../leave_application/leave_application.py | 33 ++-- .../test_leave_application.py | 167 ++++++++++++++++-- hr/utils.py | 38 ++++ public/js/startup.js | 5 +- 13 files changed, 424 insertions(+), 136 deletions(-) create mode 100644 hr/doctype/employee_leave_approver/__init__.py create mode 100644 hr/doctype/employee_leave_approver/employee_leave_approver.py create mode 100644 hr/doctype/employee_leave_approver/employee_leave_approver.txt create mode 100644 hr/utils.py diff --git a/hr/doctype/employee/employee.js b/hr/doctype/employee/employee.js index 239b3b7a83..5a2dbab87f 100644 --- a/hr/doctype/employee/employee.js +++ b/hr/doctype/employee/employee.js @@ -14,62 +14,95 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -cur_frm.cscript.onload = function(doc) { - // bc - var india_specific = ["esic_card_no", "gratuity_lic_id", "pan_number", "pf_number"] - if(wn.control_panel.country!="India") { - hide_field(india_specific); - } -} - -cur_frm.cscript.refresh = function(doc) { - if(!doc.__islocal) { - hide_field("naming_series"); - cur_frm.add_custom_button('Make Salary Structure', - cur_frm.cscript['Make Salary Structure']); - } -} - -cur_frm.cscript.date_of_birth = function(doc, dt, dn) { - get_server_fields('get_retirement_date','','',doc,dt,dn,1); -} - -cur_frm.cscript.salutation = function(doc,dt,dn) { - if(doc.salutation){ - if(doc.salutation=='Mr') - doc.gender='Male'; - else if(doc.salutation=='Ms') - doc.gender='Female'; - refresh_field('gender'); - } -} - -cur_frm.cscript['Make Salary Structure']=function(){ - $c_obj(make_doclist (cur_frm.doc.doctype, cur_frm.doc.name), 'check_sal_structure', - cur_frm.doc.name, function(r, rt) { - if(r.message) - msgprint("You have already created Active salary structure.\n \ - If you want to create new one, please ensure that no active salary structure \ - exist.\nTo inactive salary structure select 'Is Active' as 'No'."); - else - cur_frm.cscript.make_salary_structure(cur_frm.doc); +wn.provide("erpnext.hr"); +erpnext.hr.EmployeeController = wn.ui.form.Controller.extend({ + setup: function() { + this.setup_leave_approver_select(); + this.frm.fields_dict.user_id.get_query = erpnext.utils.profile_query; + this.frm.fields_dict.reports_to.get_query = erpnext.utils.employee_query; + }, + + onload: function() { + this.frm.toggle_display(["esic_card_no", "gratuity_lic_id", "pan_number", "pf_number"], + wn.control_panel.country==="India"); + }, + + refresh: function() { + var me = this; + erpnext.hide_naming_series(); + if(!this.frm.doc.__islocal) { + cur_frm.add_custom_button('View Active Salary Structure', function() { + me.view_active_salary_structure(this); }); + + cur_frm.add_custom_button('Make Salary Structure', function() { + me.make_salary_structure(this); }); + } - ); -} - -cur_frm.cscript.make_salary_structure = function(doc, dt, dn, det){ - var st = wn.model.make_new_doc_and_get_name('Salary Structure'); - st = locals['Salary Structure'][st]; - st.employee = doc.name; - st.employee_name = doc.employee_name; - st.branch=doc.branch; - st.designation=doc.designation; - st.department=doc.department; - st.fiscal_year = doc.fiscal_year - st.grade=doc.grade; - loaddoc('Salary Structure', st.name); -} - -cur_frm.fields_dict.user_id.get_query = erpnext.utils.profile_query; - -cur_frm.fields_dict.reports_to.get_query = erpnext.utils.employee_query; \ No newline at end of file + }, + + setup_leave_approver_select: function() { + var me = this; + this.frm.call({ + method:"hr.utils.get_leave_approver_list", + callback: function(r) { + me.frm.fields_dict.employee_leave_approvers.grid.get_field("leave_approver").df.options = + $.map(r.message, function(profile) { + return {value: profile, label: wn.user_info(profile).fullname}; + }); + } + }); + }, + + date_of_birth: function() { + cur_frm.call({ + method: "get_retirement_date", + args: {date_of_birth: this.frm.doc.date_of_birth} + }); + }, + + salutation: function() { + if(this.frm.doc.salutation) { + this.frm.set_value("gender", { + "Mr": "Male", + "Ms": "Female" + }[this.frm.doc.salutation]); + } + }, + + make_salary_structure: function(btn) { + var me = this; + this.validate_salary_structure(btn, function(r) { + if(r.message) { + msgprint(wn._("Employee") + ' "' + me.frm.doc.name + '": ' + + wn._("An active Salary Structure already exists. \ + If you want to create new one, please ensure that no active Salary Structure \ + exists for this Employee. Go to the active Salary Structure and set \ + \"Is Active\" = \"No\"")); + } else if(!r.exc) { + wn.model.map({ + source: wn.model.get_doclist(me.frm.doc.doctype, me.frm.doc.name), + target: "Salary Structure" + }); + } + }); + }, + + validate_salary_structure: function(btn, callback) { + var me = this; + this.frm.call({ + btn: btn, + method: "webnotes.client.get_value", + args: { + doctype: "Salary Structure", + fieldname: "name", + filters: { + employee: me.frm.doc.name, + is_active: "Yes", + docstatus: ["!=", 2] + }, + }, + callback: callback + }); + }, +}); +cur_frm.cscript = new erpnext.hr.EmployeeController({frm: cur_frm}); \ No newline at end of file diff --git a/hr/doctype/employee/employee.py b/hr/doctype/employee/employee.py index 16ecb6d2ed..59c8380ee6 100644 --- a/hr/doctype/employee/employee.py +++ b/hr/doctype/employee/employee.py @@ -27,7 +27,7 @@ class DocType: def __init__(self,doc,doclist=[]): self.doc = doc self.doclist = doclist - + def autoname(self): ret = sql("select value from `tabSingles` where doctype = 'Global Defaults' and field = 'emp_created_by'") if not ret: @@ -49,30 +49,31 @@ class DocType: self.validate_email() self.validate_name() self.validate_status() - - def get_retirement_date(self): - import datetime - ret = {} - if self.doc.date_of_birth: - dt = getdate(self.doc.date_of_birth) + datetime.timedelta(21915) - ret = {'date_of_retirement': dt.strftime('%Y-%m-%d')} - return ret - - def check_sal_structure(self, nm): - ret_sal_struct=sql("select name from `tabSalary Structure` where employee='%s' and is_active = 'Yes' and docstatus!= 2"%nm) - return ret_sal_struct and ret_sal_struct[0][0] or '' - + self.validate_employee_leave_approver() + def on_update(self): if self.doc.user_id: self.update_user_default() self.update_profile() - + def update_user_default(self): webnotes.conn.set_default("employee", self.doc.name, self.doc.user_id) webnotes.conn.set_default("employee_name", self.doc.employee_name, self.doc.user_id) webnotes.conn.set_default("company", self.doc.company, self.doc.user_id) - if self.doc.reports_to: - webnotes.conn.set_default("leave_approver", webnotes.conn.get_value("Employee", self.doc.reports_to, "user_id"), self.doc.user_id) + self.set_default_leave_approver() + + def set_default_leave_approver(self): + employee_leave_approvers = self.doclist.get({"parentfield": "employee_leave_approvers"}) + + if len(employee_leave_approvers): + webnotes.conn.set_default("leave_approver", employee_leave_approvers[0].leave_approver, + self.doc.user_id) + + elif self.doc.reports_to: + from webnotes.profile import Profile + reports_to_user = webnotes.conn.get_value("Employee", self.doc.reports_to, "user_id") + if "Leave Approver" in Profile(reports_to_user).get_roles(): + webnotes.conn.set_default("leave_approver", reports_to_user, self.doc.user_id) def update_profile(self): # add employee role if missing @@ -116,7 +117,6 @@ class DocType: profile_wrapper.save() def validate_date(self): - import datetime if self.doc.date_of_birth and self.doc.date_of_joining and getdate(self.doc.date_of_birth) >= getdate(self.doc.date_of_joining): msgprint('Date of Joining must be greater than Date of Birth') raise Exception @@ -167,3 +167,21 @@ class DocType: if self.doc.status == 'Left' and not self.doc.relieving_date: msgprint("Please enter relieving date.") raise Exception + + def validate_employee_leave_approver(self): + from webnotes.profile import Profile + from hr.doctype.leave_application.leave_application import InvalidLeaveApproverError + + for l in self.doclist.get({"parentfield": "employee_leave_approvers"}): + if "Leave Approver" not in Profile(l.leave_approver).get_roles(): + msgprint(_("Invalid Leave Approver") + ": \"" + l.leave_approver + "\"", + raise_exception=InvalidLeaveApproverError) + +@webnotes.whitelist() +def get_retirement_date(date_of_birth=None): + import datetime + ret = {} + if date_of_birth: + dt = getdate(date_of_birth) + datetime.timedelta(21915) + ret = {'date_of_retirement': dt.strftime('%Y-%m-%d')} + return ret diff --git a/hr/doctype/employee/employee.txt b/hr/doctype/employee/employee.txt index 7b1f730353..997a1efb51 100644 --- a/hr/doctype/employee/employee.txt +++ b/hr/doctype/employee/employee.txt @@ -1,8 +1,8 @@ [ { - "creation": "2013-01-23 19:57:17", + "creation": "2013-03-07 09:04:18", "docstatus": 0, - "modified": "2013-02-08 13:07:25", + "modified": "2013-04-12 07:16:42", "modified_by": "Administrator", "owner": "Administrator" }, @@ -322,15 +322,6 @@ "options": "Grade", "reqd": 0 }, - { - "doctype": "DocField", - "fieldname": "reports_to", - "fieldtype": "Link", - "label": "Reports to", - "oldfieldname": "reports_to", - "oldfieldtype": "Link", - "options": "Employee" - }, { "description": "Provide email id registered in company", "doctype": "DocField", @@ -342,6 +333,14 @@ "oldfieldtype": "Data", "reqd": 0 }, + { + "doctype": "DocField", + "fieldname": "notice_number_of_days", + "fieldtype": "Int", + "label": "Notice - Number of Days", + "oldfieldname": "notice_number_of_days", + "oldfieldtype": "Int" + }, { "doctype": "DocField", "fieldname": "salary_information", @@ -405,6 +404,29 @@ "oldfieldname": "gratuity_lic_id", "oldfieldtype": "Data" }, + { + "doctype": "DocField", + "fieldname": "organization_profile", + "fieldtype": "Section Break", + "label": "Organization Profile" + }, + { + "doctype": "DocField", + "fieldname": "reports_to", + "fieldtype": "Link", + "label": "Reports to", + "oldfieldname": "reports_to", + "oldfieldtype": "Link", + "options": "Employee" + }, + { + "description": "The first Leave Approver in the list will be set as the default Leave Approver", + "doctype": "DocField", + "fieldname": "employee_leave_approvers", + "fieldtype": "Table", + "label": "Leave Approvers", + "options": "Employee Leave Approver" + }, { "doctype": "DocField", "fieldname": "contact_details", @@ -429,14 +451,6 @@ "fieldtype": "Data", "label": "Personal Email" }, - { - "doctype": "DocField", - "fieldname": "notice_number_of_days", - "fieldtype": "Int", - "label": "Notice - Number of Days", - "oldfieldname": "notice_number_of_days", - "oldfieldtype": "Int" - }, { "doctype": "DocField", "fieldname": "emergency_contact_details", @@ -767,4 +781,4 @@ "role": "HR Manager", "write": 1 } -] +] \ No newline at end of file diff --git a/hr/doctype/employee_leave_approver/__init__.py b/hr/doctype/employee_leave_approver/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/hr/doctype/employee_leave_approver/employee_leave_approver.py b/hr/doctype/employee_leave_approver/employee_leave_approver.py new file mode 100644 index 0000000000..928aa9ff9f --- /dev/null +++ b/hr/doctype/employee_leave_approver/employee_leave_approver.py @@ -0,0 +1,8 @@ +# For license information, please see license.txt + +from __future__ import unicode_literals +import webnotes + +class DocType: + def __init__(self, d, dl): + self.doc, self.doclist = d, dl \ No newline at end of file diff --git a/hr/doctype/employee_leave_approver/employee_leave_approver.txt b/hr/doctype/employee_leave_approver/employee_leave_approver.txt new file mode 100644 index 0000000000..31e3e09efa --- /dev/null +++ b/hr/doctype/employee_leave_approver/employee_leave_approver.txt @@ -0,0 +1,39 @@ +[ + { + "creation": "2013-04-12 06:56:15", + "docstatus": 0, + "modified": "2013-04-12 07:53:33", + "modified_by": "Administrator", + "owner": "Administrator" + }, + { + "allow_import": 0, + "autoname": "LAPPR-/.#####", + "description": "Users who can approve a specific employee's leave applications", + "doctype": "DocType", + "istable": 1, + "module": "HR", + "name": "__common__" + }, + { + "doctype": "DocField", + "fieldname": "leave_approver", + "fieldtype": "Select", + "label": "Leave Approver", + "name": "__common__", + "parent": "Employee Leave Approver", + "parentfield": "fields", + "parenttype": "DocType", + "permlevel": 0, + "print_hide": 1, + "reqd": 1, + "width": "200" + }, + { + "doctype": "DocType", + "name": "Employee Leave Approver" + }, + { + "doctype": "DocField" + } +] \ No newline at end of file diff --git a/hr/doctype/expense_claim/expense_claim.js b/hr/doctype/expense_claim/expense_claim.js index 72fe15cfa1..5b136d0a2e 100644 --- a/hr/doctype/expense_claim/expense_claim.js +++ b/hr/doctype/expense_claim/expense_claim.js @@ -29,7 +29,7 @@ cur_frm.cscript.onload = function(doc,cdt,cdn){ } cur_frm.call({ - method:"get_approver_list", + method:"hr.utils.get_expense_approver_list", callback: function(r) { cur_frm.set_df_property("exp_approver", "options", r.message); } diff --git a/hr/doctype/expense_claim/expense_claim.py b/hr/doctype/expense_claim/expense_claim.py index 0aa9ed80b9..0564d1d085 100644 --- a/hr/doctype/expense_claim/expense_claim.py +++ b/hr/doctype/expense_claim/expense_claim.py @@ -52,12 +52,3 @@ class DocType: if not getlist(self.doclist, 'expense_voucher_details'): msgprint("Please add expense voucher details") raise Exception - -@webnotes.whitelist() -def get_approver_list(): - roles = [r[0] for r in webnotes.conn.sql("""select distinct parent from `tabUserRole` - where role='Expense Approver'""")] - if not roles: - webnotes.msgprint("No Expense Approvers. Please assign 'Expense Approver' \ - Role to atleast one user.") - return roles diff --git a/hr/doctype/leave_application/leave_application.js b/hr/doctype/leave_application/leave_application.js index 025281826c..7f8948a674 100755 --- a/hr/doctype/leave_application/leave_application.js +++ b/hr/doctype/leave_application/leave_application.js @@ -26,7 +26,7 @@ cur_frm.cscript.onload = function(doc, dt, dn) { } cur_frm.set_df_property("leave_approver", "options", ""); cur_frm.call({ - method:"get_approver_list", + method:"hr.utils.get_leave_approver_list", callback: function(r) { cur_frm.set_df_property("leave_approver", "options", $.map(r.message, function(profile) { diff --git a/hr/doctype/leave_application/leave_application.py b/hr/doctype/leave_application/leave_application.py index d34abd88c1..b9f9e5bfef 100755 --- a/hr/doctype/leave_application/leave_application.py +++ b/hr/doctype/leave_application/leave_application.py @@ -18,11 +18,13 @@ from __future__ import unicode_literals import webnotes from webnotes import _ -from webnotes.utils import cint, cstr, date_diff, flt, formatdate, getdate, get_url_to_form +from webnotes.utils import cint, cstr, date_diff, flt, formatdate, getdate, get_url_to_form, \ + comma_or, get_fullname from webnotes import msgprint -class LeaveDayBlockedError(Exception): pass -class OverlapError(Exception): pass +class LeaveDayBlockedError(webnotes.ValidationError): pass +class OverlapError(webnotes.ValidationError): pass +class InvalidLeaveApproverError(webnotes.ValidationError): pass from webnotes.model.controller import DocListController class DocType(DocListController): @@ -39,6 +41,7 @@ class DocType(DocListController): self.validate_max_days() self.show_block_day_warning() self.validate_block_days() + self.validate_leave_approver() def on_update(self): if (not self.previous_doc and self.doc.leave_approver) or (self.previous_doc and \ @@ -156,6 +159,21 @@ class DocType(DocListController): msgprint("Sorry ! You cannot apply for %s for more than %s days" % (self.doc.leave_type, max_days)) raise Exception + def validate_leave_approver(self): + employee = webnotes.bean("Employee", self.doc.employee) + leave_approvers = [l.leave_approver for l in + employee.doclist.get({"parentfield": "employee_leave_approvers"})] + + if len(leave_approvers) and self.doc.leave_approver not in leave_approvers: + msgprint(("[" + _("For Employee") + ' "' + self.doc.employee + '"] ' + + _("Leave Approver can be one of") + ": " + + comma_or(leave_approvers)), raise_exception=InvalidLeaveApproverError) + + elif self.doc.leave_approver and not webnotes.conn.sql("""select name from `tabUserRole` + where parent=%s and role='Leave Approver'""", self.doc.leave_approver): + msgprint(get_fullname(self.doc.leave_approver) + ": " \ + + _("does not have role 'Leave Approver'"), raise_exception=InvalidLeaveApproverError) + def notify_employee(self, status): employee = webnotes.doc("Employee", self.doc.employee) if not employee.user_id: @@ -221,15 +239,6 @@ def get_leave_balance(employee, leave_type, fiscal_year): ret = {'leave_balance': leave_all - leave_app} return ret -@webnotes.whitelist() -def get_approver_list(): - roles = [r[0] for r in webnotes.conn.sql("""select distinct parent from `tabUserRole` - where role='Leave Approver'""")] - if not roles: - webnotes.msgprint("No Leave Approvers. Please assign 'Leave Approver' Role to atleast one user.") - - return roles - def is_lwp(leave_type): lwp = webnotes.conn.sql("select is_lwp from `tabLeave Type` where name = %s", leave_type) return lwp and cint(lwp[0][0]) or 0 diff --git a/hr/doctype/leave_application/test_leave_application.py b/hr/doctype/leave_application/test_leave_application.py index 672e668c1e..338225c45e 100644 --- a/hr/doctype/leave_application/test_leave_application.py +++ b/hr/doctype/leave_application/test_leave_application.py @@ -4,6 +4,23 @@ import unittest from hr.doctype.leave_application.leave_application import LeaveDayBlockedError, OverlapError class TestLeaveApplication(unittest.TestCase): + def _clear_roles(self): + webnotes.conn.sql("""delete from `tabUserRole` where parent in + ("test@example.com", "test1@example.com", "test2@example.com")""") + + def _clear_applications(self): + webnotes.conn.sql("""delete from `tabLeave Application`""") + + def _add_employee_leave_approver(self, employee, leave_approver): + webnotes.session.user = "Administrator" + employee = webnotes.bean("Employee", employee) + employee.doclist.append({ + "doctype": "Employee Leave Approver", + "parentfield": "employee_leave_approvers", + "leave_approver": leave_approver + }) + employee.save() + def get_application(self, doclist): application = webnotes.bean(copy=doclist) application.doc.from_date = "2013-01-01" @@ -11,8 +28,14 @@ class TestLeaveApplication(unittest.TestCase): return application def test_block_list(self): - import webnotes - webnotes.conn.set_value("Department", "_Test Department", "leave_block_list", "_Test Leave Block List") + webnotes.session.user = "Administrator" + self._clear_roles() + + from webnotes.profile import add_role + add_role("test1@example.com", "HR User") + + webnotes.conn.set_value("Department", "_Test Department", + "leave_block_list", "_Test Leave Block List") application = self.get_application(test_records[1]) application.insert() @@ -20,9 +43,6 @@ class TestLeaveApplication(unittest.TestCase): self.assertRaises(LeaveDayBlockedError, application.submit) webnotes.session.user = "test1@example.com" - - from webnotes.profile import add_role - add_role("test1@example.com", "HR User") # clear other applications webnotes.conn.sql("delete from `tabLeave Application`") @@ -31,11 +51,31 @@ class TestLeaveApplication(unittest.TestCase): self.assertTrue(application.insert()) def test_overlap(self): + webnotes.session.user = "Administrator" + self._clear_roles() + self._clear_applications() + + from webnotes.profile import add_role + add_role("test@example.com", "Employee") + add_role("test2@example.com", "Leave Approver") + + webnotes.session.user = "test@example.com" application = self.get_application(test_records[1]) + application.doc.leave_approver = "test2@example.com" + application.insert() + + application = self.get_application(test_records[1]) + application.doc.leave_approver = "test2@example.com" self.assertRaises(OverlapError, application.insert) def test_global_block_list(self): - + webnotes.session.user = "Administrator" + self._clear_roles() + + from webnotes.profile import add_role + add_role("test1@example.com", "Employee") + add_role("test@example.com", "Leave Approver") + application = self.get_application(test_records[3]) application.doc.leave_approver = "test@example.com" @@ -44,19 +84,120 @@ class TestLeaveApplication(unittest.TestCase): webnotes.conn.set_value("Employee", "_T-Employee-0002", "department", "_Test Department") - webnotes.session.user = "test2@example.com" - from webnotes.profile import add_role - add_role("test2@example.com", "Employee") - + webnotes.session.user = "test1@example.com" application.insert() webnotes.session.user = "test@example.com" - from webnotes.profile import add_role - add_role("test@example.com", "Leave Approver") - application.doc.status = "Approved" self.assertRaises(LeaveDayBlockedError, application.submit) + webnotes.conn.set_value("Leave Block List", "_Test Leave Block List", + "applies_to_all_departments", 0) + + def test_leave_approval(self): + webnotes.session.user = "Administrator" + self._clear_roles() + + from webnotes.profile import add_role + add_role("test@example.com", "Employee") + add_role("test1@example.com", "Leave Approver") + add_role("test2@example.com", "Leave Approver") + + self._test_leave_approval_basic_case_1() + self._test_leave_approval_basic_case_2() + self._test_leave_approval_invalid_leave_approver_insert() + self._test_leave_approval_invalid_leave_approver_submit() + self._test_leave_approval_valid_leave_approver_insert() + + def _test_leave_approval_basic_case_1(self): + self._clear_applications() + + # create leave application as Employee + webnotes.session.user = "test@example.com" + application = self.get_application(test_records[1]) + application.doc.leave_approver = "test1@example.com" + application.insert() + + # submit leave application by Leave Approver + webnotes.session.user = "test1@example.com" + application.doc.status = "Approved" + application.submit() + self.assertEqual(webnotes.conn.get_value("Leave Application", application.doc.name, + "docstatus"), 1) + + def _test_leave_approval_basic_case_2(self): + self._clear_applications() + + # create leave application by any leave approver, + # when no leave approver specified in employee's leave approvers list + application = self.get_application(test_records[1]) + application.doc.leave_approver = "test1@example.com" + application.insert() + application.doc.status = "Approved" + application.submit() + self.assertEqual(webnotes.conn.get_value("Leave Application", application.doc.name, + "docstatus"), 1) + + def _test_leave_approval_invalid_leave_approver_insert(self): + from hr.doctype.leave_application.leave_application import InvalidLeaveApproverError + + self._clear_applications() + + # add a different leave approver in the employee's list + # should raise exception if not a valid leave approver + self._add_employee_leave_approver("_T-Employee-0001", "test2@example.com") + + # TODO - add test2@example.com leave approver in employee's leave approvers list + application = self.get_application(test_records[1]) + webnotes.session.user = "test@example.com" + + application.doc.leave_approver = "test1@example.com" + self.assertRaises(InvalidLeaveApproverError, application.insert) + + webnotes.conn.sql("""delete from `tabEmployee Leave Approver` where parent=%s""", + "_T-Employee-0001") + + def _test_leave_approval_invalid_leave_approver_submit(self): + self._clear_applications() + self._add_employee_leave_approver("_T-Employee-0001", "test2@example.com") + + # create leave application as employee + # but submit as invalid leave approver - should raise exception + webnotes.session.user = "test@example.com" + application = self.get_application(test_records[1]) + application.doc.leave_approver = "test2@example.com" + application.insert() + webnotes.session.user = "test1@example.com" + application.doc.status = "Approved" + + from webnotes.model.bean import BeanPermissionError + self.assertRaises(BeanPermissionError, application.submit) + + webnotes.conn.sql("""delete from `tabEmployee Leave Approver` where parent=%s""", + "_T-Employee-0001") + + def _test_leave_approval_valid_leave_approver_insert(self): + self._clear_applications() + self._add_employee_leave_approver("_T-Employee-0001", "test2@example.com") + + original_department = webnotes.conn.get_value("Employee", "_T-Employee-0001", "department") + webnotes.conn.set_value("Employee", "_T-Employee-0001", "department", None) + + # change to valid leave approver and try to create and submit leave application + webnotes.session.user = "test2@example.com" + application = self.get_application(test_records[1]) + application.doc.leave_approver = "test2@example.com" + application.insert() + application.doc.status = "Approved" + application.submit() + self.assertEqual(webnotes.conn.get_value("Leave Application", application.doc.name, + "docstatus"), 1) + + webnotes.conn.sql("""delete from `tabEmployee Leave Approver` where parent=%s""", + "_T-Employee-0001") + + webnotes.conn.set_value("Employee", "_T-Employee-0001", "department", original_department) + test_dependencies = ["Leave Block List"] test_records = [ diff --git a/hr/utils.py b/hr/utils.py new file mode 100644 index 0000000000..0d23a16c44 --- /dev/null +++ b/hr/utils.py @@ -0,0 +1,38 @@ +# ERPNext - web based ERP (http://erpnext.com) +# Copyright (C) 2012 Web Notes Technologies Pvt Ltd +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +from __future__ import unicode_literals +import webnotes +from webnotes import _ + +@webnotes.whitelist() +def get_leave_approver_list(): + roles = [r[0] for r in webnotes.conn.sql("""select distinct parent from `tabUserRole` + where role='Leave Approver'""")] + if not roles: + webnotes.msgprint(_("No Leave Approvers. Please assign 'Leave Approver' Role to atleast one user.")) + + return roles + + +@webnotes.whitelist() +def get_expense_approver_list(): + roles = [r[0] for r in webnotes.conn.sql("""select distinct parent from `tabUserRole` + where role='Expense Approver'""")] + if not roles: + webnotes.msgprint("No Expense Approvers. Please assign 'Expense Approver' \ + Role to atleast one user.") + return roles diff --git a/public/js/startup.js b/public/js/startup.js index 0a6580be94..76f2c264c1 100644 --- a/public/js/startup.js +++ b/public/js/startup.js @@ -136,10 +136,7 @@ erpnext.startup.set_periodic_updates = function() { erpnext.hide_naming_series = function() { if(cur_frm.fields_dict.naming_series) { - hide_field('naming_series'); - if(cur_frm.doc.__islocal) { - unhide_field('naming_series'); - } + cur_frm.toggle_display("naming_series", cur_frm.doc.__islocal?true:false); } } From 13760a1d74de478e6ffe7f9de7e642d952d3e379 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 12 Apr 2013 21:59:22 +0530 Subject: [PATCH 385/982] [employee leave approvers] updated latest_updates.js --- home/page/latest_updates/latest_updates.js | 1 + 1 file changed, 1 insertion(+) diff --git a/home/page/latest_updates/latest_updates.js b/home/page/latest_updates/latest_updates.js index c0bad9405b..949849d8f1 100644 --- a/home/page/latest_updates/latest_updates.js +++ b/home/page/latest_updates/latest_updates.js @@ -1,4 +1,5 @@ erpnext.updates = [ + ["12th April", ["Employee: List of Leave Approvers who can approve the Employee's Leave Applications"]], ["27th March", ["Rename multiple items together. Go to Setup > Rename Tool"]], ["26th March", ["Added project to Stock Ledger and Balance", "Added Default Cash Account in Company."]], From 3b2fd6e334c9b15241cab8c1ee412647206d836c Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Sat, 13 Apr 2013 15:54:38 +0530 Subject: [PATCH 386/982] [sql] [fix] fixed item.py injections --- selling/doctype/sales_common/sales_common.py | 3 +-- stock/doctype/item/item.py | 7 ++++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/selling/doctype/sales_common/sales_common.py b/selling/doctype/sales_common/sales_common.py index b9f9af64d1..7b1528bafe 100644 --- a/selling/doctype/sales_common/sales_common.py +++ b/selling/doctype/sales_common/sales_common.py @@ -125,8 +125,7 @@ class DocType(TransactionBase): def get_item_details(self, args, obj): import json if not obj.doc.price_list_name: - msgprint("Please Select Price List before selecting Items") - raise Exception + msgprint("Please Select Price List before selecting Items", raise_exception=True) item = webnotes.conn.sql("""select description, item_name, brand, item_group, stock_uom, default_warehouse, default_income_account, default_sales_cost_center, purchase_account, description_html, barcode from `tabItem` diff --git a/stock/doctype/item/item.py b/stock/doctype/item/item.py index c0f0a07e52..3486f92027 100644 --- a/stock/doctype/item/item.py +++ b/stock/doctype/item/item.py @@ -39,7 +39,8 @@ class DocType(DocListController): # webpage updates self.update_website() - bin = sql("select stock_uom from `tabBin` where item_code = '%s' " % self.doc.item_code) + bin = sql("select stock_uom from `tabBin` where item_code = %s", + self.doc.item_code) if bin and cstr(bin[0][0]) and cstr(bin[0][0]) != cstr(self.doc.stock_uom): msgprint("Please Update Stock UOM with the help of Stock UOM Replace Utility.") raise Exception @@ -149,7 +150,7 @@ class DocType(DocListController): def check_for_active_boms(self, field_label): if field_label in ['Is Active', 'Is Purchase Item']: - bom_mat = sql("select distinct t1.parent from `tabBOM Item` t1, `tabBOM` t2 where t1.item_code ='%s' and (t1.bom_no = '' or t1.bom_no is NULL) and t2.name = t1.parent and t2.is_active = 1 and t2.docstatus = 1 and t1.docstatus =1 " % self.doc.name ) + bom_mat = sql("select distinct t1.parent from `tabBOM Item` t1, `tabBOM` t2 where t1.item_code =%s and (t1.bom_no = '' or t1.bom_no is NULL) and t2.name = t1.parent and t2.is_active = 1 and t2.docstatus = 1 and t1.docstatus =1 ", self.doc.name) if bom_mat and bom_mat[0][0]: msgprint("%s should be 'Yes'. As Item %s is present in one or many Active BOMs." % (cstr(field_label), cstr(self.doc.name))) raise Exception @@ -157,7 +158,7 @@ class DocType(DocListController): and self.doc.is_sub_contracted_item != 'Yes') or (field_label == 'Is Sub Contracted Item' and self.doc.is_manufactured_item != 'Yes')): - bom = sql("select name from `tabBOM` where item = '%s' and is_active = 1" % cstr(self.doc.name)) + bom = sql("select name from `tabBOM` where item = %s and is_active = 1", self.doc.name) if bom and bom[0][0]: msgprint("%s should be 'Yes'. As Item %s is present in one or many Active BOMs." % (cstr(field_label), cstr(self.doc.name))) raise Exception From 5ed6676193b4d9781e84584cc82f0a48945e06c4 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 15 Apr 2013 10:49:17 +0530 Subject: [PATCH 387/982] [editor] [stylefix] --- website/doctype/website_settings/website_settings.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/doctype/website_settings/website_settings.txt b/website/doctype/website_settings/website_settings.txt index 442663aae4..4b66e098a4 100644 --- a/website/doctype/website_settings/website_settings.txt +++ b/website/doctype/website_settings/website_settings.txt @@ -2,7 +2,7 @@ { "creation": "2013-03-25 16:01:34", "docstatus": 0, - "modified": "2013-03-13 16:25:22", + "modified": "2013-04-12 10:30:18", "modified_by": "Administrator", "owner": "Administrator" }, @@ -50,7 +50,7 @@ "fieldtype": "Link", "label": "Home Page", "options": "Web Page", - "reqd": 1 + "reqd": 0 }, { "description": "The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.", From 69b410a2edd1a418c649619c71e42367b1ca5c49 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 15 Apr 2013 12:34:42 +0530 Subject: [PATCH 388/982] fixes in sales personwise transaction summary report --- .../sales_personwise_transaction_summary.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/selling/search_criteria/sales_personwise_transaction_summary/sales_personwise_transaction_summary.js b/selling/search_criteria/sales_personwise_transaction_summary/sales_personwise_transaction_summary.js index 335df7a6d7..79dd9d5faf 100755 --- a/selling/search_criteria/sales_personwise_transaction_summary/sales_personwise_transaction_summary.js +++ b/selling/search_criteria/sales_personwise_transaction_summary/sales_personwise_transaction_summary.js @@ -39,10 +39,7 @@ report.get_query = function() { sp = this.get_filter('Sales Person', 'Sales Person').get_value(); date_fld = 'transaction_date'; - if(based_on == 'Sales Invoice') { - based_on = 'Sales Invoice'; - date_fld = 'posting_date'; - } + if(based_on == 'Sales Invoice' || based_on == "Delivery Note") date_fld = 'posting_date'; sp_cond = ''; if (from_date) sp_cond += ' AND t1.' + date_fld + '>= "' + from_date + '"'; From ac118c882265064fbbb920ca26d7eac63df8ad1c Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 15 Apr 2013 17:02:20 +0530 Subject: [PATCH 389/982] [cleanup] started responsive layouts and removed tinymce --- .../accounts_browser/accounts_browser.html | 2 +- .../financial_statements.html | 25 +-- hr/doctype/job_applicant/job_applicant.js | 2 +- selling/doctype/lead/lead.js | 2 +- .../doctype/support_ticket/support_ticket.js | 2 +- utilities/page/trash/__init__.py | 1 - utilities/page/trash/trash.html | 4 - utilities/page/trash/trash.js | 144 ------------------ utilities/page/trash/trash.txt | 47 ------ 9 files changed, 5 insertions(+), 224 deletions(-) delete mode 100644 utilities/page/trash/__init__.py delete mode 100644 utilities/page/trash/trash.html delete mode 100644 utilities/page/trash/trash.js delete mode 100644 utilities/page/trash/trash.txt diff --git a/accounts/page/accounts_browser/accounts_browser.html b/accounts/page/accounts_browser/accounts_browser.html index 91a1e26b94..ab487d2522 100644 --- a/accounts/page/accounts_browser/accounts_browser.html +++ b/accounts/page/accounts_browser/accounts_browser.html @@ -1,4 +1,4 @@ -
    +
    diff --git a/accounts/page/financial_statements/financial_statements.html b/accounts/page/financial_statements/financial_statements.html index e6735facdc..1a11950f76 100644 --- a/accounts/page/financial_statements/financial_statements.html +++ b/accounts/page/financial_statements/financial_statements.html @@ -1,28 +1,5 @@ -
    +
    -