From 3c8cffb69bcdc970d639300c212829630859a33a Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 14:23:59 +0530 Subject: [PATCH 01/12] [cleanup] removed Shipping Address, Communication Log --- public/js/gantt_task.js | 90 ------------- .../locale/_messages_doc.json | 13 -- .../communication_log/locale/ar-doc.json | 13 -- .../communication_log/locale/de-doc.json | 13 -- .../communication_log/locale/es-doc.json | 13 -- .../communication_log/locale/fr-doc.json | 13 -- .../communication_log/locale/hi-doc.json | 13 -- .../communication_log/locale/hr-doc.json | 13 -- .../communication_log/locale/nl-doc.json | 13 -- .../communication_log/locale/pt-BR-doc.json | 13 -- .../communication_log/locale/pt-doc.json | 13 -- .../communication_log/locale/sr-doc.json | 13 -- .../communication_log/locale/ta-doc.json | 13 -- .../communication_log/locale/th-doc.json | 13 -- selling/doctype/sales_common/sales_common.py | 9 -- selling/doctype/shipping_address/__init__.py | 1 - .../locale/_messages_doc.json | 13 -- .../shipping_address/locale/ar-doc.json | 13 -- .../shipping_address/locale/de-doc.json | 13 -- .../shipping_address/locale/es-doc.json | 13 -- .../shipping_address/locale/fr-doc.json | 13 -- .../shipping_address/locale/hi-doc.json | 13 -- .../shipping_address/locale/hr-doc.json | 13 -- .../shipping_address/locale/nl-doc.json | 13 -- .../shipping_address/locale/pt-BR-doc.json | 13 -- .../shipping_address/locale/pt-doc.json | 13 -- .../shipping_address/locale/sr-doc.json | 13 -- .../shipping_address/locale/ta-doc.json | 13 -- .../shipping_address/locale/th-doc.json | 13 -- .../shipping_address/shipping_address.js | 22 ---- .../shipping_address/shipping_address.py | 42 ------- .../shipping_address/shipping_address.txt | 119 ------------------ 32 files changed, 621 deletions(-) delete mode 100644 public/js/gantt_task.js delete mode 100644 selling/doctype/communication_log/locale/_messages_doc.json delete mode 100644 selling/doctype/communication_log/locale/ar-doc.json delete mode 100644 selling/doctype/communication_log/locale/de-doc.json delete mode 100644 selling/doctype/communication_log/locale/es-doc.json delete mode 100644 selling/doctype/communication_log/locale/fr-doc.json delete mode 100644 selling/doctype/communication_log/locale/hi-doc.json delete mode 100644 selling/doctype/communication_log/locale/hr-doc.json delete mode 100644 selling/doctype/communication_log/locale/nl-doc.json delete mode 100644 selling/doctype/communication_log/locale/pt-BR-doc.json delete mode 100644 selling/doctype/communication_log/locale/pt-doc.json delete mode 100644 selling/doctype/communication_log/locale/sr-doc.json delete mode 100644 selling/doctype/communication_log/locale/ta-doc.json delete mode 100644 selling/doctype/communication_log/locale/th-doc.json delete mode 100755 selling/doctype/shipping_address/__init__.py delete mode 100644 selling/doctype/shipping_address/locale/_messages_doc.json delete mode 100644 selling/doctype/shipping_address/locale/ar-doc.json delete mode 100644 selling/doctype/shipping_address/locale/de-doc.json delete mode 100644 selling/doctype/shipping_address/locale/es-doc.json delete mode 100644 selling/doctype/shipping_address/locale/fr-doc.json delete mode 100644 selling/doctype/shipping_address/locale/hi-doc.json delete mode 100644 selling/doctype/shipping_address/locale/hr-doc.json delete mode 100644 selling/doctype/shipping_address/locale/nl-doc.json delete mode 100644 selling/doctype/shipping_address/locale/pt-BR-doc.json delete mode 100644 selling/doctype/shipping_address/locale/pt-doc.json delete mode 100644 selling/doctype/shipping_address/locale/sr-doc.json delete mode 100644 selling/doctype/shipping_address/locale/ta-doc.json delete mode 100644 selling/doctype/shipping_address/locale/th-doc.json delete mode 100755 selling/doctype/shipping_address/shipping_address.js delete mode 100755 selling/doctype/shipping_address/shipping_address.py delete mode 100755 selling/doctype/shipping_address/shipping_address.txt diff --git a/public/js/gantt_task.js b/public/js/gantt_task.js deleted file mode 100644 index 6b679cf8bc..0000000000 --- a/public/js/gantt_task.js +++ /dev/null @@ -1,90 +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 . - -// gantt chart for project tasks - -wn.require('lib/js/lib/jQuery.Gantt/css/style.css'); -wn.require('lib/js/lib/jQuery.Gantt/js/jquery.fn.gantt.min.js'); - -erpnext.show_task_gantt = function(parent, project) { - - $(parent).css('min-height', '300px').html('
Loading...
') - - var get_source = function(r) { - var source = []; - // projects - $.each(r.message, function(i,v) { - if(v.exp_start_date && v.exp_end_date) { - source.push({ - name: v.project, - desc: v.subject, - values: [{ - label: v.subject, - desc: v.description || v.subject, - from: '/Date("'+v.exp_start_date+'")/', - to: '/Date("'+v.exp_end_date+'")/', - customClass: { - 'Open':'ganttRed', - 'Pending Review':'ganttOrange', - 'Working':'', - 'Completed':'ganttGreen', - 'Cancelled':'ganttGray' - }[v.status], - dataObj: v - }] - }) - } - }); - return source - } - wn.call({ - method: 'projects.page.projects.projects.get_tasks', - args: { - project: project || '' - }, - callback: function(r) { - $(parent).empty(); - if(!r.message.length) { - $(parent).html('
No Tasks Yet.
'); - } else { - var gantt_area = $('
').appendTo(parent); - gantt_area.gantt({ - source: get_source(r), - navigate: project ? "button" : "scroll", - scale: "weeks", - minScale: "day", - maxScale: "months", - onItemClick: function(data) { - wn.set_route('Form', 'Task', data.name); - }, - onAddClick: function(dt, rowId) { - newdoc('Task'); - } - }); - } - - $('').click(function() { - wn.model.with_doctype('Task', function() { - var new_name = wn.model.make_new_doc_and_get_name('Task'); - if(project) - locals.Task[new_name].project = project; - wn.set_route('Form', 'Task', new_name); - }); - }).appendTo(parent); - } - }) -} diff --git a/selling/doctype/communication_log/locale/_messages_doc.json b/selling/doctype/communication_log/locale/_messages_doc.json deleted file mode 100644 index 652caa0370..0000000000 --- a/selling/doctype/communication_log/locale/_messages_doc.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - "Selling", - "Visit", - "Notes", - "SMS", - "Phone", - "Communication Log", - "Communication type", - "Date", - "Communication by", - "Other", - "Email" -] \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/ar-doc.json b/selling/doctype/communication_log/locale/ar-doc.json deleted file mode 100644 index 051ccc418b..0000000000 --- a/selling/doctype/communication_log/locale/ar-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "\u0633\u062c\u0644 \u0627\u0644\u0627\u062a\u0635\u0627\u0644\u0627\u062a", - "Communication by": "\u0628\u0644\u0627\u063a", - "Communication type": "\u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0646\u0648\u0639", - "Date": "\u062a\u0627\u0631\u064a\u062e", - "Email": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", - "Notes": "\u062a\u0644\u0627\u062d\u0638", - "Other": "\u0622\u062e\u0631", - "Phone": "\u0647\u0627\u062a\u0641", - "SMS": "SMS", - "Selling": "\u0628\u064a\u0639", - "Visit": "\u0632\u064a\u0627\u0631\u0629" -} \ 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 deleted file mode 100644 index 94b0e5ab67..0000000000 --- a/selling/doctype/communication_log/locale/de-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/communication_log/locale/es-doc.json b/selling/doctype/communication_log/locale/es-doc.json deleted file mode 100644 index 446f3bbf3a..0000000000 --- a/selling/doctype/communication_log/locale/es-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "Comunicaci\u00f3n sesi\u00f3n", - "Communication by": "La comunicaci\u00f3n por", - "Communication type": "Tipo de comunicaci\u00f3n", - "Date": "Fecha", - "Email": "Email", - "Notes": "Notas", - "Other": "Otro", - "Phone": "Tel\u00e9fono", - "SMS": "SMS", - "Selling": "De venta", - "Visit": "Visitar" -} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/fr-doc.json b/selling/doctype/communication_log/locale/fr-doc.json deleted file mode 100644 index 91c0ade83c..0000000000 --- a/selling/doctype/communication_log/locale/fr-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "Journal des communications", - "Communication by": "Communication", - "Communication type": "Type de communication", - "Date": "Date", - "Email": "Email", - "Notes": "Remarques", - "Other": "Autre", - "Phone": "T\u00e9l\u00e9phone", - "SMS": "SMS", - "Selling": "Vente", - "Visit": "Visiter" -} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/hi-doc.json b/selling/doctype/communication_log/locale/hi-doc.json deleted file mode 100644 index 166a092a6b..0000000000 --- a/selling/doctype/communication_log/locale/hi-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "\u0938\u0902\u091a\u093e\u0930 \u092a\u094d\u0930\u0935\u0947\u0936 \u0915\u0930\u0947\u0902", - "Communication by": "\u0926\u094d\u0935\u093e\u0930\u093e \u0938\u0902\u091a\u093e\u0930", - "Communication type": "\u0938\u0902\u091a\u093e\u0930 \u092a\u094d\u0930\u0915\u093e\u0930", - "Date": "\u0924\u093e\u0930\u0940\u0916", - "Email": "\u0908\u092e\u0947\u0932", - "Notes": "\u0928\u094b\u091f\u094d\u0938", - "Other": "\u0905\u0928\u094d\u092f", - "Phone": "\u092b\u093c\u094b\u0928", - "SMS": "\u090f\u0938\u090f\u092e\u090f\u0938", - "Selling": "\u0935\u093f\u0915\u094d\u0930\u092f", - "Visit": "\u092d\u0947\u0902\u091f" -} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/hr-doc.json b/selling/doctype/communication_log/locale/hr-doc.json deleted file mode 100644 index b3924760cb..0000000000 --- a/selling/doctype/communication_log/locale/hr-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "Komunikacija Prijava", - "Communication by": "Komunikacija", - "Communication type": "Komunikacija putovanja", - "Date": "Datum", - "Email": "E-mail", - "Notes": "Bilje\u0161ke", - "Other": "Drugi", - "Phone": "Telefon", - "SMS": "SMS", - "Selling": "Prodaja", - "Visit": "Posjetiti" -} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/nl-doc.json b/selling/doctype/communication_log/locale/nl-doc.json deleted file mode 100644 index 78f824bc56..0000000000 --- a/selling/doctype/communication_log/locale/nl-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "Communicatie Inloggen", - "Communication by": "Communicatie door", - "Communication type": "Communicatietype", - "Date": "Datum", - "Email": "E-mail", - "Notes": "Opmerkingen", - "Other": "Ander", - "Phone": "Telefoon", - "SMS": "SMS", - "Selling": "Selling", - "Visit": "Bezoeken" -} \ 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 deleted file mode 100644 index 2eb01f3b01..0000000000 --- a/selling/doctype/communication_log/locale/pt-BR-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/communication_log/locale/pt-doc.json b/selling/doctype/communication_log/locale/pt-doc.json deleted file mode 100644 index 6e293e7e66..0000000000 --- a/selling/doctype/communication_log/locale/pt-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "Log 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": "Vendendo", - "Visit": "Visitar" -} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/sr-doc.json b/selling/doctype/communication_log/locale/sr-doc.json deleted file mode 100644 index 9bbec26d23..0000000000 --- a/selling/doctype/communication_log/locale/sr-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "\u041a\u043e\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u041f\u0440\u0438\u0458\u0430\u0432\u0430", - "Communication by": "\u041a\u043e\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0458\u0430", - "Communication type": "\u041a\u043e\u043c\u0443\u043d\u0438\u043a\u0430\u0446\u0438\u0458\u0430 \u0442\u0438\u043f\u0430", - "Date": "\u0414\u0430\u0442\u0443\u043c", - "Email": "\u0415-\u043c\u0430\u0438\u043b", - "Notes": "\u0411\u0435\u043b\u0435\u0448\u043a\u0435", - "Other": "\u0414\u0440\u0443\u0433\u0438", - "Phone": "\u0422\u0435\u043b\u0435\u0444\u043e\u043d", - "SMS": "\u0421\u041c\u0421", - "Selling": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430", - "Visit": "\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u0438" -} \ No newline at end of file diff --git a/selling/doctype/communication_log/locale/ta-doc.json b/selling/doctype/communication_log/locale/ta-doc.json deleted file mode 100644 index 2d3a526816..0000000000 --- a/selling/doctype/communication_log/locale/ta-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Communication Log": "\u0ba4\u0bc6\u0bbe\u0b9f\u0bb0\u0bcd\u0baa\u0bc1 \u0baa\u0bc1\u0b95\u0bc1\u0baa\u0ba4\u0bbf\u0b95\u0bc8", - "Communication by": "\u0bae\u0bc2\u0bb2\u0bae\u0bcd \u0ba4\u0b95\u0bb5\u0bb2\u0bcd", - "Communication type": "\u0ba4\u0b95\u0bb5\u0bb2\u0bcd \u0bb5\u0b95\u0bc8", - "Date": "\u0ba4\u0bc7\u0ba4\u0bbf", - "Email": "\u0bae\u0bbf\u0ba9\u0bcd\u0ba9\u0b9e\u0bcd\u0b9a\u0bb2\u0bcd", - "Notes": "\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd", - "Other": "\u0bb5\u0bc7\u0bb1\u0bc1", - "Phone": "\u0ba4\u0bc6\u0bbe\u0bb2\u0bc8\u0baa\u0bc7\u0b9a\u0bbf", - "SMS": "\u0b8e\u0bb8\u0bcd\u0b8e\u0bae\u0bcd\u0b8e\u0bb8\u0bcd", - "Selling": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8", - "Visit": "\u0bb5\u0bb0\u0bc1\u0b95\u0bc8" -} \ 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 deleted file mode 100644 index 1942a9f02b..0000000000 --- a/selling/doctype/communication_log/locale/th-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/sales_common/sales_common.py b/selling/doctype/sales_common/sales_common.py index 5068ad3b21..c524a92773 100644 --- a/selling/doctype/sales_common/sales_common.py +++ b/selling/doctype/sales_common/sales_common.py @@ -65,15 +65,6 @@ class DocType(TransactionBase): obj.doc.customer_address = c['contact_address'] - # Get customer's primary shipping details - # ============================================================== - def get_shipping_details(self, obj = ''): - det = webnotes.conn.sql("select name, ship_to, shipping_address from `tabShipping Address` where customer = '%s' and docstatus != 2 and ifnull(is_primary_address, 'Yes') = 'Yes'" %(obj.doc.customer), as_dict = 1) - obj.doc.ship_det_no = det and det[0]['name'] or '' - obj.doc.ship_to = det and det[0]['ship_to'] or '' - obj.doc.shipping_address = det and det[0]['shipping_address'] or '' - - # get invoice details # ==================== def get_invoice_details(self, obj = ''): diff --git a/selling/doctype/shipping_address/__init__.py b/selling/doctype/shipping_address/__init__.py deleted file mode 100755 index baffc48825..0000000000 --- a/selling/doctype/shipping_address/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/selling/doctype/shipping_address/locale/_messages_doc.json b/selling/doctype/shipping_address/locale/_messages_doc.json deleted file mode 100644 index 38b52b8bb4..0000000000 --- a/selling/doctype/shipping_address/locale/_messages_doc.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - "Customer", - "Trash Reason", - "Selling", - "Ship To", - "No", - "Customer Address", - "Shipping Address", - "Customer Name", - "Shipping Details", - "Yes", - "Is Primary Address" -] \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/ar-doc.json b/selling/doctype/shipping_address/locale/ar-doc.json deleted file mode 100644 index 8c4191005c..0000000000 --- a/selling/doctype/shipping_address/locale/ar-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "\u0632\u0628\u0648\u0646", - "Customer Address": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0639\u0645\u0644\u0627\u0621", - "Customer Name": "\u0627\u0633\u0645 \u0627\u0644\u0639\u0645\u064a\u0644", - "Is Primary Address": "\u0647\u0648 \u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0626\u064a\u0633\u064a", - "No": "\u0644\u0627", - "Selling": "\u0628\u064a\u0639", - "Ship To": "\u0627\u0644\u0633\u0641\u064a\u0646\u0629", - "Shipping Address": "\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0634\u062d\u0646", - "Shipping Details": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0634\u062d\u0646", - "Trash Reason": "\u0627\u0644\u0633\u0628\u0628 \u0627\u0644\u0642\u0645\u0627\u0645\u0629", - "Yes": "\u0646\u0639\u0645" -} \ 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 deleted file mode 100644 index a084f0eb50..0000000000 --- a/selling/doctype/shipping_address/locale/de-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/shipping_address/locale/es-doc.json b/selling/doctype/shipping_address/locale/es-doc.json deleted file mode 100644 index c95011f863..0000000000 --- a/selling/doctype/shipping_address/locale/es-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "Cliente", - "Customer Address": "Direcci\u00f3n del cliente", - "Customer Name": "Nombre del cliente", - "Is Primary Address": "Es la direcci\u00f3n primaria", - "No": "No", - "Selling": "De venta", - "Ship To": "Enviamos", - "Shipping Address": "Direcci\u00f3n de env\u00edo", - "Shipping Details": "Detalles del env\u00edo", - "Trash Reason": "Trash Raz\u00f3n", - "Yes": "S\u00ed" -} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/fr-doc.json b/selling/doctype/shipping_address/locale/fr-doc.json deleted file mode 100644 index 4ba09be5c0..0000000000 --- a/selling/doctype/shipping_address/locale/fr-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "Client", - "Customer Address": "Adresse du client", - "Customer Name": "Nom du client", - "Is Primary Address": "Est-Adresse principale", - "No": "Aucun", - "Selling": "Vente", - "Ship To": "Exp\u00e9dier \u00e0", - "Shipping Address": "Adresse de livraison", - "Shipping Details": "D\u00e9tails d'Envoi", - "Trash Reason": "Raison Corbeille", - "Yes": "Oui" -} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/hi-doc.json b/selling/doctype/shipping_address/locale/hi-doc.json deleted file mode 100644 index 743bdd6760..0000000000 --- a/selling/doctype/shipping_address/locale/hi-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "\u0917\u094d\u0930\u093e\u0939\u0915", - "Customer Address": "\u0917\u094d\u0930\u093e\u0939\u0915 \u092a\u0924\u093e", - "Customer Name": "\u0917\u094d\u0930\u093e\u0939\u0915 \u0915\u093e \u0928\u093e\u092e", - "Is Primary Address": "\u092a\u094d\u0930\u093e\u0925\u092e\u093f\u0915 \u092a\u0924\u093e", - "No": "\u0928\u0939\u0940\u0902", - "Selling": "\u0935\u093f\u0915\u094d\u0930\u092f", - "Ship To": "\u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0936\u093f\u092a", - "Shipping Address": "\u0936\u093f\u092a\u093f\u0902\u0917 \u092a\u0924\u093e", - "Shipping Details": "\u0936\u093f\u092a\u093f\u0902\u0917 \u0935\u093f\u0935\u0930\u0923", - "Trash Reason": "\u091f\u094d\u0930\u0948\u0936 \u0915\u093e\u0930\u0923", - "Yes": "\u0939\u093e\u0902" -} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/hr-doc.json b/selling/doctype/shipping_address/locale/hr-doc.json deleted file mode 100644 index dbe0c57b25..0000000000 --- a/selling/doctype/shipping_address/locale/hr-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "Kupac", - "Customer Address": "Kupac Adresa", - "Customer Name": "Naziv klijenta", - "Is Primary Address": "Je Osnovna adresa", - "No": "Ne", - "Selling": "Prodaja", - "Ship To": "Brod za", - "Shipping Address": "Dostava Adresa", - "Shipping Details": "Dostava Detalji", - "Trash Reason": "Otpad Razlog", - "Yes": "Da" -} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/nl-doc.json b/selling/doctype/shipping_address/locale/nl-doc.json deleted file mode 100644 index 0a31c50b38..0000000000 --- a/selling/doctype/shipping_address/locale/nl-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "Klant", - "Customer Address": "Klant Adres", - "Customer Name": "Klantnaam", - "Is Primary Address": "Is Primair adres", - "No": "Geen", - "Selling": "Selling", - "Ship To": "Verzendadres", - "Shipping Address": "Verzendadres", - "Shipping Details": "Verzendgegevens", - "Trash Reason": "Trash Reden", - "Yes": "Ja" -} \ 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 deleted file mode 100644 index 981a0640a6..0000000000 --- a/selling/doctype/shipping_address/locale/pt-BR-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/shipping_address/locale/pt-doc.json b/selling/doctype/shipping_address/locale/pt-doc.json deleted file mode 100644 index 2711c5a969..0000000000 --- a/selling/doctype/shipping_address/locale/pt-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "Cliente", - "Customer Address": "Endere\u00e7o do cliente", - "Customer Name": "Nome do cliente", - "Is Primary Address": "\u00c9 o endere\u00e7o prim\u00e1rio", - "No": "N\u00e3o", - "Selling": "Vendendo", - "Ship To": "Enviar Para", - "Shipping Address": "Endere\u00e7o para envio", - "Shipping Details": "Detalhes de envio", - "Trash Reason": "Raz\u00e3o lixo", - "Yes": "Sim" -} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/sr-doc.json b/selling/doctype/shipping_address/locale/sr-doc.json deleted file mode 100644 index 169e4fd1d9..0000000000 --- a/selling/doctype/shipping_address/locale/sr-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "\u041a\u0443\u043f\u0430\u0446", - "Customer Address": "\u041a\u043e\u0440\u0438\u0441\u043d\u0438\u0447\u043a\u0438 \u0410\u0434\u0440\u0435\u0441\u0430", - "Customer Name": "\u0418\u043c\u0435 \u043a\u043b\u0438\u0458\u0435\u043d\u0442\u0430", - "Is Primary Address": "\u0408\u0435 \u043f\u0440\u0438\u043c\u0430\u0440\u043d\u0430 \u0430\u0434\u0440\u0435\u0441\u0430", - "No": "\u041d\u0435", - "Selling": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430", - "Ship To": "\u0411\u0440\u043e\u0434 \u0431\u0438", - "Shipping Address": "\u0410\u0434\u0440\u0435\u0441\u0430 \u0438\u0441\u043f\u043e\u0440\u0443\u043a\u0435", - "Shipping Details": "\u0414\u043e\u0441\u0442\u0430\u0432\u0430 \u0414\u0435\u0442\u0430\u0459\u0438", - "Trash Reason": "\u0421\u043c\u0435\u045b\u0435 \u0420\u0430\u0437\u043b\u043e\u0433", - "Yes": "\u0414\u0430" -} \ No newline at end of file diff --git a/selling/doctype/shipping_address/locale/ta-doc.json b/selling/doctype/shipping_address/locale/ta-doc.json deleted file mode 100644 index b9e04b40c6..0000000000 --- a/selling/doctype/shipping_address/locale/ta-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Customer": "\u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd", - "Customer Address": "\u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", - "Customer Name": "\u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bcd", - "Is Primary Address": "\u0bae\u0bc1\u0ba4\u0ba9\u0bcd\u0bae\u0bc8 \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf \u0b87\u0bb2\u0bcd\u0bb2\u0bc8", - "No": "\u0b87\u0bb2\u0bcd\u0bb2\u0bc8", - "Selling": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8", - "Ship To": "\u0b95\u0baa\u0bcd\u0baa\u0bb2\u0bcd", - "Shipping Address": "\u0b95\u0baa\u0bcd\u0baa\u0bb2\u0bcd \u0bae\u0bc1\u0b95\u0bb5\u0bb0\u0bbf", - "Shipping Details": "\u0b95\u0baa\u0bcd\u0baa\u0bb2\u0bcd \u0bb5\u0bbf\u0bb5\u0bb0\u0bae\u0bcd", - "Trash Reason": "\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0b95\u0bbe\u0bb0\u0ba3\u0bae\u0bcd", - "Yes": "\u0b86\u0bae\u0bcd" -} \ 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 deleted file mode 100644 index 1ada6757a5..0000000000 --- a/selling/doctype/shipping_address/locale/th-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/shipping_address/shipping_address.js b/selling/doctype/shipping_address/shipping_address.js deleted file mode 100755 index deea4ed445..0000000000 --- a/selling/doctype/shipping_address/shipping_address.js +++ /dev/null @@ -1,22 +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 . - -// Get Customer Details -// ===================================================================== -cur_frm.add_fetch('customer','customer_name','customer_name'); -cur_frm.add_fetch('customer','address','customer_address'); - -cur_frm.fields_dict.customer.get_query = erpnext.utils.customer_query; \ No newline at end of file diff --git a/selling/doctype/shipping_address/shipping_address.py b/selling/doctype/shipping_address/shipping_address.py deleted file mode 100755 index ac50d44a08..0000000000 --- a/selling/doctype/shipping_address/shipping_address.py +++ /dev/null @@ -1,42 +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 -sql = webnotes.conn.sql - -class DocType: - def __init__(self, d, dl): - self.doc, self.doclist = d, dl - - # on update - # ---------- - def on_update(self): - self.update_primary_shipping_address() - self.get_customer_details() - - # set is_primary_address for other shipping addresses belonging to same customer - # ------------------------------------------------------------------------------- - def update_primary_shipping_address(self): - if self.doc.is_primary_address == 'Yes': - sql("update `tabShipping Address` set is_primary_address = 'No' where customer = %s and is_primary_address = 'Yes' and name != %s",(self.doc.customer, self.doc.name)) - - # Get Customer Details - # --------------------- - def get_customer_details(self): - det = sql("select customer_name, address from tabCustomer where name = '%s'" % (self.doc.customer)) - self.doc.customer_name = det and det[0][0] or '' - self.doc.customer_address = det and det[0][1] or '' diff --git a/selling/doctype/shipping_address/shipping_address.txt b/selling/doctype/shipping_address/shipping_address.txt deleted file mode 100755 index 4243704177..0000000000 --- a/selling/doctype/shipping_address/shipping_address.txt +++ /dev/null @@ -1,119 +0,0 @@ -[ - { - "creation": "2013-01-10 16:34:22", - "docstatus": 0, - "modified": "2013-01-22 14:57:24", - "modified_by": "Administrator", - "owner": "Administrator" - }, - { - "autoname": "SA.#####", - "doctype": "DocType", - "document_type": "Master", - "module": "Selling", - "name": "__common__", - "search_fields": "customer, ship_to, shipping_address" - }, - { - "doctype": "DocField", - "name": "__common__", - "parent": "Shipping Address", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0 - }, - { - "cancel": 1, - "create": 1, - "doctype": "DocPerm", - "name": "__common__", - "parent": "Shipping Address", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "read": 1, - "report": 1, - "submit": 0, - "write": 1 - }, - { - "doctype": "DocType", - "name": "Shipping Address" - }, - { - "doctype": "DocField", - "fieldname": "column_break0", - "fieldtype": "Column Break", - "width": "50%" - }, - { - "doctype": "DocField", - "fieldname": "customer", - "fieldtype": "Link", - "label": "Customer", - "options": "Customer", - "reqd": 1 - }, - { - "doctype": "DocField", - "fieldname": "customer_name", - "fieldtype": "Data", - "label": "Customer Name", - "read_only": 1 - }, - { - "doctype": "DocField", - "fieldname": "customer_address", - "fieldtype": "Text", - "label": "Customer Address", - "read_only": 1 - }, - { - "doctype": "DocField", - "fieldname": "ship_to", - "fieldtype": "Data", - "label": "Ship To", - "reqd": 1 - }, - { - "doctype": "DocField", - "fieldname": "shipping_address", - "fieldtype": "Text", - "label": "Shipping Address", - "reqd": 1 - }, - { - "doctype": "DocField", - "fieldname": "column_break1", - "fieldtype": "Column Break", - "width": "50%" - }, - { - "doctype": "DocField", - "fieldname": "is_primary_address", - "fieldtype": "Select", - "label": "Is Primary Address", - "options": "Yes\nNo" - }, - { - "doctype": "DocField", - "fieldname": "shipping_details", - "fieldtype": "Text Editor", - "label": "Shipping Details" - }, - { - "doctype": "DocField", - "fieldname": "trash_reason", - "fieldtype": "Small Text", - "label": "Trash Reason", - "read_only": 1 - }, - { - "doctype": "DocPerm", - "role": "Sales Master Manager" - }, - { - "doctype": "DocPerm", - "role": "Sales Manager" - } -] \ No newline at end of file From 0b61c2e10f11da5d071efe3adc45168befa70550 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 14:24:25 +0530 Subject: [PATCH 02/12] [docs] added readme for selling --- selling/README.md | 6 ++++++ selling/doctype/campaign/README.md | 1 + selling/doctype/customer/README.md | 1 + selling/doctype/industry_type/README.md | 1 + selling/doctype/installation_note/README.md | 1 + selling/doctype/installation_note_item/README.md | 1 + selling/doctype/lead/README.md | 1 + selling/doctype/opportunity/README.md | 1 + selling/doctype/opportunity_item/README.md | 1 + selling/doctype/quotation/README.md | 1 + selling/doctype/quotation_item/README.md | 1 + selling/doctype/sales_common/README.md | 1 + selling/doctype/sales_order/README.md | 1 + selling/doctype/sales_order_item/README.md | 1 + selling/doctype/sales_team/README.md | 1 + selling/doctype/sms_center/README.md | 1 + selling/page/sales_analytics/README.md | 1 + selling/page/sales_browser/README.md | 1 + 18 files changed, 23 insertions(+) create mode 100644 selling/README.md create mode 100644 selling/doctype/campaign/README.md create mode 100644 selling/doctype/customer/README.md create mode 100644 selling/doctype/industry_type/README.md create mode 100644 selling/doctype/installation_note/README.md create mode 100644 selling/doctype/installation_note_item/README.md create mode 100644 selling/doctype/lead/README.md create mode 100644 selling/doctype/opportunity/README.md create mode 100644 selling/doctype/opportunity_item/README.md create mode 100644 selling/doctype/quotation/README.md create mode 100644 selling/doctype/quotation_item/README.md create mode 100644 selling/doctype/sales_common/README.md create mode 100644 selling/doctype/sales_order/README.md create mode 100644 selling/doctype/sales_order_item/README.md create mode 100644 selling/doctype/sales_team/README.md create mode 100644 selling/doctype/sms_center/README.md create mode 100644 selling/page/sales_analytics/README.md create mode 100644 selling/page/sales_browser/README.md diff --git a/selling/README.md b/selling/README.md new file mode 100644 index 0000000000..db05132a9d --- /dev/null +++ b/selling/README.md @@ -0,0 +1,6 @@ +Selling management module. Includes forms for capturing / managing the sales process. + +- Lead +- Opportunity +- Quotation +- Sales Order \ No newline at end of file diff --git a/selling/doctype/campaign/README.md b/selling/doctype/campaign/README.md new file mode 100644 index 0000000000..a837318402 --- /dev/null +++ b/selling/doctype/campaign/README.md @@ -0,0 +1 @@ +Sales campaign / promotion, like special discount, exhibition, newsletter etc. \ No newline at end of file diff --git a/selling/doctype/customer/README.md b/selling/doctype/customer/README.md new file mode 100644 index 0000000000..9a641a604d --- /dev/null +++ b/selling/doctype/customer/README.md @@ -0,0 +1 @@ +Customer master. \ No newline at end of file diff --git a/selling/doctype/industry_type/README.md b/selling/doctype/industry_type/README.md new file mode 100644 index 0000000000..94856ab704 --- /dev/null +++ b/selling/doctype/industry_type/README.md @@ -0,0 +1 @@ +Type of industry for a Customer. \ No newline at end of file diff --git a/selling/doctype/installation_note/README.md b/selling/doctype/installation_note/README.md new file mode 100644 index 0000000000..b0190c90d8 --- /dev/null +++ b/selling/doctype/installation_note/README.md @@ -0,0 +1 @@ +Details of product installation at Customer location. \ No newline at end of file diff --git a/selling/doctype/installation_note_item/README.md b/selling/doctype/installation_note_item/README.md new file mode 100644 index 0000000000..49d7eecc9c --- /dev/null +++ b/selling/doctype/installation_note_item/README.md @@ -0,0 +1 @@ +Detail of Item installed as a part of Installation Note. \ No newline at end of file diff --git a/selling/doctype/lead/README.md b/selling/doctype/lead/README.md new file mode 100644 index 0000000000..a12dcf6b8e --- /dev/null +++ b/selling/doctype/lead/README.md @@ -0,0 +1 @@ +Prospective customer / prospect database. List of all prospects that could be source of business. \ No newline at end of file diff --git a/selling/doctype/opportunity/README.md b/selling/doctype/opportunity/README.md new file mode 100644 index 0000000000..6017b4c0e5 --- /dev/null +++ b/selling/doctype/opportunity/README.md @@ -0,0 +1 @@ +Potential sales opportunity (deal) from a Lead or Customer. \ No newline at end of file diff --git a/selling/doctype/opportunity_item/README.md b/selling/doctype/opportunity_item/README.md new file mode 100644 index 0000000000..810c10bb69 --- /dev/null +++ b/selling/doctype/opportunity_item/README.md @@ -0,0 +1 @@ +Items considered in the parent Opportunity. \ No newline at end of file diff --git a/selling/doctype/quotation/README.md b/selling/doctype/quotation/README.md new file mode 100644 index 0000000000..d51bab5215 --- /dev/null +++ b/selling/doctype/quotation/README.md @@ -0,0 +1 @@ +Price + terms quote sent to Lead or Customer. \ No newline at end of file diff --git a/selling/doctype/quotation_item/README.md b/selling/doctype/quotation_item/README.md new file mode 100644 index 0000000000..c89b6332be --- /dev/null +++ b/selling/doctype/quotation_item/README.md @@ -0,0 +1 @@ +Item details (qty, rate) in parent Quotation. \ No newline at end of file diff --git a/selling/doctype/sales_common/README.md b/selling/doctype/sales_common/README.md new file mode 100644 index 0000000000..1c029d250b --- /dev/null +++ b/selling/doctype/sales_common/README.md @@ -0,0 +1 @@ +Common scripts used in Sales Cycle. \ No newline at end of file diff --git a/selling/doctype/sales_order/README.md b/selling/doctype/sales_order/README.md new file mode 100644 index 0000000000..e816a0e54b --- /dev/null +++ b/selling/doctype/sales_order/README.md @@ -0,0 +1 @@ +Confirmed order received from Customer (either against a PO or a payment). All fulfilment details (shipments, billing) are tracked against the Sales Order. \ No newline at end of file diff --git a/selling/doctype/sales_order_item/README.md b/selling/doctype/sales_order_item/README.md new file mode 100644 index 0000000000..4ed510e077 --- /dev/null +++ b/selling/doctype/sales_order_item/README.md @@ -0,0 +1 @@ +Item detail in parent Sales Order. \ No newline at end of file diff --git a/selling/doctype/sales_team/README.md b/selling/doctype/sales_team/README.md new file mode 100644 index 0000000000..e41d5ba085 --- /dev/null +++ b/selling/doctype/sales_team/README.md @@ -0,0 +1 @@ +Sales Person involved in parent Quotation, Sales Order. \ No newline at end of file diff --git a/selling/doctype/sms_center/README.md b/selling/doctype/sms_center/README.md new file mode 100644 index 0000000000..d0289e74ac --- /dev/null +++ b/selling/doctype/sms_center/README.md @@ -0,0 +1 @@ +Tool to send Bulk SMS to Lead or Contacts. \ No newline at end of file diff --git a/selling/page/sales_analytics/README.md b/selling/page/sales_analytics/README.md new file mode 100644 index 0000000000..11994c26b9 --- /dev/null +++ b/selling/page/sales_analytics/README.md @@ -0,0 +1 @@ +Trends of sales by Item, Item Group, Customer etc. \ No newline at end of file diff --git a/selling/page/sales_browser/README.md b/selling/page/sales_browser/README.md new file mode 100644 index 0000000000..d6a20e10e7 --- /dev/null +++ b/selling/page/sales_browser/README.md @@ -0,0 +1 @@ +Tree editor for Territory, Customer Group, Item Group, Sales Partner \ No newline at end of file From 9025b27858e99480f4b8397bf59dbae6a83b54e7 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 14:28:55 +0530 Subject: [PATCH 03/12] [cleanup] removed Project Activity, Project Activity Update, Project Control, projects (page) --- .../locale/_messages_doc.json | 14 -- .../project_activity/locale/ar-doc.json | 35 ---- .../project_activity/locale/de-doc.json | 14 -- .../project_activity/locale/es-doc.json | 35 ---- .../project_activity/locale/fr-doc.json | 35 ---- .../project_activity/locale/hi-doc.json | 35 ---- .../project_activity/locale/hr-doc.json | 35 ---- .../project_activity/locale/nl-doc.json | 35 ---- .../project_activity/locale/pt-BR-doc.json | 14 -- .../project_activity/locale/pt-doc.json | 35 ---- .../project_activity/locale/sr-doc.json | 35 ---- .../project_activity/locale/ta-doc.json | 35 ---- .../project_activity/locale/th-doc.json | 35 ---- .../locale/_messages_doc.json | 7 - .../locale/ar-doc.json | 7 - .../locale/de-doc.json | 7 - .../locale/es-doc.json | 7 - .../locale/fr-doc.json | 7 - .../locale/hi-doc.json | 7 - .../locale/hr-doc.json | 7 - .../locale/nl-doc.json | 7 - .../locale/pt-BR-doc.json | 7 - .../locale/pt-doc.json | 7 - .../locale/sr-doc.json | 7 - .../locale/ta-doc.json | 7 - .../locale/th-doc.json | 7 - projects/doctype/project_control/__init__.py | 1 - .../project_control/locale/_messages_doc.json | 4 - .../project_control/locale/ar-doc.json | 4 - .../project_control/locale/de-doc.json | 4 - .../project_control/locale/es-doc.json | 4 - .../project_control/locale/fr-doc.json | 4 - .../project_control/locale/hi-doc.json | 4 - .../project_control/locale/hr-doc.json | 4 - .../project_control/locale/nl-doc.json | 4 - .../project_control/locale/pt-BR-doc.json | 4 - .../project_control/locale/pt-doc.json | 4 - .../project_control/locale/sr-doc.json | 4 - .../project_control/locale/ta-doc.json | 4 - .../project_control/locale/th-doc.json | 4 - .../project_control/project_control.py | 153 ------------------ projects/page/projects/__init__.py | 1 - projects/page/projects/projects.css | 6 - projects/page/projects/projects.html | 0 projects/page/projects/projects.js | 24 --- projects/page/projects/projects.py | 29 ---- projects/page/projects/projects.txt | 31 ---- 47 files changed, 780 deletions(-) delete mode 100644 projects/doctype/project_activity/locale/_messages_doc.json delete mode 100644 projects/doctype/project_activity/locale/ar-doc.json delete mode 100644 projects/doctype/project_activity/locale/de-doc.json delete mode 100644 projects/doctype/project_activity/locale/es-doc.json delete mode 100644 projects/doctype/project_activity/locale/fr-doc.json delete mode 100644 projects/doctype/project_activity/locale/hi-doc.json delete mode 100644 projects/doctype/project_activity/locale/hr-doc.json delete mode 100644 projects/doctype/project_activity/locale/nl-doc.json delete mode 100644 projects/doctype/project_activity/locale/pt-BR-doc.json delete mode 100644 projects/doctype/project_activity/locale/pt-doc.json delete mode 100644 projects/doctype/project_activity/locale/sr-doc.json delete mode 100644 projects/doctype/project_activity/locale/ta-doc.json delete mode 100644 projects/doctype/project_activity/locale/th-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/_messages_doc.json delete mode 100644 projects/doctype/project_activity_update/locale/ar-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/de-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/es-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/fr-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/hi-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/hr-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/nl-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/pt-BR-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/pt-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/sr-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/ta-doc.json delete mode 100644 projects/doctype/project_activity_update/locale/th-doc.json delete mode 100644 projects/doctype/project_control/__init__.py delete mode 100644 projects/doctype/project_control/locale/_messages_doc.json delete mode 100644 projects/doctype/project_control/locale/ar-doc.json delete mode 100644 projects/doctype/project_control/locale/de-doc.json delete mode 100644 projects/doctype/project_control/locale/es-doc.json delete mode 100644 projects/doctype/project_control/locale/fr-doc.json delete mode 100644 projects/doctype/project_control/locale/hi-doc.json delete mode 100644 projects/doctype/project_control/locale/hr-doc.json delete mode 100644 projects/doctype/project_control/locale/nl-doc.json delete mode 100644 projects/doctype/project_control/locale/pt-BR-doc.json delete mode 100644 projects/doctype/project_control/locale/pt-doc.json delete mode 100644 projects/doctype/project_control/locale/sr-doc.json delete mode 100644 projects/doctype/project_control/locale/ta-doc.json delete mode 100644 projects/doctype/project_control/locale/th-doc.json delete mode 100644 projects/doctype/project_control/project_control.py delete mode 100644 projects/page/projects/__init__.py delete mode 100644 projects/page/projects/projects.css delete mode 100644 projects/page/projects/projects.html delete mode 100644 projects/page/projects/projects.js delete mode 100644 projects/page/projects/projects.py delete mode 100644 projects/page/projects/projects.txt diff --git a/projects/doctype/project_activity/locale/_messages_doc.json b/projects/doctype/project_activity/locale/_messages_doc.json deleted file mode 100644 index f1d2810044..0000000000 --- a/projects/doctype/project_activity/locale/_messages_doc.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - "Percent Complete", - "New Update", - "Add", - "Updates HTML", - "Activity Name", - "Hours", - "Updates", - "Last Update By", - "Projects", - "Last Update", - "Project Activity", - "Project" -] \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/ar-doc.json b/projects/doctype/project_activity/locale/ar-doc.json deleted file mode 100644 index 8a2c3514e5..0000000000 --- a/projects/doctype/project_activity/locale/ar-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "\u0627\u0633\u0645 \u0627\u0644\u0646\u0634\u0627\u0637", - "Add": "\u0625\u0636\u0627\u0641\u0629", - "Hours": "\u0633\u0627\u0639\u0627\u062a", - "Last Update": "\u0622\u062e\u0631 \u062a\u062d\u062f\u064a\u062b", - "Last Update By": "\u0622\u062e\u0631 \u062a\u062d\u062f\u064a\u062b \u0628\u0648\u0627\u0633\u0637\u0629", - "New Update": "\u062a\u062d\u062f\u064a\u062b\u0627\u062a \u062c\u062f\u064a\u062f\u0629", - "Percent Complete": "\u0643\u0627\u0645\u0644\u0629 \u0641\u064a \u0627\u0644\u0645\u0626\u0629", - "Project": "\u0645\u0634\u0631\u0648\u0639", - "Project Activity": "\u0645\u0634\u0631\u0648\u0639 \u0646\u0634\u0627\u0637", - "Projects": "\u0645\u0634\u0627\u0631\u064a\u0639", - "Updates": "\u062a\u062d\u062f\u064a\u062b\u0627\u062a", - "Updates HTML": "\u062a\u062d\u062f\u064a\u062b\u0627\u062a HTML" -} \ 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 deleted file mode 100644 index f436f5a6e5..0000000000 --- a/projects/doctype/project_activity/locale/de-doc.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "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/locale/es-doc.json b/projects/doctype/project_activity/locale/es-doc.json deleted file mode 100644 index e735bb6a24..0000000000 --- a/projects/doctype/project_activity/locale/es-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "Nombre de la actividad", - "Add": "A\u00f1adir", - "Hours": "Horas", - "Last Update": "\u00daltima actualizaci\u00f3n", - "Last Update By": "Ultima actualizaci\u00f3n por", - "New Update": "Nueva Actualizaci\u00f3n", - "Percent Complete": "Porcentaje completado", - "Project": "Proyecto", - "Project Activity": "Actividad del Proyecto", - "Projects": "Proyectos", - "Updates": "Actualizaciones", - "Updates HTML": "Actualizaciones HTML" -} \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/fr-doc.json b/projects/doctype/project_activity/locale/fr-doc.json deleted file mode 100644 index c0336efaca..0000000000 --- a/projects/doctype/project_activity/locale/fr-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "Nom de l'activit\u00e9", - "Add": "Ajouter", - "Hours": "Heures", - "Last Update": "Derni\u00e8re mise \u00e0 jour", - "Last Update By": "Derni\u00e8re mise \u00e0 jour par", - "New Update": "Nouvelle mise \u00e0 jour", - "Percent Complete": "Pour cent complet", - "Project": "Projet", - "Project Activity": "Activit\u00e9 du projet", - "Projects": "Projets", - "Updates": "Mises \u00e0 jour", - "Updates HTML": "Mises \u00e0 jour HTML" -} \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/hi-doc.json b/projects/doctype/project_activity/locale/hi-doc.json deleted file mode 100644 index c8c6be616f..0000000000 --- a/projects/doctype/project_activity/locale/hi-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "\u0917\u0924\u093f\u0935\u093f\u0927\u093f \u0928\u093e\u092e", - "Add": "\u091c\u094b\u0921\u093c\u0928\u093e", - "Hours": "\u0918\u0902\u091f\u0947", - "Last Update": "\u0905\u0902\u0924\u093f\u092e \u0905\u0926\u094d\u092f\u0924\u0928", - "Last Update By": "\u0926\u094d\u0935\u093e\u0930\u093e \u0905\u0902\u0924\u093f\u092e \u0905\u0926\u094d\u092f\u0924\u0928", - "New Update": "\u0928\u0908 \u0905\u0926\u094d\u092f\u0924\u0928", - "Percent Complete": "\u092a\u0942\u0930\u093e \u092a\u094d\u0930\u0924\u093f\u0936\u0924", - "Project": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e", - "Project Activity": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e \u0917\u0924\u093f\u0935\u093f\u0927\u093f", - "Projects": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e\u0913\u0902", - "Updates": "\u0905\u092a\u0921\u0947\u091f", - "Updates HTML": "\u0905\u0926\u094d\u092f\u0924\u0928 HTML" -} \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/hr-doc.json b/projects/doctype/project_activity/locale/hr-doc.json deleted file mode 100644 index c559486a61..0000000000 --- a/projects/doctype/project_activity/locale/hr-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "Djelatnost Naziv", - "Add": "Dodati", - "Hours": "Sati", - "Last Update": "Zadnja promjena", - "Last Update By": "Zadnji Update", - "New Update": "Novi Update", - "Percent Complete": "Postotak Cijela", - "Project": "Projekt", - "Project Activity": "Projekt aktivnost", - "Projects": "Projekti", - "Updates": "A\u017euriranja", - "Updates HTML": "A\u017euriranja HTML" -} \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/nl-doc.json b/projects/doctype/project_activity/locale/nl-doc.json deleted file mode 100644 index 9b40947ac5..0000000000 --- a/projects/doctype/project_activity/locale/nl-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "Activiteit Naam", - "Add": "Toevoegen", - "Hours": "Uur", - "Last Update": "Laatste update", - "Last Update By": "Laatste update door", - "New Update": "Nieuwe Update", - "Percent Complete": "Percentage voltooid", - "Project": "Project", - "Project Activity": "Project Activiteit", - "Projects": "Projecten", - "Updates": "Updates", - "Updates HTML": "Updates HTML" -} \ 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 deleted file mode 100644 index 5e087ec45e..0000000000 --- a/projects/doctype/project_activity/locale/pt-BR-doc.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "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/locale/pt-doc.json b/projects/doctype/project_activity/locale/pt-doc.json deleted file mode 100644 index 43c7c51b5e..0000000000 --- a/projects/doctype/project_activity/locale/pt-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "Nome atividade", - "Add": "Adicionar", - "Hours": "Horas", - "Last Update": "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": "Projeto Atividade", - "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/locale/sr-doc.json b/projects/doctype/project_activity/locale/sr-doc.json deleted file mode 100644 index 8b7c121cc7..0000000000 --- a/projects/doctype/project_activity/locale/sr-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "\u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442 \u0418\u043c\u0435", - "Add": "\u0414\u043e\u0434\u0430\u0442\u0438", - "Hours": "\u0420\u0430\u0434\u043d\u043e \u0432\u0440\u0435\u043c\u0435", - "Last Update": "\u041f\u043e\u0441\u043b\u0435\u0434\u045a\u0430 \u0438\u0437\u043c\u0435\u043d\u0430", - "Last Update By": "\u041f\u043e\u0441\u043b\u0435\u0434\u045a\u0438 \u0423\u043f\u0434\u0430\u0442\u0435 \u0411\u0438", - "New Update": "\u041d\u043e\u0432\u0438 \u0423\u043f\u0434\u0430\u0442\u0435", - "Percent Complete": "\u041f\u0440\u043e\u0446\u0435\u043d\u0430\u0442 \u041a\u043e\u043c\u043f\u043b\u0435\u0442\u043d\u0430", - "Project": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442", - "Project Activity": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442 \u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442", - "Projects": "\u041f\u0440\u043e\u0458\u0435\u043a\u0442\u0438", - "Updates": "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435", - "Updates HTML": "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435 \u0425\u0422\u041c\u041b" -} \ No newline at end of file diff --git a/projects/doctype/project_activity/locale/ta-doc.json b/projects/doctype/project_activity/locale/ta-doc.json deleted file mode 100644 index 831c1df4f6..0000000000 --- a/projects/doctype/project_activity/locale/ta-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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": "\u0ba8\u0b9f\u0bb5\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0baa\u0bc6\u0baf\u0bb0\u0bcd", - "Add": "\u0b9a\u0bc7\u0bb0\u0bcd", - "Hours": "\u0bae\u0ba3\u0bbf", - "Last Update": "\u0b95\u0b9f\u0bc8\u0b9a\u0bbf\u0baf\u0bbe\u0b95 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", - "Last Update By": "By \u0b95\u0b9f\u0bc8\u0b9a\u0bbf\u0baf\u0bbe\u0b95 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", - "New Update": "\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", - "Percent Complete": "\u0bae\u0bc1\u0bb4\u0bc1\u0bae\u0bc8\u0baf\u0bbe\u0ba9 \u0b9a\u0ba4\u0bb5\u0bc0\u0ba4\u0bae\u0bcd", - "Project": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0bae\u0bcd", - "Project Activity": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0b9f\u0bc1", - "Projects": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Updates": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd\u0b95\u0bb3\u0bcd", - "Updates HTML": "\u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd\u0b95\u0bb3\u0bcd HTML" -} \ 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 deleted file mode 100644 index 7df17c6015..0000000000 --- a/projects/doctype/project_activity/locale/th-doc.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "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/_messages_doc.json b/projects/doctype/project_activity_update/locale/_messages_doc.json deleted file mode 100644 index 1e98c3943b..0000000000 --- a/projects/doctype/project_activity_update/locale/_messages_doc.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - "e.g. 0.5, 2.5 etc", - "Update", - "Hours", - "Project Activity Update", - "Projects" -] \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/ar-doc.json b/projects/doctype/project_activity_update/locale/ar-doc.json deleted file mode 100644 index b600b780e7..0000000000 --- a/projects/doctype/project_activity_update/locale/ar-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "\u0633\u0627\u0639\u0627\u062a", - "Project Activity Update": "\u0645\u0634\u0631\u0648\u0639 \u062a\u062d\u062f\u064a\u062b \u0646\u0634\u0627\u0637", - "Projects": "\u0645\u0634\u0627\u0631\u064a\u0639", - "Update": "\u062a\u062d\u062f\u064a\u062b", - "e.g. 0.5, 2.5 etc": "\u0639\u0644\u0649 \u0633\u0628\u064a\u0644 \u0627\u0644\u0645\u062b\u0627\u0644 0.5\u060c 2.5 \u0627\u0644\u062e" -} \ 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 deleted file mode 100644 index a685dece87..0000000000 --- a/projects/doctype/project_activity_update/locale/de-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "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_activity_update/locale/es-doc.json b/projects/doctype/project_activity_update/locale/es-doc.json deleted file mode 100644 index 988b49e495..0000000000 --- a/projects/doctype/project_activity_update/locale/es-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "Horas", - "Project Activity Update": "Actualizaci\u00f3n del Proyecto de Actividad", - "Projects": "Proyectos", - "Update": "Actualizar", - "e.g. 0.5, 2.5 etc": "por ejemplo, 0,5, 2,5, etc" -} \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/fr-doc.json b/projects/doctype/project_activity_update/locale/fr-doc.json deleted file mode 100644 index 26bce04f15..0000000000 --- a/projects/doctype/project_activity_update/locale/fr-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "Heures", - "Project Activity Update": "Mise \u00e0 jour des activit\u00e9s du projet", - "Projects": "Projets", - "Update": "Mettre \u00e0 jour", - "e.g. 0.5, 2.5 etc": "par exemple, 0,5, 2,5, etc" -} \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/hi-doc.json b/projects/doctype/project_activity_update/locale/hi-doc.json deleted file mode 100644 index eefd16188f..0000000000 --- a/projects/doctype/project_activity_update/locale/hi-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "\u0918\u0902\u091f\u0947", - "Project Activity Update": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e \u0917\u0924\u093f\u0935\u093f\u0927\u093f \u0905\u092a\u0921\u0947\u091f", - "Projects": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e\u0913\u0902", - "Update": "\u0905\u0926\u094d\u092f\u0924\u0928", - "e.g. 0.5, 2.5 etc": "0.5 \u0909\u0926\u093e\u0939\u0930\u0923 \u0915\u0947 \u0932\u093f\u090f, 2.5 \u0906\u0926\u093f" -} \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/hr-doc.json b/projects/doctype/project_activity_update/locale/hr-doc.json deleted file mode 100644 index 14ec5cf953..0000000000 --- a/projects/doctype/project_activity_update/locale/hr-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "Sati", - "Project Activity Update": "Projekt Aktivnost Update", - "Projects": "Projekti", - "Update": "A\u017eurirati", - "e.g. 0.5, 2.5 etc": "npr. 0,5, 2,5 itd." -} \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/nl-doc.json b/projects/doctype/project_activity_update/locale/nl-doc.json deleted file mode 100644 index 72c9117b29..0000000000 --- a/projects/doctype/project_activity_update/locale/nl-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "Uur", - "Project Activity Update": "Project Activiteit update", - "Projects": "Projecten", - "Update": "Bijwerken", - "e.g. 0.5, 2.5 etc": "bijvoorbeeld 0,5, 2,5 enz." -} \ 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 deleted file mode 100644 index 29ee1648b3..0000000000 --- a/projects/doctype/project_activity_update/locale/pt-BR-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "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_activity_update/locale/pt-doc.json b/projects/doctype/project_activity_update/locale/pt-doc.json deleted file mode 100644 index 9dff294173..0000000000 --- a/projects/doctype/project_activity_update/locale/pt-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "Horas", - "Project Activity Update": "Atualiza\u00e7\u00e3o do Projeto Atividade", - "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_activity_update/locale/sr-doc.json b/projects/doctype/project_activity_update/locale/sr-doc.json deleted file mode 100644 index aeeb0ddde4..0000000000 --- a/projects/doctype/project_activity_update/locale/sr-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "\u0420\u0430\u0434\u043d\u043e \u0432\u0440\u0435\u043c\u0435", - "Project Activity Update": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442 \u0410\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442 \u0430\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0430", - "Projects": "\u041f\u0440\u043e\u0458\u0435\u043a\u0442\u0438", - "Update": "\u0410\u0436\u0443\u0440\u0438\u0440\u0430\u045a\u0435", - "e.g. 0.5, 2.5 etc": "\u043d\u043f\u0440. 0,5, 2,5, \u0438\u0442\u0434" -} \ No newline at end of file diff --git a/projects/doctype/project_activity_update/locale/ta-doc.json b/projects/doctype/project_activity_update/locale/ta-doc.json deleted file mode 100644 index 5396a35d56..0000000000 --- a/projects/doctype/project_activity_update/locale/ta-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Hours": "\u0bae\u0ba3\u0bbf", - "Project Activity Update": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0b9f\u0bc1 \u0bae\u0bc7\u0bae\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", - "Projects": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd", - "Update": "\u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95", - "e.g. 0.5, 2.5 etc": "\u0b89\u0ba4\u0bbe\u0bb0\u0ba3\u0bae\u0bbe\u0b95 0.5, 2.5 \u0bb9\u0bbf\u0baa\u0bcd\u0bb0\u0bc1" -} \ 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 deleted file mode 100644 index 02b72b9cf4..0000000000 --- a/projects/doctype/project_activity_update/locale/th-doc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "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/__init__.py b/projects/doctype/project_control/__init__.py deleted file mode 100644 index baffc48825..0000000000 --- a/projects/doctype/project_control/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/projects/doctype/project_control/locale/_messages_doc.json b/projects/doctype/project_control/locale/_messages_doc.json deleted file mode 100644 index 3e13741e00..0000000000 --- a/projects/doctype/project_control/locale/_messages_doc.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "Projects", - "Project Control" -] \ No newline at end of file diff --git a/projects/doctype/project_control/locale/ar-doc.json b/projects/doctype/project_control/locale/ar-doc.json deleted file mode 100644 index deb68c3c97..0000000000 --- a/projects/doctype/project_control/locale/ar-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "\u0645\u0634\u0631\u0648\u0639 \u0627\u0644\u062a\u062d\u0643\u0645", - "Projects": "\u0645\u0634\u0627\u0631\u064a\u0639" -} \ 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 deleted file mode 100644 index 45a7808f03..0000000000 --- a/projects/doctype/project_control/locale/de-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "Project Control", - "Projects": "Projekte" -} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/es-doc.json b/projects/doctype/project_control/locale/es-doc.json deleted file mode 100644 index 129522f8ca..0000000000 --- a/projects/doctype/project_control/locale/es-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "Proyecto de Control", - "Projects": "Proyectos" -} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/fr-doc.json b/projects/doctype/project_control/locale/fr-doc.json deleted file mode 100644 index 4dffe1e5f0..0000000000 --- a/projects/doctype/project_control/locale/fr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "Contr\u00f4le de projet", - "Projects": "Projets" -} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/hi-doc.json b/projects/doctype/project_control/locale/hi-doc.json deleted file mode 100644 index 545aaca101..0000000000 --- a/projects/doctype/project_control/locale/hi-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923", - "Projects": "\u092a\u0930\u093f\u092f\u094b\u091c\u0928\u093e\u0913\u0902" -} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/hr-doc.json b/projects/doctype/project_control/locale/hr-doc.json deleted file mode 100644 index 43eb5eb79d..0000000000 --- a/projects/doctype/project_control/locale/hr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "Projekt kontrole", - "Projects": "Projekti" -} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/nl-doc.json b/projects/doctype/project_control/locale/nl-doc.json deleted file mode 100644 index 4c993744d8..0000000000 --- a/projects/doctype/project_control/locale/nl-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "Project Control", - "Projects": "Projecten" -} \ 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 deleted file mode 100644 index 8764cf3526..0000000000 --- a/projects/doctype/project_control/locale/pt-BR-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "Controle de Projeto", - "Projects": "Projetos" -} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/pt-doc.json b/projects/doctype/project_control/locale/pt-doc.json deleted file mode 100644 index 477a620509..0000000000 --- a/projects/doctype/project_control/locale/pt-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "Projeto de Controle de", - "Projects": "Projetos" -} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/sr-doc.json b/projects/doctype/project_control/locale/sr-doc.json deleted file mode 100644 index 8f51d67b8c..0000000000 --- a/projects/doctype/project_control/locale/sr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "\u041f\u0440\u043e\u0458\u0435\u043a\u0430\u0442 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430", - "Projects": "\u041f\u0440\u043e\u0458\u0435\u043a\u0442\u0438" -} \ No newline at end of file diff --git a/projects/doctype/project_control/locale/ta-doc.json b/projects/doctype/project_control/locale/ta-doc.json deleted file mode 100644 index 45807a6f90..0000000000 --- a/projects/doctype/project_control/locale/ta-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Project Control": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1", - "Projects": "\u0ba4\u0bbf\u0b9f\u0bcd\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd" -} \ 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 deleted file mode 100644 index 2989328676..0000000000 --- a/projects/doctype/project_control/locale/th-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "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_control/project_control.py b/projects/doctype/project_control/project_control.py deleted file mode 100644 index 53caab08c9..0000000000 --- a/projects/doctype/project_control/project_control.py +++ /dev/null @@ -1,153 +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 add_days, cint, cstr, date_diff, flt, now, nowdate, add_days -from webnotes.model import db_exists -from webnotes.model.bean import copy_doclist -from webnotes import msgprint -from webnotes.utils.email_lib import sendmail -sql = webnotes.conn.sql - - - -class DocType: - def __init__(self,d,dl): - self.doc, self.doclist = d,dl - - def get_projects(self, arg): - # project list - pl=[] - status={} - if arg == 'Open': - pl = [p[0] for p in sql("select name from `tabProject` where status = 'Open' order by creation desc limit 20")] - for p1 in pl: - status[p1] = 'Open' - elif arg == 'Completed': - pl = [p[0] for p in sql("select name from `tabProject` where status = 'Completed' order by creation desc limit 20")] - for p2 in pl: - status[p2] = 'Completed' - elif arg == 'Cancelled': - pl = [p[0] for p in sql("select name from `tabProject` where status = 'Cancelled' order by creation desc limit 20")] - for p3 in pl: - status[p3] = 'Cancelled' - else: - #pl = [p[0] for p in sql("select name from `tabProject` order by creation desc limit 20")] - pl1 = sql("select name, status from `tabProject` order by creation desc limit 20", as_dict=1) - for p4 in pl1: - status[p4['name']] = p4['status'] - pl.append(p4['name']) - - # milestones in the next 7 days for active projects - ml = webnotes.conn.convert_to_lists(sql("select t1.milestone_date, t1.milestone, t1.parent from `tabProject Milestone` t1, tabProject t2 where t1.parent = t2.name and t2.status='Open' and DATEDIFF(t1.milestone_date, CURDATE()) BETWEEN 0 AND 7 ORDER BY t1.milestone_date ASC")) - - # percent of activity completed per project - comp = {} - n_tasks = {} - - for p in pl: - t1 = sql('select count(*) from tabTask where project=%s and docstatus!=2', p)[0][0] - n_tasks[p] = t1 or 0 - if t1: - t2 = sql('select count(*) from tabTask where project=%s and docstatus!=2 and status="Closed"', p)[0][0] - comp[p] = cint(flt(t2)*100/t1) - - return {'pl':pl, 'ml':ml, 'comp':comp, 'n_tasks':n_tasks, 'status':status} - - def get_resources(self): - ret = {} - - # resource list - rl = sql("select distinct allocated_to, assignee_email from tabTask") - - # get open & closed tickets - for r in rl: - if r[0]: - ret[r[1]] = {} - ret[r[1]]['id'] = r[0] - ret[r[1]]['Total'] = sql("select count(*) from tabTask where allocated_to=%s and docstatus!=2", r[0])[0][0] - ret[r[1]]['Closed'] = sql("select count(*) from tabTask where allocated_to=%s and status='Closed' and docstatus!=2", r[0])[0][0] - ret[r[1]]['percent'] = cint(flt(ret[r[1]]['Closed']) * 100 / ret[r[1]]['Total']) - - return ret - - # -------------------------------------------------------------- - # for Gantt Chart - - def get_init_data(self, arg=''): - pl = [p[0] for p in sql('select name from tabProject where docstatus != 2')] - rl = [p[0] for p in sql('select distinct allocated_to from tabTask where docstatus != 2 and ifnull(allocated_to,"") != ""')] - return {'pl':pl, 'rl':rl} - - def get_tasks(self, arg): - start_date, end_date, project, resource = arg.split('~~~') - - cl = '' - if project and project != 'All': - cl = " and ifnull(project,'') = '%s'" % project - - if resource and resource != 'All': - cl = " and ifnull(allocated_to,'') = '%s'" % resource - - tl = sql(""" - select subject, allocated_to, project, exp_start_date, exp_end_date, priority, status, name - from tabTask - where - ((exp_start_date between '%(st)s' and '%(end)s') or - (exp_end_date between '%(st)s' and '%(end)s') or - (exp_start_date < '%(st)s' and exp_end_date > '%(end)s')) %(cond)s order by exp_start_date limit 100""" % {'st': start_date, 'end': end_date, 'cond':cl}) - - return webnotes.conn.convert_to_lists(tl) - - def declare_proj_completed(self, arg): - chk = sql("select name from `tabTask` where project=%s and status='Open'", arg) - if chk: - chk_lst = [x[0] for x in chk] - msgprint("Task(s) "+','.join(chk_lst)+" has staus 'Open'. Please submit all tasks against this project before closing the project.") - return cstr('false') - else: - sql("update `tabProject` set status = 'Completed' where name = %s", arg) - return cstr('true') - - -def sent_reminder_task(): - task_list = sql(""" - select subject, allocated_to, project, exp_start_date, exp_end_date, - priority, status, name, senders_name, opening_date, review_date, description - from tabTask - where task_email_notify=1 - and sent_reminder=0 - and status='Open' - and exp_start_date is not null""",as_dict=1) - for i in task_list: - if date_diff(i['exp_start_date'],nowdate()) ==2: - msg2="""

