mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 02:32:06 +00:00
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
# Copyright 2018 Creu Blanca
|
|
# Copyright 2020 ForgeFlow S.L.
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
import json
|
|
|
|
from flectra import _, models
|
|
from flectra.tools.safe_eval import safe_eval
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
def find_res_partner_by_ref_using_barcode(self, barcode):
|
|
partner = self.search([("ref", "=", barcode)], limit=1)
|
|
if not partner:
|
|
xmlid = "barcode_action.res_partner_find"
|
|
action = self.env["ir.actions.act_window"]._for_xml_id(xmlid)
|
|
context = safe_eval(action["context"])
|
|
context.update(
|
|
{
|
|
"default_state": "warning",
|
|
"default_status": _(
|
|
"Partner with Internal Reference " "%s cannot be found"
|
|
)
|
|
% barcode,
|
|
}
|
|
)
|
|
action["context"] = json.dumps(context)
|
|
return action
|
|
xmlid = "base.action_partner_form"
|
|
action = self.env["ir.actions.act_window"]._for_xml_id(xmlid)
|
|
res = self.env.ref("base.view_partner_form", False)
|
|
action["views"] = [(res and res.id or False, "form")]
|
|
action["res_id"] = partner.id
|
|
return action
|