[MIG] sale_usability to v16

This commit is contained in:
Alexis de Lattre
2022-10-30 23:44:09 +01:00
parent 5c14e3199e
commit fbdf814cb0
14 changed files with 69 additions and 146 deletions

View File

@@ -1,46 +1,14 @@
# Copyright (C) 2015-2019 Akretion (http://www.akretion.com)
# Copyright 2015-2022 Akretion (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 api, fields, models
from odoo import models
from collections import OrderedDict
class AccountMove(models.Model):
_inherit = 'account.move'
# sale_ids is kind of the symetric field of invoice_ids on sale.order
sale_ids = fields.Many2many(
'sale.order', string='Sale Orders', compute="_compute_sale_ids")
sale_count = fields.Integer(
string='Sale Order Count', compute='_compute_sale_ids')
@api.depends('invoice_line_ids.sale_line_ids')
def _compute_sale_ids(self):
for invoice in self:
if invoice.move_type == 'out_invoice':
sales = invoice.invoice_line_ids.mapped('sale_line_ids').\
mapped('order_id')
invoice.sale_ids = sales.ids
invoice.sale_count = len(sales.ids)
else:
invoice.sale_ids = []
invoice.sale_count = 0
def show_sale_orders(self):
self.ensure_one()
action = self.env.ref('sale.action_orders').sudo().read()[0]
sales = self.sale_ids
if len(sales) > 1:
action['domain'] = [('id', 'in', sales.ids)]
else:
action.update({
'res_id': sales.id,
'view_mode': 'form,tree,kanban,calendar,pivot,graph,activity',
'views': False,
})
return action
def py3o_lines_layout_groupby_order(self, subtotal=True):
# This method is an alternative to the method py3o_lines_layout()
# defined above: you just have to change the call in the invoice

View File

@@ -1,4 +1,4 @@
# Copyright 2017-2019 Akretion France
# Copyright 2017-2022 Akretion France
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
@@ -12,3 +12,4 @@ class ProductTemplate(models.Model):
expense_policy = fields.Selection(tracking=True)
invoice_policy = fields.Selection(tracking=True)
sale_line_warn = fields.Selection(tracking=True)
expense_policy = fields.Selection(tracking=True)

View File

@@ -1,4 +1,4 @@
# Copyright 2021 Akretion France (https://akretion.com/)
# Copyright 2021-2022 Akretion France (https://akretion.com/)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

View File

@@ -1,4 +1,4 @@
# Copyright 2017-2020 Akretion France (https://akretion.com/)
# Copyright 2017-2022 Akretion France (https://akretion.com/)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

View File

@@ -2,9 +2,8 @@
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import api, fields, models, _
from odoo.tools import float_is_zero, float_compare
from odoo.tools.misc import formatLang
from odoo import api, fields, models
from odoo.tools import float_is_zero
class SaleOrder(models.Model):
@@ -16,7 +15,6 @@ class SaleOrder(models.Model):
amount_tax = fields.Monetary(tracking=True)
partner_shipping_id = fields.Many2one(tracking=True)
partner_invoice_id = fields.Many2one(tracking=True)
pricelist_id = fields.Many2one(tracking=True)
payment_term_id = fields.Many2one(tracking=True)
fiscal_position_id = fields.Many2one(tracking=True)
# for reports
@@ -97,33 +95,33 @@ class SaleOrderLine(models.Model):
product_barcode = fields.Char(
related='product_id.barcode', string="Product Barcode")
@api.onchange('product_uom', 'product_uom_qty')
def product_uom_change(self):
# @api.onchange('product_uom', 'product_uom_qty')
# def product_uom_change(self):
# When the user has manually set a custom price
# he is often upset when Odoo changes it when he changes the qty
# So we add a warning in which we recall the old price.
res = {}
old_price = self.price_unit
super().product_uom_change()
new_price = self.price_unit
prec = self.env['decimal.precision'].precision_get('Product Price')
if float_compare(old_price, new_price, precision_digits=prec):
pricelist = self.order_id.pricelist_id
res['warning'] = {
'title': _('Price updated'),
'message': _(
"Due to the update of the ordered quantity on line '%s', "
"the price has been updated according to pricelist '%s'.\n"
"Old price: %s\n"
"New price: %s") % (
self.name,
pricelist.display_name,
formatLang(
self.env, old_price, currency_obj=pricelist.currency_id),
formatLang(
self.env, new_price, currency_obj=pricelist.currency_id))
}
return res
# res = {}
# old_price = self.price_unit
# super().product_uom_change()
# new_price = self.price_unit
# prec = self.env['decimal.precision'].precision_get('Product Price')
# if float_compare(old_price, new_price, precision_digits=prec):
# pricelist = self.order_id.pricelist_id
# res['warning'] = {
# 'title': _('Price updated'),
# 'message': _(
# "Due to the update of the ordered quantity on line '%s', "
# "the price has been updated according to pricelist '%s'.\n"
# "Old price: %s\n"
# "New price: %s") % (
# self.name,
# pricelist.display_name,
# formatLang(
# self.env, old_price, currency_obj=pricelist.currency_id),
# formatLang(
# self.env, new_price, currency_obj=pricelist.currency_id))
# }
# return res
def get_sale_order_line_multiline_description_sale(self, product):
# This is useful when you want to have the product code in a dedicated