[MERGE]: Merged
[odoo/odoo.git] / addons / report_intrastat / report_intrastat.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from osv import osv, fields
23 from tools.sql import drop_view_if_exists
24 from decimal_precision import decimal_precision as dp
25
26
27 class res_country(osv.osv):
28     _name = 'res.country'
29     _inherit = 'res.country'
30     _columns = {
31         'intrastat': fields.boolean('Intrastat member'),
32     }
33     _defaults = {
34         'intrastat': lambda *a: False,
35     }
36
37 res_country()
38
39
40 class report_intrastat_code(osv.osv):
41     _name = "report.intrastat.code"
42     _description = "Intrastat code"
43     _columns = {
44         'name': fields.char('Intrastat Code', size=16),
45         'description': fields.char('Description', size=64),
46     }
47
48 report_intrastat_code()
49
50
51 class product_template(osv.osv):
52     _name = "product.template"
53     _inherit = "product.template"
54     _columns = {
55         'intrastat_id': fields.many2one('report.intrastat.code', 'Intrastat code'),
56     }
57
58 product_template()
59
60 class report_intrastat(osv.osv):
61     _name = "report.intrastat"
62     _description = "Intrastat report"
63     _auto = False
64     _columns = {
65         'name': fields.char('Year',size=64,required=False, readonly=True),
66         'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), ('05','May'), ('06','June'),
67                                   ('07','July'), ('08','August'), ('09','September'), ('10','October'), ('11','November'), ('12','December')],'Month',readonly=True),
68         'supply_units':fields.float('Supply Units', readonly=True),
69         'ref':fields.char('Source document',size=64, readonly=True),
70         'code': fields.char('Country code', size=2, readonly=True),
71         'intrastat_id': fields.many2one('report.intrastat.code', 'Intrastat code', readonly=True),
72         'weight': fields.float('Weight', readonly=True),
73         'value': fields.float('Value', readonly=True, digits_compute=dp.get_precision('Account')),
74         'type': fields.selection([('import', 'Import'), ('export', 'Export')], 'Type'),
75         'currency_id': fields.many2one('res.currency', "Currency", readonly=True),
76     }
77     def init(self, cr):
78         drop_view_if_exists(cr, 'report_intrastat')
79         cr.execute("""
80             create or replace view report_intrastat as (
81                 select
82                     to_char(inv.create_date, 'YYYY') as name,
83                     to_char(inv.create_date, 'MM') as month,
84                     min(inv_line.id) as id,
85                     intrastat.id as intrastat_id,
86                     upper(inv_country.code) as code,
87                     sum(case when inv_line.price_unit is not null
88                             then inv_line.price_unit * inv_line.quantity
89                             else 0
90                         end) as value,
91                     sum(
92                         case when uom.category_id != puom.category_id then (pt.weight_net * inv_line.quantity)
93                         else (pt.weight_net * inv_line.quantity * uom.factor) end
94                     ) as weight,
95                     sum(
96                         case when uom.category_id != puom.category_id then inv_line.quantity
97                         else (inv_line.quantity * uom.factor) end
98                     ) as supply_units,
99
100                     inv.currency_id as currency_id,
101                     inv.number as ref,
102                     case when inv.type in ('out_invoice','in_refund')
103                         then 'export'
104                         else 'import'
105                         end as type
106                 from
107                     account_invoice inv
108                     left join account_invoice_line inv_line on inv_line.invoice_id=inv.id
109                     left join (product_template pt
110                         left join product_product pp on (pp.product_tmpl_id = pt.id))
111                     on (inv_line.product_id = pp.id)
112                     left join product_uom uom on uom.id=inv_line.uos_id
113                     left join product_uom puom on puom.id = pt.uom_id
114                     left join report_intrastat_code intrastat on pt.intrastat_id = intrastat.id
115                     left join (res_partner inv_address
116                         left join res_country inv_country on (inv_country.id = inv_address.country_id))
117                     on (inv_address.id = inv.partner_id)
118                 where
119                     inv.state in ('open','paid')
120                     and inv_line.product_id is not null
121                     and inv_country.intrastat=true
122                 group by to_char(inv.create_date, 'YYYY'), to_char(inv.create_date, 'MM'),intrastat.id,inv.type,pt.intrastat_id, inv_country.code,inv.number,  inv.currency_id
123             )""")
124
125 report_intrastat()
126
127 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: