odoo/addons/purchase_journal/purchase_journal_report.py

74 lines
2.9 KiB
Python

##############################################################################
#
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
#
# $Id: purchase.py 1005 2005-07-25 08:41:42Z nicoe $
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
from osv import fields,osv
class report_purchase_journal_purchase(osv.osv):
_name = "purchase_journal.purchase.stats"
_description = "purchases Orders by Journal"
_auto = False
_columns = {
'name': fields.date('Month', readonly=True),
'state': fields.selection([
('draft', 'Request for Quotation'),
('wait', 'Waiting'),
('confirmed', 'Confirmed'),
('approved', 'Approved'),
('except_ship', 'Shipping Exception'),
('except_invoice', 'Invoice Exception'),
('done', 'Done'), ('cancel', 'Cancelled')], 'Order State', readonly=True,
select=True),
'journal_id':fields.many2one('purchase_journal.purchase.journal', 'Journal', readonly=True, relate=True),
'quantity': fields.float('Quantities', readonly=True),
'price_total': fields.float('Total Price', readonly=True),
'price_average': fields.float('Average Price', readonly=True),
'count': fields.integer('# of Lines', readonly=True),
}
_order = 'journal_id,name desc,price_total desc'
def init(self, cr):
cr.execute("""
create or replace view purchase_journal_purchase_stats as (
select
min(l.id) as id,
substring(s.date_order for 7)||'-'||'01' as name,
s.state,
s.journal_id,
sum(l.product_qty) as quantity,
count(*),
sum(l.product_qty*l.price_unit) as price_total,
(sum(l.product_qty*l.price_unit)/sum(l.product_qty))::decimal(16,2) as price_average
from purchase_order s
right join purchase_order_line l on (s.id=l.order_id)
group by s.journal_id, substring(s.date_order for 7),s.state
)
""")
report_purchase_journal_purchase()