mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
@@ -1 +1,2 @@
|
||||
from . import sale_order
|
||||
from . import sale_report
|
||||
|
||||
27
account_payment_sale/models/sale_report.py
Normal file
27
account_payment_sale/models/sale_report.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Copyright 2021 Akretion France (http://www.akretion.com)
|
||||
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class SaleReport(models.Model):
|
||||
_inherit = "sale.report"
|
||||
|
||||
payment_mode_id = fields.Many2one(
|
||||
"account.payment.mode",
|
||||
string="Payment Mode",
|
||||
readonly=True,
|
||||
)
|
||||
|
||||
def _query(self, with_clause="", fields=None, groupby="", from_clause=""):
|
||||
if fields is None:
|
||||
fields = {}
|
||||
fields["payment_mode_id"] = ", s.payment_mode_id as payment_mode_id"
|
||||
groupby += ", s.payment_mode_id"
|
||||
return super()._query(
|
||||
with_clause=with_clause,
|
||||
fields=fields,
|
||||
groupby=groupby,
|
||||
from_clause=from_clause,
|
||||
)
|
||||
Reference in New Issue
Block a user