############################################################################## # # Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id: sale.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_sale_order_product(osv.osv): _name = "report.sale.order.product" _description = "Sales Orders by Products" _auto = False _columns = { 'name': fields.date('Month', readonly=True), 'state': fields.selection([ ('draft','Quotation'), ('waiting_date','Waiting Schedule'), ('manual','Manual in progress'), ('progress','In progress'), ('shipping_except','Shipping Exception'), ('invoice_except','Invoice Exception'), ('done','Done'), ('cancel','Cancel') ], 'Order State', readonly=True), 'product_id':fields.many2one('product.product', 'Product', readonly=True, relate=True), 'quantity': fields.float('# of Products', 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 = 'name desc,price_total desc' def init(self, cr): cr.execute(""" create or replace view report_sale_order_product as ( select min(l.id) as id, substring(s.date_order for 7)||'-'||'01' as name, s.state, l.product_id, sum(l.product_uom_qty*u.factor) as quantity, count(*), sum(l.product_uom_qty*l.price_unit) as price_total, (sum(l.product_uom_qty*l.price_unit)/sum(l.product_uom_qty*u.factor))::decimal(16,2) as price_average from sale_order s right join sale_order_line l on (s.id=l.order_id) left join product_uom u on (u.id=l.product_uom) group by l.product_id, substring(s.date_order for 7),s.state ) """) # Done in the _auto_init # for k in self._columns: # f = self._columns[k] # cr.execute("select id from ir_model_fields where model=%s and name=%s", (self._name,k)) # if not cr.rowcount: # cr.execute("select id from ir_model where model='%s'" % self._name) # model_id = cr.fetchone()[0] # cr.execute("INSERT INTO ir_model_fields (model_id, model, name, field_description, ttype, relate,relation,group_name,view_load) VALUES (%d,%s,%s,%s,%s,%s,%s,%s,%s)", (model_id, self._name, k, f.string.replace("'", " "), f._type, (f.relate and 'True') or 'False', f._obj or 'NULL', f.group_name or '', (f.view_load and 'True') or 'False')) report_sale_order_product() class report_sale_order_category(osv.osv): _name = "report.sale.order.category" _description = "Sales Orders by Categories" _auto = False _columns = { 'name': fields.date('Month', readonly=True), 'state': fields.selection([ ('draft','Quotation'), ('waiting_date','Waiting Schedule'), ('manual','Manual in progress'), ('progress','In progress'), ('shipping_except','Shipping Exception'), ('invoice_except','Invoice Exception'), ('done','Done'), ('cancel','Cancel') ], 'Order State', readonly=True), 'category_id': fields.many2one('product.category', 'Categories', readonly=True, relate=True), 'quantity': fields.float('# of Products', 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 = 'name desc,price_total desc' def init(self, cr): cr.execute(""" create or replace view report_sale_order_category as ( select min(l.id) as id, substring(s.date_order for 7)||'-'||'01' as name, s.state, t.categ_id as category_id, sum(l.product_uom_qty*u.factor) as quantity, count(*), sum(l.product_uom_qty*l.price_unit) as price_total, (sum(l.product_uom_qty*l.price_unit)/sum(l.product_uom_qty*u.factor))::decimal(16,2) as price_average from sale_order s right join sale_order_line l on (s.id=l.order_id) left join product_product p on (p.id=l.product_id) left join product_template t on (t.id=p.product_tmpl_id) left join product_uom u on (u.id=l.product_uom) group by t.categ_id, substring(s.date_order for 7),s.state ) """) report_sale_order_category()