67 lines
2.7 KiB
Python
67 lines
2.7 KiB
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import _, api, fields, models
|
|
|
|
from odoo.addons.website.models import ir_http
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
last_website_so_id = fields.Many2one('sale.order', compute='_compute_last_website_so_id', string='Last Online Sales Order')
|
|
|
|
def _compute_last_website_so_id(self):
|
|
SaleOrder = self.env['sale.order']
|
|
for partner in self:
|
|
is_public = partner.is_public
|
|
website = ir_http.get_request_website()
|
|
if website and not is_public:
|
|
partner.last_website_so_id = SaleOrder.search([
|
|
('partner_id', '=', partner.id),
|
|
('pricelist_id', '=', partner.property_product_pricelist.id),
|
|
('website_id', '=', website.id),
|
|
('state', '=', 'draft'),
|
|
], order='write_date desc', limit=1)
|
|
else:
|
|
partner.last_website_so_id = SaleOrder # Not in a website context or public User
|
|
|
|
@api.onchange('property_product_pricelist')
|
|
def _onchange_property_product_pricelist(self):
|
|
open_order = self.env['sale.order'].sudo().search([
|
|
('partner_id', '=', self._origin.id),
|
|
('pricelist_id', '=', self._origin.property_product_pricelist.id),
|
|
('pricelist_id', '!=', self.property_product_pricelist.id),
|
|
('website_id', '!=', False),
|
|
('state', '=', 'draft'),
|
|
], limit=1)
|
|
|
|
if open_order:
|
|
return {'warning': {
|
|
'title': _('Open Sale Orders'),
|
|
'message': _(
|
|
"This partner has an open cart. "
|
|
"Please note that the pricelist will not be updated on that cart. "
|
|
"Also, the cart might not be visible for the customer until you update the pricelist of that cart."
|
|
),
|
|
}}
|
|
|
|
def _can_be_edited_by_current_customer(self, sale_order, mode):
|
|
self.ensure_one()
|
|
children_partner_ids = self.env['res.partner']._search([
|
|
('id', 'child_of', sale_order.partner_id.commercial_partner_id.id),
|
|
('type', 'in', ('invoice', 'delivery', 'other')),
|
|
])
|
|
if (
|
|
self == sale_order.partner_id
|
|
or self.id in children_partner_ids
|
|
):
|
|
# address belongs to the customer
|
|
if mode == 'billing':
|
|
# All addresses are editable as billing
|
|
return True
|
|
elif mode == 'shipping' and self.type == 'delivery':
|
|
# Only delivery addresses are editable as delivery
|
|
return True
|
|
|
|
return False
|