2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, fields, models, tools
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class PosSaleReport(models.Model):
|
|
|
|
_name = "report.all.channels.sales"
|
|
|
|
_description = "All sales orders grouped by sales channels"
|
|
|
|
_auto = False
|
|
|
|
|
|
|
|
name = fields.Char('Order Reference', readonly=True)
|
|
|
|
partner_id = fields.Many2one('res.partner', 'Partner', readonly=True)
|
|
|
|
product_id = fields.Many2one('product.product', string='Product', readonly=True)
|
|
|
|
product_tmpl_id = fields.Many2one('product.template', 'Product Template', readonly=True)
|
|
|
|
date_order = fields.Datetime(string='Date Order', readonly=True)
|
|
|
|
user_id = fields.Many2one('res.users', 'Salesperson', readonly=True)
|
|
|
|
categ_id = fields.Many2one('product.category', 'Product Category', readonly=True)
|
|
|
|
company_id = fields.Many2one('res.company', 'Company', readonly=True)
|
|
|
|
price_total = fields.Float('Total', readonly=True)
|
|
|
|
pricelist_id = fields.Many2one('product.pricelist', 'Pricelist', readonly=True)
|
|
|
|
country_id = fields.Many2one('res.country', 'Partner Country', readonly=True)
|
|
|
|
price_subtotal = fields.Float(string='Price Subtotal', readonly=True)
|
|
|
|
product_qty = fields.Float('Product Quantity', readonly=True)
|
|
|
|
analytic_account_id = fields.Many2one('account.analytic.account', 'Analytic Account', readonly=True)
|
|
|
|
team_id = fields.Many2one('crm.team', 'Sales Channel', readonly=True)
|
|
|
|
|
|
|
|
def _so(self):
|
|
|
|
so_str = """
|
|
|
|
WITH currency_rate as (%s)
|
|
|
|
SELECT sol.id AS id,
|
|
|
|
so.name AS name,
|
|
|
|
so.partner_id AS partner_id,
|
|
|
|
sol.product_id AS product_id,
|
|
|
|
pro.product_tmpl_id AS product_tmpl_id,
|
|
|
|
so.date_order AS date_order,
|
|
|
|
so.user_id AS user_id,
|
|
|
|
pt.categ_id AS categ_id,
|
|
|
|
so.company_id AS company_id,
|
|
|
|
sol.price_total / COALESCE(cr.rate, 1.0) AS price_total,
|
|
|
|
so.pricelist_id AS pricelist_id,
|
|
|
|
rp.country_id AS country_id,
|
|
|
|
sol.price_subtotal / COALESCE (cr.rate, 1.0) AS price_subtotal,
|
|
|
|
(sol.product_uom_qty / u.factor * u2.factor) as product_qty,
|
|
|
|
so.analytic_account_id AS analytic_account_id,
|
|
|
|
so.team_id AS team_id
|
|
|
|
|
|
|
|
FROM sale_order_line sol
|
|
|
|
JOIN sale_order so ON (sol.order_id = so.id)
|
|
|
|
LEFT JOIN product_product pro ON (sol.product_id = pro.id)
|
|
|
|
JOIN res_partner rp ON (so.partner_id = rp.id)
|
|
|
|
LEFT JOIN product_template pt ON (pro.product_tmpl_id = pt.id)
|
|
|
|
LEFT JOIN product_pricelist pp ON (so.pricelist_id = pp.id)
|
|
|
|
LEFT JOIN currency_rate cr ON (cr.currency_id = pp.currency_id AND
|
|
|
|
cr.company_id = so.company_id AND
|
|
|
|
cr.date_start <= COALESCE(so.date_order, now()) AND
|
|
|
|
(cr.date_end IS NULL OR cr.date_end > COALESCE(so.date_order, now())))
|
|
|
|
LEFT JOIN product_uom u on (u.id=sol.product_uom)
|
|
|
|
LEFT JOIN product_uom u2 on (u2.id=pt.uom_id)
|
2018-07-13 11:26:56 +02:00
|
|
|
WHERE so.state != 'cancel'
|
2018-01-16 06:58:15 +01:00
|
|
|
""" % self.env['res.currency']._select_companies_rates()
|
|
|
|
return so_str
|
|
|
|
|
|
|
|
def _from(self):
|
|
|
|
return """(%s)""" % (self._so())
|
|
|
|
|
|
|
|
def get_main_request(self):
|
|
|
|
request = """
|
|
|
|
CREATE or REPLACE VIEW %s AS
|
|
|
|
SELECT id AS id,
|
|
|
|
name,
|
|
|
|
partner_id,
|
|
|
|
product_id,
|
|
|
|
product_tmpl_id,
|
|
|
|
date_order,
|
|
|
|
user_id,
|
|
|
|
categ_id,
|
|
|
|
company_id,
|
|
|
|
price_total,
|
|
|
|
pricelist_id,
|
|
|
|
analytic_account_id,
|
|
|
|
country_id,
|
|
|
|
team_id,
|
|
|
|
price_subtotal,
|
|
|
|
product_qty
|
|
|
|
FROM %s
|
|
|
|
AS foo""" % (self._table, self._from())
|
|
|
|
return request
|
|
|
|
|
|
|
|
@api.model_cr
|
|
|
|
def init(self):
|
|
|
|
tools.drop_view_if_exists(self.env.cr, self._table)
|
|
|
|
self.env.cr.execute(self.get_main_request())
|