Two days to complete: %(name)s

-

This is a reminder for the task %(name)s has been assigned to you - by %(senders_name)s on %(opening_date)s

-

Subject: %(subject)s

-

Project: %(project)s

-

Expected Start Date: %(exp_start_date)s

-

Expected End Date: %(exp_end_date)s

-

Review Date: %(review_date)s

-

Details: %(description)s

-

If you have already completed this task, please update the system

-

Good Luck!

-

(This notification is autogenerated)

""" % i - sendmail(i['allocated_to'], msg=msg2, subject='A task has been assigned') - sql("update `tabTask` set sent_reminder='1' where name='%(name)s' and allocated_to= '%(allocated_to)s'" % i) - diff --git a/projects/page/projects/__init__.py b/projects/page/projects/__init__.py deleted file mode 100644 index baffc48825..0000000000 --- a/projects/page/projects/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/projects/page/projects/projects.css b/projects/page/projects/projects.css deleted file mode 100644 index 2fc9c27d14..0000000000 --- a/projects/page/projects/projects.css +++ /dev/null @@ -1,6 +0,0 @@ -.gantt { - -moz-box-sizing: border-box; - border: 14px solid #DDDDDD; - border-radius: 6px 6px 6px 6px; - margin: 20px auto; -} \ No newline at end of file diff --git a/projects/page/projects/projects.html b/projects/page/projects/projects.html deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/projects/page/projects/projects.js b/projects/page/projects/projects.js deleted file mode 100644 index ef81718ee3..0000000000 --- a/projects/page/projects/projects.js +++ /dev/null @@ -1,24 +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 . - -pscript.onload_Projects = function(wrapper) { - wn.ui.make_app_page({parent:wrapper, title:'Gantt Chart: All Tasks', single_column:true}); - if(!erpnext.show_task_gantt) - wn.require('app/js/gantt_task.js'); - - var gantt_area = $('
').appendTo($(wrapper).find('.layout-main')); - erpnext.show_task_gantt(gantt_area); -} \ No newline at end of file diff --git a/projects/page/projects/projects.py b/projects/page/projects/projects.py deleted file mode 100644 index 5949518253..0000000000 --- a/projects/page/projects/projects.py +++ /dev/null @@ -1,29 +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 - -@webnotes.whitelist() -def get_tasks(): - cond = '' - if webnotes.form_dict.get('project'): - cond = ' and project="%s"' % webnotes.form_dict.get('project') - return webnotes.conn.sql("""select name, project, subject, exp_start_date, exp_end_date, - description, status from tabTask where - project is not null - and exp_start_date is not null - and exp_end_date is not null %s""" % cond, as_dict=True) \ No newline at end of file diff --git a/projects/page/projects/projects.txt b/projects/page/projects/projects.txt deleted file mode 100644 index 170134e3a0..0000000000 --- a/projects/page/projects/projects.txt +++ /dev/null @@ -1,31 +0,0 @@ -[ - { - "owner": "Administrator", - "docstatus": 0, - "creation": "2012-06-14 18:44:57", - "modified_by": "Administrator", - "modified": "2013-01-09 17:19:26" - }, - { - "name": "__common__", - "doctype": "Page", - "module": "Projects", - "standard": "Yes", - "page_name": "Projects" - }, - { - "name": "__common__", - "parent": "Projects", - "doctype": "Page Role", - "parenttype": "Page", - "role": "Projects User", - "parentfield": "roles" - }, - { - "name": "Projects", - "doctype": "Page" - }, - { - "doctype": "Page Role" - } -] \ No newline at end of file From 110af4b312514d06d985b9de36a6b2e7263384f0 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 14:29:28 +0530 Subject: [PATCH 04/12] [docs] added docs for projects --- projects/doctype/activity_type/README.md | 1 + projects/doctype/project/README.md | 1 + projects/doctype/project_milestone/README.md | 1 + projects/doctype/task/README.md | 1 + projects/doctype/time_log/README.md | 1 + projects/doctype/time_log_batch/README.md | 1 + projects/doctype/time_log_batch_detail/README.md | 1 + 7 files changed, 7 insertions(+) create mode 100644 projects/doctype/activity_type/README.md create mode 100644 projects/doctype/project/README.md create mode 100644 projects/doctype/project_milestone/README.md create mode 100644 projects/doctype/task/README.md create mode 100644 projects/doctype/time_log/README.md create mode 100644 projects/doctype/time_log_batch/README.md create mode 100644 projects/doctype/time_log_batch_detail/README.md diff --git a/projects/doctype/activity_type/README.md b/projects/doctype/activity_type/README.md new file mode 100644 index 0000000000..4b61e5c572 --- /dev/null +++ b/projects/doctype/activity_type/README.md @@ -0,0 +1 @@ +Type of Activity (set in Task, Time Log) \ No newline at end of file diff --git a/projects/doctype/project/README.md b/projects/doctype/project/README.md new file mode 100644 index 0000000000..b1da6ad328 --- /dev/null +++ b/projects/doctype/project/README.md @@ -0,0 +1 @@ +Project details. Projects can be internal or external and can have Tasks, Milestones associated to it. \ No newline at end of file diff --git a/projects/doctype/project_milestone/README.md b/projects/doctype/project_milestone/README.md new file mode 100644 index 0000000000..d47db7bb4d --- /dev/null +++ b/projects/doctype/project_milestone/README.md @@ -0,0 +1 @@ +Important date in the project lifecycle. \ No newline at end of file diff --git a/projects/doctype/task/README.md b/projects/doctype/task/README.md new file mode 100644 index 0000000000..0fbd417a3b --- /dev/null +++ b/projects/doctype/task/README.md @@ -0,0 +1 @@ +Task to be completed for a Project (optional). \ No newline at end of file diff --git a/projects/doctype/time_log/README.md b/projects/doctype/time_log/README.md new file mode 100644 index 0000000000..bab52e7e98 --- /dev/null +++ b/projects/doctype/time_log/README.md @@ -0,0 +1 @@ +Log of activity done by a user in a particular period. \ No newline at end of file diff --git a/projects/doctype/time_log_batch/README.md b/projects/doctype/time_log_batch/README.md new file mode 100644 index 0000000000..c27521ad96 --- /dev/null +++ b/projects/doctype/time_log_batch/README.md @@ -0,0 +1 @@ +Group of Time Logs that can be batched for billing. \ No newline at end of file diff --git a/projects/doctype/time_log_batch_detail/README.md b/projects/doctype/time_log_batch_detail/README.md new file mode 100644 index 0000000000..daa04aa0eb --- /dev/null +++ b/projects/doctype/time_log_batch_detail/README.md @@ -0,0 +1 @@ +Time Log detail for parent Time Log Batch. \ No newline at end of file From 69c7117bb31a9ea80f79c16bd8482f614d9854ba Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 14:36:33 +0530 Subject: [PATCH 05/12] [cleanup] Update Delivery Date --- .../update_delivery_date/locale/_messages_doc.json | 13 ------------- .../doctype/update_delivery_date/locale/ar-doc.json | 13 ------------- .../doctype/update_delivery_date/locale/de-doc.json | 13 ------------- .../doctype/update_delivery_date/locale/es-doc.json | 13 ------------- .../doctype/update_delivery_date/locale/fr-doc.json | 13 ------------- .../doctype/update_delivery_date/locale/hi-doc.json | 13 ------------- .../doctype/update_delivery_date/locale/hr-doc.json | 13 ------------- .../doctype/update_delivery_date/locale/nl-doc.json | 13 ------------- .../update_delivery_date/locale/pt-BR-doc.json | 13 ------------- .../doctype/update_delivery_date/locale/pt-doc.json | 13 ------------- .../doctype/update_delivery_date/locale/sr-doc.json | 12 ------------ .../doctype/update_delivery_date/locale/ta-doc.json | 12 ------------ .../doctype/update_delivery_date/locale/th-doc.json | 13 ------------- 13 files changed, 167 deletions(-) delete mode 100644 manufacturing/doctype/update_delivery_date/locale/_messages_doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/ar-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/de-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/es-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/fr-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/hi-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/hr-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/nl-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/pt-BR-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/pt-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/sr-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/ta-doc.json delete mode 100644 manufacturing/doctype/update_delivery_date/locale/th-doc.json diff --git a/manufacturing/doctype/update_delivery_date/locale/_messages_doc.json b/manufacturing/doctype/update_delivery_date/locale/_messages_doc.json deleted file mode 100644 index 8645992fa1..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/_messages_doc.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - "Customer", - "Get Open Sales Order", - "Sales Order", - "Company", - "Update Delivery Date", - "To Date", - "From Date", - "Entries", - "Manufacturing", - "Territory", - "Update Sales Order" -] \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/ar-doc.json b/manufacturing/doctype/update_delivery_date/locale/ar-doc.json deleted file mode 100644 index 328880a76c..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/ar-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Company": "\u0634\u0631\u0643\u0629", - "Customer": "\u0632\u0628\u0648\u0646", - "Entries": "\u0645\u0642\u0627\u0644\u0627\u062a", - "From Date": "\u0645\u0646 \u062a\u0627\u0631\u064a\u062e", - "Get Open Sales Order": "\u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0641\u062a\u062d \u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a", - "Manufacturing": "\u062a\u0635\u0646\u064a\u0639", - "Sales Order": "\u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a", - "Territory": "\u0625\u0642\u0644\u064a\u0645", - "To Date": "\u062d\u062a\u0649 \u0627\u0644\u0627\u0646", - "Update Delivery Date": "\u062a\u062d\u062f\u064a\u062b \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0633\u0644\u064a\u0645", - "Update Sales Order": "\u062a\u062d\u062f\u064a\u062b \u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0645\u0628\u064a\u0639\u0627\u062a" -} \ 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 deleted file mode 100644 index a21240b132..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/de-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/update_delivery_date/locale/es-doc.json b/manufacturing/doctype/update_delivery_date/locale/es-doc.json deleted file mode 100644 index 70ef66549a..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/es-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Company": "Empresa", - "Customer": "Cliente", - "Entries": "Comentarios", - "From Date": "Desde la fecha", - "Get Open Sales Order": "Recibe \u00f3rdenes de venta abierto", - "Manufacturing": "Fabricaci\u00f3n", - "Sales Order": "De \u00f3rdenes de venta", - "Territory": "Territorio", - "To Date": "Conocer", - "Update Delivery Date": "Actualizaci\u00f3n de Fecha de Entrega", - "Update Sales Order": "Actualizaci\u00f3n de \u00f3rdenes de venta" -} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/fr-doc.json b/manufacturing/doctype/update_delivery_date/locale/fr-doc.json deleted file mode 100644 index 1a23a866d2..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/fr-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Company": "Entreprise", - "Customer": "Client", - "Entries": "Entr\u00e9es", - "From Date": "Partir de la date", - "Get Open Sales Order": "Obtenez Ouvrir Commande", - "Manufacturing": "Fabrication", - "Sales Order": "Commande", - "Territory": "Territoire", - "To Date": "\u00c0 ce jour", - "Update Delivery Date": "Mettre \u00e0 jour Date de livraison", - "Update Sales Order": "Mise \u00e0 jour des commandes clients" -} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/hi-doc.json b/manufacturing/doctype/update_delivery_date/locale/hi-doc.json deleted file mode 100644 index bb6474cad5..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/hi-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Company": "\u0915\u0902\u092a\u0928\u0940", - "Customer": "\u0917\u094d\u0930\u093e\u0939\u0915", - "Entries": "\u092a\u094d\u0930\u0935\u093f\u0937\u094d\u091f\u093f\u092f\u093e\u0902", - "From Date": "\u0926\u093f\u0928\u093e\u0902\u0915 \u0938\u0947", - "Get Open Sales Order": "\u0913\u092a\u0928 \u092c\u093f\u0915\u094d\u0930\u0940 \u0906\u0926\u0947\u0936", - "Manufacturing": "\u0935\u093f\u0928\u093f\u0930\u094d\u092e\u093e\u0923", - "Sales Order": "\u092c\u093f\u0915\u094d\u0930\u0940 \u0906\u0926\u0947\u0936", - "Territory": "\u0915\u094d\u0937\u0947\u0924\u094d\u0930", - "To Date": "\u0924\u093f\u0925\u093f \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f", - "Update Delivery Date": "\u0905\u0926\u094d\u092f\u0924\u0928 \u0921\u093f\u0932\u0940\u0935\u0930\u0940 \u0915\u0940 \u0924\u093e\u0930\u0940\u0916", - "Update Sales Order": "\u0905\u0926\u094d\u092f\u0924\u0928 \u092c\u093f\u0915\u094d\u0930\u0940 \u0906\u0926\u0947\u0936" -} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/hr-doc.json b/manufacturing/doctype/update_delivery_date/locale/hr-doc.json deleted file mode 100644 index 06ff481dd7..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/hr-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Company": "Dru\u0161tvo", - "Customer": "Kupac", - "Entries": "Prijave", - "From Date": "Od datuma", - "Get Open Sales Order": "Nabavite Otvori prodajnog naloga", - "Manufacturing": "Proizvodnja", - "Sales Order": "Prodajnog naloga", - "Territory": "Teritorija", - "To Date": "Za datum", - "Update Delivery Date": "A\u017eurirajte datum isporuke", - "Update Sales Order": "A\u017eurirajte prodajnog naloga" -} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/nl-doc.json b/manufacturing/doctype/update_delivery_date/locale/nl-doc.json deleted file mode 100644 index 179809ace2..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/nl-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Company": "Vennootschap", - "Customer": "Klant", - "Entries": "Inzendingen", - "From Date": "Van Datum", - "Get Open Sales Order": "Get Open Verkooporder", - "Manufacturing": "Productie", - "Sales Order": "Verkooporder", - "Territory": "Grondgebied", - "To Date": "To-date houden", - "Update Delivery Date": "Werk Leveringsdatum", - "Update Sales Order": "Werk Verkooporder" -} \ 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 deleted file mode 100644 index 4d9249ebb7..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/pt-BR-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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/update_delivery_date/locale/pt-doc.json b/manufacturing/doctype/update_delivery_date/locale/pt-doc.json deleted file mode 100644 index 09ed52bf06..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/pt-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Company": "Companhia", - "Customer": "Cliente", - "Entries": "Entradas", - "From Date": "A partir da data", - "Get Open Sales Order": "Obter Ordem de vendas Abrir", - "Manufacturing": "Fabrico", - "Sales Order": "Ordem de Vendas", - "Territory": "Territ\u00f3rio", - "To Date": "Conhecer", - "Update Delivery Date": "Atualize data de entrega", - "Update Sales Order": "Atualize Ordem de Vendas" -} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/sr-doc.json b/manufacturing/doctype/update_delivery_date/locale/sr-doc.json deleted file mode 100644 index b6e6a1973f..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/sr-doc.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Company": "\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430", - "Customer": "\u041a\u0443\u043f\u0430\u0446", - "From Date": "\u041e\u0434 \u0434\u0430\u0442\u0443\u043c\u0430", - "Get Open Sales Order": "\u0413\u0435\u0442 \u041e\u043f\u0435\u043d \u043f\u0440\u043e\u0434\u0430\u0458\u043d\u0438\u0445 \u043d\u0430\u043b\u043e\u0433\u0430", - "Manufacturing": "\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u045a\u0430", - "Sales Order": "\u041f\u0440\u043e\u0434\u0430\u0458\u0430 \u041d\u0430\u0440\u0443\u0447\u0438\u0442\u0435", - "Territory": "\u0422\u0435\u0440\u0438\u0442\u043e\u0440\u0438\u0458\u0430", - "To Date": "\u0417\u0430 \u0434\u0430\u0442\u0443\u043c", - "Update Delivery Date": "\u0423\u043f\u0434\u0430\u0442\u0435 \u0434\u0430\u0442\u0443\u043c \u0438\u0441\u043f\u043e\u0440\u0443\u043a\u0435", - "Update Sales Order": "\u0423\u043f\u0434\u0430\u0442\u0435 \u043f\u0440\u043e\u0434\u0430\u0458\u043d\u0438\u0445 \u043d\u0430\u043b\u043e\u0433\u0430" -} \ No newline at end of file diff --git a/manufacturing/doctype/update_delivery_date/locale/ta-doc.json b/manufacturing/doctype/update_delivery_date/locale/ta-doc.json deleted file mode 100644 index f391384389..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/ta-doc.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Company": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0ba9\u0bae\u0bcd", - "Customer": "\u0bb5\u0bbe\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc8\u0baf\u0bbe\u0bb3\u0bb0\u0bcd", - "From Date": "\u0ba4\u0bc7\u0ba4\u0bbf", - "Get Open Sales Order": "\u0ba4\u0bbf\u0bb1\u0ba8\u0bcd\u0ba4 \u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0b86\u0bb0\u0bcd\u0b9f\u0bb0\u0bcd \u0b95\u0bbf\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd", - "Manufacturing": "\u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bcd", - "Sales Order": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0b86\u0ba3\u0bc8", - "Territory": "\u0bae\u0ba3\u0bcd\u0b9f\u0bb2\u0bae\u0bcd", - "To Date": "\u0ba4\u0bc7\u0ba4\u0bbf", - "Update Delivery Date": "\u0b9f\u0bc6\u0bb2\u0bbf\u0bb5\u0bb0\u0bbf \u0ba4\u0bc7\u0ba4\u0bbf \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95", - "Update Sales Order": "\u0bb5\u0bbf\u0bb1\u0bcd\u0baa\u0ba9\u0bc8 \u0b86\u0ba3\u0bc8 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95" -} \ 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 deleted file mode 100644 index 799fec149f..0000000000 --- a/manufacturing/doctype/update_delivery_date/locale/th-doc.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "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 From f6426d4949bf4d2b8643d624bef6031b52f69167 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 14:36:48 +0530 Subject: [PATCH 06/12] [docs] added for manufacturing module --- manufacturing/README.md | 1 + manufacturing/doctype/bom/README.md | 1 + manufacturing/doctype/bom_explosion_item/README.md | 1 + manufacturing/doctype/bom_item/README.md | 1 + manufacturing/doctype/bom_operation/README.md | 1 + manufacturing/doctype/bom_replace_tool/README.md | 1 + manufacturing/doctype/production_order/README.md | 1 + manufacturing/doctype/production_plan_item/README.md | 1 + manufacturing/doctype/production_plan_sales_order/README.md | 1 + manufacturing/doctype/production_planning_tool/README.md | 1 + manufacturing/doctype/workstation/README.md | 1 + 11 files changed, 11 insertions(+) create mode 100644 manufacturing/README.md create mode 100644 manufacturing/doctype/bom/README.md create mode 100644 manufacturing/doctype/bom_explosion_item/README.md create mode 100644 manufacturing/doctype/bom_item/README.md create mode 100644 manufacturing/doctype/bom_operation/README.md create mode 100644 manufacturing/doctype/bom_replace_tool/README.md create mode 100644 manufacturing/doctype/production_order/README.md create mode 100644 manufacturing/doctype/production_plan_item/README.md create mode 100644 manufacturing/doctype/production_plan_sales_order/README.md create mode 100644 manufacturing/doctype/production_planning_tool/README.md create mode 100644 manufacturing/doctype/workstation/README.md diff --git a/manufacturing/README.md b/manufacturing/README.md new file mode 100644 index 0000000000..3e42f5a9a2 --- /dev/null +++ b/manufacturing/README.md @@ -0,0 +1 @@ +Plan and manage manufacturing operations, bill of materials for manufacturing. \ No newline at end of file diff --git a/manufacturing/doctype/bom/README.md b/manufacturing/doctype/bom/README.md new file mode 100644 index 0000000000..fe27fc7b5b --- /dev/null +++ b/manufacturing/doctype/bom/README.md @@ -0,0 +1 @@ +Bill of Materials (BOM) is a list of operations and Items required to manufacture a particular product (Item). \ No newline at end of file diff --git a/manufacturing/doctype/bom_explosion_item/README.md b/manufacturing/doctype/bom_explosion_item/README.md new file mode 100644 index 0000000000..06e0402e65 --- /dev/null +++ b/manufacturing/doctype/bom_explosion_item/README.md @@ -0,0 +1 @@ +Detail of Item required for the main Item by parsing the entire BOM tree. \ No newline at end of file diff --git a/manufacturing/doctype/bom_item/README.md b/manufacturing/doctype/bom_item/README.md new file mode 100644 index 0000000000..780c30fde2 --- /dev/null +++ b/manufacturing/doctype/bom_item/README.md @@ -0,0 +1 @@ +Item required in the parent Bill of Material. \ No newline at end of file diff --git a/manufacturing/doctype/bom_operation/README.md b/manufacturing/doctype/bom_operation/README.md new file mode 100644 index 0000000000..2746e32117 --- /dev/null +++ b/manufacturing/doctype/bom_operation/README.md @@ -0,0 +1 @@ +Operation performed in the parent Bill of Material. \ No newline at end of file diff --git a/manufacturing/doctype/bom_replace_tool/README.md b/manufacturing/doctype/bom_replace_tool/README.md new file mode 100644 index 0000000000..4abce74e85 --- /dev/null +++ b/manufacturing/doctype/bom_replace_tool/README.md @@ -0,0 +1 @@ +Tool to replace one Item with another in all Bill of Material (BOM) trees. \ No newline at end of file diff --git a/manufacturing/doctype/production_order/README.md b/manufacturing/doctype/production_order/README.md new file mode 100644 index 0000000000..2f2e000c57 --- /dev/null +++ b/manufacturing/doctype/production_order/README.md @@ -0,0 +1 @@ +Authorization (order) given to manufacturing unit to produce a certain Item. \ No newline at end of file diff --git a/manufacturing/doctype/production_plan_item/README.md b/manufacturing/doctype/production_plan_item/README.md new file mode 100644 index 0000000000..7103a14bd2 --- /dev/null +++ b/manufacturing/doctype/production_plan_item/README.md @@ -0,0 +1 @@ +Item being considered for planning in Production Planning Tool. \ No newline at end of file diff --git a/manufacturing/doctype/production_plan_sales_order/README.md b/manufacturing/doctype/production_plan_sales_order/README.md new file mode 100644 index 0000000000..a68d576d5b --- /dev/null +++ b/manufacturing/doctype/production_plan_sales_order/README.md @@ -0,0 +1 @@ +Sales Order being considered for the Production Planning Tool. \ No newline at end of file diff --git a/manufacturing/doctype/production_planning_tool/README.md b/manufacturing/doctype/production_planning_tool/README.md new file mode 100644 index 0000000000..5dff64c69e --- /dev/null +++ b/manufacturing/doctype/production_planning_tool/README.md @@ -0,0 +1 @@ +Tool to create Production Orders from a bunch of Sales Orders and generate Material Requests (MRP) as required. \ No newline at end of file diff --git a/manufacturing/doctype/workstation/README.md b/manufacturing/doctype/workstation/README.md new file mode 100644 index 0000000000..f9afe377a7 --- /dev/null +++ b/manufacturing/doctype/workstation/README.md @@ -0,0 +1 @@ +Workstation where BOM Operation is performed. \ No newline at end of file From e93a2f6e8e2f2061ed7c672d4249efb42419f705 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 15:03:25 +0530 Subject: [PATCH 07/12] [cleanup] removed Employee Training, Other Income --- hr/doctype/employee_training/__init__.py | 1 - .../employee_training/employee_training.py | 22 ----- .../employee_training/employee_training.txt | 71 ------------- .../locale/_messages_doc.json | 9 -- .../employee_training/locale/ar-doc.json | 9 -- .../employee_training/locale/de-doc.json | 9 -- .../employee_training/locale/es-doc.json | 9 -- .../employee_training/locale/fr-doc.json | 9 -- .../employee_training/locale/hi-doc.json | 9 -- .../employee_training/locale/hr-doc.json | 9 -- .../employee_training/locale/nl-doc.json | 9 -- .../employee_training/locale/pt-BR-doc.json | 9 -- .../employee_training/locale/pt-doc.json | 9 -- .../employee_training/locale/sr-doc.json | 9 -- .../employee_training/locale/ta-doc.json | 9 -- .../employee_training/locale/th-doc.json | 9 -- hr/doctype/other_income_detail/__init__.py | 1 - .../locale/_messages_doc.json | 10 -- .../other_income_detail/locale/ar-doc.json | 10 -- .../other_income_detail/locale/de-doc.json | 10 -- .../other_income_detail/locale/es-doc.json | 10 -- .../other_income_detail/locale/fr-doc.json | 10 -- .../other_income_detail/locale/hi-doc.json | 10 -- .../other_income_detail/locale/hr-doc.json | 10 -- .../other_income_detail/locale/nl-doc.json | 10 -- .../other_income_detail/locale/pt-BR-doc.json | 10 -- .../other_income_detail/locale/pt-doc.json | 10 -- .../other_income_detail/locale/sr-doc.json | 4 - .../other_income_detail/locale/ta-doc.json | 4 - .../other_income_detail/locale/th-doc.json | 10 -- .../other_income_detail.py | 22 ----- .../other_income_detail.txt | 99 ------------------- 32 files changed, 451 deletions(-) delete mode 100644 hr/doctype/employee_training/__init__.py delete mode 100644 hr/doctype/employee_training/employee_training.py delete mode 100644 hr/doctype/employee_training/employee_training.txt delete mode 100644 hr/doctype/employee_training/locale/_messages_doc.json delete mode 100644 hr/doctype/employee_training/locale/ar-doc.json delete mode 100644 hr/doctype/employee_training/locale/de-doc.json delete mode 100644 hr/doctype/employee_training/locale/es-doc.json delete mode 100644 hr/doctype/employee_training/locale/fr-doc.json delete mode 100644 hr/doctype/employee_training/locale/hi-doc.json delete mode 100644 hr/doctype/employee_training/locale/hr-doc.json delete mode 100644 hr/doctype/employee_training/locale/nl-doc.json delete mode 100644 hr/doctype/employee_training/locale/pt-BR-doc.json delete mode 100644 hr/doctype/employee_training/locale/pt-doc.json delete mode 100644 hr/doctype/employee_training/locale/sr-doc.json delete mode 100644 hr/doctype/employee_training/locale/ta-doc.json delete mode 100644 hr/doctype/employee_training/locale/th-doc.json delete mode 100644 hr/doctype/other_income_detail/__init__.py delete mode 100644 hr/doctype/other_income_detail/locale/_messages_doc.json delete mode 100644 hr/doctype/other_income_detail/locale/ar-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/de-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/es-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/fr-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/hi-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/hr-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/nl-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/pt-BR-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/pt-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/sr-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/ta-doc.json delete mode 100644 hr/doctype/other_income_detail/locale/th-doc.json delete mode 100644 hr/doctype/other_income_detail/other_income_detail.py delete mode 100644 hr/doctype/other_income_detail/other_income_detail.txt diff --git a/hr/doctype/employee_training/__init__.py b/hr/doctype/employee_training/__init__.py deleted file mode 100644 index baffc48825..0000000000 --- a/hr/doctype/employee_training/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/hr/doctype/employee_training/employee_training.py b/hr/doctype/employee_training/employee_training.py deleted file mode 100644 index 7f48feb2eb..0000000000 --- a/hr/doctype/employee_training/employee_training.py +++ /dev/null @@ -1,22 +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 - -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_training/employee_training.txt b/hr/doctype/employee_training/employee_training.txt deleted file mode 100644 index 6b3a7544ad..0000000000 --- a/hr/doctype/employee_training/employee_training.txt +++ /dev/null @@ -1,71 +0,0 @@ -[ - { - "creation": "2013-02-22 01:27:45", - "docstatus": 0, - "modified": "2013-03-07 07:03:21", - "modified_by": "Administrator", - "owner": "Administrator" - }, - { - "doctype": "DocType", - "istable": 1, - "module": "HR", - "name": "__common__" - }, - { - "doctype": "DocField", - "name": "__common__", - "parent": "Employee Training", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0 - }, - { - "doctype": "DocType", - "name": "Employee Training" - }, - { - "doctype": "DocField", - "fieldname": "institute", - "fieldtype": "Small Text", - "label": "Institute / Conducted By", - "oldfieldname": "institute", - "oldfieldtype": "Small Text", - "reqd": 1 - }, - { - "doctype": "DocField", - "fieldname": "nature_of_training", - "fieldtype": "Small Text", - "label": "Program / Seminar Title", - "oldfieldname": "nature_of_training", - "oldfieldtype": "Small Text", - "reqd": 1 - }, - { - "doctype": "DocField", - "fieldname": "duration", - "fieldtype": "Data", - "label": "Duration", - "oldfieldname": "duration", - "oldfieldtype": "Data", - "reqd": 0 - }, - { - "doctype": "DocField", - "fieldname": "loc", - "fieldtype": "Data", - "label": "Location", - "oldfieldname": "loc", - "oldfieldtype": "Data", - "reqd": 0 - }, - { - "doctype": "DocField", - "fieldname": "certificate", - "fieldtype": "Small Text", - "label": "Certificate", - "oldfieldname": "certificate", - "oldfieldtype": "Small Text" - } -] \ 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 deleted file mode 100644 index cb49386a96..0000000000 --- a/hr/doctype/employee_training/locale/_messages_doc.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - "Program / Seminar Title", - "Certificate", - "HR", - "Employee Training", - "Duration", - "Location", - "Institute / Conducted By" -] \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/ar-doc.json b/hr/doctype/employee_training/locale/ar-doc.json deleted file mode 100644 index 789f2845b5..0000000000 --- a/hr/doctype/employee_training/locale/ar-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "\u0634\u0647\u0627\u062f\u0629", - "Duration": "\u0645\u062f\u0629", - "Employee Training": "\u062a\u062f\u0631\u064a\u0628 \u0627\u0644\u0645\u0648\u0638\u0641\u064a\u0646", - "HR": "HR", - "Institute / Conducted By": "\u0645\u0639\u0647\u062f / \u0623\u062c\u0631\u062a\u0647", - "Location": "\u0645\u0648\u0642\u0639", - "Program / Seminar Title": "\u0628\u0631\u0646\u0627\u0645\u062c / \u0646\u062f\u0648\u0629 \u0639\u0646\u0648\u0627\u0646" -} \ 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 deleted file mode 100644 index 9a378eb4f7..0000000000 --- a/hr/doctype/employee_training/locale/de-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "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/employee_training/locale/es-doc.json b/hr/doctype/employee_training/locale/es-doc.json deleted file mode 100644 index 38c0437722..0000000000 --- a/hr/doctype/employee_training/locale/es-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "Certificado", - "Duration": "Duraci\u00f3n", - "Employee Training": "Capacitaci\u00f3n de los empleados", - "HR": "HR", - "Institute / Conducted By": "Instituto / Conducido por los", - "Location": "Ubicaci\u00f3n", - "Program / Seminar Title": "Programa / Seminario de T\u00edtulo" -} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/fr-doc.json b/hr/doctype/employee_training/locale/fr-doc.json deleted file mode 100644 index f2097e6c1c..0000000000 --- a/hr/doctype/employee_training/locale/fr-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "Certificat", - "Duration": "Dur\u00e9e", - "Employee Training": "Formation des employ\u00e9s", - "HR": "RH", - "Institute / Conducted By": "Institut / Men\u00e9e par", - "Location": "Emplacement", - "Program / Seminar Title": "Programme / S\u00e9minaire Titre" -} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/hi-doc.json b/hr/doctype/employee_training/locale/hi-doc.json deleted file mode 100644 index 403e3f4128..0000000000 --- a/hr/doctype/employee_training/locale/hi-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "\u092a\u094d\u0930\u092e\u093e\u0923\u092a\u0924\u094d\u0930", - "Duration": "\u0905\u0935\u0927\u093f", - "Employee Training": "\u0915\u0930\u094d\u092e\u091a\u093e\u0930\u0940 \u092a\u094d\u0930\u0936\u093f\u0915\u094d\u0937\u0923", - "HR": "\u092e\u093e\u0928\u0935 \u0938\u0902\u0938\u093e\u0927\u0928", - "Institute / Conducted By": "/ \u0938\u0902\u0938\u094d\u0925\u093e\u0928 \u0926\u094d\u0935\u093e\u0930\u093e \u0906\u092f\u094b\u091c\u093f\u0924", - "Location": "\u0938\u094d\u0925\u093e\u0928", - "Program / Seminar Title": "\u0915\u093e\u0930\u094d\u092f\u0915\u094d\u0930\u092e / \u0936\u0940\u0930\u094d\u0937\u0915 \u0938\u0902\u0917\u094b\u0937\u094d\u0920\u0940" -} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/hr-doc.json b/hr/doctype/employee_training/locale/hr-doc.json deleted file mode 100644 index 8cc35c8907..0000000000 --- a/hr/doctype/employee_training/locale/hr-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "Certifikat", - "Duration": "Trajanje", - "Employee Training": "Zaposlenik Trening", - "HR": "HR", - "Institute / Conducted By": "Institut / provela", - "Location": "Lokacija", - "Program / Seminar Title": "Program / Seminar Naslov" -} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/nl-doc.json b/hr/doctype/employee_training/locale/nl-doc.json deleted file mode 100644 index c11a24cb40..0000000000 --- a/hr/doctype/employee_training/locale/nl-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "Certificaat", - "Duration": "Duur", - "Employee Training": "Medewerker Training", - "HR": "HR", - "Institute / Conducted By": "Instituut / uitgevoerd door", - "Location": "Plaats", - "Program / Seminar Title": "Programma / Seminarie Titel" -} \ 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 deleted file mode 100644 index 474dce3c65..0000000000 --- a/hr/doctype/employee_training/locale/pt-BR-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "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/employee_training/locale/pt-doc.json b/hr/doctype/employee_training/locale/pt-doc.json deleted file mode 100644 index 03d866c855..0000000000 --- a/hr/doctype/employee_training/locale/pt-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "Certid\u00e3o", - "Duration": "Dura\u00e7\u00e3o", - "Employee Training": "Treinamento de funcion\u00e1rios", - "HR": "HR", - "Institute / Conducted By": "Instituto / conduzido por", - "Location": "Localiza\u00e7\u00e3o", - "Program / Seminar Title": "Programa / Semin\u00e1rio T\u00edtulo" -} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/sr-doc.json b/hr/doctype/employee_training/locale/sr-doc.json deleted file mode 100644 index e4389e7db9..0000000000 --- a/hr/doctype/employee_training/locale/sr-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "\u041f\u043e\u0442\u0432\u0440\u0434\u0430", - "Duration": "\u0422\u0440\u0430\u0458\u0430\u045a\u0435", - "Employee Training": "\u041e\u0431\u0443\u043a\u0430 \u0437\u0430\u043f\u043e\u0441\u043b\u0435\u043d\u0438\u0445", - "HR": "\u0425\u0420", - "Institute / Conducted By": "\u0418\u043d\u0441\u0442\u0438\u0442\u0443\u0442 / \u0441\u043f\u0440\u043e\u0432\u0435\u043b\u0430", - "Location": "\u041b\u043e\u043a\u0430\u0446\u0438\u0458\u0430", - "Program / Seminar Title": "\u041f\u0440\u043e\u0433\u0440\u0430\u043c / \u0421\u0435\u043c\u0438\u043d\u0430\u0440 \u041d\u0430\u0437\u0438\u0432" -} \ No newline at end of file diff --git a/hr/doctype/employee_training/locale/ta-doc.json b/hr/doctype/employee_training/locale/ta-doc.json deleted file mode 100644 index 87f726cf7a..0000000000 --- a/hr/doctype/employee_training/locale/ta-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Certificate": "\u0b9a\u0bbe\u0ba9\u0bcd\u0bb1\u0bbf\u0ba4\u0bb4\u0bcd", - "Duration": "\u0ba8\u0bc0\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0b95\u0bbe\u0bb2\u0bae\u0bcd", - "Employee Training": "\u0baa\u0ba3\u0bbf\u0baf\u0bbe\u0bb3\u0bb0\u0bcd \u0baa\u0baf\u0bbf\u0bb1\u0bcd\u0b9a\u0bbf", - "HR": "\u0b85\u0bb2\u0bc1\u0bb5\u0bb2\u0b95", - "Institute / Conducted By": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0ba9\u0bae\u0bcd / \u0ba8\u0b9f\u0ba4\u0bcd\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd", - "Location": "\u0b87\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bae\u0bcd", - "Program / Seminar Title": "\u0ba8\u0bbf\u0bb0\u0bb2\u0bcd / \u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb0\u0b99\u0bcd\u0b95 \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1" -} \ 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 deleted file mode 100644 index 423b367c4f..0000000000 --- a/hr/doctype/employee_training/locale/th-doc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "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/other_income_detail/__init__.py b/hr/doctype/other_income_detail/__init__.py deleted file mode 100644 index baffc48825..0000000000 --- a/hr/doctype/other_income_detail/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/hr/doctype/other_income_detail/locale/_messages_doc.json b/hr/doctype/other_income_detail/locale/_messages_doc.json deleted file mode 100644 index 4b80e722ba..0000000000 --- a/hr/doctype/other_income_detail/locale/_messages_doc.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - "Other Income Detail", - "Under Section", - "Modified Amount", - "Actual Amount", - "HR", - "Max. Limit", - "Eligible Amount", - "Particulars" -] \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/ar-doc.json b/hr/doctype/other_income_detail/locale/ar-doc.json deleted file mode 100644 index e074de2ee7..0000000000 --- a/hr/doctype/other_income_detail/locale/ar-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Actual Amount": "\u0627\u0644\u0645\u0628\u0644\u063a \u0627\u0644\u0641\u0639\u0644\u064a", - "Eligible Amount": "\u0627\u0644\u0645\u0624\u0647\u0644\u0629 \u0627\u0644\u0645\u0628\u0644\u063a", - "HR": "HR", - "Max. Limit": "\u0645\u0627\u0643\u0633. \u0642\u0635\u0631", - "Modified Amount": "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0628\u0644\u063a", - "Other Income Detail": "\u062a\u0641\u0627\u0635\u064a\u0644 \u0627\u0644\u0625\u064a\u0631\u0627\u062f\u0627\u062a \u0627\u0644\u0623\u062e\u0631\u0649", - "Particulars": "\u062a\u0641\u0627\u0635\u064a\u0644", - "Under Section": "\u062a\u062d\u062a \u0627\u0644\u0642\u0633\u0645" -} \ 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 deleted file mode 100644 index 9f6b886378..0000000000 --- a/hr/doctype/other_income_detail/locale/de-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "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/other_income_detail/locale/es-doc.json b/hr/doctype/other_income_detail/locale/es-doc.json deleted file mode 100644 index 18824fac2c..0000000000 --- a/hr/doctype/other_income_detail/locale/es-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Actual Amount": "Cantidad real", - "Eligible Amount": "Monto Elegible", - "HR": "HR", - "Max. Limit": "Max. Limitar", - "Modified Amount": "Monto de la modificaci\u00f3n", - "Other Income Detail": "Detalle de otros ingresos", - "Particulars": "Datos", - "Under Section": "Bajo la Secci\u00f3n" -} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/fr-doc.json b/hr/doctype/other_income_detail/locale/fr-doc.json deleted file mode 100644 index 9f2edb53eb..0000000000 --- a/hr/doctype/other_income_detail/locale/fr-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Actual Amount": "Montant r\u00e9el", - "Eligible Amount": "Montant admissible", - "HR": "RH", - "Max. Limit": "Max. Limiter", - "Modified Amount": "Montant de modification", - "Other Income Detail": "D\u00e9tail Autres revenus", - "Particulars": "Coordonn\u00e9es", - "Under Section": "Conform\u00e9ment \u00e0 l'article" -} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/hi-doc.json b/hr/doctype/other_income_detail/locale/hi-doc.json deleted file mode 100644 index 134810c3a6..0000000000 --- a/hr/doctype/other_income_detail/locale/hi-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Actual Amount": "\u0935\u093e\u0938\u094d\u0924\u0935\u093f\u0915 \u0930\u093e\u0936\u093f", - "Eligible Amount": "\u092a\u093e\u0924\u094d\u0930\u0924\u093e \u0930\u093e\u0936\u093f", - "HR": "\u092e\u093e\u0928\u0935 \u0938\u0902\u0938\u093e\u0927\u0928", - "Max. Limit": "\u0905\u0927\u093f\u0915\u0924\u092e \u0938\u0940\u092e\u093e", - "Modified Amount": "\u0938\u0902\u0936\u094b\u0927\u093f\u0924 \u0930\u093e\u0936\u093f", - "Other Income Detail": "\u0905\u0928\u094d\u092f \u0906\u092f \u0935\u093f\u0938\u094d\u0924\u093e\u0930", - "Particulars": "\u092c\u094d\u092f\u094c\u0930\u0947", - "Under Section": "\u0927\u093e\u0930\u093e \u0915\u0947 \u0924\u0939\u0924" -} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/hr-doc.json b/hr/doctype/other_income_detail/locale/hr-doc.json deleted file mode 100644 index 579384648a..0000000000 --- a/hr/doctype/other_income_detail/locale/hr-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Actual Amount": "Stvarni iznos", - "Eligible Amount": "Prihvatljivo Iznos", - "HR": "HR", - "Max. Limit": "Maks. Ograni\u010diti", - "Modified Amount": "Promijenio Iznos", - "Other Income Detail": "Ostali prihodi Detalj", - "Particulars": "Pojedinosti", - "Under Section": "Pod Odjela" -} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/nl-doc.json b/hr/doctype/other_income_detail/locale/nl-doc.json deleted file mode 100644 index 868a56e1c8..0000000000 --- a/hr/doctype/other_income_detail/locale/nl-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Actual Amount": "Werkelijke bedrag", - "Eligible Amount": "In aanmerking komende bedrag", - "HR": "HR", - "Max. Limit": "Max. Beperken", - "Modified Amount": "Gewijzigd Bedrag", - "Other Income Detail": "Overige inkomsten Detail", - "Particulars": "Bijzonderheden", - "Under Section": "Op grond van artikel" -} \ 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 deleted file mode 100644 index be0f530c58..0000000000 --- a/hr/doctype/other_income_detail/locale/pt-BR-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "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/other_income_detail/locale/pt-doc.json b/hr/doctype/other_income_detail/locale/pt-doc.json deleted file mode 100644 index eeae4cf69d..0000000000 --- a/hr/doctype/other_income_detail/locale/pt-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Actual Amount": "Valor Real", - "Eligible Amount": "Montante eleg\u00edvel", - "HR": "HR", - "Max. Limit": "Max. Limitar", - "Modified Amount": "Quantidade modificado", - "Other Income Detail": "Detalhe Outras Receitas", - "Particulars": "Caracter\u00edsticas", - "Under Section": "Segundo a Se\u00e7\u00e3o" -} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/sr-doc.json b/hr/doctype/other_income_detail/locale/sr-doc.json deleted file mode 100644 index 381f4eae71..0000000000 --- a/hr/doctype/other_income_detail/locale/sr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "HR": "\u0425\u0420", - "Other Income Detail": "\u041e\u0441\u0442\u0430\u043b\u0438 \u043f\u0440\u0438\u0445\u043e\u0434\u0438 \u0414\u0435\u0442\u0430\u0459" -} \ No newline at end of file diff --git a/hr/doctype/other_income_detail/locale/ta-doc.json b/hr/doctype/other_income_detail/locale/ta-doc.json deleted file mode 100644 index 9e1f654835..0000000000 --- a/hr/doctype/other_income_detail/locale/ta-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "HR": "\u0b85\u0bb2\u0bc1\u0bb5\u0bb2\u0b95", - "Other Income Detail": "\u0bae\u0bb1\u0bcd\u0bb1 \u0bb5\u0bb0\u0bc1\u0bae\u0bbe\u0ba9\u0bae\u0bcd \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95" -} \ 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 deleted file mode 100644 index 4a54cc5734..0000000000 --- a/hr/doctype/other_income_detail/locale/th-doc.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "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/other_income_detail/other_income_detail.py b/hr/doctype/other_income_detail/other_income_detail.py deleted file mode 100644 index 7f48feb2eb..0000000000 --- a/hr/doctype/other_income_detail/other_income_detail.py +++ /dev/null @@ -1,22 +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 - -class DocType: - def __init__(self, d, dl): - self.doc, self.doclist = d, dl \ No newline at end of file diff --git a/hr/doctype/other_income_detail/other_income_detail.txt b/hr/doctype/other_income_detail/other_income_detail.txt deleted file mode 100644 index b647ee75ea..0000000000 --- a/hr/doctype/other_income_detail/other_income_detail.txt +++ /dev/null @@ -1,99 +0,0 @@ -[ - { - "creation": "2013-02-22 01:27:47", - "docstatus": 0, - "modified": "2013-03-07 07:03:26", - "modified_by": "Administrator", - "owner": "Administrator" - }, - { - "doctype": "DocType", - "istable": 1, - "module": "HR", - "name": "__common__" - }, - { - "doctype": "DocField", - "name": "__common__", - "parent": "Other Income Detail", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0 - }, - { - "doctype": "DocPerm", - "name": "__common__", - "parent": "Other Income Detail", - "parentfield": "permissions", - "parenttype": "DocType", - "permlevel": 0, - "read": 1, - "report": 1, - "role": "System Manager", - "submit": 0, - "write": 1 - }, - { - "doctype": "DocType", - "name": "Other Income Detail" - }, - { - "doctype": "DocField", - "fieldname": "particulars2", - "fieldtype": "Small Text", - "label": "Particulars", - "oldfieldname": "particulars2", - "oldfieldtype": "Small Text", - "print_width": "200px", - "read_only": 1, - "reqd": 1, - "width": "200px" - }, - { - "doctype": "DocField", - "fieldname": "under_section2", - "fieldtype": "Data", - "label": "Under Section", - "oldfieldname": "under_section2", - "oldfieldtype": "Data", - "read_only": 1, - "reqd": 1 - }, - { - "doctype": "DocField", - "fieldname": "max_limit2", - "fieldtype": "Currency", - "label": "Max. Limit", - "oldfieldname": "max_limit2", - "oldfieldtype": "Currency", - "read_only": 1 - }, - { - "doctype": "DocField", - "fieldname": "actual_amount2", - "fieldtype": "Currency", - "label": "Actual Amount", - "oldfieldname": "actual_amount2", - "oldfieldtype": "Currency" - }, - { - "doctype": "DocField", - "fieldname": "eligible_amount2", - "fieldtype": "Currency", - "label": "Eligible Amount", - "oldfieldname": "eligible_amount2", - "oldfieldtype": "Currency", - "read_only": 1 - }, - { - "doctype": "DocField", - "fieldname": "modified_amount2", - "fieldtype": "Currency", - "label": "Modified Amount", - "oldfieldname": "modified_amount2", - "oldfieldtype": "Currency" - }, - { - "doctype": "DocPerm" - } -] \ No newline at end of file From d9dfbae718ad86767a0dc3f9e3b97240097b1e2e Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 15:03:41 +0530 Subject: [PATCH 08/12] [docs] added readme for hr module --- hr/README.md | 6 ++++++ hr/doctype/appraisal/README.md | 1 + hr/doctype/appraisal_goal/README.md | 1 + hr/doctype/appraisal_template/README.md | 1 + hr/doctype/appraisal_template_goal/README.md | 1 + hr/doctype/attendance/README.md | 1 + hr/doctype/branch/README.md | 1 + hr/doctype/deduction_type/README.md | 3 +++ hr/doctype/department/README.md | 1 + hr/doctype/designation/README.md | 1 + hr/doctype/earning_type/README.md | 3 +++ hr/doctype/employee/README.md | 1 + hr/doctype/employee_education/README.md | 1 + hr/doctype/employee_external_work_history/README.md | 1 + hr/doctype/employee_internal_work_history/README.md | 1 + hr/doctype/employee_leave_approver/README.md | 1 + hr/doctype/employment_type/README.md | 3 +++ hr/doctype/expense_claim/README.md | 1 + hr/doctype/expense_claim_detail/README.md | 1 + hr/doctype/expense_claim_type/README.md | 1 + hr/doctype/grade/README.md | 1 + hr/doctype/holiday/README.md | 1 + hr/doctype/holiday_list/README.md | 1 + hr/doctype/job_applicant/README.md | 1 + hr/doctype/job_opening/README.md | 1 + hr/doctype/leave_allocation/README.md | 1 + hr/doctype/leave_application/README.md | 1 + hr/doctype/leave_block_list/README.md | 1 + hr/doctype/leave_block_list_allow/README.md | 1 + hr/doctype/leave_block_list_date/README.md | 1 + hr/doctype/leave_control_panel/README.md | 1 + hr/doctype/leave_type/README.md | 6 ++++++ hr/doctype/salary_manager/README.md | 1 + hr/doctype/salary_slip/README.md | 1 + hr/doctype/salary_slip_deduction/README.md | 5 +++++ hr/doctype/salary_slip_earning/README.md | 6 ++++++ hr/doctype/salary_structure/README.md | 1 + hr/doctype/salary_structure_deduction/README.md | 1 + hr/doctype/salary_structure_earning/README.md | 1 + hr/doctype/upload_attendance/README.md | 1 + 40 files changed, 65 insertions(+) create mode 100644 hr/README.md create mode 100644 hr/doctype/appraisal/README.md create mode 100644 hr/doctype/appraisal_goal/README.md create mode 100644 hr/doctype/appraisal_template/README.md create mode 100644 hr/doctype/appraisal_template_goal/README.md create mode 100644 hr/doctype/attendance/README.md create mode 100644 hr/doctype/branch/README.md create mode 100644 hr/doctype/deduction_type/README.md create mode 100644 hr/doctype/department/README.md create mode 100644 hr/doctype/designation/README.md create mode 100644 hr/doctype/earning_type/README.md create mode 100644 hr/doctype/employee/README.md create mode 100644 hr/doctype/employee_education/README.md create mode 100644 hr/doctype/employee_external_work_history/README.md create mode 100644 hr/doctype/employee_internal_work_history/README.md create mode 100644 hr/doctype/employee_leave_approver/README.md create mode 100644 hr/doctype/employment_type/README.md create mode 100644 hr/doctype/expense_claim/README.md create mode 100644 hr/doctype/expense_claim_detail/README.md create mode 100644 hr/doctype/expense_claim_type/README.md create mode 100644 hr/doctype/grade/README.md create mode 100644 hr/doctype/holiday/README.md create mode 100644 hr/doctype/holiday_list/README.md create mode 100644 hr/doctype/job_applicant/README.md create mode 100644 hr/doctype/job_opening/README.md create mode 100644 hr/doctype/leave_allocation/README.md create mode 100644 hr/doctype/leave_application/README.md create mode 100644 hr/doctype/leave_block_list/README.md create mode 100644 hr/doctype/leave_block_list_allow/README.md create mode 100644 hr/doctype/leave_block_list_date/README.md create mode 100644 hr/doctype/leave_control_panel/README.md create mode 100644 hr/doctype/leave_type/README.md create mode 100644 hr/doctype/salary_manager/README.md create mode 100644 hr/doctype/salary_slip/README.md create mode 100644 hr/doctype/salary_slip_deduction/README.md create mode 100644 hr/doctype/salary_slip_earning/README.md create mode 100644 hr/doctype/salary_structure/README.md create mode 100644 hr/doctype/salary_structure_deduction/README.md create mode 100644 hr/doctype/salary_structure_earning/README.md create mode 100644 hr/doctype/upload_attendance/README.md diff --git a/hr/README.md b/hr/README.md new file mode 100644 index 0000000000..5d1ae6e4ba --- /dev/null +++ b/hr/README.md @@ -0,0 +1,6 @@ +Key features: + +- Leave and Attendance +- Payroll +- Appraisal +- Expense Claim \ No newline at end of file diff --git a/hr/doctype/appraisal/README.md b/hr/doctype/appraisal/README.md new file mode 100644 index 0000000000..7798f188cc --- /dev/null +++ b/hr/doctype/appraisal/README.md @@ -0,0 +1 @@ +Performance of an Employee in a Time Period against given goals. \ No newline at end of file diff --git a/hr/doctype/appraisal_goal/README.md b/hr/doctype/appraisal_goal/README.md new file mode 100644 index 0000000000..851a403bde --- /dev/null +++ b/hr/doctype/appraisal_goal/README.md @@ -0,0 +1 @@ +Goal for the parent Appraisal. \ No newline at end of file diff --git a/hr/doctype/appraisal_template/README.md b/hr/doctype/appraisal_template/README.md new file mode 100644 index 0000000000..d58a744867 --- /dev/null +++ b/hr/doctype/appraisal_template/README.md @@ -0,0 +1 @@ +Standard set of goals for an Employee / Designation / Job Profile. New Appraisal transactions can be created from the Template. \ No newline at end of file diff --git a/hr/doctype/appraisal_template_goal/README.md b/hr/doctype/appraisal_template_goal/README.md new file mode 100644 index 0000000000..1b81afbfce --- /dev/null +++ b/hr/doctype/appraisal_template_goal/README.md @@ -0,0 +1 @@ +Goal details for the parent Appraisal Template. \ No newline at end of file diff --git a/hr/doctype/attendance/README.md b/hr/doctype/attendance/README.md new file mode 100644 index 0000000000..f420b0709c --- /dev/null +++ b/hr/doctype/attendance/README.md @@ -0,0 +1 @@ +Attendance record of an Employee on a particular date. \ No newline at end of file diff --git a/hr/doctype/branch/README.md b/hr/doctype/branch/README.md new file mode 100644 index 0000000000..9f679ec75f --- /dev/null +++ b/hr/doctype/branch/README.md @@ -0,0 +1 @@ +Location belonging to the organization where Employees can belong. \ No newline at end of file diff --git a/hr/doctype/deduction_type/README.md b/hr/doctype/deduction_type/README.md new file mode 100644 index 0000000000..2a22774935 --- /dev/null +++ b/hr/doctype/deduction_type/README.md @@ -0,0 +1,3 @@ +Type of salary deduction. + +e.g. Tax paid on behalf of the employee that is deducted from the salary. \ No newline at end of file diff --git a/hr/doctype/department/README.md b/hr/doctype/department/README.md new file mode 100644 index 0000000000..6f74b863a8 --- /dev/null +++ b/hr/doctype/department/README.md @@ -0,0 +1 @@ +Department where Employee belongs. \ No newline at end of file diff --git a/hr/doctype/designation/README.md b/hr/doctype/designation/README.md new file mode 100644 index 0000000000..a02a923f66 --- /dev/null +++ b/hr/doctype/designation/README.md @@ -0,0 +1 @@ +Employee Designation. \ No newline at end of file diff --git a/hr/doctype/earning_type/README.md b/hr/doctype/earning_type/README.md new file mode 100644 index 0000000000..50aa1b3bf5 --- /dev/null +++ b/hr/doctype/earning_type/README.md @@ -0,0 +1,3 @@ +Type of earning that is a part of the salary. + +e.g. basic salary, bonus etc. \ No newline at end of file diff --git a/hr/doctype/employee/README.md b/hr/doctype/employee/README.md new file mode 100644 index 0000000000..f82e99a3c6 --- /dev/null +++ b/hr/doctype/employee/README.md @@ -0,0 +1 @@ +Employee master. \ No newline at end of file diff --git a/hr/doctype/employee_education/README.md b/hr/doctype/employee_education/README.md new file mode 100644 index 0000000000..4d7ccee157 --- /dev/null +++ b/hr/doctype/employee_education/README.md @@ -0,0 +1 @@ +Education detail for parent Employee. \ No newline at end of file diff --git a/hr/doctype/employee_external_work_history/README.md b/hr/doctype/employee_external_work_history/README.md new file mode 100644 index 0000000000..6564377148 --- /dev/null +++ b/hr/doctype/employee_external_work_history/README.md @@ -0,0 +1 @@ +External work history details of parent Employee. \ No newline at end of file diff --git a/hr/doctype/employee_internal_work_history/README.md b/hr/doctype/employee_internal_work_history/README.md new file mode 100644 index 0000000000..8f7fb3f2b0 --- /dev/null +++ b/hr/doctype/employee_internal_work_history/README.md @@ -0,0 +1 @@ +Work history details of parent Employee within the organization. \ No newline at end of file diff --git a/hr/doctype/employee_leave_approver/README.md b/hr/doctype/employee_leave_approver/README.md new file mode 100644 index 0000000000..329e93c8b4 --- /dev/null +++ b/hr/doctype/employee_leave_approver/README.md @@ -0,0 +1 @@ +User authorized to approve Leave Application for an Employee. \ No newline at end of file diff --git a/hr/doctype/employment_type/README.md b/hr/doctype/employment_type/README.md new file mode 100644 index 0000000000..19de703b24 --- /dev/null +++ b/hr/doctype/employment_type/README.md @@ -0,0 +1,3 @@ +Type of employment. + +e.g. Permanent, Probation, Intern etc. \ No newline at end of file diff --git a/hr/doctype/expense_claim/README.md b/hr/doctype/expense_claim/README.md new file mode 100644 index 0000000000..489029ce39 --- /dev/null +++ b/hr/doctype/expense_claim/README.md @@ -0,0 +1 @@ +Amount claimed by Employee for expense made by the Employee on organization's behalf. \ No newline at end of file diff --git a/hr/doctype/expense_claim_detail/README.md b/hr/doctype/expense_claim_detail/README.md new file mode 100644 index 0000000000..4a747e2ea5 --- /dev/null +++ b/hr/doctype/expense_claim_detail/README.md @@ -0,0 +1 @@ +Detail of expense in parent Expense Claim. \ No newline at end of file diff --git a/hr/doctype/expense_claim_type/README.md b/hr/doctype/expense_claim_type/README.md new file mode 100644 index 0000000000..13a654eab2 --- /dev/null +++ b/hr/doctype/expense_claim_type/README.md @@ -0,0 +1 @@ +Type of expense for Expense Claim. \ No newline at end of file diff --git a/hr/doctype/grade/README.md b/hr/doctype/grade/README.md new file mode 100644 index 0000000000..fedc03bd64 --- /dev/null +++ b/hr/doctype/grade/README.md @@ -0,0 +1 @@ +Employee grade. \ No newline at end of file diff --git a/hr/doctype/holiday/README.md b/hr/doctype/holiday/README.md new file mode 100644 index 0000000000..0d932a9eee --- /dev/null +++ b/hr/doctype/holiday/README.md @@ -0,0 +1 @@ +Holiday date in Holiday List. \ No newline at end of file diff --git a/hr/doctype/holiday_list/README.md b/hr/doctype/holiday_list/README.md new file mode 100644 index 0000000000..1652c0a1ab --- /dev/null +++ b/hr/doctype/holiday_list/README.md @@ -0,0 +1 @@ +List of Holidays. \ No newline at end of file diff --git a/hr/doctype/job_applicant/README.md b/hr/doctype/job_applicant/README.md new file mode 100644 index 0000000000..8eb2edbda0 --- /dev/null +++ b/hr/doctype/job_applicant/README.md @@ -0,0 +1 @@ +Applicant for Job. \ No newline at end of file diff --git a/hr/doctype/job_opening/README.md b/hr/doctype/job_opening/README.md new file mode 100644 index 0000000000..5a19f33c8e --- /dev/null +++ b/hr/doctype/job_opening/README.md @@ -0,0 +1 @@ +Open position for Job. \ No newline at end of file diff --git a/hr/doctype/leave_allocation/README.md b/hr/doctype/leave_allocation/README.md new file mode 100644 index 0000000000..870f9a501a --- /dev/null +++ b/hr/doctype/leave_allocation/README.md @@ -0,0 +1 @@ +Leave Allocated to an Employee at the beginning of the period. \ No newline at end of file diff --git a/hr/doctype/leave_application/README.md b/hr/doctype/leave_application/README.md new file mode 100644 index 0000000000..e78e37a1c2 --- /dev/null +++ b/hr/doctype/leave_application/README.md @@ -0,0 +1 @@ +Application for Leave by an Employee. \ No newline at end of file diff --git a/hr/doctype/leave_block_list/README.md b/hr/doctype/leave_block_list/README.md new file mode 100644 index 0000000000..b23396c4a3 --- /dev/null +++ b/hr/doctype/leave_block_list/README.md @@ -0,0 +1 @@ +List of days on which leaves can only be approved by special users. \ No newline at end of file diff --git a/hr/doctype/leave_block_list_allow/README.md b/hr/doctype/leave_block_list_allow/README.md new file mode 100644 index 0000000000..a735039a1a --- /dev/null +++ b/hr/doctype/leave_block_list_allow/README.md @@ -0,0 +1 @@ +User allowed to approve leave on blocked date. \ No newline at end of file diff --git a/hr/doctype/leave_block_list_date/README.md b/hr/doctype/leave_block_list_date/README.md new file mode 100644 index 0000000000..658f35985d --- /dev/null +++ b/hr/doctype/leave_block_list_date/README.md @@ -0,0 +1 @@ +Date blocked on parent Leave Block List. \ No newline at end of file diff --git a/hr/doctype/leave_control_panel/README.md b/hr/doctype/leave_control_panel/README.md new file mode 100644 index 0000000000..f7d3357570 --- /dev/null +++ b/hr/doctype/leave_control_panel/README.md @@ -0,0 +1 @@ +Tool to allocate leaves in bulk. \ No newline at end of file diff --git a/hr/doctype/leave_type/README.md b/hr/doctype/leave_type/README.md new file mode 100644 index 0000000000..695e9ddafc --- /dev/null +++ b/hr/doctype/leave_type/README.md @@ -0,0 +1,6 @@ +Type of Leave. + +e.g. + +- Casual Leave +- Sick Leave \ No newline at end of file diff --git a/hr/doctype/salary_manager/README.md b/hr/doctype/salary_manager/README.md new file mode 100644 index 0000000000..040d038ec0 --- /dev/null +++ b/hr/doctype/salary_manager/README.md @@ -0,0 +1 @@ +Tool to issue monthly Salary Slips to all Employees. \ No newline at end of file diff --git a/hr/doctype/salary_slip/README.md b/hr/doctype/salary_slip/README.md new file mode 100644 index 0000000000..736550e42c --- /dev/null +++ b/hr/doctype/salary_slip/README.md @@ -0,0 +1 @@ +Details of monthly salary paid for an Employee. \ No newline at end of file diff --git a/hr/doctype/salary_slip_deduction/README.md b/hr/doctype/salary_slip_deduction/README.md new file mode 100644 index 0000000000..d0f2219e83 --- /dev/null +++ b/hr/doctype/salary_slip_deduction/README.md @@ -0,0 +1,5 @@ +Deduction detail in parent Salary Slip. + +e.g. + +- Tax paid on employee's behalf \ No newline at end of file diff --git a/hr/doctype/salary_slip_earning/README.md b/hr/doctype/salary_slip_earning/README.md new file mode 100644 index 0000000000..9da0167f5b --- /dev/null +++ b/hr/doctype/salary_slip_earning/README.md @@ -0,0 +1,6 @@ +Earning detail in parent Salary Slip. + +e.g. + +- Basic Salary +- Performance Bonus diff --git a/hr/doctype/salary_structure/README.md b/hr/doctype/salary_structure/README.md new file mode 100644 index 0000000000..3795971c11 --- /dev/null +++ b/hr/doctype/salary_structure/README.md @@ -0,0 +1 @@ +Salary Template for an Employee, basis of which monthly Salary is calculated. \ No newline at end of file diff --git a/hr/doctype/salary_structure_deduction/README.md b/hr/doctype/salary_structure_deduction/README.md new file mode 100644 index 0000000000..085353910d --- /dev/null +++ b/hr/doctype/salary_structure_deduction/README.md @@ -0,0 +1 @@ +Deduction details in parent Salary Structure. \ No newline at end of file diff --git a/hr/doctype/salary_structure_earning/README.md b/hr/doctype/salary_structure_earning/README.md new file mode 100644 index 0000000000..d495cc4e0e --- /dev/null +++ b/hr/doctype/salary_structure_earning/README.md @@ -0,0 +1 @@ +Earning details in parent Salary Structure. \ No newline at end of file diff --git a/hr/doctype/upload_attendance/README.md b/hr/doctype/upload_attendance/README.md new file mode 100644 index 0000000000..d0b3721016 --- /dev/null +++ b/hr/doctype/upload_attendance/README.md @@ -0,0 +1 @@ +Tool to upload attendance via csv file. \ No newline at end of file From 1e5488fabf461c8bcaa3587dc209ef6860478f62 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 15:12:35 +0530 Subject: [PATCH 09/12] [cleanup] Home Control, Company Control --- home/doctype/company_control/locale/_messages_doc.json | 4 ---- home/doctype/company_control/locale/ar-doc.json | 4 ---- home/doctype/company_control/locale/de-doc.json | 4 ---- home/doctype/company_control/locale/es-doc.json | 4 ---- home/doctype/company_control/locale/fr-doc.json | 4 ---- home/doctype/company_control/locale/hi-doc.json | 4 ---- home/doctype/company_control/locale/hr-doc.json | 4 ---- home/doctype/company_control/locale/nl-doc.json | 4 ---- home/doctype/company_control/locale/pt-BR-doc.json | 4 ---- home/doctype/company_control/locale/pt-doc.json | 4 ---- home/doctype/company_control/locale/sr-doc.json | 4 ---- home/doctype/company_control/locale/ta-doc.json | 4 ---- home/doctype/company_control/locale/th-doc.json | 4 ---- home/doctype/home_control/locale/_messages_doc.json | 4 ---- home/doctype/home_control/locale/ar-doc.json | 4 ---- home/doctype/home_control/locale/de-doc.json | 4 ---- home/doctype/home_control/locale/es-doc.json | 4 ---- home/doctype/home_control/locale/fr-doc.json | 4 ---- home/doctype/home_control/locale/hi-doc.json | 4 ---- home/doctype/home_control/locale/hr-doc.json | 4 ---- home/doctype/home_control/locale/nl-doc.json | 4 ---- home/doctype/home_control/locale/pt-BR-doc.json | 4 ---- home/doctype/home_control/locale/pt-doc.json | 4 ---- home/doctype/home_control/locale/sr-doc.json | 4 ---- home/doctype/home_control/locale/ta-doc.json | 4 ---- home/doctype/home_control/locale/th-doc.json | 4 ---- 26 files changed, 104 deletions(-) delete mode 100644 home/doctype/company_control/locale/_messages_doc.json delete mode 100644 home/doctype/company_control/locale/ar-doc.json delete mode 100644 home/doctype/company_control/locale/de-doc.json delete mode 100644 home/doctype/company_control/locale/es-doc.json delete mode 100644 home/doctype/company_control/locale/fr-doc.json delete mode 100644 home/doctype/company_control/locale/hi-doc.json delete mode 100644 home/doctype/company_control/locale/hr-doc.json delete mode 100644 home/doctype/company_control/locale/nl-doc.json delete mode 100644 home/doctype/company_control/locale/pt-BR-doc.json delete mode 100644 home/doctype/company_control/locale/pt-doc.json delete mode 100644 home/doctype/company_control/locale/sr-doc.json delete mode 100644 home/doctype/company_control/locale/ta-doc.json delete mode 100644 home/doctype/company_control/locale/th-doc.json delete mode 100644 home/doctype/home_control/locale/_messages_doc.json delete mode 100644 home/doctype/home_control/locale/ar-doc.json delete mode 100644 home/doctype/home_control/locale/de-doc.json delete mode 100644 home/doctype/home_control/locale/es-doc.json delete mode 100644 home/doctype/home_control/locale/fr-doc.json delete mode 100644 home/doctype/home_control/locale/hi-doc.json delete mode 100644 home/doctype/home_control/locale/hr-doc.json delete mode 100644 home/doctype/home_control/locale/nl-doc.json delete mode 100644 home/doctype/home_control/locale/pt-BR-doc.json delete mode 100644 home/doctype/home_control/locale/pt-doc.json delete mode 100644 home/doctype/home_control/locale/sr-doc.json delete mode 100644 home/doctype/home_control/locale/ta-doc.json delete mode 100644 home/doctype/home_control/locale/th-doc.json diff --git a/home/doctype/company_control/locale/_messages_doc.json b/home/doctype/company_control/locale/_messages_doc.json deleted file mode 100644 index ee26ed80a8..0000000000 --- a/home/doctype/company_control/locale/_messages_doc.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "Home", - "Company Control" -] \ No newline at end of file diff --git a/home/doctype/company_control/locale/ar-doc.json b/home/doctype/company_control/locale/ar-doc.json deleted file mode 100644 index f4762f93c6..0000000000 --- a/home/doctype/company_control/locale/ar-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "\u0634\u0631\u0643\u0629 \u0627\u0644\u062a\u062d\u0643\u0645", - "Home": "\u0645\u0646\u0632\u0644" -} \ 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 deleted file mode 100644 index 5b1d41d1b4..0000000000 --- a/home/doctype/company_control/locale/de-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "Firma Control", - "Home": "Zuhause" -} \ No newline at end of file diff --git a/home/doctype/company_control/locale/es-doc.json b/home/doctype/company_control/locale/es-doc.json deleted file mode 100644 index fdc888a679..0000000000 --- a/home/doctype/company_control/locale/es-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "Control Company", - "Home": "Casa" -} \ No newline at end of file diff --git a/home/doctype/company_control/locale/fr-doc.json b/home/doctype/company_control/locale/fr-doc.json deleted file mode 100644 index 33c6255a30..0000000000 --- a/home/doctype/company_control/locale/fr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "Control Entreprise", - "Home": "Maison" -} \ No newline at end of file diff --git a/home/doctype/company_control/locale/hi-doc.json b/home/doctype/company_control/locale/hi-doc.json deleted file mode 100644 index c72fd0c717..0000000000 --- a/home/doctype/company_control/locale/hi-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "\u0915\u0902\u092a\u0928\u0940 \u0915\u0947 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923", - "Home": "\u0918\u0930" -} \ No newline at end of file diff --git a/home/doctype/company_control/locale/hr-doc.json b/home/doctype/company_control/locale/hr-doc.json deleted file mode 100644 index 6069e8cbe8..0000000000 --- a/home/doctype/company_control/locale/hr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "Tvrtka Kontrola", - "Home": "Dom" -} \ No newline at end of file diff --git a/home/doctype/company_control/locale/nl-doc.json b/home/doctype/company_control/locale/nl-doc.json deleted file mode 100644 index 710a560ec8..0000000000 --- a/home/doctype/company_control/locale/nl-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "Bedrijf Controle", - "Home": "Thuis" -} \ 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 deleted file mode 100644 index 77c527f8f1..0000000000 --- a/home/doctype/company_control/locale/pt-BR-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "Controle da Empresa", - "Home": "In\u00edcio" -} \ No newline at end of file diff --git a/home/doctype/company_control/locale/pt-doc.json b/home/doctype/company_control/locale/pt-doc.json deleted file mode 100644 index b942b8bc36..0000000000 --- a/home/doctype/company_control/locale/pt-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "Controle da Companhia", - "Home": "Casa" -} \ No newline at end of file diff --git a/home/doctype/company_control/locale/sr-doc.json b/home/doctype/company_control/locale/sr-doc.json deleted file mode 100644 index 66665e3d38..0000000000 --- a/home/doctype/company_control/locale/sr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u0458\u0430 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430", - "Home": "\u041a\u0443\u045b\u0438" -} \ No newline at end of file diff --git a/home/doctype/company_control/locale/ta-doc.json b/home/doctype/company_control/locale/ta-doc.json deleted file mode 100644 index ffd5d969de..0000000000 --- a/home/doctype/company_control/locale/ta-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Company Control": "\u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0ba9\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1", - "Home": "\u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1" -} \ 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 deleted file mode 100644 index 885d0f94ef..0000000000 --- a/home/doctype/company_control/locale/th-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "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/home_control/locale/_messages_doc.json b/home/doctype/home_control/locale/_messages_doc.json deleted file mode 100644 index 0418d250e1..0000000000 --- a/home/doctype/home_control/locale/_messages_doc.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "Home", - "Home Control" -] \ No newline at end of file diff --git a/home/doctype/home_control/locale/ar-doc.json b/home/doctype/home_control/locale/ar-doc.json deleted file mode 100644 index 3e593ffbb6..0000000000 --- a/home/doctype/home_control/locale/ar-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "\u0645\u0646\u0632\u0644", - "Home Control": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062a\u062d\u0643\u0645" -} \ 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 deleted file mode 100644 index 84774ebf0f..0000000000 --- a/home/doctype/home_control/locale/de-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "Zuhause", - "Home Control": "Home Control" -} \ No newline at end of file diff --git a/home/doctype/home_control/locale/es-doc.json b/home/doctype/home_control/locale/es-doc.json deleted file mode 100644 index 988d65dbff..0000000000 --- a/home/doctype/home_control/locale/es-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "Casa", - "Home Control": "P\u00e1gina principal Control" -} \ No newline at end of file diff --git a/home/doctype/home_control/locale/fr-doc.json b/home/doctype/home_control/locale/fr-doc.json deleted file mode 100644 index 60488858b9..0000000000 --- a/home/doctype/home_control/locale/fr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "Maison", - "Home Control": "Home Control" -} \ No newline at end of file diff --git a/home/doctype/home_control/locale/hi-doc.json b/home/doctype/home_control/locale/hi-doc.json deleted file mode 100644 index ec4137e1be..0000000000 --- a/home/doctype/home_control/locale/hi-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "\u0918\u0930", - "Home Control": "\u0939\u094b\u092e \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923" -} \ No newline at end of file diff --git a/home/doctype/home_control/locale/hr-doc.json b/home/doctype/home_control/locale/hr-doc.json deleted file mode 100644 index 07b36131a0..0000000000 --- a/home/doctype/home_control/locale/hr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "Dom", - "Home Control": "Po\u010detna kontrola" -} \ No newline at end of file diff --git a/home/doctype/home_control/locale/nl-doc.json b/home/doctype/home_control/locale/nl-doc.json deleted file mode 100644 index 38354655a7..0000000000 --- a/home/doctype/home_control/locale/nl-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "Thuis", - "Home Control": "Home Control" -} \ 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 deleted file mode 100644 index 406e97e477..0000000000 --- a/home/doctype/home_control/locale/pt-BR-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "In\u00edcio", - "Home Control": "In\u00edcio de Controle" -} \ No newline at end of file diff --git a/home/doctype/home_control/locale/pt-doc.json b/home/doctype/home_control/locale/pt-doc.json deleted file mode 100644 index baf3481cbf..0000000000 --- a/home/doctype/home_control/locale/pt-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "Casa", - "Home Control": "Home Control" -} \ No newline at end of file diff --git a/home/doctype/home_control/locale/sr-doc.json b/home/doctype/home_control/locale/sr-doc.json deleted file mode 100644 index ab13472d8d..0000000000 --- a/home/doctype/home_control/locale/sr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "\u041a\u0443\u045b\u0438", - "Home Control": "\u0425\u043e\u043c\u0435 \u0426\u043e\u043d\u0442\u0440\u043e\u043b" -} \ No newline at end of file diff --git a/home/doctype/home_control/locale/ta-doc.json b/home/doctype/home_control/locale/ta-doc.json deleted file mode 100644 index e5b23f1624..0000000000 --- a/home/doctype/home_control/locale/ta-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Home": "\u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1", - "Home Control": "\u0bae\u0bc1\u0b95\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1" -} \ 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 deleted file mode 100644 index 3fce0b9f07..0000000000 --- a/home/doctype/home_control/locale/th-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "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 From 95e46bc93008e4ffde1a42b53322e191cb7ea578 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 15:12:51 +0530 Subject: [PATCH 10/12] [docs] for home, buying modules --- buying/README.md | 8 ++++++++ buying/doctype/purchase_common/README.md | 1 + buying/doctype/purchase_order/README.md | 1 + buying/doctype/purchase_order_item/README.md | 1 + buying/doctype/purchase_order_item_supplied/README.md | 1 + buying/doctype/purchase_receipt_item_supplied/README.md | 1 + buying/doctype/quality_inspection/README.md | 1 + buying/doctype/quality_inspection_reading/README.md | 1 + buying/doctype/supplier/README.md | 1 + buying/doctype/supplier_quotation/README.md | 1 + buying/doctype/supplier_quotation_item/README.md | 1 + buying/page/purchase_analytics/README.md | 1 + home/doctype/feed/README.md | 1 + home/page/activity/README.md | 1 + home/page/attributions/README.md | 1 + home/page/latest_updates/README.md | 1 + 16 files changed, 23 insertions(+) create mode 100644 buying/README.md create mode 100644 buying/doctype/purchase_common/README.md create mode 100644 buying/doctype/purchase_order/README.md create mode 100644 buying/doctype/purchase_order_item/README.md create mode 100644 buying/doctype/purchase_order_item_supplied/README.md create mode 100644 buying/doctype/purchase_receipt_item_supplied/README.md create mode 100644 buying/doctype/quality_inspection/README.md create mode 100644 buying/doctype/quality_inspection_reading/README.md create mode 100644 buying/doctype/supplier/README.md create mode 100644 buying/doctype/supplier_quotation/README.md create mode 100644 buying/doctype/supplier_quotation_item/README.md create mode 100644 buying/page/purchase_analytics/README.md create mode 100644 home/doctype/feed/README.md create mode 100644 home/page/activity/README.md create mode 100644 home/page/attributions/README.md create mode 100644 home/page/latest_updates/README.md diff --git a/buying/README.md b/buying/README.md new file mode 100644 index 0000000000..ce89da0e31 --- /dev/null +++ b/buying/README.md @@ -0,0 +1,8 @@ +Manage buying (purchasing). + +Transactions include: + +- Material Request +- Supplier Quotation +- Purchase Order +- Quality Inspection \ No newline at end of file diff --git a/buying/doctype/purchase_common/README.md b/buying/doctype/purchase_common/README.md new file mode 100644 index 0000000000..bedec2a0e4 --- /dev/null +++ b/buying/doctype/purchase_common/README.md @@ -0,0 +1 @@ +Common scripts for purchase transactions. \ No newline at end of file diff --git a/buying/doctype/purchase_order/README.md b/buying/doctype/purchase_order/README.md new file mode 100644 index 0000000000..992377de29 --- /dev/null +++ b/buying/doctype/purchase_order/README.md @@ -0,0 +1 @@ +Confirmed order to Supplier to deliver certain Items. \ No newline at end of file diff --git a/buying/doctype/purchase_order_item/README.md b/buying/doctype/purchase_order_item/README.md new file mode 100644 index 0000000000..b05ac1d349 --- /dev/null +++ b/buying/doctype/purchase_order_item/README.md @@ -0,0 +1 @@ +Item details (qty, rate etc.) for parent Purchase Order. \ No newline at end of file diff --git a/buying/doctype/purchase_order_item_supplied/README.md b/buying/doctype/purchase_order_item_supplied/README.md new file mode 100644 index 0000000000..37f92bdcd1 --- /dev/null +++ b/buying/doctype/purchase_order_item_supplied/README.md @@ -0,0 +1 @@ +Raw material (if any) supplied along with Purchase Order. \ No newline at end of file diff --git a/buying/doctype/purchase_receipt_item_supplied/README.md b/buying/doctype/purchase_receipt_item_supplied/README.md new file mode 100644 index 0000000000..039a6b4740 --- /dev/null +++ b/buying/doctype/purchase_receipt_item_supplied/README.md @@ -0,0 +1 @@ +Details of Items supplied when receiving purchases via Purchase Receipt. \ No newline at end of file diff --git a/buying/doctype/quality_inspection/README.md b/buying/doctype/quality_inspection/README.md new file mode 100644 index 0000000000..3a6a4c92dc --- /dev/null +++ b/buying/doctype/quality_inspection/README.md @@ -0,0 +1 @@ +Incoming quality inspection for received Items. \ No newline at end of file diff --git a/buying/doctype/quality_inspection_reading/README.md b/buying/doctype/quality_inspection_reading/README.md new file mode 100644 index 0000000000..8fad6c914b --- /dev/null +++ b/buying/doctype/quality_inspection_reading/README.md @@ -0,0 +1 @@ +Parameter reading for quality inspection of particular Item. \ No newline at end of file diff --git a/buying/doctype/supplier/README.md b/buying/doctype/supplier/README.md new file mode 100644 index 0000000000..92a1f8675f --- /dev/null +++ b/buying/doctype/supplier/README.md @@ -0,0 +1 @@ +Supplier (vendor) master. \ No newline at end of file diff --git a/buying/doctype/supplier_quotation/README.md b/buying/doctype/supplier_quotation/README.md new file mode 100644 index 0000000000..65f94f2fc8 --- /dev/null +++ b/buying/doctype/supplier_quotation/README.md @@ -0,0 +1 @@ +Quotation sent by Supplier with price, qty and terms. \ No newline at end of file diff --git a/buying/doctype/supplier_quotation_item/README.md b/buying/doctype/supplier_quotation_item/README.md new file mode 100644 index 0000000000..42a83cffb9 --- /dev/null +++ b/buying/doctype/supplier_quotation_item/README.md @@ -0,0 +1 @@ +Item details (rate, qty) in parent Supplier Quotation. \ No newline at end of file diff --git a/buying/page/purchase_analytics/README.md b/buying/page/purchase_analytics/README.md new file mode 100644 index 0000000000..332e4c2c05 --- /dev/null +++ b/buying/page/purchase_analytics/README.md @@ -0,0 +1 @@ +Trends of purchases across Items, Item Groups, Suppliers. \ No newline at end of file diff --git a/home/doctype/feed/README.md b/home/doctype/feed/README.md new file mode 100644 index 0000000000..085e5758b0 --- /dev/null +++ b/home/doctype/feed/README.md @@ -0,0 +1 @@ +Activity Feed. \ No newline at end of file diff --git a/home/page/activity/README.md b/home/page/activity/README.md new file mode 100644 index 0000000000..59e0352d12 --- /dev/null +++ b/home/page/activity/README.md @@ -0,0 +1 @@ +List of latest activities based on Feed. \ No newline at end of file diff --git a/home/page/attributions/README.md b/home/page/attributions/README.md new file mode 100644 index 0000000000..a5237bb8ce --- /dev/null +++ b/home/page/attributions/README.md @@ -0,0 +1 @@ +Attributions for software libraries / images used in ERPNext. \ No newline at end of file diff --git a/home/page/latest_updates/README.md b/home/page/latest_updates/README.md new file mode 100644 index 0000000000..d3bf0d46f1 --- /dev/null +++ b/home/page/latest_updates/README.md @@ -0,0 +1 @@ +Update log. \ No newline at end of file From 7a22616d71553e040cbfab9bce9d612781590788 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 16:05:56 +0530 Subject: [PATCH 11/12] [cleanup] GL Control, Multi Ledger Report Detail, Trend Analyzer Control --- .../gl_control/locale/_messages_doc.json | 4 - .../doctype/gl_control/locale/ar-doc.json | 4 - .../doctype/gl_control/locale/de-doc.json | 4 - .../doctype/gl_control/locale/es-doc.json | 4 - .../doctype/gl_control/locale/fr-doc.json | 4 - .../doctype/gl_control/locale/hi-doc.json | 4 - .../doctype/gl_control/locale/hr-doc.json | 4 - .../doctype/gl_control/locale/nl-doc.json | 4 - .../doctype/gl_control/locale/pt-BR-doc.json | 4 - .../doctype/gl_control/locale/pt-doc.json | 4 - .../doctype/gl_control/locale/th-doc.json | 4 - .../multi_ledger_report_detail/__init__.py | 1 - .../locale/_messages_doc.json | 5 - .../locale/ar-doc.json | 5 - .../locale/de-doc.json | 5 - .../locale/es-doc.json | 5 - .../locale/fr-doc.json | 5 - .../locale/hi-doc.json | 5 - .../locale/hr-doc.json | 5 - .../locale/nl-doc.json | 5 - .../locale/pt-BR-doc.json | 5 - .../locale/pt-doc.json | 5 - .../locale/sr-doc.json | 5 - .../locale/ta-doc.json | 5 - .../locale/th-doc.json | 5 - .../multi_ledger_report_detail.py | 22 ---- .../multi_ledger_report_detail.txt | 37 ------ .../trend_analyzer_control/__init__.py | 1 - .../locale/_messages_doc.json | 4 - .../trend_analyzer_control/locale/ar-doc.json | 4 - .../trend_analyzer_control/locale/de-doc.json | 4 - .../trend_analyzer_control/locale/es-doc.json | 4 - .../trend_analyzer_control/locale/fr-doc.json | 4 - .../trend_analyzer_control/locale/hi-doc.json | 4 - .../trend_analyzer_control/locale/hr-doc.json | 4 - .../trend_analyzer_control/locale/nl-doc.json | 4 - .../locale/pt-BR-doc.json | 4 - .../trend_analyzer_control/locale/pt-doc.json | 4 - .../trend_analyzer_control/locale/sr-doc.json | 4 - .../trend_analyzer_control/locale/ta-doc.json | 4 - .../trend_analyzer_control/locale/th-doc.json | 4 - .../trend_analyzer_control.py | 115 ------------------ .../trend_analyzer_control.txt | 23 ---- 43 files changed, 360 deletions(-) delete mode 100644 accounts/doctype/gl_control/locale/_messages_doc.json delete mode 100644 accounts/doctype/gl_control/locale/ar-doc.json delete mode 100644 accounts/doctype/gl_control/locale/de-doc.json delete mode 100644 accounts/doctype/gl_control/locale/es-doc.json delete mode 100644 accounts/doctype/gl_control/locale/fr-doc.json delete mode 100644 accounts/doctype/gl_control/locale/hi-doc.json delete mode 100644 accounts/doctype/gl_control/locale/hr-doc.json delete mode 100644 accounts/doctype/gl_control/locale/nl-doc.json delete mode 100644 accounts/doctype/gl_control/locale/pt-BR-doc.json delete mode 100644 accounts/doctype/gl_control/locale/pt-doc.json delete mode 100644 accounts/doctype/gl_control/locale/th-doc.json delete mode 100755 accounts/doctype/multi_ledger_report_detail/__init__.py delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/ar-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/de-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/es-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/fr-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/hi-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/hr-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/nl-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/pt-BR-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/pt-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/sr-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/ta-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/locale/th-doc.json delete mode 100644 accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.py delete mode 100755 accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt delete mode 100755 accounts/doctype/trend_analyzer_control/__init__.py delete mode 100644 accounts/doctype/trend_analyzer_control/locale/_messages_doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/ar-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/de-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/es-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/fr-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/hi-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/hr-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/nl-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/pt-BR-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/pt-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/sr-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/ta-doc.json delete mode 100644 accounts/doctype/trend_analyzer_control/locale/th-doc.json delete mode 100755 accounts/doctype/trend_analyzer_control/trend_analyzer_control.py delete mode 100755 accounts/doctype/trend_analyzer_control/trend_analyzer_control.txt diff --git a/accounts/doctype/gl_control/locale/_messages_doc.json b/accounts/doctype/gl_control/locale/_messages_doc.json deleted file mode 100644 index e7bfed9bec..0000000000 --- a/accounts/doctype/gl_control/locale/_messages_doc.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "GL Control", - "Accounts" -] \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/ar-doc.json b/accounts/doctype/gl_control/locale/ar-doc.json deleted file mode 100644 index 779b94f3a0..0000000000 --- a/accounts/doctype/gl_control/locale/ar-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "\u062d\u0633\u0627\u0628\u0627\u062a", - "GL Control": "GL \u0627\u0644\u062a\u062d\u0643\u0645" -} \ 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 deleted file mode 100644 index 39eaf86a5e..0000000000 --- a/accounts/doctype/gl_control/locale/de-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Konten", - "GL Control": "GL Steuerung" -} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/es-doc.json b/accounts/doctype/gl_control/locale/es-doc.json deleted file mode 100644 index f7a8eeecfc..0000000000 --- a/accounts/doctype/gl_control/locale/es-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Cuentas", - "GL Control": "GL control" -} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/fr-doc.json b/accounts/doctype/gl_control/locale/fr-doc.json deleted file mode 100644 index a7d3b17235..0000000000 --- a/accounts/doctype/gl_control/locale/fr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Comptes", - "GL Control": "GL contr\u00f4le" -} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/hi-doc.json b/accounts/doctype/gl_control/locale/hi-doc.json deleted file mode 100644 index ab677fae45..0000000000 --- a/accounts/doctype/gl_control/locale/hi-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "\u0932\u0947\u0916\u093e", - "GL Control": "\u091c\u0940\u090f\u0932 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923" -} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/hr-doc.json b/accounts/doctype/gl_control/locale/hr-doc.json deleted file mode 100644 index fd9e5bfd09..0000000000 --- a/accounts/doctype/gl_control/locale/hr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Ra\u010duni", - "GL Control": "GL kontrola" -} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/nl-doc.json b/accounts/doctype/gl_control/locale/nl-doc.json deleted file mode 100644 index af964d5dd9..0000000000 --- a/accounts/doctype/gl_control/locale/nl-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Accounts", - "GL Control": "GL Controle" -} \ 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 deleted file mode 100644 index bac28e175c..0000000000 --- a/accounts/doctype/gl_control/locale/pt-BR-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Contas", - "GL Control": "GL Controle" -} \ No newline at end of file diff --git a/accounts/doctype/gl_control/locale/pt-doc.json b/accounts/doctype/gl_control/locale/pt-doc.json deleted file mode 100644 index bac28e175c..0000000000 --- a/accounts/doctype/gl_control/locale/pt-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Contas", - "GL Control": "GL Controle" -} \ 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 deleted file mode 100644 index 74d66fdbbe..0000000000 --- a/accounts/doctype/gl_control/locale/th-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "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/multi_ledger_report_detail/__init__.py b/accounts/doctype/multi_ledger_report_detail/__init__.py deleted file mode 100755 index baffc48825..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json b/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json deleted file mode 100644 index ee7393edbd..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/_messages_doc.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - "Multi Ledger Report Detail", - "Account", - "Accounts" -] \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/ar-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/ar-doc.json deleted file mode 100644 index 2317a7ae79..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/ar-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "\u062d\u0633\u0627\u0628", - "Accounts": "\u062d\u0633\u0627\u0628\u0627\u062a", - "Multi Ledger Report Detail": "\u0645\u0648\u0636\u0648\u0639 \u062a\u0642\u0631\u064a\u0631 \u062a\u0641\u0635\u064a\u0644\u064a \u0644\u064a\u062f\u062c\u0631" -} \ 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 deleted file mode 100644 index c7f03178a5..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/de-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "Konto", - "Accounts": "Konten", - "Multi Ledger Report Detail": "Multi Ledger Detail Report" -} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/es-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/es-doc.json deleted file mode 100644 index be093b63fa..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/es-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "Cuenta", - "Accounts": "Cuentas", - "Multi Ledger Report Detail": "M\u00faltiples Ledger Informe detallado" -} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/fr-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/fr-doc.json deleted file mode 100644 index 78f209fa34..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/fr-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "Compte", - "Accounts": "Comptes", - "Multi Ledger Report Detail": "Multi D\u00e9tail Rapport Ledger" -} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/hi-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/hi-doc.json deleted file mode 100644 index 9ee1fecd70..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/hi-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "\u0916\u093e\u0924\u093e", - "Accounts": "\u0932\u0947\u0916\u093e", - "Multi Ledger Report Detail": "\u092e\u0932\u094d\u091f\u0940 \u0932\u0947\u091c\u0930 \u0930\u093f\u092a\u094b\u0930\u094d\u091f \u0935\u093f\u0938\u094d\u0924\u093e\u0930" -} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/hr-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/hr-doc.json deleted file mode 100644 index 76c520c0ec..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/hr-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "Ra\u010dun", - "Accounts": "Ra\u010duni", - "Multi Ledger Report Detail": "Multi knjiga Izvje\u0161\u0107e Detalj" -} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/nl-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/nl-doc.json deleted file mode 100644 index 8526cabdfa..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/nl-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "Rekening", - "Accounts": "Accounts", - "Multi Ledger Report Detail": "Multi Ledger Report Detail" -} \ 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 deleted file mode 100644 index 3ddf7bae0b..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/pt-BR-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "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/multi_ledger_report_detail/locale/pt-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/pt-doc.json deleted file mode 100644 index e50bcdb3fa..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/pt-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "Conta", - "Accounts": "Contas", - "Multi Ledger Report Detail": "Detalhes do Relat\u00f3rio de multi Ledger" -} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/sr-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/sr-doc.json deleted file mode 100644 index 6998aece69..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/sr-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "\u0420\u0430\u0447\u0443\u043d", - "Accounts": "\u0420\u0430\u0447\u0443\u043d\u0438", - "Multi Ledger Report Detail": "\u041c\u0443\u043b\u0442\u0438 \u041b\u0435\u045f\u0435\u0440 \u0418\u0437\u0432\u0435\u0448\u0442\u0430\u0458 \u0414\u0435\u0442\u0430\u0459" -} \ No newline at end of file diff --git a/accounts/doctype/multi_ledger_report_detail/locale/ta-doc.json b/accounts/doctype/multi_ledger_report_detail/locale/ta-doc.json deleted file mode 100644 index d7ff26cadf..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/ta-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "Account": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bc1", - "Accounts": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bc1\u0b95\u0bb3\u0bcd", - "Multi Ledger Report Detail": "\u0baa\u0bb2 \u0bb2\u0bc6\u0b9f\u0bcd\u0b9c\u0bb0\u0bcd \u0b85\u0bb1\u0bbf\u0b95\u0bcd\u0b95\u0bc8 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95" -} \ 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 deleted file mode 100644 index b4d286967a..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/locale/th-doc.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "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/multi_ledger_report_detail/multi_ledger_report_detail.py b/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.py deleted file mode 100644 index 7f48feb2eb..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.py +++ /dev/null @@ -1,22 +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 - -class DocType: - def __init__(self, d, dl): - self.doc, self.doclist = d, dl \ 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 deleted file mode 100755 index 46563ddac1..0000000000 --- a/accounts/doctype/multi_ledger_report_detail/multi_ledger_report_detail.txt +++ /dev/null @@ -1,37 +0,0 @@ -[ - { - "creation": "2013-02-22 01:27:39", - "docstatus": 0, - "modified": "2013-03-07 07:03:26", - "modified_by": "Administrator", - "owner": "Administrator" - }, - { - "doctype": "DocType", - "istable": 1, - "module": "Accounts", - "name": "__common__" - }, - { - "doctype": "DocField", - "fieldname": "account", - "fieldtype": "Link", - "label": "Account", - "name": "__common__", - "options": "Account", - "parent": "Multi Ledger Report Detail", - "parentfield": "fields", - "parenttype": "DocType", - "permlevel": 0, - "print_width": "300px", - "reqd": 1, - "width": "300px" - }, - { - "doctype": "DocType", - "name": "Multi Ledger Report Detail" - }, - { - "doctype": "DocField" - } -] \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/__init__.py b/accounts/doctype/trend_analyzer_control/__init__.py deleted file mode 100755 index baffc48825..0000000000 --- a/accounts/doctype/trend_analyzer_control/__init__.py +++ /dev/null @@ -1 +0,0 @@ -from __future__ import unicode_literals diff --git a/accounts/doctype/trend_analyzer_control/locale/_messages_doc.json b/accounts/doctype/trend_analyzer_control/locale/_messages_doc.json deleted file mode 100644 index 9a2dc73232..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/_messages_doc.json +++ /dev/null @@ -1,4 +0,0 @@ -[ - "Trend Analyzer Control", - "Accounts" -] \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/ar-doc.json b/accounts/doctype/trend_analyzer_control/locale/ar-doc.json deleted file mode 100644 index d60829282e..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/ar-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "\u062d\u0633\u0627\u0628\u0627\u062a", - "Trend Analyzer Control": "\u0627\u0644\u0627\u062a\u062c\u0627\u0647 \u0645\u062d\u0644\u0644 \u0627\u0644\u062a\u062d\u0643\u0645" -} \ 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 deleted file mode 100644 index ef575dd584..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/de-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Konten", - "Trend Analyzer Control": "Trend Analyzer Steuerung" -} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/es-doc.json b/accounts/doctype/trend_analyzer_control/locale/es-doc.json deleted file mode 100644 index d06a5360bf..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/es-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Cuentas", - "Trend Analyzer Control": "Trend Control Analizador" -} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/fr-doc.json b/accounts/doctype/trend_analyzer_control/locale/fr-doc.json deleted file mode 100644 index 12fe511662..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/fr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Comptes", - "Trend Analyzer Control": "Contr\u00f4le Analyseur de tendance" -} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/hi-doc.json b/accounts/doctype/trend_analyzer_control/locale/hi-doc.json deleted file mode 100644 index e2c7f0830b..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/hi-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "\u0932\u0947\u0916\u093e", - "Trend Analyzer Control": "\u0930\u0941\u091d\u093e\u0928 \u0935\u093f\u0936\u094d\u0932\u0947\u0937\u0915 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0923" -} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/hr-doc.json b/accounts/doctype/trend_analyzer_control/locale/hr-doc.json deleted file mode 100644 index 18ecc7304c..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/hr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Ra\u010duni", - "Trend Analyzer Control": "Trend Analyzer kontrola" -} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/nl-doc.json b/accounts/doctype/trend_analyzer_control/locale/nl-doc.json deleted file mode 100644 index 60c027457e..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/nl-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Accounts", - "Trend Analyzer Control": "Trendanalyse Controle" -} \ 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 deleted file mode 100644 index 9f99885f99..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/pt-BR-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Contas", - "Trend Analyzer Control": "Controle do Analisador de tend\u00eancia" -} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/pt-doc.json b/accounts/doctype/trend_analyzer_control/locale/pt-doc.json deleted file mode 100644 index ee95c400fc..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/pt-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "Contas", - "Trend Analyzer Control": "Controlo Analyzer tend\u00eancia" -} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/sr-doc.json b/accounts/doctype/trend_analyzer_control/locale/sr-doc.json deleted file mode 100644 index 06ee34cf86..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/sr-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "\u0420\u0430\u0447\u0443\u043d\u0438", - "Trend Analyzer Control": "\u0422\u0440\u0435\u043d\u0434 \u0410\u043d\u0430\u043b\u0438\u0437\u0435\u0440 \u041a\u043e\u043d\u0442\u0440\u043e\u043b\u0430" -} \ No newline at end of file diff --git a/accounts/doctype/trend_analyzer_control/locale/ta-doc.json b/accounts/doctype/trend_analyzer_control/locale/ta-doc.json deleted file mode 100644 index eea8f0e5c7..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/ta-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Accounts": "\u0b95\u0ba3\u0b95\u0bcd\u0b95\u0bc1\u0b95\u0bb3\u0bcd", - "Trend Analyzer Control": "\u0baa\u0bc7\u0bbe\u0b95\u0bcd\u0b95\u0bc1 \u0baa\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0baf\u0bcd\u0bb5\u0bbf \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1" -} \ 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 deleted file mode 100644 index 23eaa1a863..0000000000 --- a/accounts/doctype/trend_analyzer_control/locale/th-doc.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "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/doctype/trend_analyzer_control/trend_analyzer_control.py b/accounts/doctype/trend_analyzer_control/trend_analyzer_control.py deleted file mode 100755 index 8c9f227886..0000000000 --- a/accounts/doctype/trend_analyzer_control/trend_analyzer_control.py +++ /dev/null @@ -1,115 +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 add_days, add_months, cint, cstr -from webnotes.model import db_exists -from webnotes.model.bean import copy_doclist - -sql = webnotes.conn.sql - - -class DocType: - def __init__(self, d, dl): - self.doc, self.doclist = d, dl - - - # Define Globals - # --------------- - def define_globals(self, trans, fiscal_year): - self.month_name = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'] - - if trans == 'Purchase Receipt' or trans == 'Delivery Note' or trans == 'Purchase Invoice' or trans == 'Sales Invoice': - self.trans_date = 'posting_date' - else: - self.trans_date = 'transaction_date' - - ysd = sql("select year_start_date from `tabFiscal Year` where name = %s",fiscal_year)[0][0] - self.year_start_date = ysd.strftime('%Y-%m-%d') - self.start_month = cint(self.year_start_date.split('-')[1]) - - - # Get Column Names and Query for Annual Trend - # --------------------------------------------- - def get_annual_trend_details(self, fiscal_year): - col_names = [fiscal_year+' (Qty)', fiscal_year+' (Amt)'] - query_val = 'SUM(t2.qty) ,SUM(t2.amount),' - return col_names, query_val - - - # Get Column Names and Query for Half Yearly Trend - # -------------------------------------------------- - def get_half_yearly_trend_details(self): - first_half_start = self.year_start_date - first_half_end = add_days(add_months(first_half_start,6),-1) - second_half_start = add_days(first_half_end,1) - second_half_end = add_days(add_months(second_half_start,6),-1) - - col_names = ['First Half (Qty)', 'First Half (Amt)', 'Second Half (Qty)', 'Second Half (Amt)'] - - query_val = 'SUM(CASE WHEN t1.'+self.trans_date+' BETWEEN "'+first_half_start+'" AND "'+first_half_end+'" THEN t2.qty ELSE NULL END), SUM(CASE WHEN t1.'+self.trans_date+' BETWEEN "'+first_half_start+'" AND "'+first_half_end+'" THEN t2.amount ELSE NULL END), SUM(CASE WHEN t1.'+self.trans_date+' BETWEEN "'+second_half_start+'" AND "'+second_half_end+'" THEN t2.qty ELSE NULL END), SUM(CASE WHEN t1.'+self.trans_date+' BETWEEN "'+second_half_start+'" AND "'+second_half_end+'" THEN t2.amount ELSE NULL END),' - - return col_names, query_val - - - # Get Column Names and Query for Quarterly Trend - # ------------------------------------------------ - def get_quarterly_trend_details(self): - first_qsd, second_qsd, third_qsd, fourth_qsd = self.year_start_date, add_months(self.year_start_date,3), add_months(self.year_start_date,6), add_months(self.year_start_date,9) - - first_qed, second_qed, third_qed, fourth_qed = add_days(add_months(first_qsd,3),-1), add_days(add_months(second_qsd,3),-1), add_days(add_months(third_qsd,3),-1), add_days(add_months(fourth_qsd,3),-1) - - col_names = ['Q1 (Qty)','Q1 (Amt)','Q2 (Qty)','Q2 (Amt)','Q3 (Qty)','Q3 (Amt)','Q4 (Qty)','Q4 (Amt)'] - query_val = '' - bet_dates = [[first_qsd,first_qed],[second_qsd,second_qed],[third_qsd,third_qed],[fourth_qsd,fourth_qed]] - - for d in bet_dates: - query_val += 'SUM(CASE WHEN t1.'+self.trans_date+' BETWEEN "'+d[0]+'" AND "'+d[1]+'" THEN t2.qty ELSE NULL END), SUM(CASE WHEN t1.'+self.trans_date+' BETWEEN "'+d[0]+'" AND "'+d[1]+'" THEN t2.amount ELSE NULL END),' - - return col_names, query_val - - - # Get Column Names and Query for Monthly Trend - # ----------------------------------------------- - def get_monthly_trend_details(self): - col_names, query_val = [], '' - for i in range(self.start_month-1, len(self.month_name)): - col_names.append(self.month_name[i]+' (Qty)') - col_names.append(self.month_name[i]+' (Amt)') - query_val += 'SUM(CASE WHEN MONTH(t1.'+self.trans_date+') = '+cstr(i+1)+' THEN t2.qty ELSE NULL END), SUM(CASE WHEN MONTH(t1.'+self.trans_date+') = '+cstr(i+1)+' THEN t2.amount ELSE NULL END),' - - for i in range(0, self.start_month-1): - col_names.append(self.month_name[i]+' (Qty)') - col_names.append(self.month_name[i]+' (Amt)') - query_val += 'SUM(CASE WHEN MONTH(t1.'+self.trans_date+') = '+cstr(i+1)+' THEN t2.qty ELSE NULL END), SUM(CASE WHEN MONTH(t1.'+self.trans_date+') = '+cstr(i+1)+' THEN t2.amount ELSE NULL END),' - - return col_names, query_val - - - # Get Single Year Trend's Query and Columns - # ------------------------------------------- - def get_single_year_query_value(self, fiscal_year, period, trans, trans_det): - self.define_globals(trans, fiscal_year) - if period == 'Annual': - return self.get_annual_trend_details(fiscal_year) - elif period == 'Half Yearly': - return self.get_half_yearly_trend_details() - elif period == 'Quarterly': - return self.get_quarterly_trend_details() - elif period == 'Monthly': - return self.get_monthly_trend_details() diff --git a/accounts/doctype/trend_analyzer_control/trend_analyzer_control.txt b/accounts/doctype/trend_analyzer_control/trend_analyzer_control.txt deleted file mode 100755 index 67c91ee29e..0000000000 --- a/accounts/doctype/trend_analyzer_control/trend_analyzer_control.txt +++ /dev/null @@ -1,23 +0,0 @@ -[ - { - "creation": "2012-03-27 14:35:49", - "docstatus": 0, - "modified": "2012-03-27 14:35:49", - "modified_by": "Administrator", - "owner": "saumil@webnotestech.com" - }, - { - "doctype": "DocType", - "in_create": 1, - "issingle": 1, - "module": "Accounts", - "name": "__common__", - "read_only": 1, - "section_style": "Simple", - "version": 11 - }, - { - "doctype": "DocType", - "name": "Trend Analyzer Control" - } -] \ No newline at end of file From 94acdca8d19eb12c6266b937400b732f4077ddf2 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 11 Jun 2013 16:06:37 +0530 Subject: [PATCH 12/12] [docs] added docs for accounts --- accounts/doctype/bank_reconciliation/README.md | 1 + accounts/doctype/bank_reconciliation_detail/README.md | 1 + accounts/doctype/budget_control/README.md | 1 + accounts/doctype/budget_detail/README.md | 1 + accounts/doctype/budget_distribution/README.md | 1 + accounts/doctype/budget_distribution_detail/README.md | 1 + accounts/doctype/c_form/README.md | 1 + accounts/doctype/c_form_invoice_detail/README.md | 1 + accounts/doctype/cost_center/README.md | 1 + accounts/doctype/fiscal_year/README.md | 1 + accounts/doctype/gl_entry/README.md | 1 + accounts/doctype/journal_voucher/README.md | 1 + accounts/doctype/journal_voucher_detail/README.md | 1 + accounts/doctype/mis_control/README.md | 1 + accounts/doctype/mode_of_payment/README.md | 8 ++++++++ .../doctype/payment_to_invoice_matching_tool/README.md | 1 + .../payment_to_invoice_matching_tool_detail/README.md | 1 + accounts/doctype/period_closing_voucher/README.md | 1 + accounts/doctype/pos_setting/README.md | 1 + accounts/doctype/purchase_invoice/README.md | 1 + accounts/doctype/purchase_invoice_advance/README.md | 1 + accounts/doctype/purchase_invoice_item/README.md | 1 + accounts/doctype/purchase_taxes_and_charges/README.md | 1 + .../doctype/purchase_taxes_and_charges_master/README.md | 1 + accounts/doctype/sales_invoice/README.md | 1 + accounts/doctype/sales_invoice_advance/README.md | 1 + accounts/doctype/sales_invoice_item/README.md | 1 + accounts/doctype/sales_taxes_and_charges/README.md | 1 + accounts/doctype/sales_taxes_and_charges_master/README.md | 1 + accounts/page/financial_analytics/README.md | 1 + accounts/page/financial_statements/README.md | 1 + accounts/page/general_ledger/README.md | 1 + accounts/page/trial_balance/README.md | 1 + accounts/page/voucher_import_tool/README.md | 1 + 34 files changed, 41 insertions(+) create mode 100644 accounts/doctype/bank_reconciliation/README.md create mode 100644 accounts/doctype/bank_reconciliation_detail/README.md create mode 100644 accounts/doctype/budget_control/README.md create mode 100644 accounts/doctype/budget_detail/README.md create mode 100644 accounts/doctype/budget_distribution/README.md create mode 100644 accounts/doctype/budget_distribution_detail/README.md create mode 100644 accounts/doctype/c_form/README.md create mode 100644 accounts/doctype/c_form_invoice_detail/README.md create mode 100644 accounts/doctype/cost_center/README.md create mode 100644 accounts/doctype/fiscal_year/README.md create mode 100644 accounts/doctype/gl_entry/README.md create mode 100644 accounts/doctype/journal_voucher/README.md create mode 100644 accounts/doctype/journal_voucher_detail/README.md create mode 100644 accounts/doctype/mis_control/README.md create mode 100644 accounts/doctype/mode_of_payment/README.md create mode 100644 accounts/doctype/payment_to_invoice_matching_tool/README.md create mode 100644 accounts/doctype/payment_to_invoice_matching_tool_detail/README.md create mode 100644 accounts/doctype/period_closing_voucher/README.md create mode 100644 accounts/doctype/pos_setting/README.md create mode 100644 accounts/doctype/purchase_invoice/README.md create mode 100644 accounts/doctype/purchase_invoice_advance/README.md create mode 100644 accounts/doctype/purchase_invoice_item/README.md create mode 100644 accounts/doctype/purchase_taxes_and_charges/README.md create mode 100644 accounts/doctype/purchase_taxes_and_charges_master/README.md create mode 100644 accounts/doctype/sales_invoice/README.md create mode 100644 accounts/doctype/sales_invoice_advance/README.md create mode 100644 accounts/doctype/sales_invoice_item/README.md create mode 100644 accounts/doctype/sales_taxes_and_charges/README.md create mode 100644 accounts/doctype/sales_taxes_and_charges_master/README.md create mode 100644 accounts/page/financial_analytics/README.md create mode 100644 accounts/page/financial_statements/README.md create mode 100644 accounts/page/general_ledger/README.md create mode 100644 accounts/page/trial_balance/README.md create mode 100644 accounts/page/voucher_import_tool/README.md diff --git a/accounts/doctype/bank_reconciliation/README.md b/accounts/doctype/bank_reconciliation/README.md new file mode 100644 index 0000000000..bf5137300b --- /dev/null +++ b/accounts/doctype/bank_reconciliation/README.md @@ -0,0 +1 @@ +Tool to update realization dates for banking transactions. \ No newline at end of file diff --git a/accounts/doctype/bank_reconciliation_detail/README.md b/accounts/doctype/bank_reconciliation_detail/README.md new file mode 100644 index 0000000000..07d0731ed2 --- /dev/null +++ b/accounts/doctype/bank_reconciliation_detail/README.md @@ -0,0 +1 @@ +Detail of transaction for parent Bank Reconciliation. \ No newline at end of file diff --git a/accounts/doctype/budget_control/README.md b/accounts/doctype/budget_control/README.md new file mode 100644 index 0000000000..28210156c0 --- /dev/null +++ b/accounts/doctype/budget_control/README.md @@ -0,0 +1 @@ +Backend scripts for Budget Management. \ No newline at end of file diff --git a/accounts/doctype/budget_detail/README.md b/accounts/doctype/budget_detail/README.md new file mode 100644 index 0000000000..42c762179a --- /dev/null +++ b/accounts/doctype/budget_detail/README.md @@ -0,0 +1 @@ +Budget amounts for year and distribution for parent Cost Center. \ No newline at end of file diff --git a/accounts/doctype/budget_distribution/README.md b/accounts/doctype/budget_distribution/README.md new file mode 100644 index 0000000000..6853482e05 --- /dev/null +++ b/accounts/doctype/budget_distribution/README.md @@ -0,0 +1 @@ +Budget distribution master to manage manage budget seasonality. \ No newline at end of file diff --git a/accounts/doctype/budget_distribution_detail/README.md b/accounts/doctype/budget_distribution_detail/README.md new file mode 100644 index 0000000000..daa462a7f4 --- /dev/null +++ b/accounts/doctype/budget_distribution_detail/README.md @@ -0,0 +1 @@ +Percent allocation for month for parent Budget Distribution. \ No newline at end of file diff --git a/accounts/doctype/c_form/README.md b/accounts/doctype/c_form/README.md new file mode 100644 index 0000000000..25c13b0849 --- /dev/null +++ b/accounts/doctype/c_form/README.md @@ -0,0 +1 @@ +C Form (India specific only) - Will be deprecated. \ No newline at end of file diff --git a/accounts/doctype/c_form_invoice_detail/README.md b/accounts/doctype/c_form_invoice_detail/README.md new file mode 100644 index 0000000000..3b260ac361 --- /dev/null +++ b/accounts/doctype/c_form_invoice_detail/README.md @@ -0,0 +1 @@ +Invoice detail for parent C-Form. \ No newline at end of file diff --git a/accounts/doctype/cost_center/README.md b/accounts/doctype/cost_center/README.md new file mode 100644 index 0000000000..5fc308b5ce --- /dev/null +++ b/accounts/doctype/cost_center/README.md @@ -0,0 +1 @@ +Cost center master (tree). \ No newline at end of file diff --git a/accounts/doctype/fiscal_year/README.md b/accounts/doctype/fiscal_year/README.md new file mode 100644 index 0000000000..24f81c7b78 --- /dev/null +++ b/accounts/doctype/fiscal_year/README.md @@ -0,0 +1 @@ +Accounting year. Fiscal Year is tagged in all accounting transactions. \ No newline at end of file diff --git a/accounts/doctype/gl_entry/README.md b/accounts/doctype/gl_entry/README.md new file mode 100644 index 0000000000..48561fee4f --- /dev/null +++ b/accounts/doctype/gl_entry/README.md @@ -0,0 +1 @@ +All accounting entries are consolidated / aggregated in GL Entry (General Ledger Entry) DocType. All reports are generated from this DocType. \ No newline at end of file diff --git a/accounts/doctype/journal_voucher/README.md b/accounts/doctype/journal_voucher/README.md new file mode 100644 index 0000000000..2b8a17e31d --- /dev/null +++ b/accounts/doctype/journal_voucher/README.md @@ -0,0 +1 @@ +Journal entry for accounting entries including payments. \ No newline at end of file diff --git a/accounts/doctype/journal_voucher_detail/README.md b/accounts/doctype/journal_voucher_detail/README.md new file mode 100644 index 0000000000..e6f9b430c8 --- /dev/null +++ b/accounts/doctype/journal_voucher_detail/README.md @@ -0,0 +1 @@ +Individual entry for parent Journal Voucher. \ No newline at end of file diff --git a/accounts/doctype/mis_control/README.md b/accounts/doctype/mis_control/README.md new file mode 100644 index 0000000000..65c851f277 --- /dev/null +++ b/accounts/doctype/mis_control/README.md @@ -0,0 +1 @@ +Backend scripts for Financial Statements (to be deprecated) \ No newline at end of file diff --git a/accounts/doctype/mode_of_payment/README.md b/accounts/doctype/mode_of_payment/README.md new file mode 100644 index 0000000000..eedc332c73 --- /dev/null +++ b/accounts/doctype/mode_of_payment/README.md @@ -0,0 +1,8 @@ +Master for modes of payment. + +e.g. + +- Cash +- Credit Card +- Bank Transfer +- Check \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool/README.md b/accounts/doctype/payment_to_invoice_matching_tool/README.md new file mode 100644 index 0000000000..bcde4b3133 --- /dev/null +++ b/accounts/doctype/payment_to_invoice_matching_tool/README.md @@ -0,0 +1 @@ +Tool for mapping (cancelling) unpaid invoices and payments. \ No newline at end of file diff --git a/accounts/doctype/payment_to_invoice_matching_tool_detail/README.md b/accounts/doctype/payment_to_invoice_matching_tool_detail/README.md new file mode 100644 index 0000000000..ed329911d3 --- /dev/null +++ b/accounts/doctype/payment_to_invoice_matching_tool_detail/README.md @@ -0,0 +1 @@ +Journal Voucher (payment) detail for matching to invoice. \ No newline at end of file diff --git a/accounts/doctype/period_closing_voucher/README.md b/accounts/doctype/period_closing_voucher/README.md new file mode 100644 index 0000000000..6eaa56038c --- /dev/null +++ b/accounts/doctype/period_closing_voucher/README.md @@ -0,0 +1 @@ +Entry to close all Profit and Loss (P&L) accounts at the end of a financial period. \ No newline at end of file diff --git a/accounts/doctype/pos_setting/README.md b/accounts/doctype/pos_setting/README.md new file mode 100644 index 0000000000..2ddef7893f --- /dev/null +++ b/accounts/doctype/pos_setting/README.md @@ -0,0 +1 @@ +Standard settings for Point of Sales (POS) type of Sales Invoice. \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice/README.md b/accounts/doctype/purchase_invoice/README.md new file mode 100644 index 0000000000..4845d5d672 --- /dev/null +++ b/accounts/doctype/purchase_invoice/README.md @@ -0,0 +1 @@ +Itemized invoice raised by Supplier. \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_advance/README.md b/accounts/doctype/purchase_invoice_advance/README.md new file mode 100644 index 0000000000..974900c6a5 --- /dev/null +++ b/accounts/doctype/purchase_invoice_advance/README.md @@ -0,0 +1 @@ +Detail of advance paid against Purchase Invoice. \ No newline at end of file diff --git a/accounts/doctype/purchase_invoice_item/README.md b/accounts/doctype/purchase_invoice_item/README.md new file mode 100644 index 0000000000..e490189cbf --- /dev/null +++ b/accounts/doctype/purchase_invoice_item/README.md @@ -0,0 +1 @@ +Item detail in parent Purchase Invoice. \ No newline at end of file diff --git a/accounts/doctype/purchase_taxes_and_charges/README.md b/accounts/doctype/purchase_taxes_and_charges/README.md new file mode 100644 index 0000000000..7528a858d7 --- /dev/null +++ b/accounts/doctype/purchase_taxes_and_charges/README.md @@ -0,0 +1 @@ +Tax details for all Purchase Transactions. \ No newline at end of file diff --git a/accounts/doctype/purchase_taxes_and_charges_master/README.md b/accounts/doctype/purchase_taxes_and_charges_master/README.md new file mode 100644 index 0000000000..20f481a238 --- /dev/null +++ b/accounts/doctype/purchase_taxes_and_charges_master/README.md @@ -0,0 +1 @@ +Template for tax structure in purchase transactions. \ No newline at end of file diff --git a/accounts/doctype/sales_invoice/README.md b/accounts/doctype/sales_invoice/README.md new file mode 100644 index 0000000000..959314799c --- /dev/null +++ b/accounts/doctype/sales_invoice/README.md @@ -0,0 +1 @@ +Itemized invoice raised to Customers. \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_advance/README.md b/accounts/doctype/sales_invoice_advance/README.md new file mode 100644 index 0000000000..e4a80624e6 --- /dev/null +++ b/accounts/doctype/sales_invoice_advance/README.md @@ -0,0 +1 @@ +Details of advances paid by Customers against Sales Invoice. \ No newline at end of file diff --git a/accounts/doctype/sales_invoice_item/README.md b/accounts/doctype/sales_invoice_item/README.md new file mode 100644 index 0000000000..ff82835d97 --- /dev/null +++ b/accounts/doctype/sales_invoice_item/README.md @@ -0,0 +1 @@ +Item details of parent Sales Invoice. \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges/README.md b/accounts/doctype/sales_taxes_and_charges/README.md new file mode 100644 index 0000000000..947bc18223 --- /dev/null +++ b/accounts/doctype/sales_taxes_and_charges/README.md @@ -0,0 +1 @@ +Tax details for all sales transactions. \ No newline at end of file diff --git a/accounts/doctype/sales_taxes_and_charges_master/README.md b/accounts/doctype/sales_taxes_and_charges_master/README.md new file mode 100644 index 0000000000..600a6bf330 --- /dev/null +++ b/accounts/doctype/sales_taxes_and_charges_master/README.md @@ -0,0 +1 @@ +Template for tax structure in sales transactions. \ No newline at end of file diff --git a/accounts/page/financial_analytics/README.md b/accounts/page/financial_analytics/README.md new file mode 100644 index 0000000000..ccb56bbaee --- /dev/null +++ b/accounts/page/financial_analytics/README.md @@ -0,0 +1 @@ +Trends (multi-year) for account balances including. \ No newline at end of file diff --git a/accounts/page/financial_statements/README.md b/accounts/page/financial_statements/README.md new file mode 100644 index 0000000000..1493ac909b --- /dev/null +++ b/accounts/page/financial_statements/README.md @@ -0,0 +1 @@ +Generate provisional Balance Sheet and Profit and Loss statements. \ No newline at end of file diff --git a/accounts/page/general_ledger/README.md b/accounts/page/general_ledger/README.md new file mode 100644 index 0000000000..8c51e9152c --- /dev/null +++ b/accounts/page/general_ledger/README.md @@ -0,0 +1 @@ +General Ledger report (for all transactions and accounts). \ No newline at end of file diff --git a/accounts/page/trial_balance/README.md b/accounts/page/trial_balance/README.md new file mode 100644 index 0000000000..cba659d425 --- /dev/null +++ b/accounts/page/trial_balance/README.md @@ -0,0 +1 @@ +Period wise opening and closing balance of all transactions. \ No newline at end of file diff --git a/accounts/page/voucher_import_tool/README.md b/accounts/page/voucher_import_tool/README.md new file mode 100644 index 0000000000..84561ad0a6 --- /dev/null +++ b/accounts/page/voucher_import_tool/README.md @@ -0,0 +1 @@ +Import accounting entries by uploading a csv file. \ No newline at end of file