blob: e619619c3ff4a059ab3981032c5ea90c483eca4e [file] [log] [blame]
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05301# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
2# License: GNU General Public License v3. See license.txt
Rushabh Mehta95e4e142012-09-13 19:40:56 +05303
Nabin Hait9a90c892012-09-18 13:37:27 +05304from __future__ import unicode_literals
Rushabh Mehta823c0212012-09-19 12:01:01 +05305
6# mappings for table dumps
7# "remember to add indexes!"
8
Rushabh Mehta95e4e142012-09-13 19:40:56 +05309data_map = {
Rushabh Mehtaf200c522012-09-21 15:19:40 +053010 "Company": {
11 "columns": ["name"],
12 "conditions": ["docstatus < 2"]
13 },
14 "Fiscal Year": {
15 "columns": ["name", "year_start_date",
Anand Doshi73519e12012-10-11 14:04:27 +053016 "adddate(adddate(year_start_date, interval 1 year), interval -1 day) as year_end_date"],
17 "conditions": ["docstatus < 2"],
Rushabh Mehtaf200c522012-09-21 15:19:40 +053018 },
19
20 # Accounts
Rushabh Mehta95e4e142012-09-13 19:40:56 +053021 "Account": {
Anand Doshibc243de2012-09-24 18:03:35 +053022 "columns": ["name", "parent_account", "lft", "rgt", "debit_or_credit",
Rushabh Mehtac68fc3f2012-11-13 13:28:26 +053023 "is_pl_account", "company", "group_or_ledger"],
Anand Doshi73519e12012-10-11 14:04:27 +053024 "conditions": ["docstatus < 2"],
Rushabh Mehtac68fc3f2012-11-13 13:28:26 +053025 "order_by": "lft",
26 "links": {
27 "company": ["Company", "name"],
28 }
29
Rushabh Mehta95e4e142012-09-13 19:40:56 +053030 },
Rushabh Mehta41565232012-09-17 19:10:36 +053031 "Cost Center": {
Rushabh Mehta09d84b62012-09-21 19:46:24 +053032 "columns": ["name", "lft", "rgt"],
Anand Doshi73519e12012-10-11 14:04:27 +053033 "conditions": ["docstatus < 2"],
Rushabh Mehta41565232012-09-17 19:10:36 +053034 "order_by": "lft"
35 },
Rushabh Mehta95e4e142012-09-13 19:40:56 +053036 "GL Entry": {
Nabin Haitf78d16c2013-06-21 15:13:49 +053037 "columns": ["name", "account", "posting_date", "cost_center", "debit", "credit",
Nabin Hait8b96ba12013-06-24 13:54:16 +053038 "is_opening", "company", "voucher_type", "voucher_no", "remarks"],
Rushabh Mehta95e4e142012-09-13 19:40:56 +053039 "conditions": ["ifnull(is_cancelled, 'No')='No'"],
Rushabh Mehta823c0212012-09-19 12:01:01 +053040 "order_by": "posting_date, account",
41 "links": {
42 "account": ["Account", "name"],
Rushabh Mehta09d84b62012-09-21 19:46:24 +053043 "company": ["Company", "name"],
44 "cost_center": ["Cost Center", "name"]
Rushabh Mehta823c0212012-09-19 12:01:01 +053045 }
Rushabh Mehta95e4e142012-09-13 19:40:56 +053046 },
Rushabh Mehtaf200c522012-09-21 15:19:40 +053047
48 # Stock
49 "Item": {
Nabin Hait6072a682012-12-31 17:16:23 +053050 "columns": ["name", "if(item_name=name, '', item_name) as item_name", "description",
Nabin Hait44ffd432013-01-16 11:16:21 +053051 "item_group as parent_item_group", "stock_uom", "brand", "valuation_method",
52 "re_order_level", "re_order_qty"],
Nabin Hait1c08aee2012-12-31 13:30:18 +053053 # "conditions": ["docstatus < 2"],
Rushabh Mehtaf200c522012-09-21 15:19:40 +053054 "order_by": "name",
55 "links": {
56 "parent_item_group": ["Item Group", "name"],
Nabin Haitce159ab2012-12-25 18:04:10 +053057 "brand": ["Brand", "name"]
Rushabh Mehtaf200c522012-09-21 15:19:40 +053058 }
Rushabh Mehta95e4e142012-09-13 19:40:56 +053059 },
Rushabh Mehtaf200c522012-09-21 15:19:40 +053060 "Item Group": {
61 "columns": ["name", "parent_item_group"],
Nabin Hait3e8eca32013-06-24 17:18:24 +053062 # "conditions": ["docstatus < 2"],
Rushabh Mehtaf200c522012-09-21 15:19:40 +053063 "order_by": "lft"
64 },
Nabin Haitce159ab2012-12-25 18:04:10 +053065 "Brand": {
66 "columns": ["name"],
67 "conditions": ["docstatus < 2"],
68 "order_by": "name"
69 },
Rushabh Mehta06d186b2013-03-25 17:03:52 +053070 "Project": {
71 "columns": ["name"],
72 "conditions": ["docstatus < 2"],
73 "order_by": "name"
74 },
Rushabh Mehtaf200c522012-09-21 15:19:40 +053075 "Warehouse": {
76 "columns": ["name"],
Anand Doshi73519e12012-10-11 14:04:27 +053077 "conditions": ["docstatus < 2"],
Rushabh Mehtaf200c522012-09-21 15:19:40 +053078 "order_by": "name"
Rushabh Mehta2ad0d422012-09-18 18:52:05 +053079 },
80 "Stock Ledger Entry": {
Anand Doshid5aeb212013-03-08 12:46:48 +053081 "columns": ["name", "posting_date", "posting_time", "item_code", "warehouse",
Rushabh Mehta06d186b2013-03-25 17:03:52 +053082 "actual_qty as qty", "voucher_type", "voucher_no", "project",
Anand Doshid5aeb212013-03-08 12:46:48 +053083 "ifnull(incoming_rate,0) as incoming_rate", "stock_uom", "serial_no"],
Rushabh Mehta2ad0d422012-09-18 18:52:05 +053084 "order_by": "posting_date, posting_time, name",
85 "links": {
86 "item_code": ["Item", "name"],
Rushabh Mehta06d186b2013-03-25 17:03:52 +053087 "warehouse": ["Warehouse", "name"],
88 "project": ["Project", "name"]
Rushabh Mehta823c0212012-09-19 12:01:01 +053089 },
Nabin Hait30f53462012-12-28 15:39:55 +053090 "force_index": "posting_sort_index"
Rushabh Mehta2ad0d422012-09-18 18:52:05 +053091 },
Nabin Haitce159ab2012-12-25 18:04:10 +053092 "Stock Entry": {
93 "columns": ["name", "purpose"],
94 "conditions": ["docstatus=1"],
95 "order_by": "posting_date, posting_time, name",
96 },
Nabin Hait30f53462012-12-28 15:39:55 +053097 "Production Order": {
Rushabh Mehta677b4b42013-02-07 22:19:47 +053098 "columns": ["name", "production_item as item_code",
Nabin Hait30f53462012-12-28 15:39:55 +053099 "(ifnull(qty, 0) - ifnull(produced_qty, 0)) as qty",
100 "fg_warehouse as warehouse"],
101 "conditions": ["docstatus=1", "status != 'Stopped'", "ifnull(fg_warehouse, '')!=''",
102 "ifnull(qty, 0) > ifnull(produced_qty, 0)"],
103 "links": {
104 "item_code": ["Item", "name"],
105 "warehouse": ["Warehouse", "name"]
106 },
107 },
Anand Doshi236cc172013-02-18 13:49:15 +0530108 "Material Request Item": {
Rushabh Mehta66aa2652013-02-08 15:06:05 +0530109 "columns": ["item.name as name", "item_code", "warehouse",
Nabin Hait30f53462012-12-28 15:39:55 +0530110 "(ifnull(qty, 0) - ifnull(ordered_qty, 0)) as qty"],
Anand Doshi236cc172013-02-18 13:49:15 +0530111 "from": "`tabMaterial Request Item` item, `tabMaterial Request` main",
Anand Doshicf055802013-02-20 18:44:10 +0530112 "conditions": ["item.parent = main.name", "main.docstatus=1", "main.status != 'Stopped'",
Anand Doshi1678f6d2013-02-21 16:55:14 +0530113 "ifnull(warehouse, '')!=''", "ifnull(qty, 0) > ifnull(ordered_qty, 0)"],
Nabin Hait30f53462012-12-28 15:39:55 +0530114 "links": {
115 "item_code": ["Item", "name"],
116 "warehouse": ["Warehouse", "name"]
117 },
118 },
119 "Purchase Order Item": {
Rushabh Mehta66aa2652013-02-08 15:06:05 +0530120 "columns": ["item.name as name", "item_code", "warehouse",
Nabin Hait30f53462012-12-28 15:39:55 +0530121 "(ifnull(qty, 0) - ifnull(received_qty, 0)) as qty"],
122 "from": "`tabPurchase Order Item` item, `tabPurchase Order` main",
123 "conditions": ["item.parent = main.name", "main.docstatus=1", "main.status != 'Stopped'",
124 "ifnull(warehouse, '')!=''", "ifnull(qty, 0) > ifnull(received_qty, 0)"],
125 "links": {
126 "item_code": ["Item", "name"],
127 "warehouse": ["Warehouse", "name"]
128 },
129 },
Nabin Hait96601592013-01-24 18:24:33 +0530130
Nabin Hait30f53462012-12-28 15:39:55 +0530131 "Sales Order Item": {
Rushabh Mehta66aa2652013-02-08 15:06:05 +0530132 "columns": ["item.name as name", "item_code", "(ifnull(qty, 0) - ifnull(delivered_qty, 0)) as qty",
Nabin Hait30f53462012-12-28 15:39:55 +0530133 "reserved_warehouse as warehouse"],
134 "from": "`tabSales Order Item` item, `tabSales Order` main",
135 "conditions": ["item.parent = main.name", "main.docstatus=1", "main.status != 'Stopped'",
136 "ifnull(reserved_warehouse, '')!=''", "ifnull(qty, 0) > ifnull(delivered_qty, 0)"],
137 "links": {
138 "item_code": ["Item", "name"],
139 "warehouse": ["Warehouse", "name"]
140 },
141 },
Rushabh Mehtaf200c522012-09-21 15:19:40 +0530142
143 # Sales
144 "Customer": {
145 "columns": ["name", "if(customer_name=name, '', customer_name) as customer_name",
146 "customer_group as parent_customer_group", "territory as parent_territory"],
Anand Doshi73519e12012-10-11 14:04:27 +0530147 "conditions": ["docstatus < 2"],
Rushabh Mehtaf200c522012-09-21 15:19:40 +0530148 "order_by": "name",
149 "links": {
150 "parent_customer_group": ["Customer Group", "name"],
151 "parent_territory": ["Territory", "name"],
152 }
Rushabh Mehta2ad0d422012-09-18 18:52:05 +0530153 },
Rushabh Mehtaf200c522012-09-21 15:19:40 +0530154 "Customer Group": {
155 "columns": ["name", "parent_customer_group"],
Anand Doshi73519e12012-10-11 14:04:27 +0530156 "conditions": ["docstatus < 2"],
Rushabh Mehta2ad0d422012-09-18 18:52:05 +0530157 "order_by": "lft"
158 },
Rushabh Mehtaf200c522012-09-21 15:19:40 +0530159 "Territory": {
160 "columns": ["name", "parent_territory"],
Anand Doshi73519e12012-10-11 14:04:27 +0530161 "conditions": ["docstatus < 2"],
Rushabh Mehtaf200c522012-09-21 15:19:40 +0530162 "order_by": "lft"
163 },
164 "Sales Invoice": {
165 "columns": ["name", "customer", "posting_date", "company"],
166 "conditions": ["docstatus=1"],
167 "order_by": "posting_date",
168 "links": {
169 "customer": ["Customer", "name"],
170 "company":["Company", "name"]
171 }
172 },
173 "Sales Invoice Item": {
Rushabh Mehta677b4b42013-02-07 22:19:47 +0530174 "columns": ["name", "parent", "item_code", "qty", "amount"],
Rushabh Mehtaf200c522012-09-21 15:19:40 +0530175 "conditions": ["docstatus=1", "ifnull(parent, '')!=''"],
176 "order_by": "parent",
177 "links": {
178 "parent": ["Sales Invoice", "name"],
179 "item_code": ["Item", "name"]
180 }
Rushabh Mehta09d84b62012-09-21 19:46:24 +0530181 },
Nabin Hait96601592013-01-24 18:24:33 +0530182 "Sales Order": {
183 "columns": ["name", "customer", "transaction_date as posting_date", "company"],
184 "conditions": ["docstatus=1"],
185 "order_by": "transaction_date",
186 "links": {
187 "customer": ["Customer", "name"],
188 "company":["Company", "name"]
189 }
190 },
191 "Sales Order Item[Sales Analytics]": {
Rushabh Mehta677b4b42013-02-07 22:19:47 +0530192 "columns": ["name", "parent", "item_code", "qty", "amount"],
Nabin Hait96601592013-01-24 18:24:33 +0530193 "conditions": ["docstatus=1", "ifnull(parent, '')!=''"],
194 "order_by": "parent",
195 "links": {
196 "parent": ["Sales Order", "name"],
197 "item_code": ["Item", "name"]
198 }
199 },
200 "Delivery Note": {
201 "columns": ["name", "customer", "posting_date", "company"],
202 "conditions": ["docstatus=1"],
203 "order_by": "posting_date",
204 "links": {
205 "customer": ["Customer", "name"],
206 "company":["Company", "name"]
207 }
208 },
209 "Delivery Note Item[Sales Analytics]": {
Rushabh Mehta677b4b42013-02-07 22:19:47 +0530210 "columns": ["name", "parent", "item_code", "qty", "amount"],
Nabin Hait96601592013-01-24 18:24:33 +0530211 "conditions": ["docstatus=1", "ifnull(parent, '')!=''"],
212 "order_by": "parent",
213 "links": {
214 "parent": ["Delivery Note", "name"],
215 "item_code": ["Item", "name"]
216 }
217 },
Rushabh Mehta09d84b62012-09-21 19:46:24 +0530218 "Supplier": {
219 "columns": ["name", "if(supplier_name=name, '', supplier_name) as supplier_name",
220 "supplier_type as parent_supplier_type"],
Anand Doshi73519e12012-10-11 14:04:27 +0530221 "conditions": ["docstatus < 2"],
Rushabh Mehta09d84b62012-09-21 19:46:24 +0530222 "order_by": "name",
223 "links": {
224 "parent_supplier_type": ["Supplier Type", "name"],
225 }
226 },
227 "Supplier Type": {
228 "columns": ["name"],
Anand Doshi73519e12012-10-11 14:04:27 +0530229 "conditions": ["docstatus < 2"],
Rushabh Mehta09d84b62012-09-21 19:46:24 +0530230 "order_by": "name"
231 },
232 "Purchase Invoice": {
233 "columns": ["name", "supplier", "posting_date", "company"],
234 "conditions": ["docstatus=1"],
235 "order_by": "posting_date",
236 "links": {
237 "supplier": ["Supplier", "name"],
238 "company":["Company", "name"]
239 }
240 },
241 "Purchase Invoice Item": {
Rushabh Mehta677b4b42013-02-07 22:19:47 +0530242 "columns": ["name", "parent", "item_code", "qty", "amount"],
Rushabh Mehta09d84b62012-09-21 19:46:24 +0530243 "conditions": ["docstatus=1", "ifnull(parent, '')!=''"],
244 "order_by": "parent",
245 "links": {
246 "parent": ["Purchase Invoice", "name"],
247 "item_code": ["Item", "name"]
248 }
Rushabh Mehta607a2212013-01-04 16:42:33 +0530249 },
Nabin Haitd1301c72013-01-24 18:38:30 +0530250 "Purchase Order": {
251 "columns": ["name", "supplier", "transaction_date as posting_date", "company"],
252 "conditions": ["docstatus=1"],
253 "order_by": "posting_date",
254 "links": {
255 "supplier": ["Supplier", "name"],
256 "company":["Company", "name"]
257 }
258 },
259 "Purchase Order Item[Purchase Analytics]": {
Rushabh Mehta677b4b42013-02-07 22:19:47 +0530260 "columns": ["name", "parent", "item_code", "qty", "amount"],
Nabin Haitd1301c72013-01-24 18:38:30 +0530261 "conditions": ["docstatus=1", "ifnull(parent, '')!=''"],
262 "order_by": "parent",
263 "links": {
264 "parent": ["Purchase Order", "name"],
265 "item_code": ["Item", "name"]
266 }
267 },
268 "Purchase Receipt": {
269 "columns": ["name", "supplier", "posting_date", "company"],
270 "conditions": ["docstatus=1"],
271 "order_by": "posting_date",
272 "links": {
273 "supplier": ["Supplier", "name"],
274 "company":["Company", "name"]
275 }
276 },
277 "Purchase Receipt Item[Purchase Analytics]": {
Rushabh Mehta677b4b42013-02-07 22:19:47 +0530278 "columns": ["name", "parent", "item_code", "qty", "amount"],
Nabin Haitd1301c72013-01-24 18:38:30 +0530279 "conditions": ["docstatus=1", "ifnull(parent, '')!=''"],
280 "order_by": "parent",
281 "links": {
282 "parent": ["Purchase Receipt", "name"],
283 "item_code": ["Item", "name"]
284 }
285 },
Rushabh Mehta607a2212013-01-04 16:42:33 +0530286 # Support
287 "Support Ticket": {
Rushabh Mehtabe9ef4a2013-01-14 15:48:00 +0530288 "columns": ["name","status","creation","resolution_date","first_responded_on"],
Rushabh Mehta607a2212013-01-04 16:42:33 +0530289 "conditions": ["docstatus < 2"],
290 "order_by": "creation"
Rushabh Mehta95e4e142012-09-13 19:40:56 +0530291 }
Rushabh Mehta09d84b62012-09-21 19:46:24 +0530292
Rushabh Mehta95e4e142012-09-13 19:40:56 +0530293}