17 lines
498 B
Python
17 lines
498 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class SaleReport(models.Model):
|
|
_inherit = "sale.report"
|
|
|
|
warehouse_id = fields.Many2one('stock.warehouse', 'Warehouse', readonly=True)
|
|
|
|
def _select(self):
|
|
return super(SaleReport, self)._select() + ", s.warehouse_id as warehouse_id"
|
|
|
|
def _group_by(self):
|
|
return super(SaleReport, self)._group_by() + ", s.warehouse_id"
|