1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- # -*- coding: utf-8 -*-
- ##############################################################################
- #
- # OpenERP, Open Source Management Solution
- # Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero 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 Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- #
- ##############################################################################
- from openerp import tools
- from openerp.osv import fields, osv
- class pos_reportgral(osv.osv):
- _name = "pos.reportgral"
- _description = "Listado General de Punto de Ventas"
- _auto = False
- _rec_name = 'date'
- _columns = {
- 'date': fields.datetime('Date Order', readonly=True),
- 'partner_id':fields.many2one('res.partner', 'Partner', readonly=True),
- 'city_id': fields.many2one('res.country.state', 'City', readonly=True),
- 'city': fields.char('Ciudad', readonly=True),
- 'product_id':fields.many2one('product.product', 'Product', readonly=True),
- 'product_brand_id':fields.many2one('product.brand', 'Brand', readonly=True),
- 'state': fields.selection([('draft', 'New'), ('paid', 'Closed'), ('done', 'Synchronized'), ('invoiced', 'Invoiced'), ('cancel', 'Cancelled')],
- 'Status'),
- 'user_id':fields.many2one('res.users', 'Salesperson', readonly=True),
- 'price_unit':fields.float('Total Unit.', readonly=True),
- 'price_total':fields.float('Total Price', readonly=True),
- 'total_discount':fields.float('Total Discount', readonly=True),
- 'average_price': fields.float('Average Price', readonly=True,group_operator="avg"),
- 'location_id':fields.many2one('stock.location', 'Location', readonly=True),
- 'company_id':fields.many2one('res.company', 'Company', readonly=True),
- 'nbr':fields.integer('# of Lines', readonly=True), # TDE FIXME master: rename into nbr_lines
- 'product_qty':fields.integer('Product Quantity', readonly=True),
- 'journal_id': fields.many2one('account.journal', 'Journal'),
- 'delay_validation': fields.integer('Delay Validation'),
- 'origen': fields.many2one('product.attribute.value' ,string='Origen', readonly=True),
- 'product_categ_id': fields.many2one('product.category', 'Product Category', readonly=True),
- }
- _order = 'date desc'
- def init(self, cr):
- tools.drop_view_if_exists(cr, 'pos_reportgral')
- cr.execute("""
- create or replace view pos_reportgral as (
- select
- min(l.id) as id,
- count(*) as nbr,
- s.date_order as date,
- l.price_unit as price_unit,
- sum(l.qty * u.factor) as product_qty,
- sum(l.qty * l.price_unit) as price_total,
- sum((l.qty * l.price_unit) * (l.discount / 100)) as total_discount,
- (sum(l.qty*l.price_unit)/sum(l.qty * u.factor))::decimal as average_price,
- sum(cast(to_char(date_trunc('day',s.date_order) - date_trunc('day',s.create_date),'DD') as int)) as delay_validation,
- s.partner_id as partner_id,
- s.state as state,
- q.id as city_id,
- h.name as city,
- s.user_id as user_id,
- s.location_id as location_id,
- s.company_id as company_id,
- s.sale_journal as journal_id,
- l.product_id as product_id,
- pt.product_brand_id as product_brand_id,
- pt.categ_id as product_categ_id
- from pos_order_line as l
- left join pos_order s on (s.id=l.order_id)
- left join product_product p on (p.id=l.product_id)
- left join product_template pt on (pt.id=p.product_tmpl_id)
- left join product_brand r on (r.id=pt.product_brand_id)
- left join product_uom u on (u.id=pt.uom_id)
- left join res_partner q on (q.id=s.partner_id)
- left join res_country_state h on (h.id=q.state_id)
- group by
- s.date_order,q.id,h.name,s.partner_id,s.state,q.city,l.price_unit, pt.categ_id, pt.product_brand_id,
- s.user_id,s.location_id,s.company_id,s.sale_journal,l.product_id,s.create_date
- having
- sum(l.qty * u.factor) != 0)""")
- # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|